tizen 2.3.1 release
[framework/api/runtime-info.git] / src / runtime_info_location.c
1 /*
2  * Copyright (c) 2011 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
21 #include <vconf.h>
22 #include <dlog.h>
23
24 #include <runtime_info.h>
25 #include <runtime_info_private.h>
26
27 #ifdef LOG_TAG
28 #undef LOG_TAG
29 #endif
30
31 #define LOG_TAG "CAPI_SYSTEM_RUNTIME_INFO"
32
33 static const char *VCONF_LOCATION_SERVICE_ENABLED = VCONFKEY_LOCATION_ENABLED;
34 static const char *VCONF_LOCATION_AGPS_ENABLED = VCONFKEY_LOCATION_AGPS_ENABLED;
35 static const char *VCONF_LOCATION_NETWORK_ENABLED = VCONFKEY_LOCATION_NETWORK_ENABLED;
36
37 int runtime_info_location_service_get_value(runtime_info_value_h value)
38 {
39         int vconf_value;
40         int ret;
41
42         ret = runtime_info_vconf_get_value_int(VCONF_LOCATION_SERVICE_ENABLED, &vconf_value);
43         if (ret == RUNTIME_INFO_ERROR_NONE)
44                 value->b = vconf_value;
45
46         return ret;
47 }
48
49 int runtime_info_location_service_set_event_cb()
50 {
51         return runtime_info_vconf_set_event_cb(VCONF_LOCATION_SERVICE_ENABLED, RUNTIME_INFO_KEY_LOCATION_SERVICE_ENABLED, 0);
52 }
53
54 void runtime_info_location_service_unset_event_cb()
55 {
56         runtime_info_vconf_unset_event_cb(VCONF_LOCATION_SERVICE_ENABLED, 0);
57 }
58
59 int runtime_info_location_agps_get_value(runtime_info_value_h value)
60 {
61         int vconf_value;
62         int ret;
63
64         ret = runtime_info_vconf_get_value_int(VCONF_LOCATION_AGPS_ENABLED, &vconf_value);
65         if (ret == RUNTIME_INFO_ERROR_NONE)
66                 value->b = vconf_value;
67
68         return ret;
69 }
70
71 int runtime_info_location_agps_set_event_cb()
72 {
73         return runtime_info_vconf_set_event_cb(VCONF_LOCATION_AGPS_ENABLED, RUNTIME_INFO_KEY_LOCATION_ADVANCED_GPS_ENABLED, 0);
74 }
75
76 void runtime_info_location_agps_unset_event_cb()
77 {
78         runtime_info_vconf_unset_event_cb(VCONF_LOCATION_AGPS_ENABLED, 0);
79 }
80
81 int runtime_info_location_network_get_value(runtime_info_value_h value)
82 {
83         int vconf_value;
84         int ret;
85
86         ret = runtime_info_vconf_get_value_int(VCONF_LOCATION_NETWORK_ENABLED, &vconf_value);
87         if (ret == RUNTIME_INFO_ERROR_NONE)
88                 value->b = vconf_value;
89
90         return ret;
91 }
92
93 int runtime_info_location_network_set_event_cb()
94 {
95         return runtime_info_vconf_set_event_cb(VCONF_LOCATION_NETWORK_ENABLED, RUNTIME_INFO_KEY_LOCATION_NETWORK_POSITION_ENABLED, 0);
96 }
97
98 void runtime_info_location_network_unset_event_cb()
99 {
100         runtime_info_vconf_unset_event_cb(VCONF_LOCATION_NETWORK_ENABLED, 0);
101 }