12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /*
- * 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/>.
- *
- */
- #ifndef ECNOTIFYMASTER_H
- #define ECNOTIFYMASTER_H
- #include <list>
- #include <map>
- #include <mutex>
- #include <pthread.h>
- #include <kopano/zcdefs.h>
- #include "ECSessionGroupManager.h"
- #include <kopano/ECUnknown.h>
- #include <kopano/kcodes.h>
- class ECNotifyClient;
- class ECNotifyMaster;
- class WSTransport;
- struct notification;
- typedef std::list<notification*> NOTIFYLIST;
- typedef HRESULT(ECNotifyClient::*NOTIFYCALLBACK)(ULONG,const NOTIFYLIST &);
- class ECNotifySink _kc_final {
- public:
- ECNotifySink(ECNotifyClient *lpClient, NOTIFYCALLBACK fnCallback);
- HRESULT Notify(ULONG ulConnection, const NOTIFYLIST &lNotifications) const;
- bool IsClient(const ECNotifyClient *) const;
- private:
- ECNotifyClient *m_lpClient;
- NOTIFYCALLBACK m_fnCallback;
- };
- typedef std::list<ECNotifyClient*> NOTIFYCLIENTLIST;
- typedef std::map<ULONG, ECNotifySink> NOTIFYCONNECTIONCLIENTMAP;
- typedef std::map<ULONG, NOTIFYLIST> NOTIFYCONNECTIONMAP;
- class ECNotifyMaster _kc_final : public ECUnknown {
- protected:
- ECNotifyMaster(SessionGroupData *lpData);
- virtual ~ECNotifyMaster(void);
- public:
- static HRESULT Create(SessionGroupData *lpData, ECNotifyMaster **lppMaster);
- virtual HRESULT ConnectToSession();
- virtual HRESULT AddSession(ECNotifyClient* lpClient);
- virtual HRESULT ReleaseSession(ECNotifyClient* lpClient);
- virtual HRESULT ReserveConnection(ULONG *lpulConnection);
- virtual HRESULT ClaimConnection(ECNotifyClient* lpClient, NOTIFYCALLBACK fnCallback, ULONG ulConnection);
- virtual HRESULT DropConnection(ULONG ulConnection);
- private:
- /* Threading functions */
- virtual HRESULT StartNotifyWatch();
- virtual HRESULT StopNotifyWatch();
- static void* NotifyWatch(void *pTmpNotifyClient);
- /* List of Clients attached to this master */
- NOTIFYCLIENTLIST m_listNotifyClients;
- /* List of all connections, mapped to client */
- NOTIFYCONNECTIONCLIENTMAP m_mapConnections;
- /* Connection settings */
- SessionGroupData *m_lpSessionGroupData;
- WSTransport *m_lpTransport = nullptr;
- ULONG m_ulConnection = 0;
- /* Threading information */
- std::recursive_mutex m_hMutex;
- pthread_t m_hThread;
- BOOL m_bThreadRunning = false;
- BOOL m_bThreadExit = false;
- };
- #endif /* ECNOTIFYMASTER_H */
|