[9.0][location] Remove conditional statements for Mobile/Wearable profile
[platform/core/api/location-manager.git] / include / location_bounds.h
index 05526ed..85e0f61 100644 (file)
 extern "C" {
 #endif
 
-#define LOCATION_BOUNDS_ERROR_CLASS                    TIZEN_ERROR_LOCATION_MANAGER | 0x20
+#define LOCATION_BOUNDS_ERROR_CLASS TIZEN_ERROR_LOCATION_MANAGER | 0x20
+
 
 /**
  * @addtogroup CAPI_LOCATION_BOUNDS_MODULE
  * @{
  */
 
+
 /**
  * @brief The structure type to represent coordinates with latitude and longitude.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef struct {
-       double latitude;        /**< The latitude [-90.0 ~ 90.0] (degrees) */
-       double longitude;       /**< The longitude [-180.0 ~ 180.0] (degrees) */
+       double latitude; /**< The latitude [-90.0 ~ 90.0] (degrees) */
+       double longitude; /**< The longitude [-180.0 ~ 180.0] (degrees) */
 } location_coords_s;
 
+
 /**
  * @brief Enumeration for error code for Location manager.
+ * @since_tizen 2.3
  */
 typedef enum {
-    LOCATION_BOUNDS_ERROR_NONE = TIZEN_ERROR_NONE,                                                             /**< Successful */
-    LOCATION_BOUNDS_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY,                   /**< Out of memory */
-    LOCATION_BOUNDS_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER,   /**< Invalid parameter */
-    LOCATION_BOUNDS_ERROR_NOT_SUPPORTED = TIZEN_ERROR_NOT_SUPPORTED,                   /**< Not supported */
-    LOCATION_BOUNDS_ERROR_INCORRECT_TYPE = LOCATION_BOUNDS_ERROR_CLASS | 0x01, /**< Incorrect bounds type for a given call */
-    LOCATION_BOUNDS_ERROR_IS_ADDED = LOCATION_BOUNDS_ERROR_CLASS | 0x02,               /**< Cannot remove bounds handle from location manager */
+       LOCATION_BOUNDS_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
+       LOCATION_BOUNDS_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of memory */
+       LOCATION_BOUNDS_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid parameter */
+       LOCATION_BOUNDS_ERROR_NOT_SUPPORTED = TIZEN_ERROR_NOT_SUPPORTED, /**< Not supported */
+       LOCATION_BOUNDS_ERROR_INCORRECT_TYPE = LOCATION_BOUNDS_ERROR_CLASS | 0x01, /**< Incorrect bounds type for a given call */
+       LOCATION_BOUNDS_ERROR_IS_ADDED = LOCATION_BOUNDS_ERROR_CLASS | 0x02, /**< Cannot remove bounds handle from location manager */
 } location_bound_error_e;
 
+
 /**
  * @brief Enumeration for Location boundary type.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef enum {
-    LOCATION_BOUNDS_RECT = 1,          /**< Rectangular geographical area type. */
-    LOCATION_BOUNDS_CIRCLE,                    /**< Circle geographical area type.. */
-    LOCATION_BOUNDS_POLYGON,           /**< Polygon geographical area type.. */
+       LOCATION_BOUNDS_RECT = 1, /**< Rectangular geographical area type. */
+       LOCATION_BOUNDS_CIRCLE, /**< Circle geographical area type.. */
+       LOCATION_BOUNDS_POLYGON, /**< Polygon geographical area type.. */
 } location_bounds_type_e;
 
+
 /**
  * @brief Enumeration for the boundary state.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef enum {
-    LOCATIONS_BOUNDARY_IN,                     /**< Boundary In (Zone In) */
-    LOCATIONS_BOUNDARY_OUT                     /**< Boundary Out (Zone Out) */
+       LOCATIONS_BOUNDARY_IN, /**< Boundary In (Zone In) */
+       LOCATIONS_BOUNDARY_OUT /**< Boundary Out (Zone Out) */
 } location_boundary_state_e;
 
