Tizen 2.1 base
[platform/core/location/lbs-location.git] / location / manager / location-setting.h
1 /*
2  * libslp-location
3  *
4  * Copyright (c) 2010-2013 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Youngae Kang <youngae.kang@samsung.com>, Minjune Kim <sena06.kim@samsung.com>
7  *          Genie Kim <daejins.kim@samsung.com>
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21
22 #ifndef __LOCATION_SETTING_H__
23 #define __LOCATION_SETTING_H__
24
25 #include <glib.h>
26 #include <vconf.h>
27 #include <vconf-internal-location-keys.h>
28
29 /**
30  * @file location-setting.h
31  * @brief This file contains the definitions and functions for setting.
32  */
33
34 #define LOCATION_UPDATE_INTERVAL_MIN            1
35 #define LOCATION_UPDATE_INTERVAL_MAX            120
36 #define LOCATION_UPDATE_INTERVAL_DEFAULT        LOCATION_UPDATE_INTERVAL_MIN
37
38 typedef void (*SettingCB)(keynode_t *key, gpointer data);
39
40 gint location_setting_get_key_val(keynode_t *key);
41 gint location_setting_get_int(const gchar* path);
42 gchar *location_setting_get_string(const gchar* path);
43 gint location_setting_add_notify(const gchar* path, SettingCB setting_cb, gpointer self);
44 gint location_setting_ignore_notify(const gchar* path, SettingCB setting_cb);
45
46 #define setting_retval_if_fail(path) {\
47         if(!location_setting_get_int(path)){\
48                 return LOCATION_ERROR_UNKNOWN;\
49         }\
50 }
51
52 #define setting_ret_if_fail(path) {\
53         if(!location_setting_get_int(path)){\
54                 return;\
55         }\
56 }
57
58
59 #endif