X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include_product%2Fmedia_storage.h;h=ccadd946f579ad76656f75981a1de638cd32d63d;hb=08c9737ec8cef4b561ff6c777f1c989cb3df4fb7;hp=b141c51bfcda3d973b24131dceea3dfe8c079d0a;hpb=934c37e407e2280c859ae2b484efafa013ad4c4f;p=platform%2Fcore%2Fapi%2Fmedia-content.git diff --git a/include_product/media_storage.h b/include_product/media_storage.h index b141c51..ccadd94 100755 --- a/include_product/media_storage.h +++ b/include_product/media_storage.h @@ -38,6 +38,7 @@ extern "C" { */ /** +* @deprecated Deprecated since 5.0. * @brief Gets media storage from database. * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif * @@ -59,9 +60,10 @@ extern "C" { * * @see media_content_connect() */ -int media_storage_get_storage_info_from_db(const char *storage_id, media_storage_h *storage); +int media_storage_get_storage_info_from_db(const char *storage_id, media_storage_h *storage) TIZEN_DEPRECATED_API; /** +* @deprecated Deprecated since 5.0. Use @ref CAPI_SYSTEM_STORAGE_MODULE instead. * @brief Gets the count of media storage for the passed @a filter from the media database. * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif * @@ -81,9 +83,10 @@ int media_storage_get_storage_info_from_db(const char *storage_id, media_storage * * @see media_content_connect() */ -int media_storage_get_storage_count_from_db(filter_h filter, int *storage_count); +int media_storage_get_storage_count_from_db(filter_h filter, int *storage_count) TIZEN_DEPRECATED_API; /** + * @deprecated Deprecated since 5.0. Use @ref CAPI_SYSTEM_STORAGE_MODULE instead. * @brief Iterates through media storage from the media database. * @details This function gets all media storage handles meeting the given @a filter. * The @a callback function will be invoked for every retrieved media storage. @@ -110,9 +113,10 @@ int media_storage_get_storage_count_from_db(filter_h filter, int *storage_count) * @see media_content_connect() * @see media_storage_destroy() */ -int media_storage_foreach_storage_from_db(filter_h filter, media_storage_cb callback, void *user_data); +int media_storage_foreach_storage_from_db(filter_h filter, media_storage_cb callback, void *user_data) TIZEN_DEPRECATED_API; /** + * @deprecated Deprecated since 5.0. Use media_info_get_media_count_from_db() instead. * @brief Gets the count of media files for the passed @a filter in the given @a storage_id from the media database. * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif * @@ -134,9 +138,10 @@ int media_storage_foreach_storage_from_db(filter_h filter, media_storage_cb call * * @see media_content_connect() */ -int media_storage_get_media_count_from_db(const char *storage_id, filter_h filter, int *media_count); +int media_storage_get_media_count_from_db(const char *storage_id, filter_h filter, int *media_count) TIZEN_DEPRECATED_API; /** + * @deprecated Deprecated since 5.0. Use media_info_foreach_media_from_db() instead. * @brief Iterates through the media files with an optional @a filter in the given @a storage_id from the media database. * @details This function gets all media files associated with the given storage and * meeting desired filter option and calls @a callback for @@ -144,7 +149,7 @@ int media_storage_get_media_count_from_db(const char *storage_id, filter_h filte * * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif * - * @remarks Do not call updating DB function like media_info_update_to_db(), media_info_refresh_metadata_to_db(), audio_meta_update_to_db(), image_meta_update_to_db() and video_meta_update_to_db() in your callback function, + * @remarks Do not call updating DB function like media_info_update_to_db() in your callback function, * your callback function is invoked as inline function. \n * So, your callback function is in read state in SQLite. When you are in read state, sometimes you do not update DB. \n * We do not recommend you call updating DB function in callback of foreach function.\n @@ -171,12 +176,13 @@ int media_storage_get_media_count_from_db(const char *storage_id, filter_h filte * @see media_content_connect() * @see media_filter_create() */ -int media_storage_foreach_media_from_db(const char *storage_id, filter_h filter, media_info_cb callback, void *user_data); +int media_storage_foreach_media_from_db(const char *storage_id, filter_h filter, media_info_cb callback, void *user_data) TIZEN_DEPRECATED_API; /** + * @deprecated Deprecated since 5.0. * @brief Destroys media storage handle. * @details The function frees all resources related to the media storage handle. This handle - * can no longer be used to perform any operation. New media storage handle has to + * can no longer be used to perform any operations. New media storage handle has to * be created before the next usage. * * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif @@ -193,9 +199,10 @@ int media_storage_foreach_media_from_db(const char *storage_id, filter_h filter, * * @see media_storage_clone() */ -int media_storage_destroy(media_storage_h storage); +int media_storage_destroy(media_storage_h storage) TIZEN_DEPRECATED_API; /** + * @deprecated Deprecated since 5.0. * @brief Clones the media storage handle. * * @details This function copies the media storage handle from a source to the destination. @@ -221,9 +228,10 @@ int media_storage_destroy(media_storage_h storage); * @see media_storage_foreach_storage_from_db() * @see media_storage_get_storage_info_from_db() */ -int media_storage_clone(media_storage_h *dst, media_storage_h src); +int media_storage_clone(media_storage_h *dst, media_storage_h src) TIZEN_DEPRECATED_API; /** + * @deprecated Deprecated since 5.0. * @brief Gets the storage id of media storage. * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif * @@ -239,29 +247,10 @@ int media_storage_clone(media_storage_h *dst, media_storage_h src); * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory */ -int media_storage_get_id(media_storage_h storage, char **storage_id); - -/** - * @deprecated Deprecated since 4.0. - * @brief Gets the storage name of media storage. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif - * - * @remarks The @a storage_name should be released using free(). - * If the requested storage is not the cloud storage, this function returns NULL. - * - * @param[in] storage The media storage handle - * @param[out] storage_name The storage name of the media storage - * - * @return @c 0 on success, - * otherwise a negative error value - * - * @retval #MEDIA_CONTENT_ERROR_NONE Successful - * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter - * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory - */ -int media_storage_get_name(media_storage_h storage, char **storage_name) TIZEN_DEPRECATED_API; +int media_storage_get_id(media_storage_h storage, char **storage_id) TIZEN_DEPRECATED_API; /** + * @deprecated Deprecated since 5.0. Use @ref CAPI_SYSTEM_STORAGE_MODULE instead. * @brief Gets the storage path of media storage. * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif * @@ -277,9 +266,10 @@ int media_storage_get_name(media_storage_h storage, char **storage_name) TIZEN_D * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory */ -int media_storage_get_path(media_storage_h storage, char **storage_path); +int media_storage_get_path(media_storage_h storage, char **storage_path) TIZEN_DEPRECATED_API; /** + * @deprecated Deprecated since 5.0. Use storage_get_type_dev() instead. * @brief Gets the storage type of media storage. * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif * @@ -292,7 +282,7 @@ int media_storage_get_path(media_storage_h storage, char **storage_path); * @retval #MEDIA_CONTENT_ERROR_NONE Successful * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter */ -int media_storage_get_type(media_storage_h storage, media_content_storage_e *storage_type); +int media_storage_get_type(media_storage_h storage, media_content_storage_e *storage_type) TIZEN_DEPRECATED_API; /** * @}