+
 /**
  * @brief The location boundary handle.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef struct location_bounds_s *location_bounds_h;
 
+
 /**
  * @brief Gets called iteratively to notify you of coordinates of a polygon.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- * @param[in] coords           The coordinates
- * @param[in] user_data                The user data passed from the foreach function
- * @return @c true to continue with the next iteration of the loop, \n @c false to break out of the loop
+ * @since_tizen 2.3
+ * @param[in] coords The coordinates
+ * @param[in] user_data The user data passed from the foreach function
+ * @return @c true to continue with the next iteration of the loop, \n
+ *         @c false to break out of the loop
  * @pre location_bounds_foreach_polygon_coords() will invoke this callback.
  * @see location_bounds_foreach_polygon_coords()
  */
 typedef bool (*polygon_coords_cb)(location_coords_s coords, void *user_data);
 
+
 /**
  * @brief Called when the given boundary is entered or exited.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- * @param[in] state                    The boundary state
- * @pre location_manager_start() will invoke this callback if you register this callback using location_bounds_set_state_changed_cb()
+ * @since_tizen  2.3
+ * @param[in] state The boundary state
+ * @param[in] user_data The user data passed from the start function
+ * @pre location_manager_start() will invoke this callback if you register this callback using location_bounds_set_state_changed_cb().
  * @see #location_boundary_state_e
  * @see location_manager_start()
  * @see location_bounds_set_state_changed_cb()
  */
 typedef void (*location_bounds_state_changed_cb)(location_boundary_state_e state, void *user_data);
 
+
 /**
  * @brief Creates a rect type of new location bounds.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  * @remarks You must release @a bounds using location_bounds_destroy().
- * @param[in] top_left         The top left position
- * @param[in] bottom_right     The bottom right position
- * @param[out] bounds          The location bounds handle that is newly created
- * @return @c 0 on success, otherwise a negative error value.
+ * @param[in] top_left The top left position
+ * @param[in] bottom_right The bottom right position
+ * @param[out] bounds The location bounds handle that is newly created
+ * @return @c 0 on success,
+ *         otherwise a negative error value
  * @retval #LOCATION_BOUNDS_ERROR_NONE Successful
  * @retval #LOCATION_BOUNDS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER    Invalid parameter
@@ -116,14 +129,16 @@ typedef void (*location_bounds_state_changed_cb)(location_boundary_state_e state
  */
 int location_bounds_create_rect(location_coords_s top_left, location_coords_s bottom_right, location_bounds_h *bounds);
 
+
 /**
  * @brief Creates a circle type of new location bounds.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  * @remarks You must release @a bounds using location_bounds_destroy().
- * @param[in] center           The center position
- * @param[in] radius           The radius of a circle (meters)
- * @param[out] bounds          The location bounds handle that is newly created
- * @return @c 0 on success, otherwise a negative error value
+ * @param[in] center The center position
+ * @param[in] radius The radius of a circle (meters)
+ * @param[out] bounds The location bounds handle that is newly created
+ * @return @c 0 on success,
+ *         otherwise a negative error value
  * @retval #LOCATION_BOUNDS_ERROR_NONE Successful
  * @retval #LOCATION_BOUNDS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER    Invalid parameter
@@ -133,15 +148,17 @@ int location_bounds_create_rect(location_coords_s top_left, location_coords_s bo
  */
 int location_bounds_create_circle(location_coords_s center, double radius, location_bounds_h *bounds);
 
+
 /**
  * @brief Creates a polygon type of new location bounds.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  * @remarks You must release @a bounds using location_bounds_destroy().
  * @remarks @a length should be more than @c 3 to represent polygon.
- * @param[in] coords_list      The list of coordinates
- * @param[in] length           The length of the coordinates list
- * @param[out] bounds          The location bounds handle that is newly created on success
- * @return @c 0 on success, otherwise a negative error value
+ * @param[in] coords_list The list of coordinates
+ * @param[in] length The length of the coordinates list
+ * @param[out] bounds The location bounds handle that is newly created on success
+ * @return @c 0 on success,
+ *         otherwise a negative error value
  * @retval #LOCATION_BOUNDS_ERROR_NONE Successful
  * @retval #LOCATION_BOUNDS_ERROR_OUT_OF_MEMORY Out of memory
  * @retval #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER    Invalid parameter
@@ -151,17 +168,19 @@ int location_bounds_create_circle(location_coords_s center, double radius, locat
  */
 int location_bounds_create_polygon(location_coords_s *coords_list, int length, location_bounds_h *bounds);
 
