12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /*
- * 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 TRANSACTION_INCLUDED
- #define TRANSACTION_INCLUDED
- #include <kopano/zcdefs.h>
- #include "transaction_fwd.h"
- #include "ArchiverSessionPtr.h" // For ArchiverSessionPtr
- #include <kopano/archiver-common.h>
- #include "postsaveaction.h"
- #include <kopano/mapi_ptr.h>
- namespace KC { namespace operations {
- class Transaction _kc_final {
- public:
- Transaction(const SObjectEntry &objectEntry);
- HRESULT SaveChanges(ArchiverSessionPtr ptrSession, RollbackPtr *lpptrRollback);
- HRESULT PurgeDeletes(ArchiverSessionPtr ptrSession, TransactionPtr ptrDeferredTransaction = TransactionPtr());
- const SObjectEntry& GetObjectEntry() const;
- HRESULT Save(IMessage *lpMessage, bool bDeleteOnFailure, const PostSaveActionPtr &ptrPSAction = PostSaveActionPtr());
- HRESULT Delete(const SObjectEntry &objectEntry, bool bDeferredDelete = false);
- private:
- struct SaveEntry {
- MessagePtr ptrMessage;
- bool bDeleteOnFailure;
- PostSaveActionPtr ptrPSAction;
- };
- typedef std::list<SaveEntry> MessageList;
- struct DelEntry {
- SObjectEntry objectEntry;
- bool bDeferredDelete;
- };
- typedef std::list<DelEntry> ObjectList;
- const SObjectEntry m_objectEntry;
- MessageList m_lstSave;
- ObjectList m_lstDelete;
- };
- inline const SObjectEntry& Transaction::GetObjectEntry() const
- {
- return m_objectEntry;
- }
- class Rollback _kc_final {
- public:
- HRESULT Delete(ArchiverSessionPtr ptrSession, IMessage *lpMessage);
- HRESULT Execute(ArchiverSessionPtr ptrSession);
- private:
- struct DelEntry {
- MAPIFolderPtr ptrFolder;
- entryid_t eidMessage;
- };
- typedef std::list<DelEntry> MessageList;
- MessageList m_lstDelete;
- };
- }} /* namespace */
- #endif // !defined TRANSACTION_INCLUDED
|