123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669 |
- /*
- * 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 <new>
- #include <kopano/platform.h>
- #include "WSMAPIPropStorage.h"
- #include "Mem.h"
- #include <kopano/ECGuid.h>
- #include <kopano/ECInterfaceDefs.h>
- #include "SOAPUtils.h"
- #include "WSUtil.h"
- #include <kopano/Util.h>
- #include "pcutil.hpp"
- #include <kopano/charset/convert.h>
- /*
- *
- * This is a PropStorage object for use with the WebServices storage platform
- *
- */
- #define START_SOAP_CALL retry:
- #define END_SOAP_CALL \
- if (er == KCERR_END_OF_SESSION && this->m_lpTransport->HrReLogon() == hrSuccess) \
- goto retry; \
- hr = kcerr_to_mapierr(er, MAPI_E_NOT_FOUND); \
- if(hr != hrSuccess) \
- goto exit;
- WSMAPIPropStorage::WSMAPIPropStorage(ULONG cbParentEntryId,
- LPENTRYID lpParentEntryId, ULONG cbEntryId, LPENTRYID lpEntryId,
- ULONG ulFlags, KCmd *lpCmd, std::recursive_mutex &data_lock,
- ECSESSIONID ecSessionId, unsigned int ulServerCapabilities,
- WSTransport *lpTransport) :
- ECUnknown("WSMAPIPropStorage"), lpDataLock(data_lock),
- m_ulFlags(ulFlags), m_lpTransport(lpTransport)
- {
- CopyMAPIEntryIdToSOAPEntryId(cbEntryId, lpEntryId, &m_sEntryId);
- CopyMAPIEntryIdToSOAPEntryId(cbParentEntryId, lpParentEntryId, &m_sParentEntryId);
- this->lpCmd = lpCmd;
- this->ecSessionId = ecSessionId;
- this->ulServerCapabilities = ulServerCapabilities;
- lpTransport->AddSessionReloadCallback(this, Reload, &m_ulSessionReloadCallback);
- }
- WSMAPIPropStorage::~WSMAPIPropStorage()
- {
- // Unregister the notification request we sent
- if(m_bSubscribed) {
- ECRESULT er = erSuccess;
- LockSoap();
- lpCmd->ns__notifyUnSubscribe(ecSessionId, m_ulConnection, &er);
- UnLockSoap();
- }
-
- FreeEntryId(&m_sEntryId, false);
- FreeEntryId(&m_sParentEntryId, false);
- m_lpTransport->RemoveSessionReloadCallback(m_ulSessionReloadCallback);
- }
- HRESULT WSMAPIPropStorage::QueryInterface(REFIID refiid, void **lppInterface)
- {
- REGISTER_INTERFACE2(WSMAPIPropStorage, this);
- REGISTER_INTERFACE2(IECPropStorage, &this->m_xECPropStorage);
- return MAPI_E_INTERFACE_NOT_SUPPORTED;
- }
- HRESULT WSMAPIPropStorage::Create(ULONG cbParentEntryId,
- LPENTRYID lpParentEntryId, ULONG cbEntryId, LPENTRYID lpEntryId,
- ULONG ulFlags, KCmd *lpCmd, std::recursive_mutex &lpDataLock,
- ECSESSIONID ecSessionId, unsigned int ulServerCapabilities,
- WSTransport *lpTransport, WSMAPIPropStorage **lppPropStorage)
- {
- HRESULT hr = hrSuccess;
- auto lpStorage = new(std::nothrow) WSMAPIPropStorage(cbParentEntryId,
- lpParentEntryId, cbEntryId, lpEntryId, ulFlags, lpCmd,
- lpDataLock, ecSessionId, ulServerCapabilities,
- lpTransport);
- if (lpStorage == nullptr)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- hr = lpStorage->QueryInterface(IID_WSMAPIPropStorage, (void **)lppPropStorage);
- if(hr != hrSuccess)
- delete lpStorage;
- return hr;
- }
- HRESULT WSMAPIPropStorage::HrReadProps(LPSPropTagArray *lppPropTags,ULONG *cValues, LPSPropValue *ppValues)
- {
- // this call should disappear
- return MAPI_E_NO_SUPPORT;
- }
- HRESULT WSMAPIPropStorage::HrLoadProp(ULONG ulObjId, ULONG ulPropTag, LPSPropValue *lppsPropValue)
- {
- ECRESULT er = erSuccess;
- HRESULT hr = hrSuccess;
- LPSPropValue lpsPropValDst = NULL;
- struct loadPropResponse sResponse;
-
- LockSoap();
-
- if (ulObjId == 0 && ((this->ulServerCapabilities & KOPANO_CAP_LOADPROP_ENTRYID) == 0)) {
- hr = MAPI_E_NO_SUPPORT;
- goto exit;
- }
- START_SOAP_CALL
- {
- if(SOAP_OK != lpCmd->ns__loadProp(ecSessionId, m_sEntryId, ulObjId, ulPropTag, &sResponse))
- er = KCERR_NETWORK_ERROR;
- else
- er = sResponse.er;
- }
- END_SOAP_CALL
- hr = ECAllocateBuffer(sizeof(SPropValue), (void **)&lpsPropValDst);
- if(hr != hrSuccess)
- goto exit;
- if(sResponse.lpPropVal == NULL) {
- hr = MAPI_E_NOT_FOUND;
- goto exit;
- }
- hr = CopySOAPPropValToMAPIPropVal(lpsPropValDst, sResponse.lpPropVal, lpsPropValDst);
- *lppsPropValue = lpsPropValDst;
- exit:
- UnLockSoap();
- return hr;
- }
- HRESULT WSMAPIPropStorage::HrWriteProps(ULONG cValues, LPSPropValue pValues, ULONG ulFlags)
- {
- // this call should disappear
- return MAPI_E_NO_SUPPORT;
- }
- HRESULT WSMAPIPropStorage::HrDeleteProps(const SPropTagArray *lpsPropTagArray)
- {
- // this call should disappear
- return MAPI_E_NO_SUPPORT;
- }
- HRESULT WSMAPIPropStorage::HrMapiObjectToSoapObject(MAPIOBJECT *lpsMapiObject, struct saveObject *lpSaveObj, convert_context *lpConverter)
- {
- HRESULT hr = hrSuccess;
- unsigned int size;
- unsigned int i;
- ULONG ulPropId = 0;
- GUID sServerGUID = {0};
- GUID sSIGUID = {0};
-
- if (lpConverter == NULL) {
- convert_context converter;
- return HrMapiObjectToSoapObject(lpsMapiObject, lpSaveObj, &converter);
- }
- if (lpsMapiObject->lpInstanceID) {
- lpSaveObj->lpInstanceIds = s_alloc<entryList>(nullptr);
- lpSaveObj->lpInstanceIds->__size = 1;
- lpSaveObj->lpInstanceIds->__ptr = s_alloc<entryId>(nullptr, lpSaveObj->lpInstanceIds->__size);
- memset(lpSaveObj->lpInstanceIds->__ptr, 0, lpSaveObj->lpInstanceIds->__size * sizeof(entryId));
- if ((m_lpTransport->GetServerGUID(&sServerGUID) != hrSuccess) ||
- (HrSIEntryIDToID(lpsMapiObject->cbInstanceID, (LPBYTE)lpsMapiObject->lpInstanceID, &sSIGUID, NULL, (unsigned int*)&ulPropId) != hrSuccess) ||
- (sSIGUID != sServerGUID) ||
- (CopyMAPIEntryIdToSOAPEntryId(lpsMapiObject->cbInstanceID, (LPENTRYID)lpsMapiObject->lpInstanceID, &lpSaveObj->lpInstanceIds->__ptr[0]) != hrSuccess)) {
- ulPropId = 0;
- FreeEntryList(lpSaveObj->lpInstanceIds, true);
- lpSaveObj->lpInstanceIds = NULL;
- }
- } else {
- lpSaveObj->lpInstanceIds = NULL;
- }
- // deleted props
- size = lpsMapiObject->lstDeleted.size();
- if (size != 0) {
- lpSaveObj->delProps.__ptr = s_alloc<unsigned int>(nullptr, size);
- lpSaveObj->delProps.__size = size;
- i = 0;
- for (auto id : lpsMapiObject->lstDeleted)
- lpSaveObj->delProps.__ptr[i++] = id;
- } else {
- lpSaveObj->delProps.__ptr = NULL;
- lpSaveObj->delProps.__size = 0;
- }
- // modified props
- size = lpsMapiObject->lstModified.size();
- if (size != 0) {
- lpSaveObj->modProps.__ptr = s_alloc<propVal>(nullptr, size);
- i = 0;
- for (const auto &prop : lpsMapiObject->lstModified) {
- SPropValue tmp = prop.GetMAPIPropValRef();
- if (PROP_ID(tmp.ulPropTag) == ulPropId)
- /* Skip the data if it is a Instance ID, If the instance id is invalid
- * the data will be replaced in HrUpdateSoapObject function. The memory is already
- * allocated, but not used. */
- if (/*lpsMapiObject->bChangedInstance &&*/ lpsMapiObject->lpInstanceID)
- continue;
- hr = CopyMAPIPropValToSOAPPropVal(&lpSaveObj->modProps.__ptr[i], &tmp, lpConverter);
- if(hr == hrSuccess)
- ++i;
- }
- lpSaveObj->modProps.__size = i;
- } else {
- lpSaveObj->modProps.__ptr = NULL;
- lpSaveObj->modProps.__size = 0;
- }
- // recursive process all children when parent is still present
- lpSaveObj->__size = 0;
- lpSaveObj->__ptr = NULL;
- if (lpsMapiObject->bDelete == false) {
- size = lpsMapiObject->lstChildren.size();
- if (size != 0) {
- lpSaveObj->__ptr = s_alloc<saveObject>(nullptr, size);
- size = 0;
- for (const auto &cld : lpsMapiObject->lstChildren)
- // Only send children if:
- // - Modified AND NOT deleted
- // - Deleted AND loaded from server (locally created/deleted items with no server ID needn't be sent)
- if ((cld->bChanged && !cld->bDelete) || (cld->ulObjId && cld->bDelete))
- hr = HrMapiObjectToSoapObject(cld, &lpSaveObj->__ptr[size++], lpConverter);
- lpSaveObj->__size = size;
- }
- }
- // object info
- lpSaveObj->bDelete = lpsMapiObject->bDelete;
- lpSaveObj->ulClientId = lpsMapiObject->ulUniqueId;
- lpSaveObj->ulServerId = lpsMapiObject->ulObjId;
- lpSaveObj->ulObjType = lpsMapiObject->ulObjType;
- return hr;
- }
- HRESULT WSMAPIPropStorage::HrUpdateSoapObject(MAPIOBJECT *lpsMapiObject, struct saveObject *lpsSaveObj, convert_context *lpConverter)
- {
- HRESULT hr;
- std::list<ECProperty>::const_iterator iterProps;
- SPropValue sData;
- ULONG ulPropId = 0;
- if (lpConverter == NULL) {
- convert_context converter;
- return HrUpdateSoapObject(lpsMapiObject, lpsSaveObj, &converter);
- }
- /* FIXME: Support Multiple Single Instances */
- if (lpsSaveObj->lpInstanceIds && lpsSaveObj->lpInstanceIds->__size) {
- /* Check which property this Instance ID is for */
- hr = HrSIEntryIDToID(lpsSaveObj->lpInstanceIds->__ptr[0].__size, lpsSaveObj->lpInstanceIds->__ptr[0].__ptr, NULL, NULL, (unsigned int*)&ulPropId);
- if (hr != hrSuccess)
- return hr;
- /* Instance ID was incorrect, remove it */
- FreeEntryList(lpsSaveObj->lpInstanceIds, true);
- lpsSaveObj->lpInstanceIds = NULL;
- /* Search for the correct property and copy it into the soap object, note that we already allocated the required memory... */
- for (iterProps = lpsMapiObject->lstModified.cbegin();
- iterProps != lpsMapiObject->lstModified.cend();
- ++iterProps) {
- sData = iterProps->GetMAPIPropValRef();
- if (PROP_ID(sData.ulPropTag) != ulPropId)
- continue;
- // Extra check for protect the modProps array
- if (lpsSaveObj->modProps.__size >= 0 &&
- static_cast<size_t>(lpsSaveObj->modProps.__size) >= lpsMapiObject->lstModified.size()) {
- /*
- * modProps.size+1 > lpsMapiObject->lstModified->size()
- * (a+1>b) transformed to (a>=b)
- */
- assert(false);
- return MAPI_E_NOT_ENOUGH_MEMORY;
- }
- hr = CopyMAPIPropValToSOAPPropVal(&lpsSaveObj->modProps.__ptr[lpsSaveObj->modProps.__size], &sData, lpConverter);
- if(hr != hrSuccess)
- return hr;
- ++lpsSaveObj->modProps.__size;
- break;
- }
- // Broken single instance ID without data.
- assert(iterProps != lpsMapiObject->lstModified.cend());
- }
- for (gsoap_size_t i = 0; i < lpsSaveObj->__size; ++i) {
- MAPIOBJECT find(lpsSaveObj->__ptr[i].ulObjType, lpsSaveObj->__ptr[i].ulClientId);
- auto iter = lpsMapiObject->lstChildren.find(&find);
- if (iter != lpsMapiObject->lstChildren.cend()) {
- hr = HrUpdateSoapObject(*iter, &lpsSaveObj->__ptr[i], lpConverter);
- if (hr != hrSuccess)
- return hr;
- }
- }
- return hrSuccess;
- }
- void WSMAPIPropStorage::DeleteSoapObject(struct saveObject *lpSaveObj)
- {
- if (lpSaveObj->__ptr) {
- for (gsoap_size_t i = 0; i < lpSaveObj->__size; ++i)
- DeleteSoapObject(&lpSaveObj->__ptr[i]);
- s_free(nullptr, lpSaveObj->__ptr);
- }
- if (lpSaveObj->modProps.__ptr) {
- for (gsoap_size_t i = 0; i < lpSaveObj->modProps.__size; ++i)
- FreePropVal(&lpSaveObj->modProps.__ptr[i], false);
- s_free(nullptr, lpSaveObj->modProps.__ptr);
- }
- s_free(nullptr, lpSaveObj->delProps.__ptr);
- if (lpSaveObj->lpInstanceIds)
- FreeEntryList(lpSaveObj->lpInstanceIds, true);
- }
- ECRESULT WSMAPIPropStorage::EcFillPropTags(struct saveObject *lpsSaveObj, MAPIOBJECT *lpsMapiObj)
- {
- for (gsoap_size_t i = 0; i < lpsSaveObj->delProps.__size; ++i)
- lpsMapiObj->lstAvailable.push_back(lpsSaveObj->delProps.__ptr[i]);
- return erSuccess;
- }
- ECRESULT WSMAPIPropStorage::EcFillPropValues(struct saveObject *lpsSaveObj, MAPIOBJECT *lpsMapiObj)
- {
- ECRESULT ec = erSuccess;
- convert_context context;
- for (gsoap_size_t i = 0; i < lpsSaveObj->modProps.__size; ++i) {
- ecmem_ptr<SPropValue> lpsProp;
- ec = ECAllocateBuffer(sizeof(SPropValue), &~lpsProp);
- if (ec != erSuccess)
- break;
- ec = CopySOAPPropValToMAPIPropVal(lpsProp, &lpsSaveObj->modProps.__ptr[i], lpsProp, &context);
- if (ec != erSuccess)
- break;
- lpsMapiObj->lstProperties.push_back(ECProperty(lpsProp));
- }
- return ec;
- }
- // sets the ulObjId from the server in the object (hierarchyid)
- // removes deleted sub-objects from memory
- // removes current list of del/mod props, and sets server changes in the lists
- HRESULT WSMAPIPropStorage::HrUpdateMapiObject(MAPIOBJECT *lpClientObj, struct saveObject *lpsServerObj)
- {
- lpClientObj->ulObjId = lpsServerObj->ulServerId;
- // The deleted properties have been deleted, so forget about them
- lpClientObj->lstDeleted.clear();
- // The modified properties have been sent. Delete them.
- lpClientObj->lstModified.clear();
- // The object is no longer 'changed'
- lpClientObj->bChangedInstance = false;
- lpClientObj->bChanged = false;
- // copy new server props to object (these are the properties we have received after saving the
- // object. For example, a new PR_LAST_MODIFICATION_TIME). These append lstProperties and lstAvailable
- // with the new properties.
- EcFillPropTags(lpsServerObj, lpClientObj);
- EcFillPropValues(lpsServerObj, lpClientObj);
- // We might have received a new instance ID from the server
- if (lpClientObj->lpInstanceID) {
- ECFreeBuffer(lpClientObj->lpInstanceID);
- lpClientObj->lpInstanceID = NULL;
- lpClientObj->cbInstanceID = 0;
- }
- /* FIXME: Support Multiple Single Instances */
- if (lpsServerObj->lpInstanceIds && lpsServerObj->lpInstanceIds->__size &&
- CopySOAPEntryIdToMAPIEntryId(&lpsServerObj->lpInstanceIds->__ptr[0], &lpClientObj->cbInstanceID, (LPENTRYID *)&lpClientObj->lpInstanceID) != hrSuccess)
- return MAPI_E_INVALID_PARAMETER;
- for (auto iterObj = lpClientObj->lstChildren.cbegin();
- iterObj != lpClientObj->lstChildren.cend(); ) {
- if ((*iterObj)->bDelete) {
- // this child was removed, so we don't need it anymore
- auto iterDel = iterObj;
- ++iterObj;
- FreeMapiObject(*iterDel);
- lpClientObj->lstChildren.erase(iterDel);
- continue;
- } else if (!(*iterObj)->bChanged) {
- // this was never sent to the server, so it is not going to be in the server object
- ++iterObj;
- continue;
- }
- // find by client id, and set server id
- gsoap_size_t i = 0;
- while (i < lpsServerObj->__size) {
- if ((*iterObj)->ulUniqueId == lpsServerObj->__ptr[i].ulClientId && (*iterObj)->ulObjType == lpsServerObj->__ptr[i].ulObjType)
- break;
- ++i;
- }
- if (i == lpsServerObj->__size) {
- // huh?
- assert(false);
- return MAPI_E_NOT_FOUND;
- }
- HrUpdateMapiObject(*iterObj, &lpsServerObj->__ptr[i]);
- ++iterObj;
- }
- return hrSuccess;
- }
- HRESULT WSMAPIPropStorage::HrSaveObject(ULONG ulFlags, MAPIOBJECT *lpsMapiObject)
- {
- ECRESULT er = erSuccess;
- HRESULT hr = hrSuccess;
- struct saveObject sSaveObj;
- struct loadObjectResponse sResponse;
- convert_context converter;
- HrMapiObjectToSoapObject(lpsMapiObject, &sSaveObj, &converter);
- LockSoap();
- // ulFlags == object flags, eg. MAPI_ASSOCIATE for messages, FOLDER_SEARCH on folders...
- START_SOAP_CALL
- {
- if (SOAP_OK != lpCmd->ns__saveObject(ecSessionId, m_sParentEntryId, m_sEntryId, &sSaveObj, ulFlags, m_ulSyncId, &sResponse))
- er = KCERR_NETWORK_ERROR;
- else
- er = sResponse.er;
- }
- if (er == KCERR_UNKNOWN_INSTANCE_ID) {
- /* Instance ID was unknown, we should resend entire message again, but this time include the instance body */
- hr = HrUpdateSoapObject(lpsMapiObject, &sSaveObj, &converter);
- if (hr != hrSuccess)
- goto exit;
- goto retry;
- }
- END_SOAP_CALL
- // Update our copy of the object with the IDs and mod props from the server
- hr = HrUpdateMapiObject(lpsMapiObject, &sResponse.sSaveObject);
- if (hr != hrSuccess)
- goto exit;
- // HrUpdateMapiObject() has now moved the modified properties of all objects recursively
- // into their 'normal' properties list (lstProperties). This is correct because when we now
- // open a subobject, it needs all the properties.
- // However, because we already have all properties of the top-level message in-memory via
- // ECGenericProps, the properties in
- exit:
- UnLockSoap();
- DeleteSoapObject(&sSaveObj);
- return hr;
- }
- ECRESULT WSMAPIPropStorage::ECSoapObjectToMapiObject(struct saveObject *lpsSaveObj, MAPIOBJECT *lpsMapiObject) {
- MAPIOBJECT *mo = NULL;
- ULONG ulAttachUniqueId = 0;
- ULONG ulRecipUniqueId = 0;
- // delProps contains all the available property tag
- EcFillPropTags(lpsSaveObj, lpsMapiObject);
- // modProps contains all the props < 8K
- EcFillPropValues(lpsSaveObj, lpsMapiObject);
- // delete stays false, unique id is set upon allocation
- lpsMapiObject->ulObjId = lpsSaveObj->ulServerId;
- lpsMapiObject->ulObjType = lpsSaveObj->ulObjType;
- // children
- for (gsoap_size_t i = 0; i < lpsSaveObj->__size; ++i) {
- switch (lpsSaveObj->__ptr[i].ulObjType) {
- case MAPI_ATTACH:
- AllocNewMapiObject(ulAttachUniqueId++, lpsSaveObj->__ptr[i].ulServerId, lpsSaveObj->__ptr[i].ulObjType, &mo);
- break;
- case MAPI_MAILUSER:
- case MAPI_DISTLIST:
- AllocNewMapiObject(ulRecipUniqueId++, lpsSaveObj->__ptr[i].ulServerId, lpsSaveObj->__ptr[i].ulObjType, &mo);
- break;
- default:
- AllocNewMapiObject(0, lpsSaveObj->__ptr[i].ulServerId, lpsSaveObj->__ptr[i].ulObjType, &mo);
- break;
- }
- ECSoapObjectToMapiObject(&lpsSaveObj->__ptr[i], mo);
- lpsMapiObject->lstChildren.insert(mo);
- }
- if (lpsMapiObject->lpInstanceID) {
- ECFreeBuffer(lpsMapiObject->lpInstanceID);
- lpsMapiObject->lpInstanceID = NULL;
- lpsMapiObject->cbInstanceID = 0;
- }
- /* FIXME: Support Multiple Single Instances */
- if (lpsSaveObj->lpInstanceIds && lpsSaveObj->lpInstanceIds->__size &&
- CopySOAPEntryIdToMAPIEntryId(&lpsSaveObj->lpInstanceIds->__ptr[0], &lpsMapiObject->cbInstanceID, (LPENTRYID *)&lpsMapiObject->lpInstanceID) != hrSuccess)
- return KCERR_INVALID_PARAMETER;
- return erSuccess;
- }
- // Register an advise without an extra server call
- HRESULT WSMAPIPropStorage::RegisterAdvise(ULONG ulEventMask, ULONG ulConnection)
- {
- m_ulConnection = ulConnection;
- m_ulEventMask = ulEventMask;
- return hrSuccess;
- }
- HRESULT WSMAPIPropStorage::GetEntryIDByRef(ULONG *lpcbEntryID, LPENTRYID *lppEntryID)
- {
- if (lpcbEntryID == NULL || lppEntryID == NULL)
- return MAPI_E_INVALID_PARAMETER;
- *lpcbEntryID = m_sEntryId.__size;
- *lppEntryID = (LPENTRYID)m_sEntryId.__ptr;
- return hrSuccess;
- }
- HRESULT WSMAPIPropStorage::HrLoadObject(MAPIOBJECT **lppsMapiObject)
- {
- ECRESULT er = erSuccess;
- HRESULT hr = hrSuccess;
- struct loadObjectResponse sResponse;
- MAPIOBJECT *lpsMapiObject = NULL;
- struct notifySubscribe sNotSubscribe{__gszeroinit};
- if (m_ulConnection) {
- // Register notification
- sNotSubscribe.ulConnection = m_ulConnection;
- sNotSubscribe.ulEventMask = m_ulEventMask;
- sNotSubscribe.sKey.__size = m_sEntryId.__size;
- sNotSubscribe.sKey.__ptr = m_sEntryId.__ptr;
- }
- LockSoap();
- if (!lppsMapiObject) {
- assert(false);
- er = KCERR_INVALID_PARAMETER;
- goto exit;
- }
- if (*lppsMapiObject) {
- // memleak detected
- assert(false);
- er = KCERR_INVALID_PARAMETER;
- goto exit;
- }
- START_SOAP_CALL
- {
- if (SOAP_OK != lpCmd->ns__loadObject(ecSessionId, m_sEntryId, ((m_ulConnection == 0) || m_bSubscribed)?NULL:&sNotSubscribe, m_ulFlags | 0x80000000, &sResponse))
- er = KCERR_NETWORK_ERROR;
- else
- er = sResponse.er;
- }
- //END_SOAP_CALL
- if (er == KCERR_END_OF_SESSION && m_lpTransport->HrReLogon() == hrSuccess)
- goto retry;
- hr = kcerr_to_mapierr(er, MAPI_E_NOT_FOUND);
- if (hr == MAPI_E_UNABLE_TO_COMPLETE) // Store does not exist on this server
- hr = MAPI_E_UNCONFIGURED; // Force a reconfigure
- if(hr != hrSuccess)
- goto exit;
- AllocNewMapiObject(0, 0, 0, &lpsMapiObject); // ulObjType, ulObjId and ulUniqueId are unknown here
- ECSoapObjectToMapiObject(&sResponse.sSaveObject, lpsMapiObject);
- *lppsMapiObject = lpsMapiObject;
-
- m_bSubscribed = m_ulConnection != 0;
- exit:
- UnLockSoap();
- return hr;
- }
- IECPropStorage* WSMAPIPropStorage::GetServerStorage() {
- return &this->m_xECPropStorage; // I am the server storage
- }
- //FIXME: one lock/unlock function
- HRESULT WSMAPIPropStorage::LockSoap()
- {
- lpDataLock.lock();
- return erSuccess;
- }
- HRESULT WSMAPIPropStorage::UnLockSoap()
- {
- //Clean up data create with soap_malloc
- if(lpCmd->soap) {
- soap_destroy(lpCmd->soap);
- soap_end(lpCmd->soap);
- }
- lpDataLock.unlock();
- return erSuccess;
- }
- HRESULT WSMAPIPropStorage::HrSetSyncId(ULONG ulSyncId) {
- m_ulSyncId = ulSyncId;
- return hrSuccess;
- }
- // Called when the session ID has changed
- HRESULT WSMAPIPropStorage::Reload(void *lpParam, ECSESSIONID sessionId) {
- static_cast<WSMAPIPropStorage *>(lpParam)->ecSessionId = sessionId;
- return hrSuccess;
- }
- // Interface IECPropStorage
- DEF_ULONGMETHOD0(WSMAPIPropStorage, ECPropStorage, AddRef, (void))
- DEF_ULONGMETHOD0(WSMAPIPropStorage, ECPropStorage, Release, (void))
- DEF_HRMETHOD0(WSMAPIPropStorage, ECPropStorage, QueryInterface, (REFIID, refiid), (void **, lppInterface))
- DEF_HRMETHOD0(WSMAPIPropStorage, ECPropStorage, HrReadProps, (LPSPropTagArray *, lppPropTags), (ULONG *, cValues), (LPSPropValue *, lppValues))
- DEF_HRMETHOD0(WSMAPIPropStorage, ECPropStorage, HrLoadProp, (ULONG, ulObjId), (ULONG, ulPropTag), (LPSPropValue *, lppsPropValue))
- DEF_HRMETHOD0(WSMAPIPropStorage, ECPropStorage, HrWriteProps, (ULONG, cValues), (LPSPropValue, lpValues), (ULONG, ulFlags))
- DEF_HRMETHOD0(WSMAPIPropStorage, ECPropStorage, HrDeleteProps, (const SPropTagArray *, lpsPropTagArray))
- DEF_HRMETHOD0(WSMAPIPropStorage, ECPropStorage, HrSaveObject, (ULONG, ulFlags), (MAPIOBJECT *, lpsMapiObject))
- DEF_HRMETHOD0(WSMAPIPropStorage, ECPropStorage, HrLoadObject, (MAPIOBJECT **, lppsMapiObject))
- IECPropStorage* WSMAPIPropStorage::xECPropStorage::GetServerStorage()
- {
- METHOD_PROLOGUE_(WSMAPIPropStorage, ECPropStorage);
- return pThis->GetServerStorage();
- }
|