1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/*
* Copyright (c) 2017 Samsung Electronics Co., Ltd.
*
* Contact: Jin Yoon <jinny.yoon@samsung.com>
* Geunsun Lee <gs86.lee@samsung.com>
* Eunyoung Lee <ey928.lee@samsung.com>
* Junkyu Han <junkyu.han@samsung.com>
*
* Licensed under the Flora License, Version 1.1 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://floralicense.org/license/
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdlib.h>
#include <glib.h>
#include "log.h"
#define CONF_GROUP_DEFAULT_NAME "default"
#define CONF_KEY_PATH_NAME "path"
#define CONF_KEY_ADDRESS_NAME "address"
struct controller_util_s {
char *path;
char *address;
};
struct controller_util_s controller_util = { 0, };
static int _read_conf_file(void)
{
GKeyFile *gkf = NULL;
gkf = g_key_file_new();
retv_if(!gkf, -1);
if (!g_key_file_load_from_file(gkf, CONF_FILE, G_KEY_FILE_NONE, NULL)) {
_E("could not read config file %s", CONF_FILE);
return -1;
}
controller_util.path = g_key_file_get_string(gkf,
CONF_GROUP_DEFAULT_NAME,
CONF_KEY_PATH_NAME,
NULL);
if (!controller_util.path)
_E("could not get the key string");
controller_util.address = g_key_file_get_string(gkf,
CONF_GROUP_DEFAULT_NAME,
CONF_KEY_ADDRESS_NAME,
NULL);
if (!controller_util.address)
_E("could not get the key string");
g_key_file_free(gkf);
return 0;
}
int controller_util_get_path(const char **path)
{
retv_if(!path, -1);
if (!controller_util.path) {
int ret = -1;
ret = _read_conf_file();
retv_if(-1 == ret, -1);
}
*path = controller_util.path;
return 0;
}
int controller_util_get_address(const char **address)
{
retv_if(!address, -1);
if (!controller_util.address) {
int ret = -1;
ret = _read_conf_file();
retv_if(-1 == ret, -1);
}
*address = controller_util.address;
return 0;
}
void controller_util_free(void)
{
if (controller_util.path) {
free(controller_util.path);
controller_util.path = NULL;
}
if (controller_util.address) {
free(controller_util.address);
controller_util.address = NULL;
}
}
|