X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fefl_util.c;h=72295c3f571f37baae6a6e49889b4c7740208235;hb=469eb4e11dc3f685e39de14b68a6f83197ecde53;hp=4594cc71740ad5bacc0a18653c4125e895248262;hpb=c1edb393d1ea14b5f3c6d5cc346bcea651495389;p=platform%2Fcore%2Fapi%2Fefl-util.git diff --git a/src/efl_util.c b/src/efl_util.c index 4594cc7..72295c3 100644 --- a/src/efl_util.c +++ b/src/efl_util.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved + * Copyright (c) 2011-2017 Samsung Electronics Co., Ltd All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the License); * you may not use this file except in compliance with the License. @@ -11,504 +11,2936 @@ * 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. + * limitations under the License. */ - #define LOG_TAG "TIZEN_N_EFL_UTIL" #include -#include #include #include #include +#include +#include +#include +#include +#include +#include +#include +#include #include +#include +#include + +#include +#include +#include +#include +#include -#if ECORE_X_FOUND -#include -#include +#include + +#include +#ifdef LOG_TAG +#undef LOG_TAG #endif -typedef struct _notification_error_cb_info +/* Determine Tizen profile at runtime */ +#include +typedef enum { + TIZEN_PROFILE_UNKNOWN = 0, + TIZEN_PROFILE_MOBILE = 0x1, + TIZEN_PROFILE_WEARABLE = 0x2, + TIZEN_PROFILE_TV = 0x4, + TIZEN_PROFILE_IVI = 0x8, + TIZEN_PROFILE_COMMON = 0x10, +} tizen_profile_t; +static tizen_profile_t profile = TIZEN_PROFILE_UNKNOWN; +static tizen_profile_t _get_tizen_profile() +{ + char *profileName; + system_info_get_platform_string("http://tizen.org/feature/profile", &profileName); + switch (*profileName) { + case 'm': + case 'M': + profile = TIZEN_PROFILE_MOBILE; + break; + case 'w': + case 'W': + profile = TIZEN_PROFILE_WEARABLE; + break; + case 't': + case 'T': + profile = TIZEN_PROFILE_TV; + break; + case 'i': + case 'I': + profile = TIZEN_PROFILE_IVI; + break; + default: // common or unknown ==> ALL ARE COMMON. + profile = TIZEN_PROFILE_COMMON; + } + free(profileName); + + return profile; +} +static inline tizen_profile_t get_tizen_profile() { - Evas_Object *window; - efl_util_notification_window_level_error_cb err_cb; - void *user_data; -} notification_error_cb_info; + if (__builtin_expect(profile != TIZEN_PROFILE_UNKNOWN, 1)) + return profile; + return _get_tizen_profile(); +} -Eina_List *_g_notification_error_cb_info_list; -static Ecore_Event_Handler* _noti_level_access_result_handler = NULL; -static int _noti_handler_count = 0; -static notification_error_cb_info *_notification_error_cb_info_find(Evas_Object *window); -static Eina_Bool _efl_util_notification_info_add(Evas_Object *window, efl_util_notification_window_level_error_cb callback, void *user_data); -static Eina_Bool _efl_util_notification_info_del(Evas_Object *window); +#define LOG_TAG "TIZEN_N_EFL_UTIL" -#if ECORE_X_FOUND -static unsigned int _noti_level_access_result_atom = 0; -static Eina_Bool _efl_util_client_message(void *data, int type, void *event); -static notification_error_cb_info *_notification_error_cb_info_find_by_xwin(unsigned int xwin); -#endif +/* callback handler index */ +#define CBH_NOTI_LEV 0 +#define CBH_SCR_MODE 1 +#define CBH_MAX 2 +typedef void (*Efl_Util_Cb)(Evas_Object *, int, void *); -int efl_util_set_notification_window_level (Evas_Object* window, efl_util_notification_level_e level) -{ - EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); - EINA_SAFETY_ON_FALSE_RETURN_VAL(level >= EFL_UTIL_NOTIFICATION_LEVEL_1 && - level <= EFL_UTIL_NOTIFICATION_LEVEL_3, - EFL_UTIL_ERROR_INVALID_PARAMETER); - -#if ECORE_X_FOUND - Ecore_X_Window xwin = elm_win_xwindow_get(window); - if (xwin) - { - Ecore_X_Window_Type window_type; - if(ecore_x_netwm_window_type_get(xwin, &window_type) == EINA_TRUE) - { - // success to get window type - if(window_type != ECORE_X_WINDOW_TYPE_NOTIFICATION) - { - // given EFL window's type is not notification type. - return EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE; - } - } - else - return EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE; - - utilx_set_system_notification_level(ecore_x_display_get(), xwin, - level); - return EFL_UTIL_ERROR_NONE; - } -#endif +typedef struct _Efl_Util_Callback_Info +{ + Evas_Object *win; + Efl_Util_Cb cb; + void *data; +} Efl_Util_Callback_Info; -#if ECORE_WAYLAND_FOUND - Ecore_Wl_Window wl_win = elm_win_wl_window_get(window); - if (wl_win) - { - printf("not implemented for wayland yet\n"); - return EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE; - } -#endif +typedef struct _Efl_Util_Wl_Surface_Lv_Info +{ + void *surface; /* wl_surface */ + int level; + Eina_Bool wait_for_done; + uint32_t state; +} Efl_Util_Wl_Surface_Lv_Info; - return EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE; -} - - - -int efl_util_get_notification_window_level (Evas_Object* window, efl_util_notification_level_e* level) -{ - - EINA_SAFETY_ON_NULL_RETURN_VAL(window, - EFL_UTIL_ERROR_INVALID_PARAMETER); - EINA_SAFETY_ON_NULL_RETURN_VAL(level, - EFL_UTIL_ERROR_INVALID_PARAMETER); - -#if ECORE_X_FOUND - Ecore_X_Window_Type window_type; - Utilx_Notification_Level utilx_level; - Ecore_X_Window xwin = elm_win_xwindow_get(window); - if (xwin) - { - if(ecore_x_netwm_window_type_get(xwin, &window_type) == EINA_TRUE) - { - // success to get window type - if(window_type != ECORE_X_WINDOW_TYPE_NOTIFICATION) - { - // given EFL window's type is not notification type. - return EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE; - } - - utilx_level = utilx_get_system_notification_level (ecore_x_display_get(), xwin); - - if(utilx_level == UTILX_NOTIFICATION_LEVEL_LOW) - { - *level = EFL_UTIL_NOTIFICATION_LEVEL_1; - } - else if(utilx_level == UTILX_NOTIFICATION_LEVEL_NORMAL) - { - *level = EFL_UTIL_NOTIFICATION_LEVEL_2; - } - else if(utilx_level == UTILX_NOTIFICATION_LEVEL_HIGH) - { - *level = EFL_UTIL_NOTIFICATION_LEVEL_3; - } - else - { - return EFL_UTIL_ERROR_INVALID_PARAMETER; - } - - } - else - { - // fail to get window type - return EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE; - } - - return EFL_UTIL_ERROR_NONE; - } -#endif +typedef struct _Efl_Util_Wl_Surface_Scr_Mode_Info +{ + void *surface; /* wl_surface */ + unsigned int mode; + Eina_Bool wait_for_done; + uint32_t state; +} Efl_Util_Wl_Surface_Scr_Mode_Info; -#if ECORE_WAYLAND_FOUND - Ecore_Wl_Window wl_win = elm_win_wl_window_get(window); - if (wl_win) - { - printf("not implemented for wayland yet\n"); - return EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE; - } -#endif - return EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE; +typedef struct _Efl_Util_Wl_Surface_Brightness_Info +{ + void *surface; /* wl_surface */ + int brightness; + Eina_Bool wait_for_done; + uint32_t state; +} Efl_Util_Wl_Surface_Brightness_Info; + +typedef struct _Efl_Util_Wl_Output_Info +{ + struct wl_output *output; + int offset_x, offset_y, width, height; +} Efl_Util_Wl_Output_Info; + +typedef struct _Efl_Util_Gesture_Common_Grab_Data +{ + int type; +} Efl_Util_Gesture_Common_Grab_Data; + +typedef struct _Efl_Util_Gesture_Edge_Swipe_Grab_Data +{ + Efl_Util_Gesture_Common_Grab_Data base; + + unsigned int fingers; + efl_util_gesture_edge_e edge; + efl_util_gesture_edge_size_e edge_size; + unsigned int start_point; + unsigned int end_point; +} Efl_Util_Gesture_Edge_Swipe_Grab_Data; + +typedef struct _Efl_Util_Gesture_Edge_Drag_Grab_Data +{ + Efl_Util_Gesture_Common_Grab_Data base; + + unsigned int fingers; + efl_util_gesture_edge_e edge; + efl_util_gesture_edge_size_e edge_size; + unsigned int start_point; + unsigned int end_point; +} Efl_Util_Gesture_Edge_Drag_Grab_Data; + +typedef struct _Efl_Util_Gesture_Tap_Grab_Data +{ + Efl_Util_Gesture_Common_Grab_Data base; + + unsigned int fingers; + unsigned int repeats; +} Efl_Util_Gesture_Tap_Grab_Data; + +typedef struct _Efl_Util_Gesture_Palm_Cover_Grab_Data +{ + Efl_Util_Gesture_Common_Grab_Data base; +} Efl_Util_Gesture_Palm_Cover_Grab_Data; + +typedef struct _Efl_Util_Data +{ + /* wayland related stuffs */ + struct + { + Eina_Bool init; + Ecore_Wl2_Display *wl2_display; + struct wl_display *dpy; + struct wl_event_queue *queue; + int dpy_fd; + Ecore_Fd_Handler *fd_hdl; + + struct + { + unsigned int id; + struct tizen_policy *proto; + Eina_Hash *hash_noti_lv; + Eina_Hash *hash_scr_mode; + } policy; + struct + { + struct wl_event_queue *queue; + struct screenshooter *screenshooter; + struct tizen_screenshooter *tz_screenshooter; + struct wayland_tbm_client *tbm_client; + Eina_List *output_list; + uint32_t noti; + } shot; + struct + { + struct tizen_input_device_manager *devicemgr; + int request_notified; + } devmgr; + struct + { + unsigned int id; + struct tizen_display_policy *proto; + Eina_Hash *hash_brightness; + } display_policy; + struct + { + struct tizen_gesture *proto; + int request_notified; + int event_init; + } gesture; + } wl; + + struct + { + Eina_List *info_list; /* list of callback info */ + unsigned int atom; /* x11 atom */ + } cb_handler[CBH_MAX]; +} Efl_Util_Data; + +static Efl_Util_Data _eflutil = +{ + { + EINA_FALSE, + NULL, NULL, NULL, + -1, NULL, + { 0, NULL, NULL, NULL }, /* tizen_policy protocol */ + { NULL, NULL, NULL, NULL, NULL, 0 }, /* screenshooter protocol */ + { NULL, -1 }, /* tizen_input_device_manager protocol */ + { 0, NULL, NULL }, /* display_policy protocol */ + { NULL, -1, EINA_FALSE } /* tizen_gesture protocol */ + }, + { + { NULL, 0 }, /* handler for notification level */ + { NULL, 0 } /* handler for screen mode */ + }, +}; + +static Eina_Bool _cb_info_add(Evas_Object *win, Efl_Util_Cb cb, void *data, int idx); +static Eina_Bool _cb_info_del_by_win(Evas_Object *win, int idx); +static Eina_List *_cb_info_list_get(int idx); +static Efl_Util_Callback_Info *_cb_info_find_by_win(Evas_Object *win, int idx); +static Eina_Bool _wl_init(void); +static void _cb_wl_reg_global(void *data, struct wl_registry *reg, unsigned int name, const char *interface, unsigned int version); +static void _cb_wl_reg_global_remove(void *data, struct wl_registry *reg, unsigned int name); +static void _cb_wl_reg_screenshooter_global(void *data, struct wl_registry *reg, unsigned int name, const char *interface, unsigned int version); +static void _cb_wl_reg_screenshooter_global_remove(void *data, struct wl_registry *reg, unsigned int name); +static Efl_Util_Callback_Info *_cb_info_find_by_wlsurf(void *wlsurf, int idx); +static void _cb_wl_tz_policy_conformant(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface, uint32_t is_conformant); +static void _cb_wl_tz_policy_conformant_area(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface, uint32_t conformant_part, uint32_t state, int32_t x, int32_t y, int32_t w, int32_t h); +static void _cb_wl_tz_policy_notification_done(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface, int32_t level, uint32_t state); +static void _cb_wl_tz_policy_transient_for_done(void *data, struct tizen_policy *tizen_policy, uint32_t child_id); +static void _cb_wl_tz_policy_scr_mode_done(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface, uint32_t mode, uint32_t state); +static void _cb_wl_tz_policy_iconify_state_changed(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface_resource, uint32_t iconified, uint32_t force); +static void _cb_wl_tz_policy_supported_aux_hints(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface_resource, struct wl_array *hints, uint32_t num_hints); +static void _cb_wl_tz_policy_allowed_aux_hint(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface_resource, int id); +static void _cb_wl_tz_policy_aux_message(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface_resource, const char *key, const char *val, struct wl_array *options); +static void _cb_wl_conformant_region(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface, uint32_t conformant_part, uint32_t state, int32_t x, int32_t y, int32_t w, int32_t h, uint32_t serial); + +static void _cb_wl_tz_display_policy_brightness_done(void *data, struct tizen_display_policy *tizen_display_policy, struct wl_surface *surface_resource, int32_t brightness, uint32_t state); + +static void _cb_device_add(void *data EINA_UNUSED, struct tizen_input_device_manager *tizen_input_device_manager EINA_UNUSED, uint32_t serial EINA_UNUSED, const char *identifier EINA_UNUSED, struct tizen_input_device *device EINA_UNUSED, struct wl_seat *seat EINA_UNUSED); +static void _cb_device_remove(void *data EINA_UNUSED, struct tizen_input_device_manager *tizen_input_device_manager EINA_UNUSED, uint32_t serial EINA_UNUSED, const char *identifier EINA_UNUSED, struct tizen_input_device *device EINA_UNUSED, struct wl_seat *seat EINA_UNUSED); +static void _cb_error(void *data EINA_UNUSED, struct tizen_input_device_manager *tizen_input_device_manager EINA_UNUSED, uint32_t errorcode); +static void _cb_block_expired(void *data EINA_UNUSED, struct tizen_input_device_manager *tizen_input_device_manager EINA_UNUSED); + +static void _cb_gesture_edge_swipe_notify(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t fingers EINA_UNUSED, uint32_t edge EINA_UNUSED, uint32_t edge_size EINA_UNUSED, uint32_t start_point EINA_UNUSED, uint32_t end_point EINA_UNUSED, uint32_t error); +static void _cb_gesture_edge_swipe(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t mode, uint32_t fingers, int sx, int sy, uint32_t edge); +static void _cb_gesture_edge_drag_notify(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t fingers EINA_UNUSED, uint32_t edge EINA_UNUSED, uint32_t edge_size EINA_UNUSED, uint32_t start_point EINA_UNUSED, uint32_t end_point EINA_UNUSED, uint32_t error); +static void _cb_gesture_edge_drag(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t mode, uint32_t fingers, int cx, int cy, uint32_t edge); +static void _cb_gesture_tap_notify(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t fingers EINA_UNUSED, uint32_t repeats EINA_UNUSED, uint32_t error); +static void _cb_gesture_tap(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t mode, uint32_t fingers, uint32_t repeats); +static void _cb_gesture_palm_cover_notify(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, struct wl_surface *surface EINA_UNUSED, uint32_t error); +static void _cb_gesture_palm_cover(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, struct wl_surface *surface EINA_UNUSED, uint32_t mode, uint32_t duration, int cx, int cy, uint32_t size, wl_fixed_t pressure); +static void _cb_gesture_activate_notify(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, struct wl_surface *surface EINA_UNUSED, uint32_t type EINA_UNUSED, uint32_t active EINA_UNUSED, uint32_t error); + + +static const struct wl_registry_listener _wl_reg_listener = +{ + _cb_wl_reg_global, + _cb_wl_reg_global_remove +}; + +static const struct wl_registry_listener _wl_reg_screenshooter_listener = +{ + _cb_wl_reg_screenshooter_global, + _cb_wl_reg_screenshooter_global_remove +}; + +struct tizen_policy_listener _wl_tz_policy_listener = +{ + _cb_wl_tz_policy_conformant, + _cb_wl_tz_policy_conformant_area, + _cb_wl_tz_policy_notification_done, + _cb_wl_tz_policy_transient_for_done, + _cb_wl_tz_policy_scr_mode_done, + _cb_wl_tz_policy_iconify_state_changed, + _cb_wl_tz_policy_supported_aux_hints, + _cb_wl_tz_policy_allowed_aux_hint, + _cb_wl_tz_policy_aux_message, + _cb_wl_conformant_region, +}; + +struct tizen_input_device_manager_listener _wl_tz_devmgr_listener = +{ + _cb_device_add, + _cb_device_remove, + _cb_error, + _cb_block_expired +}; + +struct tizen_display_policy_listener _wl_tz_display_policy_listener = +{ + _cb_wl_tz_display_policy_brightness_done, +}; + +struct tizen_gesture_listener _wl_tz_gesture_listener = +{ + _cb_gesture_edge_swipe_notify, + _cb_gesture_edge_swipe, + _cb_gesture_edge_drag_notify, + _cb_gesture_edge_drag, + _cb_gesture_tap_notify, + _cb_gesture_tap, + _cb_gesture_palm_cover_notify, + _cb_gesture_palm_cover, + _cb_gesture_activate_notify +}; + +static Eina_Bool +_cb_info_add(Evas_Object *win, + Efl_Util_Cb cb, + void *data, + int idx) +{ + Efl_Util_Callback_Info *info; + + info = _cb_info_find_by_win(win, idx); + if (info) + { + _eflutil.cb_handler[idx].info_list + = eina_list_remove(_eflutil.cb_handler[idx].info_list, + info); + free(info); + } + + info = (Efl_Util_Callback_Info *)calloc(1, sizeof(Efl_Util_Callback_Info)); + if (!info) return EINA_FALSE; + + info->win = win; + info->cb = cb; + info->data = data; + + _eflutil.cb_handler[idx].info_list + = eina_list_append(_eflutil.cb_handler[idx].info_list, + info); + + return EINA_TRUE; } -int efl_util_set_notification_window_level_error_cb(Evas_Object *window, efl_util_notification_window_level_error_cb callback, void *user_data) +static Eina_Bool +_cb_info_del_by_win(Evas_Object *win, + int idx) { - Eina_Bool ret = EINA_FALSE; + Efl_Util_Callback_Info *info; - EINA_SAFETY_ON_NULL_RETURN_VAL(window, - EFL_UTIL_ERROR_INVALID_PARAMETER); - EINA_SAFETY_ON_NULL_RETURN_VAL(callback, - EFL_UTIL_ERROR_INVALID_PARAMETER); + info = _cb_info_find_by_win(win, idx); + if (!info) return EINA_FALSE; - ret = _efl_util_notification_info_add(window, callback, user_data); - if (ret) - { -#if ECORE_X_FOUND - if (!_noti_level_access_result_atom) - _noti_level_access_result_atom = ecore_x_atom_get("_E_NOTIFICATION_LEVEL_ACCESS_RESULT"); + _eflutil.cb_handler[idx].info_list + = eina_list_remove(_eflutil.cb_handler[idx].info_list, + info); + free(info); - if (!_noti_level_access_result_handler) - _noti_level_access_result_handler = ecore_event_handler_add(ECORE_X_EVENT_CLIENT_MESSAGE, _efl_util_client_message, NULL); - _noti_handler_count++; + return EINA_TRUE; +} - return EFL_UTIL_ERROR_NONE; -#endif +static Eina_List * +_cb_info_list_get(int idx) +{ + return _eflutil.cb_handler[idx].info_list; +} -#if ECORE_WAYLAND_FOUND - printf("not implemented for wayland yet\n"); - return EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE; -#endif - } +static Efl_Util_Callback_Info * +_cb_info_find_by_win(Evas_Object *win, + int idx) +{ + Eina_List *l, *ll; + Efl_Util_Callback_Info *info; - return EFL_UTIL_ERROR_OUT_OF_MEMORY; + l = _cb_info_list_get(idx); + EINA_LIST_FOREACH(l, ll, info) + { + if (info->win == win) return info; + } + + return NULL; } -int efl_util_unset_notification_window_level_error_cb(Evas_Object *window) +static Eina_Bool +_wl_init(void) { - Eina_Bool ret = EINA_FALSE; + struct wl_display *display_wrapper = NULL; + struct wl_registry *reg = NULL; + + if (_eflutil.wl.init) return EINA_TRUE; + + ecore_wl2_init(); + + _eflutil.wl.wl2_display = ecore_wl2_display_connect(NULL); + EINA_SAFETY_ON_NULL_GOTO(_eflutil.wl.wl2_display, fail); + _eflutil.wl.dpy = ecore_wl2_display_get(_eflutil.wl.wl2_display); + EINA_SAFETY_ON_NULL_GOTO(_eflutil.wl.dpy, fail); + + display_wrapper = wl_proxy_create_wrapper(_eflutil.wl.dpy); + EINA_SAFETY_ON_NULL_GOTO(display_wrapper, fail); + + _eflutil.wl.queue = wl_display_create_queue(_eflutil.wl.dpy); + EINA_SAFETY_ON_NULL_GOTO(_eflutil.wl.queue, fail); + + wl_proxy_set_queue((struct wl_proxy *)display_wrapper, _eflutil.wl.queue); - EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + reg = wl_display_get_registry(display_wrapper); + wl_proxy_wrapper_destroy(display_wrapper); + display_wrapper = NULL; + EINA_SAFETY_ON_NULL_GOTO(reg, fail); - ret = _efl_util_notification_info_del(window); - if (ret) - { - _noti_handler_count--; - if (_noti_handler_count == 0) - { - if (_noti_level_access_result_handler) - { - ecore_event_handler_del(_noti_level_access_result_handler); - _noti_level_access_result_handler = NULL; - } - } - return EFL_UTIL_ERROR_NONE; - } + wl_registry_add_listener(reg, &_wl_reg_listener, NULL); - return EFL_UTIL_ERROR_INVALID_PARAMETER; + _eflutil.wl.init = EINA_TRUE; + + return EINA_TRUE; +fail: + if (display_wrapper) + wl_proxy_wrapper_destroy(display_wrapper); + + if (_eflutil.wl.queue) + { + wl_event_queue_destroy(_eflutil.wl.queue); + _eflutil.wl.queue = NULL; + } + + ecore_wl2_shutdown(); + return EINA_FALSE; } -int efl_util_grab_key (Evas_Object *obj, const char* key, int grab_mode) +static void +_cb_wl_output_geometry(void *data, struct wl_output *wl_output, int x, int y, + int physical_width, int physical_height, int subpixel, + const char *make, const char *model, int transform) { - EINA_SAFETY_ON_NULL_RETURN_VAL(obj, 0); + Efl_Util_Wl_Output_Info *output = wl_output_get_user_data(wl_output); + if (wl_output == output->output) + { + output->offset_x = x; + output->offset_y = y; + } +} -#if ECORE_X_FOUND - Ecore_X_Window x_win; - Ecore_X_Display *x_disp; +static void +_cb_wl_output_mode(void *data, struct wl_output *wl_output, uint32_t flags, + int width, int height, int refresh) +{ + Efl_Util_Wl_Output_Info *output = wl_output_get_user_data(wl_output); + if (wl_output == output->output && (flags & WL_OUTPUT_MODE_CURRENT)) + { + output->width = width; + output->height = height; + } +} - x_win = elm_win_xwindow_get(obj); - if (x_win) - { - x_disp = ecore_x_display_get(); - return utilx_grab_key(x_disp, x_win, key, grab_mode); - } +static void +_cb_wl_output_done(void *data, struct wl_output *wl_output) +{ +} -#endif +static void +_cb_wl_output_scale(void *data, struct wl_output *wl_output, int32_t factor) +{ +} -#if ECORE_WAYLAND_FOUND - Ecore_Wl_Window wl_win = elm_win_wl_window_get(obj); - if (wl_win) - { - printf("not implemented for wayland yet\n"); - return 0; - } -#endif +static const struct wl_output_listener output_listener = +{ + _cb_wl_output_geometry, + _cb_wl_output_mode, + _cb_wl_output_done, + _cb_wl_output_scale +}; + +static void +_cb_wl_screenshot_done(void *data, struct screenshooter *screenshooter) +{ + Eina_Bool *shot_done = (Eina_Bool*)data; + if (shot_done) + *shot_done = EINA_TRUE; +} - return 0; +static const struct screenshooter_listener screenshooter_listener = +{ + _cb_wl_screenshot_done +}; + +static void +_cb_tz_screenshot_format(void *data, struct tizen_screenshooter *tz_screenshooter, uint32_t format) +{ } -int efl_util_ungrab_key (Evas_Object *obj, const char* key) +static void +_cb_tz_screenshot_noti(void *data, struct tizen_screenshooter *tz_screenshooter, uint32_t noti) { - EINA_SAFETY_ON_NULL_RETURN_VAL(obj, 0); + _eflutil.wl.shot.noti = noti; +} -#if ECORE_X_FOUND - Ecore_X_Window x_win; - Ecore_X_Display *x_disp; +static const struct tizen_screenshooter_listener tz_screenshooter_listener = +{ + _cb_tz_screenshot_format, + _cb_tz_screenshot_noti +}; + +static void +_cb_wl_reg_global(void *data, + struct wl_registry *reg, + unsigned int id, + const char *interface, + unsigned int version) +{ + if (!strcmp(interface, "tizen_policy")) + { + struct tizen_policy *proto; + proto = wl_registry_bind(reg, + id, + &tizen_policy_interface, + 7); + if (!proto) return; + + tizen_policy_add_listener(proto, + &_wl_tz_policy_listener, + NULL); + + _eflutil.wl.policy.hash_noti_lv = eina_hash_pointer_new(free); + _eflutil.wl.policy.hash_scr_mode = eina_hash_pointer_new(free); + _eflutil.wl.policy.proto = proto; + _eflutil.wl.policy.id = id; + } + else if (strcmp(interface, "wl_output") == 0) + { + Efl_Util_Wl_Output_Info *output = calloc(1, sizeof(Efl_Util_Wl_Output_Info)); + EINA_SAFETY_ON_NULL_RETURN(output); + + _eflutil.wl.shot.output_list = eina_list_append(_eflutil.wl.shot.output_list, output); + + output->output = wl_registry_bind(reg, id, &wl_output_interface, version); + wl_output_add_listener(output->output, &output_listener, output); + } + else if (strcmp(interface, "tizen_input_device_manager") == 0) + { + _eflutil.wl.devmgr.devicemgr = wl_registry_bind(reg, id, &tizen_input_device_manager_interface, version); + tizen_input_device_manager_add_listener(_eflutil.wl.devmgr.devicemgr, &_wl_tz_devmgr_listener, NULL); + } + else if (!strcmp(interface, "tizen_display_policy")) + { + _eflutil.wl.display_policy.proto = wl_registry_bind(reg, id, &tizen_display_policy_interface, version); + if (!_eflutil.wl.display_policy.proto) return; + + tizen_display_policy_add_listener(_eflutil.wl.display_policy.proto, + &_wl_tz_display_policy_listener, + NULL); + + _eflutil.wl.display_policy.hash_brightness = eina_hash_pointer_new(free); + _eflutil.wl.display_policy.id = id; + } + else if (strcmp(interface, "tizen_gesture") == 0) + { + _eflutil.wl.gesture.proto = wl_registry_bind(reg, id, &tizen_gesture_interface, version); + tizen_gesture_add_listener(_eflutil.wl.gesture.proto, &_wl_tz_gesture_listener, NULL); + } +} +/* LCOV_EXCL_START */ +static void +_cb_wl_reg_global_remove(void *data, + struct wl_registry *reg, + unsigned int id) +{ + /* unset each global id number to 0 since global id is started + * from number 1 on server side display structure + */ + if (id == _eflutil.wl.policy.id) + { + _eflutil.wl.policy.id = 0; + _eflutil.wl.policy.proto = NULL; + eina_hash_free(_eflutil.wl.policy.hash_noti_lv); + eina_hash_free(_eflutil.wl.policy.hash_scr_mode); + } + else if (id == _eflutil.wl.display_policy.id) + { + _eflutil.wl.display_policy.id = 0; + _eflutil.wl.display_policy.proto = NULL; + eina_hash_free(_eflutil.wl.display_policy.hash_brightness); + } +} +/* LCOV_EXCL_STOP */ + +static void +_cb_wl_reg_screenshooter_global(void *data, + struct wl_registry *reg, + unsigned int name, + const char *interface, + unsigned int version) +{ + if (strcmp(interface, "screenshooter") == 0) + { + _eflutil.wl.shot.screenshooter = wl_registry_bind(reg, name, &screenshooter_interface, version); + screenshooter_add_listener(_eflutil.wl.shot.screenshooter, &screenshooter_listener, NULL); + } + else if (strcmp(interface, "tizen_screenshooter") == 0) + { + _eflutil.wl.shot.tz_screenshooter = wl_registry_bind(reg, name, &tizen_screenshooter_interface, version); + tizen_screenshooter_add_listener(_eflutil.wl.shot.tz_screenshooter, &tz_screenshooter_listener, NULL); + + wl_display_roundtrip_queue(_eflutil.wl.dpy, _eflutil.wl.shot.queue); + } +} - x_win = elm_win_xwindow_get(obj); - if (x_win) - { - x_disp = ecore_x_display_get(); - return utilx_ungrab_key (x_disp, x_win, key); - } -#endif +/* LCOV_EXCL_START */ +static void +_cb_wl_reg_screenshooter_global_remove(void *data, + struct wl_registry *reg, + unsigned int name) +{ +} -#if ECORE_WAYLAND_FOUND - Ecore_Wl_Window wl_win = elm_win_wl_window_get(obj); - if (wl_win) - { - printf("not implemented for wayland yet\n"); - return 0; - } -#endif +static Efl_Util_Callback_Info * +_cb_info_find_by_wlsurf(void *wlsurf, + int idx) +{ + Eina_List *l, *ll; + Efl_Util_Callback_Info *info; + Ecore_Wl2_Window *wlwin2 = NULL; + void *wlsurf2 = NULL; + + l = _cb_info_list_get(idx); + EINA_LIST_FOREACH(l, ll, info) + { + wlwin2 = (Ecore_Wl2_Window *)elm_win_wl_window_get(info->win); + wlsurf2 = ecore_wl2_window_surface_get(wlwin2); + if (wlsurf== wlsurf2) return info; + } + + return NULL; +} + +static void +_cb_wl_tz_policy_conformant(void *data, struct tizen_policy *tizen_policy, + struct wl_surface *surface, uint32_t is_conformant) +{ +} - return 0; +static void +_cb_wl_tz_policy_conformant_area(void *data, struct tizen_policy *tizen_policy, + struct wl_surface *surface, uint32_t conformant_part, + uint32_t state, int32_t x, int32_t y, int32_t w, int32_t h) +{ +} +/* LCOV_EXCL_STOP */ + +static void +_cb_wl_tz_policy_notification_done(void *data, + struct tizen_policy *tizen_policy, + struct wl_surface *surface, + int32_t level, + uint32_t state) +{ + Efl_Util_Wl_Surface_Lv_Info *lv_info; + Efl_Util_Callback_Info *cb_info; + + lv_info = eina_hash_find(_eflutil.wl.policy.hash_noti_lv, &surface); + if (lv_info) + { + lv_info->level = level; + lv_info->wait_for_done = EINA_FALSE; + lv_info->state = state; + } + + if (state != TIZEN_POLICY_ERROR_STATE_PERMISSION_DENIED) return; + + cb_info = _cb_info_find_by_wlsurf((void *)surface, CBH_NOTI_LEV); + if (!cb_info) return; + if (!cb_info->cb) return; + + cb_info->cb(cb_info->win, + EFL_UTIL_ERROR_PERMISSION_DENIED, + cb_info->data); } -void efl_util_set_system_notification_level (Evas_Object *obj, Efl_Util_Notification_Level level) +/* LCOV_EXCL_START */ +static void +_cb_wl_tz_policy_transient_for_done(void *data, struct tizen_policy *tizen_policy, uint32_t child_id) +{ +} +/* LCOV_EXCL_STOP */ + +static void +_cb_wl_tz_policy_scr_mode_done(void *data, + struct tizen_policy *tizen_policy, + struct wl_surface *surface, + uint32_t mode, + uint32_t state) { - EINA_SAFETY_ON_NULL_RETURN(obj); - EINA_SAFETY_ON_FALSE_RETURN(level >= EFL_UTIL_NOTIFICATION_LEVEL_LOW && - level <= EFL_UTIL_NOTIFICATION_LEVEL_UNKNOWN); -#if ECORE_X_FOUND - Ecore_X_Window x_win; - Ecore_X_Display *x_disp; + Efl_Util_Wl_Surface_Scr_Mode_Info *scr_mode_info; + Efl_Util_Callback_Info *cb_info; - x_win = elm_win_xwindow_get(obj); - if (x_win) - { - x_disp = ecore_x_display_get(); - utilx_set_system_notification_level(x_disp, x_win, level); - return; - } -#endif + scr_mode_info = eina_hash_find(_eflutil.wl.policy.hash_scr_mode, &surface); + if (scr_mode_info) + { + scr_mode_info->mode = mode; + scr_mode_info->wait_for_done = EINA_FALSE; + scr_mode_info->state = state; + } -#if ECORE_WAYLAND_FOUND - Ecore_Wl_Window wl_win = elm_win_wl_window_get(obj); - if (wl_win) - { - printf("not implemented for wayland yet\n"); - } -#endif + if (state != TIZEN_POLICY_ERROR_STATE_PERMISSION_DENIED) return; + + cb_info = _cb_info_find_by_wlsurf((void *)surface, CBH_SCR_MODE); + if (!cb_info) return; + if (!cb_info->cb) return; + + cb_info->cb(cb_info->win, + EFL_UTIL_ERROR_PERMISSION_DENIED, + cb_info->data); } -Efl_Util_Notification_Level efl_util_get_system_notification_level (Evas_Object *obj) +/* LCOV_EXCL_START */ +static void _cb_wl_tz_policy_iconify_state_changed(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface_resource, uint32_t iconified, uint32_t force) { - EINA_SAFETY_ON_NULL_RETURN_VAL(obj, EFL_UTIL_NOTIFICATION_LEVEL_UNKNOWN); +} -#if ECORE_X_FOUND - Ecore_X_Window x_win; - Ecore_X_Display *x_disp; +static void _cb_wl_tz_policy_supported_aux_hints(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface_resource, struct wl_array *hints, uint32_t num_hints) +{ +} - x_win = elm_win_xwindow_get(obj); - if (x_win) - { - x_disp = ecore_x_display_get(); - return utilx_get_system_notification_level(x_disp, x_win); - } +static void _cb_wl_tz_policy_allowed_aux_hint(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface_resource, int id) +{ +} -#endif +static void _cb_wl_tz_policy_aux_message(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface_resource, const char *key, const char *val, struct wl_array *options) +{ +} +static void _cb_wl_conformant_region(void *data, struct tizen_policy *tizen_policy, struct wl_surface *surface, uint32_t conformant_part, uint32_t state, int32_t x, int32_t y, int32_t w, int32_t h, uint32_t serial) +{ +} +/* LCOV_EXCL_STOP */ + +static void +_cb_wl_tz_display_policy_brightness_done(void *data, + struct tizen_display_policy *tizen_display_policy, + struct wl_surface *surface, + int32_t brightness, + uint32_t state) +{ + Efl_Util_Wl_Surface_Brightness_Info *brightness_info; + + brightness_info = eina_hash_find(_eflutil.wl.display_policy.hash_brightness, &surface); + if (brightness_info) + { + brightness_info->brightness = brightness; + brightness_info->wait_for_done = EINA_FALSE; + brightness_info->state = state; + } +} -#if ECORE_WAYLAND_FOUND - Ecore_Wl_Window wl_win = elm_win_wl_window_get(obj); - if (wl_win) - { - printf("not implemented for wayland yet\n"); - return EFL_UTIL_NOTIFICATION_LEVEL_UNKNOWN; - } -#endif +static void +_cb_window_del(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED) +{ + Efl_Util_Wl_Surface_Lv_Info *lv_info; + + lv_info = data; + if (EINA_UNLIKELY(!lv_info)) + return; - return EFL_UTIL_NOTIFICATION_LEVEL_UNKNOWN; + eina_hash_del(_eflutil.wl.policy.hash_noti_lv, &lv_info->surface, lv_info); } -void efl_util_netwm_window_type_set(Evas_Object *obj, Efl_Util_Window_Type type) +API int +efl_util_set_notification_window_level(Evas_Object *window, + efl_util_notification_level_e level) { - EINA_SAFETY_ON_NULL_RETURN(obj); - EINA_SAFETY_ON_FALSE_RETURN(type == EFL_UTIL_WINDOW_TYPE_NORMAL || - type == EFL_UTIL_WINDOW_TYPE_NOTIFICATION); + Eina_Bool res; + + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL((level >= EFL_UTIL_NOTIFICATION_LEVEL_NONE) && + (level <= EFL_UTIL_NOTIFICATION_LEVEL_TOP), + EFL_UTIL_ERROR_INVALID_PARAMETER); + + if (level == EFL_UTIL_NOTIFICATION_LEVEL_1) + { + dlog_print(DLOG_WARN, LOG_TAG, + "DEPRECATION WARNING: EFL_UTIL_NOTIFICATION_LEVEL_1 is deprecated and will be removed from next release. Use EFL_UTIL_NOTIFICATION_LEVEL_DEFAULT instead."); + } + else if (level == EFL_UTIL_NOTIFICATION_LEVEL_2) + { + dlog_print(DLOG_WARN, LOG_TAG, + "DEPRECATION WARNING: EFL_UTIL_NOTIFICATION_LEVEL_2 is deprecated and will be removed from next release. Use EFL_UTIL_NOTIFICATION_LEVEL_MEDIUM instead."); + } + else if (level == EFL_UTIL_NOTIFICATION_LEVEL_3) + { + dlog_print(DLOG_WARN, LOG_TAG, + "DEPRECATION WARNING: EFL_UTIL_NOTIFICATION_LEVEL_3 is deprecated and will be removed from next release. Use EFL_UTIL_NOTIFICATION_LEVEL_TOP instead."); + } + + Elm_Win_Type type; + Ecore_Wl2_Window *wlwin; + struct wl_surface *surface; + Efl_Util_Wl_Surface_Lv_Info *lv_info; + Ecore_Wl2_Window_Type wl_type; + + res = _wl_init(); + EINA_SAFETY_ON_FALSE_RETURN_VAL(res, EFL_UTIL_ERROR_INVALID_PARAMETER); + + wlwin = (Ecore_Wl2_Window *)elm_win_wl_window_get(window); + EINA_SAFETY_ON_NULL_RETURN_VAL(wlwin, EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE); + + type = elm_win_type_get(window); + if (type != ELM_WIN_NOTIFICATION) + { + wl_type = ecore_wl2_window_type_get(wlwin); + EINA_SAFETY_ON_FALSE_RETURN_VAL((wl_type == ECORE_WL2_WINDOW_TYPE_NOTIFICATION), + EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE); + } + + while (!_eflutil.wl.policy.proto) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + surface = ecore_wl2_window_surface_get(wlwin); + EINA_SAFETY_ON_NULL_RETURN_VAL(surface, + EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE); + + lv_info = eina_hash_find(_eflutil.wl.policy.hash_noti_lv, &surface); + if (!lv_info) + { + lv_info = calloc(1, sizeof(Efl_Util_Wl_Surface_Lv_Info)); + EINA_SAFETY_ON_NULL_RETURN_VAL(lv_info, EFL_UTIL_ERROR_OUT_OF_MEMORY); + + lv_info->surface = surface; + lv_info->level = (int)level; + lv_info->wait_for_done = EINA_TRUE; + lv_info->state = TIZEN_POLICY_ERROR_STATE_NONE; + eina_hash_add(_eflutil.wl.policy.hash_noti_lv, + &surface, + lv_info); + + evas_object_event_callback_add(window, EVAS_CALLBACK_DEL, + _cb_window_del, lv_info); + } + else + { + lv_info->level = (int)level; + lv_info->wait_for_done = EINA_TRUE; + lv_info->state = TIZEN_POLICY_ERROR_STATE_NONE; + } + + + tizen_policy_set_notification_level(_eflutil.wl.policy.proto, + surface, (int)level); + + if (lv_info->wait_for_done) + { + int count = 0; + while (lv_info->wait_for_done && (count < 3)) + { + ecore_wl2_display_flush(_eflutil.wl.wl2_display); + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + count++; + } + + if (lv_info->wait_for_done) + { + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + else + { + if (lv_info->state == TIZEN_POLICY_ERROR_STATE_PERMISSION_DENIED) + { + return EFL_UTIL_ERROR_PERMISSION_DENIED; + } + } + } + + return EFL_UTIL_ERROR_NONE; +} -#if ECORE_X_FOUND - Ecore_X_Window x_win; +API int +efl_util_get_notification_window_level(Evas_Object *window, + efl_util_notification_level_e *level) +{ + Eina_Bool res; + + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(level, EFL_UTIL_ERROR_INVALID_PARAMETER); + + Elm_Win_Type type; + Ecore_Wl2_Window *wlwin; + struct wl_surface *surface; + Efl_Util_Wl_Surface_Lv_Info *lv_info; + Ecore_Wl2_Window_Type wl_type; + + res = _wl_init(); + EINA_SAFETY_ON_FALSE_RETURN_VAL(res, EFL_UTIL_ERROR_INVALID_PARAMETER); + + wlwin = (Ecore_Wl2_Window *)elm_win_wl_window_get(window); + EINA_SAFETY_ON_NULL_RETURN_VAL(wlwin, EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE); + + type = elm_win_type_get(window); + if (type != ELM_WIN_NOTIFICATION) + { + wl_type = ecore_wl2_window_type_get(wlwin); + EINA_SAFETY_ON_FALSE_RETURN_VAL((wl_type == ECORE_WL2_WINDOW_TYPE_NOTIFICATION), + EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE); + } + + while (!_eflutil.wl.policy.proto) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + surface = ecore_wl2_window_surface_get(wlwin); + EINA_SAFETY_ON_NULL_RETURN_VAL(surface, + EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE); + + lv_info = eina_hash_find(_eflutil.wl.policy.hash_noti_lv, &surface); + if (lv_info) + { + if (lv_info->wait_for_done) + { + int count = 0; + while ((lv_info->wait_for_done) && (count < 3)) + { + ecore_wl2_display_flush(_eflutil.wl.wl2_display); + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + count++; + } + + if (lv_info->wait_for_done) + { + *level = EFL_UTIL_NOTIFICATION_LEVEL_DEFAULT; + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + } + + switch (lv_info->level) + { + case TIZEN_POLICY_LEVEL_1: *level = EFL_UTIL_NOTIFICATION_LEVEL_1; break; + case TIZEN_POLICY_LEVEL_2: *level = EFL_UTIL_NOTIFICATION_LEVEL_2; break; + case TIZEN_POLICY_LEVEL_3: *level = EFL_UTIL_NOTIFICATION_LEVEL_3; break; + case TIZEN_POLICY_LEVEL_NONE: *level = EFL_UTIL_NOTIFICATION_LEVEL_NONE; break; + case TIZEN_POLICY_LEVEL_DEFAULT: *level = EFL_UTIL_NOTIFICATION_LEVEL_DEFAULT; break; + case TIZEN_POLICY_LEVEL_MEDIUM: *level = EFL_UTIL_NOTIFICATION_LEVEL_MEDIUM; break; + case TIZEN_POLICY_LEVEL_HIGH: *level = EFL_UTIL_NOTIFICATION_LEVEL_HIGH; break; + case TIZEN_POLICY_LEVEL_TOP: *level = EFL_UTIL_NOTIFICATION_LEVEL_TOP; break; + default: *level = EFL_UTIL_NOTIFICATION_LEVEL_DEFAULT; + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + return EFL_UTIL_ERROR_NONE; + } + else + *level = EFL_UTIL_NOTIFICATION_LEVEL_DEFAULT; + + return EFL_UTIL_ERROR_NONE; +} - x_win = elm_win_xwindow_get(obj); - if (x_win) - { - ecore_x_netwm_window_type_set(x_win, type); - return; - } +API int +efl_util_set_notification_window_level_error_cb(Evas_Object *window, + efl_util_notification_window_level_error_cb callback, + void *user_data) +{ + dlog_print(DLOG_WARN, LOG_TAG, + "DEPRECATION WARNING: efl_util_set_notification_window_level_error_cb() is deprecated and will be removed from next release. Use the return value of efl_util_set_notification_window_level() instead."); -#endif + Eina_Bool ret = EINA_FALSE; -#if ECORE_WAYLAND_FOUND - Ecore_Wl_Window wl_win = elm_win_wl_window_get(obj); - if (wl_win) - printf("not implemented for wayland yet\n"); -#endif + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(callback, EFL_UTIL_ERROR_INVALID_PARAMETER); + + ret = _cb_info_add(window, + (Efl_Util_Cb)callback, + user_data, + CBH_NOTI_LEV); + if (!ret) return EFL_UTIL_ERROR_OUT_OF_MEMORY; + + return EFL_UTIL_ERROR_NONE; } -void efl_util_set_window_effect_style(Evas_Object *win, Efl_Util_Effect_Type type, Efl_Util_Effect_Style style) +API int +efl_util_unset_notification_window_level_error_cb(Evas_Object *window) { + dlog_print(DLOG_WARN, LOG_TAG, + "DEPRECATION WARNING: efl_util_unset_notification_window_level_error_cb() is deprecated and will be removed from next release. Use the return value of efl_util_set_notification_window_level() instead."); - EINA_SAFETY_ON_NULL_RETURN(win); + Eina_Bool ret = EINA_FALSE; -#if ECORE_X_FOUND - Ecore_X_Window x_win; - Ecore_X_Display *x_disp; + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); - x_win = elm_win_xwindow_get(win); - if (x_win) - { - x_disp = ecore_x_display_get(); - utilx_set_window_effect_style(x_disp, x_win, type, style); - return; - } -#endif + ret = _cb_info_del_by_win(window, CBH_NOTI_LEV); + if (!ret) return EFL_UTIL_ERROR_INVALID_PARAMETER; -#if ECORE_WAYLAND_FOUND - Ecore_Wl_Window wl_win = elm_win_wl_window_get(win); - if (wl_win) - printf("not implemented for wayland yet\n"); -#endif + return EFL_UTIL_ERROR_NONE; } -int efl_util_set_window_opaque_state (Evas_Object *win, Efl_Util_Opaque_State state) +API int +efl_util_set_window_opaque_state(Evas_Object *window, + int opaque) { - EINA_SAFETY_ON_NULL_RETURN_VAL(win, 0); + Eina_Bool res; -#if ECORE_X_FOUND - Ecore_X_Window x_win; - Ecore_X_Display *x_disp; + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(((opaque >= 0) && (opaque <= 1)), + EFL_UTIL_ERROR_INVALID_PARAMETER); - x_win = elm_win_xwindow_get(win); - if (x_win) - { - x_disp = ecore_x_display_get(); - return utilx_set_window_opaque_state(x_disp, x_win, state); - } -#endif + Ecore_Wl2_Window *wlwin; + struct wl_surface *surface; -#if ECORE_WAYLAND_FOUND - Ecore_Wl_Window wl_win = elm_win_wl_window_get(win); - if (wl_win) - printf("not implemented for wayland yet\n"); -#endif + if (!_eflutil.wl.policy.proto) + { + int ret = 0; + + res = _wl_init(); + EINA_SAFETY_ON_FALSE_RETURN_VAL(res, EFL_UTIL_ERROR_INVALID_PARAMETER); + + while (!_eflutil.wl.policy.proto && ret != -1) + ret = wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.policy.proto, EFL_UTIL_ERROR_INVALID_PARAMETER); + } - return 0; + wlwin = (Ecore_Wl2_Window *)elm_win_wl_window_get(window); + if (!wlwin) + return EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE; + + surface = ecore_wl2_window_surface_get(wlwin); + if (!surface) + return EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE; + + tizen_policy_set_opaque_state(_eflutil.wl.policy.proto, surface, opaque); + + return EFL_UTIL_ERROR_NONE; } -#if ECORE_X_FOUND -static Eina_Bool _efl_util_client_message(void *data, int type, void *event) +API int +efl_util_set_window_screen_mode(Evas_Object *window, + efl_util_screen_mode_e mode) { - Ecore_X_Event_Client_Message *ev; + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(((mode >= EFL_UTIL_SCREEN_MODE_DEFAULT) && + (mode <= EFL_UTIL_SCREEN_MODE_ALWAYS_ON)), + EFL_UTIL_ERROR_INVALID_PARAMETER); + + Ecore_Wl2_Window *wlwin; + struct wl_surface *surface; + Efl_Util_Wl_Surface_Scr_Mode_Info *scr_mode_info; + Eina_Bool res; + + res = _wl_init(); + EINA_SAFETY_ON_FALSE_RETURN_VAL(res, EFL_UTIL_ERROR_INVALID_PARAMETER); + + wlwin = (Ecore_Wl2_Window *)elm_win_wl_window_get(window); + if (wlwin) + { + while (!_eflutil.wl.policy.proto) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + surface = ecore_wl2_window_surface_get(wlwin); + EINA_SAFETY_ON_NULL_RETURN_VAL(surface, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + scr_mode_info = eina_hash_find(_eflutil.wl.policy.hash_scr_mode, &surface); + if (!scr_mode_info) + { + scr_mode_info = calloc(1, sizeof(Efl_Util_Wl_Surface_Scr_Mode_Info)); + EINA_SAFETY_ON_NULL_RETURN_VAL(scr_mode_info, EFL_UTIL_ERROR_OUT_OF_MEMORY); + + scr_mode_info->surface = surface; + scr_mode_info->mode = (unsigned int)mode; + scr_mode_info->wait_for_done = EINA_TRUE; + scr_mode_info->state = TIZEN_POLICY_ERROR_STATE_NONE; + + eina_hash_add(_eflutil.wl.policy.hash_scr_mode, + &surface, + scr_mode_info); + } + else + { + scr_mode_info->mode = (unsigned int)mode; + scr_mode_info->wait_for_done = EINA_TRUE; + scr_mode_info->state = TIZEN_POLICY_ERROR_STATE_NONE; + } + + tizen_policy_set_window_screen_mode(_eflutil.wl.policy.proto, + surface, (unsigned int)mode); + if (scr_mode_info->wait_for_done) + { + int count = 0; + while (scr_mode_info->wait_for_done && (count < 3)) + { + ecore_wl2_display_flush(_eflutil.wl.wl2_display); + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + count++; + } + + if (scr_mode_info->wait_for_done) + { + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + else + { + if (scr_mode_info->state == TIZEN_POLICY_ERROR_STATE_PERMISSION_DENIED) + { + return EFL_UTIL_ERROR_PERMISSION_DENIED; + } + } + } + + return EFL_UTIL_ERROR_NONE; + } + else + return EFL_UTIL_ERROR_INVALID_PARAMETER; +} - ev = event; - if (!ev) return ECORE_CALLBACK_PASS_ON; +API int +efl_util_get_window_screen_mode(Evas_Object *window, + efl_util_screen_mode_e *mode) +{ + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(mode, EFL_UTIL_ERROR_INVALID_PARAMETER); + + Ecore_Wl2_Window *wlwin; + struct wl_surface *surface; + Efl_Util_Wl_Surface_Scr_Mode_Info *scr_mode_info; + Eina_Bool res; + + res = _wl_init(); + EINA_SAFETY_ON_FALSE_RETURN_VAL(res, EFL_UTIL_ERROR_INVALID_PARAMETER); + + wlwin = (Ecore_Wl2_Window *)elm_win_wl_window_get(window); + if (wlwin) + { + while (!_eflutil.wl.policy.proto) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + surface = ecore_wl2_window_surface_get(wlwin); + EINA_SAFETY_ON_NULL_RETURN_VAL(surface, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + scr_mode_info = eina_hash_find(_eflutil.wl.policy.hash_scr_mode, &surface); + if (scr_mode_info) + { + if (scr_mode_info->wait_for_done) + { + while (scr_mode_info->wait_for_done) + { + ecore_wl2_display_flush(_eflutil.wl.wl2_display); + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + } + } + + switch (scr_mode_info->mode) + { + case TIZEN_POLICY_MODE_DEFAULT: *mode = EFL_UTIL_SCREEN_MODE_DEFAULT; break; + case TIZEN_POLICY_MODE_ALWAYS_ON: *mode = EFL_UTIL_SCREEN_MODE_ALWAYS_ON; break; + default: *mode = EFL_UTIL_SCREEN_MODE_DEFAULT; + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + return EFL_UTIL_ERROR_NONE; + } + else + { + *mode = EFL_UTIL_SCREEN_MODE_DEFAULT; + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + } + else + return EFL_UTIL_ERROR_INVALID_PARAMETER; +} + +API int +efl_util_set_window_screen_mode_error_cb(Evas_Object *window, + efl_util_window_screen_mode_error_cb callback, + void *user_data) +{ + /* Wearable device cannot use this. */ + if (get_tizen_profile() == TIZEN_PROFILE_WEARABLE) + return EFL_UTIL_ERROR_NO_SUCH_DEVICE; - if (ev->message_type == _noti_level_access_result_atom) - { - Ecore_X_Window xwin; - xwin = ev->win; + dlog_print(DLOG_WARN, LOG_TAG, + "DEPRECATION WARNING: efl_util_set_window_screen_mode_error_cb() is deprecated and will be removed from next release. Use the return value of efl_util_set_window_screen_mode() instead."); - notification_error_cb_info *cb_info = NULL; - cb_info = _notification_error_cb_info_find_by_xwin(xwin); - if (cb_info) - { - int access = ev->data.l[1]; - if (access == 0) // permission denied - { - if (cb_info->err_cb) - { - cb_info->err_cb(cb_info->window, EFL_UTIL_ERROR_PERMISSION_DENIED, cb_info->user_data); - } - } - } - } + Eina_Bool ret = EINA_FALSE; - return ECORE_CALLBACK_PASS_ON; + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(callback, EFL_UTIL_ERROR_INVALID_PARAMETER); + + ret = _cb_info_add(window, + (Efl_Util_Cb)callback, + user_data, + CBH_SCR_MODE); + if (!ret) return EFL_UTIL_ERROR_OUT_OF_MEMORY; + + return EFL_UTIL_ERROR_NONE; } -static notification_error_cb_info *_notification_error_cb_info_find_by_xwin(unsigned int xwin) +API int +efl_util_unset_window_screen_mode_error_cb(Evas_Object *window) { - Eina_List *l; - notification_error_cb_info* temp; - unsigned int temp_xwin; + /* Wearable device cannot use this. */ + if (get_tizen_profile() == TIZEN_PROFILE_WEARABLE) + return EFL_UTIL_ERROR_NO_SUCH_DEVICE; + + dlog_print(DLOG_WARN, LOG_TAG, + "DEPRECATION WARNING: efl_util_unset_window_screen_mode_error_cb() is deprecated and will be removed from next release. Use the return value of efl_util_set_window_screen_mode() instead."); + + Eina_Bool ret = EINA_FALSE; - EINA_LIST_FOREACH(_g_notification_error_cb_info_list, l, temp) - { - if (temp->window) - { - temp_xwin = elm_win_xwindow_get(temp->window); - if (xwin == temp_xwin) - { - return temp; - } - } - } + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); - return NULL; + ret = _cb_info_del_by_win(window, CBH_SCR_MODE); + if (!ret) return EFL_UTIL_ERROR_INVALID_PARAMETER; + + return EFL_UTIL_ERROR_NONE; } -#endif -static notification_error_cb_info *_notification_error_cb_info_find(Evas_Object *window) +API int +efl_util_set_window_brightness(Evas_Object *window, int brightness) +{ + Ecore_Wl2_Window *wlwin; + struct wl_surface *surface; + Efl_Util_Wl_Surface_Brightness_Info *brightness_info; + Eina_Bool res; + + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(brightness <= 100, EFL_UTIL_ERROR_INVALID_PARAMETER); + + res = _wl_init(); + EINA_SAFETY_ON_FALSE_RETURN_VAL(res, EFL_UTIL_ERROR_INVALID_PARAMETER); + + wlwin = (Ecore_Wl2_Window *)elm_win_wl_window_get(window); + if (wlwin) + { + while (!_eflutil.wl.display_policy.proto) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + surface = ecore_wl2_window_surface_get(wlwin); + EINA_SAFETY_ON_NULL_RETURN_VAL(surface, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + brightness_info = eina_hash_find(_eflutil.wl.display_policy.hash_brightness, &surface); + if (!brightness_info) + { + brightness_info = calloc(1, sizeof(Efl_Util_Wl_Surface_Brightness_Info)); + EINA_SAFETY_ON_NULL_RETURN_VAL(brightness_info, EFL_UTIL_ERROR_OUT_OF_MEMORY); + + brightness_info->surface = surface; + brightness_info->brightness = brightness; + brightness_info->wait_for_done = EINA_TRUE; + brightness_info->state = TIZEN_DISPLAY_POLICY_ERROR_STATE_NONE; + + eina_hash_add(_eflutil.wl.display_policy.hash_brightness, + &surface, + brightness_info); + } + else + { + brightness_info->brightness = brightness; + brightness_info->wait_for_done = EINA_TRUE; + brightness_info->state = TIZEN_DISPLAY_POLICY_ERROR_STATE_NONE; + } + + tizen_display_policy_set_window_brightness(_eflutil.wl.display_policy.proto, + surface, brightness); + if (brightness_info->wait_for_done) + { + int count = 0; + while (brightness_info->wait_for_done && (count < 3)) + { + ecore_wl2_display_flush(_eflutil.wl.wl2_display); + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + count++; + } + + if (brightness_info->wait_for_done) + { + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + else + { + if (brightness_info->state == TIZEN_DISPLAY_POLICY_ERROR_STATE_PERMISSION_DENIED) + { + return EFL_UTIL_ERROR_PERMISSION_DENIED; + } + } + } + return EFL_UTIL_ERROR_NONE; + } + else + return EFL_UTIL_ERROR_INVALID_PARAMETER; +} + +API int +efl_util_get_window_brightness(Evas_Object *window, int *brightness) +{ + Ecore_Wl2_Window *wlwin; + struct wl_surface *surface; + Efl_Util_Wl_Surface_Brightness_Info *brightness_info; + Eina_Bool res; + + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(brightness, EFL_UTIL_ERROR_INVALID_PARAMETER); + + res = _wl_init(); + EINA_SAFETY_ON_FALSE_RETURN_VAL(res, EFL_UTIL_ERROR_INVALID_PARAMETER); + + wlwin = (Ecore_Wl2_Window *)elm_win_wl_window_get(window); + if (!wlwin) return EFL_UTIL_ERROR_INVALID_PARAMETER; + + while (!_eflutil.wl.display_policy.proto) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + surface = ecore_wl2_window_surface_get(wlwin); + EINA_SAFETY_ON_NULL_RETURN_VAL(surface, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + brightness_info = eina_hash_find(_eflutil.wl.display_policy.hash_brightness, &surface); + if (brightness_info) + { + if (brightness_info->wait_for_done) + { + while (brightness_info->wait_for_done) + { + ecore_wl2_display_flush(_eflutil.wl.wl2_display); + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + } + } + *brightness = brightness_info->brightness; + } + else + *brightness = -1; + + return EFL_UTIL_ERROR_NONE; +} + + +struct _efl_util_inputgen_h +{ + unsigned int init_type; + char name[32]; +}; + +static void +_cb_device_add(void *data EINA_UNUSED, + struct tizen_input_device_manager *tizen_input_device_manager EINA_UNUSED, + uint32_t serial EINA_UNUSED, + const char *identifier EINA_UNUSED, + struct tizen_input_device *device EINA_UNUSED, + struct wl_seat *seat EINA_UNUSED) +{ + ; +} + +/* LCOV_EXCL_START */ +static void +_cb_device_remove(void *data EINA_UNUSED, + struct tizen_input_device_manager *tizen_input_device_manager EINA_UNUSED, + uint32_t serial EINA_UNUSED, + const char *identifier EINA_UNUSED, + struct tizen_input_device *device EINA_UNUSED, + struct wl_seat *seat EINA_UNUSED) +{ + ; +} +/* LCOV_EXCL_STOP */ + +static void +_cb_error(void *data EINA_UNUSED, + struct tizen_input_device_manager *tizen_input_device_manager EINA_UNUSED, + uint32_t errorcode) +{ + _eflutil.wl.devmgr.request_notified = errorcode; +} + +/* LCOV_EXCL_START */ +static void +_cb_block_expired(void *data EINA_UNUSED, + struct tizen_input_device_manager *tizen_input_device_manager EINA_UNUSED) +{ + ; +} +/* LCOV_EXCL_STOP */ + +static efl_util_error_e +_efl_util_input_convert_input_generator_error(int ret) +{ + switch (ret) + { + case TIZEN_INPUT_DEVICE_MANAGER_ERROR_NONE: + return EFL_UTIL_ERROR_NONE; + case TIZEN_INPUT_DEVICE_MANAGER_ERROR_NO_PERMISSION: + return EFL_UTIL_ERROR_PERMISSION_DENIED; + case TIZEN_INPUT_DEVICE_MANAGER_ERROR_NO_SYSTEM_RESOURCES: + return EFL_UTIL_ERROR_OUT_OF_MEMORY; + case TIZEN_INPUT_DEVICE_MANAGER_ERROR_INVALID_PARAMETER: + return EFL_UTIL_ERROR_INVALID_PARAMETER; + default : + return EFL_UTIL_ERROR_NONE; + } +} + +API efl_util_inputgen_h +efl_util_input_initialize_generator(unsigned int dev_type) +{ + int ret = EFL_UTIL_ERROR_NONE; + efl_util_inputgen_h inputgen_h = NULL; + unsigned int clas = 0x0; + + if (!dev_type || + dev_type & ~(EFL_UTIL_INPUT_DEVTYPE_TOUCHSCREEN + | EFL_UTIL_INPUT_DEVTYPE_KEYBOARD + | EFL_UTIL_INPUT_DEVTYPE_POINTER)) + { + set_last_result(EFL_UTIL_ERROR_NO_SUCH_DEVICE); + goto out; + } + + inputgen_h = (efl_util_inputgen_h)calloc(1, sizeof(struct _efl_util_inputgen_h)); + if (!inputgen_h) + { + set_last_result(EFL_UTIL_ERROR_OUT_OF_MEMORY); + goto out; + } + + inputgen_h->init_type |= dev_type; + + ret = _wl_init(); + if (ret == (int)EINA_FALSE) + { + set_last_result(EFL_UTIL_ERROR_INVALID_PARAMETER); + goto out; + } + + if (dev_type & EFL_UTIL_INPUT_DEVTYPE_TOUCHSCREEN) + clas |= TIZEN_INPUT_DEVICE_MANAGER_CLAS_TOUCHSCREEN; + if (dev_type & EFL_UTIL_INPUT_DEVTYPE_KEYBOARD) + clas |= TIZEN_INPUT_DEVICE_MANAGER_CLAS_KEYBOARD; + if (dev_type & EFL_UTIL_INPUT_DEVTYPE_POINTER) + clas |= TIZEN_INPUT_DEVICE_MANAGER_CLAS_MOUSE; + + while (!_eflutil.wl.devmgr.devicemgr) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + tizen_input_device_manager_init_generator(_eflutil.wl.devmgr.devicemgr, clas); + + while (_eflutil.wl.devmgr.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_input_convert_input_generator_error(_eflutil.wl.devmgr.request_notified); + _eflutil.wl.devmgr.request_notified = -1; + + set_last_result(ret); + if (ret != TIZEN_INPUT_DEVICE_MANAGER_ERROR_NONE) + goto out; + + return inputgen_h; + +out: + if (inputgen_h) + { + free(inputgen_h); + inputgen_h = NULL; + } + return NULL; +} + +API efl_util_inputgen_h +efl_util_input_initialize_generator_with_name(unsigned int dev_type, const char *name) +{ + int ret = EFL_UTIL_ERROR_NONE; + efl_util_inputgen_h inputgen_h = NULL; + unsigned int clas = 0x0; + + if (!dev_type || + dev_type & ~(EFL_UTIL_INPUT_DEVTYPE_TOUCHSCREEN + | EFL_UTIL_INPUT_DEVTYPE_KEYBOARD + | EFL_UTIL_INPUT_DEVTYPE_POINTER)) + { + set_last_result(EFL_UTIL_ERROR_NO_SUCH_DEVICE); + goto out; + } + + inputgen_h = (efl_util_inputgen_h)calloc(1, sizeof(struct _efl_util_inputgen_h)); + if (!inputgen_h) + { + set_last_result(EFL_UTIL_ERROR_OUT_OF_MEMORY); + goto out; + } + + inputgen_h->init_type |= dev_type; + strncpy(inputgen_h->name, name, 31); + + ret = _wl_init(); + if (ret == (int)EINA_FALSE) + { + set_last_result(EFL_UTIL_ERROR_INVALID_PARAMETER); + goto out; + } + + if (dev_type & EFL_UTIL_INPUT_DEVTYPE_TOUCHSCREEN) + clas |= TIZEN_INPUT_DEVICE_MANAGER_CLAS_TOUCHSCREEN; + if (dev_type & EFL_UTIL_INPUT_DEVTYPE_KEYBOARD) + clas |= TIZEN_INPUT_DEVICE_MANAGER_CLAS_KEYBOARD; + if (dev_type & EFL_UTIL_INPUT_DEVTYPE_POINTER) + clas |= TIZEN_INPUT_DEVICE_MANAGER_CLAS_MOUSE; + + while (!_eflutil.wl.devmgr.devicemgr) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + tizen_input_device_manager_init_generator_with_name(_eflutil.wl.devmgr.devicemgr, clas, inputgen_h->name); + + while (_eflutil.wl.devmgr.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_input_convert_input_generator_error(_eflutil.wl.devmgr.request_notified); + _eflutil.wl.devmgr.request_notified = -1; + + set_last_result(ret); + if (ret != TIZEN_INPUT_DEVICE_MANAGER_ERROR_NONE) + goto out; + + return inputgen_h; + +out: + if (inputgen_h) + { + free(inputgen_h); + inputgen_h = NULL; + } + return NULL; +} + + +API int +efl_util_input_deinitialize_generator(efl_util_inputgen_h inputgen_h) +{ + int ret = EFL_UTIL_ERROR_NONE; + unsigned int clas = 0x0; + EINA_SAFETY_ON_NULL_RETURN_VAL(inputgen_h, EFL_UTIL_ERROR_INVALID_PARAMETER); + + if (inputgen_h->init_type & EFL_UTIL_INPUT_DEVTYPE_TOUCHSCREEN) + clas |= TIZEN_INPUT_DEVICE_MANAGER_CLAS_TOUCHSCREEN; + if (inputgen_h->init_type & EFL_UTIL_INPUT_DEVTYPE_KEYBOARD) + clas |= TIZEN_INPUT_DEVICE_MANAGER_CLAS_KEYBOARD; + if (inputgen_h->init_type & EFL_UTIL_INPUT_DEVTYPE_POINTER) + clas |= TIZEN_INPUT_DEVICE_MANAGER_CLAS_MOUSE; + + free(inputgen_h); + inputgen_h = NULL; + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.devmgr.devicemgr, EFL_UTIL_ERROR_INVALID_PARAMETER); + + tizen_input_device_manager_deinit_generator(_eflutil.wl.devmgr.devicemgr, clas); + + while (_eflutil.wl.devmgr.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_input_convert_input_generator_error(_eflutil.wl.devmgr.request_notified); + _eflutil.wl.devmgr.request_notified = -1; + + return ret; +} + +API int +efl_util_input_generate_key(efl_util_inputgen_h inputgen_h, const char *key_name, int pressed) +{ + int ret = EFL_UTIL_ERROR_NONE; + + EINA_SAFETY_ON_NULL_RETURN_VAL(inputgen_h, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(key_name, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(pressed == 0 || pressed == 1, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(inputgen_h->init_type & EFL_UTIL_INPUT_DEVTYPE_KEYBOARD, EFL_UTIL_ERROR_NO_SUCH_DEVICE); + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.devmgr.devicemgr, EFL_UTIL_ERROR_INVALID_PARAMETER); + + tizen_input_device_manager_generate_key(_eflutil.wl.devmgr.devicemgr, key_name, pressed); + + while (_eflutil.wl.devmgr.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_input_convert_input_generator_error(_eflutil.wl.devmgr.request_notified); + _eflutil.wl.devmgr.request_notified = -1; + + return ret; +} + +API int +efl_util_input_generate_touch(efl_util_inputgen_h inputgen_h, int idx, + efl_util_input_touch_type_e touch_type, int x, int y) +{ + int ret; + enum tizen_input_device_manager_pointer_event_type type; + + EINA_SAFETY_ON_NULL_RETURN_VAL(inputgen_h, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(idx >= 0, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL((x > 0 && y > 0), EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(inputgen_h->init_type & EFL_UTIL_INPUT_DEVTYPE_TOUCHSCREEN, EFL_UTIL_ERROR_NO_SUCH_DEVICE); + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.devmgr.devicemgr, EFL_UTIL_ERROR_INVALID_PARAMETER); + + switch(touch_type) + { + case EFL_UTIL_INPUT_TOUCH_BEGIN: + type = TIZEN_INPUT_DEVICE_MANAGER_POINTER_EVENT_TYPE_BEGIN; + break; + case EFL_UTIL_INPUT_TOUCH_UPDATE: + type = TIZEN_INPUT_DEVICE_MANAGER_POINTER_EVENT_TYPE_UPDATE; + break; + case EFL_UTIL_INPUT_TOUCH_END: + type = TIZEN_INPUT_DEVICE_MANAGER_POINTER_EVENT_TYPE_END; + break; + default: + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + tizen_input_device_manager_generate_touch(_eflutil.wl.devmgr.devicemgr, type, x, y, idx); + + while (_eflutil.wl.devmgr.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_input_convert_input_generator_error(_eflutil.wl.devmgr.request_notified); + _eflutil.wl.devmgr.request_notified = -1; + + return ret; +} + +API int +efl_util_input_generate_pointer(efl_util_inputgen_h inputgen_h, int buttons, efl_util_input_pointer_type_e pointer_type, int x, int y) +{ + int ret; + enum tizen_input_device_manager_pointer_event_type type; + + EINA_SAFETY_ON_NULL_RETURN_VAL(inputgen_h, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(buttons > 0, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL((x >= 0 && y >= 0), EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(inputgen_h->init_type & EFL_UTIL_INPUT_DEVTYPE_POINTER, EFL_UTIL_ERROR_NO_SUCH_DEVICE); + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.devmgr.devicemgr, EFL_UTIL_ERROR_INVALID_PARAMETER); + + switch(pointer_type) + { + case EFL_UTIL_INPUT_POINTER_BUTTON_DOWN: + type = TIZEN_INPUT_DEVICE_MANAGER_POINTER_EVENT_TYPE_BEGIN; + break; + case EFL_UTIL_INPUT_POINTER_MOVE: + type = TIZEN_INPUT_DEVICE_MANAGER_POINTER_EVENT_TYPE_UPDATE; + break; + case EFL_UTIL_INPUT_POINTER_BUTTON_UP: + type = TIZEN_INPUT_DEVICE_MANAGER_POINTER_EVENT_TYPE_END; + break; + default: + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + tizen_input_device_manager_generate_pointer(_eflutil.wl.devmgr.devicemgr, type, x, y, buttons); + + while (_eflutil.wl.devmgr.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_input_convert_input_generator_error(_eflutil.wl.devmgr.request_notified); + _eflutil.wl.devmgr.request_notified = -1; + + return ret; +} + + +struct _efl_util_screenshot_h +{ + int width; + int height; + + Eina_Bool shot_done; + + /* tbm bufmgr */ + tbm_bufmgr bufmgr; + + Eina_Bool auto_rotation; +}; + +/* scrrenshot handle */ +static efl_util_screenshot_h g_screenshot; +static Eina_Bool shot_mutex_init; +static pthread_mutex_t shot_lock; + +static Eina_Bool +_screenshot_mutex_init(void) +{ + if (shot_mutex_init) + return EINA_TRUE; + + if (pthread_mutex_init(&shot_lock, NULL)) + { + fprintf(stderr, "[screenshot] fail: mutex init"); /*LCOV_EXCL_LINE*/ + return EINA_FALSE; /*LCOV_EXCL_LINE*/ + } + + shot_mutex_init = EINA_TRUE; + + return EINA_TRUE; +} + +static Eina_Bool +_screenshot_mutex_destory(void) +{ + if (!shot_mutex_init) + return EINA_TRUE; + + if (pthread_mutex_destroy(&shot_lock)) + { + fprintf(stderr, "[screenshot] fail: mutex destory"); /*LCOV_EXCL_LINE*/ + return EINA_FALSE; /*LCOV_EXCL_LINE*/ + } + + shot_mutex_init = EINA_FALSE; + + return EINA_TRUE; +} + +void +_screenshot_mutex_lock(void) +{ + if (!_screenshot_mutex_init()) + return; + + pthread_mutex_lock(&shot_lock); +} + +void +_screenshot_mutex_unlock(void) +{ + pthread_mutex_unlock(&shot_lock); +} + +API efl_util_screenshot_h +efl_util_screenshot_initialize(int width, int height) +{ + efl_util_screenshot_h screenshot = NULL; + struct wl_display *display_wrapper = NULL; + struct wl_registry *reg = NULL; + int ret = 0; + + EINA_SAFETY_ON_FALSE_GOTO(width > 0, fail_param); + EINA_SAFETY_ON_FALSE_GOTO(height > 0, fail_param); + + _screenshot_mutex_lock(); + + if (!_eflutil.wl.shot.screenshooter) + { + ret = _wl_init(); + if (ret == (int)EINA_FALSE) + { + set_last_result(EFL_UTIL_ERROR_INVALID_PARAMETER); + _screenshot_mutex_unlock(); + return NULL; + } + wl_display_roundtrip_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + display_wrapper = wl_proxy_create_wrapper(_eflutil.wl.dpy); + EINA_SAFETY_ON_NULL_GOTO(display_wrapper, fail_memory); + + _eflutil.wl.shot.queue = wl_display_create_queue(_eflutil.wl.dpy); + EINA_SAFETY_ON_NULL_GOTO(_eflutil.wl.shot.queue, fail_memory); + + wl_proxy_set_queue((struct wl_proxy *)display_wrapper, _eflutil.wl.shot.queue); + + reg = wl_display_get_registry(display_wrapper); + wl_proxy_wrapper_destroy(display_wrapper); + display_wrapper = NULL; + EINA_SAFETY_ON_NULL_GOTO(reg, fail_init); + + wl_registry_add_listener(reg, &_wl_reg_screenshooter_listener, NULL); + + ret = wl_display_roundtrip_queue(_eflutil.wl.dpy, _eflutil.wl.shot.queue); + EINA_SAFETY_ON_TRUE_GOTO(ret == -1, fail_init); + EINA_SAFETY_ON_NULL_GOTO(_eflutil.wl.shot.screenshooter, fail_init); + EINA_SAFETY_ON_NULL_GOTO(_eflutil.wl.shot.tz_screenshooter, fail_init); + + _eflutil.wl.shot.tbm_client = wayland_tbm_client_init(_eflutil.wl.dpy); + EINA_SAFETY_ON_NULL_GOTO(_eflutil.wl.shot.tbm_client, fail_init); + } + + if (_eflutil.wl.shot.noti == 0) + { + fprintf(stderr, "[screenshot] fail: privilege error\n"); /* LCOV_EXCL_LINE */ + goto fail_init; + } + + if (g_screenshot) + { + if (g_screenshot->width != width || g_screenshot->height != height) + { + g_screenshot->width = width; + g_screenshot->height = height; + } + + _screenshot_mutex_unlock(); + + return g_screenshot; + } + + screenshot = calloc(1, sizeof(struct _efl_util_screenshot_h)); + EINA_SAFETY_ON_NULL_GOTO(screenshot, fail_memory); + + screenshot->width = width; + screenshot->height = height; + screenshot->auto_rotation = EINA_TRUE; + + screenshot->bufmgr = wayland_tbm_client_get_bufmgr(_eflutil.wl.shot.tbm_client); + EINA_SAFETY_ON_NULL_GOTO(screenshot->bufmgr, fail_init); + + g_screenshot = screenshot; + set_last_result(EFL_UTIL_ERROR_NONE); + + screenshooter_set_user_data(_eflutil.wl.shot.screenshooter, &screenshot->shot_done); + + _screenshot_mutex_unlock(); + + return g_screenshot; + +fail_param: + set_last_result(EFL_UTIL_ERROR_INVALID_PARAMETER); + return NULL; +fail_memory: +/* LCOV_EXCL_START */ + if (display_wrapper) + wl_proxy_wrapper_destroy(display_wrapper); + set_last_result(EFL_UTIL_ERROR_OUT_OF_MEMORY); + return NULL; +fail_init: + if (screenshot) + efl_util_screenshot_deinitialize(screenshot); + _screenshot_mutex_unlock(); + set_last_result(EFL_UTIL_ERROR_SCREENSHOT_INIT_FAIL); + return NULL; +/* LCOV_EXCL_STOP */ +} + +API int +efl_util_screenshot_deinitialize(efl_util_screenshot_h screenshot) +{ + _screenshot_mutex_lock(); + + if (!screenshot) + { + _screenshot_mutex_unlock(); + _screenshot_mutex_destory(); + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + free(screenshot); + g_screenshot = NULL; + + if (_eflutil.wl.shot.queue) + { + wl_event_queue_destroy(_eflutil.wl.shot.queue); + _eflutil.wl.shot.queue = NULL; + } + + if (_eflutil.wl.shot.screenshooter) + { + screenshooter_destroy(_eflutil.wl.shot.screenshooter); + _eflutil.wl.shot.screenshooter = NULL; + } + if (_eflutil.wl.shot.tz_screenshooter) + { + tizen_screenshooter_destroy(_eflutil.wl.shot.tz_screenshooter); + _eflutil.wl.shot.tz_screenshooter = NULL; + } + + _screenshot_mutex_unlock(); + _screenshot_mutex_destory(); + + return EFL_UTIL_ERROR_NONE; +} + + +API tbm_surface_h +efl_util_screenshot_take_tbm_surface(efl_util_screenshot_h screenshot) +{ + tbm_surface_h t_surface = NULL; + struct wl_buffer *buffer = NULL; + Efl_Util_Wl_Output_Info *output; + int ret = 0; + + _screenshot_mutex_lock(); + + if (!screenshot || (screenshot != g_screenshot)) + { + set_last_result(EFL_UTIL_ERROR_INVALID_PARAMETER); + _screenshot_mutex_unlock(); + return NULL; + } + + output = eina_list_nth(_eflutil.wl.shot.output_list, 0); + if (!output) + { + fprintf(stderr, "[screenshot] fail: no output for screenshot\n"); /* LCOV_EXCL_LINE */ + goto fail; + } + + t_surface = tbm_surface_create(screenshot->width, screenshot->height, TBM_FORMAT_XRGB8888); + if (!t_surface) + { + fprintf(stderr, "[screenshot] fail: tbm_surface_create\n"); /* LCOV_EXCL_LINE */ + goto fail; + } + + buffer = wayland_tbm_client_create_buffer(_eflutil.wl.shot.tbm_client, t_surface); + if (!buffer) + { + fprintf(stderr, "[screenshot] fail: create wl_buffer for screenshot\n"); /* LCOV_EXCL_LINE */ + goto fail; + } + + screenshooter_shoot(_eflutil.wl.shot.screenshooter, output->output, buffer); + + screenshot->shot_done = EINA_FALSE; + while (!screenshot->shot_done && ret != -1) + ret = wl_display_roundtrip_queue(_eflutil.wl.dpy, _eflutil.wl.shot.queue); + + if (ret == -1) + { + fprintf(stderr, "[screenshot] fail: screenshooter_shoot\n"); /* LCOV_EXCL_LINE */ + goto fail; + } + + wl_buffer_destroy(buffer); + + /* reset shot_done for next screenshot */ + screenshot->shot_done = EINA_FALSE; + + set_last_result(EFL_UTIL_ERROR_NONE); + + _screenshot_mutex_unlock(); + + return t_surface; + +fail: + if (t_surface) + tbm_surface_destroy(t_surface); + if (buffer) + wl_buffer_destroy(buffer); + + set_last_result(EFL_UTIL_ERROR_SCREENSHOT_EXECUTION_FAIL); + + _screenshot_mutex_unlock(); + + return NULL; +} + +/* LCOV_EXCL_START */ +API int +efl_util_screenshot_set_auto_rotation(efl_util_screenshot_h screenshot, int set) +{ + if (!screenshot || (screenshot != g_screenshot)) + return EFL_UTIL_ERROR_INVALID_PARAMETER; + + if (!(set == 0 || set == 1)) + return EFL_UTIL_ERROR_INVALID_PARAMETER; + + if (set) + g_screenshot->auto_rotation = EINA_TRUE; + else + g_screenshot->auto_rotation = EINA_FALSE; + + tizen_screenshooter_set_oneshot_auto_rotation(_eflutil.wl.shot.tz_screenshooter, g_screenshot->auto_rotation); + + return EFL_UTIL_ERROR_NONE; +} + +API int +efl_util_screenshot_get_auto_rotation(efl_util_screenshot_h screenshot, int *set) +{ + if (!screenshot || (screenshot != g_screenshot) || !set) + return EFL_UTIL_ERROR_INVALID_PARAMETER; + + *set = g_screenshot->auto_rotation; + + return EFL_UTIL_ERROR_NONE; +} +/* LCOV_EXCL_STOP */ + +struct _efl_util_gesture_h { - Eina_List *l; - notification_error_cb_info* temp; + Eina_Bool init; +}; - EINA_LIST_FOREACH(_g_notification_error_cb_info_list, l, temp) - { - if (temp->window == window) - { - return temp; - } - } +API int EFL_UTIL_EVENT_GESTURE_EDGE_SWIPE = 0; +API int EFL_UTIL_EVENT_GESTURE_EDGE_DRAG = 0; +API int EFL_UTIL_EVENT_GESTURE_TAP = 0; +API int EFL_UTIL_EVENT_GESTURE_PALM_COVER = 0; - return NULL; +/* LCOV_EXCL_START */ +static void +_cb_gesture_edge_swipe_notify(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t fingers EINA_UNUSED, uint32_t edge EINA_UNUSED, uint32_t edge_size EINA_UNUSED, uint32_t start_point EINA_UNUSED, uint32_t end_point EINA_UNUSED, uint32_t error) +{ + _eflutil.wl.gesture.request_notified = error; } -static Eina_Bool _efl_util_notification_info_add(Evas_Object *window, efl_util_notification_window_level_error_cb callback, void *user_data) +static void +_cb_gesture_edge_swipe(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t mode, uint32_t fingers, int sx, int sy, uint32_t edge) { - notification_error_cb_info* _err_info = _notification_error_cb_info_find(window); + efl_util_event_gesture_edge_swipe_s *ev = NULL; + + ev = (efl_util_event_gesture_edge_swipe_s *)calloc(1, sizeof(*ev)); + if (!ev) return; - if (_err_info) - { - _g_notification_error_cb_info_list = eina_list_remove(_g_notification_error_cb_info_list, _err_info); - free(_err_info); - _err_info = NULL; - } + ev->mode = mode; - _err_info = (notification_error_cb_info*)calloc(1, sizeof(notification_error_cb_info)); - if (!_err_info) - { - return EINA_FALSE; - } - _err_info->window = window; - _err_info->err_cb = callback; - _err_info->user_data = user_data; + ev->fingers = fingers; + ev->sx = sx; + ev->sy = sy; + ev->edge = edge; - _g_notification_error_cb_info_list = eina_list_append(_g_notification_error_cb_info_list, _err_info); + ecore_event_add(EFL_UTIL_EVENT_GESTURE_EDGE_SWIPE, ev, NULL, NULL); +} - return EINA_TRUE; +static void +_cb_gesture_edge_drag_notify(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t fingers EINA_UNUSED, uint32_t edge EINA_UNUSED, uint32_t edge_size EINA_UNUSED, uint32_t start_point EINA_UNUSED, uint32_t end_point EINA_UNUSED, uint32_t error) +{ + _eflutil.wl.gesture.request_notified = error; } -static Eina_Bool _efl_util_notification_info_del(Evas_Object *window) +static void +_cb_gesture_edge_drag(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t mode, uint32_t fingers, int cx, int cy, uint32_t edge) { - notification_error_cb_info* _err_info = _notification_error_cb_info_find(window); - if (!_err_info) - { - return EINA_FALSE; - } + efl_util_event_gesture_edge_drag_s *ev = NULL; + + ev = (efl_util_event_gesture_edge_drag_s *)calloc(1, sizeof(*ev)); + if (!ev) return; + + ev->mode = mode; + + ev->fingers = fingers; + ev->cx = cx; + ev->cy = cy; + ev->edge = edge; + + ecore_event_add(EFL_UTIL_EVENT_GESTURE_EDGE_DRAG, ev, NULL, NULL); +} + +static void +_cb_gesture_tap_notify(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t fingers EINA_UNUSED, uint32_t repeat EINA_UNUSED, uint32_t error) +{ + _eflutil.wl.gesture.request_notified = error; +} + +static void +_cb_gesture_tap(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, uint32_t mode, uint32_t fingers, uint32_t repeats) +{ + efl_util_event_gesture_tap_s *ev = NULL; + + ev = (efl_util_event_gesture_tap_s *)calloc(1, sizeof(*ev)); + if (!ev) return; + + ev->mode = mode; + + ev->fingers = fingers; + ev->repeats = repeats; + + ecore_event_add(EFL_UTIL_EVENT_GESTURE_TAP, ev, NULL, NULL); +} +/* LCOV_EXCL_STOP */ + +static void +_cb_gesture_palm_cover_notify(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, struct wl_surface *surface EINA_UNUSED, uint32_t error) +{ + _eflutil.wl.gesture.request_notified = error; +} + +/* LCOV_EXCL_START */ +static void +_cb_gesture_palm_cover(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, struct wl_surface *surface, uint32_t mode, uint32_t duration, int cx, int cy, uint32_t size, wl_fixed_t pressure) +{ + efl_util_event_gesture_palm_cover_s *ev = NULL; + + ev = (efl_util_event_gesture_palm_cover_s *)calloc(1, sizeof(*ev)); + if (!ev) return; + + ev->mode = mode; + + ev->duration = duration; + ev->cx = cx; + ev->cy = cy; + ev->size = size; + ev->pressure = wl_fixed_to_int(pressure); + + ecore_event_add(EFL_UTIL_EVENT_GESTURE_PALM_COVER, ev, NULL, NULL); +} +/* LCOV_EXCL_STOP */ + +static void +_cb_gesture_activate_notify(void *data EINA_UNUSED, struct tizen_gesture *tizen_gesture EINA_UNUSED, struct wl_surface *surface EINA_UNUSED, uint32_t type EINA_UNUSED, uint32_t active EINA_UNUSED, uint32_t error) +{ + _eflutil.wl.gesture.request_notified = error; +} + +static efl_util_error_e +_efl_util_gesture_convert_error(int ret) +{ + switch (ret) + { + case TIZEN_GESTURE_ERROR_NONE: + return EFL_UTIL_ERROR_NONE; + case TIZEN_GESTURE_ERROR_INVALID_DATA: + return EFL_UTIL_ERROR_INVALID_PARAMETER; + case TIZEN_GESTURE_ERROR_NO_PERMISSION: + return EFL_UTIL_ERROR_PERMISSION_DENIED; + case TIZEN_GESTURE_ERROR_NO_SYSTEM_RESOURCES: + return EFL_UTIL_ERROR_OUT_OF_MEMORY; + case TIZEN_GESTURE_ERROR_GRABBED_ALREADY: + return EFL_UTIL_ERROR_NO_RESOURCE_AVAILABLE; + case TIZEN_GESTURE_ERROR_NOT_SUPPORTED: + return EFL_UTIL_ERROR_NOT_SUPPORTED; + default : + return EFL_UTIL_ERROR_NONE; + } +} + +/* LCOV_EXCL_START */ +static int +_efl_util_gesture_grab_edge_swipe(efl_util_gesture_data data) +{ + int ret = EFL_UTIL_ERROR_NONE; + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + Efl_Util_Gesture_Edge_Swipe_Grab_Data *edge_swipe_data = NULL; + unsigned int fingers = 0; + unsigned int edge = 0; + unsigned int edge_size = 0; + unsigned int start_point = 0; + unsigned int end_point = 0; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.gesture.proto, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(base_data->type == TIZEN_GESTURE_TYPE_EDGE_SWIPE, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + edge_swipe_data = (Efl_Util_Gesture_Edge_Swipe_Grab_Data *)data; + + fingers = edge_swipe_data->fingers; + edge = edge_swipe_data->edge; + edge_size = edge_swipe_data->edge_size; + start_point = edge_swipe_data->start_point; + end_point = edge_swipe_data->end_point; + + tizen_gesture_grab_edge_swipe(_eflutil.wl.gesture.proto, fingers, edge, edge_size, start_point, end_point); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; + + return ret; +} + +static int +_efl_util_gesture_ungrab_edge_swipe(efl_util_gesture_data data) +{ + int ret = EFL_UTIL_ERROR_NONE; + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + Efl_Util_Gesture_Edge_Swipe_Grab_Data *edge_swipe_data = NULL; + unsigned int fingers = 0; + unsigned int edge = 0; + unsigned int edge_size = 0; + unsigned int start_point = 0; + unsigned int end_point = 0; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.gesture.proto, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(base_data->type == TIZEN_GESTURE_TYPE_EDGE_SWIPE, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + edge_swipe_data = (Efl_Util_Gesture_Edge_Swipe_Grab_Data *)data; + + fingers = edge_swipe_data->fingers; + edge = edge_swipe_data->edge; + edge_size = edge_swipe_data->edge_size; + start_point = edge_swipe_data->start_point; + end_point = edge_swipe_data->end_point; + + tizen_gesture_ungrab_edge_swipe(_eflutil.wl.gesture.proto, fingers, edge, edge_size, start_point, end_point); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; + + return ret; +} + +static int +_efl_util_gesture_grab_edge_drag(efl_util_gesture_data data) +{ + int ret = EFL_UTIL_ERROR_NONE; + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + Efl_Util_Gesture_Edge_Drag_Grab_Data *edge_drag_data = NULL; + unsigned int fingers = 0; + unsigned int edge = 0; + unsigned int edge_size = 0; + unsigned int start_point = 0; + unsigned int end_point = 0; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.gesture.proto, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(base_data->type == TIZEN_GESTURE_TYPE_EDGE_DRAG, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + edge_drag_data = (Efl_Util_Gesture_Edge_Drag_Grab_Data *)data; + + fingers = edge_drag_data->fingers; + edge = edge_drag_data->edge; + edge_size = edge_drag_data->edge_size; + start_point = edge_drag_data->start_point; + end_point = edge_drag_data->end_point; + + tizen_gesture_grab_edge_drag(_eflutil.wl.gesture.proto, fingers, edge, edge_size, start_point, end_point); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; + + return ret; +} + +static int +_efl_util_gesture_ungrab_edge_drag(efl_util_gesture_data data) +{ + int ret = EFL_UTIL_ERROR_NONE; + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + Efl_Util_Gesture_Edge_Drag_Grab_Data *edge_drag_data = NULL; + unsigned int fingers = 0; + unsigned int edge = 0; + unsigned int edge_size = 0; + unsigned int start_point = 0; + unsigned int end_point = 0; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.gesture.proto, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(base_data->type == TIZEN_GESTURE_TYPE_EDGE_DRAG, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + edge_drag_data = (Efl_Util_Gesture_Edge_Drag_Grab_Data *)data; + + fingers = edge_drag_data->fingers; + edge = edge_drag_data->edge; + edge_size = edge_drag_data->edge_size; + start_point = edge_drag_data->start_point; + end_point = edge_drag_data->end_point; + + tizen_gesture_ungrab_edge_drag(_eflutil.wl.gesture.proto, fingers, edge, edge_size, start_point, end_point); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; + + return ret; +} + + +static int +_efl_util_gesture_grab_tap(efl_util_gesture_data data) +{ + int ret = EFL_UTIL_ERROR_NONE; + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + Efl_Util_Gesture_Tap_Grab_Data *tap_data = NULL; + unsigned int fingers = 0; + unsigned int repeats = 0; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.gesture.proto, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(base_data->type == TIZEN_GESTURE_TYPE_TAP, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + tap_data = (Efl_Util_Gesture_Tap_Grab_Data *)data; + + fingers = tap_data->fingers; + repeats = tap_data->repeats; + + tizen_gesture_grab_tap(_eflutil.wl.gesture.proto, fingers, repeats); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; + + return ret; +} + +static int +_efl_util_gesture_ungrab_tap(efl_util_gesture_data data) +{ + int ret = EFL_UTIL_ERROR_NONE; + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + Efl_Util_Gesture_Tap_Grab_Data *tap_data = NULL; + unsigned int fingers = 0; + unsigned int repeats = 0; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.gesture.proto, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(base_data->type == TIZEN_GESTURE_TYPE_TAP, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + tap_data = (Efl_Util_Gesture_Tap_Grab_Data *)data; + + fingers = tap_data->fingers; + repeats = tap_data->repeats; + + tizen_gesture_ungrab_tap(_eflutil.wl.gesture.proto, fingers, repeats); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; + + return ret; +} + +static int +_efl_util_gesture_grab_palm_cover(efl_util_gesture_data data) +{ + int ret = EFL_UTIL_ERROR_NONE; + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.gesture.proto, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(base_data->type == TIZEN_GESTURE_TYPE_PALM_COVER, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + tizen_gesture_grab_palm_cover(_eflutil.wl.gesture.proto); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; + + return ret; +} + +static int +_efl_util_gesture_ungrab_palm_cover(efl_util_gesture_data data) +{ + int ret = EFL_UTIL_ERROR_NONE; + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(_eflutil.wl.gesture.proto, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(base_data->type == TIZEN_GESTURE_TYPE_PALM_COVER, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + tizen_gesture_ungrab_palm_cover(_eflutil.wl.gesture.proto); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; + + return ret; +} + +static Eina_Bool +_efl_util_fd_cb(void *data, Ecore_Fd_Handler *hdl) +{ + if (_eflutil.wl.dpy && _eflutil.wl.queue) + { + wl_display_roundtrip_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + return ECORE_CALLBACK_RENEW; + } + else + { + return ECORE_CALLBACK_CANCEL; + } +} +/* LCOV_EXCL_STOP */ + +API efl_util_gesture_h +efl_util_gesture_initialize(void) +{ + efl_util_gesture_h gesture_h = NULL; + int dpy_fd = -1; + + gesture_h = (efl_util_gesture_h)calloc(1, sizeof(struct _efl_util_gesture_h)); + if (!gesture_h) + { + set_last_result(EFL_UTIL_ERROR_OUT_OF_MEMORY); /* LCOV_EXCL_LINE */ + goto out; /* LCOV_EXCL_LINE */ + } + + if (_wl_init() == (int)EINA_FALSE) + { + set_last_result(EFL_UTIL_ERROR_NOT_SUPPORTED); /* LCOV_EXCL_LINE */ + goto out; /* LCOV_EXCL_LINE */ + } + + while (!_eflutil.wl.gesture.proto) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); /* LCOV_EXCL_LINE */ + + if (_eflutil.wl.gesture.event_init <= 0) + { + if (ecore_event_init() <= 0) + { + set_last_result(EFL_UTIL_ERROR_NOT_SUPPORTED); /* LCOV_EXCL_LINE */ + goto out; /* LCOV_EXCL_LINE */ + } + EFL_UTIL_EVENT_GESTURE_EDGE_SWIPE = ecore_event_type_new(); + EFL_UTIL_EVENT_GESTURE_EDGE_DRAG = ecore_event_type_new(); + EFL_UTIL_EVENT_GESTURE_TAP = ecore_event_type_new(); + EFL_UTIL_EVENT_GESTURE_PALM_COVER = ecore_event_type_new(); + + dpy_fd = wl_display_get_fd(_eflutil.wl.dpy); + _eflutil.wl.dpy_fd = fcntl(dpy_fd, F_DUPFD_CLOEXEC, 0); + if (_eflutil.wl.dpy_fd >= 0) + _eflutil.wl.fd_hdl = ecore_main_fd_handler_add(_eflutil.wl.dpy_fd, + ECORE_FD_READ | ECORE_FD_WRITE | ECORE_FD_ERROR, + _efl_util_fd_cb, NULL, + NULL, NULL); + } + _eflutil.wl.gesture.event_init++; + gesture_h->init = EINA_TRUE; + + set_last_result(EFL_UTIL_ERROR_NONE); + return gesture_h; + +out: +/* LCOV_EXCL_START */ + if (gesture_h) + { + free(gesture_h); + gesture_h = NULL; + } + return gesture_h; +/* LCOV_EXCL_STOP */ +} + +API int +efl_util_gesture_deinitialize(efl_util_gesture_h gesture_h) +{ + EINA_SAFETY_ON_NULL_RETURN_VAL(gesture_h, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(gesture_h->init, EFL_UTIL_ERROR_INVALID_PARAMETER); + + free(gesture_h); + gesture_h = NULL; + + _eflutil.wl.gesture.event_init--; + + if (_eflutil.wl.gesture.event_init <= 0) + { + _eflutil.wl.gesture.event_init = 0; + ecore_event_shutdown(); + EFL_UTIL_EVENT_GESTURE_EDGE_SWIPE = 0; + EFL_UTIL_EVENT_GESTURE_EDGE_DRAG = 0; + EFL_UTIL_EVENT_GESTURE_TAP = 0; + EFL_UTIL_EVENT_GESTURE_PALM_COVER = 0; + if (_eflutil.wl.dpy_fd >= 0) + { + ecore_main_fd_handler_del(_eflutil.wl.fd_hdl); + _eflutil.wl.fd_hdl = NULL; + close(_eflutil.wl.dpy_fd); + _eflutil.wl.dpy_fd = -1; + } + } + + return EFL_UTIL_ERROR_NONE; +} + +API efl_util_gesture_data +efl_util_gesture_edge_swipe_new(efl_util_gesture_h gesture_h, unsigned int fingers, efl_util_gesture_edge_e edge) +{ + Efl_Util_Gesture_Edge_Swipe_Grab_Data *data; + + if (!gesture_h || gesture_h->init == EINA_FALSE) + { + set_last_result(EFL_UTIL_ERROR_INVALID_PARAMETER); + return NULL; + } + + if (edge <= EFL_UTIL_GESTURE_EDGE_NONE || edge > EFL_UTIL_GESTURE_EDGE_LEFT) + { + set_last_result(EFL_UTIL_ERROR_INVALID_PARAMETER); + return NULL; + } + + data = (Efl_Util_Gesture_Edge_Swipe_Grab_Data *)calloc(1, sizeof(Efl_Util_Gesture_Edge_Swipe_Grab_Data)); + if (!data) + { + set_last_result(EFL_UTIL_ERROR_OUT_OF_MEMORY); /* LCOV_EXCL_LINE */ + return NULL; /* LCOV_EXCL_LINE */ + } + + data->base.type = TIZEN_GESTURE_TYPE_EDGE_SWIPE; + data->fingers = fingers; + data->edge = edge; + data->edge_size = EFL_UTIL_GESTURE_EDGE_SIZE_FULL; + + set_last_result(EFL_UTIL_ERROR_NONE); + + return (void *)data; +} + +API int +efl_util_gesture_edge_swipe_free(efl_util_gesture_h gesture_h, efl_util_gesture_data data) +{ + if (!gesture_h || gesture_h->init == EINA_FALSE) + { + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + if (!data) + { + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + free(data); + data = NULL; + + return EFL_UTIL_ERROR_NONE; +} + +API int +efl_util_gesture_edge_swipe_size_set(efl_util_gesture_data data, efl_util_gesture_edge_size_e edge_size, unsigned int start_point, unsigned int end_point) +{ + Efl_Util_Gesture_Edge_Swipe_Grab_Data *edge_swipe_data = data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(edge_swipe_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(edge_swipe_data->base.type == TIZEN_GESTURE_TYPE_EDGE_SWIPE, + EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(edge_size == EFL_UTIL_GESTURE_EDGE_SIZE_PARTIAL, + EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(end_point > start_point, EFL_UTIL_ERROR_INVALID_PARAMETER); + + edge_swipe_data->edge_size = edge_size; + edge_swipe_data->start_point = start_point; + edge_swipe_data->end_point = end_point; + + return EFL_UTIL_ERROR_NONE; +} + +API efl_util_gesture_data +efl_util_gesture_edge_drag_new(efl_util_gesture_h gesture_h, unsigned int fingers, efl_util_gesture_edge_e edge) +{ + Efl_Util_Gesture_Edge_Drag_Grab_Data *data; + + if (!gesture_h || gesture_h->init == EINA_FALSE) + { + set_last_result(EFL_UTIL_ERROR_INVALID_PARAMETER); + return NULL; + } + + if (edge <= EFL_UTIL_GESTURE_EDGE_NONE || edge > EFL_UTIL_GESTURE_EDGE_LEFT) + { + set_last_result(EFL_UTIL_ERROR_INVALID_PARAMETER); + return NULL; + } + + data = (Efl_Util_Gesture_Edge_Drag_Grab_Data *)calloc(1, sizeof(Efl_Util_Gesture_Edge_Drag_Grab_Data)); + if (!data) + { + set_last_result(EFL_UTIL_ERROR_OUT_OF_MEMORY); /* LCOV_EXCL_LINE */ + return NULL; /* LCOV_EXCL_LINE */ + } + + data->base.type = TIZEN_GESTURE_TYPE_EDGE_DRAG; + data->fingers = fingers; + data->edge = edge; + data->edge_size = EFL_UTIL_GESTURE_EDGE_SIZE_FULL; + + set_last_result(EFL_UTIL_ERROR_NONE); + + return (void *)data; +} + +API int +efl_util_gesture_edge_drag_free(efl_util_gesture_h gesture_h, efl_util_gesture_data data) +{ + if (!gesture_h || gesture_h->init == EINA_FALSE) + { + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + if (!data) + { + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + free(data); + data = NULL; + + return EFL_UTIL_ERROR_NONE; +} + +API int +efl_util_gesture_edge_drag_size_set(efl_util_gesture_data data, efl_util_gesture_edge_size_e edge_size, unsigned int start_point, unsigned int end_point) +{ + Efl_Util_Gesture_Edge_Drag_Grab_Data *edge_drag_data = data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(edge_drag_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(edge_drag_data->base.type == TIZEN_GESTURE_TYPE_EDGE_DRAG, + EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(edge_size == EFL_UTIL_GESTURE_EDGE_SIZE_PARTIAL, + EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(end_point > start_point, EFL_UTIL_ERROR_INVALID_PARAMETER); + + edge_drag_data->edge_size = edge_size; + edge_drag_data->start_point = start_point; + edge_drag_data->end_point = end_point; + + return EFL_UTIL_ERROR_NONE; +} + +API efl_util_gesture_data +efl_util_gesture_tap_new(efl_util_gesture_h gesture_h, unsigned int fingers, unsigned int repeats) +{ + Efl_Util_Gesture_Tap_Grab_Data *data; + + if (!gesture_h || gesture_h->init == EINA_FALSE) + { + set_last_result(EFL_UTIL_ERROR_INVALID_PARAMETER); + return NULL; + } + + if (fingers <= 1 || repeats <= 1) + { + set_last_result(EFL_UTIL_ERROR_NOT_SUPPORTED); + return NULL; + } + + data = (Efl_Util_Gesture_Tap_Grab_Data *)calloc(1, sizeof(Efl_Util_Gesture_Tap_Grab_Data)); + if (!data) + { + set_last_result(EFL_UTIL_ERROR_OUT_OF_MEMORY); /* LCOV_EXCL_LINE */ + return NULL; /* LCOV_EXCL_LINE */ + } + + data->base.type = TIZEN_GESTURE_TYPE_TAP; + data->fingers = fingers; + data->repeats = repeats; + + set_last_result(EFL_UTIL_ERROR_NONE); + + return (void *)data; +} + +API int +efl_util_gesture_tap_free(efl_util_gesture_h gesture_h, efl_util_gesture_data data) +{ + if (!gesture_h || gesture_h->init == EINA_FALSE) + { + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + if (!data) + { + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + free(data); + data = NULL; + + return EFL_UTIL_ERROR_NONE; +} + +API efl_util_gesture_data +efl_util_gesture_palm_cover_new(efl_util_gesture_h gesture_h) +{ + Efl_Util_Gesture_Palm_Cover_Grab_Data *data; + + if (!gesture_h || gesture_h->init == EINA_FALSE) + { + set_last_result(EFL_UTIL_ERROR_INVALID_PARAMETER); + return NULL; + } + + data = (Efl_Util_Gesture_Palm_Cover_Grab_Data *)calloc(1, sizeof(Efl_Util_Gesture_Palm_Cover_Grab_Data)); + if (!data) + { + set_last_result(EFL_UTIL_ERROR_OUT_OF_MEMORY); /* LCOV_EXCL_LINE */ + return NULL; /* LCOV_EXCL_LINE */ + } + + data->base.type = TIZEN_GESTURE_TYPE_PALM_COVER; + + set_last_result(EFL_UTIL_ERROR_NONE); + + return (void *)data; +} + +API int +efl_util_gesture_palm_cover_free(efl_util_gesture_h gesture_h, efl_util_gesture_data data) +{ + if (!gesture_h || gesture_h->init == EINA_FALSE) + { + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + if (!data) + { + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + free(data); + data = NULL; + + return EFL_UTIL_ERROR_NONE; +} + +/* LCOV_EXCL_START */ +API int +efl_util_gesture_grab(efl_util_gesture_h gesture_h, efl_util_gesture_data data) +{ + int ret = EFL_UTIL_ERROR_NONE; + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(gesture_h, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(gesture_h->init, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + + switch (base_data->type) + { + case TIZEN_GESTURE_TYPE_EDGE_SWIPE: + ret = _efl_util_gesture_grab_edge_swipe(data); + break; + case TIZEN_GESTURE_TYPE_EDGE_DRAG: + ret = _efl_util_gesture_grab_edge_drag(data); + break; + case TIZEN_GESTURE_TYPE_TAP: + ret = _efl_util_gesture_grab_tap(data); + break; + case TIZEN_GESTURE_TYPE_PALM_COVER: + ret = _efl_util_gesture_grab_palm_cover(data); + break; + default: + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + return ret; +} + +API int +efl_util_gesture_ungrab(efl_util_gesture_h gesture_h, efl_util_gesture_data data) +{ + int ret = EFL_UTIL_ERROR_NONE; + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(gesture_h, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(gesture_h->init, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + + switch (base_data->type) + { + case TIZEN_GESTURE_TYPE_EDGE_SWIPE: + ret = _efl_util_gesture_ungrab_edge_swipe(data); + break; + case TIZEN_GESTURE_TYPE_EDGE_DRAG: + ret = _efl_util_gesture_ungrab_edge_drag(data); + break; + case TIZEN_GESTURE_TYPE_TAP: + ret = _efl_util_gesture_ungrab_tap(data); + break; + case TIZEN_GESTURE_TYPE_PALM_COVER: + ret = _efl_util_gesture_ungrab_palm_cover(data); + break; + default: + return EFL_UTIL_ERROR_INVALID_PARAMETER; + } + + return ret; +} +/* LCOV_EXCL_STOP */ + +API int +efl_util_gesture_select(efl_util_gesture_h gesture_h, Evas_Object *window, efl_util_gesture_data data) +{ + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + Ecore_Wl2_Window *wlwin; + struct wl_surface *surface; + int ret; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(gesture_h, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(gesture_h->init, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + + if (base_data->type != TIZEN_GESTURE_TYPE_PALM_COVER) + return EFL_UTIL_ERROR_NOT_SUPPORTED; + + wlwin = (Ecore_Wl2_Window *)elm_win_wl_window_get(window); + if (!wlwin) return EFL_UTIL_ERROR_INVALID_PARAMETER; + + surface = ecore_wl2_window_surface_get(wlwin); + EINA_SAFETY_ON_NULL_RETURN_VAL(surface, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + tizen_gesture_select_palm_cover(_eflutil.wl.gesture.proto, surface); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; + + return ret; +} + +API int +efl_util_gesture_deselect(efl_util_gesture_h gesture_h, Evas_Object *window, efl_util_gesture_data data) +{ + Efl_Util_Gesture_Common_Grab_Data *base_data = NULL; + Ecore_Wl2_Window *wlwin; + struct wl_surface *surface; + int ret; + + base_data = (Efl_Util_Gesture_Common_Grab_Data *)data; + + EINA_SAFETY_ON_NULL_RETURN_VAL(gesture_h, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(gesture_h->init, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(base_data, EFL_UTIL_ERROR_INVALID_PARAMETER); + + if (base_data->type != TIZEN_GESTURE_TYPE_PALM_COVER) + return EFL_UTIL_ERROR_NOT_SUPPORTED; + + wlwin = (Ecore_Wl2_Window *)elm_win_wl_window_get(window); + if (!wlwin) return EFL_UTIL_ERROR_INVALID_PARAMETER; + + surface = ecore_wl2_window_surface_get(wlwin); + EINA_SAFETY_ON_NULL_RETURN_VAL(surface, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + tizen_gesture_deselect_palm_cover(_eflutil.wl.gesture.proto, surface); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; + + return ret; +} + +/* LCOV_EXCL_START */ +API int +efl_util_gesture_activate_set(efl_util_gesture_h gesture_h, unsigned int type, Eina_Bool active) +{ + int ret; + + EINA_SAFETY_ON_NULL_RETURN_VAL(gesture_h, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(gesture_h->init, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_TRUE_RETURN_VAL(type == EFL_UTIL_GESTURE_TYPE_NONE, EFL_UTIL_ERROR_INVALID_PARAMETER); + + tizen_gesture_activate_set(_eflutil.wl.gesture.proto, NULL, type, active); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); + + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; + + return ret; +} +/* LCOV_EXCL_STOP */ + +API int +efl_util_gesture_activate_set_on_window(efl_util_gesture_h gesture_h, Evas_Object *window, unsigned int type, Eina_Bool active) +{ + Ecore_Wl2_Window *wlwin; + struct wl_surface *surface; + int ret; + + EINA_SAFETY_ON_NULL_RETURN_VAL(gesture_h, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_FALSE_RETURN_VAL(gesture_h->init, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_NULL_RETURN_VAL(window, EFL_UTIL_ERROR_INVALID_PARAMETER); + EINA_SAFETY_ON_TRUE_RETURN_VAL(type == EFL_UTIL_GESTURE_TYPE_NONE, EFL_UTIL_ERROR_INVALID_PARAMETER); + + wlwin = (Ecore_Wl2_Window *)elm_win_wl_window_get(window); + if (!wlwin) return EFL_UTIL_ERROR_INVALID_PARAMETER; + + surface = ecore_wl2_window_surface_get(wlwin); + EINA_SAFETY_ON_NULL_RETURN_VAL(surface, + EFL_UTIL_ERROR_INVALID_PARAMETER); + + tizen_gesture_activate_set(_eflutil.wl.gesture.proto, surface, type, active); + + while (_eflutil.wl.gesture.request_notified == -1) + wl_display_dispatch_queue(_eflutil.wl.dpy, _eflutil.wl.queue); - _g_notification_error_cb_info_list = eina_list_remove(_g_notification_error_cb_info_list, _err_info); - free(_err_info); + ret = _efl_util_gesture_convert_error(_eflutil.wl.gesture.request_notified); + _eflutil.wl.gesture.request_notified = -1; - return EINA_TRUE; + return ret; }