123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- /*
- * 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/zcdefs.h>
- #include <new>
- #include <utility>
- #include <kopano/platform.h>
- #include <kopano/userutil.h>
- #include "ArchiveStateCollector.h"
- #include <kopano/CommonUtil.h>
- #include "ArchiverSession.h"
- #include "ArchiveStateUpdater.h"
- #include "ECIterators.h"
- #include "HrException.h"
- #include <kopano/ECRestriction.h>
- namespace KC {
- namespace details {
- /**
- * Subclass of DataCollector that is used to get the current state
- * through the MailboxTable.
- */
- class MailboxDataCollector _kc_final : public DataCollector {
- public:
- MailboxDataCollector(ArchiveStateCollector::ArchiveInfoMap &mapArchiveInfo, ECLogger *lpLogger);
- ~MailboxDataCollector();
- HRESULT GetRequiredPropTags(LPMAPIPROP lpProp, LPSPropTagArray *lppPropTagArray) const _kc_override;
- HRESULT CollectData(LPMAPITABLE lpStoreTable) _kc_override;
- private:
- ArchiveStateCollector::ArchiveInfoMap &m_mapArchiveInfo;
- ECLogger *m_lpLogger;
- };
- MailboxDataCollector::MailboxDataCollector(ArchiveStateCollector::ArchiveInfoMap &mapArchiveInfo, ECLogger *lpLogger): m_mapArchiveInfo(mapArchiveInfo), m_lpLogger(lpLogger)
- {
- m_lpLogger->AddRef();
- }
- MailboxDataCollector::~MailboxDataCollector()
- {
- m_lpLogger->Release();
- }
- HRESULT MailboxDataCollector::GetRequiredPropTags(LPMAPIPROP lpProp, LPSPropTagArray *lppPropTagArray) const
- {
- HRESULT hr = hrSuccess;
- SPropTagArrayPtr ptrPropTagArray;
- PROPMAP_START(2)
- PROPMAP_NAMED_ID(STORE_ENTRYIDS, PT_MV_BINARY, PSETID_Archive, "store-entryids")
- PROPMAP_NAMED_ID(ITEM_ENTRYIDS, PT_MV_BINARY, PSETID_Archive, "item-entryids")
- PROPMAP_INIT(lpProp);
- hr = MAPIAllocateBuffer(CbNewSPropTagArray(4), &~ptrPropTagArray);
- if (hr != hrSuccess)
- goto exitpm;
- ptrPropTagArray->cValues = 4;
- ptrPropTagArray->aulPropTag[0] = PR_ENTRYID;
- ptrPropTagArray->aulPropTag[1] = PR_MAILBOX_OWNER_ENTRYID;
- ptrPropTagArray->aulPropTag[2] = PROP_STORE_ENTRYIDS;
- ptrPropTagArray->aulPropTag[3] = PROP_ITEM_ENTRYIDS;
- *lppPropTagArray = ptrPropTagArray.release();
- exitpm:
- return hr;
- }
- HRESULT MailboxDataCollector::CollectData(LPMAPITABLE lpStoreTable)
- {
- HRESULT hr;
- SRowSetPtr ptrRows;
- enum {IDX_ENTRYID, IDX_MAILBOX_OWNER_ENTRYID, IDX_STORE_ENTRYIDS, IDX_ITEM_ENTRYIDS, IDX_MAX};
- while (true) {
- hr = lpStoreTable->QueryRows(50, 0, &ptrRows);
- if (hr != hrSuccess)
- return hr;
- if (ptrRows.size() == 0)
- break;
- for (SRowSetPtr::size_type i = 0; i < ptrRows.size(); ++i) {
- bool bComplete = true;
- abentryid_t userId;
- for (unsigned j = 0; bComplete && j < IDX_MAX; ++j) {
- if (PROP_TYPE(ptrRows[i].lpProps[j].ulPropTag) == PT_ERROR) {
- m_lpLogger->Log(EC_LOGLEVEL_WARNING, "Got incomplete row, row %u, column %u contains error 0x%08x", i, j, ptrRows[i].lpProps[j].Value.err);
- bComplete = false;
- }
- }
-
- if (!bComplete)
- continue;
- if (ptrRows[i].lpProps[IDX_STORE_ENTRYIDS].Value.MVbin.cValues != ptrRows[i].lpProps[IDX_ITEM_ENTRYIDS].Value.MVbin.cValues) {
- m_lpLogger->Log(EC_LOGLEVEL_DEBUG, "Mismatch in archive prop count, %u vs. %u", ptrRows[i].lpProps[IDX_STORE_ENTRYIDS].Value.MVbin.cValues, ptrRows[i].lpProps[IDX_ITEM_ENTRYIDS].Value.MVbin.cValues);
- continue;
- }
- userId.assign(ptrRows[i].lpProps[IDX_MAILBOX_OWNER_ENTRYID].Value.bin);
- auto res = m_mapArchiveInfo.insert(std::make_pair(userId, ArchiveStateCollector::ArchiveInfo()));
- if (res.second == true)
- m_lpLogger->Log(EC_LOGLEVEL_DEBUG, "Inserting row for user id %s", userId.tostring().c_str());
- else
- m_lpLogger->Log(EC_LOGLEVEL_DEBUG, "Updating row for user '" TSTRING_PRINTF "'", res.first->second.userName.c_str());
- // Assign entryid
- res.first->second.storeId.assign(ptrRows[i].lpProps[IDX_ENTRYID].Value.bin);
- // Assign archives
- m_lpLogger->Log(EC_LOGLEVEL_DEBUG, "Adding %u archive(s)", ptrRows[i].lpProps[IDX_STORE_ENTRYIDS].Value.MVbin.cValues);
- for (ULONG j = 0; j < ptrRows[i].lpProps[IDX_STORE_ENTRYIDS].Value.MVbin.cValues; ++j) {
- SObjectEntry objEntry;
- objEntry.sStoreEntryId.assign(entryid_t(ptrRows[i].lpProps[IDX_STORE_ENTRYIDS].Value.MVbin.lpbin[j]));
- objEntry.sItemEntryId.assign(entryid_t(ptrRows[i].lpProps[IDX_ITEM_ENTRYIDS].Value.MVbin.lpbin[j]));
- res.first->second.lstArchives.push_back(std::move(objEntry));
- }
- }
- }
- return hrSuccess;
- }
- }
- /**
- * Create an ArchiveStateCollector instance.
- * @param[in] ArchiverSessionPtr The archive session
- * @param[in] lpLogger The logger.
- * @param[out] lpptrCollector The new ArchiveStateCollector instance.
- */
- HRESULT ArchiveStateCollector::Create(const ArchiverSessionPtr &ptrSession, ECLogger *lpLogger, ArchiveStateCollectorPtr *lpptrCollector)
- {
- ArchiveStateCollectorPtr ptrCollector(
- new(std::nothrow) ArchiveStateCollector(ptrSession, lpLogger));
- if (ptrCollector == nullptr)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- *lpptrCollector = std::move(ptrCollector);
- return hrSuccess;
- }
- /**
- * @param[in] ArchiverSessionPtr The archive session
- * @param[in] lpLogger The logger.
- */
- ArchiveStateCollector::ArchiveStateCollector(const ArchiverSessionPtr &ptrSession, ECLogger *lpLogger)
- : m_ptrSession(ptrSession)
- , m_lpLogger(new ECArchiverLogger(lpLogger))
- { }
- ArchiveStateCollector::~ArchiveStateCollector()
- {
- m_lpLogger->Release();
- }
- /**
- * Return an ArchiveStateUpdater instance that can update the current state
- * to the required state.
- * @param[out] lpptrUpdate The new ArchiveStateUpdater instance.
- */
- HRESULT ArchiveStateCollector::GetArchiveStateUpdater(ArchiveStateUpdaterPtr *lpptrUpdater)
- {
- HRESULT hr;
- details::MailboxDataCollector mdc(m_mapArchiveInfo, m_lpLogger);
- hr = PopulateUserList();
- if (hr != hrSuccess)
- return hr;
- hr = GetMailboxData(m_ptrSession->GetMAPISession(),
- m_ptrSession->GetSSLPath(), m_ptrSession->GetSSLPass(),
- false, &mdc);
- if (hr != hrSuccess) {
- m_lpLogger->Log(EC_LOGLEVEL_DEBUG, "Failed to get mailbox data. hr=0x%08x", hr);
- return hr;
- }
- hr = ArchiveStateUpdater::Create(m_ptrSession, m_lpLogger, m_mapArchiveInfo, lpptrUpdater);
- if (hr != hrSuccess)
- return hr;
- m_mapArchiveInfo.clear();
- return hrSuccess;
- }
- /**
- * Populate the user list through the GAL.
- * When this method completes, a list will be available of all users that
- * should have one or more archives attached to their primary store.
- */
- HRESULT ArchiveStateCollector::PopulateUserList()
- {
- HRESULT hr;
- ABContainerPtr ptrABContainer;
- hr = m_ptrSession->GetGAL(&~ptrABContainer);
- if (hr != hrSuccess)
- return hr;
- hr = PopulateFromContainer(ptrABContainer);
- if (hr != hrSuccess)
- return hr;
- try {
- for (ECABContainerIterator iter(ptrABContainer, 0); iter != ECABContainerIterator(); ++iter) {
- hr = PopulateFromContainer(*iter);
- if (hr != hrSuccess)
- return hr;
- }
- } catch (const HrException &he) {
- hr = he.hr();
- m_lpLogger->Log(EC_LOGLEVEL_FATAL, "Failed to iterate addressbook containers. (hr=0x%08x)", hr);
- return hr;;
- }
- return hrSuccess;
- }
- /**
- * Populate the user list through one AB container.
- * When this method completes, the userlist will be available for all users
- * from the passed container that should have one or more archives attached to
- * their primary store.
- * @param[in] lpContainer The addressbook container to process.
- */
- HRESULT ArchiveStateCollector::PopulateFromContainer(LPABCONT lpContainer)
- {
- HRESULT hr;
- SPropValue sPropObjType;
- SPropValue sPropDispType;
- MAPITablePtr ptrTable;
- SRowSetPtr ptrRows;
- static constexpr const SizedSPropTagArray(4, sptaUserProps) =
- {4, {PR_ENTRYID, PR_ACCOUNT, PR_EC_ARCHIVE_SERVERS,
- PR_EC_ARCHIVE_COUPLINGS}};
- enum {IDX_ENTRYID, IDX_ACCOUNT, IDX_EC_ARCHIVE_SERVERS, IDX_EC_ARCHIVE_COUPLINGS};
- sPropObjType.ulPropTag = PR_OBJECT_TYPE;
- sPropObjType.Value.ul = MAPI_MAILUSER;
- sPropDispType.ulPropTag = PR_DISPLAY_TYPE;
- sPropDispType.Value.ul = DT_MAILUSER;;
- hr = lpContainer->GetContentsTable(0, &~ptrTable);
- if (hr != hrSuccess)
- return hr;
- hr = ptrTable->SetColumns(sptaUserProps, TBL_BATCH);
- if (hr != hrSuccess)
- return hr;
- hr = ECAndRestriction(
- ECPropertyRestriction(RELOP_EQ, PR_OBJECT_TYPE, &sPropObjType, ECRestriction::Cheap) +
- ECPropertyRestriction(RELOP_EQ, PR_DISPLAY_TYPE, &sPropDispType, ECRestriction::Cheap) +
- ECOrRestriction(
- ECExistRestriction(PR_EC_ARCHIVE_SERVERS) +
- ECExistRestriction(PR_EC_ARCHIVE_COUPLINGS)
- )
- ).RestrictTable(ptrTable, TBL_BATCH);
- if (hr != hrSuccess)
- return hr;
- while (true) {
- hr = ptrTable->QueryRows(50, 0, &ptrRows);
- if (hr != hrSuccess)
- return hr;
- if (ptrRows.size() == 0)
- break;
- for (SRowSetPtr::size_type i = 0; i < ptrRows.size(); ++i) {
- if (ptrRows[i].lpProps[IDX_ENTRYID].ulPropTag != PR_ENTRYID) {
- m_lpLogger->Log(EC_LOGLEVEL_ERROR, "Unable to get entryid from address list. hr=0x%08x", ptrRows[i].lpProps[IDX_ACCOUNT].Value.err);
- continue;
- }
- if (ptrRows[i].lpProps[IDX_ACCOUNT].ulPropTag != PR_ACCOUNT) {
- m_lpLogger->Log(EC_LOGLEVEL_ERROR, "Unable to get username from address list. hr=0x%08x", ptrRows[i].lpProps[IDX_ACCOUNT].Value.err);
- continue;
- }
- m_lpLogger->Log(EC_LOGLEVEL_DEBUG, "Inserting row for user '" TSTRING_PRINTF "'", ptrRows[i].lpProps[IDX_ACCOUNT].Value.LPSZ);
- auto iterator = m_mapArchiveInfo.insert(std::make_pair(abentryid_t(ptrRows[i].lpProps[IDX_ENTRYID].Value.bin), ArchiveInfo())).first;
- iterator->second.userName.assign(ptrRows[i].lpProps[IDX_ACCOUNT].Value.LPSZ);
- if (ptrRows[i].lpProps[IDX_EC_ARCHIVE_SERVERS].ulPropTag == PR_EC_ARCHIVE_SERVERS) {
- m_lpLogger->Log(EC_LOGLEVEL_DEBUG, "Adding %u archive server(s)", ptrRows[i].lpProps[IDX_EC_ARCHIVE_SERVERS].Value.MVSZ.cValues);
- for (ULONG j = 0; j < ptrRows[i].lpProps[IDX_EC_ARCHIVE_SERVERS].Value.MVSZ.cValues; ++j)
- iterator->second.lstServers.push_back(ptrRows[i].lpProps[IDX_EC_ARCHIVE_SERVERS].Value.MVSZ.LPPSZ[j]);
- }
- if (ptrRows[i].lpProps[IDX_EC_ARCHIVE_COUPLINGS].ulPropTag == PR_EC_ARCHIVE_COUPLINGS) {
- m_lpLogger->Log(EC_LOGLEVEL_DEBUG, "Adding %u archive coupling(s)", ptrRows[i].lpProps[IDX_EC_ARCHIVE_COUPLINGS].Value.MVSZ.cValues);
- for (ULONG j = 0; j < ptrRows[i].lpProps[IDX_EC_ARCHIVE_COUPLINGS].Value.MVSZ.cValues; ++j)
- iterator->second.lstCouplings.push_back(ptrRows[i].lpProps[IDX_EC_ARCHIVE_COUPLINGS].Value.MVSZ.LPPSZ[j]);
- }
- }
- }
- return hrSuccess;
- }
- } /* namespace */
|