123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /*
- * Copyright 2005 - 2016 Zarafa and its licensors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- #include <new>
- #include <kopano/platform.h>
- #include <kopano/lockhelper.hpp>
- #include <mapicode.h>
- #include <mapix.h>
- #include "ClientUtil.h"
- #include "ECNotifyMaster.h"
- #include "ECSessionGroupManager.h"
- #include "SessionGroupData.h"
- #include "WSTransport.h"
- SessionGroupData::SessionGroupData(ECSESSIONGROUPID ecSessionGroupId,
- ECSessionGroupInfo *lpInfo, const sGlobalProfileProps &sProfileProps) :
- m_ecSessionGroupId(ecSessionGroupId), m_sProfileProps(sProfileProps)
- {
- if (lpInfo == nullptr)
- return;
- m_ecSessionGroupInfo.strServer = lpInfo->strServer;
- m_ecSessionGroupInfo.strProfile = lpInfo->strProfile;
- }
- SessionGroupData::~SessionGroupData(void)
- {
- if (m_lpNotifyMaster)
- m_lpNotifyMaster->Release();
- }
- HRESULT SessionGroupData::Create(ECSESSIONGROUPID ecSessionGroupId, ECSessionGroupInfo *lpInfo, const sGlobalProfileProps &sProfileProps, SessionGroupData **lppData)
- {
- HRESULT hr = hrSuccess;
- auto lpData = new(std::nothrow) SessionGroupData(ecSessionGroupId, lpInfo, sProfileProps);
- if (lpData == nullptr)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- lpData->AddRef();
- *lppData = lpData;
- return hr;
- }
- HRESULT SessionGroupData::GetOrCreateNotifyMaster(ECNotifyMaster **lppMaster)
- {
- HRESULT hr = hrSuccess;
- scoped_rlock lock(m_hMutex);
- if (!m_lpNotifyMaster)
- hr = ECNotifyMaster::Create(this, &m_lpNotifyMaster);
- *lppMaster = m_lpNotifyMaster;
- return hr;
- }
- HRESULT SessionGroupData::GetTransport(WSTransport **lppTransport)
- {
- HRESULT hr;
- WSTransport *lpTransport = NULL;
- hr = WSTransport::Create(MDB_NO_DIALOG, &lpTransport);
- if (hr != hrSuccess)
- return hr;
- hr = lpTransport->HrLogon(m_sProfileProps);
- if (hr != hrSuccess)
- return hr;
- // Since we are doing request that take max EC_SESSION_KEEPALIVE_TIME, set timeout to that plus 10 seconds
- lpTransport->HrSetRecvTimeout(EC_SESSION_KEEPALIVE_TIME + 10);
- *lppTransport = lpTransport;
- return hrSuccess;
- }
- ECSESSIONGROUPID SessionGroupData::GetSessionGroupId()
- {
- return m_ecSessionGroupId;
- }
- ULONG SessionGroupData::AddRef()
- {
- scoped_rlock lock(m_hRefMutex);
- return ++m_cRef;
- }
- ULONG SessionGroupData::Release()
- {
- scoped_rlock lock(m_hRefMutex);
- return --m_cRef;
- }
- BOOL SessionGroupData::IsOrphan()
- {
- return m_cRef == 0;
- }
|