summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt4
-rw-r--r--include/wearable/hw_key.h43
-rw-r--r--packaging/starter.spec15
-rw-r--r--src/wearable/hourly_alert.c6
-rw-r--r--src/wearable/hw_key.c373
5 files changed, 432 insertions, 9 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 76ee0bd..f9cebc1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -72,6 +72,7 @@ pkg_check_modules(pkgs REQUIRED
ecore
ecore-evas
ecore-input
+ ecore-wayland
edbus
eina
elementary
@@ -161,7 +162,7 @@ SET(BUILD_SOURCE
src/mobile/hw_key.c
)
-ELSE("${TIZEN_PROFILE_NAME}" STREQUAL "MOBILE")
+ELSE("${TIZEN_PROFILE_NAME}" STREQUAL "WEARABLE")
SET(BUILD_SOURCE
src/dbus_util.c
src/package_mgr.c
@@ -171,6 +172,7 @@ SET(BUILD_SOURCE
src/wearable/clock_mgr.c
src/wearable/home_mgr.c
src/wearable/hourly_alert.c
+ src/wearable/hw_key.c
src/wearable/starter.c
)
IF(X11_SUPPORT)
diff --git a/include/wearable/hw_key.h b/include/wearable/hw_key.h
index a937000..d01aa7d 100644
--- a/include/wearable/hw_key.h
+++ b/include/wearable/hw_key.h
@@ -14,6 +14,49 @@
* limitations under the License.
*/
+#ifdef HAVE_WAYLAND
+typedef enum {
+ KEY_VOLUMEUP = 0,
+ KEY_VOLUMEDOWN = 1,
+ KEY_POWER = 2,
+ KEY_MENU,
+ KEY_HOME,
+ KEY_BACK,
+ KLEY_CAMERA,
+ KEY_CONFIG,
+ KEY_SEARCH,
+ KEY_PLAYCD,
+ KEY_PAUSECB,
+ KEY_STOPCD,
+ KEY_NEXTSONG,
+ KEY_PRIVEIOUSSONG,
+ KEY_REWIND,
+ KEY_FASTFORWARD,
+ KEY_MEDIA,
+ KEY_PLAYPAUSE,
+ KEY_MUTE,
+ KEY_REC,
+ KEY_CANCEL,
+ KEY_SOFTBD,
+ KEY_QUICKPANEL,
+ KEY_TASKSWITCH,
+ KEY_HOMEPAGE,
+ KEY_WEBPAGE,
+ KEY_MAIL,
+ KEY_SCREENSAVER,
+ KEY_BRIGHTNESSDOWN,
+ KEY_BRIGHTNESSUP,
+ KEY_VOICE,
+ KEY_LANGUAGE,
+ KEY_APPS,
+ KEY_CONNECT,
+ KEY_GAMEPLAY,
+ KEY_VOICEWAKEUP_LPSD,
+ KEY_VOICEWAKEUP,
+ KEY_NAME_MAX,
+} key_name_e;
+#endif
+
extern void hw_key_destroy_window(void);
extern void hw_key_create_window(void);
diff --git a/packaging/starter.spec b/packaging/starter.spec
index 276e053..b4d2814 100644
--- a/packaging/starter.spec
+++ b/packaging/starter.spec
@@ -26,13 +26,13 @@ BuildRequires: pkgconfig(capi-system-media-key)
BuildRequires: pkgconfig(capi-network-bluetooth)
BuildRequires: pkgconfig(capi-system-system-settings)
-#%if "%{?tizen_profile_name}" == "mobile"
+%if "%{profile}" == "mobile"
BuildRequires: tts
BuildRequires: tts-devel
BuildRequires: pkgconfig(capi-message-port)
BuildRequires: pkgconfig(security-manager)
BuildRequires: pkgconfig(efl-extension)
-#%endif
+%endif
BuildRequires: pkgconfig(feedback)
BuildRequires: pkgconfig(db-util)
@@ -79,10 +79,15 @@ export CXXFLAGS="$CXXFLAGS -DTIZEN_DEBUG_ENABLE"
export FFLAGS="$FFLAGS -DTIZEN_DEBUG_ENABLE"
%endif
-
+%if "%{profile}" == "wearable"
+%define TIZEN_PROFILE_NAME "WEARABLE"
+export CFLAGS="$CFLAGS -DTIZEN_PROFILE_WEARABLE"
+export CXXFLAGS="$CXXFLAGS -DTIZEN_PROFILE_WEARABLE"
+%else
%define TIZEN_PROFILE_NAME "MOBILE"
export CFLAGS="$CFLAGS -DTIZEN_PROFILE_MOBILE"
export CXXFLAGS="$CXXFLAGS -DTIZEN_PROFILE_MOBILE"
+%endif
%ifarch %{arm}
export CFLAGS="$CFLAGS -DTIZEN_BUILD_TARGET"
@@ -161,6 +166,6 @@ sync
/opt/data/home-daemon
/usr/share/locale/*/LC_MESSAGES/*
-#%if "%{?tizen_profile_name}" == "mobile"
+%if "%{profile}" == "mobile"
/usr/share/starter/res/edje/*
-#%endif
+%endif
diff --git a/src/wearable/hourly_alert.c b/src/wearable/hourly_alert.c
index 3c2c00a..ae94217 100644
--- a/src/wearable/hourly_alert.c
+++ b/src/wearable/hourly_alert.c
@@ -208,7 +208,7 @@ static void _hourly_alert_changed_cb(keynode_t* node, void *data)
}
}
- if (hourly_alert == TRUE) {
+ if (hourly_alert == 1) {
_E("hourly_alert is set");
_register_hourly_alert_alarm();
} else {
@@ -235,8 +235,8 @@ void hourly_alert_init(void)
ret = vconf_get_bool(VCONFKEY_SETAPPL_HOURLY_ALERT_BOOL, &hourly_alert);
if (ret < 0){
_E("can't get vconfkey value of [%s], ret=[%d]", VCONFKEY_SETAPPL_HOURLY_ALERT_BOOL, ret);
- hourly_alert = FALSE;
- } else if (hourly_alert == TRUE) {
+ hourly_alert = 0;
+ } else if (hourly_alert == 1) {
_D("[%s] value is [%d], hourly_alert is set..!!", VCONFKEY_SETAPPL_HOURLY_ALERT_BOOL, hourly_alert);
if (_register_hourly_alert_alarm() == EINA_FALSE) {
_E("_register_hourly_alert_alarm is failed..!!");
diff --git a/src/wearable/hw_key.c b/src/wearable/hw_key.c
index ef4b756..ede5a68 100644
--- a/src/wearable/hw_key.c
+++ b/src/wearable/hw_key.c
@@ -14,6 +14,8 @@
* limitations under the License.
*/
+#ifdef HAVE_X11
+
#include <bundle.h>
#include <Elementary.h>
#include <Ecore_X.h>
@@ -375,6 +377,377 @@ void hw_key_destroy_window(void)
key_info.win = 0x0;
}
+#elif HAVE_WAYLAND
+
+#include <bundle.h>
+#include <Elementary.h>
+#include <Ecore_Input.h>
+#include <Ecore_Wayland.h>
+
+#include <dd-display.h>
+#include <feedback.h>
+#include <vconf.h>
+
+#include "hw_key.h"
+#include "util.h"
+#include "status.h"
+#include "dbus_util.h"
+#include "home_mgr.h"
+#include "process_mgr.h"
+
+#define LONG_PRESS_TIMER_SEC 0.7
+#define POWERKEY_LCDOFF_TIMER_SEC 0.4
+#define POWERKEY_TIMER_SEC 0.25
+
+#define USE_DBUS_POWEROFF 1
+
+const char *key_name[KEY_NAME_MAX] = {
+ "XF86AudioRaiseVolume",
+ "XF86AudioLowerVolume",
+ "XF86PowerOff",
+ "XF86Menu",
+ "XF86Home",
+ "XF86Back",
+ "XF86Camera",
+ "XF86Camera_Full",
+ "XF86Search",
+ "XF86AudioPlay",
+ "XF86AudioPause",
+ "XF86AudioStop",
+ "XF86AudioNext",
+ "XF86AudioPrev",
+ "XF86AudioRewind",
+ "XF86AudioForward",
+ "XF86AudioMedia",
+ "XF86AudioPlayPause",
+ "XF86AudioMute",
+ "XF86AudioRecord",
+ "Cancel",
+ "XF86SoftKBD",
+ "XF86QuickPanel",
+ "XF86TaskPane",
+ "XF86HomePage",
+ "XF86WWW",
+ "XF86Mail",
+ "XF86ScreenSaver",
+ "XF86MonBrightnessDown",
+ "XF86MonBrightnessUp",
+ "XF86Voice",
+ "Hangul",
+ "XF86Apps",
+ "XF86Call",
+ "XF86Game",
+ "XF86VoiceWakeUp_LPSD",
+ "XF86VoiceWakeUp",
+ "KEY_NAME_MAX",
+};
+
+static struct {
+ Ecore_Event_Handler *key_up;
+ Ecore_Event_Handler *key_down;
+ Ecore_Timer *home_long_press_timer;
+ Ecore_Timer *home_multi_press_timer;
+ Ecore_Timer *keygrab_timer;
+ Eina_Bool cancel;
+ int homekey_count;
+
+ Ecore_Timer *power_long_press_timer;
+ Ecore_Timer *power_release_timer;
+ Eina_Bool is_lcd_on;
+ Eina_Bool is_long_press;
+ int powerkey_count;
+ Eina_Bool is_cancel;
+} key_info = {
+ .key_up = NULL,
+ .key_down = NULL,
+ .home_long_press_timer = NULL,
+ .home_multi_press_timer = NULL,
+ .keygrab_timer = NULL,
+ .cancel = EINA_FALSE,
+ .homekey_count = 0,
+
+ .power_long_press_timer = NULL,
+ .power_release_timer = NULL,
+ .is_lcd_on = EINA_FALSE,
+ .is_long_press = EINA_FALSE,
+ .powerkey_count = 0,
+ .is_cancel = EINA_FALSE,
+};
+
+
+
+static Eina_Bool _long_press_timer_cb(void* data)
+{
+ key_info.power_long_press_timer = NULL;
+ key_info.is_long_press = EINA_TRUE;
+ key_info.powerkey_count = 0;
+
+ if (0 < status_passive_get()->remote_lock_islocked){
+ _W("remote lock is on top (%d), -> just turn off LCD", status_passive_get()->remote_lock_islocked);
+ return ECORE_CALLBACK_CANCEL;
+ }
+
+ if (key_info.power_release_timer) {
+ ecore_timer_del(key_info.power_release_timer);
+ key_info.power_release_timer = NULL;
+ _D("delete power_release_timer");
+ }
+
+#if USE_DBUS_POWEROFF
+ dbus_util_send_poweroff_signal();
+#else
+ _D("launch power off syspopup");
+ process_mgr_syspopup_launch("poweroff-syspopup", NULL, NULL, NULL, NULL);
+#endif
+
+ feedback_initialize();
+ feedback_play_type(FEEDBACK_TYPE_VIBRATION, FEEDBACK_PATTERN_HOLD);
+ feedback_deinitialize();
+
+ return ECORE_CALLBACK_CANCEL;
+}
+
+
+
+static Eina_Bool _powerkey_timer_cb(void *data)
+{
+ _W("%s, powerkey count[%d]", __func__, key_info.powerkey_count);
+
+ key_info.power_release_timer = NULL;
+
+ if (VCONFKEY_PM_KEY_LOCK == status_passive_get()->pm_key_ignore) {
+ _E("Critical Low Batt Clock Mode");
+ key_info.powerkey_count = 0;
+ if(key_info.is_lcd_on) {
+ _W("just turn off LCD");
+ display_change_state(LCD_OFF);
+ } else {
+ _W("just turn on LCD by powerkey.. starter ignore powerkey operation");
+ }
+ return ECORE_CALLBACK_CANCEL;
+ }
+
+ if (key_info.powerkey_count % 2 == 0) {
+ /* double press */
+ _W("powerkey double press");
+ key_info.powerkey_count = 0;
+ return ECORE_CALLBACK_CANCEL;
+ }
+ key_info.powerkey_count = 0;
+
+ if (key_info.is_lcd_on) {
+ if(VCONFKEY_PM_STATE_LCDOFF <= status_active_get()->pm_state) {
+ _E("Already lcd state was changed while powerkey op. starter ignore powerkey operation");
+ return ECORE_CALLBACK_CANCEL;
+ }
+ } else {
+ _W("just turn on LCD by powerkey.. starter ignore powerkey operation");
+ return ECORE_CALLBACK_CANCEL;
+ }
+
+ if (VCONFKEY_CALL_VOICE_ACTIVE == status_passive_get()->call_state) {
+ _W("call state is [%d] -> just turn off LCD");
+ display_change_state(LCD_OFF);
+ return ECORE_CALLBACK_CANCEL;
+ }
+
+ if (VCONFKEY_IDLE_LOCK == status_passive_get()->idle_lock_state) {
+ _W("lock state is [%d] -> just turn off LCD");
+ display_change_state(LCD_OFF);
+ return ECORE_CALLBACK_CANCEL;
+ }
+
+ if (0 < status_passive_get()->remote_lock_islocked) {
+ _W("remote lock is on top (%d), -> just turn off LCD", status_passive_get()->remote_lock_islocked);
+ display_change_state(LCD_OFF);
+ return ECORE_CALLBACK_CANCEL;
+ }
+
+ home_mgr_launch_home_by_power();
+
+ return ECORE_CALLBACK_CANCEL;
+}
+
+
+
+static Eina_Bool _key_release_cb(void *data, int type, void *event)
+{
+ Evas_Event_Key_Up *ev = event;
+
+ retv_if(!ev, ECORE_CALLBACK_RENEW);
+ retv_if(!ev->keyname, ECORE_CALLBACK_RENEW);
+
+ _D("_key_release_cb : %s Released", ev->keyname);
+
+ if (!strcmp(ev->keyname, key_name[KEY_POWER])) {
+ _W("POWER Key is released");
+
+ if(key_info.power_long_press_timer) {
+ ecore_timer_del(key_info.power_long_press_timer);
+ key_info.power_long_press_timer = NULL;
+ _D("delete long press timer");
+ }
+
+ // Check powerkey timer
+ if(key_info.power_release_timer) {
+ ecore_timer_del(key_info.power_release_timer);
+ key_info.power_release_timer = NULL;
+ _D("delete powerkey timer");
+ }
+
+ // Cancel key operation
+ if (EINA_TRUE == key_info.is_cancel) {
+ _D("Cancel key is activated");
+ key_info.is_cancel = EINA_FALSE;
+ key_info.powerkey_count = 0; //initialize powerkey count
+ return ECORE_CALLBACK_RENEW;
+ }
+
+ // Check long press operation
+ if(key_info.is_long_press) {
+ _D("ignore power key release by long poress");
+ key_info.is_long_press = EINA_FALSE;
+ return ECORE_CALLBACK_RENEW;
+ }
+
+ if(key_info.is_lcd_on) {
+ key_info.power_release_timer = ecore_timer_add(POWERKEY_TIMER_SEC, _powerkey_timer_cb, NULL);
+ } else {
+ _D("lcd off --> [%f]sec timer", POWERKEY_LCDOFF_TIMER_SEC);
+ key_info.power_release_timer = ecore_timer_add(POWERKEY_LCDOFF_TIMER_SEC, _powerkey_timer_cb, NULL);
+ }
+ if (!key_info.power_release_timer) {
+ _E("Critical, cannot add a timer for powerkey");
+ }
+ } else if (!strcmp(ev->keyname, key_name[KEY_CANCEL])) {
+ _D("CANCEL Key is released");
+ key_info.is_cancel = EINA_FALSE;
+ }
+
+ return ECORE_CALLBACK_RENEW;
+}
+
+
+
+static Eina_Bool _key_press_cb(void *data, int type, void *event)
+{
+ Evas_Event_Key_Down *ev = event;
+
+ retv_if(!ev, ECORE_CALLBACK_RENEW);
+ retv_if(!ev->keyname, ECORE_CALLBACK_RENEW);
+
+ _D("_key_press_cb : %s Pressed", ev->keyname);
+
+ if (!strcmp(ev->keyname, key_name[KEY_POWER])) {
+ _W("POWER Key is pressed");
+
+ /**
+ * lcd status
+ * 1 : lcd normal
+ * 2 : lcd dim
+ * 3 : lcd off
+ * 4 : suspend
+ */
+ if (VCONFKEY_PM_STATE_LCDDIM >= status_active_get()->pm_state) {
+ key_info.is_lcd_on = EINA_TRUE;
+ } else if (VCONFKEY_PM_STATE_LCDOFF <= status_active_get()->pm_state) {
+ key_info.is_lcd_on = EINA_FALSE;
+ }
+
+ key_info.powerkey_count++;
+ _W("powerkey count : %d", key_info.powerkey_count);
+
+ if(key_info.power_release_timer) {
+ ecore_timer_del(key_info.power_release_timer);
+ key_info.power_release_timer = NULL;
+ }
+
+ if (key_info.power_long_press_timer) {
+ ecore_timer_del(key_info.power_long_press_timer);
+ key_info.power_long_press_timer = NULL;
+ }
+
+ key_info.is_long_press = EINA_FALSE;
+ key_info.power_long_press_timer = ecore_timer_add(LONG_PRESS_TIMER_SEC, _long_press_timer_cb, NULL);
+ if(!key_info.power_long_press_timer) {
+ _E("Failed to add power_long_press_timer");
+ }
+ } else if (!strcmp(ev->keyname, key_name[KEY_CANCEL])) {
+ _D("CANCEL key is pressed");
+ key_info.is_cancel = EINA_TRUE;
+ }
+
+ return ECORE_CALLBACK_RENEW;
+}
+
+
+
+static Eina_Bool __keygrab_timer_cb(void *data)
+{
+ int i = 0;
+ int ret = 0;
+
+ for (i = 0; i < KEY_NAME_MAX; i++) {
+ ret = ecore_wl_window_keygrab_set(NULL, key_name[i], 0, 0, 0, ECORE_WL_WINDOW_KEYGRAB_SHARED);
+ _D("key grab : %s / ret : %d", key_name[i], ret);
+ }
+
+ key_info.key_up = ecore_event_handler_add(ECORE_EVENT_KEY_UP, _key_release_cb, NULL);
+ if (!key_info.key_up) {
+ _E("Failed to register a key up event handler");
+ }
+
+ key_info.key_down = ecore_event_handler_add(ECORE_EVENT_KEY_DOWN, _key_press_cb, NULL);
+ if (!key_info.key_down) {
+ _E("Failed to register a key down event handler");
+ }
+
+ return ECORE_CALLBACK_CANCEL;
+}
+
+
+
+void hw_key_create_window(void)
+{
+ if (key_info.keygrab_timer) {
+ ecore_timer_del(key_info.keygrab_timer);
+ key_info.keygrab_timer = NULL;
+ }
+
+ key_info.keygrab_timer = ecore_timer_add(1.0f, __keygrab_timer_cb, NULL);
+ if (!key_info.keygrab_timer) {
+ _E("Failed to add timer for keygrab");
+ }
+}
+
+
+
+void hw_key_destroy_window(void)
+{
+ int i = 0;
+
+ for (i = 0; i < KEY_NAME_MAX; i++) {
+ ecore_wl_window_keygrab_unset(NULL, key_name[i], 0, 0);
+ }
+
+ if (key_info.keygrab_timer) {
+ ecore_timer_del(key_info.keygrab_timer);
+ key_info.keygrab_timer = NULL;
+ }
+
+ if (key_info.key_up) {
+ ecore_event_handler_del(key_info.key_up);
+ key_info.key_up = NULL;
+ }
+
+ if (key_info.key_down) {
+ ecore_event_handler_del(key_info.key_down);
+ key_info.key_down = NULL;
+ }
+}
+
+#endif
+
// End of a file