diff --git a/ChangeLog b/ChangeLog index 7ea359dde..ada561243 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17,6 +17,10 @@ 2011-07-12 Wolfgang Sourdeau + * OpenChange/MAPIStoreSOGo.m: (sogo_op_get_table_property) + (sogo_op_get_available_table_properties): removed obsolete + methods. + * OpenChange/MAPIStoreCalendarMessageTable.m, OpenChange/MAPIStoreContactsMessageTable.m, OpenChange/MAPIStoreFAIMessageTable.m, diff --git a/OpenChange/MAPIStoreContext.h b/OpenChange/MAPIStoreContext.h index b2e7e408e..680492b23 100644 --- a/OpenChange/MAPIStoreContext.h +++ b/OpenChange/MAPIStoreContext.h @@ -119,14 +119,6 @@ withFID: (uint64_t) fid andTableType: (uint8_t) type getTableStatus: (uint8_t *) tableStatus; -- (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; - - (int) mkDir: (struct SRow *) aRow withFID: (uint64_t) fid inParentFID: (uint64_t) parentFID; @@ -153,9 +145,6 @@ inRow: (struct SRow *) aRow withMID: (uint64_t) fmid inMemCtx: (TALLOC_CTX *) memCtx; -- (int) getAvailableProperties: (struct SPropTagArray **) propertiesP - ofTableType: (uint8_t) type - inMemCtx: (TALLOC_CTX *) memCtx; - (int) setPropertiesWithFMID: (uint64_t) fmid ofTableType: (uint8_t) tableType inRow: (struct SRow *) aRow; diff --git a/OpenChange/MAPIStoreContext.m b/OpenChange/MAPIStoreContext.m index 5f1c17ee6..bc2f6973d 100644 --- a/OpenChange/MAPIStoreContext.m +++ b/OpenChange/MAPIStoreContext.m @@ -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 = ""; - - [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 diff --git a/OpenChange/MAPIStoreSOGo.m b/OpenChange/MAPIStoreSOGo.m index 4737ef46f..d801d3825 100644 --- a/OpenChange/MAPIStoreSOGo.m +++ b/OpenChange/MAPIStoreSOGo.m @@ -426,68 +426,6 @@ sogo_op_readdir_count(void *private_data, return rc; } - -static int -sogo_op_get_table_property(void *private_data, - TALLOC_CTX *mem_ctx, - uint64_t fid, - uint8_t table_type, - enum table_query_type query_type, - uint32_t pos, - uint32_t proptag, - void **data) -{ - NSAutoreleasePool *pool; - sogo_context *cContext; - MAPIStoreContext *context; - int rc; - - // DEBUG (5, ("[SOGo: %s:%d]\n", __FUNCTION__, __LINE__)); - - pool = [NSAutoreleasePool new]; - - cContext = private_data; - context = cContext->objcContext; - [context setupRequest]; - - rc = [context getTableProperty: data withTag: proptag atPosition: pos - withTableType: table_type andQueryType: query_type - inFID: fid inMemCtx: mem_ctx]; - - [context tearDownRequest]; - [pool release]; - - return rc; -} - -static int -sogo_op_get_available_table_properties(void *private_data, TALLOC_CTX *mem_ctx, - uint8_t type, - struct SPropTagArray **propertiesP) -{ - NSAutoreleasePool *pool; - sogo_context *cContext; - MAPIStoreContext *context; - int rc; - - DEBUG (5, ("[SOGo: %s:%d]\n", __FUNCTION__, __LINE__)); - - pool = [NSAutoreleasePool new]; - - cContext = private_data; - context = cContext->objcContext; - [context setupRequest]; - - rc = [context getAvailableProperties: propertiesP - ofTableType: type - inMemCtx: mem_ctx]; - - [context tearDownRequest]; - [pool release]; - - return rc; -} - static int sogo_op_openmessage(void *private_data, TALLOC_CTX *mem_ctx, @@ -1235,8 +1173,6 @@ int mapistore_init_backend(void) backend.op_opendir = sogo_op_opendir; backend.op_closedir = sogo_op_closedir; backend.op_readdir_count = sogo_op_readdir_count; - backend.op_get_table_property = sogo_op_get_table_property; - backend.op_get_available_table_properties = sogo_op_get_available_table_properties; backend.op_set_restrictions = sogo_op_set_restrictions; backend.op_set_sort_order = sogo_op_set_sort_order; backend.op_openmessage = sogo_op_openmessage;