tizen 2.3.1 release
[framework/api/runtime-info.git] / src / runtime_info_connectivity.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_WIFI_STATUS = VCONFKEY_WIFI_STATE;
34 static const char *VCONF_BT_ENABLED = VCONFKEY_BT_STATUS;
35 static const char *VCONF_WIFI_HOTSPOT_ENABLED = VCONFKEY_MOBILE_HOTSPOT_MODE;
36 static const char *VCONF_BT_HOTSPOT_ENABLED = VCONFKEY_MOBILE_HOTSPOT_MODE;
37 static const char *VCONF_USB_HOTSPOT_ENABLED = VCONFKEY_MOBILE_HOTSPOT_MODE;
38 static const char *VCONF_PACKET_DATA_ENABLED = VCONFKEY_3G_ENABLE;
39 static const char *VCONF_DATA_ROAMING_ENABLED = VCONFKEY_SETAPPL_STATE_DATA_ROAMING_BOOL;
40 static const char *VCONF_GPS_STATUS = VCONFKEY_LOCATION_GPS_STATE;
41
42 int runtime_info_wifi_status_get_value(runtime_info_value_h value)
43 {
44         int vconf_value;
45         int ret;
46
47         ret = runtime_info_vconf_get_value_int(VCONF_WIFI_STATUS, &vconf_value);
48         if (ret != RUNTIME_INFO_ERROR_NONE)
49                 return ret;
50
51         switch (vconf_value) {
52         case VCONFKEY_WIFI_OFF:
53                 value->i = RUNTIME_INFO_WIFI_STATUS_DISABLED;
54                 break;
55
56         case VCONFKEY_WIFI_UNCONNECTED:
57                 value->i = RUNTIME_INFO_WIFI_STATUS_UNCONNECTED;
58                 break;
59
60         case VCONFKEY_WIFI_CONNECTED:
61         case VCONFKEY_WIFI_TRANSFER:
62                 value->i = RUNTIME_INFO_WIFI_STATUS_CONNECTED;
63                 break;
64
65         default:
66                 return RUNTIME_INFO_ERROR_IO_ERROR;
67         }
68
69         return ret;
70 }
71
72 int runtime_info_wifi_status_set_event_cb()
73 {
74         return runtime_info_vconf_set_event_cb(VCONF_WIFI_STATUS, RUNTIME_INFO_KEY_WIFI_STATUS, 0);
75 }
76
77 void runtime_info_wifi_status_unset_event_cb()
78 {
79         runtime_info_vconf_unset_event_cb(VCONF_WIFI_STATUS, 0);
80 }
81
82 int runtime_info_bt_enabled_get_value(runtime_info_value_h value)
83 {
84         int vconf_value;
85         int ret;
86
87         ret = runtime_info_vconf_get_value_int(VCONF_BT_ENABLED, &vconf_value);
88         if (ret != RUNTIME_INFO_ERROR_NONE)
89                 return ret;
90
91         switch (vconf_value) {
92         case VCONFKEY_BT_STATUS_OFF:
93                 value->b = false;
94                 break;
95
96         case VCONFKEY_BT_STATUS_ON:
97         case VCONFKEY_BT_STATUS_BT_VISIBLE:
98         case VCONFKEY_BT_STATUS_TRANSFER:
99                 value->b = true;
100                 break;
101
102         default:
103                 return RUNTIME_INFO_ERROR_IO_ERROR;
104         }
105
106         return ret;
107 }
108
109 int runtime_info_bt_enabled_set_event_cb()
110 {
111         return runtime_info_vconf_set_event_cb(VCONF_BT_ENABLED, RUNTIME_INFO_KEY_BLUETOOTH_ENABLED, 0);
112 }
113
114 void runtime_info_bt_enabled_unset_event_cb()
115 {
116         runtime_info_vconf_unset_event_cb(VCONF_BT_ENABLED, 0);
117 }
118
119
120 int runtime_info_wifi_hotspot_get_value(runtime_info_value_h value)
121 {
122         int vconf_value;
123         int ret;
124
125         ret = runtime_info_vconf_get_value_int(VCONF_WIFI_HOTSPOT_ENABLED, &vconf_value);
126         if (ret == RUNTIME_INFO_ERROR_NONE)
127                 value->b = (vconf_value&VCONFKEY_MOBILE_HOTSPOT_MODE_WIFI) ? true : false;
128
129         return ret;
130 }
131
132 int runtime_info_wifi_hotspot_set_event_cb()
133 {
134         return runtime_info_vconf_set_event_cb(VCONF_WIFI_HOTSPOT_ENABLED, RUNTIME_INFO_KEY_WIFI_HOTSPOT_ENABLED, 0);
135 }
136
137 void runtime_info_wifi_hotspot_unset_event_cb()
138 {
139         runtime_info_vconf_unset_event_cb(VCONF_WIFI_HOTSPOT_ENABLED, 0);
140 }
141
142 int runtime_info_bt_hotspot_get_value(runtime_info_value_h value)
143 {
144         int vconf_value;
145         int ret;
146
147         ret = runtime_info_vconf_get_value_int(VCONF_BT_HOTSPOT_ENABLED, &vconf_value);
148         if (ret == RUNTIME_INFO_ERROR_NONE)
149                 value->b = (vconf_value&VCONFKEY_MOBILE_HOTSPOT_MODE_BT) ? true : false;
150
151         return ret;
152 }
153
154 int runtime_info_bt_hotspot_set_event_cb()
155 {
156         return runtime_info_vconf_set_event_cb(VCONF_BT_HOTSPOT_ENABLED, RUNTIME_INFO_KEY_BLUETOOTH_TETHERING_ENABLED, 0);
157 }
158
159 void runtime_info_bt_hotspot_unset_event_cb()
160 {
161         runtime_info_vconf_unset_event_cb(VCONF_BT_HOTSPOT_ENABLED, 0);
162 }
163
164 int runtime_info_usb_hotspot_get_value(runtime_info_value_h value)
165 {
166         int vconf_value;
167         int ret;
168
169         ret = runtime_info_vconf_get_value_int(VCONF_USB_HOTSPOT_ENABLED, &vconf_value);
170         if (ret == RUNTIME_INFO_ERROR_NONE)
171                 value->b = (vconf_value&VCONFKEY_MOBILE_HOTSPOT_MODE_USB) ? true : false;
172
173         return ret;
174 }
175
176 int runtime_info_usb_hotspot_set_event_cb()
177 {
178         return runtime_info_vconf_set_event_cb(VCONF_USB_HOTSPOT_ENABLED, RUNTIME_INFO_KEY_USB_TETHERING_ENABLED, 0);
179 }
180
181 void runtime_info_usb_hotspot_unset_event_cb()
182 {
183         runtime_info_vconf_unset_event_cb(VCONF_USB_HOTSPOT_ENABLED, 0);
184 }
185
186 int runtime_info_packet_data_get_value(runtime_info_value_h value)
187 {
188         int vconf_value;
189         int ret;
190
191         ret = runtime_info_vconf_get_value_bool(VCONF_PACKET_DATA_ENABLED, &vconf_value);
192         if (ret == RUNTIME_INFO_ERROR_NONE)
193                 value->b = (bool)vconf_value;
194
195         return ret;
196 }
197
198 int runtime_info_packet_data_set_event_cb()
199 {
200         return runtime_info_vconf_set_event_cb(VCONF_PACKET_DATA_ENABLED, RUNTIME_INFO_KEY_PACKET_DATA_ENABLED, 0);
201 }
202
203 void runtime_info_packet_data_unset_event_cb()
204 {
205         runtime_info_vconf_unset_event_cb(VCONF_PACKET_DATA_ENABLED, 0);
206 }
207
208 int runtime_info_data_roaming_get_value(runtime_info_value_h value)
209 {
210         int vconf_value;
211         int ret;
212
213         ret = runtime_info_vconf_get_value_bool(VCONF_DATA_ROAMING_ENABLED, &vconf_value);
214         if (ret == RUNTIME_INFO_ERROR_NONE)
215                 value->b = (bool)vconf_value;
216
217         return ret;
218 }
219
220 int runtime_info_data_roaming_set_event_cb()
221 {
222         return runtime_info_vconf_set_event_cb(VCONF_DATA_ROAMING_ENABLED, RUNTIME_INFO_KEY_DATA_ROAMING_ENABLED, 0);
223 }
224
225 void runtime_info_data_roaming_unset_event_cb()
226 {
227         runtime_info_vconf_unset_event_cb(VCONF_DATA_ROAMING_ENABLED, 0);
228 }
229
230 int runtime_info_gps_status_get_value(runtime_info_value_h value)
231 {
232         int vconf_value;
233         int ret;
234
235         ret = runtime_info_vconf_get_value_int(VCONF_GPS_STATUS, &vconf_value);
236         if (ret != RUNTIME_INFO_ERROR_NONE)
237                 return ret;
238
239         switch (vconf_value) {
240         case VCONFKEY_LOCATION_GPS_OFF:
241                 value->i = RUNTIME_INFO_GPS_STATUS_DISABLED;
242                 break;
243
244         case VCONFKEY_LOCATION_GPS_SEARCHING:
245                 value->i = RUNTIME_INFO_GPS_STATUS_SEARCHING;
246                 break;
247
248         case VCONFKEY_LOCATION_GPS_CONNECTED:
249                 value->i = RUNTIME_INFO_GPS_STATUS_CONNECTED;
250                 break;
251
252         default:
253                 return RUNTIME_INFO_ERROR_IO_ERROR;
254         }
255
256         return ret;
257 }
258
259 int runtime_info_gps_status_set_event_cb()
260 {
261         return runtime_info_vconf_set_event_cb(VCONF_GPS_STATUS, RUNTIME_INFO_KEY_GPS_STATUS, 0);
262 }
263
264 void runtime_info_gps_status_unset_event_cb()
265 {
266         runtime_info_vconf_unset_event_cb(VCONF_GPS_STATUS, 0);
267 }
268