2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
24 #include <runtime_info.h>
25 #include <runtime_info_private.h>
31 #define LOG_TAG "CAPI_SYSTEM_RUNTIME_INFO"
33 static const char *VCONF_LOCATION_SERVICE_ENABLED = VCONFKEY_LOCATION_ENABLED;
34 static const char *VCONF_LOCATION_AGPS_ENABLED = "db/location/setting/AgpsEnabled";
35 static const char *VCONF_LOCATION_NETWORK_ENABLED = VCONFKEY_LOCATION_NETWORK_ENABLED;
36 static const char *VCONF_LOCATION_SENSOR_ENABLED = "db/location/setting/SensorEnabled";
38 int runtime_info_location_service_get_value(runtime_info_value_h value)
42 if (runtime_info_vconf_get_value_int(VCONF_LOCATION_SERVICE_ENABLED, &vconf_value))
43 return RUNTIME_INFO_ERROR_IO_ERROR;
45 value->b = vconf_value;
47 return RUNTIME_INFO_ERROR_NONE;
50 int runtime_info_location_service_set_event_cb()
52 return runtime_info_vconf_set_event_cb(VCONF_LOCATION_SERVICE_ENABLED, RUNTIME_INFO_KEY_LOCATION_SERVICE_ENABLED, 0);
55 void runtime_info_location_service_unset_event_cb()
57 runtime_info_vconf_unset_event_cb(VCONF_LOCATION_SERVICE_ENABLED, 0);
60 int runtime_info_location_agps_get_value(runtime_info_value_h value)
64 if (runtime_info_vconf_get_value_int(VCONF_LOCATION_AGPS_ENABLED, &vconf_value))
65 return RUNTIME_INFO_ERROR_IO_ERROR;
67 value->b = vconf_value;
69 return RUNTIME_INFO_ERROR_NONE;
72 int runtime_info_location_agps_set_event_cb()
74 return runtime_info_vconf_set_event_cb(VCONF_LOCATION_AGPS_ENABLED, RUNTIME_INFO_KEY_LOCATION_ADVANCED_GPS_ENABLED, 0);
77 void runtime_info_location_agps_unset_event_cb()
79 runtime_info_vconf_unset_event_cb(VCONF_LOCATION_AGPS_ENABLED, 0);
82 int runtime_info_location_network_get_value(runtime_info_value_h value)
86 if (runtime_info_vconf_get_value_int(VCONF_LOCATION_NETWORK_ENABLED, &vconf_value))
87 return RUNTIME_INFO_ERROR_IO_ERROR;
89 value->b = vconf_value;
91 return RUNTIME_INFO_ERROR_NONE;
94 int runtime_info_location_network_set_event_cb()
96 return runtime_info_vconf_set_event_cb(VCONF_LOCATION_NETWORK_ENABLED, RUNTIME_INFO_KEY_LOCATION_NETWORK_POSITION_ENABLED, 0);
99 void runtime_info_location_network_unset_event_cb()
101 runtime_info_vconf_unset_event_cb(VCONF_LOCATION_NETWORK_ENABLED, 0);
104 int runtime_info_location_sensor_get_value(runtime_info_value_h value)
108 if (runtime_info_vconf_get_value_int(VCONF_LOCATION_SENSOR_ENABLED, &vconf_value))
109 return RUNTIME_INFO_ERROR_IO_ERROR;
111 value->b = vconf_value;
113 return RUNTIME_INFO_ERROR_NONE;
116 int runtime_info_location_sensor_set_event_cb()
118 return runtime_info_vconf_set_event_cb(VCONF_LOCATION_SENSOR_ENABLED, RUNTIME_INFO_KEY_LOCATION_SENSOR_AIDING_ENABLED, 0);
121 void runtime_info_location_sensor_unset_event_cb()
123 runtime_info_vconf_unset_event_cb(VCONF_LOCATION_SENSOR_ENABLED, 0);