code cleanup
[platform/core/api/media-content.git] / include_product / media_storage.h
index 56b8da5..ccadd94 100755 (executable)
@@ -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
 *
@@ -54,15 +55,15 @@ extern "C" {
 * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
 * @retval #MEDIA_CONTENT_ERROR_DB_FAILED  DB Operation failed
 * @retval #MEDIA_CONTENT_ERROR_DB_BUSY DB Operation busy
-* @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
 *
 * @pre This function requires opened connection to content service by media_content_connect().
 *
 * @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
 *
@@ -77,15 +78,15 @@ int media_storage_get_storage_info_from_db(const char *storage_id, media_storage
 * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION Invalid operation
 * @retval #MEDIA_CONTENT_ERROR_DB_FAILED DB Operation failed
 * @retval #MEDIA_CONTENT_ERROR_DB_BUSY DB Operation busy
-* @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
 *
 * @pre This function requires opened connection to content service by media_content_connect().
 *
 * @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.
@@ -105,7 +106,6 @@ int media_storage_get_storage_count_from_db(filter_h filter, int *storage_count)
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_DB_FAILED         DB Operation failed
  * @retval #MEDIA_CONTENT_ERROR_DB_BUSY           DB Operation busy
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
  *
  * @pre  This function requires opened connection to content service by media_content_connect().
  * @post This function invokes media_storage_destroy().
@@ -113,12 +113,15 @@ 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
  *
+ * @remarks Use media_info_get_media_count_from_db() if you want to search for internal storage.
+ *
  * @param[in] storage_id The ID of the media storage
  * @param[in] filter The handle to the media filter
  * @param[out] media_count The count of media storage items
@@ -130,15 +133,15 @@ int media_storage_foreach_storage_from_db(filter_h filter, media_storage_cb call
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MEDIA_CONTENT_ERROR_DB_FAILED         DB Operation failed
  * @retval #MEDIA_CONTENT_ERROR_DB_BUSY           DB Operation busy
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
  *
  * @pre This function requires opened connection to content service by media_content_connect().
  *
  * @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
@@ -146,10 +149,11 @@ 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.
+ *                    We do not recommend you call updating DB function in callback of foreach function.\n
+ *                    Use media_info_foreach_media_from_db() if you want to search for internal storage.
  *
  * @param[in] storage_id The ID of the media storage
  * @param[in] filter The handle to the media filter
@@ -164,7 +168,6 @@ int media_storage_get_media_count_from_db(const char *storage_id, filter_h filte
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_DB_FAILED         DB Operation failed
  * @retval #MEDIA_CONTENT_ERROR_DB_BUSY           DB Operation busy
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
  *
  * @pre  This function requires opened connection to content service by media_content_connect().
  * @post This function invokes media_info_cb().
@@ -173,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
@@ -195,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.
@@ -207,7 +212,7 @@ int media_storage_destroy(media_storage_h storage);
  *
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarksThe @a dst should be released using media_storage_destroy().
+ * @remarks The @a dst should be released using media_storage_destroy().
  *
  * @param[out] dst The destination handle to the media storage
  * @param[in] src The source handle to the media storage
@@ -223,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
  *
@@ -241,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
  *
@@ -279,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
  *
@@ -294,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;
 
 /**
  * @}