123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*
- * 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 postsaveiidupdater_INCLUDED
- #define postsaveiidupdater_INCLUDED
- #include <memory>
- #include <kopano/zcdefs.h>
- #include "postsaveaction.h"
- #include <kopano/mapi_ptr.h>
- #include "instanceidmapper_fwd.h"
- #include <kopano/archiver-common.h>
- #include <list>
- namespace KC { namespace operations {
- class TaskBase {
- public:
- TaskBase(const AttachPtr &ptrSourceAttach, const MessagePtr &ptrDestMsg, ULONG ulDestAttachIdx);
- HRESULT Execute(ULONG ulPropTag, const InstanceIdMapperPtr &ptrMapper);
- private:
- HRESULT GetUniqueIDs(IAttach *lpAttach, LPSPropValue *lppServerUID, ULONG *lpcbInstanceID, LPENTRYID *lppInstanceID);
- virtual HRESULT DoExecute(ULONG ulPropTag, const InstanceIdMapperPtr &ptrMapper, const SBinary &sourceServerUID, ULONG cbSourceInstanceID, LPENTRYID lpSourceInstanceID, const SBinary &destServerUID, ULONG cbDestInstanceID, LPENTRYID lpDestInstanceID) = 0;
- AttachPtr m_ptrSourceAttach;
- MessagePtr m_ptrDestMsg;
- ULONG m_ulDestAttachIdx;
- };
- typedef std::shared_ptr<TaskBase> TaskPtr;
- typedef std::list<TaskPtr> TaskList;
- class TaskMapInstanceId _kc_final : public TaskBase {
- public:
- TaskMapInstanceId(const AttachPtr &ptrSourceAttach, const MessagePtr &ptrDestMsg, ULONG ulDestAttachNum);
- HRESULT DoExecute(ULONG ulPropTag, const InstanceIdMapperPtr &ptrMapper, const SBinary &sourceServerUID, ULONG cbSourceInstanceID, LPENTRYID lpSourceInstanceID, const SBinary &destServerUID, ULONG cbDestInstanceID, LPENTRYID lpDestInstanceID) _kc_override;
- };
- class TaskVerifyAndUpdateInstanceId _kc_final : public TaskBase {
- public:
- TaskVerifyAndUpdateInstanceId(const AttachPtr &ptrSourceAttach, const MessagePtr &ptrDestMsg, ULONG ulDestAttachNum, ULONG cbDestInstanceID, LPENTRYID lpDestInstanceID);
- HRESULT DoExecute(ULONG ulPropTag, const InstanceIdMapperPtr &ptrMapper, const SBinary &sourceServerUID, ULONG cbSourceInstanceID, LPENTRYID lpSourceInstanceID, const SBinary &destServerUID, ULONG cbDestInstanceID, LPENTRYID lpDestInstanceID) _kc_override;
- private:
- entryid_t m_destInstanceID;
- };
- class PostSaveInstanceIdUpdater _kc_final : public IPostSaveAction {
- public:
- PostSaveInstanceIdUpdater(ULONG ulPropTag, const InstanceIdMapperPtr &ptrMapper, const TaskList &lstDeferred);
- HRESULT Execute(void) _kc_override;
- private:
- ULONG m_ulPropTag;
- InstanceIdMapperPtr m_ptrMapper;
- TaskList m_lstDeferred;
- };
- }} /* namespace */
- #endif // ndef postsaveiidupdater_INCLUDED
|