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/>.
- *
- */
- #include <kopano/platform.h>
- #include "ECArchiverLogger.h"
- #include "deleter.h"
- using namespace std;
- namespace KC { namespace operations {
- /**
- * @param[in] lpLogger
- * Pointer to the logger.
- */
- Deleter::Deleter(ECArchiverLogger *lpLogger, int ulAge, bool bProcessUnread)
- : ArchiveOperationBaseEx(lpLogger, ulAge, bProcessUnread, ARCH_NEVER_DELETE)
- { }
- Deleter::~Deleter()
- {
- PurgeQueuedMessages();
- }
- HRESULT Deleter::LeaveFolder()
- {
- // Folder is still available, purge now!
- return PurgeQueuedMessages();
- }
- HRESULT Deleter::DoProcessEntry(ULONG cProps, const LPSPropValue &lpProps)
- {
- auto lpEntryId = PCpropFindProp(lpProps, cProps, PR_ENTRYID);
- if (lpEntryId == NULL) {
- Logger()->Log(EC_LOGLEVEL_FATAL, "PR_ENTRYID missing");
- return MAPI_E_NOT_FOUND;
- }
- if (m_lstEntryIds.size() >= 50) {
- HRESULT hr = PurgeQueuedMessages();
- if (hr != hrSuccess)
- return hr;
- }
- m_lstEntryIds.push_back(lpEntryId->Value.bin);
- return hrSuccess;
- }
- /**
- * Delete the messages that are queued for deletion.
- */
- HRESULT Deleter::PurgeQueuedMessages()
- {
- HRESULT hr;
- EntryListPtr ptrEntryList;
- ULONG ulIdx = 0;
-
- if (m_lstEntryIds.empty())
- return hrSuccess;
- hr = MAPIAllocateBuffer(sizeof(ENTRYLIST), &~ptrEntryList);
- if (hr != hrSuccess)
- return hr;
- hr = MAPIAllocateMore(m_lstEntryIds.size() * sizeof(SBinary), ptrEntryList, (LPVOID*)&ptrEntryList->lpbin);
- if (hr != hrSuccess)
- return hr;
-
- ptrEntryList->cValues = m_lstEntryIds.size();
- for (const auto &e : m_lstEntryIds) {
- ptrEntryList->lpbin[ulIdx].cb = e.size();
- ptrEntryList->lpbin[ulIdx++].lpb = e;
- }
-
- hr = CurrentFolder()->DeleteMessages(ptrEntryList, 0, NULL, 0);
- if (hr != hrSuccess) {
- Logger()->Log(EC_LOGLEVEL_FATAL, "Failed to delete %u messages. (hr=%s)", ptrEntryList->cValues, stringify(hr, true).c_str());
- return hr;
- }
-
- m_lstEntryIds.clear();
- return hrSuccess;
- }
- }} /* namespace */
|