123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- /*
- * 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 <new>
- #include <kopano/memory.hpp>
- #include "ECRulesTableProxy.h"
- #include <kopano/ECGuid.h>
- #include <kopano/mapi_ptr.h>
- #include <kopano/ECInterfaceDefs.h>
- #include <kopano/Trace.h>
- #include <kopano/charset/convert.h>
- #include <mapix.h>
- /* conversion from unicode to string8 for rules table data */
- static HRESULT ConvertUnicodeToString8(LPSRestriction lpRes, void *base, convert_context &converter);
- static HRESULT ConvertUnicodeToString8(const ACTIONS *lpActions, void *base, convert_context &converter);
- ECRulesTableProxy::ECRulesTableProxy(LPMAPITABLE lpTable)
- : m_lpTable(lpTable)
- {
- m_lpTable->AddRef();
- }
- ECRulesTableProxy::~ECRulesTableProxy()
- {
- m_lpTable->Release();
- }
- HRESULT ECRulesTableProxy::Create(LPMAPITABLE lpTable, ECRulesTableProxy **lppRulesTableProxy)
- {
- if (lpTable == NULL || lppRulesTableProxy == NULL)
- return MAPI_E_INVALID_PARAMETER;
- KCHL::object_ptr<ECRulesTableProxy> ptrRulesTableProxy(new(std::nothrow) ECRulesTableProxy(lpTable));
- if (ptrRulesTableProxy == nullptr)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- *lppRulesTableProxy = ptrRulesTableProxy.release();
- return hrSuccess;
- }
- HRESULT ECRulesTableProxy::QueryInterface(REFIID refiid, void **lppInterface)
- {
- REGISTER_INTERFACE2(ECUnknown, this);
- REGISTER_INTERFACE2(IMAPITable, &this->m_xMAPITable);
- REGISTER_INTERFACE2(IUnknown, &this->m_xMAPITable);
- return MAPI_E_INTERFACE_NOT_SUPPORTED;
- }
- HRESULT ECRulesTableProxy::GetLastError(HRESULT hResult, ULONG ulFlags, LPMAPIERROR *lppMAPIError)
- {
- return m_lpTable->GetLastError(hResult, ulFlags, lppMAPIError);
- }
- HRESULT ECRulesTableProxy::Advise(ULONG ulEventMask, LPMAPIADVISESINK lpAdviseSink, ULONG *lpulConnection)
- {
- return m_lpTable->Advise(ulEventMask, lpAdviseSink, lpulConnection);
- }
- HRESULT ECRulesTableProxy::Unadvise(ULONG ulConnection)
- {
- return m_lpTable->Unadvise(ulConnection);
- }
- HRESULT ECRulesTableProxy::GetStatus(ULONG *lpulTableStatus, ULONG *lpulTableType)
- {
- return m_lpTable->GetStatus(lpulTableStatus, lpulTableType);
- }
- HRESULT ECRulesTableProxy::SetColumns(const SPropTagArray *lpPropTagArray,
- ULONG ulFlags)
- {
- return m_lpTable->SetColumns(lpPropTagArray, ulFlags);
- }
- HRESULT ECRulesTableProxy::QueryColumns(ULONG ulFlags, LPSPropTagArray *lpPropTagArray)
- {
- return m_lpTable->QueryColumns(ulFlags, lpPropTagArray);
- }
- HRESULT ECRulesTableProxy::GetRowCount(ULONG ulFlags, ULONG *lpulCount)
- {
- return m_lpTable->GetRowCount(ulFlags, lpulCount);
- }
- HRESULT ECRulesTableProxy::SeekRow(BOOKMARK bkOrigin, LONG lRowCount, LONG *lplRowsSought)
- {
- return m_lpTable->SeekRow(bkOrigin, lRowCount, lplRowsSought);
- }
- HRESULT ECRulesTableProxy::SeekRowApprox(ULONG ulNumerator, ULONG ulDenominator)
- {
- return m_lpTable->SeekRowApprox(ulNumerator, ulDenominator);
- }
- HRESULT ECRulesTableProxy::QueryPosition(ULONG *lpulRow, ULONG *lpulNumerator, ULONG *lpulDenominator)
- {
- return m_lpTable->QueryPosition(lpulRow, lpulNumerator, lpulDenominator);
- }
- HRESULT ECRulesTableProxy::FindRow(LPSRestriction lpRestriction, BOOKMARK bkOrigin, ULONG ulFlags)
- {
- return m_lpTable->FindRow(lpRestriction, bkOrigin, ulFlags);
- }
- HRESULT ECRulesTableProxy::Restrict(LPSRestriction lpRestriction, ULONG ulFlags)
- {
- return m_lpTable->Restrict(lpRestriction, ulFlags);
- }
- HRESULT ECRulesTableProxy::CreateBookmark(BOOKMARK* lpbkPosition)
- {
- return m_lpTable->CreateBookmark(lpbkPosition);
- }
- HRESULT ECRulesTableProxy::FreeBookmark(BOOKMARK bkPosition)
- {
- return m_lpTable->FreeBookmark(bkPosition);
- }
- HRESULT ECRulesTableProxy::SortTable(const SSortOrderSet *lpSortCriteria,
- ULONG ulFlags)
- {
- return m_lpTable->SortTable(lpSortCriteria, ulFlags);
- }
- HRESULT ECRulesTableProxy::QuerySortOrder(LPSSortOrderSet *lppSortCriteria)
- {
- return m_lpTable->QuerySortOrder(lppSortCriteria);
- }
- HRESULT ECRulesTableProxy::QueryRows(LONG lRowCount, ULONG ulFlags, LPSRowSet *lppRows)
- {
- SRowSetPtr ptrRows;
- convert_context converter;
- HRESULT hr = m_lpTable->QueryRows(lRowCount, ulFlags, &ptrRows);
- if (hr != hrSuccess)
- return hr;
-
- // table PR_RULE_ACTIONS and PR_RULE_CONDITION contain PT_UNICODE data, which we must convert to local charset PT_STRING8
- // so we update the rows before we return them to the caller.
- for (SRowSetPtr::size_type i = 0; i < ptrRows.size(); ++i) {
- auto lpRuleProp = PCpropFindProp(ptrRows[i].lpProps, ptrRows[i].cValues, PR_RULE_CONDITION);
- if (lpRuleProp)
- hr = ConvertUnicodeToString8((LPSRestriction)lpRuleProp->Value.lpszA, ptrRows[i].lpProps, converter);
- if (hr != hrSuccess)
- return hr;
- lpRuleProp = PCpropFindProp(ptrRows[i].lpProps, ptrRows[i].cValues, PR_RULE_ACTIONS);
- if (lpRuleProp)
- hr = ConvertUnicodeToString8((ACTIONS*)lpRuleProp->Value.lpszA, ptrRows[i].lpProps, converter);
- if (hr != hrSuccess)
- return hr;
- }
-
- *lppRows = ptrRows.release();
- return hrSuccess;
- }
- HRESULT ECRulesTableProxy::Abort()
- {
- return m_lpTable->Abort();
- }
- HRESULT ECRulesTableProxy::ExpandRow(ULONG cbInstanceKey, LPBYTE pbInstanceKey, ULONG ulRowCount, ULONG ulFlags, LPSRowSet * lppRows, ULONG *lpulMoreRows)
- {
- return m_lpTable->ExpandRow(cbInstanceKey, pbInstanceKey, ulRowCount, ulFlags, lppRows, lpulMoreRows);
- }
- HRESULT ECRulesTableProxy::CollapseRow(ULONG cbInstanceKey, LPBYTE pbInstanceKey, ULONG ulFlags, ULONG *lpulRowCount)
- {
- return m_lpTable->CollapseRow(cbInstanceKey, pbInstanceKey, ulFlags, lpulRowCount);
- }
- HRESULT ECRulesTableProxy::WaitForCompletion(ULONG ulFlags, ULONG ulTimeout, ULONG *lpulTableStatus)
- {
- return m_lpTable->WaitForCompletion(ulFlags, ulTimeout, lpulTableStatus);
- }
- HRESULT ECRulesTableProxy::GetCollapseState(ULONG ulFlags, ULONG cbInstanceKey, LPBYTE lpbInstanceKey, ULONG *lpcbCollapseState, LPBYTE *lppbCollapseState)
- {
- return m_lpTable->GetCollapseState(ulFlags, cbInstanceKey, lpbInstanceKey, lpcbCollapseState, lppbCollapseState);
- }
- HRESULT ECRulesTableProxy::SetCollapseState(ULONG ulFlags, ULONG cbCollapseState, LPBYTE pbCollapseState, BOOKMARK *lpbkLocation)
- {
- return m_lpTable->SetCollapseState(ulFlags, cbCollapseState, pbCollapseState, lpbkLocation);
- }
- DEF_ULONGMETHOD0(ECRulesTableProxy, MAPITable, AddRef, (void))
- DEF_ULONGMETHOD0(ECRulesTableProxy, MAPITable, Release, (void))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, QueryInterface, (REFIID, refiid), (void **, lppInterface))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, GetLastError, (HRESULT, hResult), (ULONG, ulFlags), (LPMAPIERROR *, lppMAPIError))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, Advise, (ULONG, ulEventMask), (LPMAPIADVISESINK, lpAdviseSink), (ULONG *, lpulConnection))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, Unadvise, (ULONG, ulConnection))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, GetStatus, (ULONG *, lpulTableStatus), (ULONG *, lpulTableType))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, SetColumns, (const SPropTagArray *, lpPropTagArray), (ULONG, ulFlags))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, QueryColumns, (ULONG, ulFlags), (LPSPropTagArray *, lppPropTagArray))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, GetRowCount, (ULONG, ulFlags), (ULONG *, lpulCount))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, SeekRow, (BOOKMARK, bkOrigin), (LONG, lRowCount), (LONG *, lplRowsSought))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, SeekRowApprox, (ULONG, ulNumerator), (ULONG, ulDenominator))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, QueryPosition, (ULONG *, lpulRow), (ULONG *, lpulNumerator), (ULONG *, lpulDenominator))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, FindRow, (LPSRestriction, lpRestriction), (BOOKMARK, bkOrigin), (ULONG, ulFlags))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, Restrict, (LPSRestriction, lpRestriction), (ULONG, ulFlags))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, CreateBookmark, (BOOKMARK *, lpbkPosition))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, FreeBookmark, (BOOKMARK, bkPosition))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, SortTable, (const SSortOrderSet *, lpSortCriteria), (ULONG, ulFlags))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, QuerySortOrder, (LPSSortOrderSet *, lppSortCriteria))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, QueryRows, (LONG, lRowCount), (ULONG, ulFlags), (LPSRowSet *, lppRows))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, Abort, (void))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, ExpandRow, (ULONG, cbInstanceKey), (LPBYTE, pbInstanceKey), (ULONG, ulRowCount), (ULONG, ulFlags), (LPSRowSet *, lppRows), (ULONG *, lpulMoreRows))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, CollapseRow, (ULONG, cbInstanceKey), (LPBYTE, pbInstanceKey), (ULONG, ulFlags), (ULONG *, lpulRowCount))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, WaitForCompletion, (ULONG, ulFlags), (ULONG, ulTimeout), (ULONG *, lpulTableStatus))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, GetCollapseState, (ULONG, ulFlags), (ULONG, cbInstanceKey), (LPBYTE, lpbInstanceKey), (ULONG *, lpcbCollapseState), (LPBYTE *, lppbCollapseState))
- DEF_HRMETHOD(TRACE_MAPI, ECRulesTableProxy, MAPITable, SetCollapseState, (ULONG, ulFlags), (ULONG, cbCollapseState), (LPBYTE, pbCollapseState), (BOOKMARK *, lpbkLocation))
- static HRESULT ConvertUnicodeToString8(const WCHAR *lpszW, char **lppszA,
- void *base, convert_context &converter)
- {
- std::string local;
- char *lpszA = NULL;
- if (lpszW == NULL || lppszA == NULL)
- return MAPI_E_INVALID_PARAMETER;
- TryConvert(lpszW, local);
- HRESULT hr = MAPIAllocateMore((local.length() + 1) * sizeof(std::string::value_type),
- base, reinterpret_cast<void **>(&lpszA));
- if (hr != hrSuccess)
- return hr;
- strcpy(lpszA, local.c_str());
- *lppszA = lpszA;
- return hrSuccess;
- }
- static HRESULT ConvertUnicodeToString8(LPSRestriction lpRestriction,
- void *base, convert_context &converter)
- {
- HRESULT hr = hrSuccess;
- ULONG i;
- if (lpRestriction == NULL)
- return hr;
- switch (lpRestriction->rt) {
- case RES_OR:
- for (i = 0; i < lpRestriction->res.resOr.cRes; ++i) {
- hr = ConvertUnicodeToString8(&lpRestriction->res.resOr.lpRes[i], base, converter);
- if (hr != hrSuccess)
- return hr;
- }
- break;
- case RES_AND:
- for (i = 0; i < lpRestriction->res.resAnd.cRes; ++i) {
- hr = ConvertUnicodeToString8(&lpRestriction->res.resAnd.lpRes[i], base, converter);
- if (hr != hrSuccess)
- return hr;
- }
- break;
- case RES_NOT:
- hr = ConvertUnicodeToString8(lpRestriction->res.resNot.lpRes, base, converter);
- if (hr != hrSuccess)
- return hr;
- break;
- case RES_COMMENT:
- if (lpRestriction->res.resComment.lpRes) {
- hr = ConvertUnicodeToString8(lpRestriction->res.resComment.lpRes, base, converter);
- if (hr != hrSuccess)
- return hr;
- }
- for (i = 0; i < lpRestriction->res.resComment.cValues; ++i)
- if (PROP_TYPE(lpRestriction->res.resComment.lpProp[i].ulPropTag) == PT_UNICODE) {
- hr = ConvertUnicodeToString8(lpRestriction->res.resComment.lpProp[i].Value.lpszW, &lpRestriction->res.resComment.lpProp[i].Value.lpszA, base, converter);
- if (hr != hrSuccess)
- return hr;
- lpRestriction->res.resComment.lpProp[i].ulPropTag = CHANGE_PROP_TYPE(lpRestriction->res.resComment.lpProp[i].ulPropTag, PT_STRING8);
- }
- break;
- case RES_COMPAREPROPS:
- break;
- case RES_CONTENT:
- if (PROP_TYPE(lpRestriction->res.resContent.ulPropTag) == PT_UNICODE) {
- hr = ConvertUnicodeToString8(lpRestriction->res.resContent.lpProp->Value.lpszW, &lpRestriction->res.resContent.lpProp->Value.lpszA, base, converter);
- if (hr != hrSuccess)
- return hr;
- lpRestriction->res.resContent.lpProp->ulPropTag = CHANGE_PROP_TYPE(lpRestriction->res.resContent.lpProp->ulPropTag, PT_STRING8);
- lpRestriction->res.resContent.ulPropTag = CHANGE_PROP_TYPE(lpRestriction->res.resContent.ulPropTag, PT_STRING8);
- }
- break;
- case RES_PROPERTY:
- if (PROP_TYPE(lpRestriction->res.resProperty.ulPropTag) == PT_UNICODE) {
- hr = ConvertUnicodeToString8(lpRestriction->res.resProperty.lpProp->Value.lpszW, &lpRestriction->res.resProperty.lpProp->Value.lpszA, base, converter);
- if (hr != hrSuccess)
- return hr;
- lpRestriction->res.resProperty.lpProp->ulPropTag = CHANGE_PROP_TYPE(lpRestriction->res.resProperty.lpProp->ulPropTag, PT_STRING8);
- lpRestriction->res.resProperty.ulPropTag = CHANGE_PROP_TYPE(lpRestriction->res.resProperty.ulPropTag, PT_STRING8);
- }
- break;
- case RES_SUBRESTRICTION:
- hr = ConvertUnicodeToString8(lpRestriction->res.resSub.lpRes, base, converter);
- if (hr != hrSuccess)
- return hr;
- break;
- }
- return hr;
- }
- static HRESULT ConvertUnicodeToString8(const SRow *lpRow, void *base,
- convert_context &converter)
- {
- if (lpRow == NULL)
- return hrSuccess;
- for (ULONG c = 0; c < lpRow->cValues; ++c) {
- if (PROP_TYPE(lpRow->lpProps[c].ulPropTag) == PT_UNICODE) {
- HRESULT hr = ConvertUnicodeToString8(lpRow->lpProps[c].Value.lpszW,
- &lpRow->lpProps[c].Value.lpszA, base, converter);
- if (hr != hrSuccess)
- return hr;
- lpRow->lpProps[c].ulPropTag = CHANGE_PROP_TYPE(lpRow->lpProps[c].ulPropTag, PT_STRING8);
- }
- }
- return hrSuccess;
- }
- static HRESULT ConvertUnicodeToString8(const ADRLIST *lpAdrList, void *base,
- convert_context &converter)
- {
- if (lpAdrList == NULL)
- return hrSuccess;
- for (ULONG c = 0; c < lpAdrList->cEntries; ++c) {
- // treat as row
- HRESULT hr = ConvertUnicodeToString8(reinterpret_cast<const SRow *>(&lpAdrList->aEntries[c]),
- base, converter);
- if (hr != hrSuccess)
- return hr;
- }
- return hrSuccess;
- }
- static HRESULT ConvertUnicodeToString8(const ACTIONS *lpActions, void *base, convert_context &converter)
- {
- if (lpActions == NULL)
- return hrSuccess;
- for (ULONG c = 0; c < lpActions->cActions; ++c)
- if (lpActions->lpAction[c].acttype == OP_FORWARD || lpActions->lpAction[c].acttype == OP_DELEGATE) {
- HRESULT hr = ConvertUnicodeToString8(lpActions->lpAction[c].lpadrlist, base, converter);
- if (hr != hrSuccess)
- return hr;
- }
- return hrSuccess;
- }
|