Fix SVACE & Coverity issues
[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         return LOCATIONS_ERROR_NONE;
577 }
578
579 EXPORT_API int location_manager_start(location_manager_h manager)
580 {
581         LOCATIONS_LOGD("location_manager_start");
582         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
583         LOCATIONS_NULL_ARG_CHECK(manager);
584         location_manager_s *handle = (location_manager_s *) manager;
585
586         if (!handle->sig_id[_LOCATION_SIGNAL_SERVICE_UPDATED])
587                 handle->sig_id[_LOCATION_SIGNAL_SERVICE_UPDATED] = g_signal_connect(handle->object, "service-updated", G_CALLBACK(__cb_service_updated), handle);
588
589         if (handle->method >= LOCATIONS_METHOD_FIRST && handle->method <= LOCATIONS_METHOD_LAST) {
590                 if (!handle->sig_id[_LOCATION_SIGNAL_ZONE_IN])
591                         handle->sig_id[_LOCATION_SIGNAL_ZONE_IN] = g_signal_connect(handle->object, "zone-in", G_CALLBACK(__cb_zone_in), handle);
592
593                 if (!handle->sig_id[_LOCATION_SIGNAL_ZONE_OUT])
594                         handle->sig_id[_LOCATION_SIGNAL_ZONE_OUT] = g_signal_connect(handle->object, "zone-out", G_CALLBACK(__cb_zone_out), handle);
595         } else {
596                 LOCATIONS_LOGI("This method [%d] is not supported zone-in, zone-out signal.", handle->method);  //LCOV_EXCL_LINE
597         }
598
599         if (handle->user_cb[_LOCATIONS_EVENT_TYPE_SATELLITE] != NULL) {
600                 LOCATIONS_LOGI("Satellite update_cb is set");
601                 location_set_option(handle->object, "USE_SV");
602         }
603
604         int ret = location_start(handle->object);
605         if (ret != LOCATION_ERROR_NONE)
606                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
607
608         return LOCATIONS_ERROR_NONE;
609 }
610
611 EXPORT_API int location_manager_request_single_location(location_manager_h manager, int timeout, location_updated_cb callback, void *user_data)
612 {
613         LOCATIONS_LOGD("location_manager_request_single_location");
614         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
615         LOCATIONS_NULL_ARG_CHECK(manager);
616         LOCATIONS_NULL_ARG_CHECK(callback);
617         if (timeout <= 0 || timeout > 120) {
618                 LOCATIONS_LOGE("timeout scope is incorrect(1~120) [%d]", timeout);
619                 return LOCATIONS_ERROR_INVALID_PARAMETER;
620         }
621
622         location_manager_s *handle = (location_manager_s *) manager;
623         int ret = LOCATIONS_ERROR_NONE;
624
625         if (!handle->sig_id[_LOCATION_SIGNAL_LOCATION_UPDATED])
626                 handle->sig_id[_LOCATION_SIGNAL_LOCATION_UPDATED] = g_signal_connect(handle->object, "location-updated", G_CALLBACK(__cb_location_updated), handle);
627
628         ret = __set_callback(_LOCATIONS_EVENT_TYPE_LOCATION, manager, callback, user_data);
629         if (ret != LOCATIONS_ERROR_NONE)
630                 return ret;
631
632         ret = location_request_single_location(handle->object, timeout);
633         if (ret != LOCATION_ERROR_NONE) {
634                 //LCOV_EXCL_START
635                 if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
636                         LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD : method - %d", handle->method);
637                         return LOCATIONS_ERROR_INCORRECT_METHOD;
638                 }
639                 return __convert_error_code(ret);
640                 //LCOV_EXCL_STOP
641         }
642
643         return LOCATIONS_ERROR_NONE;
644 }
645
646 EXPORT_API int location_manager_stop(location_manager_h manager)
647 {
648         LOCATIONS_LOGD("location_manager_stop");
649         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
650         LOCATIONS_NULL_ARG_CHECK(manager);
651
652         location_manager_s *handle = (location_manager_s *) manager;
653
654         if (handle->sig_id[_LOCATION_SIGNAL_SERVICE_UPDATED]) {
655                 g_signal_handler_disconnect(handle->object, handle->sig_id[_LOCATION_SIGNAL_SERVICE_UPDATED]);
656                 handle->sig_id[_LOCATION_SIGNAL_SERVICE_UPDATED] = 0;
657         }
658
659         if (handle->method >= LOCATIONS_METHOD_FIRST && handle->method <= LOCATIONS_METHOD_LAST) {
660                 if (handle->sig_id[_LOCATION_SIGNAL_ZONE_IN]) {
661                         g_signal_handler_disconnect(handle->object, handle->sig_id[_LOCATION_SIGNAL_ZONE_IN]);
662                         handle->sig_id[_LOCATION_SIGNAL_ZONE_IN] = 0;
663                 }
664
665                 if (handle->sig_id[_LOCATION_SIGNAL_ZONE_OUT]) {
666                         g_signal_handler_disconnect(handle->object, handle->sig_id[_LOCATION_SIGNAL_ZONE_OUT]);
667                         handle->sig_id[_LOCATION_SIGNAL_ZONE_OUT] = 0;
668                 }
669         }
670
671         int ret = location_stop(handle->object);
672         if (ret != LOCATION_ERROR_NONE)
673                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
674
675         return LOCATIONS_ERROR_NONE;
676 }
677
678 EXPORT_API int location_manager_add_boundary(location_manager_h manager, location_bounds_h bounds)
679 {
680         LOCATIONS_LOGD("location_manager_add_boundary");
681         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
682         LOCATIONS_NULL_ARG_CHECK(manager);
683         LOCATIONS_NULL_ARG_CHECK(bounds);
684
685         location_manager_s *handle = (location_manager_s *) manager;
686         location_bounds_s *bound_handle = (location_bounds_s *) bounds;
687         int ret = location_boundary_add(handle->object, bound_handle->boundary);
688         if (ret != LOCATION_ERROR_NONE)
689                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
690
691         bound_handle->is_added = TRUE;
692         handle->bounds_list = g_list_append(handle->bounds_list, bound_handle);
693         return LOCATIONS_ERROR_NONE;
694 }
695
696 EXPORT_API int location_manager_remove_boundary(location_manager_h manager, location_bounds_h bounds)
697 {
698         LOCATIONS_LOGD("location_manager_remove_boundary");
699         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
700         LOCATIONS_NULL_ARG_CHECK(manager);
701         LOCATIONS_NULL_ARG_CHECK(bounds);
702
703         location_manager_s *handle = (location_manager_s *) manager;
704         location_bounds_s *bound_handle = (location_bounds_s *) bounds;
705         int ret = location_boundary_remove(handle->object, bound_handle->boundary);
706         if (ret != LOCATION_ERROR_NONE)
707                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
708
709         handle->bounds_list = g_list_remove(handle->bounds_list, bound_handle);
710         bound_handle->is_added = FALSE;
711         return LOCATIONS_ERROR_NONE;
712 }
713
714 EXPORT_API int location_manager_foreach_boundary(location_manager_h manager, location_bounds_cb callback, void *user_data)
715 {
716         LOCATIONS_LOGD("location_manager_foreach_boundary");
717         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
718         LOCATIONS_NULL_ARG_CHECK(manager);
719         LOCATIONS_NULL_ARG_CHECK(callback);
720
721         location_manager_s *handle = (location_manager_s *) manager;
722         handle->user_cb[_LOCATIONS_EVENT_TYPE_FOREACH_BOUNDS] = callback;
723         handle->user_data[_LOCATIONS_EVENT_TYPE_FOREACH_BOUNDS] = user_data;
724         handle->is_continue_foreach_bounds = TRUE;
725         int ret = location_boundary_foreach(handle->object, __foreach_boundary, handle);
726         if (ret != LOCATION_ERROR_NONE)
727                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
728
729         return LOCATIONS_ERROR_NONE;
730 }
731
732 EXPORT_API int location_manager_get_method(location_manager_h manager, location_method_e *method)
733 {
734         LOCATIONS_LOGD("location_manager_get_method");
735         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
736         LOCATIONS_NULL_ARG_CHECK(manager);
737         LOCATIONS_NULL_ARG_CHECK(method);
738
739         location_manager_s *handle = (location_manager_s *) manager;
740         LocationMethod _method = LOCATION_METHOD_NONE;
741         g_object_get(handle->object, "method", &_method, NULL);
742         switch (_method) {
743         case LOCATION_METHOD_NONE:
744                 *method = LOCATIONS_METHOD_NONE;
745                 break;
746         case LOCATION_METHOD_HYBRID:
747                 *method = LOCATIONS_METHOD_HYBRID;
748                 break;
749         case LOCATION_METHOD_GPS:
750                 *method = LOCATIONS_METHOD_GPS;
751                 break;
752         case LOCATION_METHOD_WPS:
753                 *method = LOCATIONS_METHOD_WPS; //LCOV_EXCL_LINE
754                 break;                                                  //LCOV_EXCL_LINE
755         case LOCATION_METHOD_PASSIVE:
756                 *method = LOCATIONS_METHOD_PASSIVE;
757                 break;
758         case LOCATION_METHOD_FUSED:
759                 *method = LOCATIONS_METHOD_FUSED;
760                 break;
761         default: {
762                 LOCATIONS_LOGE("[LOCATIONS_ERROR_INVALID_PARAMETER] invalid method");   //LCOV_EXCL_LINE
763                         return LOCATIONS_ERROR_INVALID_PARAMETER;                                                       //LCOV_EXCL_LINE
764                 }
765         }
766         return LOCATIONS_ERROR_NONE;
767 }
768
769 EXPORT_API int location_manager_get_position(location_manager_h manager, double *altitude, double *latitude, double *longitude,
770                                                                                          time_t *timestamp)
771 {
772         LOCATIONS_LOGD("location_manager_get_position");
773         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
774         LOCATIONS_NULL_ARG_CHECK(manager);
775         LOCATIONS_NULL_ARG_CHECK(altitude);
776         LOCATIONS_NULL_ARG_CHECK(latitude);
777         LOCATIONS_NULL_ARG_CHECK(longitude);
778         LOCATIONS_NULL_ARG_CHECK(timestamp);
779
780         location_manager_s *handle = (location_manager_s *) manager;
781         LocationPosition *pos = NULL;
782         LocationAccuracy *acc = NULL;
783         int ret = location_get_position(handle->object, &pos, &acc);
784         if (ret != LOCATION_ERROR_NONE)
785                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
786
787         if (pos->status == LOCATION_STATUS_NO_FIX) {
788                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;   //LCOV_EXCL_LINE
789         } else {
790                 *latitude = pos->latitude;
791                 *longitude = pos->longitude;
792                 *altitude = pos->altitude;
793         }
794         *timestamp = pos->timestamp;
795         location_position_free(pos);
796         location_accuracy_free(acc);
797         return LOCATIONS_ERROR_NONE;
798 }
799
800 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)
801 {
802         LOCATIONS_LOGD("location_manager_get_location");
803         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
804         LOCATIONS_NULL_ARG_CHECK(manager);
805         LOCATIONS_NULL_ARG_CHECK(altitude);
806         LOCATIONS_NULL_ARG_CHECK(latitude);
807         LOCATIONS_NULL_ARG_CHECK(longitude);
808         LOCATIONS_NULL_ARG_CHECK(climb);
809         LOCATIONS_NULL_ARG_CHECK(direction);
810         LOCATIONS_NULL_ARG_CHECK(speed);
811         LOCATIONS_NULL_ARG_CHECK(level);
812         LOCATIONS_NULL_ARG_CHECK(horizontal);
813         LOCATIONS_NULL_ARG_CHECK(vertical);
814         LOCATIONS_NULL_ARG_CHECK(timestamp);
815
816         location_manager_s *handle = (location_manager_s *) manager;
817         LocationPosition *pos = NULL;
818         LocationVelocity *vel = NULL;
819         LocationAccuracy *acc = NULL;
820         int ret = location_get_position_ext(handle->object, &pos, &vel, &acc);
821         if (ret != LOCATION_ERROR_NONE)
822                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
823
824         if (pos->status == LOCATION_STATUS_NO_FIX) {
825                 return __convert_error_code(LOCATION_ERROR_NOT_AVAILABLE);      //LCOV_EXCL_LINE
826         } else {
827                 *latitude = pos->latitude;
828                 *longitude = pos->longitude;
829                 *altitude = pos->altitude;
830         }
831         *timestamp = pos->timestamp;
832         *climb = vel->climb;
833         *direction = vel->direction;
834         *speed = vel->speed;
835         *level = acc->level;
836         *horizontal = acc->horizontal_accuracy;
837         *vertical = acc->vertical_accuracy;
838
839         location_position_free(pos);
840         location_velocity_free(vel);
841         location_accuracy_free(acc);
842         return LOCATIONS_ERROR_NONE;
843 }
844
845 EXPORT_API int location_manager_get_velocity(location_manager_h manager, double *climb, double *direction, double *speed, time_t *timestamp)
846 {
847         LOCATIONS_LOGD("location_manager_get_velocity");
848         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
849         LOCATIONS_NULL_ARG_CHECK(manager);
850         LOCATIONS_NULL_ARG_CHECK(climb);
851         LOCATIONS_NULL_ARG_CHECK(direction);
852         LOCATIONS_NULL_ARG_CHECK(speed);
853         LOCATIONS_NULL_ARG_CHECK(timestamp);
854
855         location_manager_s *handle = (location_manager_s *) manager;
856         LocationVelocity *vel = NULL;
857         LocationAccuracy *acc = NULL;
858
859         int ret = location_get_velocity(handle->object, &vel, &acc);
860         if (ret != LOCATION_ERROR_NONE)
861                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
862
863         *climb = vel->climb;
864         *direction = vel->direction;
865         *speed = vel->speed;
866         *timestamp = vel->timestamp;
867         location_velocity_free(vel);
868         location_accuracy_free(acc);
869         return LOCATIONS_ERROR_NONE;
870 }
871
872 EXPORT_API int location_manager_get_accuracy(location_manager_h manager, location_accuracy_level_e *level, double *horizontal,
873                                                                                          double *vertical)
874 {
875         LOCATIONS_LOGD("location_manager_get_accuracy");
876         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
877         LOCATIONS_NULL_ARG_CHECK(manager);
878         LOCATIONS_NULL_ARG_CHECK(level);
879         LOCATIONS_NULL_ARG_CHECK(horizontal);
880         LOCATIONS_NULL_ARG_CHECK(vertical);
881         location_manager_s *handle = (location_manager_s *) manager;
882
883         int ret;
884         LocationPosition *pos = NULL;
885         LocationAccuracy *acc = NULL;
886         ret = location_get_position(handle->object, &pos, &acc);
887         if (ret != LOCATION_ERROR_NONE)
888                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
889
890         if (acc == NULL)
891                 return __convert_error_code(LOCATION_ERROR_NOT_AVAILABLE);      //LCOV_EXCL_LINE
892
893         *level = acc->level;
894         *horizontal = acc->horizontal_accuracy;
895         *vertical = acc->vertical_accuracy;
896         location_position_free(pos);
897         location_accuracy_free(acc);
898         return LOCATIONS_ERROR_NONE;
899 }
900
901 EXPORT_API int location_manager_get_last_position(location_manager_h manager, double *altitude, double *latitude, double *longitude, time_t *timestamp)
902 {
903         LOCATIONS_LOGD("location_manager_get_last_position");
904         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
905         LOCATIONS_NULL_ARG_CHECK(manager);
906         LOCATIONS_NULL_ARG_CHECK(altitude);
907         LOCATIONS_NULL_ARG_CHECK(latitude);
908         LOCATIONS_NULL_ARG_CHECK(longitude);
909         LOCATIONS_NULL_ARG_CHECK(timestamp);
910
911         location_manager_s *handle = (location_manager_s *) manager;
912
913         int ret;
914         LocationPosition *last_pos = NULL;
915         LocationAccuracy *last_acc = NULL;
916         ret = location_get_last_position(handle->object, &last_pos, &last_acc);
917         if (ret != LOCATION_ERROR_NONE)
918                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
919
920         if (last_pos->status == LOCATION_STATUS_NO_FIX) {
921                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
922         } else {
923                 *latitude = last_pos->latitude;
924                 *longitude = last_pos->longitude;
925                 *altitude = last_pos->altitude;
926         }
927         *timestamp = last_pos->timestamp;
928         location_position_free(last_pos);
929         location_accuracy_free(last_acc);
930         return LOCATIONS_ERROR_NONE;
931 }
932
933 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)
934 {
935         LOCATIONS_LOGD("location_manager_get_last_location");
936         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
937         LOCATIONS_NULL_ARG_CHECK(manager);
938         LOCATIONS_NULL_ARG_CHECK(altitude);
939         LOCATIONS_NULL_ARG_CHECK(latitude);
940         LOCATIONS_NULL_ARG_CHECK(longitude);
941         LOCATIONS_NULL_ARG_CHECK(climb);
942         LOCATIONS_NULL_ARG_CHECK(direction);
943         LOCATIONS_NULL_ARG_CHECK(speed);
944         LOCATIONS_NULL_ARG_CHECK(level);
945         LOCATIONS_NULL_ARG_CHECK(horizontal);
946         LOCATIONS_NULL_ARG_CHECK(vertical);
947         LOCATIONS_NULL_ARG_CHECK(timestamp);
948
949         location_manager_s *handle = (location_manager_s *) manager;
950
951         int ret;
952         LocationPosition *last_pos = NULL;
953         LocationVelocity *last_vel = NULL;
954         LocationAccuracy *last_acc = NULL;
955         ret = location_get_last_position_ext(handle->object, &last_pos, &last_vel, &last_acc);
956         if (ret != LOCATION_ERROR_NONE)
957                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
958
959         if (last_pos->status == LOCATION_STATUS_NO_FIX) {
960                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
961         } else {
962                 *latitude = last_pos->latitude;
963                 *longitude = last_pos->longitude;
964                 *altitude = last_pos->altitude;
965         }
966         *timestamp = last_pos->timestamp;
967         *climb = last_vel->climb;
968         *direction = last_vel->direction;
969         *speed = last_vel->speed;
970         *level = last_acc->level;
971         *horizontal = last_acc->horizontal_accuracy;
972         *vertical = last_acc->vertical_accuracy;
973         location_position_free(last_pos);
974         location_velocity_free(last_vel);
975         location_accuracy_free(last_acc);
976         return LOCATIONS_ERROR_NONE;
977 }
978
979 EXPORT_API int location_manager_get_last_velocity(location_manager_h manager, double *climb, double *direction, double *speed, time_t *timestamp)
980 {
981         LOCATIONS_LOGD("location_manager_get_last_velocity");
982         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
983         LOCATIONS_NULL_ARG_CHECK(manager);
984         LOCATIONS_NULL_ARG_CHECK(climb);
985         LOCATIONS_NULL_ARG_CHECK(direction);
986         LOCATIONS_NULL_ARG_CHECK(speed);
987         LOCATIONS_NULL_ARG_CHECK(timestamp);
988
989         location_manager_s *handle = (location_manager_s *) manager;
990
991         int ret;
992         LocationVelocity *last_vel = NULL;
993         LocationAccuracy *last_acc = NULL;
994         ret = location_get_last_velocity(handle->object, &last_vel, &last_acc);
995         if (ret != LOCATION_ERROR_NONE)
996                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
997
998         *climb = last_vel->climb;
999         *direction = last_vel->direction;
1000         *speed = last_vel->speed;
1001         *timestamp = last_vel->timestamp;
1002         location_velocity_free(last_vel);
1003         location_accuracy_free(last_acc);
1004         return LOCATIONS_ERROR_NONE;
1005 }
1006
1007 EXPORT_API int location_manager_get_last_accuracy(location_manager_h manager, location_accuracy_level_e *level, double *horizontal, double *vertical)
1008 {
1009         LOCATIONS_LOGD("location_manager_get_last_accuracy");
1010         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1011         LOCATIONS_NULL_ARG_CHECK(manager);
1012         LOCATIONS_NULL_ARG_CHECK(level);
1013         LOCATIONS_NULL_ARG_CHECK(horizontal);
1014         LOCATIONS_NULL_ARG_CHECK(vertical);
1015         location_manager_s *handle = (location_manager_s *) manager;
1016
1017         int ret;
1018         LocationPosition *last_pos = NULL;
1019         LocationAccuracy *last_acc = NULL;
1020         ret = location_get_last_position(handle->object, &last_pos, &last_acc);
1021         if (ret != LOCATION_ERROR_NONE)
1022                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1023
1024         *level = last_acc->level;
1025         *horizontal = last_acc->horizontal_accuracy;
1026         *vertical = last_acc->vertical_accuracy;
1027         location_position_free(last_pos);
1028         location_accuracy_free(last_acc);
1029         return LOCATIONS_ERROR_NONE;
1030 }
1031
1032 EXPORT_API int location_manager_get_accessibility_state(location_accessibility_state_e *state)
1033 {
1034         dlog_print(DLOG_WARN, LOG_TAG, "DEPRECATION WARNING: location_manager_get_accessibility_state() is deprecated and will be removed from next release.");
1035         LOCATIONS_LOGD("location_manager_get_accessibility_state");
1036         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1037         LOCATIONS_NULL_ARG_CHECK(state);
1038
1039         int ret = LOCATION_ERROR_NONE;
1040         LocationAccessState auth = LOCATION_ACCESS_NONE;
1041         ret = location_get_accessibility_state(&auth);
1042         if (ret != LOCATION_ERROR_NONE) {
1043                 *state = LOCATIONS_ACCESS_STATE_NONE;   //LCOV_EXCL_LINE
1044                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1045         }
1046
1047         switch (auth) {
1048         //LCOV_EXCL_START
1049         case LOCATION_ACCESS_DENIED:
1050                 *state = LOCATIONS_ACCESS_STATE_DENIED;
1051                 break;
1052         case LOCATION_ACCESS_ALLOWED:
1053                 *state = LOCATIONS_ACCESS_STATE_ALLOWED;
1054                 break;
1055         case LOCATION_ACCESS_NONE:
1056         default:
1057                 *state = LOCATIONS_ACCESS_STATE_NONE;
1058                 break;
1059         //LCOV_EXCL_STOP
1060         }
1061
1062         return LOCATIONS_ERROR_NONE;
1063 }
1064
1065 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)
1066 {
1067         LOCATIONS_LOGD("location_manager_set_distance_updated_cb");
1068         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1069         LOCATIONS_CHECK_CONDITION(interval >= 1 && interval <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1070         LOCATIONS_CHECK_CONDITION(distance > 0 && distance <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1071         LOCATIONS_NULL_ARG_CHECK(manager);
1072         location_manager_s *handle = (location_manager_s *) manager;
1073         g_object_set(handle->object, "min-interval", interval, NULL);
1074         g_object_set(handle->object, "min-distance", distance, NULL);
1075         return __set_callback(_LOCATIONS_EVENT_TYPE_DISTANCE, manager, callback, user_data);
1076 }
1077
1078 EXPORT_API int location_manager_unset_distance_based_location_changed_cb(location_manager_h manager)
1079 {
1080         LOCATIONS_LOGD("location_manager_unset_distance_updated_cb");
1081         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1082         LOCATIONS_NULL_ARG_CHECK(manager);
1083         return __unset_callback(_LOCATIONS_EVENT_TYPE_DISTANCE, manager);
1084 }
1085
1086 EXPORT_API int location_manager_set_location_changed_cb(location_manager_h manager, location_changed_cb callback, int interval, void *user_data)
1087 {
1088         LOCATIONS_LOGD("location_manager_set_location_updated_cb");
1089         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1090         LOCATIONS_CHECK_CONDITION(interval >= 1 && interval <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1091         LOCATIONS_NULL_ARG_CHECK(manager);
1092         location_manager_s *handle = (location_manager_s *) manager;
1093         g_object_set(handle->object, "loc-interval", interval, NULL);
1094         return __set_callback(_LOCATIONS_EVENT_TYPE_POS_VEL, manager, callback, user_data);
1095 }
1096
1097 EXPORT_API int location_manager_unset_location_changed_cb(location_manager_h manager)
1098 {
1099         LOCATIONS_LOGD("location_manager_unset_position_updated_cb");
1100         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1101         return __unset_callback(_LOCATIONS_EVENT_TYPE_POS_VEL, manager);
1102 }
1103
1104 EXPORT_API int location_manager_set_position_updated_cb(location_manager_h manager, location_position_updated_cb callback, int interval, void *user_data)
1105 {
1106         LOCATIONS_LOGD("location_manager_set_position_updated_cb");
1107         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1108         LOCATIONS_CHECK_CONDITION(interval >= 1 && interval <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1109         LOCATIONS_NULL_ARG_CHECK(manager);
1110         location_manager_s *handle = (location_manager_s *) manager;
1111         g_object_set(handle->object, "pos-interval", interval, NULL);
1112         return __set_callback(_LOCATIONS_EVENT_TYPE_POSITION, manager, callback, user_data);
1113 }
1114
1115 EXPORT_API int location_manager_unset_position_updated_cb(location_manager_h manager)
1116 {
1117         LOCATIONS_LOGD("location_manager_unset_position_updated_cb");
1118         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1119         return __unset_callback(_LOCATIONS_EVENT_TYPE_POSITION, manager);
1120 }
1121
1122 EXPORT_API int location_manager_set_velocity_updated_cb(location_manager_h manager, location_velocity_updated_cb callback, int interval, void *user_data)
1123 {
1124         LOCATIONS_LOGD("location_manager_set_velocity_updated_cb");
1125         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1126         LOCATIONS_CHECK_CONDITION(interval >= 1 && interval <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1127         LOCATIONS_NULL_ARG_CHECK(manager);
1128         location_manager_s *handle = (location_manager_s *) manager;
1129         g_object_set(handle->object, "vel-interval", interval, NULL);
1130         return __set_callback(_LOCATIONS_EVENT_TYPE_VELOCITY, manager, callback, user_data);
1131 }
1132
1133 EXPORT_API int location_manager_unset_velocity_updated_cb(location_manager_h manager)
1134 {
1135         LOCATIONS_LOGD("location_manager_unset_velocity_updated_cb");
1136         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1137         return __unset_callback(_LOCATIONS_EVENT_TYPE_VELOCITY, manager);
1138 }
1139
1140 EXPORT_API int location_manager_set_service_state_changed_cb(location_manager_h manager, location_service_state_changed_cb callback,
1141                                                                                                                          void *user_data)
1142 {
1143         LOCATIONS_LOGD("location_manager_set_service_state_changed_cb");
1144         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1145         return __set_callback(_LOCATIONS_EVENT_TYPE_SERVICE_STATE, manager, callback, user_data);
1146 }
1147
1148 EXPORT_API int location_manager_unset_service_state_changed_cb(location_manager_h manager)
1149 {
1150         LOCATIONS_LOGD("location_manager_unset_service_state_changed_cb");
1151         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1152         return __unset_callback(_LOCATIONS_EVENT_TYPE_SERVICE_STATE, manager);
1153 }
1154
1155 EXPORT_API int location_manager_set_zone_changed_cb(location_manager_h manager, location_zone_changed_cb callback, void *user_data)
1156 {
1157         LOCATIONS_LOGD("location_manager_set_zone_changed_cb");
1158         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1159         return __set_callback(_LOCATIONS_EVENT_TYPE_BOUNDARY, manager, callback, user_data);
1160 }
1161
1162 EXPORT_API int location_manager_unset_zone_changed_cb(location_manager_h manager)
1163 {
1164         LOCATIONS_LOGD("location_manager_unset_zone_changed_cb");
1165         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1166         return __unset_callback(_LOCATIONS_EVENT_TYPE_BOUNDARY, manager);
1167 }
1168
1169 EXPORT_API int location_manager_set_setting_changed_cb(location_method_e method, location_setting_changed_cb callback, void *user_data)
1170 {
1171         LOCATIONS_LOGD("location_manager_set_setting_changed_cb");
1172         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1173         LOCATIONS_NULL_ARG_CHECK(callback);
1174
1175         LocationMethod _method = __convert_LocationMethod(method);
1176         int ret = LOCATION_ERROR_NONE;
1177
1178         if (_method == LOCATION_METHOD_NONE) {
1179                 return __convert_error_code(LOCATION_ERROR_PARAMETER);
1180         } else if (_method == LOCATION_METHOD_PASSIVE || _method == LOCATION_METHOD_FUSED) {
1181                 LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD");     //LCOV_EXCL_LINE
1182                 return LOCATIONS_ERROR_INCORRECT_METHOD;        //LCOV_EXCL_LINE
1183         }
1184
1185         g_location_setting[_method].callback = callback;
1186         g_location_setting[_method].user_data = user_data;
1187
1188         ret = location_add_setting_notify(_method, __setting_changed_cb, &g_location_setting);
1189         if (ret != LOCATION_ERROR_NONE)
1190                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1191
1192         return LOCATIONS_ERROR_NONE;
1193 }
1194
1195 EXPORT_API int location_manager_unset_setting_changed_cb(location_method_e method)
1196 {
1197         LOCATIONS_LOGD("location_manager_unset_setting_changed_cb");
1198         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1199         LocationMethod _method = __convert_LocationMethod(method);
1200         int ret = LOCATION_ERROR_NONE;
1201
1202         if (_method == LOCATION_METHOD_NONE) {
1203                 return __convert_error_code(LOCATION_ERROR_PARAMETER);
1204         } else if (_method == LOCATION_METHOD_PASSIVE || _method == LOCATION_METHOD_FUSED) {
1205                 LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD");     //LCOV_EXCL_LINE
1206                 return LOCATIONS_ERROR_INCORRECT_METHOD;        //LCOV_EXCL_LINE
1207         }
1208
1209         ret = location_ignore_setting_notify(_method, __setting_changed_cb);
1210         if (ret != LOCATION_ERROR_NONE) {
1211                 LOCATIONS_LOGE("Fail to ignore notify. Error[%d]", ret);        //LCOV_EXCL_LINE
1212                 ret = __convert_error_code(ret);        //LCOV_EXCL_LINE
1213         }
1214
1215         g_location_setting[method].callback = NULL;
1216         g_location_setting[method].user_data = NULL;
1217
1218         return LOCATIONS_ERROR_NONE;
1219 }
1220
1221 EXPORT_API int location_manager_get_distance(double start_latitude, double start_longitude, double end_latitude, double end_longitude, double *distance)
1222 {
1223         LOCATIONS_LOGD("location_manager_get_distance");
1224         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1225         LOCATIONS_NULL_ARG_CHECK(distance);
1226         LOCATIONS_CHECK_CONDITION(start_latitude >= -90 && start_latitude <= 90, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1227         LOCATIONS_CHECK_CONDITION(start_longitude >= -180 && start_longitude <= 180, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1228         LOCATIONS_CHECK_CONDITION(end_latitude >= -90 && end_latitude <= 90, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1229         LOCATIONS_CHECK_CONDITION(end_longitude >= -180 && end_longitude <= 180, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1230
1231         int ret = LOCATION_ERROR_NONE;
1232         ulong u_distance;
1233
1234         LocationPosition *start = location_position_new(0, start_latitude, start_longitude, 0, LOCATION_STATUS_2D_FIX);
1235         LocationPosition *end = location_position_new(0, end_latitude, end_longitude, 0, LOCATION_STATUS_2D_FIX);
1236
1237         ret = location_get_distance(start, end, &u_distance);
1238         location_position_free(start);
1239         location_position_free(end);
1240         if (ret != LOCATION_ERROR_NONE)
1241                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1242
1243         *distance = (double)u_distance;
1244
1245         return LOCATIONS_ERROR_NONE;
1246 }
1247
1248 /*/////////////////////////////////////// */
1249 /* GPS Status & Satellites */
1250 /*////////////////////////////////////// */
1251
1252 EXPORT_API int gps_status_get_nmea(location_manager_h manager, char **nmea)
1253 {
1254         LOCATIONS_LOGD("gps_status_get_nmea");
1255         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1256         LOCATIONS_NULL_ARG_CHECK(manager);
1257         LOCATIONS_NULL_ARG_CHECK(nmea);
1258         location_manager_s *handle = (location_manager_s *) manager;
1259         char *nmea_data;
1260
1261         int ret = location_get_nmea(handle->object, &nmea_data);
1262         if (ret != LOCATION_ERROR_NONE || nmea == NULL) {
1263                 //LCOV_EXCL_START
1264                 if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1265                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1266                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1267                 }
1268
1269                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : NMEA is NULL ", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE);
1270                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1271                 //LCOV_EXCL_STOP
1272         }
1273
1274         *nmea = g_strdup(nmea_data);
1275         g_free(nmea_data);
1276
1277         return LOCATIONS_ERROR_NONE;
1278 }
1279
1280 EXPORT_API int gps_status_get_satellite(location_manager_h manager, int *num_of_active, int *num_of_inview, time_t *timestamp)
1281 {
1282         LOCATIONS_LOGD("gps_status_get_satellite");
1283         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1284         LOCATIONS_NULL_ARG_CHECK(manager);
1285         LOCATIONS_NULL_ARG_CHECK(num_of_active);
1286         LOCATIONS_NULL_ARG_CHECK(num_of_inview);
1287         LOCATIONS_NULL_ARG_CHECK(timestamp);
1288         location_manager_s *handle = (location_manager_s *) manager;
1289         LocationSatellite *sat = NULL;
1290         int ret = location_get_satellite(handle->object, &sat);
1291         if (ret != LOCATION_ERROR_NONE || sat == NULL) {
1292                 //LCOV_EXCL_START
1293                 if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1294                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1295                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1296                 }
1297
1298                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : satellite is NULL ", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE);
1299                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1300                 //LCOV_EXCL_STOP
1301         }
1302
1303         *num_of_active = sat->num_of_sat_used;
1304         *num_of_inview = sat->num_of_sat_inview;
1305         *timestamp = sat->timestamp;
1306         location_satellite_free(sat);
1307         sat = NULL;
1308         return LOCATIONS_ERROR_NONE;
1309 }
1310
1311 EXPORT_API int gps_status_set_satellite_updated_cb(location_manager_h manager, gps_status_satellite_updated_cb callback, int interval, void *user_data)
1312 {
1313         LOCATIONS_LOGD("gps_status_set_satellite_updated_cb");
1314         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1315         LOCATIONS_CHECK_CONDITION(interval >= 1 && interval <= 120, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1316         LOCATIONS_NULL_ARG_CHECK(manager);
1317         LOCATIONS_NULL_ARG_CHECK(callback);
1318
1319         location_manager_s *handle = (location_manager_s *) manager;
1320         int ret = location_set_option(handle->object, "USE_SV");
1321         if (ret != LOCATION_ERROR_NONE) {
1322                 //LCOV_EXCL_START
1323                 if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1324                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1325                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1326                 }
1327                 return ret;
1328                 //LCOV_EXCL_STOP
1329         }
1330         g_object_set(handle->object, "sat-interval", interval, NULL);
1331         return __set_callback(_LOCATIONS_EVENT_TYPE_SATELLITE, manager, callback, user_data);
1332 }
1333
1334 EXPORT_API int gps_status_unset_satellite_updated_cb(location_manager_h manager)
1335 {
1336         LOCATIONS_LOGD("gps_status_unset_satellite_updated_cb");
1337         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1338         return __unset_callback(_LOCATIONS_EVENT_TYPE_SATELLITE, manager);
1339 }
1340
1341 EXPORT_API int gps_status_foreach_satellites_in_view(location_manager_h manager, gps_status_get_satellites_cb callback, void *user_data)
1342 {
1343         LOCATIONS_LOGD("gps_status_foreach_satellites_in_view");
1344         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1345         LOCATIONS_NULL_ARG_CHECK(manager);
1346         LOCATIONS_NULL_ARG_CHECK(callback);
1347
1348         location_manager_s *handle = (location_manager_s *) manager;
1349         LocationSatellite *sat = NULL;
1350         int ret = location_get_satellite(handle->object, &sat);
1351         //LCOV_EXCL_START
1352         if (ret != LOCATION_ERROR_NONE || sat == NULL) {
1353                 if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1354                         LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD(0x%08x) : method - %d", LOCATIONS_ERROR_INCORRECT_METHOD, handle->method);
1355                         return LOCATIONS_ERROR_INCORRECT_METHOD;
1356                 } else if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1357                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1358                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1359                 }
1360
1361                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : satellite is NULL ", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE);
1362                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1363         }
1364         //LCOV_EXCL_STOP
1365
1366         int i;
1367         for (i = 0; i < sat->num_of_sat_inview; i++) {
1368                 guint prn;
1369                 gboolean used;
1370                 guint elevation;
1371                 guint azimuth;
1372                 gint snr;
1373                 location_satellite_get_satellite_details(sat, i, &prn, &used, &elevation, &azimuth, &snr);
1374                 if (callback(azimuth, elevation, prn, snr, used, user_data) != TRUE)
1375                         break;
1376         }
1377         location_satellite_free(sat);
1378         sat = NULL;
1379         return LOCATIONS_ERROR_NONE;
1380 }
1381
1382 EXPORT_API int gps_status_get_last_satellite(location_manager_h manager, int *num_of_active, int *num_of_inview, time_t *timestamp)
1383 {
1384         LOCATIONS_LOGD("gps_status_get_last_satellite");
1385         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1386         LOCATIONS_NULL_ARG_CHECK(manager);
1387         LOCATIONS_NULL_ARG_CHECK(num_of_active);
1388         LOCATIONS_NULL_ARG_CHECK(num_of_inview);
1389         LOCATIONS_NULL_ARG_CHECK(timestamp);
1390
1391         location_manager_s *handle = (location_manager_s *) manager;
1392         int ret = LOCATION_ERROR_NONE;
1393         LocationSatellite *last_sat = NULL;
1394         ret = location_get_last_satellite(handle->object, &last_sat);
1395         if (ret != LOCATION_ERROR_NONE || last_sat == NULL) {
1396                 //LCOV_EXCL_START
1397                 if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1398                         LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD(0x%08x) : method - %d", LOCATIONS_ERROR_INCORRECT_METHOD, handle->method);
1399                         return LOCATIONS_ERROR_INCORRECT_METHOD;
1400                 } else if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1401                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1402                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1403                 }
1404
1405                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : satellite is NULL ", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE);
1406                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1407                 //LCOV_EXCL_STOP
1408         }
1409
1410         *num_of_active = last_sat->num_of_sat_used;
1411         *num_of_inview = last_sat->num_of_sat_inview;
1412         *timestamp = last_sat->timestamp;
1413         location_satellite_free(last_sat);
1414         return LOCATIONS_ERROR_NONE;
1415 }
1416
1417 EXPORT_API int gps_status_foreach_last_satellites_in_view(location_manager_h manager, gps_status_get_satellites_cb callback, void *user_data)
1418 {
1419         LOCATIONS_LOGD("gps_status_foreach_last_satellites_in_view");
1420         LOCATIONS_NOT_SUPPORTED_CHECK(__is_gps_satellite_supported());
1421         LOCATIONS_NULL_ARG_CHECK(manager);
1422         LOCATIONS_NULL_ARG_CHECK(callback);
1423         location_manager_s *handle = (location_manager_s *) manager;
1424         int ret = LOCATION_ERROR_NONE;
1425         LocationSatellite *last_sat = NULL;
1426
1427         ret = location_get_last_satellite(handle->object, &last_sat);
1428         if (ret != LOCATION_ERROR_NONE || last_sat == NULL) {
1429                 //LCOV_EXCL_START
1430                 if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1431                         LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD(0x%08x) : method - %d", LOCATIONS_ERROR_INCORRECT_METHOD, handle->method);
1432                         return LOCATIONS_ERROR_INCORRECT_METHOD;
1433                 }
1434
1435                 LOCATIONS_LOGE("LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE(0x%08x) : satellite is NULL ", LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE);
1436                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1437                 //LCOV_EXCL_STOP
1438         }
1439
1440         int i;
1441         for (i = 0; i < last_sat->num_of_sat_inview; i++) {
1442                 guint prn;
1443                 gboolean used;
1444                 guint elevation;
1445                 guint azimuth;
1446                 gint snr;
1447                 location_satellite_get_satellite_details(last_sat, i, &prn, &used, &elevation, &azimuth, &snr);
1448                 if (callback(azimuth, elevation, prn, snr, used, user_data) != TRUE)
1449                         break;
1450         }
1451         location_satellite_free(last_sat);
1452         return LOCATIONS_ERROR_NONE;
1453 }
1454
1455
1456 /**
1457  * Tizen 3.0
1458  */
1459 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)
1460 {
1461         LOCATIONS_LOGD("location_manager_set_location_batch_cb");
1462         LOCATIONS_NOT_SUPPORTED_CHECK(__is_batch_supported());
1463
1464 //LCOV_EXCL_START
1465         LOCATIONS_CHECK_CONDITION(batch_interval >= 1 && batch_interval <= 255, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1466         LOCATIONS_CHECK_CONDITION(batch_period >= 1 && batch_period <= 60000, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1467         LOCATIONS_CHECK_CONDITION(batch_interval <= batch_period, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1468         LOCATIONS_NULL_ARG_CHECK(manager);
1469         LOCATIONS_NULL_ARG_CHECK(callback);
1470         location_manager_s *handle = (location_manager_s *) manager;
1471         g_object_set(handle->object, "batch-period", batch_period, NULL);
1472         g_object_set(handle->object, "batch-interval", batch_interval, NULL);
1473         return __set_callback(_LOCATIONS_EVENT_TYPE_BATCH, manager, callback, user_data);
1474 //LCOV_EXCL_STOP
1475 }
1476
1477 EXPORT_API int location_manager_unset_location_batch_cb(location_manager_h manager)
1478 {
1479         LOCATIONS_LOGD("location_manager_unset_location_batch_cb");
1480         LOCATIONS_NOT_SUPPORTED_CHECK(__is_batch_supported());
1481         return __unset_callback(_LOCATIONS_EVENT_TYPE_BATCH, manager);  //LCOV_EXCL_LINE
1482 }
1483
1484 EXPORT_API int location_manager_start_batch(location_manager_h manager)
1485 {
1486         LOCATIONS_LOGD("location_manager_start_batch");
1487         LOCATIONS_NOT_SUPPORTED_CHECK(__is_batch_supported());
1488
1489 //LCOV_EXCL_START
1490         LOCATIONS_NULL_ARG_CHECK(manager);
1491         location_manager_s *handle = (location_manager_s *) manager;
1492
1493         if (LOCATIONS_METHOD_GPS == handle->method) {
1494                 if (!handle->sig_id[_LOCATION_SIGNAL_BATCH_UPDATED])
1495                         handle->sig_id[_LOCATION_SIGNAL_BATCH_UPDATED] = g_signal_connect(handle->object, "batch-updated", G_CALLBACK(__cb_batch_updated), handle);
1496         } else {
1497                 LOCATIONS_LOGE("method is not GPS [LOCATIONS_ERROR_INCORRECT_METHOD]");
1498                 return LOCATIONS_ERROR_INCORRECT_METHOD;
1499         }
1500
1501         if (handle->user_cb[_LOCATIONS_EVENT_TYPE_BATCH] != NULL)
1502                 LOCATIONS_LOGD("batch status set : Start");
1503
1504         int ret = location_start_batch(handle->object);
1505         if (ret != LOCATION_ERROR_NONE)
1506                 return __convert_error_code(ret);
1507
1508         return LOCATIONS_ERROR_NONE;
1509 //LCOV_EXCL_STOP
1510 }
1511
1512 EXPORT_API int location_manager_stop_batch(location_manager_h manager)
1513 {
1514         LOCATIONS_LOGD("location_manager_stop_batch");
1515         LOCATIONS_NOT_SUPPORTED_CHECK(__is_batch_supported());
1516
1517 //LCOV_EXCL_START
1518         LOCATIONS_NULL_ARG_CHECK(manager);
1519         location_manager_s *handle = (location_manager_s *) manager;
1520
1521         if (LOCATIONS_METHOD_GPS == handle->method) {
1522                 if (handle->sig_id[_LOCATION_SIGNAL_BATCH_UPDATED]) {
1523                         g_signal_handler_disconnect(handle->object, handle->sig_id[_LOCATION_SIGNAL_BATCH_UPDATED]);
1524                         handle->sig_id[_LOCATION_SIGNAL_BATCH_UPDATED] = 0;
1525                 }
1526         }
1527
1528         int ret = location_stop_batch(handle->object);
1529         if (ret != LOCATION_ERROR_NONE)
1530                 return __convert_error_code(ret);
1531
1532         return LOCATIONS_ERROR_NONE;
1533 //LCOV_EXCL_STOP
1534 }
1535
1536 EXPORT_API int location_manager_foreach_location_batch(location_manager_h manager, location_batch_get_location_cb callback, void *user_data)
1537 {
1538         LOCATIONS_LOGD("location_manager_foreach_location_batch");
1539         LOCATIONS_NOT_SUPPORTED_CHECK(__is_batch_supported());
1540 //LCOV_EXCL_START
1541         LOCATIONS_NULL_ARG_CHECK(manager);
1542         LOCATIONS_NULL_ARG_CHECK(callback);
1543         location_manager_s *handle = (location_manager_s *) manager;
1544         LocationBatch *batch = NULL;
1545
1546         int ret = location_get_batch(handle->object, &batch);
1547         if (ret != LOCATION_ERROR_NONE || batch == NULL) {
1548                 if (ret == LOCATION_ERROR_NOT_ALLOWED) {
1549                         LOCATIONS_LOGE("LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED");
1550                         return LOCATIONS_ERROR_ACCESSIBILITY_NOT_ALLOWED;
1551                 }
1552
1553                 LOCATIONS_LOGE("Batch is NULL [LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE]");
1554                 return LOCATIONS_ERROR_SERVICE_NOT_AVAILABLE;
1555         }
1556
1557         int i;
1558         for (i = 0; i < batch->num_of_location; i++) {
1559                 gdouble latitude;
1560                 gdouble longitude;
1561                 gdouble altitude;
1562                 gdouble speed;
1563                 gdouble direction;
1564                 gdouble h_accuracy;
1565                 gdouble v_accuracy;
1566                 guint timestamp;
1567
1568                 location_get_batch_details(batch, i, &latitude, &longitude, &altitude, &speed, &direction, &h_accuracy, &v_accuracy, &timestamp);
1569                 if (callback(latitude, longitude, altitude, speed, direction, h_accuracy, v_accuracy, timestamp, user_data) != TRUE)
1570                         break;
1571         }
1572         location_batch_free(batch);
1573         batch = NULL;
1574         return LOCATIONS_ERROR_NONE;
1575 //LCOV_EXCL_STOP
1576 }
1577
1578 EXPORT_API int location_manager_is_enabled_mock_location(bool *enabled)
1579 {
1580         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1581         LOCATIONS_NULL_ARG_CHECK(enabled);
1582         int is_enabled_val = -1;
1583         int ret = location_is_enabled_method(INTERNAL_METHOD_MOCK, &is_enabled_val);
1584         if (ret != LOCATION_ERROR_NONE)
1585                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1586
1587         if (is_enabled_val == -1)
1588                 return TIZEN_ERROR_PERMISSION_DENIED;   //LCOV_EXCL_LINE
1589
1590         *enabled = (is_enabled_val == 0) ? FALSE : TRUE;
1591         return LOCATIONS_ERROR_NONE;
1592 }
1593
1594 EXPORT_API int location_manager_enable_mock_location(const bool enable)
1595 {
1596         LOCATIONS_LOGD("enable: %d", enable);
1597         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1598         int ret = LOCATION_ERROR_NONE;
1599
1600         ret = location_enable_mock(enable);
1601         return __convert_error_code(ret);
1602 }
1603
1604 EXPORT_API int location_manager_set_mock_location(location_manager_h manager, const double latitude, const double longitude, const double altitude,
1605         const double speed, const double direction, const double accuracy)
1606 {
1607         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1608         LOCATIONS_NULL_ARG_CHECK(manager);
1609
1610         LOCATIONS_CHECK_CONDITION(latitude >= -90 && latitude <= 90, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1611         LOCATIONS_CHECK_CONDITION(longitude >= -180 && longitude <= 180, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1612         LOCATIONS_CHECK_CONDITION(direction >= 0 && direction <= 360, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1613
1614         location_manager_s *handle = (location_manager_s *) manager;
1615         int ret = LOCATION_ERROR_NONE;
1616         int enabled;
1617         LocationPosition *pos = NULL;
1618         LocationVelocity *vel = NULL;
1619         LocationAccuracy *acc = NULL;
1620
1621         ret = location_is_enabled_method(INTERNAL_METHOD_MOCK, &enabled);
1622         LOCATIONS_LOGD("enable: %d, ret: %d", enabled, ret);
1623         if (ret == LOCATIONS_ERROR_NONE) {
1624                 if (enabled == 0)
1625                         return __convert_error_code(LOCATION_ERROR_SETTING_OFF);
1626         } else {
1627                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1628         }
1629
1630         pos = location_position_new(0, latitude, longitude, 0, LOCATION_STATUS_3D_FIX);
1631         if (!pos) {
1632                 LOCATIONS_LOGE("Failed to create position");    //LCOV_EXCL_LINE
1633                 return LOCATIONS_ERROR_OUT_OF_MEMORY;   //LCOV_EXCL_LINE
1634         }
1635         vel = location_velocity_new(0, speed, direction, 0);
1636         if (!vel) {
1637                 //LCOV_EXCL_START
1638                 LOCATIONS_LOGE("Failed to create velocity");
1639                 location_position_free(pos);
1640                 return LOCATIONS_ERROR_OUT_OF_MEMORY;
1641                 //LCOV_EXCL_STOP
1642         }
1643
1644         acc = location_accuracy_new(LOCATION_ACCURACY_LEVEL_DETAILED, accuracy, -1);
1645         if (!acc) {
1646                 //LCOV_EXCL_START
1647                 LOCATIONS_LOGE("Failed to create accuracy");
1648                 location_position_free(pos);
1649                 location_velocity_free(vel);
1650                 return LOCATIONS_ERROR_OUT_OF_MEMORY;
1651                 //LCOV_EXCL_STOP
1652         }
1653
1654         ret = location_set_mock_location(handle->object, pos, vel, acc);
1655         if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1656                 LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD");
1657                 return LOCATIONS_ERROR_INCORRECT_METHOD;
1658         }
1659
1660         location_position_free(pos);
1661         location_velocity_free(vel);
1662         location_accuracy_free(acc);
1663
1664         return __convert_error_code(ret);
1665 }
1666
1667 EXPORT_API int location_manager_clear_mock_location(location_manager_h manager)
1668 {
1669         LOCATIONS_NOT_SUPPORTED_CHECK(__is_location_supported());
1670         LOCATIONS_NULL_ARG_CHECK(manager);
1671
1672         location_manager_s *handle = (location_manager_s *) manager;
1673         int enabled;
1674
1675         int ret = location_is_enabled_method(INTERNAL_METHOD_MOCK, &enabled);
1676         LOCATIONS_LOGD("enable: %d, ret: %d", enabled, ret);
1677         if (ret == LOCATIONS_ERROR_NONE) {
1678                 if (enabled == 0)
1679                         return __convert_error_code(LOCATION_ERROR_SETTING_OFF);
1680         } else {
1681                 return __convert_error_code(ret);       //LCOV_EXCL_LINE
1682         }
1683
1684         ret = location_clear_mock_location(handle->object);
1685         if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1686                 LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD");
1687                 return LOCATIONS_ERROR_INCORRECT_METHOD;
1688         }
1689
1690         return __convert_error_code(ret);
1691 }
1692
1693 EXPORT_API int location_manager_set_fused_mode(location_manager_h manager, location_fused_mode_e mode)
1694 {
1695         LOCATIONS_NOT_SUPPORTED_CHECK(__is_fused_supported());
1696         LOCATIONS_NULL_ARG_CHECK(manager);
1697         LOCATIONS_CHECK_CONDITION(mode >= LOCATIONS_FUSED_HIGH_ACCURACY && mode <= LOCATIONS_FUSED_BALANCED_POWER, LOCATIONS_ERROR_INVALID_PARAMETER, "LOCATIONS_ERROR_INVALID_PARAMETER");
1698
1699         location_manager_s *handle = (location_manager_s *) manager;
1700         int ret = LOCATION_ERROR_NONE;
1701
1702         ret = location_set_fused_mode(handle->object, mode);
1703         if (ret == LOCATION_ERROR_NOT_SUPPORTED) {
1704                 LOCATIONS_LOGE("LOCATIONS_ERROR_INCORRECT_METHOD");
1705                 return LOCATIONS_ERROR_INCORRECT_METHOD;
1706         }
1707
1708         return __convert_error_code(ret);
1709 }