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