+
 /**
  * @brief Checks whether the bounds contains the specified coordinates.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- * @remark The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
- * @param[in] bounds           The location bounds handle
- * @param[in] coords           The coordinates
- * @return @c true if the bounds contains the specified coordinates, otherwise else @c false
+ * @since_tizen 2.3
+ * @remarks The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
+ * @param[in] bounds The location bounds handle
+ * @param[in] coords The coordinates
+ * @return @c true if the bounds contains the specified coordinates,
+ *         otherwise else @c false
  * @exception #LOCATION_BOUNDS_ERROR_NONE Successful
  * @exception #LOCATION_BOUNDS_ERROR_OUT_OF_MEMORY Out of memory
- * @exception #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER Invalid parameter
- * @exception #LOCATION_BOUNDS_ERROR_NOT_SUPPORTED     Not supported
+ * @exception #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @exception #LOCATION_BOUNDS_ERROR_NOT_SUPPORTED Not supported
  * @see location_bounds_create_rect()
  * @see location_bounds_create_circle()
  * @see location_bounds_create_polygon()
@@ -169,11 +188,31 @@ int location_bounds_create_polygon(location_coords_s *coords_list, int length, l
 bool location_bounds_contains_coordinates(location_bounds_h bounds, location_coords_s coords);
 
 /**
+ * @brief Checks whether the edges of the bounds contain the specified coordinates within tolerance.
+ * @since_tizen 6.0
+ * @param[in] bounds The location bounds handle
+ * @param[in] coords The coordinates
+ * @param[in] tolerance tolerance in metres
+ * @return @c true if the distance between edges of @a bounds and point at @a coords are not farther than @a tolerance
+ *         otherwise @c false
+ * @exception #LOCATION_BOUNDS_ERROR_NONE Successful
+ * @exception #LOCATION_BOUNDS_ERROR_OUT_OF_MEMORY Out of memory
+ * @exception #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER Invalid parameter
+ * @exception #LOCATION_BOUNDS_ERROR_NOT_SUPPORTED Not supported
+ * @see location_bounds_create_rect()
+ * @see location_bounds_create_circle()
+ * @see location_bounds_create_polygon()
+ */
+bool location_bounds_contains_coordinates_on_edge(location_bounds_h bounds, location_coords_s coords, double tolerance);
+
+
+/**
  * @brief Gets the type of location bounds.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- * @param[in] bounds           The location bounds handle
- * @param[out] type                    The type of location bounds
- * @return @c 0 on success, otherwise a negative error value.
+ * @since_tizen 2.3
+ * @param[in] bounds The location bounds handle
+ * @param[out] type The type of location bounds
+ * @return @c 0 on success,
+ *         otherwise a negative error value
  * @retval #LOCATION_BOUNDS_ERROR_NONE Successful
  * @retval #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER    Invalid parameter
  * @retval #LOCATION_BOUNDS_ERROR_NOT_SUPPORTED        Not supported
@@ -183,13 +222,15 @@ bool location_bounds_contains_coordinates(location_bounds_h bounds, location_coo
  */
 int location_bounds_get_type(location_bounds_h bounds, location_bounds_type_e *type);
 
+
 /**
  * @brief Gets the center position and radius of circle bounds.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- * @param[in] bounds                   The location bounds handle
- * @param[out] top_left                        The top left position
- * @param[out] bottom_right            The bottom right position
- * @return @c 0 on success, otherwise a negative error value.
+ * @since_tizen 2.3
+ * @param[in] bounds The location bounds handle
+ * @param[out] top_left The top left position
+ * @param[out] bottom_right The bottom right position
+ * @return @c 0 on success,
+ *         otherwise a negative error value
  * @retval #LOCATION_BOUNDS_ERROR_NONE Successful
  * @retval #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER    Invalid parameter
  * @retval #LOCATION_BOUNDS_ERROR_NOT_SUPPORTED        Not supported
@@ -198,13 +239,15 @@ int location_bounds_get_type(location_bounds_h bounds, location_bounds_type_e *t
  */
 int location_bounds_get_rect_coords(location_bounds_h bounds, location_coords_s *top_left, location_coords_s *bottom_right);
 
