Apply coding rules 92/148892/1 submit/tizen/20170911.125730
authorSeonah Moon <seonah1.moon@samsung.com>
Mon, 11 Sep 2017 05:51:58 +0000 (14:51 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Mon, 11 Sep 2017 05:52:02 +0000 (14:52 +0900)
Change-Id: Id0ac3415d4a9af787cdf77b9f0dad2da8e1ddab3

include/download.h
include/download_product.h

index 6a37293..4e98544 100755 (executable)
@@ -43,33 +43,33 @@ extern "C"
  * @since_tizen 2.3
  */
 typedef enum {
-    DOWNLOAD_ERROR_NONE = TIZEN_ERROR_NONE,                                 /**< Successful */
-    DOWNLOAD_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER,       /**< Invalid parameter */
-    DOWNLOAD_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY,               /**< Out of memory */
-    DOWNLOAD_ERROR_NETWORK_UNREACHABLE = TIZEN_ERROR_NETWORK_UNREACHABLE,   /**< Network is unreachable */
-    DOWNLOAD_ERROR_CONNECTION_TIMED_OUT = TIZEN_ERROR_CONNECTION_TIME_OUT,  /**< HTTP session time-out */
-    DOWNLOAD_ERROR_NO_SPACE = TIZEN_ERROR_FILE_NO_SPACE_ON_DEVICE,          /**< No space left on device */
-    DOWNLOAD_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED,       /**< Permission denied */
-    DOWNLOAD_ERROR_NOT_SUPPORTED = TIZEN_ERROR_NOT_SUPPORTED,               /**< Not supported */
-    DOWNLOAD_ERROR_INVALID_STATE = TIZEN_ERROR_DOWNLOAD | 0x21,             /**< Invalid state */
-    DOWNLOAD_ERROR_CONNECTION_FAILED = TIZEN_ERROR_DOWNLOAD | 0x22,         /**< Connection failed */
-    DOWNLOAD_ERROR_INVALID_URL = TIZEN_ERROR_DOWNLOAD | 0x24,               /**< Invalid URL */
-    DOWNLOAD_ERROR_INVALID_DESTINATION = TIZEN_ERROR_DOWNLOAD | 0x25,       /**< Invalid destination */
-    DOWNLOAD_ERROR_TOO_MANY_DOWNLOADS = TIZEN_ERROR_DOWNLOAD | 0x26,        /**< Too many simultaneous downloads */
-    DOWNLOAD_ERROR_QUEUE_FULL = TIZEN_ERROR_DOWNLOAD | 0x27,                /**< Download server queue is full*/
-    DOWNLOAD_ERROR_ALREADY_COMPLETED = TIZEN_ERROR_DOWNLOAD | 0x28,         /**< The download is already completed */
-    DOWNLOAD_ERROR_FILE_ALREADY_EXISTS = TIZEN_ERROR_DOWNLOAD | 0x29,       /**< Failed to rename the downloaded file */
-    DOWNLOAD_ERROR_CANNOT_RESUME = TIZEN_ERROR_DOWNLOAD | 0x2a,             /**< Cannot resume */
-    DOWNLOAD_ERROR_FIELD_NOT_FOUND = TIZEN_ERROR_DOWNLOAD | 0x2b,           /**< Specified field not found */
-    DOWNLOAD_ERROR_TOO_MANY_REDIRECTS = TIZEN_ERROR_DOWNLOAD | 0x30,        /**< Too many redirects from HTTP response header*/
-    DOWNLOAD_ERROR_UNHANDLED_HTTP_CODE = TIZEN_ERROR_DOWNLOAD | 0x31,       /**< The download cannot handle the HTTP status value */
-    DOWNLOAD_ERROR_REQUEST_TIMEOUT = TIZEN_ERROR_DOWNLOAD | 0x32,           /**< No action after client creates a download ID*/
-    DOWNLOAD_ERROR_RESPONSE_TIMEOUT = TIZEN_ERROR_DOWNLOAD | 0x33,          /**< No call to start API for some time although the download is created*/
-    DOWNLOAD_ERROR_SYSTEM_DOWN = TIZEN_ERROR_DOWNLOAD | 0x34,               /**< No response from client after rebooting download daemon*/
-    DOWNLOAD_ERROR_ID_NOT_FOUND = TIZEN_ERROR_DOWNLOAD | 0x35,              /**< Download ID does not exist in download service module*/
-    DOWNLOAD_ERROR_INVALID_NETWORK_TYPE = TIZEN_ERROR_DOWNLOAD | 0x36,      /**< Network bonding is set but network type is not set as DOWNLOAD_NETWORK_ALL*/
-    DOWNLOAD_ERROR_NO_DATA = TIZEN_ERROR_NO_DATA,                           /**< No data because the set API is not called */
-    DOWNLOAD_ERROR_IO_ERROR = TIZEN_ERROR_IO_ERROR ,                        /**< Internal I/O error */
+       DOWNLOAD_ERROR_NONE = TIZEN_ERROR_NONE,                                 /**< Successful */
+       DOWNLOAD_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER,       /**< Invalid parameter */
+       DOWNLOAD_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY,               /**< Out of memory */
+       DOWNLOAD_ERROR_NETWORK_UNREACHABLE = TIZEN_ERROR_NETWORK_UNREACHABLE,   /**< Network is unreachable */
+       DOWNLOAD_ERROR_CONNECTION_TIMED_OUT = TIZEN_ERROR_CONNECTION_TIME_OUT,  /**< HTTP session time-out */
+       DOWNLOAD_ERROR_NO_SPACE = TIZEN_ERROR_FILE_NO_SPACE_ON_DEVICE,          /**< No space left on device */
+       DOWNLOAD_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED,       /**< Permission denied */
+       DOWNLOAD_ERROR_NOT_SUPPORTED = TIZEN_ERROR_NOT_SUPPORTED,               /**< Not supported */
+       DOWNLOAD_ERROR_INVALID_STATE = TIZEN_ERROR_DOWNLOAD | 0x21,             /**< Invalid state */
+       DOWNLOAD_ERROR_CONNECTION_FAILED = TIZEN_ERROR_DOWNLOAD | 0x22,         /**< Connection failed */
+       DOWNLOAD_ERROR_INVALID_URL = TIZEN_ERROR_DOWNLOAD | 0x24,               /**< Invalid URL */
+       DOWNLOAD_ERROR_INVALID_DESTINATION = TIZEN_ERROR_DOWNLOAD | 0x25,       /**< Invalid destination */
+       DOWNLOAD_ERROR_TOO_MANY_DOWNLOADS = TIZEN_ERROR_DOWNLOAD | 0x26,        /**< Too many simultaneous downloads */
+       DOWNLOAD_ERROR_QUEUE_FULL = TIZEN_ERROR_DOWNLOAD | 0x27,                /**< Download server queue is full*/
+       DOWNLOAD_ERROR_ALREADY_COMPLETED = TIZEN_ERROR_DOWNLOAD | 0x28,         /**< The download is already completed */
+       DOWNLOAD_ERROR_FILE_ALREADY_EXISTS = TIZEN_ERROR_DOWNLOAD | 0x29,       /**< Failed to rename the downloaded file */
+       DOWNLOAD_ERROR_CANNOT_RESUME = TIZEN_ERROR_DOWNLOAD | 0x2a,             /**< Cannot resume */
+       DOWNLOAD_ERROR_FIELD_NOT_FOUND = TIZEN_ERROR_DOWNLOAD | 0x2b,           /**< Specified field not found */
+       DOWNLOAD_ERROR_TOO_MANY_REDIRECTS = TIZEN_ERROR_DOWNLOAD | 0x30,        /**< Too many redirects from HTTP response header*/
+       DOWNLOAD_ERROR_UNHANDLED_HTTP_CODE = TIZEN_ERROR_DOWNLOAD | 0x31,       /**< The download cannot handle the HTTP status value */
+       DOWNLOAD_ERROR_REQUEST_TIMEOUT = TIZEN_ERROR_DOWNLOAD | 0x32,           /**< No action after client creates a download ID*/
+       DOWNLOAD_ERROR_RESPONSE_TIMEOUT = TIZEN_ERROR_DOWNLOAD | 0x33,          /**< No call to start API for some time although the download is created*/
+       DOWNLOAD_ERROR_SYSTEM_DOWN = TIZEN_ERROR_DOWNLOAD | 0x34,               /**< No response from client after rebooting download daemon*/
+       DOWNLOAD_ERROR_ID_NOT_FOUND = TIZEN_ERROR_DOWNLOAD | 0x35,              /**< Download ID does not exist in download service module*/
+       DOWNLOAD_ERROR_INVALID_NETWORK_TYPE = TIZEN_ERROR_DOWNLOAD | 0x36,      /**< Network bonding is set but network type is not set as DOWNLOAD_NETWORK_ALL*/
+       DOWNLOAD_ERROR_NO_DATA = TIZEN_ERROR_NO_DATA,                           /**< No data because the set API is not called */
+       DOWNLOAD_ERROR_IO_ERROR = TIZEN_ERROR_IO_ERROR ,                        /**< Internal I/O error */
 } download_error_e;
 
 
@@ -78,14 +78,14 @@ typedef enum {
  * @since_tizen 2.3
  */
 typedef enum {
-    DOWNLOAD_STATE_NONE,         /**< Unhandled exception */
-    DOWNLOAD_STATE_READY,        /**< Ready to download */
-    DOWNLOAD_STATE_QUEUED,       /**< Queued to start downloading */
-    DOWNLOAD_STATE_DOWNLOADING,  /**< Currently downloading */
-    DOWNLOAD_STATE_PAUSED,       /**< The download is waiting to resume */
-    DOWNLOAD_STATE_COMPLETED,    /**< The download is completed */
-    DOWNLOAD_STATE_FAILED,       /**< The download failed */
-    DOWNLOAD_STATE_CANCELED,     /**< User canceled the download item */
+       DOWNLOAD_STATE_NONE,         /**< Unhandled exception */
+       DOWNLOAD_STATE_READY,        /**< Ready to download */
+       DOWNLOAD_STATE_QUEUED,       /**< Queued to start downloading */
+       DOWNLOAD_STATE_DOWNLOADING,  /**< Currently downloading */
+       DOWNLOAD_STATE_PAUSED,       /**< The download is waiting to resume */
+       DOWNLOAD_STATE_COMPLETED,    /**< The download is completed */
+       DOWNLOAD_STATE_FAILED,       /**< The download failed */
+       DOWNLOAD_STATE_CANCELED,     /**< User canceled the download item */
 } download_state_e;
 
 /**
@@ -93,10 +93,10 @@ typedef enum {
  * @since_tizen 2.3
  */
 typedef enum {
-    DOWNLOAD_NETWORK_DATA_NETWORK, /**< Download is available through data network */
-    DOWNLOAD_NETWORK_WIFI,         /**< Download is available through WiFi */
-    DOWNLOAD_NETWORK_WIFI_DIRECT,  /**< Download is available through WiFi-Direct */
-    DOWNLOAD_NETWORK_ALL           /**< Download is available through either data network or WiFi */
+       DOWNLOAD_NETWORK_DATA_NETWORK, /**< Download is available through data network */
+       DOWNLOAD_NETWORK_WIFI,         /**< Download is available through WiFi */
+       DOWNLOAD_NETWORK_WIFI_DIRECT,  /**< Download is available through WiFi-Direct */
+       DOWNLOAD_NETWORK_ALL           /**< Download is available through either data network or WiFi */
 } download_network_type_e;
 
 
@@ -108,9 +108,9 @@ typedef enum {
  * @see download_get_notification_type()
  */
 typedef enum {
-    DOWNLOAD_NOTIFICATION_TYPE_NONE = 0,       /**< Do not register notification */
-    DOWNLOAD_NOTIFICATION_TYPE_COMPLETE_ONLY,  /**< Completion notification for success state and failed state */
-    DOWNLOAD_NOTIFICATION_TYPE_ALL             /**< All download notifications for ongoing state, success state and failed state */
+       DOWNLOAD_NOTIFICATION_TYPE_NONE = 0,       /**< Do not register notification */
+       DOWNLOAD_NOTIFICATION_TYPE_COMPLETE_ONLY,  /**< Completion notification for success state and failed state */
+       DOWNLOAD_NOTIFICATION_TYPE_ALL             /**< All download notifications for ongoing state, success state and failed state */
 } download_notification_type_e;
 
 
@@ -122,9 +122,9 @@ typedef enum {
  * @see download_get_notification_app_control()
  */
 typedef enum {
-    DOWNLOAD_NOTIFICATION_APP_CONTROL_TYPE_ONGOING = 0,  /**< App control action for failed and ongoing notification */
-    DOWNLOAD_NOTIFICATION_APP_CONTROL_TYPE_COMPLETE,     /**< App control action for completed notification */
-    DOWNLOAD_NOTIFICATION_APP_CONTROL_TYPE_FAILED        /**< App control action for failed notification*/
+       DOWNLOAD_NOTIFICATION_APP_CONTROL_TYPE_ONGOING = 0,  /**< App control action for failed and ongoing notification */
+       DOWNLOAD_NOTIFICATION_APP_CONTROL_TYPE_COMPLETE,     /**< App control action for completed notification */
+       DOWNLOAD_NOTIFICATION_APP_CONTROL_TYPE_FAILED        /**< App control action for failed notification*/
 } download_notification_app_control_type_e;
 
 /**
@@ -142,7 +142,7 @@ typedef enum {
  * @see download_unset_state_changed_cb()
  */
 typedef void (*download_state_changed_cb) (int download_id,
-    download_state_e state, void *user_data);
+               download_state_e state, void *user_data);
 
 /**
  * @brief Called when the progress of download changes.
index a854338..4d573b9 100644 (file)
@@ -37,7 +37,7 @@ extern "C"
  *if the content size is over than specific size.
  *
  * @since_tizen 2.3
- * @privlevel public 
+ * @privlevel public
  * @privilege %http://tizen.org/privilege/download
  * @remarks This function should be called before downloading (see download_start()).
  * @remarks If the network type is not set as DOWNLOAD_NETWORK_ALL, the error is happened.
@@ -59,7 +59,7 @@ int download_set_network_bonding(int download_id, bool enable);
  * @brief Gets the 'enabled' state of the network bonding feature.
  *
  * @since_tizen 2.3
- * @privlevel public 
+ * @privlevel public
  * @privilege %http://tizen.org/privilege/download
  * @param[in] download_id The download id
  * @param[out] enable The enable value