summaryrefslogtreecommitdiff
path: root/src/setting.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/setting.c')
-rw-r--r--src/setting.c106
1 files changed, 106 insertions, 0 deletions
diff --git a/src/setting.c b/src/setting.c
new file mode 100644
index 0000000..7ac5700
--- /dev/null
+++ b/src/setting.c
@@ -0,0 +1,106 @@
+/*
+ * Copyright 2012 Samsung Electronics Co., Ltd
+ *
+ * Licensed under the Flora License, Version 1.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.tizenopensource.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 <stdio.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <errno.h>
+
+#include <vconf.h>
+#include <dlog.h>
+
+#include <Eina.h>
+
+#include "client_life.h"
+#include "setting.h"
+#include "util.h"
+#include "debug.h"
+#include "slave_life.h"
+#include "critical_log.h"
+#include "xmonitor.h"
+#include "conf.h"
+
+int errno;
+
+static void lcd_state_cb(keynode_t *node, void *user_data)
+{
+ if (!node)
+ return;
+
+ xmonitor_handle_state_changes();
+}
+
+HAPI int setting_is_lcd_off(void)
+{
+ int state;
+
+ if (vconf_get_int(VCONFKEY_PM_STATE, &state) != 0) {
+ ErrPrint("Idle lock state is not valid\n");
+ state = VCONFKEY_PM_STATE_NORMAL; /* UNLOCK */
+ }
+
+ DbgPrint("State: %d, (%d:lcdoff, %d:sleep)\n", state, VCONFKEY_PM_STATE_LCDOFF, VCONFKEY_PM_STATE_SLEEP);
+ return state == VCONFKEY_PM_STATE_LCDOFF || state == VCONFKEY_PM_STATE_SLEEP;
+}
+
+static void power_off_cb(keynode_t *node, void *user_data)
+{
+ int val;
+ CRITICAL_LOG("Terminated(vconf)\n");
+
+ if (vconf_get_int(VCONFKEY_SYSMAN_POWER_OFF_STATUS, &val) != 0) {
+ ErrPrint("Failed to get power off status (%d)\n", val);
+ return;
+ }
+
+ if (val == VCONFKEY_SYSMAN_POWER_OFF_DIRECT || val == VCONFKEY_SYSMAN_POWER_OFF_RESTART) {
+ if (creat("/tmp/.stop.provider", 0644) < 0)
+ ErrPrint("Failed to create .stop.provider [%s]\n", strerror(errno));
+
+ exit(0);
+ } else {
+ ErrPrint("Unknown power state: %d\n", val);
+ }
+}
+
+HAPI int setting_init(void)
+{
+ int ret;
+
+ ret = vconf_notify_key_changed(VCONFKEY_PM_STATE, lcd_state_cb, NULL);
+ if (ret < 0)
+ ErrPrint("Failed to add vconf for lock state\n");
+
+ ret = vconf_notify_key_changed(VCONFKEY_SYSMAN_POWER_OFF_STATUS, power_off_cb, NULL);
+ if (ret < 0)
+ ErrPrint("Failed to add vconf for power state\n");
+
+ return ret;
+}
+
+HAPI int setting_fini(void)
+{
+ int ret;
+ ret = vconf_ignore_key_changed(VCONFKEY_PM_STATE, lcd_state_cb);
+ ret = vconf_ignore_key_changed(VCONFKEY_SYSMAN_POWER_OFF_STATUS, power_off_cb);
+ return ret;
+}
+
+/* End of a file */