Replace com.samsung with org.tizen
[platform/framework/web/data-provider-master.git] / src / setting.c
1 /*
2  * Copyright 2013  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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 <malloc.h>
19 #include <unistd.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <fcntl.h>
25 #include <errno.h>
26 #include <locale.h>
27
28 #include <vconf.h>
29 #include <dlog.h>
30
31 #include <Ecore.h>
32 #include <Eina.h>
33
34 #include <livebox-service.h>
35
36 #include "client_life.h"
37 #include "setting.h"
38 #include "util.h"
39 #include "debug.h"
40 #include "slave_life.h"
41 #include "critical_log.h"
42 #include "xmonitor.h"
43 #include "conf.h"
44 #include "package.h"
45 #include "instance.h"
46
47 int errno;
48
49 static struct {
50         int deactivated;
51 } s_info = {
52         .deactivated = 0,
53 };
54
55 static void lcd_state_cb(keynode_t *node, void *user_data)
56 {
57         if (!node) {
58                 return;
59         }
60
61         xmonitor_handle_state_changes();
62 }
63
64 HAPI int setting_is_lcd_off(void)
65 {
66         int state;
67
68         if (vconf_get_int(VCONFKEY_PM_STATE, &state) != 0) {
69                 ErrPrint("Idle lock state is not valid\n");
70                 state = VCONFKEY_PM_STATE_NORMAL; /* UNLOCK */
71         }
72
73         DbgPrint("State: %d, (%d:lcdoff, %d:sleep)\n", state, VCONFKEY_PM_STATE_LCDOFF, VCONFKEY_PM_STATE_SLEEP);
74         return state == VCONFKEY_PM_STATE_LCDOFF || state == VCONFKEY_PM_STATE_SLEEP;
75 }
76
77 static void power_off_cb(keynode_t *node, void *user_data)
78 {
79         int val;
80         CRITICAL_LOG("Terminated(vconf)\n");
81
82         if (vconf_get_int(VCONFKEY_SYSMAN_POWER_OFF_STATUS, &val) != 0) {
83                 ErrPrint("Failed to get power off status (%d)\n", val);
84                 return;
85         }
86
87         if (val == VCONFKEY_SYSMAN_POWER_OFF_DIRECT || val == VCONFKEY_SYSMAN_POWER_OFF_RESTART) {
88                 DbgPrint("Power off requested: Ignored\n");
89         } else {
90                 ErrPrint("Unknown power state: %d\n", val);
91         }
92 }
93
94 static void region_changed_cb(keynode_t *node, void *user_data)
95 {
96         char *region;
97         char *r;
98
99         region = vconf_get_str(VCONFKEY_REGIONFORMAT);
100         if (!region) {
101                 return;
102         }
103
104         setenv("LC_CTYPE", region, 1);
105         setenv("LC_NUMERIC", region, 1);
106         setenv("LC_TIME", region, 1);
107         setenv("LC_COLLATE", region, 1);
108         setenv("LC_MONETARY", region, 1);
109         setenv("LC_PAPER", region, 1);
110         setenv("LC_NAME", region, 1);
111         setenv("LC_ADDRESS", region, 1);
112         setenv("LC_TELEPHONE", region, 1);
113         setenv("LC_MEASUREMENT", region, 1);
114         setenv("LC_IDENTIFICATION", region, 1);
115
116         r = setlocale(LC_ALL, "");
117         if (r == NULL) {
118                 ErrPrint("Failed to change region\n");
119         }
120
121         DbgFree(region);
122 }
123
124 static void lang_changed_cb(keynode_t *node, void *user_data)
125 {
126         char *lang;
127         char *r;
128
129         lang = vconf_get_str(VCONFKEY_LANGSET);
130         if (!lang) {
131                 return;
132         }
133
134         setenv("LANG", lang, 1);
135         setenv("LC_MESSAGES", lang, 1);
136
137         r = setlocale(LC_ALL, "");
138         if (!r) {
139                 ErrPrint("Failed to change locale\n");
140         }
141
142         DbgPrint("Locale: %s\n", setlocale(LC_ALL, NULL));
143         DbgFree(lang);
144 }
145
146 static void low_mem_cb(keynode_t *node, void *user_data)
147 {
148         int val;
149
150         val = vconf_keynode_get_int(node);
151
152         if (val >= VCONFKEY_SYSMAN_LOW_MEMORY_SOFT_WARNING)     {
153                 CRITICAL_LOG("Low memory: level %d\n", val);
154                 if (s_info.deactivated == 0) {
155                         s_info.deactivated = 1;
156                         //slave_deactivate_all(0, 1);
157                         malloc_trim(0);
158                         ErrPrint("Fall into the low mem status\n");
159                 }
160         } else {
161                 CRITICAL_LOG("Normal memory: level %d\n", val);
162                 if (s_info.deactivated == 1) {
163                         s_info.deactivated = 0;
164                         //slave_activate_all();
165                         ErrPrint("Recover from the low mem status\n");
166                 }
167         }
168 }
169
170 HAPI int setting_init(void)
171 {
172         int ret;
173
174         ret = vconf_notify_key_changed(VCONFKEY_PM_STATE, lcd_state_cb, NULL);
175         if (ret < 0) {
176                 ErrPrint("Failed to add vconf for lock state: %d\n", ret);
177         }
178
179         ret = vconf_notify_key_changed(VCONFKEY_SYSMAN_POWER_OFF_STATUS, power_off_cb, NULL);
180         if (ret < 0) {
181                 ErrPrint("Failed to add vconf for power state: %d \n", ret);
182         }
183
184         ret = vconf_notify_key_changed(VCONFKEY_LANGSET, lang_changed_cb, NULL);
185         if (ret < 0) {
186                 ErrPrint("Failed to add vconf for lang change: %d\n", ret);
187         }
188
189         ret = vconf_notify_key_changed(VCONFKEY_REGIONFORMAT, region_changed_cb, NULL);
190         if (ret < 0) {
191                 ErrPrint("Failed to add vconf for region change: %d\n", ret);
192         }
193
194         ret = vconf_notify_key_changed(VCONFKEY_SYSMAN_LOW_MEMORY, low_mem_cb, NULL);
195         if (ret < 0) {
196                 ErrPrint("Failed to add vconf for low mem monitor: %d\n", ret);
197         }
198
199         lang_changed_cb(NULL, NULL);
200         region_changed_cb(NULL, NULL);
201         return ret;
202 }
203
204 HAPI int setting_fini(void)
205 {
206         int ret;
207
208         ret = vconf_ignore_key_changed(VCONFKEY_SYSMAN_LOW_MEMORY, low_mem_cb);
209         if (ret < 0) {
210                 ErrPrint("Failed to ignore vconf key (%d)\n", ret);
211         }
212
213         ret = vconf_ignore_key_changed(VCONFKEY_REGIONFORMAT, region_changed_cb);
214         if (ret < 0) {
215                 ErrPrint("Failed to ignore vconf key (%d)\n", ret);
216         }
217
218         ret = vconf_ignore_key_changed(VCONFKEY_LANGSET, lang_changed_cb);
219         if (ret < 0) {
220                 ErrPrint("Failed to ignore vconf key (%d)\n", ret);
221         }
222
223         ret = vconf_ignore_key_changed(VCONFKEY_PM_STATE, lcd_state_cb);
224         if (ret < 0) {
225                 ErrPrint("Failed to ignore vconf key (%d)\n", ret);
226         }
227
228         ret = vconf_ignore_key_changed(VCONFKEY_SYSMAN_POWER_OFF_STATUS, power_off_cb);
229         if (ret < 0) {
230                 ErrPrint("Failed to ignore vconf key (%d)\n", ret);
231         }
232
233         return ret;
234 }
235
236 /* End of a file */