+
 /**
  * @brief Gets the center position and radius of circle bounds.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- * @param[in] bounds           The location bounds handle
- * @param[out] center          The center position of the circle
- * @param[out] radius          The radius of the circle
- * @return @c 0 on success, otherwise a negative error value.
+ * @since_tizen 2.3
+ * @param[in] bounds The location bounds handle
+ * @param[out] center The center position of the circle
+ * @param[out] radius The radius of the circle
+ * @return @c 0 on success,
+ *         otherwise a negative error value
  * @retval #LOCATION_BOUNDS_ERROR_NONE Successful
  * @retval #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER    Invalid parameter
  * @retval #LOCATION_BOUNDS_ERROR_NOT_SUPPORTED        Not supported
@@ -213,13 +256,15 @@ int location_bounds_get_rect_coords(location_bounds_h bounds, location_coords_s
  */
 int location_bounds_get_circle_coords(location_bounds_h bounds, location_coords_s *center, double *radius);
 
+
 /**
  * @brief Get the coordinates of a polygon.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- * @param[in] bounds           The location bounds handle
- * @param[in] callback         The geocoder get position callback function
- * @param[in] user_data                The user data to be passed to the callback function
- * @return @c 0 on success, otherwise a negative error value.
+ * @since_tizen 2.3
+ * @param[in] bounds The location bounds handle
+ * @param[in] callback The iteration callback
+ * @param[in] user_data The user data to be passed to the callback function
+ * @return @c 0 on success,
+ *         otherwise a negative error value
  * @retval #LOCATION_BOUNDS_ERROR_NONE Successful
  * @retval #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER    Invalid parameter
  * @retval #LOCATION_BOUNDS_ERROR_NOT_SUPPORTED        Not supported
@@ -230,11 +275,13 @@ int location_bounds_get_circle_coords(location_bounds_h bounds, location_coords_
  */
 int location_bounds_foreach_polygon_coords(location_bounds_h bounds, polygon_coords_cb callback, void *user_data);
 
+
 /**
  * @brief Releases the location bounds.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- * @param[in] bounds           The location bounds handle
- * @return @c 0 on success, otherwise a negative error value.
+ * @since_tizen 2.3
+ * @param[in] bounds The location bounds handle
+ * @return @c 0 on success,
+ *         otherwise a negative error value
  * @retval #LOCATION_BOUNDS_ERROR_NONE Successful
  * @retval #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER    Invalid parameter
  * @retval #LOCATION_BOUNDS_ERROR_NOT_SUPPORTED        Not supported
@@ -244,27 +291,31 @@ int location_bounds_foreach_polygon_coords(location_bounds_h bounds, polygon_coo
 */
 int location_bounds_destroy(location_bounds_h bounds);
 
+
 /**
  * @brief Registers a callback function to be invoked when the boundary area is entered or exited.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- * @param[in] bounds           The location bounds handle
- * @param[in] callback         The callback function to register
- * @param[in] user_data                The user data to be passed to the callback function
- * @return @c 0 on success, otherwise a negative error value.
+ * @since_tizen 2.3
+ * @param[in] bounds The location bounds handle
+ * @param[in] callback The callback function to register
+ * @param[in] user_data The user data to be passed to the callback function
+ * @return @c 0 on success,
+ *         otherwise a negative error value
  * @retval #LOCATION_BOUNDS_ERROR_NONE Successful
  * @retval #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER    Invalid parameter
  * @retval #LOCATION_BOUNDS_ERROR_NOT_SUPPORTED        Not supported
- * @post location_bounds_state_changed_cb() will be invoked
+ * @post location_bounds_state_changed_cb() will be invoked.
  * @see location_bounds_unset_state_changed_cb()
  * @see location_bounds_state_changed_cb()
  */
 int location_bounds_set_state_changed_cb(location_bounds_h bounds, location_bounds_state_changed_cb callback, void *user_data);
 
+
 /**
- * @brief      Unregisters the callback function.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- * @param[in] bounds           The location bounds handle
- * @return @c 0 on success, otherwise a negative error value.
+ * @brief Unregisters the callback function.
+ * @since_tizen 2.3
+ * @param[in] bounds The location bounds handle
+ * @return @c 0 on success,
+ *         otherwise a negative error value
  * @retval #LOCATION_BOUNDS_ERROR_NONE Successful
  * @retval #LOCATION_BOUNDS_ERROR_INVALID_PARAMETER    Invalid parameter
  * @retval #LOCATION_BOUNDS_ERROR_NOT_SUPPORTED        Not supported
@@ -272,6 +323,7 @@ int location_bounds_set_state_changed_cb(location_bounds_h bounds, location_boun
  */
 int location_bounds_unset_state_changed_cb(location_bounds_h bounds);
 
+
 /**
  * @}
  */