Fix to get precise value of distance in location_manager_get_distance
[platform/core/api/location-manager.git] / src / locations.c
1 /*
2  * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <string.h>
20 #include <system_info.h>
21 #include "locations.h"
22 #include "location_internal.h"
23
24 #define LOCATIONS_METHOD_FIRST  LOCATIONS_METHOD_HYBRID
25 #define LOCATIONS_METHOD_LAST   LOCATIONS_METHOD_FUSED
26
27 static location_setting_changed_s g_location_setting[LOCATIONS_METHOD_LAST + 1];
28
29 static location_method_e __convert_location_method_e(LocationMethod method)
30 {
31         location_method_e _method = LOCATIONS_METHOD_NONE;      //LCOV_EXCL_LINE
32         switch (method) {
33         case LOCATION_METHOD_HYBRID:
34                 _method = LOCATIONS_METHOD_HYBRID;
35                 break;
36         case LOCATION_METHOD_GPS:
37                 _method = LOCATIONS_METHOD_GPS;
38                 break;
39         case LOCATION_METHOD_WPS:
40                 _method = LOCATIONS_METHOD_WPS;
41                 break;
42         case LOCATION_METHOD_NONE:
43         default:
44                 break;
45         }
46         return _method;
47 }
48
49 static LocationMethod __convert_LocationMethod(location_method_e method)
50 {
51         LocationMethod _method = LOCATION_METHOD_NONE;
52         switch (method) {
53         case LOCATIONS_METHOD_HYBRID:
54                 _method = LOCATION_METHOD_HYBRID;
55                 break;
56         case LOCATIONS_METHOD_GPS:
57                 _method = LOCATION_METHOD_GPS;
58                 break;
59         case LOCATIONS_METHOD_WPS:
60                 _method = LOCATION_METHOD_WPS;
61                 break;
62         case LOCATIONS_METHOD_PASSIVE:
63                 _method = LOCATION_METHOD_PASSIVE;
64                 break;
65         case LOCATIONS_METHOD_FUSED:
66                 _method = LOCATION_METHOD_FUSED;
67                 break;
68         case LOCATIONS_METHOD_NONE:
69         default:
70                 _method = LOCATION_METHOD_NONE;
71                 break;
72         }
73         return _method;
74 }
75
76 static void __cb_service_updated(GObject *self, guint type, gpointer data, gpointer velocity, gpointer accuracy, gpointer userdata)
77 {
78         location_manager_s *handle = (location_manager_s *) userdata;
79
80         if (type == SATELLITE_UPDATED && handle->user_cb[_LOCATIONS_EVENT_TYPE_SATELLITE]) {
81                 LocationSatellite *sat = (LocationSatellite *)data;
82                 LOCATIONS_LOGD("callback invoked[TYPE_SATELLITE] timestamp : %d, number of active : %d, number of inview : %d",
83                                                 sat->timestamp, sat->num_of_sat_used, sat->num_of_sat_inview);
84                 ((gps_status_satellite_updated_cb) handle->user_cb[_LOCATIONS_EVENT_TYPE_SATELLITE])(sat->num_of_sat_used, sat->num_of_sat_inview,
85                                                                                         sat->timestamp, handle->user_data[_LOCATIONS_EVENT_TYPE_SATELLITE]);
86         } else if (type == DISTANCE_UPDATED && handle->user_cb[_LOCATIONS_EVENT_TYPE_DISTANCE]) {
87                 LocationPosition *pos = (LocationPosition *) data;
88                 LocationVelocity *vel = (LocationVelocity *) velocity;
89                 LocationAccuracy *acc = (LocationAccuracy *) accuracy;
90                 ((location_changed_cb) handle->user_cb[_LOCATIONS_EVENT_TYPE_DISTANCE])(pos->latitude, pos->longitude, pos->altitude,
91                                                                 vel->speed, vel->direction, acc->horizontal_accuracy, pos->timestamp, handle->user_data[_LOCATIONS_EVENT_TYPE_DISTANCE]);
92                 LOCATIONS_LOGD("callback invoked[TYPE_DISTANCE] timestamp : %d", pos->timestamp);
93         } else {
94
95                 if (handle->user_cb[_LOCATIONS_EVENT_TYPE_POSITION] && (type & POSITION_UPDATED) != 0) {
96                         LocationPosition *pos = (LocationPosition *) data;
97                         ((location_position_updated_cb) handle->user_cb[_LOCATIONS_EVENT_TYPE_POSITION])(pos->latitude, pos->longitude, pos->altitude,
98                                                                                         pos->timestamp, handle->user_data[_LOCATIONS_EVENT_TYPE_POSITION]);
99                         LOCATIONS_LOGD("callback invoked[TYPE_POSITION] timestamp : %d", pos->timestamp);
100                 }
101
102                 if (handle->user_cb[_LOCATIONS_EVENT_TYPE_VELOCITY] && (type & VELOCITY_UPDATED) != 0) {
103                         LocationVelocity *vel = (LocationVelocity *) velocity;
104                         ((location_velocity_updated_cb) handle->user_cb[_LOCATIONS_EVENT_TYPE_VELOCITY])(vel->speed, vel->direction, vel->climb,
105                                                                                         vel->timestamp, handle->user_data[_LOCATIONS_EVENT_TYPE_VELOCITY]);
106                 }
107
108                 if (handle->user_cb[_LOCATIONS_EVENT_TYPE_POS_VEL] && (type & LOCATION_CHANGED) != 0) {
109                         LocationPosition *pos = (LocationPosition *) data;
110                         LocationVelocity *vel = (LocationVelocity *) velocity;
111                         LocationAccuracy *acc = (LocationAccuracy *) accuracy;
112                         ((location_changed_cb) handle->user_cb[_LOCATIONS_EVENT_TYPE_POS_VEL])(pos->latitude, pos->longitude, pos->altitude,
113                                                                         vel->speed, vel->direction, acc->horizontal_accuracy, pos->timestamp, handle->user_data[_LOCATIONS_EVENT_TYPE_POS_VEL]);
114                         LOCATIONS_LOGD("callback invoked[TYPE_POS_VEL] timestamp : %d", pos->timestamp);
115                 }
116         }
117 }
118
119 static void __cb_location_updated(GObject *self, int error, gpointer position, gpointer velocity, gpointer accuracy, gpointer userdata)
120 {
121         int converted_err = __convert_error_code(error);
122         location_manager_s *handle = (location_manager_s *) userdata;
123         LocationPosition *pos = (LocationPosition *) position;
124         LocationVelocity *vel = (LocationVelocity *) velocity;
125
126         LOCATIONS_LOGD("Callback function[TYPE_LOCATION: single]  timestamp : %d, error : %d", pos->timestamp, error);
127         if (handle->user_cb[_LOCATIONS_EVENT_TYPE_LOCATION]) {
128                 ((location_updated_cb) handle->user_cb[_LOCATIONS_EVENT_TYPE_LOCATION])(converted_err, pos->latitude, pos->longitude, pos->altitude,
129                                                                 pos->timestamp, vel->speed, vel->direction, vel->climb, handle->user_data[_LOCATIONS_EVENT_TYPE_LOCATION]);
130         }
131
132         if (error != LOCATION_ERROR_NONE) {
133 //LCOV_EXCL_START
134                 location_position_free(pos);
135                 location_velocity_free(vel);
136 //LCOV_EXCL_STOP
137         }
138 }
139
140 //LCOV_EXCL_START
141 static void __cb_batch_updated(GObject *self, guint num_of_location, gpointer userdata)
142 {
143         LOCATIONS_LOGD("Batch callback function has been invoked.");
144         location_manager_s *handle = (location_manager_s *) userdata;
145
146         if (handle->user_cb[_LOCATIONS_EVENT_TYPE_BATCH])
147                 ((location_batch_cb) handle->user_cb[_LOCATIONS_EVENT_TYPE_BATCH])(num_of_location, handle->user_data[_LOCATIONS_EVENT_TYPE_BATCH]);
148 }
149 //LCOV_EXCL_STOP
150
151 static void __cb_service_enabled(GObject *self, guint status, gpointer userdata)
152 {
153         LOCATIONS_LOGD("Invoked[service_enabled]. status = %d", status);
154         location_manager_s *handle = (location_manager_s *) userdata;
155         if (handle->user_cb[_LOCATIONS_EVENT_TYPE_SERVICE_STATE]) {
156                 ((location_service_state_changed_cb)
157                 handle->user_cb[_LOCATIONS_EVENT_TYPE_SERVICE_STATE])(LOCATIONS_SERVICE_ENABLED, handle->user_data[_LOCATIONS_EVENT_TYPE_SERVICE_STATE]);
158         }
159 }
160
161 static void __cb_service_disabled(GObject *self, guint status, gpointer userdata)
162 {
163         LOCATIONS_LOGD("Invoked[service_disabled]. status = %d", status);
164         location_manager_s *handle = (location_manager_s *) userdata;
165         if (handle->user_cb[_LOCATIONS_EVENT_TYPE_SERVICE_STATE]) {
166                 ((location_service_state_changed_cb)
167                  handle->user_cb[_LOCATIONS_EVENT_TYPE_SERVICE_STATE])(LOCATIONS_SERVICE_DISABLED, handle->user_data[_LOCATIONS_EVENT_TYPE_SERVICE_STATE]);
168         }
169 }
170
171 static int __compare_position(gconstpointer a, gconstpointer b)
172 {
173         if (location_position_equal((LocationPosition *) a, (LocationPosition *)b) == TRUE)
174                 return 0;
175
176         return -1;      //LCOV_EXCL_LINE
177 }
178
179 static int __boundary_compare(LocationBoundary *bound1, LocationBoundary *bound2)
180 {
181         int ret = -1;
182
183         if (bound1->type == bound2->type) {
184                 switch (bound1->type) {
185                 case LOCATION_BOUNDARY_CIRCLE:
186                         if (location_position_equal(bound1->circle.center, bound2->circle.center) && bound1->circle.radius == bound2->circle.radius)
187                                 ret = 0;
188
189                         break;
190                 case LOCATION_BOUNDARY_RECT:
191                         if (location_position_equal(bound1->rect.left_top, bound2->rect.left_top) && location_position_equal(bound1->rect.right_bottom, bound2->rect.right_bottom))
192                                 ret = 0;
193
194                         break;
195                 case LOCATION_BOUNDARY_POLYGON: {
196                                 GList *boundary1_next = NULL;
197                                 GList *boundary2_start = NULL, *boundary2_prev = NULL, *boundary2_next = NULL;
198                                 if (g_list_length(bound1->polygon.position_list) != g_list_length(bound2->polygon.position_list))
199                                         return -1;
200
201                                 boundary2_start = g_list_find_custom(bound2->polygon.position_list, g_list_nth_data(bound1->polygon.position_list, 0), (GCompareFunc) __compare_position);
202                                 if (boundary2_start == NULL) return -1;
203
204                                 boundary2_prev = g_list_previous(boundary2_start);
205                                 boundary2_next = g_list_next(boundary2_start);
206
207                                 if (boundary2_prev == NULL) boundary2_prev = g_list_last(bound2->polygon.position_list);
208                                 if (boundary2_next == NULL) boundary2_next = g_list_first(bound2->polygon.position_list);
209
210                                 boundary1_next = g_list_next(bound1->polygon.position_list);
211                                 if (boundary1_next != NULL && boundary2_prev != NULL &&
212                                         location_position_equal((LocationPosition *)boundary1_next->data, (LocationPosition *)boundary2_prev->data) == TRUE) {
213                                         boundary1_next = g_list_next(boundary1_next);
214                                         while (boundary1_next) {
215                                                 boundary2_prev = g_list_previous(boundary2_prev);
216                                                 if (boundary2_prev == NULL) boundary2_prev = g_list_last(bound2->polygon.position_list);
217                                                 if (location_position_equal((LocationPosition *)boundary1_next->data, (LocationPosition *) boundary2_prev->data) == FALSE)
218                                                         return -1;
219
220                                                 boundary1_next = g_list_next(boundary1_next);
221                                         }
222                                         ret = 0;
223                                 } else if (boundary1_next != NULL && boundary2_next != NULL &&
224                                                         location_position_equal((LocationPosition *)boundary1_next->data, (LocationPosition *)boundary2_next->data) == TRUE) {
225                                         boundary1_next = g_list_next(boundary1_next);
226                                         while (boundary1_next) {
227                                                 boundary2_next = g_list_next(boundary2_next);
228                                                 if (boundary2_next == NULL) boundary2_next = g_list_first(bound2->polygon.position_list);
229                                                 if (location_position_equal((LocationPosition *)boundary1_next->data, (LocationPosition *) boundary2_next->data) == FALSE)
230                                                         return -1;
231
232                                                 boundary1_next = g_list_next(boundary1_next);
233                                         }
234                                         ret = 0;
235                                 } else {
236                                         return -1;
237                                 }
238                                 break;
239                         }
240                 default:
241                         break;
242                 }
243         }
244         return ret;
245 }
246
247 static void __cb_zone_in(GObject *self, gpointer boundary, gpointer position, gpointer accuracy, gpointer userdata)
248 {
249         LOCATIONS_LOGD("ENTER >>>");
250         location_manager_s *handle = (location_manager_s *) userdata;
251         if (handle->user_cb[_LOCATIONS_EVENT_TYPE_BOUNDARY]) {
252                 LocationPosition *pos = (LocationPosition *) position;
253                 ((location_zone_changed_cb) handle->user_cb[_LOCATIONS_EVENT_TYPE_BOUNDARY])(LOCATIONS_BOUNDARY_IN,
254                                                 pos->latitude, pos->longitude, pos->altitude, pos->timestamp, handle->user_data[_LOCATIONS_EVENT_TYPE_BOUNDARY]);
255         }
256
257         location_bounds_s *bounds;
258         GList *bounds_list = g_list_first(handle->bounds_list);
259         while (bounds_list) {
260                 bounds = (location_bounds_s *)bounds_list->data;
261                 if (__boundary_compare(boundary, bounds->boundary) == 0) {
262                         LOCATIONS_LOGD("Find zone in boundary");
263                         if (bounds->user_cb)
264                                 ((location_bounds_state_changed_cb) bounds->user_cb)(LOCATIONS_BOUNDARY_IN, bounds->user_data);
265
266                         break;
267                 }
268                 bounds_list = g_list_next(bounds_list);
269         }
270         LOCATIONS_LOGD("EXIT <<<");
271 }
272
273 static void __cb_zone_out(GObject *self, gpointer boundary, gpointer position, gpointer accuracy, gpointer userdata)
274 {
275         LOCATIONS_LOGD("ENTER >>>");
276         location_manager_s *handle = (location_manager_s *) userdata;
277         if (handle->user_cb[_LOCATIONS_EVENT_TYPE_BOUNDARY]) {
278                 LocationPosition *pos = (LocationPosition *) position;
279                 ((location_zone_changed_cb) handle->user_cb[_LOCATIONS_EVENT_TYPE_BOUNDARY])(LOCATIONS_BOUNDARY_OUT,
280                                                 pos->latitude, pos->longitude, pos->altitude, pos->timestamp, handle->user_data[_LOCATIONS_EVENT_TYPE_BOUNDARY]);
281         }
282
283         location_bounds_s *bounds;
284         GList *bounds_list = g_list_first(handle->bounds_list);
285         while (bounds_list) {
286                 bounds = (location_bounds_s *)bounds_list->data;
287                 if (__boundary_compare(boundary, bounds->boundary) == 0) {
288                         LOCATIONS_LOGD("Find zone out boundary");
289                         if (bounds->user_cb)
290                                 ((location_bounds_state_changed_cb) bounds->user_cb)(LOCATIONS_BOUNDARY_OUT, bounds->user_data);
291
292                         break;
293                 }
294                 bounds_list = g_list_next(bounds_list);
295         }
296         LOCATIONS_LOGD("EXIT <<<");
297 }
298
299 static void __foreach_boundary(LocationBoundary *boundary, void *user_data)
300 {
301         location_manager_s *handle = (location_manager_s *) user_data;
302
303         if (handle != NULL && boundary != NULL) {
304                 int ret = -1;
305                 location_bounds_h bounds;
306                 if (boundary->type == LOCATION_BOUNDARY_CIRCLE) {
307                         location_coords_s center;
308                         center.latitude = boundary->circle.center->latitude;
309                         center.longitude = boundary->circle.center->longitude;
310                         ret = location_bounds_create_circle(center, boundary->circle.radius, &bounds);
311                 } else if (boundary->type == LOCATION_BOUNDARY_RECT) {
312                         location_coords_s left_top;
313                         location_coords_s right_bottom;
314                         left_top.latitude = boundary->rect.left_top->latitude;
315                         left_top.longitude = boundary->rect.left_top->longitude;
316                         right_bottom.latitude = boundary->rect.right_bottom->latitude;
317                         right_bottom.longitude = boundary->rect.right_bottom->longitude;
318                         ret = location_bounds_create_rect(left_top, right_bottom, &bounds);
319                 } else if (boundary->type == LOCATION_BOUNDARY_POLYGON) {
320                         GList *list = boundary->polygon.position_list;
321                         int size = g_list_length(list);
322                         if (size > 0) {
323                                 location_coords_s coords[size];
324                                 int cnt = 0;
325                                 while (list) {
326                                         LocationPosition *pos = list->data;
327                                         coords[cnt].latitude = pos->latitude;
328                                         coords[cnt].longitude = pos->longitude;
329                                         list = g_list_next(list);
330                                         cnt++;
331                                 }
332                                 ret = location_bounds_create_polygon(coords, size, &bounds);
333                         }
334                 } else {
335                         LOCATIONS_LOGI("Invalid boundary type : %d", boundary->type);
336                 }
337
338                 if (ret != LOCATIONS_ERROR_NONE) {
339                         LOCATIONS_LOGI("Failed to create location_bounds : (0x%08x) ", ret);    //LCOV_EXCL_LINE
340                 } else {
341                         if (handle->is_continue_foreach_bounds) {
342                                 handle->is_continue_foreach_bounds =
343                                         ((location_bounds_cb) handle->user_cb[_LOCATIONS_EVENT_TYPE_FOREACH_BOUNDS])(bounds,
344                                                         handle->
345                                                         user_data
346                                                         [_LOCATIONS_EVENT_TYPE_FOREACH_BOUNDS]);
347                         }
348                         location_bounds_destroy(bounds);
349                 }
350         } else {
351                 LOCATIONS_LOGD("__foreach_boundary() has been failed"); //LCOV_EXCL_LINE
352         }
353 }
354
355 //LCOV_EXCL_START
356 static void __setting_changed_cb(LocationMethod method, gboolean enable, void *user_data)
357 {
358         LOCATIONS_LOGD("method: [%d]", method);
359         location_method_e _method = __convert_location_method_e(method);
360         location_setting_changed_s *_setting_changed = (location_setting_changed_s *)user_data;
361         if (_setting_changed == NULL) {
362                 LOCATIONS_LOGE("Invaild userdata\n");
363                 return;
364         }
365
366         if (_setting_changed[_method].callback != NULL)
367                 _setting_changed[_method].callback(_method, enable, _setting_changed[_method].user_data);
368 }
369 //LCOV_EXCL_STOP
370
371 /*/////////////////////////////////////// */
372 /* Location Manager */
373 /*////////////////////////////////////// */
374
375 EXPORT_API bool location_manager_is_supported_method(location_method_e method)
376 {
377         LOCATIONS_LOGD("location_manager_is_supported_method %d", method);
378         if (__is_location_supported() == LOCATIONS_ERROR_NOT_SUPPORTED) {
379                 set_last_result(LOCATIONS_ERROR_NOT_SUPPORTED); //LCOV_EXCL_LINE
380                 return false;   //LCOV_EXCL_LINE
381         }
382
383         if (method == LOCATIONS_METHOD_GPS) {
384                 if (__is_gps_supported() == LOCATIONS_ERROR_NOT_SUPPORTED) {
385                         set_last_result(LOCATIONS_ERROR_NOT_SUPPORTED); //LCOV_EXCL_LINE
386                         return false;   //LCOV_EXCL_LINE
387                 }
388         } else if (method == LOCATIONS_METHOD_WPS) {
389                 if (__is_wps_supported() == LOCATIONS_ERROR_NOT_SUPPORTED) {
390                         set_last_result(LOCATIONS_ERROR_NOT_SUPPORTED);
391                         return false;
392                 }
393         }
394
395         LocationMethod _method = __convert_LocationMethod(method);
396         if (_method == LOCATION_METHOD_NONE) {
397                 LOCATIONS_LOGE("Not supported method [%d]", method);
398                 set_last_result(LOCATIONS_ERROR_INCORRECT_METHOD);
399                 return false;
400         }
401
402         gboolean ret =  location_is_supported_method(_method);
403         if (ret) {
404                 set_last_result(LOCATIONS_ERROR_NONE);
405                 return true;
406         } else {
407                 set_last_result(LOCATIONS_ERROR_NOT_SUPPORTED);
408                 return false;
409         }
410 }
411
412 EXPORT_API int location_manager_is_enabled_method(location_method_e method, bool *enable)
413 {
414         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
415
416         if (method < LOCATIONS_METHOD_HYBRID || method > LOCATIONS_METHOD_WPS) {
417                 LOCATIONS_LOGE("Not supported method [%d]", method);
418                 return LOCATIONS_ERROR_INCORRECT_METHOD;
419         }
420
421         LOCATIONS_LOGD("location_manager_is_enabled_method %d", method);
422         LOCATIONS_NULL_ARG_CHECK(enable);
423         int is_enabled_val = -1;
424         LocationMethod _method = __convert_LocationMethod(method);
425         int ret = location_is_enabled_method(_method, &is_enabled_val);
426         if (ret != LOCATION_ERROR_NONE) {
427                 //LCOV_EXCL_START
428                 if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
429                         LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD");
430                         return LOCATIONS_ERROR_INCORRECT_METHOD;
431                 }
432                 return __convert_error_code(ret);
433                 //LCOV_EXCL_STOP
434         }
435
436         if (is_enabled_val == -1)
437                 return TIZEN_ERROR_PERMISSION_DENIED;
438
439         *enable = (is_enabled_val == 0) ? FALSE : TRUE;
440         return LOCATIONS_ERROR_NONE;
441 }
442
443 //LCOV_EXCL_START
444 EXPORT_API int location_manager_enable_method(const location_method_e method, const bool enable)
445 {
446         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
447
448         if (method < LOCATIONS_METHOD_HYBRID || method > LOCATIONS_METHOD_WPS) {
449                 LOCATIONS_LOGE("Not supported method [%d]", method);
450                 return LOCATIONS_ERROR_INCORRECT_METHOD;
451         }
452
453         LOCATIONS_LOGD("method: %d, enable: %d", method, enable);
454
455         int ret = 0;
456         if (LOCATIONS_METHOD_HYBRID == method) {
457                 if (__is_gps_supported() == LOCATIONS_ERROR_NONE) {
458                         ret = location_enable_method(LOCATION_METHOD_GPS, enable);
459                         if (ret != LOCATIONS_ERROR_NONE) return __convert_error_code(ret);
460                 }
461                 if (__is_wps_supported() == LOCATIONS_ERROR_NONE) {
462                         ret = location_enable_method(LOCATION_METHOD_WPS, enable);
463                         return __convert_error_code(ret);
464                 }
465                 return LOCATIONS_ERROR_NONE;
466
467         } else  {
468                 if ((LOCATIONS_METHOD_GPS == method) && (__is_gps_supported() == LOCATIONS_ERROR_NOT_SUPPORTED)) {
469                         LOCATIONS_LOGE("LOCATIONS_ERROR_NOT_SUPPORTED(0x%08x)", LOCATIONS_ERROR_NOT_SUPPORTED);
470                         return LOCATIONS_ERROR_NOT_SUPPORTED;
471                 } else if ((LOCATIONS_METHOD_WPS == method) && (__is_wps_supported() == LOCATIONS_ERROR_NOT_SUPPORTED)) {
472                         LOCATIONS_LOGE("LOCATIONS_ERROR_NOT_SUPPORTED(0x%08x)", LOCATIONS_ERROR_NOT_SUPPORTED);
473                         return LOCATIONS_ERROR_NOT_SUPPORTED;
474                 }
475
476                 LocationMethod _method = __convert_LocationMethod(method);
477
478                 int ret = location_enable_method(_method, enable);
479
480                 return __convert_error_code(ret);
481         }
482 }
483 //LCOV_EXCL_STOP
484
485 EXPORT_API int location_manager_create(location_method_e method, location_manager_h *manager)
486 {
487         LOCATIONS_LOGD("location_manager_create (method : %d)", method);
488
489         if (method == LOCATIONS_METHOD_HYBRID)
490                 LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
491         else if (method == LOCATIONS_METHOD_GPS)
492                 LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_supported());
493         else if (method == LOCATIONS_METHOD_WPS)
494                 LOCATIONS_NOT_SUPPORTED_CHECK(__is_wps_supported());
495         else if (method == LOCATIONS_METHOD_PASSIVE)
496                 LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
497         else if (method == LOCATIONS_METHOD_FUSED)
498                 LOCATIONS_NOT_SUPPORTED_CHECK(__is_fused_supported());
499
500         LocationMethod _method = __convert_LocationMethod(method);
501         if (_method == LOCATION_METHOD_NONE) {
502                 LOCATIONS_LOGE("LOCATIONS_ERROR_NOT_SUPPORTED(0x%08x) : fail to location_init", LOCATIONS_ERROR_NOT_SUPPORTED);
503                 return LOCATIONS_ERROR_NOT_SUPPORTED;
504         }
505
506         if (!location_is_supported_method(_method)) {
507                 LOCATIONS_LOGE("LOCATIONS_ERROR_NOT_SUPPORTED(0x%08x) : fail to location_is_supported_method", LOCATIONS_ERROR_NOT_SUPPORTED);
508                 return LOCATIONS_ERROR_NOT_SUPPORTED;
509         }
510
511         /*It is moved here becasue of TCS. */
512         LOCATIONS_NULL_ARG_CHECK(manager);
513
514         if (location_init() != LOCATION_ERROR_NONE) {
515                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : fail to location_init", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE); //LCOV_EXCL_LINE
516                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;   //LCOV_EXCL_LINE
517         }
518
519         location_manager_s *handle = (location_manager_s *) malloc(sizeof(location_manager_s));
520         if (handle == NULL) {
521                 LOCATIONS_LOGE("OUT_OF_MEMORY(0x%08x)", LOCATIONS_ERROR_OUT_OF_MEMORY); //LCOV_EXCL_LINE
522                 return LOCATIONS_ERROR_OUT_OF_MEMORY;   //LCOV_EXCL_LINE
523         }
524
525         memset(handle, 0, sizeof(location_manager_s));
526
527         handle->object = location_new(_method);
528         if (handle->object == NULL) {
529                 //LCOV_EXCL_START
530                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : fail to location_new", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE);
531                 free(handle);
532                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
533                 //LCOV_EXCL_STOP
534         }
535         handle->method = method;
536         handle->is_continue_foreach_bounds = TRUE;
537         handle->bounds_list = NULL;
538
539         if (!handle->sig_id[_LOCATION_SIGNAL_SERVICE_ENABLED])
540                 handle->sig_id[_LOCATION_SIGNAL_SERVICE_ENABLED] = g_signal_connect(handle->object, "service-enabled", G_CALLBACK(__cb_service_enabled), handle);
541
542         if (!handle->sig_id[_LOCATION_SIGNAL_SERVICE_DISABLED])
543                 handle->sig_id[_LOCATION_SIGNAL_SERVICE_DISABLED] = g_signal_connect(handle->object, "service-disabled", G_CALLBACK(__cb_service_disabled), handle);
544
545         *manager = (location_manager_h) handle;
546         return LOCATIONS_ERROR_NONE;
547 }
548
549 EXPORT_API int location_manager_destroy(location_manager_h manager)
550 {
551         LOCATIONS_LOGD("location_manager_destroy");
552         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
553         LOCATIONS_NULL_ARG_CHECK(manager);
554         location_manager_s *handle = (location_manager_s *) manager;
555
556         if (handle->sig_id[_LOCATION_SIGNAL_SERVICE_ENABLED]) {
557                 g_signal_handler_disconnect(handle->object, handle->sig_id[_LOCATION_SIGNAL_SERVICE_ENABLED]);
558                 handle->sig_id[_LOCATION_SIGNAL_SERVICE_ENABLED] = 0;
559         }
560
561         if (handle->sig_id[_LOCATION_SIGNAL_SERVICE_DISABLED]) {
562                 g_signal_handler_disconnect(handle->object, handle->sig_id[_LOCATION_SIGNAL_SERVICE_DISABLED]);
563                 handle->sig_id[_LOCATION_SIGNAL_SERVICE_DISABLED] = 0;
564         }
565
566         if (handle->sig_id[_LOCATION_SIGNAL_ERROR_EMITTED]) {
567                 g_signal_handler_disconnect(handle->object, handle->sig_id[_LOCATION_SIGNAL_ERROR_EMITTED]);    //LCOV_EXCL_LINE
568                 handle->sig_id[_LOCATION_SIGNAL_ERROR_EMITTED] = 0;     //LCOV_EXCL_LINE
569         }
570
571         int ret = location_free(handle->object);
572         if (ret != LOCATIONS_ERROR_NONE)
573                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
574
575         free(handle);
576         handle = NULL;
577         return LOCATIONS_ERROR_NONE;
578 }
579
580 EXPORT_API int location_manager_start(location_manager_h manager)
581 {
582         LOCATIONS_LOGD("location_manager_start");
583         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
584         LOCATIONS_NULL_ARG_CHECK(manager);
585         location_manager_s *handle = (location_manager_s *) manager;
586
587         if (!handle->sig_id[_LOCATION_SIGNAL_SERVICE_UPDATED])
588                 handle->sig_id[_LOCATION_SIGNAL_SERVICE_UPDATED] = g_signal_connect(handle->object, "service-updated", G_CALLBACK(__cb_service_updated), handle);
589
590         if (handle->method >= LOCATIONS_METHOD_FIRST && handle->method <= LOCATIONS_METHOD_LAST) {
591                 if (!handle->sig_id[_LOCATION_SIGNAL_ZONE_IN])
592                         handle->sig_id[_LOCATION_SIGNAL_ZONE_IN] = g_signal_connect(handle->object, "zone-in", G_CALLBACK(__cb_zone_in), handle);
593
594                 if (!handle->sig_id[_LOCATION_SIGNAL_ZONE_OUT])
595                         handle->sig_id[_LOCATION_SIGNAL_ZONE_OUT] = g_signal_connect(handle->object, "zone-out", G_CALLBACK(__cb_zone_out), handle);
596         } else {
597                 LOCATIONS_LOGI("This method [%d] is not supported zone-in, zone-out signal.", handle->method);  //LCOV_EXCL_LINE
598         }
599
600         if (handle->user_cb[_LOCATIONS_EVENT_TYPE_SATELLITE] != NULL) {
601                 LOCATIONS_LOGI("Satellite update_cb is set");
602                 location_set_option(handle->object, "USE_SV");
603         }
604
605         int ret = location_start(handle->object);
606         if (ret != LOCATION_ERROR_NONE)
607                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
608
609         return LOCATIONS_ERROR_NONE;
610 }
611
612 EXPORT_API int location_manager_request_single_location(location_manager_h manager, int timeout, location_updated_cb callback, void *user_data)
613 {
614         LOCATIONS_LOGD("location_manager_request_single_location");
615         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
616         LOCATIONS_NULL_ARG_CHECK(manager);
617         LOCATIONS_NULL_ARG_CHECK(callback);
618         if (timeout <= 0 || timeout > 120) {
619                 LOCATIONS_LOGE("timeout scope is incorrect(1~120) [%d]", timeout);
620                 return LOCATIONS_ERROR_INVALID_PARAMETER;
621         }
622
623         location_manager_s *handle = (location_manager_s *) manager;
624         int ret = LOCATIONS_ERROR_NONE;
625
626         if (!handle->sig_id[_LOCATION_SIGNAL_LOCATION_UPDATED])
627                 handle->sig_id[_LOCATION_SIGNAL_LOCATION_UPDATED] = g_signal_connect(handle->object, "location-updated", G_CALLBACK(__cb_location_updated), handle);
628
629         ret = __set_callback(_LOCATIONS_EVENT_TYPE_LOCATION, manager, callback, user_data);
630         if (ret != LOCATIONS_ERROR_NONE)
631                 return ret;
632
633         ret = location_request_single_location(handle->object, timeout);
634         if (ret != LOCATION_ERROR_NONE) {
635                 //LCOV_EXCL_START
636                 if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
637                         LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD : method - %d", handle->method);
638                         return LOCATIONS_ERROR_INCORRECT_METHOD;
639                 }
640                 return __convert_error_code(ret);
641                 //LCOV_EXCL_STOP
642         }
643
644         return LOCATIONS_ERROR_NONE;
645 }
646
647 EXPORT_API int location_manager_stop(location_manager_h manager)
648 {
649         LOCATIONS_LOGD("location_manager_stop");
650         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
651         LOCATIONS_NULL_ARG_CHECK(manager);
652
653         location_manager_s *handle = (location_manager_s *) manager;
654
655         if (handle->sig_id[_LOCATION_SIGNAL_SERVICE_UPDATED]) {
656                 g_signal_handler_disconnect(handle->object, handle->sig_id[_LOCATION_SIGNAL_SERVICE_UPDATED]);
657                 handle->sig_id[_LOCATION_SIGNAL_SERVICE_UPDATED] = 0;
658         }
659
660         if (handle->method >= LOCATIONS_METHOD_FIRST && handle->method <= LOCATIONS_METHOD_LAST) {
661                 if (handle->sig_id[_LOCATION_SIGNAL_ZONE_IN]) {
662                         g_signal_handler_disconnect(handle->object, handle->sig_id[_LOCATION_SIGNAL_ZONE_IN]);
663                         handle->sig_id[_LOCATION_SIGNAL_ZONE_IN] = 0;
664                 }
665
666                 if (handle->sig_id[_LOCATION_SIGNAL_ZONE_OUT]) {
667                         g_signal_handler_disconnect(handle->object, handle->sig_id[_LOCATION_SIGNAL_ZONE_OUT]);
668                         handle->sig_id[_LOCATION_SIGNAL_ZONE_OUT] = 0;
669                 }
670         }
671
672         int ret = location_stop(handle->object);
673         if (ret != LOCATION_ERROR_NONE)
674                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
675
676         return LOCATIONS_ERROR_NONE;
677 }
678
679 EXPORT_API int location_manager_add_boundary(location_manager_h manager, location_bounds_h bounds)
680 {
681         LOCATIONS_LOGD("location_manager_add_boundary");
682         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
683         LOCATIONS_NULL_ARG_CHECK(manager);
684         LOCATIONS_NULL_ARG_CHECK(bounds);
685
686         location_manager_s *handle = (location_manager_s *) manager;
687         location_bounds_s *bound_handle = (location_bounds_s *) bounds;
688         int ret = location_boundary_add(handle->object, bound_handle->boundary);
689         if (ret != LOCATION_ERROR_NONE)
690                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
691
692         bound_handle->is_added = TRUE;
693         handle->bounds_list = g_list_append(handle->bounds_list, bound_handle);
694         return LOCATIONS_ERROR_NONE;
695 }
696
697 EXPORT_API int location_manager_remove_boundary(location_manager_h manager, location_bounds_h bounds)
698 {
699         LOCATIONS_LOGD("location_manager_remove_boundary");
700         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
701         LOCATIONS_NULL_ARG_CHECK(manager);
702         LOCATIONS_NULL_ARG_CHECK(bounds);
703
704         location_manager_s *handle = (location_manager_s *) manager;
705         location_bounds_s *bound_handle = (location_bounds_s *) bounds;
706         int ret = location_boundary_remove(handle->object, bound_handle->boundary);
707         if (ret != LOCATION_ERROR_NONE)
708                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
709
710         handle->bounds_list = g_list_remove(handle->bounds_list, bound_handle);
711         bound_handle->is_added = FALSE;
712         return LOCATIONS_ERROR_NONE;
713 }
714
715 EXPORT_API int location_manager_foreach_boundary(location_manager_h manager, location_bounds_cb callback, void *user_data)
716 {
717         LOCATIONS_LOGD("location_manager_foreach_boundary");
718         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
719         LOCATIONS_NULL_ARG_CHECK(manager);
720         LOCATIONS_NULL_ARG_CHECK(callback);
721
722         location_manager_s *handle = (location_manager_s *) manager;
723         handle->user_cb[_LOCATIONS_EVENT_TYPE_FOREACH_BOUNDS] = callback;
724         handle->user_data[_LOCATIONS_EVENT_TYPE_FOREACH_BOUNDS] = user_data;
725         handle->is_continue_foreach_bounds = TRUE;
726         int ret = location_boundary_foreach(handle->object, __foreach_boundary, handle);
727         if (ret != LOCATION_ERROR_NONE)
728                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
729
730         return LOCATIONS_ERROR_NONE;
731 }
732
733 EXPORT_API int location_manager_get_method(location_manager_h manager, location_method_e *method)
734 {
735         LOCATIONS_LOGD("location_manager_get_method");
736         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
737         LOCATIONS_NULL_ARG_CHECK(manager);
738         LOCATIONS_NULL_ARG_CHECK(method);
739
740         location_manager_s *handle = (location_manager_s *) manager;
741         LocationMethod _method = LOCATION_METHOD_NONE;
742         if (handle != NULL)
743                 g_object_get(handle->object, "method", &_method, NULL);
744         else
745                 LOCATIONS_LOGE("Null Handle");
746         switch (_method) {
747         case LOCATION_METHOD_NONE:
748                 *method = LOCATIONS_METHOD_NONE;
749                 break;
750         case LOCATION_METHOD_HYBRID:
751                 *method = LOCATIONS_METHOD_HYBRID;
752                 break;
753         case LOCATION_METHOD_GPS:
754                 *method = LOCATIONS_METHOD_GPS;
755                 break;
756         case LOCATION_METHOD_WPS:
757                 *method = LOCATIONS_METHOD_WPS; //LCOV_EXCL_LINE
758                 break;                                                  //LCOV_EXCL_LINE
759         case LOCATION_METHOD_PASSIVE:
760                 *method = LOCATIONS_METHOD_PASSIVE;
761                 break;
762         case LOCATION_METHOD_FUSED:
763                 *method = LOCATIONS_METHOD_FUSED;
764                 break;
765         default: {
766                 LOCATIONS_LOGE("[LOCATIONS_ERROR_INVALID_PARAMETER] invalid method");   //LCOV_EXCL_LINE
767                         return LOCATIONS_ERROR_INVALID_PARAMETER;                                                       //LCOV_EXCL_LINE
768                 }
769         }
770         return LOCATIONS_ERROR_NONE;
771 }
772
773 EXPORT_API int location_manager_get_position(location_manager_h manager, double *altitude, double *latitude, double *longitude,
774                                                                                          time_t *timestamp)
775 {
776         LOCATIONS_LOGD("location_manager_get_position");
777         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
778         LOCATIONS_NULL_ARG_CHECK(manager);
779         LOCATIONS_NULL_ARG_CHECK(altitude);
780         LOCATIONS_NULL_ARG_CHECK(latitude);
781         LOCATIONS_NULL_ARG_CHECK(longitude);
782         LOCATIONS_NULL_ARG_CHECK(timestamp);
783
784         location_manager_s *handle = (location_manager_s *) manager;
785         LocationPosition *pos = NULL;
786         LocationAccuracy *acc = NULL;
787         int ret = location_get_position(handle->object, &pos, &acc);
788         if (ret != LOCATION_ERROR_NONE)
789                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
790
791         if (pos->status == LOCATION_STATUS_NO_FIX) {
792                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;   //LCOV_EXCL_LINE
793         } else {
794                 *latitude = pos->latitude;
795                 *longitude = pos->longitude;
796                 *altitude = pos->altitude;
797         }
798         *timestamp = pos->timestamp;
799         location_position_free(pos);
800         location_accuracy_free(acc);
801         return LOCATIONS_ERROR_NONE;
802 }
803
804 EXPORT_API int location_manager_get_location(location_manager_h manager, double *altitude, double *latitude, double *longitude, double *climb, double *direction, double *speed, location_accuracy_level_e *level, double *horizontal, double *vertical, time_t *timestamp)
805 {
806         LOCATIONS_LOGD("location_manager_get_location");
807         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
808         LOCATIONS_NULL_ARG_CHECK(manager);
809         LOCATIONS_NULL_ARG_CHECK(altitude);
810         LOCATIONS_NULL_ARG_CHECK(latitude);
811         LOCATIONS_NULL_ARG_CHECK(longitude);
812         LOCATIONS_NULL_ARG_CHECK(climb);
813         LOCATIONS_NULL_ARG_CHECK(direction);
814         LOCATIONS_NULL_ARG_CHECK(speed);
815         LOCATIONS_NULL_ARG_CHECK(level);
816         LOCATIONS_NULL_ARG_CHECK(horizontal);
817         LOCATIONS_NULL_ARG_CHECK(vertical);
818         LOCATIONS_NULL_ARG_CHECK(timestamp);
819
820         location_manager_s *handle = (location_manager_s *) manager;
821         LocationPosition *pos = NULL;
822         LocationVelocity *vel = NULL;
823         LocationAccuracy *acc = NULL;
824         int ret = location_get_position_ext(handle->object, &pos, &vel, &acc);
825         if (ret != LOCATION_ERROR_NONE)
826                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
827
828         if (pos->status == LOCATION_STATUS_NO_FIX) {
829                 return __convert_error_code(LOCATION_ERROR_NOT_AVAILABLE);      //LCOV_EXCL_LINE
830         } else {
831                 *latitude = pos->latitude;
832                 *longitude = pos->longitude;
833                 *altitude = pos->altitude;
834         }
835         *timestamp = pos->timestamp;
836         *climb = vel->climb;
837         *direction = vel->direction;
838         *speed = vel->speed;
839         *level = acc->level;
840         *horizontal = acc->horizontal_accuracy;
841         *vertical = acc->vertical_accuracy;
842
843         location_position_free(pos);
844         location_velocity_free(vel);
845         location_accuracy_free(acc);
846         return LOCATIONS_ERROR_NONE;
847 }
848
849 EXPORT_API int location_manager_get_velocity(location_manager_h manager, double *climb, double *direction, double *speed, time_t *timestamp)
850 {
851         LOCATIONS_LOGD("location_manager_get_velocity");
852         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
853         LOCATIONS_NULL_ARG_CHECK(manager);
854         LOCATIONS_NULL_ARG_CHECK(climb);
855         LOCATIONS_NULL_ARG_CHECK(direction);
856         LOCATIONS_NULL_ARG_CHECK(speed);
857         LOCATIONS_NULL_ARG_CHECK(timestamp);
858
859         location_manager_s *handle = (location_manager_s *) manager;
860         LocationVelocity *vel = NULL;
861         LocationAccuracy *acc = NULL;
862
863         int ret = location_get_velocity(handle->object, &vel, &acc);
864         if (ret != LOCATION_ERROR_NONE)
865                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
866
867         *climb = vel->climb;
868         *direction = vel->direction;
869         *speed = vel->speed;
870         *timestamp = vel->timestamp;
871         location_velocity_free(vel);
872         location_accuracy_free(acc);
873         return LOCATIONS_ERROR_NONE;
874 }
875
876 EXPORT_API int location_manager_get_accuracy(location_manager_h manager, location_accuracy_level_e *level, double *horizontal,
877                                                                                          double *vertical)
878 {
879         LOCATIONS_LOGD("location_manager_get_accuracy");
880         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
881         LOCATIONS_NULL_ARG_CHECK(manager);
882         LOCATIONS_NULL_ARG_CHECK(level);
883         LOCATIONS_NULL_ARG_CHECK(horizontal);
884         LOCATIONS_NULL_ARG_CHECK(vertical);
885         location_manager_s *handle = (location_manager_s *) manager;
886
887         int ret;
888         LocationPosition *pos = NULL;
889         LocationAccuracy *acc = NULL;
890         ret = location_get_position(handle->object, &pos, &acc);
891         if (ret != LOCATION_ERROR_NONE)
892                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
893
894         if (acc == NULL)
895                 return __convert_error_code(LOCATION_ERROR_NOT_AVAILABLE);      //LCOV_EXCL_LINE
896
897         *level = acc->level;
898         *horizontal = acc->horizontal_accuracy;
899         *vertical = acc->vertical_accuracy;
900         location_position_free(pos);
901         location_accuracy_free(acc);
902         return LOCATIONS_ERROR_NONE;
903 }
904
905 EXPORT_API int location_manager_get_last_position(location_manager_h manager, double *altitude, double *latitude, double *longitude, time_t *timestamp)
906 {
907         LOCATIONS_LOGD("location_manager_get_last_position");
908         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
909         LOCATIONS_NULL_ARG_CHECK(manager);
910         LOCATIONS_NULL_ARG_CHECK(altitude);
911         LOCATIONS_NULL_ARG_CHECK(latitude);
912         LOCATIONS_NULL_ARG_CHECK(longitude);
913         LOCATIONS_NULL_ARG_CHECK(timestamp);
914
915         location_manager_s *handle = (location_manager_s *) manager;
916
917         int ret;
918         LocationPosition *last_pos = NULL;
919         LocationAccuracy *last_acc = NULL;
920         ret = location_get_last_position(handle->object, &last_pos, &last_acc);
921         if (ret != LOCATION_ERROR_NONE)
922                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
923
924         if (last_pos->status == LOCATION_STATUS_NO_FIX) {
925                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
926         } else {
927                 *latitude = last_pos->latitude;
928                 *longitude = last_pos->longitude;
929                 *altitude = last_pos->altitude;
930         }
931         *timestamp = last_pos->timestamp;
932         location_position_free(last_pos);
933         location_accuracy_free(last_acc);
934         return LOCATIONS_ERROR_NONE;
935 }
936
937 EXPORT_API int location_manager_get_last_location(location_manager_h manager, double *altitude, double *latitude, double *longitude, double *climb, double *direction, double *speed, location_accuracy_level_e *level, double *horizontal, double *vertical, time_t *timestamp)
938 {
939         LOCATIONS_LOGD("location_manager_get_last_location");
940         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
941         LOCATIONS_NULL_ARG_CHECK(manager);
942         LOCATIONS_NULL_ARG_CHECK(altitude);
943         LOCATIONS_NULL_ARG_CHECK(latitude);
944         LOCATIONS_NULL_ARG_CHECK(longitude);
945         LOCATIONS_NULL_ARG_CHECK(climb);
946         LOCATIONS_NULL_ARG_CHECK(direction);
947         LOCATIONS_NULL_ARG_CHECK(speed);
948         LOCATIONS_NULL_ARG_CHECK(level);
949         LOCATIONS_NULL_ARG_CHECK(horizontal);
950         LOCATIONS_NULL_ARG_CHECK(vertical);
951         LOCATIONS_NULL_ARG_CHECK(timestamp);
952
953         location_manager_s *handle = (location_manager_s *) manager;
954
955         int ret;
956         LocationPosition *last_pos = NULL;
957         LocationVelocity *last_vel = NULL;
958         LocationAccuracy *last_acc = NULL;
959         if (handle != NULL)
960                 ret = location_get_last_position_ext(handle->object, &last_pos, &last_vel, &last_acc);
961         else
962                 LOCATIONS_LOGE("Null Handle");
963         if (ret != LOCATION_ERROR_NONE)
964                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
965
966         if (last_pos->status == LOCATION_STATUS_NO_FIX) {
967                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
968         } else {
969                 *latitude = last_pos->latitude;
970                 *longitude = last_pos->longitude;
971                 *altitude = last_pos->altitude;
972         }
973         *timestamp = last_pos->timestamp;
974         *climb = last_vel->climb;
975         *direction = last_vel->direction;
976         *speed = last_vel->speed;
977         *level = last_acc->level;
978         *horizontal = last_acc->horizontal_accuracy;
979         *vertical = last_acc->vertical_accuracy;
980         location_position_free(last_pos);
981         location_velocity_free(last_vel);
982         location_accuracy_free(last_acc);
983         return LOCATIONS_ERROR_NONE;
984 }
985
986 EXPORT_API int location_manager_get_last_velocity(location_manager_h manager, double *climb, double *direction, double *speed, time_t *timestamp)
987 {
988         LOCATIONS_LOGD("location_manager_get_last_velocity");
989         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
990         LOCATIONS_NULL_ARG_CHECK(manager);
991         LOCATIONS_NULL_ARG_CHECK(climb);
992         LOCATIONS_NULL_ARG_CHECK(direction);
993         LOCATIONS_NULL_ARG_CHECK(speed);
994         LOCATIONS_NULL_ARG_CHECK(timestamp);
995
996         location_manager_s *handle = (location_manager_s *) manager;
997
998         int ret;
999         LocationVelocity *last_vel = NULL;
1000         LocationAccuracy *last_acc = NULL;
1001         ret = location_get_last_velocity(handle->object, &last_vel, &last_acc);
1002         if (ret != LOCATION_ERROR_NONE)
1003                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1004
1005         *climb = last_vel->climb;
1006         *direction = last_vel->direction;
1007         *speed = last_vel->speed;
1008         *timestamp = last_vel->timestamp;
1009         location_velocity_free(last_vel);
1010         location_accuracy_free(last_acc);
1011         return LOCATIONS_ERROR_NONE;
1012 }
1013
1014 EXPORT_API int location_manager_get_last_accuracy(location_manager_h manager, location_accuracy_level_e *level, double *horizontal, double *vertical)
1015 {
1016         LOCATIONS_LOGD("location_manager_get_last_accuracy");
1017         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1018         LOCATIONS_NULL_ARG_CHECK(manager);
1019         LOCATIONS_NULL_ARG_CHECK(level);
1020         LOCATIONS_NULL_ARG_CHECK(horizontal);
1021         LOCATIONS_NULL_ARG_CHECK(vertical);
1022         location_manager_s *handle = (location_manager_s *) manager;
1023
1024         int ret;
1025         LocationPosition *last_pos = NULL;
1026         LocationAccuracy *last_acc = NULL;
1027         ret = location_get_last_position(handle->object, &last_pos, &last_acc);
1028         if (ret != LOCATION_ERROR_NONE)
1029                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1030
1031         *level = last_acc->level;
1032         *horizontal = last_acc->horizontal_accuracy;
1033         *vertical = last_acc->vertical_accuracy;
1034         location_position_free(last_pos);
1035         location_accuracy_free(last_acc);
1036         return LOCATIONS_ERROR_NONE;
1037 }
1038
1039 EXPORT_API int location_manager_get_accessibility_state(location_accessibility_state_e *state)
1040 {
1041         dlog_print(DLOG_WARN, LOG_TAG, "DEPRECATION WARNING: location_manager_get_accessibility_state() is deprecated and will be removed from next release.");
1042         LOCATIONS_LOGD("location_manager_get_accessibility_state");
1043         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1044         LOCATIONS_NULL_ARG_CHECK(state);
1045
1046         int ret = LOCATION_ERROR_NONE;
1047         LocationAccessState auth = LOCATION_ACCESS_NONE;
1048         ret = location_get_accessibility_state(&auth);
1049         if (ret != LOCATION_ERROR_NONE) {
1050                 *state = LOCATIONS_ACCESS_STATE_NONE;   //LCOV_EXCL_LINE
1051                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1052         }
1053
1054         switch (auth) {
1055         //LCOV_EXCL_START
1056         case LOCATION_ACCESS_DENIED:
1057                 *state = LOCATIONS_ACCESS_STATE_DENIED;
1058                 break;
1059         case LOCATION_ACCESS_ALLOWED:
1060                 *state = LOCATIONS_ACCESS_STATE_ALLOWED;
1061                 break;
1062         case LOCATION_ACCESS_NONE:
1063         default:
1064                 *state = LOCATIONS_ACCESS_STATE_NONE;
1065                 break;
1066         //LCOV_EXCL_STOP
1067         }
1068
1069         return LOCATIONS_ERROR_NONE;
1070 }
1071
1072 EXPORT_API int location_manager_set_distance_based_location_changed_cb(location_manager_h manager, location_changed_cb callback, int interval, double distance, void *user_data)
1073 {
1074         LOCATIONS_LOGD("location_manager_set_distance_updated_cb");
1075         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1076         LOCATIONS_CHECK_CONDITION(interval >= 1 && interval <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1077         LOCATIONS_CHECK_CONDITION(distance > 0 && distance <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1078         LOCATIONS_NULL_ARG_CHECK(manager);
1079         location_manager_s *handle = (location_manager_s *) manager;
1080         g_object_set(handle->object, "min-interval", interval, NULL);
1081         g_object_set(handle->object, "min-distance", distance, NULL);
1082         return __set_callback(_LOCATIONS_EVENT_TYPE_DISTANCE, manager, callback, user_data);
1083 }
1084
1085 EXPORT_API int location_manager_unset_distance_based_location_changed_cb(location_manager_h manager)
1086 {
1087         LOCATIONS_LOGD("location_manager_unset_distance_updated_cb");
1088         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1089         LOCATIONS_NULL_ARG_CHECK(manager);
1090         return __unset_callback(_LOCATIONS_EVENT_TYPE_DISTANCE, manager);
1091 }
1092
1093 EXPORT_API int location_manager_set_location_changed_cb(location_manager_h manager, location_changed_cb callback, int interval, void *user_data)
1094 {
1095         LOCATIONS_LOGD("location_manager_set_location_updated_cb");
1096         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1097         LOCATIONS_CHECK_CONDITION(interval >= 1 && interval <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1098         LOCATIONS_NULL_ARG_CHECK(manager);
1099         location_manager_s *handle = (location_manager_s *) manager;
1100         if (handle != NULL)
1101                 g_object_set(handle->object, "loc-interval", interval, NULL);
1102         else
1103                 LOCATIONS_LOGE("Null Handle");
1104         return __set_callback(_LOCATIONS_EVENT_TYPE_POS_VEL, manager, callback, user_data);
1105 }
1106
1107 EXPORT_API int location_manager_unset_location_changed_cb(location_manager_h manager)
1108 {
1109         LOCATIONS_LOGD("location_manager_unset_position_updated_cb");
1110         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1111         return __unset_callback(_LOCATIONS_EVENT_TYPE_POS_VEL, manager);
1112 }
1113
1114 EXPORT_API int location_manager_set_position_updated_cb(location_manager_h manager, location_position_updated_cb callback, int interval, void *user_data)
1115 {
1116         LOCATIONS_LOGD("location_manager_set_position_updated_cb");
1117         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1118         LOCATIONS_CHECK_CONDITION(interval >= 1 && interval <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1119         LOCATIONS_NULL_ARG_CHECK(manager);
1120         location_manager_s *handle = (location_manager_s *) manager;
1121         g_object_set(handle->object, "pos-interval", interval, NULL);
1122         return __set_callback(_LOCATIONS_EVENT_TYPE_POSITION, manager, callback, user_data);
1123 }
1124
1125 EXPORT_API int location_manager_unset_position_updated_cb(location_manager_h manager)
1126 {
1127         LOCATIONS_LOGD("location_manager_unset_position_updated_cb");
1128         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1129         return __unset_callback(_LOCATIONS_EVENT_TYPE_POSITION, manager);
1130 }
1131
1132 EXPORT_API int location_manager_set_velocity_updated_cb(location_manager_h manager, location_velocity_updated_cb callback, int interval, void *user_data)
1133 {
1134         LOCATIONS_LOGD("location_manager_set_velocity_updated_cb");
1135         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1136         LOCATIONS_CHECK_CONDITION(interval >= 1 && interval <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1137         LOCATIONS_NULL_ARG_CHECK(manager);
1138         location_manager_s *handle = (location_manager_s *) manager;
1139         g_object_set(handle->object, "vel-interval", interval, NULL);
1140         return __set_callback(_LOCATIONS_EVENT_TYPE_VELOCITY, manager, callback, user_data);
1141 }
1142
1143 EXPORT_API int location_manager_unset_velocity_updated_cb(location_manager_h manager)
1144 {
1145         LOCATIONS_LOGD("location_manager_unset_velocity_updated_cb");
1146         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1147         return __unset_callback(_LOCATIONS_EVENT_TYPE_VELOCITY, manager);
1148 }
1149
1150 EXPORT_API int location_manager_set_service_state_changed_cb(location_manager_h manager, location_service_state_changed_cb callback,
1151                                                                                                                          void *user_data)
1152 {
1153         LOCATIONS_LOGD("location_manager_set_service_state_changed_cb");
1154         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1155         return __set_callback(_LOCATIONS_EVENT_TYPE_SERVICE_STATE, manager, callback, user_data);
1156 }
1157
1158 EXPORT_API int location_manager_unset_service_state_changed_cb(location_manager_h manager)
1159 {
1160         LOCATIONS_LOGD("location_manager_unset_service_state_changed_cb");
1161         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1162         return __unset_callback(_LOCATIONS_EVENT_TYPE_SERVICE_STATE, manager);
1163 }
1164
1165 EXPORT_API int location_manager_set_zone_changed_cb(location_manager_h manager, location_zone_changed_cb callback, void *user_data)
1166 {
1167         LOCATIONS_LOGD("location_manager_set_zone_changed_cb");
1168         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1169         return __set_callback(_LOCATIONS_EVENT_TYPE_BOUNDARY, manager, callback, user_data);
1170 }
1171
1172 EXPORT_API int location_manager_unset_zone_changed_cb(location_manager_h manager)
1173 {
1174         LOCATIONS_LOGD("location_manager_unset_zone_changed_cb");
1175         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1176         return __unset_callback(_LOCATIONS_EVENT_TYPE_BOUNDARY, manager);
1177 }
1178
1179 EXPORT_API int location_manager_set_setting_changed_cb(location_method_e method, location_setting_changed_cb callback, void *user_data)
1180 {
1181         LOCATIONS_LOGD("location_manager_set_setting_changed_cb");
1182         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1183         LOCATIONS_NULL_ARG_CHECK(callback);
1184
1185         LocationMethod _method = __convert_LocationMethod(method);
1186         int ret = LOCATION_ERROR_NONE;
1187
1188         if (_method == LOCATION_METHOD_NONE) {
1189                 return __convert_error_code(LOCATION_ERROR_PARAMETER);
1190         } else if (_method == LOCATION_METHOD_PASSIVE || _method == LOCATION_METHOD_FUSED) {
1191                 LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD");     //LCOV_EXCL_LINE
1192                 return LOCATIONS_ERROR_INCORRECT_METHOD;        //LCOV_EXCL_LINE
1193         }
1194
1195         g_location_setting[_method].callback = callback;
1196         g_location_setting[_method].user_data = user_data;
1197
1198         ret = location_add_setting_notify(_method, __setting_changed_cb, &g_location_setting);
1199         if (ret != LOCATION_ERROR_NONE)
1200                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1201
1202         return LOCATIONS_ERROR_NONE;
1203 }
1204
1205 EXPORT_API int location_manager_unset_setting_changed_cb(location_method_e method)
1206 {
1207         LOCATIONS_LOGD("location_manager_unset_setting_changed_cb");
1208         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1209         LocationMethod _method = __convert_LocationMethod(method);
1210         int ret = LOCATION_ERROR_NONE;
1211
1212         if (_method == LOCATION_METHOD_NONE) {
1213                 return __convert_error_code(LOCATION_ERROR_PARAMETER);
1214         } else if (_method == LOCATION_METHOD_PASSIVE || _method == LOCATION_METHOD_FUSED) {
1215                 LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD");     //LCOV_EXCL_LINE
1216                 return LOCATIONS_ERROR_INCORRECT_METHOD;        //LCOV_EXCL_LINE
1217         }
1218
1219         ret = location_ignore_setting_notify(_method, __setting_changed_cb);
1220         if (ret != LOCATION_ERROR_NONE) {
1221                 LOCATIONS_LOGE("Fail to ignore notify. Error[%d]", ret);        //LCOV_EXCL_LINE
1222                 ret = __convert_error_code(ret);        //LCOV_EXCL_LINE
1223         }
1224
1225         g_location_setting[method].callback = NULL;
1226         g_location_setting[method].user_data = NULL;
1227
1228         return LOCATIONS_ERROR_NONE;
1229 }
1230
1231 EXPORT_API int location_manager_get_distance(double start_latitude, double start_longitude, double end_latitude, double end_longitude, double *distance)
1232 {
1233         LOCATIONS_LOGD("location_manager_get_distance");
1234         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1235         LOCATIONS_NULL_ARG_CHECK(distance);
1236         LOCATIONS_CHECK_CONDITION(start_latitude >= -90 && start_latitude <= 90, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1237         LOCATIONS_CHECK_CONDITION(start_longitude >= -180 && start_longitude <= 180, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1238         LOCATIONS_CHECK_CONDITION(end_latitude >= -90 && end_latitude <= 90, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1239         LOCATIONS_CHECK_CONDITION(end_longitude >= -180 && end_longitude <= 180, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1240
1241         int ret = LOCATION_ERROR_NONE;
1242         double u_distance;
1243
1244         LocationPosition *start = location_position_new(0, start_latitude, start_longitude, 0, LOCATION_STATUS_2D_FIX);
1245         LocationPosition *end = location_position_new(0, end_latitude, end_longitude, 0, LOCATION_STATUS_2D_FIX);
1246
1247         ret = location_get_distance(start, end, &u_distance);
1248         location_position_free(start);
1249         location_position_free(end);
1250         if (ret != LOCATION_ERROR_NONE)
1251                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1252
1253         *distance = u_distance;
1254
1255         return LOCATIONS_ERROR_NONE;
1256 }
1257
1258 /*/////////////////////////////////////// */
1259 /* GPS Status & Satellites */
1260 /*////////////////////////////////////// */
1261
1262 EXPORT_API int gps_status_get_nmea(location_manager_h manager, char **nmea)
1263 {
1264         LOCATIONS_LOGD("gps_status_get_nmea");
1265         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1266         LOCATIONS_NULL_ARG_CHECK(manager);
1267         LOCATIONS_NULL_ARG_CHECK(nmea);
1268         location_manager_s *handle = (location_manager_s *) manager;
1269         char *nmea_data;
1270         int ret = 0;
1271         if (handle != NULL)
1272                  ret = location_get_nmea(handle->object, &nmea_data);
1273         else
1274                 LOCATIONS_LOGE("Null Handle");
1275         if (ret != LOCATION_ERROR_NONE || nmea == NULL) {
1276                 //LCOV_EXCL_START
1277                 if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1278                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1279                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1280                 }
1281
1282                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : NMEA is NULL ", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE);
1283                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1284                 //LCOV_EXCL_STOP
1285         }
1286
1287         *nmea = g_strdup(nmea_data);
1288         g_free(nmea_data);
1289
1290         return LOCATIONS_ERROR_NONE;
1291 }
1292
1293 EXPORT_API int gps_status_get_satellite(location_manager_h manager, int *num_of_active, int *num_of_inview, time_t *timestamp)
1294 {
1295         LOCATIONS_LOGD("gps_status_get_satellite");
1296         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1297         LOCATIONS_NULL_ARG_CHECK(manager);
1298         LOCATIONS_NULL_ARG_CHECK(num_of_active);
1299         LOCATIONS_NULL_ARG_CHECK(num_of_inview);
1300         LOCATIONS_NULL_ARG_CHECK(timestamp);
1301         location_manager_s *handle = (location_manager_s *) manager;
1302         LocationSatellite *sat = NULL;
1303         int ret = location_get_satellite(handle->object, &sat);
1304         if (ret != LOCATION_ERROR_NONE || sat == NULL) {
1305                 //LCOV_EXCL_START
1306                 if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1307                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1308                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1309                 }
1310
1311                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : satellite is NULL ", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE);
1312                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1313                 //LCOV_EXCL_STOP
1314         }
1315
1316         *num_of_active = sat->num_of_sat_used;
1317         *num_of_inview = sat->num_of_sat_inview;
1318         *timestamp = sat->timestamp;
1319         location_satellite_free(sat);
1320         sat = NULL;
1321         return LOCATIONS_ERROR_NONE;
1322 }
1323
1324 EXPORT_API int gps_status_set_satellite_updated_cb(location_manager_h manager, gps_status_satellite_updated_cb callback, int interval, void *user_data)
1325 {
1326         LOCATIONS_LOGD("gps_status_set_satellite_updated_cb");
1327         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1328         LOCATIONS_CHECK_CONDITION(interval >= 1 && interval <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1329         LOCATIONS_NULL_ARG_CHECK(manager);
1330         LOCATIONS_NULL_ARG_CHECK(callback);
1331
1332         location_manager_s *handle = (location_manager_s *) manager;
1333         int ret = location_set_option(handle->object, "USE_SV");
1334         if (ret != LOCATION_ERROR_NONE) {
1335                 //LCOV_EXCL_START
1336                 if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1337                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1338                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1339                 }
1340                 return ret;
1341                 //LCOV_EXCL_STOP
1342         }
1343         g_object_set(handle->object, "sat-interval", interval, NULL);
1344         return __set_callback(_LOCATIONS_EVENT_TYPE_SATELLITE, manager, callback, user_data);
1345 }
1346
1347 EXPORT_API int gps_status_unset_satellite_updated_cb(location_manager_h manager)
1348 {
1349         LOCATIONS_LOGD("gps_status_unset_satellite_updated_cb");
1350         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1351         return __unset_callback(_LOCATIONS_EVENT_TYPE_SATELLITE, manager);
1352 }
1353
1354 EXPORT_API int gps_status_foreach_satellites_in_view(location_manager_h manager, gps_status_get_satellites_cb callback, void *user_data)
1355 {
1356         LOCATIONS_LOGD("gps_status_foreach_satellites_in_view");
1357         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1358         LOCATIONS_NULL_ARG_CHECK(manager);
1359         LOCATIONS_NULL_ARG_CHECK(callback);
1360
1361         location_manager_s *handle = (location_manager_s *) manager;
1362         LocationSatellite *sat = NULL;
1363         int ret = location_get_satellite(handle->object, &sat);
1364         //LCOV_EXCL_START
1365         if (ret != LOCATION_ERROR_NONE || sat == NULL) {
1366                 if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1367                         LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD(0x%08x) : method - %d", LOCATIONS_ERROR_INCORRECT_METHOD, handle->method);
1368                         return LOCATIONS_ERROR_INCORRECT_METHOD;
1369                 } else if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1370                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1371                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1372                 }
1373
1374                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : satellite is NULL ", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE);
1375                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1376         }
1377         //LCOV_EXCL_STOP
1378
1379         int i;
1380         for (i = 0; i < sat->num_of_sat_inview; i++) {
1381                 guint prn;
1382                 gboolean used;
1383                 guint elevation;
1384                 guint azimuth;
1385                 gint snr;
1386                 location_satellite_get_satellite_details(sat, i, &prn, &used, &elevation, &azimuth, &snr);
1387                 if (callback(azimuth, elevation, prn, snr, used, user_data) != TRUE)
1388                         break;
1389         }
1390         location_satellite_free(sat);
1391         sat = NULL;
1392         return LOCATIONS_ERROR_NONE;
1393 }
1394
1395 EXPORT_API int gps_status_get_last_satellite(location_manager_h manager, int *num_of_active, int *num_of_inview, time_t *timestamp)
1396 {
1397         LOCATIONS_LOGD("gps_status_get_last_satellite");
1398         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1399         LOCATIONS_NULL_ARG_CHECK(manager);
1400         LOCATIONS_NULL_ARG_CHECK(num_of_active);
1401         LOCATIONS_NULL_ARG_CHECK(num_of_inview);
1402         LOCATIONS_NULL_ARG_CHECK(timestamp);
1403
1404         location_manager_s *handle = (location_manager_s *) manager;
1405         int ret = LOCATION_ERROR_NONE;
1406         LocationSatellite *last_sat = NULL;
1407         ret = location_get_last_satellite(handle->object, &last_sat);
1408         if (ret != LOCATION_ERROR_NONE || last_sat == NULL) {
1409                 //LCOV_EXCL_START
1410                 if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1411                         LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD(0x%08x) : method - %d", LOCATIONS_ERROR_INCORRECT_METHOD, handle->method);
1412                         return LOCATIONS_ERROR_INCORRECT_METHOD;
1413                 } else if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1414                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1415                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1416                 }
1417
1418                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : satellite is NULL ", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE);
1419                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1420                 //LCOV_EXCL_STOP
1421         }
1422
1423         *num_of_active = last_sat->num_of_sat_used;
1424         *num_of_inview = last_sat->num_of_sat_inview;
1425         *timestamp = last_sat->timestamp;
1426         location_satellite_free(last_sat);
1427         return LOCATIONS_ERROR_NONE;
1428 }
1429
1430 EXPORT_API int gps_status_foreach_last_satellites_in_view(location_manager_h manager, gps_status_get_satellites_cb callback, void *user_data)
1431 {
1432         LOCATIONS_LOGD("gps_status_foreach_last_satellites_in_view");
1433         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1434         LOCATIONS_NULL_ARG_CHECK(manager);
1435         LOCATIONS_NULL_ARG_CHECK(callback);
1436         location_manager_s *handle = (location_manager_s *) manager;
1437         int ret = LOCATION_ERROR_NONE;
1438         LocationSatellite *last_sat = NULL;
1439
1440         ret = location_get_last_satellite(handle->object, &last_sat);
1441         if (ret != LOCATION_ERROR_NONE || last_sat == NULL) {
1442                 //LCOV_EXCL_START
1443                 if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1444                         LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD(0x%08x) : method - %d", LOCATIONS_ERROR_INCORRECT_METHOD, handle->method);
1445                         return LOCATIONS_ERROR_INCORRECT_METHOD;
1446                 }
1447
1448                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : satellite is NULL ", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE);
1449                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1450                 //LCOV_EXCL_STOP
1451         }
1452
1453         int i;
1454         for (i = 0; i < last_sat->num_of_sat_inview; i++) {
1455                 guint prn;
1456                 gboolean used;
1457                 guint elevation;
1458                 guint azimuth;
1459                 gint snr;
1460                 location_satellite_get_satellite_details(last_sat, i, &prn, &used, &elevation, &azimuth, &snr);
1461                 if (callback(azimuth, elevation, prn, snr, used, user_data) != TRUE)
1462                         break;
1463         }
1464         location_satellite_free(last_sat);
1465         return LOCATIONS_ERROR_NONE;
1466 }
1467
1468
1469 /**
1470  * Tizen 3.0
1471  */
1472 EXPORT_API int location_manager_set_location_batch_cb(location_manager_h manager, location_batch_cb callback, int batch_interval, int batch_period, void *user_data)
1473 {
1474         LOCATIONS_LOGD("location_manager_set_location_batch_cb");
1475         LOCATIONS_NOT_SUPPORTED_CHECK(__is_batch_supported());
1476
1477 //LCOV_EXCL_START
1478         LOCATIONS_CHECK_CONDITION(batch_interval >= 1 && batch_interval <= 255, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1479         LOCATIONS_CHECK_CONDITION(batch_period >= 1 && batch_period <= 60000, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1480         LOCATIONS_CHECK_CONDITION(batch_interval <= batch_period, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1481         LOCATIONS_NULL_ARG_CHECK(manager);
1482         LOCATIONS_NULL_ARG_CHECK(callback);
1483         location_manager_s *handle = (location_manager_s *) manager;
1484         g_object_set(handle->object, "batch-period", batch_period, NULL);
1485         g_object_set(handle->object, "batch-interval", batch_interval, NULL);
1486         return __set_callback(_LOCATIONS_EVENT_TYPE_BATCH, manager, callback, user_data);
1487 //LCOV_EXCL_STOP
1488 }
1489
1490 EXPORT_API int location_manager_unset_location_batch_cb(location_manager_h manager)
1491 {
1492         LOCATIONS_LOGD("location_manager_unset_location_batch_cb");
1493         LOCATIONS_NOT_SUPPORTED_CHECK(__is_batch_supported());
1494         return __unset_callback(_LOCATIONS_EVENT_TYPE_BATCH, manager);  //LCOV_EXCL_LINE
1495 }
1496
1497 EXPORT_API int location_manager_start_batch(location_manager_h manager)
1498 {
1499         LOCATIONS_LOGD("location_manager_start_batch");
1500         LOCATIONS_NOT_SUPPORTED_CHECK(__is_batch_supported());
1501
1502 //LCOV_EXCL_START
1503         LOCATIONS_NULL_ARG_CHECK(manager);
1504         location_manager_s *handle = (location_manager_s *) manager;
1505
1506         if (LOCATIONS_METHOD_GPS == handle->method) {
1507                 if (!handle->sig_id[_LOCATION_SIGNAL_BATCH_UPDATED])
1508                         handle->sig_id[_LOCATION_SIGNAL_BATCH_UPDATED] = g_signal_connect(handle->object, "batch-updated", G_CALLBACK(__cb_batch_updated), handle);
1509         } else {
1510                 LOCATIONS_LOGE("method is not GPS [LOCATIONS_ERROR_INCORRECT_METHOD]");
1511                 return LOCATIONS_ERROR_INCORRECT_METHOD;
1512         }
1513
1514         if (handle->user_cb[_LOCATIONS_EVENT_TYPE_BATCH] != NULL)
1515                 LOCATIONS_LOGD("batch status set : Start");
1516
1517         int ret = location_start_batch(handle->object);
1518         if (ret != LOCATION_ERROR_NONE)
1519                 return __convert_error_code(ret);
1520
1521         return LOCATIONS_ERROR_NONE;
1522 //LCOV_EXCL_STOP
1523 }
1524
1525 EXPORT_API int location_manager_stop_batch(location_manager_h manager)
1526 {
1527         LOCATIONS_LOGD("location_manager_stop_batch");
1528         LOCATIONS_NOT_SUPPORTED_CHECK(__is_batch_supported());
1529
1530 //LCOV_EXCL_START
1531         LOCATIONS_NULL_ARG_CHECK(manager);
1532         location_manager_s *handle = (location_manager_s *) manager;
1533
1534         if (LOCATIONS_METHOD_GPS == handle->method) {
1535                 if (handle->sig_id[_LOCATION_SIGNAL_BATCH_UPDATED]) {
1536                         g_signal_handler_disconnect(handle->object, handle->sig_id[_LOCATION_SIGNAL_BATCH_UPDATED]);
1537                         handle->sig_id[_LOCATION_SIGNAL_BATCH_UPDATED] = 0;
1538                 }
1539         }
1540
1541         int ret = location_stop_batch(handle->object);
1542         if (ret != LOCATION_ERROR_NONE)
1543                 return __convert_error_code(ret);
1544
1545         return LOCATIONS_ERROR_NONE;
1546 //LCOV_EXCL_STOP
1547 }
1548
1549 EXPORT_API int location_manager_foreach_location_batch(location_manager_h manager, location_batch_get_location_cb callback, void *user_data)
1550 {
1551         LOCATIONS_LOGD("location_manager_foreach_location_batch");
1552         LOCATIONS_NOT_SUPPORTED_CHECK(__is_batch_supported());
1553 //LCOV_EXCL_START
1554         LOCATIONS_NULL_ARG_CHECK(manager);
1555         LOCATIONS_NULL_ARG_CHECK(callback);
1556         location_manager_s *handle = (location_manager_s *) manager;
1557         LocationBatch *batch = NULL;
1558
1559         int ret = location_get_batch(handle->object, &batch);
1560         if (ret != LOCATION_ERROR_NONE || batch == NULL) {
1561                 if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1562                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1563                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1564                 }
1565
1566                 LOCATIONS_LOGE("Batch is NULL [LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE]");
1567                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1568         }
1569
1570         int i;
1571         for (i = 0; i < batch->num_of_location; i++) {
1572                 gdouble latitude;
1573                 gdouble longitude;
1574                 gdouble altitude;
1575                 gdouble speed;
1576                 gdouble direction;
1577                 gdouble h_accuracy;
1578                 gdouble v_accuracy;
1579                 guint timestamp;
1580
1581                 location_get_batch_details(batch, i, &latitude, &longitude, &altitude, &speed, &direction, &h_accuracy, &v_accuracy, &timestamp);
1582                 if (callback(latitude, longitude, altitude, speed, direction, h_accuracy, v_accuracy, timestamp, user_data) != TRUE)
1583                         break;
1584         }
1585         location_batch_free(batch);
1586         batch = NULL;
1587         return LOCATIONS_ERROR_NONE;
1588 //LCOV_EXCL_STOP
1589 }
1590
1591 EXPORT_API int location_manager_is_enabled_mock_location(bool *enabled)
1592 {
1593         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1594         LOCATIONS_NULL_ARG_CHECK(enabled);
1595         int is_enabled_val = -1;
1596         int ret = location_is_enabled_method(INTERNAL_METHOD_MOCK, &is_enabled_val);
1597         if (ret != LOCATION_ERROR_NONE)
1598                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1599
1600         if (is_enabled_val == -1)
1601                 return TIZEN_ERROR_PERMISSION_DENIED;   //LCOV_EXCL_LINE
1602
1603         *enabled = (is_enabled_val == 0) ? FALSE : TRUE;
1604         return LOCATIONS_ERROR_NONE;
1605 }
1606
1607 EXPORT_API int location_manager_enable_mock_location(const bool enable)
1608 {
1609         LOCATIONS_LOGD("enable: %d", enable);
1610         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1611         int ret = LOCATION_ERROR_NONE;
1612
1613         ret = location_enable_mock(enable);
1614         return __convert_error_code(ret);
1615 }
1616
1617 EXPORT_API int location_manager_set_mock_location(location_manager_h manager, const double latitude, const double longitude, const double altitude,
1618         const double speed, const double direction, const double accuracy)
1619 {
1620         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1621         LOCATIONS_NULL_ARG_CHECK(manager);
1622
1623         LOCATIONS_CHECK_CONDITION(latitude >= -90 && latitude <= 90, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1624         LOCATIONS_CHECK_CONDITION(longitude >= -180 && longitude <= 180, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1625         LOCATIONS_CHECK_CONDITION(direction >= 0 && direction <= 360, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1626
1627         location_manager_s *handle = (location_manager_s *) manager;
1628         int ret = LOCATION_ERROR_NONE;
1629         int enabled;
1630         LocationPosition *pos = NULL;
1631         LocationVelocity *vel = NULL;
1632         LocationAccuracy *acc = NULL;
1633
1634         ret = location_is_enabled_method(INTERNAL_METHOD_MOCK, &enabled);
1635         LOCATIONS_LOGD("enable: %d, ret: %d", enabled, ret);
1636         if (ret == LOCATIONS_ERROR_NONE) {
1637                 if (enabled == 0)
1638                         return __convert_error_code(LOCATION_ERROR_SETTING_OFF);
1639         } else {
1640                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1641         }
1642
1643         pos = location_position_new(0, latitude, longitude, 0, LOCATION_STATUS_3D_FIX);
1644         if (!pos) {
1645                 LOCATIONS_LOGE("Failed to create position");    //LCOV_EXCL_LINE
1646                 return LOCATIONS_ERROR_OUT_OF_MEMORY;   //LCOV_EXCL_LINE
1647         }
1648         vel = location_velocity_new(0, speed, direction, 0);
1649         if (!vel) {
1650                 //LCOV_EXCL_START
1651                 LOCATIONS_LOGE("Failed to create velocity");
1652                 location_position_free(pos);
1653                 return LOCATIONS_ERROR_OUT_OF_MEMORY;
1654                 //LCOV_EXCL_STOP
1655         }
1656
1657         acc = location_accuracy_new(LOCATION_ACCURACY_LEVEL_DETAILED, accuracy, -1);
1658         if (!acc) {
1659                 //LCOV_EXCL_START
1660                 LOCATIONS_LOGE("Failed to create accuracy");
1661                 location_position_free(pos);
1662                 location_velocity_free(vel);
1663                 return LOCATIONS_ERROR_OUT_OF_MEMORY;
1664                 //LCOV_EXCL_STOP
1665         }
1666
1667         ret = location_set_mock_location(handle->object, pos, vel, acc);
1668         if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1669                 LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD");
1670                 return LOCATIONS_ERROR_INCORRECT_METHOD;
1671         }
1672
1673         location_position_free(pos);
1674         location_velocity_free(vel);
1675         location_accuracy_free(acc);
1676
1677         return __convert_error_code(ret);
1678 }
1679
1680 EXPORT_API int location_manager_clear_mock_location(location_manager_h manager)
1681 {
1682         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1683         LOCATIONS_NULL_ARG_CHECK(manager);
1684
1685         location_manager_s *handle = (location_manager_s *) manager;
1686         int enabled;
1687
1688         int ret = location_is_enabled_method(INTERNAL_METHOD_MOCK, &enabled);
1689         LOCATIONS_LOGD("enable: %d, ret: %d", enabled, ret);
1690         if (ret == LOCATIONS_ERROR_NONE) {
1691                 if (enabled == 0)
1692                         return __convert_error_code(LOCATION_ERROR_SETTING_OFF);
1693         } else {
1694                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1695         }
1696
1697         ret = location_clear_mock_location(handle->object);
1698         if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1699                 LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD");
1700                 return LOCATIONS_ERROR_INCORRECT_METHOD;
1701         }
1702
1703         return __convert_error_code(ret);
1704 }
1705
1706 EXPORT_API int location_manager_set_fused_mode(location_manager_h manager, location_fused_mode_e mode)
1707 {
1708         LOCATIONS_NOT_SUPPORTED_CHECK(__is_fused_supported());
1709         LOCATIONS_NULL_ARG_CHECK(manager);
1710         LOCATIONS_CHECK_CONDITION(mode >= LOCATIONS_FUSED_HIGH_ACCURACY && mode <= LOCATIONS_FUSED_BALANCED_POWER, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1711
1712         location_manager_s *handle = (location_manager_s *) manager;
1713         int ret = LOCATION_ERROR_NONE;
1714
1715         ret = location_set_fused_mode(handle->object, mode);
1716         if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1717                 LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD");
1718                 return LOCATIONS_ERROR_INCORRECT_METHOD;
1719         }
1720
1721         return __convert_error_code(ret);
1722 }