mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-19 10:25:27 +00:00
Monotone-Parent: 8e645f6ce572b9b56929f17f32c93a52e98cef27
Monotone-Revision: 068bea34405b0256117d10e651c8cbc5279e8821 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-07-12T21:44:38 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -676,91 +676,6 @@ _prepareContextClass (struct mapistore_context *newMemCtx,
|
||||
return MAPISTORE_SUCCESS;
|
||||
}
|
||||
|
||||
- (enum MAPISTATUS) getTableProperty: (void **) data
|
||||
withTag: (enum MAPITAGS) propTag
|
||||
atPosition: (uint32_t) pos
|
||||
withTableType: (uint8_t) tableType
|
||||
andQueryType: (enum table_query_type) queryType
|
||||
inFID: (uint64_t) fid
|
||||
inMemCtx: (TALLOC_CTX *) memCtx
|
||||
{
|
||||
NSString *folderURL;
|
||||
MAPIStoreTable *table;
|
||||
MAPIStoreObject *object;
|
||||
const char *propName;
|
||||
int rc;
|
||||
|
||||
// [self errorWithFormat: @"%s: obsolete method", __FUNCTION__];
|
||||
|
||||
folderURL = [mapping urlFromID: fid];
|
||||
if (folderURL)
|
||||
{
|
||||
table = [self _tableForFID: fid andTableType: tableType];
|
||||
*data = NULL;
|
||||
object = [table childAtRowID: pos forQueryType: queryType];
|
||||
if (object)
|
||||
{
|
||||
rc = [object getProperty: data withTag: propTag inMemCtx: memCtx];
|
||||
if (rc == MAPISTORE_ERR_NOT_FOUND)
|
||||
rc = MAPI_E_NOT_FOUND;
|
||||
else if (rc == MAPISTORE_ERR_NO_MEMORY)
|
||||
rc = MAPI_E_NOT_ENOUGH_MEMORY;
|
||||
else if (rc == MAPISTORE_SUCCESS && *data == NULL)
|
||||
{
|
||||
propName = get_proptag_name (propTag);
|
||||
if (!propName)
|
||||
propName = "<unknown>";
|
||||
|
||||
[self errorWithFormat: @"both 'success' and NULL data"
|
||||
@" returned for proptag %s(0x%.8x)",
|
||||
propName, propTag];
|
||||
rc = MAPI_E_NOT_FOUND;
|
||||
}
|
||||
}
|
||||
else
|
||||
rc = MAPI_E_INVALID_OBJECT;
|
||||
}
|
||||
else
|
||||
{
|
||||
[self errorWithFormat: @"No url found for FID: %lld", fid];
|
||||
rc = MAPI_E_INVALID_OBJECT;
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
- (int) getAvailableProperties: (struct SPropTagArray **) propertiesP
|
||||
ofTableType: (uint8_t) type
|
||||
inMemCtx: (TALLOC_CTX *) memCtx
|
||||
{
|
||||
int rc = MAPISTORE_SUCCESS;
|
||||
|
||||
switch (type)
|
||||
{
|
||||
case MAPISTORE_FOLDER_TABLE:
|
||||
[[baseFolder class] getAvailableProperties: propertiesP inMemCtx: memCtx];
|
||||
break;
|
||||
case MAPISTORE_MESSAGE_TABLE:
|
||||
[[baseFolder messageClass] getAvailableProperties: propertiesP inMemCtx: memCtx];
|
||||
break;
|
||||
case MAPISTORE_FAI_TABLE:
|
||||
[MAPIStoreFAIMessage getAvailableProperties: propertiesP inMemCtx: memCtx];
|
||||
break;
|
||||
case MAPISTORE_RULE_TABLE:
|
||||
[self errorWithFormat: @"%s: rules not handled yet",
|
||||
__PRETTY_FUNCTION__];
|
||||
rc = MAPISTORE_ERROR;
|
||||
break;
|
||||
case MAPISTORE_ATTACHMENT_TABLE:
|
||||
[self errorWithFormat: @"%s: attachments not handled yet",
|
||||
__PRETTY_FUNCTION__];
|
||||
rc = MAPISTORE_ERROR;
|
||||
break;
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
- (int) openMessage: (struct mapistore_message *) msg
|
||||
withMID: (uint64_t) mid
|
||||
inFID: (uint64_t) fid
|
||||
|
||||
Reference in New Issue
Block a user