2 #include "e_comp_wl_intern.h"
3 #include "e_foreign_intern.h"
4 #include "e_wtz_shell_intern.h"
5 #include "e_client_intern.h"
6 #include "e_appinfo_intern.h"
7 #include "e_blender_intern.h"
8 #include "e_utils_intern.h"
9 #include "e_scale_intern.h"
10 #include "e_comp_canvas_intern.h"
11 #include "e_comp_screen_intern.h"
12 #include "e_comp_wl_capture_intern.h"
13 #include "e_comp_wl_data_intern.h"
14 #include "e_comp_wl_input_intern.h"
15 #include "e_comp_wl_renderer_intern.h"
16 #include "e_comp_wl_rsm_intern.h"
17 #include "e_comp_wl_screenshooter_intern.h"
18 #include "e_comp_wl_shell_intern.h"
19 #include "e_comp_wl_subsurface_intern.h"
20 #include "e_comp_wl_tbm_intern.h"
21 #include "e_comp_wl_viewport_intern.h"
22 #include "e_comp_intern.h"
23 #include "e_input_intern.h"
24 #include "e_keyrouter_intern.h"
25 #include "e_error_intern.h"
26 #include "e_pointer_intern.h"
27 #include "e_presentation_time_intern.h"
28 #include "e_grabinput_intern.h"
29 #include "e_env_intern.h"
30 #include "e_dnd_intern.h"
31 #include "e_policy_visibility_intern.h"
32 #include "e_compositor_intern.h"
33 #include "e_client_video_intern.h"
34 #include "e_comp_wl_video_intern.h"
35 #include "e_comp_object_intern.h"
36 #include "e_desk_intern.h"
37 #include "e_zone_intern.h"
38 #include "e_hints_intern.h"
39 #include "e_comp_input_intern.h"
41 #include <tizen-extension-server-protocol.h>
42 #include <relative-pointer-unstable-v1-server-protocol.h>
43 #include <pointer-constraints-unstable-v1-server-protocol.h>
45 #include <wayland-tbm-server.h>
47 #include <libds/log.h>
48 #include <libds/single_pixel_buffer_v1.h>
52 #include <sys/resource.h>
54 /* handle include for printing uint64_t */
55 #define __STDC_FORMAT_MACROS
58 #define E_COM_WL_PREPARE_GAP_LOG_TIME 2000
60 /* Resource Data Mapping: (wl_resource_get_user_data)
62 * wl_surface == e_pixmap
63 * wl_region == eina_tiler
64 * wl_subsurface == e_client
68 typedef struct _E_Comp_Data E_Comp_Data;
73 struct wl_listener client_created;
76 static void _e_comp_wl_move_resize_init(void);
78 static Eina_Bool _e_comp_wl_cursor_timer_control(Evas_Callback_Type type, E_Client *ec);
81 typedef struct _E_Comp_Wl_Key_Data
87 struct _E_Comp_Wl_Evas_Gl
90 Evas_GL_Config *glcfg;
91 Evas_GL_Context *glctx;
92 Evas_GL_Surface *glsfc;
96 static Eina_List *handlers = NULL;
97 static E_Client *cursor_timer_ec = NULL;
98 static Eina_Bool need_send_released = EINA_FALSE;
99 static Eina_Bool need_send_motion = EINA_TRUE;
101 static GMutex connection_mutex;
103 static int _e_comp_wl_hooks_delete = 0;
104 static int _e_comp_wl_hooks_walking = 0;
106 static int _e_comp_wl_pid_hooks_delete = 0;
107 static int _e_comp_wl_pid_hooks_walking = 0;
109 static int _e_comp_wl_intercept_hooks_delete = 0;
110 static int _e_comp_wl_intercept_hooks_walking = 0;
112 static Eina_Inlist *_e_comp_wl_hooks[] =
114 [E_COMP_WL_HOOK_SHELL_SURFACE_READY] = NULL,
115 [E_COMP_WL_HOOK_SUBSURFACE_CREATE] = NULL,
116 [E_COMP_WL_HOOK_SUBSURFACE_COMMIT_TO_CACHE] = NULL,
117 [E_COMP_WL_HOOK_SUBSURFACE_SYNCHRONIZED_COMMIT] = NULL,
118 [E_COMP_WL_HOOK_BUFFER_CHANGE] = NULL,
119 [E_COMP_WL_HOOK_CLIENT_REUSE] = NULL,
120 [E_COMP_WL_HOOK_BUFFER_SIZE_CHANGE] = NULL,
121 [E_COMP_WL_HOOK_DEL] = NULL,
122 [E_COMP_WL_HOOK_CLIENT_ALPHA_CHANGE] = NULL,
123 [E_COMP_WL_HOOK_CLIENT_SURFACE_COMMIT] = NULL,
124 [E_COMP_WL_HOOK_CLIENT_BEFORE_SURFACE_COMMIT] = NULL,
127 static Eina_Inlist *_e_comp_wl_pid_hooks[] =
129 [E_COMP_WL_PID_HOOK_CONNECTED_CLIENT_CREATE] = NULL,
132 static Eina_Inlist *_e_comp_wl_intercept_hooks[] =
134 [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_IN] = NULL,
135 [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_OUT] = NULL,
136 [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_MOVE] = NULL,
137 [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_WHEEL] = NULL,
138 [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_DOWN] = NULL,
139 [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_UP] = NULL,
142 static Eina_List *hooks = NULL;
144 /* local functions */
146 _e_comp_wl_hooks_clean(void)
151 for (x = 0; x < E_COMP_WL_HOOK_LAST; x++)
152 EINA_INLIST_FOREACH_SAFE(_e_comp_wl_hooks[x], l, ch)
154 if (!ch->delete_me) continue;
155 _e_comp_wl_hooks[x] = eina_inlist_remove(_e_comp_wl_hooks[x], EINA_INLIST_GET(ch));
161 _e_comp_wl_hook_call(E_Comp_Wl_Hook_Point hookpoint, E_Client *ec)
165 e_object_ref(E_OBJECT(ec));
166 _e_comp_wl_hooks_walking++;
167 EINA_INLIST_FOREACH(_e_comp_wl_hooks[hookpoint], ch)
169 if (ch->delete_me) continue;
170 ch->func(ch->data, ec);
171 if ((hookpoint != E_COMP_WL_HOOK_DEL) &&
172 (e_object_is_del(E_OBJECT(ec))))
175 _e_comp_wl_hooks_walking--;
176 if ((_e_comp_wl_hooks_walking == 0) && (_e_comp_wl_hooks_delete > 0))
177 _e_comp_wl_hooks_clean();
178 e_object_unref(E_OBJECT(ec));
182 _e_comp_wl_pid_hooks_clean(void)
185 E_Comp_Wl_Pid_Hook *ch;
187 for (x = 0; x < E_COMP_WL_PID_HOOK_LAST; x++)
188 EINA_INLIST_FOREACH_SAFE(_e_comp_wl_pid_hooks[x], l, ch)
190 if (!ch->delete_me) continue;
191 _e_comp_wl_pid_hooks[x] = eina_inlist_remove(_e_comp_wl_pid_hooks[x], EINA_INLIST_GET(ch));
197 _e_comp_wl_pid_hook_call(E_Comp_Wl_Pid_Hook_Point hookpoint, pid_t pid)
199 E_Comp_Wl_Pid_Hook *ch;
201 _e_comp_wl_pid_hooks_walking++;
202 EINA_INLIST_FOREACH(_e_comp_wl_pid_hooks[hookpoint], ch)
204 if (ch->delete_me) continue;
205 ch->func(ch->data, pid);
207 _e_comp_wl_pid_hooks_walking--;
208 if ((_e_comp_wl_pid_hooks_walking == 0) && (_e_comp_wl_pid_hooks_delete > 0))
209 _e_comp_wl_pid_hooks_clean();
213 _e_comp_wl_intercept_hooks_clean(void)
216 E_Comp_Wl_Intercept_Hook *ch;
218 for (x = 0; x < E_COMP_WL_INTERCEPT_HOOK_LAST; x++)
219 EINA_INLIST_FOREACH_SAFE(_e_comp_wl_intercept_hooks[x], l, ch)
221 if (!ch->delete_me) continue;
222 _e_comp_wl_intercept_hooks[x] = eina_inlist_remove(_e_comp_wl_intercept_hooks[x], EINA_INLIST_GET(ch));
228 _e_comp_wl_intercept_hook_call(E_Comp_Wl_Intercept_Hook_Point hookpoint, E_Client *ec)
230 E_Comp_Wl_Intercept_Hook *ch;
231 Eina_Bool res = EINA_TRUE, ret = EINA_TRUE;
233 e_object_ref(E_OBJECT(ec));
234 _e_comp_wl_intercept_hooks_walking++;
235 EINA_INLIST_FOREACH(_e_comp_wl_intercept_hooks[hookpoint], ch)
237 if (ch->delete_me) continue;
238 res = ch->func(ch->data, ec);
239 if (!res) ret = EINA_FALSE;
240 if (e_object_is_del(E_OBJECT(ec)))
243 _e_comp_wl_intercept_hooks_walking--;
244 if ((_e_comp_wl_intercept_hooks_walking == 0) && (_e_comp_wl_intercept_hooks_delete > 0))
245 _e_comp_wl_intercept_hooks_clean();
246 e_object_unref(E_OBJECT(ec));
253 _e_comp_wl_configure_send(E_Client *ec, Eina_Bool edges, Eina_Bool send_size)
259 if (e_comp_object_frame_exists(ec->frame))
260 w = ec->client.w, h = ec->client.h;
262 w = ec->w, h = ec->h;
266 // Width and Height are -1 means that we don't consider size value
270 e_client_shell_configure_send(ec, edges * e_comp_wl->resize.edges, w, h);
274 _e_comp_wl_focus_check(void)
278 if (stopping) return;
279 ec = e_client_focused_get();
281 e_grabinput_focus(e_comp->ee_win, E_FOCUS_METHOD_PASSIVE);
285 _e_comp_wl_cb_idle_exiter(void *data EINA_UNUSED)
287 e_comp_wl->idle_exiter_timestamp = ecore_time_get() * 1000;
289 TRACE_DS_ASYNC_BEGIN((intptr_t)&e_comp_wl->idle_exiter_timestamp,
290 IDLE_EXITER~CB_PREPARE);
292 return ECORE_CALLBACK_RENEW;
296 _e_comp_wl_cb_read(void *data EINA_UNUSED, Ecore_Fd_Handler *hdlr EINA_UNUSED)
298 /* dispatch pending wayland events */
299 wl_event_loop_dispatch(e_comp_wl->wl.loop, 0);
301 return ECORE_CALLBACK_RENEW;
305 e_comp_wl_display_flush()
307 if (e_comp_wl && e_comp_wl->wl.disp)
309 if (e_config->key_input_ttrace_enable)
311 TRACE_INPUT_BEGIN(wl_display_flush_clients);
312 ELOGF("INPUT", "wl_display_flush_clients|B|", NULL);
315 g_mutex_lock(&connection_mutex);
316 wl_display_flush_clients(e_comp_wl->wl.disp);
317 g_mutex_unlock(&connection_mutex);
319 if (e_config->key_input_ttrace_enable)
322 ELOGF("INPUT", "wl_display_flush_clients|E|", NULL);
328 e_comp_wl_connection_lock()
330 e_input_boost_lock(&connection_mutex);
334 e_comp_wl_connection_unlock()
336 e_input_boost_unlock(&connection_mutex);
340 e_comp_wl_focused_client_flush()
342 E_Client *focused_ec;
343 if (!(e_comp_wl && e_comp_wl->wl.disp)) return;
345 e_input_boost_lock(&connection_mutex);
346 focused_ec = e_client_focused_get();
350 struct wl_client *wc;
351 struct wl_resource *surface = e_comp_wl_client_surface_get(focused_ec);
354 e_input_boost_unlock(&connection_mutex);
358 wc = wl_resource_get_client(surface);
362 e_input_boost_unlock(&connection_mutex);
366 _e_comp_wl_cb_prepare(void *data EINA_UNUSED, Ecore_Fd_Handler *hdlr EINA_UNUSED)
370 if (e_comp_wl->idle_exiter_timestamp > 0.0)
372 gap_time = (ecore_time_get() * 1000) - e_comp_wl->idle_exiter_timestamp;
373 if (gap_time > E_COM_WL_PREPARE_GAP_LOG_TIME)
375 ELOGF("E_COMP", "prepare gap time: %lfms",
380 e_comp_wl->idle_exiter_timestamp = 0.0;
382 wl_event_loop_dispatch_idle(e_comp_wl->wl.loop);
384 /* flush pending client events */
385 e_comp_wl_display_flush();
387 TRACE_DS_ASYNC_END((intptr_t)&e_comp_wl->idle_exiter_timestamp,
388 IDLE_EXITER~CB_PREPARE);
391 E_API enum wl_output_transform
392 e_comp_wl_output_buffer_transform_get(E_Client *ec)
394 E_Comp_Wl_Buffer_Viewport *vp;
395 E_Comp_Wl_Buffer *buffer;
396 enum wl_output_transform transform, rotation;
398 if (!ec) return WL_OUTPUT_TRANSFORM_NORMAL;
399 if (e_object_is_del(E_OBJECT(ec))) return WL_OUTPUT_TRANSFORM_NORMAL;
400 if (!ec->comp_data) return WL_OUTPUT_TRANSFORM_NORMAL;
402 vp = &ec->comp_data->scaler.buffer_viewport;
403 if (e_comp_wl_subsurface_check(ec))
404 return vp->buffer.transform;
406 buffer = ec->comp_data->buffer_ref.buffer;
409 (buffer->type != E_COMP_WL_BUFFER_TYPE_NATIVE && buffer->type != E_COMP_WL_BUFFER_TYPE_TBM))
410 return vp->buffer.transform;
412 rotation = buffer->transform;
414 return vp->buffer.transform;
416 /* ignore the flip value when calculating transform because the screen rotation
417 * functionality doesn't consider the flip output transform currently
419 transform = (4 + (vp->buffer.transform & 0x3) - rotation) & 0x3;
421 DBG("ec(%p) window rotation(%d) buffer_transform(%d) : transform(%d)",
422 ec, rotation, vp->buffer.transform, transform);
427 EINTERN enum wl_output_transform
428 e_comp_wl_output_pending_buffer_transform_get(E_Client *ec)
430 E_Comp_Wl_Buffer_Viewport *vp;
431 E_Comp_Wl_Buffer *buffer;
432 enum wl_output_transform transform, rotation;
434 if (!ec) return WL_OUTPUT_TRANSFORM_NORMAL;
435 if (e_object_is_del(E_OBJECT(ec))) return WL_OUTPUT_TRANSFORM_NORMAL;
436 if (!ec->comp_data) return WL_OUTPUT_TRANSFORM_NORMAL;
438 vp = &ec->comp_data->pending.buffer_viewport;
439 if (e_comp_wl_subsurface_check(ec))
440 return vp->buffer.transform;
442 buffer = ec->comp_data->pending.buffer;
445 (buffer->type != E_COMP_WL_BUFFER_TYPE_NATIVE && buffer->type != E_COMP_WL_BUFFER_TYPE_TBM))
446 return vp->buffer.transform;
448 rotation = buffer->transform;
450 return vp->buffer.transform;
452 /* ignore the flip value when calculating transform because the screen rotation
453 * functionality doesn't consider the flip output transform currently
455 transform = (4 + (vp->buffer.transform & 0x3) - rotation) & 0x3;
457 DBG("ec(%p) window rotation(%d) buffer_transform(%d) : transform(%d)",
458 ec, rotation, vp->buffer.transform, transform);
464 e_comp_wl_map_size_cal_from_buffer(E_Client *ec)
466 E_Comp_Wl_Buffer_Viewport *vp = &ec->comp_data->scaler.buffer_viewport;
467 E_Comp_Wl_Buffer *buffer;
468 int32_t width, height;
470 buffer = e_pixmap_resource_get(ec->pixmap);
473 ec->comp_data->width_from_buffer = 0;
474 ec->comp_data->height_from_buffer = 0;
478 switch (e_comp_wl_output_buffer_transform_get(ec))
480 case WL_OUTPUT_TRANSFORM_90:
481 case WL_OUTPUT_TRANSFORM_270:
482 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
483 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
484 width = buffer->h / vp->buffer.scale;
485 height = buffer->w / vp->buffer.scale;
488 width = buffer->w / vp->buffer.scale;
489 height = buffer->h / vp->buffer.scale;
493 ec->comp_data->width_from_buffer = width;
494 ec->comp_data->height_from_buffer = height;
498 e_comp_wl_map_size_cal_from_viewport(E_Client *ec)
500 E_Comp_Wl_Buffer_Viewport *vp = &ec->comp_data->scaler.buffer_viewport;
501 int32_t width, height;
503 width = ec->comp_data->width_from_buffer;
504 height = ec->comp_data->height_from_buffer;
506 if (width == 0 && height == 0) return;
508 if (width != 0 && vp->surface.width != -1)
510 ec->comp_data->width_from_viewport = vp->surface.width;
511 ec->comp_data->height_from_viewport = vp->surface.height;
515 if (width != 0 && vp->buffer.src_width != wl_fixed_from_int(-1))
517 int32_t w = wl_fixed_to_int(wl_fixed_from_int(1) - 1 + vp->buffer.src_width);
518 int32_t h = wl_fixed_to_int(wl_fixed_from_int(1) - 1 + vp->buffer.src_height);
519 ec->comp_data->width_from_viewport = w ?: 1;
520 ec->comp_data->height_from_viewport = h ?: 1;
524 ec->comp_data->width_from_viewport = width;
525 ec->comp_data->height_from_viewport = height;
529 e_comp_wl_topmost_parent_get(E_Client *ec)
533 if (!e_comp_wl_subsurface_check(ec))
536 parent = e_comp_wl_subsurface_parent_get(ec);
539 if (!e_comp_wl_subsurface_check(parent))
542 parent = e_comp_wl_subsurface_parent_get(parent);
549 e_comp_wl_map_apply(E_Client *ec)
551 E_Comp_Wl_Buffer_Viewport *vp;
552 E_Comp_Wl_Subsurf_Data *sdata;
553 E_Comp_Wl_Client_Data *cdata;
554 int x1, y1, x2, y2, x, y;
556 Eina_Bool zoom_animating = EINA_FALSE;
558 if (!ec || !ec->comp_data || e_object_is_del(E_OBJECT(ec))) return;
560 e_comp_object_map_update(ec->frame);
562 cdata = ec->comp_data;
563 vp = &cdata->scaler.buffer_viewport;
564 if ((vp->buffer.src_width == wl_fixed_from_int(-1)) &&
565 (!cdata->viewport_transform))
568 if (e_comp_wl_subsurface_check(ec))
570 e_comp_wl_subsurface_global_coord_get(ec, &dx, &dy);
572 sdata = ec->comp_data->sub.data;
573 if (sdata->remote_surface.offscreen_parent)
575 E_Client *offscreen_parent = sdata->remote_surface.offscreen_parent;
576 Eina_Rectangle *rect;
579 EINA_LIST_FOREACH(offscreen_parent->comp_data->remote_surface.regions, l, rect)
581 /* TODO: If there are one more regions, it means that provider's offscreen
582 * is displayed by one more remote_surfaces. Have to consider it later. At
583 * this time, just consider only one remote_surface.
597 evas_object_geometry_get(ec->frame, &x, &y, NULL, NULL);
598 if (x != dx || y != dy)
599 evas_object_move(ec->frame, dx, dy);
601 if (!cdata->viewport_transform)
603 cdata->viewport_transform = e_util_transform_new();
604 e_util_transform_role_set(cdata->viewport_transform, "viewport_transform");
605 e_client_transform_core_add(ec, cdata->viewport_transform);
608 e_util_transform_viewport_set(cdata->viewport_transform, dx, dy,
609 ec->comp_data->width_from_viewport,
610 ec->comp_data->height_from_viewport);
612 if (vp->buffer.src_width == wl_fixed_from_int(-1))
616 x2 = cdata->width_from_buffer;
617 y2 = cdata->height_from_buffer;
621 x1 = wl_fixed_to_int(vp->buffer.src_x);
622 y1 = wl_fixed_to_int(vp->buffer.src_y);
623 x2 = wl_fixed_to_int(vp->buffer.src_x + vp->buffer.src_width);
624 y2 = wl_fixed_to_int(vp->buffer.src_y + vp->buffer.src_height);
627 e_util_transform_texcoord_set(cdata->viewport_transform, 0, x1, y1);
628 e_util_transform_texcoord_set(cdata->viewport_transform, 1, x2, y1);
629 e_util_transform_texcoord_set(cdata->viewport_transform, 2, x2, y2);
630 e_util_transform_texcoord_set(cdata->viewport_transform, 3, x1, y2);
633 desk = e_comp_desk_find_by_ec(ec);
635 zoom_animating = e_desk_zoom_is_animating(desk);
637 ELOGF("TRANSFORM", "viewport map: point(%d,%d %dx%d) uv(%d,%d %d,%d %d,%d %d,%d), zoom_animating: %d",
638 ec, ec->x, ec->y, ec->comp_data->width_from_viewport,
639 ec->comp_data->height_from_viewport, x1, y1, x2, y1, x2, y2, x1, y2, zoom_animating);
641 /* workaround:: when the desk zoom is doing their animation,
642 the transform core update can override animation's zoom boundary.
643 so, don't doing transform core update while desk zoom animation */
645 e_client_transform_core_update(ec);
650 e_comp_wl_map_inv_coord_get(E_Client *ec, int x, int y, int *mx, int *my)
654 int map_c = 0, map_x = 0, map_y = 0;
655 double inv_x = 0.0, inv_y = 0.0;
657 EINA_SAFETY_ON_NULL_RETURN(ec);
659 map = e_client_map_get(ec);
660 map_c = e_map_count_get(map);
662 if (!map || map_c <= 0)
672 e_map_point_coord_set(map2, 0, ec->x, ec->y, 0);
673 e_map_point_coord_set(map2, 1, ec->x + ec->w, ec->y, 0);
674 e_map_point_coord_set(map2, 2, ec->x + ec->w, ec->y + ec->h, 0);
675 e_map_point_coord_set(map2, 3, ec->x, ec->y + ec->h, 0);
677 for (int i = 0; i < map_c; i++)
679 e_map_point_coord_get(map, i, &map_x, &map_y, NULL);
680 e_map_point_image_uv_set(map2, i, map_x, map_y);
682 e_map_coords_get(map2, (double)x, (double)y, &inv_x, &inv_y, 0);
692 _e_comp_wl_evas_cb_show(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
698 if (!(ec = data)) return;
699 if (e_object_is_del(data)) return;
701 if (!ec->override) e_hints_window_visible_set(ec);
703 if ((!ec->override) && (!ec->re_manage) && (!ec->comp_data->reparented) &&
704 (!ec->comp_data->need_reparent))
706 ec->comp_data->need_reparent = EINA_TRUE;
707 ec->visible = EINA_TRUE;
709 if (!e_client_util_ignored_get(ec))
711 ec->take_focus = !starting;
715 if (!ec->comp_data->need_reparent)
717 if ((ec->hidden) || (ec->iconic))
719 evas_object_hide(ec->frame);
720 // e_comp_object_damage(ec->frame, 0, 0, ec->w, ec->h);
723 evas_object_show(ec->frame);
726 EINA_LIST_FOREACH(ec->e.state.video_child, l, tmp)
727 evas_object_show(tmp->frame);
729 topmost = e_comp_wl_topmost_parent_get(ec);
730 if (topmost == ec && (ec->comp_data->sub.list || ec->comp_data->sub.below_list))
731 e_comp_wl_subsurface_show(ec);
733 if (ec->comp_data->sub.below_obj)
734 evas_object_show(ec->comp_data->sub.below_obj);
738 _e_comp_wl_evas_cb_hide(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
744 if (!(ec = data)) return;
745 if (e_object_is_del(E_OBJECT(ec))) return;
747 /* Uncommonly some clients's final buffer can be skipped if the client
748 * requests unmap of its surface right after wl_surface@commit.
749 * So if this client evas object is hidden state and client is already
750 * unmmapped, we can consider to clear pixmap image here mandatorily.
752 if (!ec->comp_data->mapped)
753 e_pixmap_image_clear(ec->pixmap, 1);
755 EINA_LIST_FOREACH(ec->e.state.video_child, l, tmp)
756 evas_object_hide(tmp->frame);
758 topmost = e_comp_wl_topmost_parent_get(ec);
759 if (topmost == ec && (ec->comp_data->sub.list || ec->comp_data->sub.below_list))
760 e_comp_wl_subsurface_hide(ec);
762 if (ec->comp_data->sub.below_obj)
763 evas_object_hide(ec->comp_data->sub.below_obj);
765 wl_signal_emit(&e_comp_wl->ptr_constraints.surface_unmap_signal, ec);
769 _e_comp_wl_evas_cb_move(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
776 if (!(ec = data)) return;
777 if (e_object_is_del(E_OBJECT(ec))) return;
779 EINA_LIST_FOREACH(ec->comp_data->sub.list, l, subc)
781 if (!e_comp_wl_subsurface_check(subc)) continue;
782 e_comp_wl_subsurface_global_coord_get(subc, &x, &y);
783 evas_object_move(subc->frame, x, y);
785 if (subc->comp_data->scaler.viewport)
787 E_Comp_Wl_Client_Data *cdata = subc->comp_data;
788 if (cdata->viewport_transform)
789 e_comp_wl_map_apply(subc);
793 EINA_LIST_FOREACH(ec->comp_data->sub.below_list, l, subc)
795 if (!e_comp_wl_subsurface_check(subc)) continue;
796 e_comp_wl_subsurface_global_coord_get(subc, &x, &y);
797 evas_object_move(subc->frame, x, y);
799 if (subc->comp_data->scaler.viewport)
801 E_Comp_Wl_Client_Data *cdata = subc->comp_data;
802 if (cdata->viewport_transform)
803 e_comp_wl_map_apply(subc);
807 if (ec->comp_data->sub.below_obj)
809 evas_object_move(ec->comp_data->sub.below_obj, ec->x, ec->y);
810 e_comp_wl_subsurface_bg_rectangle_map_apply(ec);
815 _e_comp_wl_send_touch_cancel(E_Client *ec)
818 struct wl_resource *res;
819 struct wl_client *wc;
820 E_Comp_Config *comp_conf = NULL;
823 if (e_object_is_del(E_OBJECT(ec))) return;
824 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
826 if (!surface) return;
827 if ((ec->ignored) && (!ec->remote_surface.provider)) return;
829 wc = wl_resource_get_client(surface);
831 comp_conf = e_comp_config_get();
833 EINA_LIST_FOREACH(e_comp->wl_comp_data->touch.resources, l, res)
835 if (wl_resource_get_client(res) != wc) continue;
836 if (!e_comp_wl_input_touch_check(res)) continue;
838 if (comp_conf && comp_conf->input_log_enable)
839 ELOGF("Touch", "Cancel name:%20s", ec, e_client_util_name_get(ec));
841 wl_touch_send_cancel(res);
846 _e_comp_wl_touch_cancel(void)
850 ec = e_comp_wl->ptr.ec ? e_comp_wl->ptr.ec : e_comp_wl->touch.faked_ec;
852 if (!e_comp_wl->touch.pressed) return;
854 _e_comp_wl_send_touch_cancel(ec);
857 static E_Devicemgr_Input_Device *
858 _e_comp_wl_device_last_device_get(Ecore_Device_Class dev_class)
860 E_Devicemgr_Input_Device *last_kbd = NULL;
863 case ECORE_DEVICE_CLASS_MOUSE:
864 return e_devicemgr->last_device_ptr;
865 case ECORE_DEVICE_CLASS_KEYBOARD:
866 last_kbd = atomic_load(&e_devicemgr->last_device_kbd);
868 case ECORE_DEVICE_CLASS_TOUCH:
869 return e_devicemgr->last_device_touch;
877 _e_comp_wl_device_last_device_set(Ecore_Device_Class dev_class, E_Devicemgr_Input_Device *device)
881 case ECORE_DEVICE_CLASS_MOUSE:
882 e_devicemgr->last_device_ptr = device;
884 case ECORE_DEVICE_CLASS_KEYBOARD:
885 atomic_store(&e_devicemgr->last_device_kbd, device);
887 case ECORE_DEVICE_CLASS_TOUCH:
888 e_devicemgr->last_device_touch = device;
895 static E_Devicemgr_Input_Device *
896 _e_comp_wl_device_client_last_device_get(E_Client *ec, Ecore_Device_Class dev_class)
898 E_Devicemgr_Input_Device *last_kbd = NULL;
902 case ECORE_DEVICE_CLASS_MOUSE:
903 return ec->comp_data->last_device_ptr;
904 case ECORE_DEVICE_CLASS_KEYBOARD:
905 last_kbd = atomic_load(&ec->comp_data->last_device_kbd);
907 case ECORE_DEVICE_CLASS_TOUCH:
908 return ec->comp_data->last_device_touch;
916 _e_comp_wl_device_client_last_device_set(E_Client *ec, Ecore_Device_Class dev_class, E_Devicemgr_Input_Device *device)
920 case ECORE_DEVICE_CLASS_MOUSE:
921 ec->comp_data->last_device_ptr = device;
923 case ECORE_DEVICE_CLASS_KEYBOARD:
924 atomic_store(&ec->comp_data->last_device_kbd, device);
926 case ECORE_DEVICE_CLASS_TOUCH:
927 ec->comp_data->last_device_touch = device;
935 _e_comp_wl_device_send_event_device(E_Client *ec, Evas_Device *dev, uint32_t timestamp)
937 E_Devicemgr_Input_Device *last_device, *ec_last_device, *input_dev;
938 struct wl_resource *dev_res;
939 const char *dev_name;
940 Ecore_Device_Class dev_class;
941 struct wl_client *wc;
945 EINA_SAFETY_ON_NULL_RETURN(dev);
948 if (ec->cur_mouse_action || e_comp_wl->drag)
950 if (e_object_is_del(E_OBJECT(ec))) return;
951 if ((ec->ignored) && (!ec->remote_surface.provider)) return;
952 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
953 if (!surface) return;
955 dev_class = (Ecore_Device_Class)evas_device_class_get(dev);
956 dev_name = evas_device_description_get(dev);
957 last_device = _e_comp_wl_device_last_device_get(dev_class);
958 ec_last_device = _e_comp_wl_device_client_last_device_get(ec, dev_class);
960 serial = wl_display_next_serial(e_comp_wl->wl.disp);
961 wc = wl_resource_get_client(surface);
962 g_rec_mutex_lock(&e_devicemgr->device_list_mutex);
963 EINA_LIST_FOREACH(e_devicemgr->device_list, l, input_dev)
965 if (!eina_streq(input_dev->identifier, dev_name) || (input_dev->clas != dev_class)) continue;
966 if ((!last_device) || (last_device != input_dev) || (!ec_last_device) || (ec_last_device != input_dev))
968 _e_comp_wl_device_last_device_set(dev_class, input_dev);
969 _e_comp_wl_device_client_last_device_set(ec, dev_class, input_dev);
971 EINA_LIST_FOREACH(input_dev->resources, ll, dev_res)
973 if (wl_resource_get_client(dev_res) != wc) continue;
974 tizen_input_device_send_event_device(dev_res, serial, input_dev->identifier, timestamp);
978 g_rec_mutex_unlock(&e_devicemgr->device_list_mutex);
982 _e_comp_wl_device_send_last_event_device(E_Client *ec, Ecore_Device_Class dev_class, uint32_t timestamp)
984 E_Devicemgr_Input_Device *last_device;
985 struct wl_resource *dev_res;
986 struct wl_client *wc;
990 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
991 if (!surface) return;
993 last_device = _e_comp_wl_device_last_device_get(dev_class);
994 if (!last_device) return;
996 _e_comp_wl_device_client_last_device_set(ec, dev_class, last_device);
998 serial = wl_display_next_serial(e_comp_wl->wl.disp);
999 wc = wl_resource_get_client(surface);
1000 EINA_LIST_FOREACH(last_device->resources, l, dev_res)
1002 if (wl_resource_get_client(dev_res) != wc) continue;
1003 tizen_input_device_send_event_device(dev_res, serial, last_device->identifier, timestamp);
1008 _e_comp_wl_send_event_device(struct wl_client *wc, uint32_t timestamp, Ecore_Device *dev, uint32_t serial)
1010 E_Devicemgr_Input_Device *input_dev;
1011 struct wl_resource *dev_res;
1012 const char *dev_name;
1015 EINA_SAFETY_ON_NULL_RETURN(dev);
1017 dev_name = ecore_device_identifier_get(dev);
1019 g_rec_mutex_lock(&e_devicemgr->device_list_mutex);
1020 EINA_LIST_FOREACH(e_devicemgr->device_list, l, input_dev)
1022 if (!eina_streq(input_dev->identifier, dev_name) ||
1023 (input_dev->clas != ecore_device_class_get(dev))) continue;
1024 _e_comp_wl_device_last_device_set(ecore_device_class_get(dev), input_dev);
1026 EINA_LIST_FOREACH(input_dev->resources, ll, dev_res)
1028 if (wl_resource_get_client(dev_res) != wc) continue;
1029 tizen_input_device_send_event_device(dev_res, serial, input_dev->identifier, timestamp);
1032 g_rec_mutex_unlock(&e_devicemgr->device_list_mutex);
1036 _e_comp_wl_send_event_e_device(struct wl_client *wc, uint32_t timestamp, E_Device *dev, uint32_t serial)
1038 E_Devicemgr_Input_Device *input_dev;
1039 struct wl_resource *dev_res;
1040 const char *dev_name;
1043 EINA_SAFETY_ON_NULL_RETURN(dev);
1045 dev_name = e_device_identifier_get(dev);
1047 g_rec_mutex_lock(&e_devicemgr->device_list_mutex);
1048 EINA_LIST_FOREACH(e_devicemgr->device_list, l, input_dev)
1050 if (!eina_streq(input_dev->identifier, dev_name) ||
1051 (input_dev->clas != e_device_class_get(dev))) continue;
1052 _e_comp_wl_device_last_device_set(e_device_class_get(dev), input_dev);
1054 EINA_LIST_FOREACH(input_dev->resources, ll, dev_res)
1056 if (wl_resource_get_client(dev_res) != wc) continue;
1057 tizen_input_device_send_event_device(dev_res, serial, input_dev->identifier, timestamp);
1060 g_rec_mutex_unlock(&e_devicemgr->device_list_mutex);
1064 _e_comp_wl_cursor_reload(E_Client *ec)
1066 struct wl_resource *res;
1067 struct wl_client *wc;
1073 if (e_comp->pointer && e_comp->pointer->o_ptr &&
1074 !evas_object_visible_get(e_comp->pointer->o_ptr))
1075 e_pointer_object_set(e_comp->pointer, NULL, 0, 0);
1078 if (e_object_is_del(E_OBJECT(ec))) return;
1079 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1080 if (!surface) return;
1081 if (ec->pointer_enter_sent) return;
1083 px = wl_fixed_to_int(e_comp_wl->ptr.x);
1084 py = wl_fixed_to_int(e_comp_wl->ptr.y);
1086 if (e_client_transform_core_enable_get(ec))
1088 double dx = 0.0, dy = 0.0;
1089 map = e_client_map_get(ec);
1090 e_map_coords_get(map, (double)px, (double)py, &dx, &dy, 0);
1096 cx = px - ec->client.x;
1097 cy = py - ec->client.y;
1099 wc = wl_resource_get_client(surface);
1100 serial = wl_display_next_serial(e_comp_wl->wl.disp);
1101 EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
1103 if (!e_comp_wl_input_pointer_check(res)) continue;
1104 if (wl_resource_get_client(res) != wc) continue;
1105 wl_pointer_send_enter(res, serial, surface,
1106 wl_fixed_from_int(cx), wl_fixed_from_int(cy));
1107 ec->pointer_enter_sent = EINA_TRUE;
1109 wl_signal_emit(&e_comp_wl->ptr_constraints.surface_mousein_signal, ec);
1113 _e_comp_wl_cursor_timer(void *data)
1115 E_Client *ec = data;
1117 ELOGF("Mouse", "Cursor hide timer expired after %d sec.", ec, e_config->cursor_timer_interval);
1118 if (e_comp_wl->relative_ptr.activated) return ECORE_CALLBACK_CANCEL;
1120 e_comp_wl_cursor_hide(ec);
1122 return ECORE_CALLBACK_CANCEL;
1126 _e_comp_wl_device_send_axis(const char *dev_name, Evas_Device_Class dev_class, E_Client *ec, enum tizen_input_device_axis_type axis_type, double value)
1128 E_Devicemgr_Input_Device *input_dev;
1129 struct wl_resource *dev_res;
1130 struct wl_client *wc;
1135 if (ec->cur_mouse_action) return;
1136 if (e_object_is_del(E_OBJECT(ec))) return;
1137 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1138 if (!surface) return;
1140 f_value = wl_fixed_from_double(value);
1141 wc = wl_resource_get_client(surface);
1143 g_rec_mutex_lock(&e_devicemgr->device_list_mutex);
1144 EINA_LIST_FOREACH(e_devicemgr->device_list, l, input_dev)
1146 if ((strcmp(input_dev->identifier, dev_name)) || (input_dev->clas != (Ecore_Device_Class)dev_class)) continue;
1147 EINA_LIST_FOREACH(input_dev->resources, ll, dev_res)
1149 if (wl_resource_get_client(dev_res) != wc) continue;
1150 tizen_input_device_send_axis(dev_res, axis_type, f_value);
1153 g_rec_mutex_unlock(&e_devicemgr->device_list_mutex);
1157 _e_comp_wl_device_renew_axis(const char *dev_name, Evas_Device_Class dev_class, E_Client *ec, unsigned int idx, double radius_x, double radius_y, double pressure, double angle)
1159 if (idx >= e_input_touch_max_count_get()) return;
1161 _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_RADIUS_X, radius_x);
1162 e_devicemgr->multi[idx].radius_x = radius_x;
1163 _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_RADIUS_Y, radius_y);
1164 e_devicemgr->multi[idx].radius_y = radius_y;
1165 _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_PRESSURE, pressure);
1166 e_devicemgr->multi[idx].pressure = pressure;
1167 _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_ANGLE, angle);
1168 e_devicemgr->multi[idx].angle = angle;
1172 _e_comp_wl_device_handle_axes(const char *dev_name, Evas_Device_Class dev_class, E_Client *ec, unsigned int idx, double radius_x, double radius_y, double pressure, double angle)
1174 if (idx >= e_input_touch_max_count_get()) return;
1176 if (e_devicemgr->multi[idx].radius_x != radius_x)
1178 _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_RADIUS_X, radius_x);
1179 e_devicemgr->multi[idx].radius_x = radius_x;
1181 if (e_devicemgr->multi[idx].radius_y != radius_y)
1183 _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_RADIUS_Y, radius_y);
1184 e_devicemgr->multi[idx].radius_y = radius_y;
1186 if (e_devicemgr->multi[idx].pressure != pressure)
1188 _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_PRESSURE, pressure);
1189 e_devicemgr->multi[idx].pressure = pressure;
1191 if (e_devicemgr->multi[idx].angle != angle)
1193 _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_ANGLE, angle);
1194 e_devicemgr->multi[idx].angle = angle;
1199 _e_comp_wl_cursor_timer_control(Evas_Callback_Type type, E_Client *ec)
1201 Eina_Bool ret = EINA_TRUE;
1204 case EVAS_CALLBACK_MOUSE_IN:
1205 ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_IN, ec);
1208 if (e_comp_wl->ptr.hide_tmr)
1210 ecore_timer_del(e_comp_wl->ptr.hide_tmr);
1211 cursor_timer_ec = ec;
1212 e_comp_wl->ptr.hide_tmr = ecore_timer_add(e_config->cursor_timer_interval, _e_comp_wl_cursor_timer, ec);
1216 if (e_pointer_is_hidden(e_comp->pointer))
1221 case EVAS_CALLBACK_MOUSE_OUT:
1222 ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_OUT, ec);
1225 if (!e_comp_wl->ptr.hide_tmr && e_pointer_is_hidden(e_comp->pointer))
1229 case EVAS_CALLBACK_MOUSE_MOVE:
1230 ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_MOVE, ec);
1233 if (e_pointer_is_hidden(e_comp->pointer) || !ec->pointer_enter_sent)
1234 _e_comp_wl_cursor_reload(ec);
1237 case EVAS_CALLBACK_MOUSE_WHEEL:
1238 ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_WHEEL, ec);
1241 if (e_pointer_is_hidden(e_comp->pointer) || !ec->pointer_enter_sent)
1242 _e_comp_wl_cursor_reload(ec);
1245 case EVAS_CALLBACK_MOUSE_DOWN:
1246 ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_DOWN, ec);
1249 if (e_comp_wl->ptr.hide_tmr)
1251 ecore_timer_del(e_comp_wl->ptr.hide_tmr);
1252 e_comp_wl->ptr.hide_tmr = NULL;
1254 cursor_timer_ec = NULL;
1256 if (e_pointer_is_hidden(e_comp->pointer) || !ec->pointer_enter_sent)
1257 _e_comp_wl_cursor_reload(ec);
1260 case EVAS_CALLBACK_MOUSE_UP:
1261 ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_UP, ec);
1272 _e_comp_wl_check_cursor_timer_needed(E_Client *ec)
1274 if (ec->has_cursor_unset)
1277 if (!e_config->show_cursor)
1280 if (!e_config->use_cursor_timer)
1287 _e_comp_wl_evas_cb_mouse_in(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj, void *event)
1290 Evas_Event_Mouse_In *ev;
1291 struct wl_resource *res;
1292 struct wl_client *wc;
1295 E_Comp_Config *comp_conf;
1296 E_Client *prev_ptr_ec;
1300 e_comp_wl->ptr.x = wl_fixed_from_int(ev->output.x);
1301 e_comp_wl->ptr.y = wl_fixed_from_int(ev->output.y);
1303 if (!(ec = data)) return;
1304 if (e_object_is_del(E_OBJECT(ec))) return;
1305 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1306 if (!surface) return;
1308 prev_ptr_ec = e_comp_wl->ptr.ec;
1311 ELOGF("Mouse", "In (prev_ptr_ec: %p pointer_enter_sent: %d)", ec, prev_ptr_ec, prev_ptr_ec->pointer_enter_sent);
1312 prev_ptr_ec->pointer_enter_sent = EINA_FALSE;
1315 e_comp_wl->ptr.ec = ec;
1317 comp_conf = e_comp_config_get();
1318 if (comp_conf && comp_conf->input_log_enable)
1319 ELOGF("Mouse", "In (obj: %p, time: %d, canvas(%d, %d) output(%d, %d), name:%20s)",
1320 ec, obj, ev->timestamp, ev->canvas.x, ev->canvas.y, ev->output.x, ev->output.y,
1321 e_client_util_name_get(ec));
1323 if (_e_comp_wl_check_cursor_timer_needed(ec))
1325 if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_IN, ec))
1329 if (!eina_list_count(e_comp_wl->ptr.resources)) return;
1330 wc = wl_resource_get_client(surface);
1331 serial = wl_display_next_serial(e_comp_wl->wl.disp);
1332 EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
1334 if (!e_comp_wl_input_pointer_check(res)) continue;
1335 if (wl_resource_get_client(res) != wc) continue;
1337 _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, ev->timestamp);
1339 wl_pointer_send_enter(res, serial, surface,
1340 wl_fixed_from_int(ev->canvas.x - ec->client.x),
1341 wl_fixed_from_int(ev->canvas.y - ec->client.y));
1342 ec->pointer_enter_sent = EINA_TRUE;
1345 wl_signal_emit(&e_comp_wl->ptr_constraints.surface_mousein_signal, ec);
1349 _e_comp_wl_evas_cb_mouse_out(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj, void *event)
1352 Evas_Event_Mouse_Out *ev;
1353 struct wl_resource *res;
1354 struct wl_client *wc;
1357 Eina_Bool inside_check;
1358 E_Comp_Config *comp_conf;
1362 if (!(ec = data)) return;
1363 inside_check = E_INSIDE(ev->canvas.x, ev->canvas.y,
1364 ec->client.x, ec->client.y, ec->client.w, ec->client.h);
1365 if (ec->cur_mouse_action && inside_check) return;
1366 if (e_object_is_del(E_OBJECT(e_comp))) return;
1367 if (e_comp_wl->ptr.ec == ec)
1368 e_comp_wl->ptr.ec = NULL;
1369 if (e_object_is_del(E_OBJECT(ec))) return;
1371 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1372 if (!surface) return;
1374 comp_conf = e_comp_config_get();
1375 if (comp_conf && comp_conf->input_log_enable)
1376 ELOGF("Mouse", "Out (obj: %p, time: %d, canvas(%d, %d) output(%d, %d), name:%20s)",
1377 ec, obj, ev->timestamp, ev->canvas.x, ev->canvas.y, ev->output.x, ev->output.y,
1378 e_client_util_name_get(ec));
1380 if (_e_comp_wl_check_cursor_timer_needed(ec))
1382 if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_OUT, ec))
1386 if (!eina_list_count(e_comp_wl->ptr.resources)) return;
1388 wc = wl_resource_get_client(surface);
1389 serial = wl_display_next_serial(e_comp_wl->wl.disp);
1390 EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
1392 if (!e_comp_wl_input_pointer_check(res)) continue;
1393 if (wl_resource_get_client(res) != wc) continue;
1394 if (ec->pointer_enter_sent == EINA_FALSE) continue;
1396 _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, ev->timestamp);
1398 wl_pointer_send_leave(res, serial, surface);
1399 ec->pointer_enter_sent = EINA_FALSE;
1404 _e_comp_wl_send_touch(E_Client *ec, int idx, int canvas_x, int canvas_y, uint32_t timestamp, Eina_Bool pressed)
1407 struct wl_client *wc;
1408 struct wl_resource *res;
1411 E_Comp_Config *comp_conf = NULL;
1414 if (e_object_is_del(E_OBJECT(ec))) return;
1415 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1416 if (!surface) return;
1418 wc = wl_resource_get_client(surface);
1419 serial = wl_display_next_serial(e_comp_wl->wl.disp);
1423 x = wl_fixed_from_int(canvas_x - ec->client.x);
1424 y = wl_fixed_from_int(canvas_y - ec->client.y);
1427 comp_conf = e_comp_config_get();
1429 EINA_LIST_FOREACH(e_comp_wl->touch.resources, l, res)
1431 if (wl_resource_get_client(res) != wc) continue;
1432 if (!e_comp_wl_input_touch_check(res)) continue;
1433 TRACE_INPUT_BEGIN(_e_comp_wl_send_touch);
1436 if (comp_conf && comp_conf->input_log_enable)
1437 ELOGF("Touch", "Down (id: %d, time: %d, x:%d, y:%d, name:%20s)", ec, idx, timestamp, canvas_x - ec->client.x, canvas_y - ec->client.y, e_client_util_name_get(ec));
1439 wl_touch_send_down(res, serial, timestamp, surface, idx, x, y); //id 0 for the 1st finger
1443 if (comp_conf && comp_conf->input_log_enable)
1444 ELOGF("Touch", "Up (id: %d, time: %d, x:%d, y:%d, name:%20s)\n", ec, idx, timestamp, canvas_x - ec->client.x, canvas_y - ec->client.y, e_client_util_name_get(ec));
1446 wl_touch_send_up(res, serial, timestamp, idx);
1453 _e_comp_wl_send_touch_move(E_Client *ec, int idx, int canvas_x, int canvas_y, uint32_t timestamp)
1456 struct wl_client *wc;
1457 struct wl_resource *res;
1461 if (ec->cur_mouse_action) return;
1462 if (e_object_is_del(E_OBJECT(ec))) return;
1463 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1464 if (!surface) return;
1466 wc = wl_resource_get_client(surface);
1468 x = wl_fixed_from_int(canvas_x - ec->client.x);
1469 y = wl_fixed_from_int(canvas_y - ec->client.y);
1471 EINA_LIST_FOREACH(e_comp_wl->touch.resources, l, res)
1473 if (wl_resource_get_client(res) != wc) continue;
1474 if (!e_comp_wl_input_touch_check(res)) continue;
1475 wl_touch_send_motion(res, timestamp, idx, x, y);
1480 _e_comp_wl_send_mouse_move(E_Client *ec, int x, int y, unsigned int timestamp)
1482 struct wl_resource *res;
1483 struct wl_client *wc;
1487 if (ec->cur_mouse_action) return;
1488 if (e_object_is_del(E_OBJECT(ec))) return;
1489 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1490 if (!surface) return;
1492 wc = wl_resource_get_client(surface);
1493 EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
1495 if (!e_comp_wl_input_pointer_check(res)) continue;
1496 if (wl_resource_get_client(res) != wc) continue;
1497 wl_pointer_send_motion(res, timestamp,
1498 wl_fixed_from_int(x - ec->client.x),
1499 wl_fixed_from_int(y - ec->client.y));
1504 _e_comp_wl_cursor_move_timer_control(E_Client *ec)
1506 if (e_comp_wl->ptr.hide_tmr)
1508 if (cursor_timer_ec == ec)
1510 ecore_timer_interval_set(e_comp_wl->ptr.hide_tmr, e_config->cursor_timer_interval);
1511 ecore_timer_reset(e_comp_wl->ptr.hide_tmr);
1515 ecore_timer_del(e_comp_wl->ptr.hide_tmr);
1516 cursor_timer_ec = ec;
1517 e_comp_wl->ptr.hide_tmr = ecore_timer_add(e_config->cursor_timer_interval, _e_comp_wl_cursor_timer, ec);
1522 cursor_timer_ec = ec;
1523 e_comp_wl->ptr.hide_tmr = ecore_timer_add(e_config->cursor_timer_interval, _e_comp_wl_cursor_timer, ec);
1528 _e_comp_wl_evas_cb_mouse_move(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj, void *event)
1531 Evas_Event_Mouse_Move *ev;
1532 Evas_Device *dev = NULL;
1533 const char *dev_name;
1534 E_Comp_Config *comp_conf;
1538 e_comp->wl_comp_data->ptr.x = wl_fixed_from_int(ev->cur.canvas.x);
1539 e_comp->wl_comp_data->ptr.y = wl_fixed_from_int(ev->cur.canvas.y);
1541 if (!(ec = data)) return;
1542 if (e_object_is_del(E_OBJECT(ec))) return;
1543 if ((ec->ignored) && (!ec->remote_surface.provider)) return;
1544 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1545 if (!surface) return;
1547 if ((!need_send_motion) && (!need_send_released) && (ec->visibility.obscured == E_VISIBILITY_FULLY_OBSCURED)) return;
1550 dev_name = evas_device_description_get(dev);
1552 comp_conf = e_comp_config_get();
1553 if (comp_conf && comp_conf->input_log_enable)
1554 ELOGF("Mouse", "Move (obj: %p, time: %d, canvas(%d, %d), output(%d, %d), name:%20s) (dev:%s)",
1555 ec, obj, ev->timestamp, ev->cur.canvas.x, ev->cur.canvas.y, ev->cur.output.x, ev->cur.output.y,
1556 e_client_util_name_get(ec), dev_name);
1558 if (dev && (evas_device_class_get(dev) == EVAS_DEVICE_CLASS_TOUCH))
1560 if (!e_comp_wl->drag_client)
1562 e_comp_wl->touch.faked_ec = ec;
1563 if (e_comp_wl->touch.pressed & (1 << 0))
1565 _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1567 _e_comp_wl_device_handle_axes(dev_name, evas_device_class_get(dev),
1568 ec, 0, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1569 _e_comp_wl_send_touch_move(ec, 0, ev->cur.canvas.x, ev->cur.canvas.y, ev->timestamp);
1573 e_pointer_touch_move(e_comp->pointer, ev->cur.output.x, ev->cur.output.y);
1577 if (!e_comp_wl->drag_client)
1579 if (_e_comp_wl_check_cursor_timer_needed(ec))
1581 if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_MOVE, ec))
1585 _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1586 _e_comp_wl_send_mouse_move(ec, ev->cur.canvas.x, ev->cur.canvas.y, ev->timestamp);
1588 if (!need_send_released) // set cursor's hide_tmr only when mouse button is not pressed
1590 if (_e_comp_wl_check_cursor_timer_needed(ec))
1591 _e_comp_wl_cursor_move_timer_control(ec);
1595 e_pointer_mouse_move(e_comp->pointer, ev->cur.output.x, ev->cur.output.y);
1600 _e_comp_wl_evas_handle_mouse_button_to_touch(E_Client *ec, uint32_t timestamp, int canvas_x, int canvas_y, Eina_Bool flag)
1602 if (ec->cur_mouse_action || e_comp_wl->drag) return;
1603 if (e_object_is_del(E_OBJECT(ec))) return;
1604 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1605 if (!surface) return;
1606 if ((ec->ignored) && (!ec->remote_surface.provider)) return;
1608 e_comp_wl->ptr.button = BTN_LEFT;
1610 _e_comp_wl_send_touch(ec, 0, canvas_x, canvas_y, timestamp, flag);
1614 _e_comp_wl_evas_cb_mouse_down(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj, void *event)
1616 E_Client *ec = data;
1617 Evas_Event_Mouse_Down *ev = event;
1618 Evas_Device *dev = NULL;
1619 const Evas_Device *seat_dev;
1620 const char *dev_name, *seat_name;
1621 E_Comp_Config *comp_conf = NULL;
1624 if (e_object_is_del(E_OBJECT(ec))) return;
1627 dev_name = evas_device_description_get(dev);
1629 seat_dev = evas_device_parent_get(dev);
1630 seat_name = evas_device_name_get(seat_dev);
1632 comp_conf = e_comp_config_get();
1633 if (comp_conf && comp_conf->input_log_enable)
1634 ELOGF("Touch", "Down (obj: %p, button: %d, time: %d, x:%d, y:%d, name:%20s) (dev:%s, seat:%s)",
1635 ec, obj, ev->button, ev->timestamp, ev->output.x, ev->output.y, e_client_util_name_get(ec),
1636 dev_name, seat_name);
1638 _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1640 if (dev && (evas_device_class_get(dev) == EVAS_DEVICE_CLASS_TOUCH))
1642 e_comp_wl->touch.faked_ec = ec;
1645 _e_comp_wl_device_renew_axis(dev_name, evas_device_class_get(dev),
1646 ec, 0, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1647 _e_comp_wl_evas_handle_mouse_button_to_touch(ec, ev->timestamp, ev->canvas.x, ev->canvas.y, EINA_TRUE);
1649 e_pointer_touch_move(e_comp->pointer, ev->output.x, ev->output.y);
1650 e_comp_wl->touch.pressed |= (1 << 0);
1654 if (_e_comp_wl_check_cursor_timer_needed(ec))
1656 if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_DOWN, ec))
1660 e_comp_wl_evas_handle_mouse_button(ec, ev->timestamp, ev->button,
1661 WL_POINTER_BUTTON_STATE_PRESSED);
1663 e_pointer_mouse_move(e_comp->pointer, ev->output.x, ev->output.y);
1666 need_send_released = EINA_TRUE;
1670 _e_comp_wl_evas_cb_mouse_up(void *data, Evas *evas, Evas_Object *obj, void *event)
1672 E_Client *ec = data;
1673 Evas_Event_Mouse_Up *ev = event;
1674 Evas_Device *dev = NULL;
1675 const Evas_Device *seat_dev;
1676 const char *dev_name, *seat_name;;
1677 Evas_Event_Flags flags;
1678 E_Comp_Config *comp_conf = NULL;
1681 if (ec->cur_mouse_action) return;
1682 if (e_object_is_del(E_OBJECT(ec))) return;
1684 if (!need_send_released)
1686 need_send_motion = EINA_TRUE;
1690 dev_name = evas_device_description_get(dev);
1692 seat_dev = evas_device_parent_get(dev);
1693 seat_name = evas_device_name_get(seat_dev);
1694 flags = evas_event_default_flags_get(evas);
1696 comp_conf = e_comp_config_get();
1697 if (comp_conf && comp_conf->input_log_enable)
1698 ELOGF("Touch", "Up (obj: %p, button: %d, flag: 0x%x, time: %d, x:%d, y:%d, name:%20s) (dev:%s, seat:%s)",
1699 ec, obj, ev->button, flags, ev->timestamp, ev->output.x, ev->output.y, e_client_util_name_get(ec),
1700 dev_name, seat_name);
1702 if (dev && (evas_device_class_get(dev) == EVAS_DEVICE_CLASS_TOUCH))
1704 e_comp_wl->touch.pressed &= ~(1 << 0);
1706 if (!e_comp_wl->touch.pressed && e_comp_wl->touch.faked_ec)
1707 e_comp_wl->touch.faked_ec = NULL;
1710 if (flags & EVAS_EVENT_FLAG_ON_HOLD) goto finish;
1712 _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1714 if (dev && (evas_device_class_get(dev) == EVAS_DEVICE_CLASS_TOUCH))
1717 _e_comp_wl_device_handle_axes(dev_name, evas_device_class_get(dev),
1718 ec, 0, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1719 _e_comp_wl_evas_handle_mouse_button_to_touch(ec, ev->timestamp, ev->canvas.x, ev->canvas.y, EINA_FALSE);
1723 if (_e_comp_wl_check_cursor_timer_needed(ec))
1725 if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_UP, ec))
1729 e_comp_wl_evas_handle_mouse_button(ec, ev->timestamp, ev->button,
1730 WL_POINTER_BUTTON_STATE_RELEASED);
1732 if (_e_comp_wl_check_cursor_timer_needed(ec))
1733 _e_comp_wl_cursor_move_timer_control(ec);
1737 need_send_released = EINA_FALSE;
1741 _e_comp_wl_mouse_wheel_send(E_Client *ec, int direction, int z, int timestamp)
1743 struct wl_resource *res;
1744 struct wl_client *wc;
1749 axis = WL_POINTER_AXIS_VERTICAL_SCROLL;
1751 axis = WL_POINTER_AXIS_HORIZONTAL_SCROLL;
1754 dir = -wl_fixed_from_int(abs(z));
1756 dir = wl_fixed_from_int(z);
1759 if (e_object_is_del(E_OBJECT(ec))) return;
1760 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1761 if (!surface) return;
1763 wc = wl_resource_get_client(surface);
1764 EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
1766 if (!e_comp_wl_input_pointer_check(res)) continue;
1767 if (wl_resource_get_client(res) != wc) continue;
1768 wl_pointer_send_axis(res, timestamp, axis, dir);
1773 _e_comp_wl_evas_cb_mouse_wheel(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event)
1776 Evas_Event_Mouse_Wheel *ev;
1779 if (!(ec = data)) return;
1780 if (ec->cur_mouse_action) return;
1781 if (e_object_is_del(E_OBJECT(ec))) return;
1782 if ((ec->ignored) && (!ec->remote_surface.provider)) return;
1783 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1784 if (!surface) return;
1786 if (!eina_list_count(e_comp_wl->ptr.resources))
1789 if (_e_comp_wl_check_cursor_timer_needed(ec))
1791 if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_WHEEL, ec))
1795 _e_comp_wl_device_send_event_device(ec, ev->dev, ev->timestamp);
1797 _e_comp_wl_mouse_wheel_send(ec, ev->direction, ev->z, ev->timestamp);
1799 if (!need_send_released) // set cursor's hide_tmr only when mouse button is not pressed
1801 if (_e_comp_wl_check_cursor_timer_needed(ec))
1802 _e_comp_wl_cursor_move_timer_control(ec);
1807 _e_comp_wl_evas_cb_multi_down(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj, void *event)
1809 E_Client *ec = data;
1810 Evas_Event_Multi_Down *ev = event;
1811 Evas_Device *dev = NULL;
1812 const Evas_Device *seat_dev;
1813 const char *dev_name, *seat_name;
1814 Evas_Device_Class dev_class;
1815 E_Comp_Config *comp_conf = NULL;
1818 if (e_object_is_del(E_OBJECT(ec))) return;
1819 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1820 if (!surface) return;
1822 /* Do not deliver emulated single touch events to client */
1823 if (ev->device == 0) return;
1826 dev_name = evas_device_description_get(dev);
1827 e_comp_wl->touch.faked_ec = ec;
1829 seat_dev = evas_device_parent_get(dev);
1830 seat_name = evas_device_name_get(seat_dev);
1832 comp_conf = e_comp_config_get();
1833 if (comp_conf && comp_conf->input_log_enable)
1834 ELOGF("Touch", "Down (obj: %p, idx: %d, time: %d, x:%d, y:%d, name:%20s) (dev:%s, seat:%s)",
1835 ec, obj, ev->device, ev->timestamp, ev->output.x, ev->output.y, e_client_util_name_get(ec),
1836 dev_name, seat_name);
1838 if (dev && dev_name)
1840 dev_class = evas_device_class_get(dev);
1841 _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1842 _e_comp_wl_device_renew_axis(dev_name, dev_class, ec, ev->device, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1845 _e_comp_wl_send_touch(ec, ev->device, ev->canvas.x, ev->canvas.y, ev->timestamp, EINA_TRUE);
1846 e_comp_wl->touch.pressed |= (1 << ev->device);
1850 _e_comp_wl_evas_cb_multi_up(void *data, Evas *evas, Evas_Object *obj EINA_UNUSED, void *event)
1852 E_Client *ec = data;
1853 Evas_Event_Multi_Up *ev = event;
1854 Evas_Device *dev = NULL;
1855 const Evas_Device *seat_dev;
1856 const char *dev_name, *seat_name;
1857 Evas_Device_Class dev_class;
1858 Evas_Event_Flags flags;
1859 E_Comp_Config *comp_conf = NULL;
1862 if (e_object_is_del(E_OBJECT(ec))) return;
1863 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1864 if (!surface) return;
1866 /* Do not deliver emulated single touch events to client */
1867 if (ev->device == 0) return;
1869 flags = evas_event_default_flags_get(evas);
1871 e_comp_wl->touch.pressed &= ~(1 << ev->device);
1872 if (!e_comp_wl->touch.pressed && e_comp_wl->touch.faked_ec)
1873 e_comp_wl->touch.faked_ec = NULL;
1875 if (flags & EVAS_EVENT_FLAG_ON_HOLD) return;
1878 dev_name = evas_device_description_get(dev);
1880 seat_dev = evas_device_parent_get(dev);
1881 seat_name = evas_device_name_get(seat_dev);
1883 comp_conf = e_comp_config_get();
1884 if (comp_conf && comp_conf->input_log_enable)
1885 ELOGF("Touch", "Up (obj: %p, idx: %d, flag: 0x%x, time: %d, x:%d, y:%d, name:%20s) (dev:%s, seat:%s)",
1886 ec, obj, ev->device, flags, ev->timestamp, ev->output.x, ev->output.y, e_client_util_name_get(ec),
1887 dev_name, seat_name);
1889 if (dev && dev_name)
1891 dev_class = evas_device_class_get(dev);
1892 _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1893 _e_comp_wl_device_handle_axes(dev_name, dev_class, ec, ev->device, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1896 _e_comp_wl_send_touch(ec, ev->device, 0, 0, ev->timestamp, EINA_FALSE);
1900 _e_comp_wl_evas_cb_multi_move(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event)
1902 E_Client *ec = data;
1903 Evas_Event_Multi_Move *ev = event;
1904 Evas_Device *dev = NULL;
1905 const char *dev_name;
1906 Evas_Device_Class dev_class;
1909 if (e_object_is_del(E_OBJECT(ec))) return;
1910 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1911 if (!surface) return;
1913 /* Do not deliver emulated single touch events to client */
1914 if (ev->device == 0) return;
1916 e_comp_wl->touch.faked_ec = ec;
1918 if (e_comp_wl->touch.pressed & (1 << ev->device))
1921 if (dev && (dev_name = evas_device_description_get(dev)))
1923 dev_class = evas_device_class_get(dev);
1924 _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1925 _e_comp_wl_device_handle_axes(dev_name, dev_class, ec, ev->device, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1928 _e_comp_wl_send_touch_move(ec, ev->device, ev->cur.canvas.x, ev->cur.canvas.y, ev->timestamp);
1933 _e_comp_wl_client_priority_adjust(int pid, int set, int adj, Eina_Bool use_adj, Eina_Bool adj_child, Eina_Bool do_child)
1936 char *file, buff[PATH_MAX];
1943 n = (getpriority(PRIO_PROCESS, pid) + adj);
1947 setpriority(PRIO_PROCESS, pid, n);
1950 use_adj = EINA_TRUE;
1952 if (!do_child) return;
1954 files = ecore_file_ls("/proc");
1955 EINA_LIST_FREE(files, file)
1957 if (!isdigit(file[0]))
1960 snprintf(buff, sizeof(buff), "/proc/%s/stat", file);
1961 if ((f = fopen(buff, "r")))
1965 num_read = fscanf(f, "%i %*s %*s %i %*s", &pid2, &ppid);
1967 if (num_read == 2 && ppid == pid)
1968 _e_comp_wl_client_priority_adjust(pid2, set,
1970 adj_child, do_child);
1978 _e_comp_wl_client_priority_raise(E_Client *ec)
1980 if (!e_config->priority_control) return;
1981 if (ec->netwm.pid <= 0) return;
1982 if (ec->netwm.pid == getpid()) return;
1983 _e_comp_wl_client_priority_adjust(ec->netwm.pid,
1984 e_config->priority - 1, -1,
1985 EINA_FALSE, EINA_TRUE, EINA_FALSE);
1989 _e_comp_wl_client_priority_normal(E_Client *ec)
1991 if (!e_config->priority_control) return;
1992 if (ec->netwm.pid <= 0) return;
1993 if (ec->netwm.pid == getpid()) return;
1994 _e_comp_wl_client_priority_adjust(ec->netwm.pid, e_config->priority, 1,
1995 EINA_FALSE, EINA_TRUE, EINA_FALSE);
1999 _e_comp_wl_evas_cb_focus_in_timer(E_Client *ec)
2002 E_Comp_Wl_Key_Data *k;
2003 struct wl_resource *res;
2007 if (!ec) return EINA_FALSE;
2008 if (e_object_is_del(E_OBJECT(ec))) return EINA_FALSE;
2009 if (!ec->comp_data) return EINA_FALSE;
2011 ec->comp_data->on_focus_timer = NULL;
2012 g_mutex_lock(&e_comp_wl->kbd.focused_mutex);
2013 if (!e_comp_wl->kbd.focused)
2015 g_mutex_unlock(&e_comp_wl->kbd.focused_mutex);
2018 g_mutex_unlock(&e_comp_wl->kbd.focused_mutex);
2020 serial = wl_display_next_serial(e_comp_wl->wl.disp);
2021 t = ecore_time_unix_get();
2023 g_mutex_lock(&e_comp_wl->kbd.focused_mutex);
2024 g_mutex_lock(&e_comp_wl->kbd.keys_mutex);
2025 EINA_LIST_FOREACH(e_comp_wl->kbd.focused, l, res)
2027 wl_array_for_each(k, &e_comp_wl->kbd.keys)
2029 _e_comp_wl_send_event_device(wl_resource_get_client(res), t, k->dev, serial);
2030 wl_keyboard_send_key(res, serial, t,
2031 k->key, WL_KEYBOARD_KEY_STATE_PRESSED);
2034 g_mutex_unlock(&e_comp_wl->kbd.keys_mutex);
2035 g_mutex_unlock(&e_comp_wl->kbd.focused_mutex);
2039 /* It is called in the following cases:
2040 * When a normal ec->frame has focus.
2041 * Or launching image ec is replaced to the real ec.
2044 e_comp_wl_feed_focus_in(E_Client *ec)
2047 struct wl_resource *res;
2048 struct wl_client *wc;
2052 if (e_object_is_del(E_OBJECT(ec))) return;
2053 if (ec->iconic) return;
2055 /* block spurious focus events */
2056 focused = e_client_focused_get();
2057 if ((focused) && (ec != focused)) return;
2059 /* raise client priority */
2060 _e_comp_wl_client_priority_raise(ec);
2061 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
2062 if (!surface) return;
2064 wc = wl_resource_get_client(surface);
2066 g_mutex_lock(&e_comp_wl->kbd.resource_mutex);
2067 EINA_LIST_FOREACH(e_comp_wl->kbd.resources, l, res)
2069 if (wl_resource_get_client(res) == wc)
2071 g_mutex_lock(&e_comp_wl->kbd.focused_mutex);
2072 if (!eina_list_data_find(e_comp_wl->kbd.focused, res))
2073 e_comp_wl->kbd.focused = eina_list_append(e_comp_wl->kbd.focused, res);
2074 g_mutex_unlock(&e_comp_wl->kbd.focused_mutex);
2077 g_mutex_unlock(&e_comp_wl->kbd.resource_mutex);
2079 g_mutex_lock(&e_comp_wl->kbd.focused_mutex);
2080 if (!e_comp_wl->kbd.focused)
2082 g_mutex_unlock(&e_comp_wl->kbd.focused_mutex);
2085 g_mutex_unlock(&e_comp_wl->kbd.focused_mutex);
2087 e_comp_wl->kbd.focus = surface;
2088 e_comp_wl_input_keyboard_enter_send(ec);
2089 e_comp_wl_data_device_keyboard_focus_set();
2090 ec->comp_data->on_focus_timer =
2091 ecore_timer_add(((e_config->xkb.delay_held_key_input_to_focus)/1000.0),
2092 (Ecore_Task_Cb)_e_comp_wl_evas_cb_focus_in_timer, ec);
2093 int rotation = ec->e.state.rot.ang.curr;
2094 e_pointer_rotation_set(e_comp->pointer, rotation);
2098 _e_comp_wl_evas_cb_focus_in(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2101 if (!(ec = data)) return;
2102 e_comp_wl_feed_focus_in(ec);
2106 _e_comp_wl_evas_cb_focus_out(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2109 struct wl_resource *res;
2111 E_Comp_Wl_Key_Data *k;
2115 if (!(ec = data)) return;
2117 if (!ec->comp_data) return;
2119 E_FREE_FUNC(ec->comp_data->on_focus_timer, ecore_timer_del);
2121 /* lower client priority */
2122 if (!e_object_is_del(data))
2123 _e_comp_wl_client_priority_normal(ec);
2126 /* update keyboard modifier state */
2127 g_mutex_lock(&e_comp_wl->kbd.keys_mutex);
2128 wl_array_for_each(k, &e_comp_wl->kbd.keys)
2129 e_comp_wl_input_keyboard_state_update(k->key, EINA_FALSE);
2131 g_mutex_unlock(&e_comp_wl->kbd.keys_mutex);
2133 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
2134 if (!surface) return;
2136 g_mutex_lock(&e_comp_wl->kbd.resource_mutex);
2137 if (!eina_list_count(e_comp_wl->kbd.resources))
2139 g_mutex_unlock(&e_comp_wl->kbd.resource_mutex);
2143 g_mutex_unlock(&e_comp_wl->kbd.resource_mutex);
2145 /* send keyboard_leave to all keyboard resources */
2146 serial = wl_display_next_serial(e_comp_wl->wl.disp);
2147 t = ecore_time_unix_get();
2149 g_mutex_lock(&e_comp_wl->kbd.focused_mutex);
2150 g_mutex_lock(&e_comp_wl->kbd.keys_mutex);
2151 EINA_LIST_FOREACH_SAFE(e_comp_wl->kbd.focused, l, ll, res)
2153 wl_array_for_each(k, &e_comp_wl->kbd.keys)
2155 _e_comp_wl_send_event_device(wl_resource_get_client(res), t, k->dev, serial);
2156 wl_keyboard_send_key(res, serial, t,
2157 k->key, WL_KEYBOARD_KEY_STATE_RELEASED);
2159 wl_keyboard_send_leave(res, serial, surface);
2160 e_comp_wl->kbd.focused =
2161 eina_list_remove_list(e_comp_wl->kbd.focused, l);
2163 g_mutex_unlock(&e_comp_wl->kbd.keys_mutex);
2164 g_mutex_unlock(&e_comp_wl->kbd.focused_mutex);
2168 _e_comp_wl_evas_cb_resize(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2172 if (!(ec = data)) return;
2174 if (!ec->comp_data->shell.configure_send) return;
2176 /* TODO: calculate x, y with transfrom object */
2177 if ((e_client_util_resizing_get(ec)) && (!ec->transformed) && (e_comp_wl->resize.edges))
2181 w = ec->mouse.last_down[ec->moveinfo.down.button - 1].w;
2182 h = ec->mouse.last_down[ec->moveinfo.down.button - 1].h;
2183 if (e_comp_object_frame_exists(ec->frame))
2184 e_comp_object_frame_wh_unadjust(ec->frame, w, h, &w, &h);
2186 switch (ec->resize_mode)
2188 case E_POINTER_RESIZE_TL:
2189 case E_POINTER_RESIZE_L:
2190 case E_POINTER_RESIZE_BL:
2191 w += ec->mouse.last_down[ec->moveinfo.down.button - 1].mx -
2192 ec->mouse.current.mx;
2194 case E_POINTER_RESIZE_TR:
2195 case E_POINTER_RESIZE_R:
2196 case E_POINTER_RESIZE_BR:
2197 w += ec->mouse.current.mx - ec->mouse.last_down[ec->moveinfo.down.button - 1].mx;
2202 switch (ec->resize_mode)
2204 case E_POINTER_RESIZE_TL:
2205 case E_POINTER_RESIZE_T:
2206 case E_POINTER_RESIZE_TR:
2207 h += ec->mouse.last_down[ec->moveinfo.down.button - 1].my -
2208 ec->mouse.current.my;
2210 case E_POINTER_RESIZE_BL:
2211 case E_POINTER_RESIZE_B:
2212 case E_POINTER_RESIZE_BR:
2213 h += ec->mouse.current.my - ec->mouse.last_down[ec->moveinfo.down.button - 1].my;
2218 w = E_CLAMP(w, 1, w);
2219 h = E_CLAMP(h, 1, h);
2220 e_client_resize_limit(ec, &w, &h);
2222 e_client_shell_configure_send(ec, e_comp_wl->resize.edges, w, h);
2224 else if ((!ec->fullscreen) && (!ec->maximized) &&
2225 (!ec->comp_data->maximize_pre))
2229 e_pixmap_size_get(ec->pixmap, &pw, &ph);
2230 if ((pw != ec->w) || (ph != ec->h))
2232 _e_comp_wl_configure_send(ec, 1, 1);
2236 if (ec->comp_data->sub.below_obj)
2237 e_comp_wl_subsurface_bg_rectangle_map_apply(ec);
2241 _e_comp_wl_evas_cb_maximize_pre(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2243 E_Client *ec = data;
2245 ec->comp_data->maximize_pre = 1;
2249 _e_comp_wl_evas_cb_maximize_done(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2251 E_Client *ec = data;
2254 if (e_object_is_del(E_OBJECT(ec))) return;
2256 e_client_maximized_geometry_get(ec, NULL, NULL, &w, &h);
2257 e_client_shell_configure_send(ec, 0, w, h);
2259 ec->comp_data->maximize_pre = 0;
2263 _e_comp_wl_evas_cb_unmaximize_pre(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2265 E_Client *ec = data;
2267 ec->comp_data->maximize_pre = 1;
2271 _e_comp_wl_evas_cb_unmaximize_done(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2273 E_Client *ec = data;
2275 if (e_object_is_del(E_OBJECT(ec))) return;
2277 /* check for wayland pixmap */
2279 if (ec->comp_data->shell.configure_send)
2280 _e_comp_wl_configure_send(ec, 0, 0);
2282 ec->comp_data->maximize_pre = 0;
2286 _e_comp_wl_evas_cb_fullscreen(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2288 E_Client *ec = data;
2290 if (e_object_is_del(E_OBJECT(ec))) return;
2292 /* check for wayland pixmap */
2294 if (ec->comp_data->shell.configure_send)
2295 _e_comp_wl_configure_send(ec, 0, 1);
2297 ec->comp_data->maximize_pre = 0;
2301 _e_comp_wl_evas_cb_unfullscreen(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2303 E_Client *ec = data;
2305 if (e_object_is_del(E_OBJECT(ec))) return;
2307 /* check for wayland pixmap */
2309 if (ec->comp_data->shell.configure_send)
2310 _e_comp_wl_configure_send(ec, 0, 0);
2312 ec->comp_data->maximize_pre = 0;
2316 _e_comp_wl_evas_cb_delete_request(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2320 if (!(ec = data)) return;
2322 e_comp_ignore_win_del(E_PIXMAP_TYPE_WL, e_pixmap_window_get(ec->pixmap));
2324 e_object_del(E_OBJECT(ec));
2326 _e_comp_wl_focus_check();
2328 /* TODO: Delete request send ??
2329 * NB: No such animal wrt wayland */
2333 _e_comp_wl_evas_cb_kill_request(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2337 if (!(ec = data)) return;
2339 e_comp_ignore_win_del(E_PIXMAP_TYPE_WL, e_pixmap_window_get(ec->pixmap));
2342 if (ec->comp_data->reparented)
2343 e_client_comp_hidden_set(ec, EINA_TRUE);
2346 evas_object_pass_events_set(ec->frame, EINA_TRUE);
2347 if (ec->visible) evas_object_hide(ec->frame);
2348 if (!ec->internal) e_object_del(E_OBJECT(ec));
2350 _e_comp_wl_focus_check();
2354 _e_comp_wl_evas_cb_ping(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2358 if (!(ec = data)) return;
2360 e_client_shell_ping(ec);
2364 _e_comp_wl_evas_cb_color_set(void *data, Evas_Object *obj, void *event EINA_UNUSED)
2369 if (!(ec = data)) return;
2370 evas_object_color_get(obj, NULL, NULL, NULL, &a);
2371 if (ec->netwm.opacity == a) return;
2372 ec->netwm.opacity = a;
2373 ec->netwm.opacity_changed = EINA_TRUE;
2377 _e_comp_wl_buffer_damage_set(E_Comp_Wl_Buffer *buffer, Eina_List *buffer_damages)
2379 Eina_Rectangle *damage_rect = NULL;
2380 Eina_Rectangle *dmg = NULL;
2381 Eina_List *l = NULL;
2383 if (buffer->type != E_COMP_WL_BUFFER_TYPE_NATIVE &&
2384 buffer->type != E_COMP_WL_BUFFER_TYPE_TBM)
2387 if (!buffer->tbm_surface) return;
2391 EINA_LIST_FOREACH(buffer_damages, l, dmg)
2395 damage_rect = eina_rectangle_new(dmg->x, dmg->y, dmg->w, dmg->h);
2396 EINA_SAFETY_ON_FALSE_RETURN(damage_rect);
2399 eina_rectangle_union(damage_rect, dmg);
2404 damage_rect = eina_rectangle_new(0, 0, buffer->w, buffer->h);
2405 EINA_SAFETY_ON_FALSE_RETURN(damage_rect);
2408 tbm_surface_internal_set_damage(buffer->tbm_surface,
2414 eina_rectangle_free(damage_rect);
2418 _e_comp_wl_client_evas_init(E_Client *ec)
2420 if (!ec || !ec->comp_data) return;
2421 if (ec->comp_data->evas_init) return;
2423 evas_object_event_callback_add(ec->frame, EVAS_CALLBACK_SHOW, _e_comp_wl_evas_cb_show, ec);
2424 evas_object_event_callback_add(ec->frame, EVAS_CALLBACK_HIDE, _e_comp_wl_evas_cb_hide, ec);
2425 evas_object_event_callback_add(ec->frame, EVAS_CALLBACK_MOVE, _e_comp_wl_evas_cb_move, ec);
2428 evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_IN, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_in, ec);
2429 evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_OUT, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_out, ec);
2430 evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_MOVE, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_move, ec);
2431 evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_DOWN, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_down, ec);
2432 evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_UP, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_up, ec);
2433 evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_WHEEL, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_wheel, ec);
2435 evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MULTI_DOWN, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_multi_down, ec);
2436 evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MULTI_UP, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_multi_up, ec);
2437 evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MULTI_MOVE, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_multi_move, ec);
2439 evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_FOCUS_IN, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_focus_in, ec);
2440 evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_FOCUS_OUT, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_focus_out, ec);
2444 evas_object_smart_callback_add(ec->frame, "client_resize", _e_comp_wl_evas_cb_resize, ec);
2445 evas_object_smart_callback_add(ec->frame, "maximize_pre", _e_comp_wl_evas_cb_maximize_pre, ec);
2446 evas_object_smart_callback_add(ec->frame, "maximize_done", _e_comp_wl_evas_cb_maximize_done, ec);
2447 evas_object_smart_callback_add(ec->frame, "unmaximize_pre", _e_comp_wl_evas_cb_unmaximize_pre, ec);
2448 evas_object_smart_callback_add(ec->frame, "unmaximize_done", _e_comp_wl_evas_cb_unmaximize_done, ec);
2449 evas_object_smart_callback_add(ec->frame, "fullscreen", _e_comp_wl_evas_cb_fullscreen, ec);
2450 evas_object_smart_callback_add(ec->frame, "unfullscreen", _e_comp_wl_evas_cb_unfullscreen, ec);
2453 /* setup delete/kill callbacks */
2454 evas_object_smart_callback_add(ec->frame, "delete_request", _e_comp_wl_evas_cb_delete_request, ec);
2455 evas_object_smart_callback_add(ec->frame, "kill_request", _e_comp_wl_evas_cb_kill_request, ec);
2457 /* setup ping callback */
2458 evas_object_smart_callback_add(ec->frame, "ping", _e_comp_wl_evas_cb_ping, ec);
2459 evas_object_smart_callback_add(ec->frame, "color_set", _e_comp_wl_evas_cb_color_set, ec);
2461 ec->comp_data->evas_init = EINA_TRUE;
2465 _e_comp_wl_client_evas_deinit(E_Client *ec)
2467 if (!ec || !ec->comp_data) return;
2468 if (!ec->comp_data->evas_init) return;
2470 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_SHOW, _e_comp_wl_evas_cb_show);
2471 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_HIDE, _e_comp_wl_evas_cb_hide);
2472 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOVE, _e_comp_wl_evas_cb_move);
2474 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_IN, _e_comp_wl_evas_cb_mouse_in);
2475 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_OUT, _e_comp_wl_evas_cb_mouse_out);
2476 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_MOVE, _e_comp_wl_evas_cb_mouse_move);
2477 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_DOWN, _e_comp_wl_evas_cb_mouse_down);
2478 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_UP, _e_comp_wl_evas_cb_mouse_up);
2479 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_WHEEL, _e_comp_wl_evas_cb_mouse_wheel);
2481 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MULTI_DOWN, _e_comp_wl_evas_cb_multi_down);
2482 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MULTI_UP, _e_comp_wl_evas_cb_multi_up);
2483 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MULTI_MOVE, _e_comp_wl_evas_cb_multi_move);
2485 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_FOCUS_IN, _e_comp_wl_evas_cb_focus_in);
2486 evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_FOCUS_OUT, _e_comp_wl_evas_cb_focus_out);
2490 evas_object_smart_callback_del(ec->frame, "client_resize", _e_comp_wl_evas_cb_resize);
2491 evas_object_smart_callback_del(ec->frame, "maximize_pre", _e_comp_wl_evas_cb_maximize_pre);
2492 evas_object_smart_callback_del(ec->frame, "maximize_done", _e_comp_wl_evas_cb_maximize_done);
2493 evas_object_smart_callback_del(ec->frame, "unmaximize_pre", _e_comp_wl_evas_cb_unmaximize_pre);
2494 evas_object_smart_callback_del(ec->frame, "unmaximize_done", _e_comp_wl_evas_cb_unmaximize_done);
2495 evas_object_smart_callback_del(ec->frame, "fullscreen", _e_comp_wl_evas_cb_fullscreen);
2496 evas_object_smart_callback_del(ec->frame, "unfullscreen", _e_comp_wl_evas_cb_unfullscreen);
2499 evas_object_smart_callback_del(ec->frame, "delete_request", _e_comp_wl_evas_cb_delete_request);
2500 evas_object_smart_callback_del(ec->frame, "kill_request", _e_comp_wl_evas_cb_kill_request);
2502 evas_object_smart_callback_del(ec->frame, "ping", _e_comp_wl_evas_cb_ping);
2503 evas_object_smart_callback_del(ec->frame, "color_set", _e_comp_wl_evas_cb_color_set);
2505 ec->comp_data->evas_init = EINA_FALSE;
2509 _e_comp_wl_cb_randr_change(void *data EINA_UNUSED, int type EINA_UNUSED, void *event EINA_UNUSED)
2513 E_Comp_Screen *e_comp_screen;
2514 unsigned int transform = WL_OUTPUT_TRANSFORM_NORMAL;
2516 if (!e_comp) return ECORE_CALLBACK_RENEW;
2517 if (!e_comp->e_comp_screen) return ECORE_CALLBACK_RENEW;
2518 e_comp_screen = e_comp->e_comp_screen;
2520 EINA_LIST_FOREACH(e_comp_screen->outputs, l, eout)
2522 if (!eout->config.enabled)
2524 e_comp_wl_output_remove(eout->id);
2528 switch (eout->config.rotation)
2531 transform = WL_OUTPUT_TRANSFORM_90;
2534 transform = WL_OUTPUT_TRANSFORM_180;
2537 transform = WL_OUTPUT_TRANSFORM_270;
2541 transform = WL_OUTPUT_TRANSFORM_NORMAL;
2545 if (!e_comp_wl_output_init(eout->id, eout->info.name,
2547 eout->config.geom.x, eout->config.geom.y,
2548 eout->config.geom.w, eout->config.geom.h,
2549 eout->info.size.w, eout->info.size.h,
2550 eout->config.mode.refresh, 0, transform))
2551 ERR("Could not initialize screen %s", eout->info.name);
2554 return ECORE_CALLBACK_RENEW;
2558 _e_comp_wl_cb_comp_object_add(void *data EINA_UNUSED, int type EINA_UNUSED, E_Event_Comp_Object *ev)
2562 /* try to get the client from the object */
2563 if (!(ec = e_comp_object_client_get(ev->comp_object)))
2564 return ECORE_CALLBACK_RENEW;
2566 /* check for client being deleted */
2567 if (e_object_is_del(E_OBJECT(ec))) return ECORE_CALLBACK_RENEW;
2569 /* check for wayland pixmap */
2570 if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL)
2571 return ECORE_CALLBACK_RENEW;
2573 /* if we have not setup evas callbacks for this client, do it */
2574 if (!ec->comp_data->evas_init) _e_comp_wl_client_evas_init(ec);
2576 return ECORE_CALLBACK_RENEW;
2580 _e_comp_wl_cb_mouse_move(void *d EINA_UNUSED, int t EINA_UNUSED, Ecore_Event_Mouse_Move *ev)
2584 e_comp_wl->ptr.x = wl_fixed_from_int(ev->x);
2585 e_comp_wl->ptr.y = wl_fixed_from_int(ev->y);
2587 if (e_comp_wl->selection.target &&
2590 struct wl_resource *res;
2592 E_Client *ec = NULL;
2593 E_Client *legacy_target = e_comp_wl->selection.target;
2594 int device_id = e_comp_wl_data_current_device_id_get();
2598 e_comp_wl_data_current_device_id_set(ev->multi.device);
2600 else if (device_id != ev->multi.device)
2602 return ECORE_CALLBACK_RENEW;
2605 ec = e_client_under_position_input_get(legacy_target->desk, ev->x, ev->y);
2606 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, ECORE_CALLBACK_RENEW);
2608 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
2609 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, ECORE_CALLBACK_RENEW);
2611 res = e_comp_wl_data_find_for_client(wl_resource_get_client(surface));
2612 EINA_SAFETY_ON_NULL_RETURN_VAL(res, ECORE_CALLBACK_RENEW);
2614 if ((e_comp_wl->drag_offer != wl_resource_get_user_data(res)) &&
2615 (ec != legacy_target))
2617 e_comp_wl_data_device_send_leave(legacy_target);
2618 e_comp_wl_data_device_send_enter(ec);
2621 if (e_comp_wl->drag)
2622 e_drag_move(e_comp_wl->drag, ev->x, ev->y);
2624 if (e_client_transform_core_enable_get(ec))
2626 int trans_x, trans_y;
2627 e_client_transform_core_input_transform(ec, ev->x, ev->y, &trans_x, &trans_y);
2628 x = trans_x - ec->client.x;
2629 y = trans_y - ec->client.y;
2633 e_client_geometry_get(ec, &ec_x, &ec_y, NULL, NULL);
2638 wl_data_device_send_motion(res, ev->timestamp, wl_fixed_from_int(x), wl_fixed_from_int(y));
2641 return ECORE_CALLBACK_RENEW;
2645 _e_comp_wl_cb_mouse_relative_move(void *d EINA_UNUSED, int t EINA_UNUSED, Ecore_Event_Mouse_Relative_Move *ev)
2648 struct wl_resource *surface;
2649 struct wl_resource *res;
2650 struct wl_client *wc;
2652 E_Comp_Config *comp_conf;
2654 ec = e_comp_wl->ptr_constraints.ec;
2655 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, ECORE_CALLBACK_RENEW);
2657 surface = e_comp_wl_client_surface_get(ec);
2658 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, ECORE_CALLBACK_RENEW);
2660 wc = wl_resource_get_client(surface);
2662 comp_conf = e_comp_config_get();
2664 EINA_LIST_FOREACH(e_comp_wl->relative_ptr.resources, l, res)
2666 if (!e_comp_wl_input_relative_pointer_check(res)) continue;
2667 if (wl_resource_get_client(res) != wc) continue;
2669 if (comp_conf && comp_conf->input_log_enable)
2670 ELOGF("Mouse", "Relative Move (time: %d, dx:%d dy:%d, unaccel(%d, %d) name:%20s)",
2671 ec, ev->timestamp, ev->dx, ev->dy, ev->dx_unaccel, ev->dy_unaccel,
2672 e_client_util_name_get(ec));
2674 zwp_relative_pointer_v1_send_relative_motion(res,
2676 (uint32_t)(ev->timestamp),
2677 wl_fixed_from_int(ev->dx),
2678 wl_fixed_from_int(ev->dy),
2679 wl_fixed_from_int(ev->dx_unaccel),
2680 wl_fixed_from_int(ev->dy_unaccel));
2683 return ECORE_CALLBACK_DONE;
2687 _e_comp_wl_cb_mouse_button_cancel(void *d EINA_UNUSED, int t EINA_UNUSED, Ecore_Event_Mouse_Button *ev)
2689 _e_comp_wl_touch_cancel();
2691 return ECORE_CALLBACK_PASS_ON;
2695 _e_comp_wl_cb_zone_display_state_change(void *d EINA_UNUSED, int t EINA_UNUSED, E_Event_Zone_Display_State_Change *ev)
2697 if (!ev) return ECORE_CALLBACK_PASS_ON;
2699 E_Zone *zone = ev->zone;
2701 E_OBJECT_CHECK_RETURN(zone, ECORE_CALLBACK_PASS_ON);
2702 E_OBJECT_TYPE_CHECK_RETURN(zone, E_ZONE_TYPE, ECORE_CALLBACK_PASS_ON);
2704 if (!e_zone_is_displaying(zone))
2705 _e_comp_wl_touch_cancel();
2707 return ECORE_CALLBACK_PASS_ON;
2711 _e_comp_wl_cb_client_rot_change_begin(void *d EINA_UNUSED, int t EINA_UNUSED, E_Event_Client_Rotation_Change_Begin *ev)
2713 E_Client *ec = ev->ec;
2714 E_Comp_Wl_Buffer_Viewport *vp;
2716 if (!ec) return ECORE_CALLBACK_PASS_ON;
2717 if (e_object_is_del(E_OBJECT(ec))) return ECORE_CALLBACK_PASS_ON;
2718 if (!ec->comp_data) return ECORE_CALLBACK_PASS_ON;
2719 if (e_comp_wl_subsurface_check(ec)) return ECORE_CALLBACK_PASS_ON;
2720 if (ec->e.state.rot.ang.next < 0) return ECORE_CALLBACK_PASS_ON;
2722 vp = &ec->comp_data->scaler.buffer_viewport;
2723 vp->wait_for_transform_change = ((360 + ec->e.state.rot.ang.next - ec->e.state.rot.ang.curr) % 360) / 90;
2725 DBG("ec(%p) wait_for_transform_change(%d)", ec, vp->wait_for_transform_change);
2727 return ECORE_CALLBACK_PASS_ON;
2731 _e_comp_wl_cb_client_rot_change_cancel(void *d EINA_UNUSED, int t EINA_UNUSED, E_Event_Client_Rotation_Change_Cancel *ev)
2733 E_Client *ec = ev->ec;
2734 E_Comp_Wl_Buffer_Viewport *vp;
2736 if (!ec) return ECORE_CALLBACK_PASS_ON;
2737 if (e_object_is_del(E_OBJECT(ec))) return ECORE_CALLBACK_PASS_ON;
2738 if (!ec->comp_data) return ECORE_CALLBACK_PASS_ON;
2739 if (e_comp_wl_subsurface_check(ec)) return ECORE_CALLBACK_PASS_ON;
2741 vp = &ec->comp_data->scaler.buffer_viewport;
2742 vp->wait_for_transform_change = 0;
2744 DBG("ec(%p) wait_for_transform_change(%d) reset", ec, vp->wait_for_transform_change);
2746 return ECORE_CALLBACK_PASS_ON;
2750 _e_comp_wl_cb_client_rot_change_end(void *d EINA_UNUSED, int t EINA_UNUSED, E_Event_Client_Rotation_Change_End *ev EINA_UNUSED)
2752 E_Client *focused_ec;
2755 focused_ec = e_client_focused_get();
2756 if (!focused_ec) return ECORE_CALLBACK_PASS_ON;
2758 rotation = focused_ec->e.state.rot.ang.curr;
2759 e_pointer_rotation_set(e_comp->pointer, rotation);
2761 return ECORE_CALLBACK_PASS_ON;
2765 _e_comp_wl_surface_state_size_update(E_Client *ec, E_Comp_Wl_Surface_State *state)
2768 Eina_Rectangle *window;
2773 if (!e_pixmap_size_get(ec->pixmap, &state->bw, &state->bh)) return;
2775 if ((prev_w != state->bw) ||
2776 (prev_h != state->bh))
2778 ec->changes.buf_size = EINA_TRUE;
2781 if (e_comp_object_frame_exists(ec->frame)) return;
2782 window = &ec->comp_data->shell.window;
2783 if ((!ec->borderless) && /* FIXME temporarily added this check code
2784 * to prevent updating E_Client's size by frame */
2785 (window->x || window->y || window->w || window->h))
2787 e_comp_object_frame_geometry_set(ec->frame,
2789 (window->x + window->w) - state->bw,
2791 (window->y + window->h) - state->bh);
2794 e_comp_object_frame_geometry_set(ec->frame, 0, 0, 0, 0);
2798 _e_comp_wl_surface_state_cb_buffer_destroy(struct wl_listener *listener, void *data EINA_UNUSED)
2800 E_Comp_Wl_Surface_State *state;
2803 container_of(listener, E_Comp_Wl_Surface_State, buffer_destroy_listener);
2804 state->buffer = NULL;
2808 _e_comp_wl_surface_state_init(E_Comp_Wl_Surface_State *state, int w, int h)
2810 state->new_attach = EINA_FALSE;
2811 state->buffer = NULL;
2812 state->buffer_destroy_listener.notify =
2813 _e_comp_wl_surface_state_cb_buffer_destroy;
2814 state->sx = state->sy = 0;
2816 state->input = eina_tiler_new(w, h);
2817 eina_tiler_tile_size_set(state->input, 1, 1);
2819 state->opaque = eina_tiler_new(w, h);
2820 eina_tiler_tile_size_set(state->opaque, 1, 1);
2822 state->buffer_viewport.buffer.transform = WL_OUTPUT_TRANSFORM_NORMAL;
2823 state->buffer_viewport.buffer.scale = 1;
2824 state->buffer_viewport.buffer.src_width = wl_fixed_from_int(-1);
2825 state->buffer_viewport.surface.width = -1;
2826 state->buffer_viewport.changed = 0;
2828 e_presentation_time_container_init(&state->presentation_container);
2832 _e_comp_wl_surface_state_finish(E_Comp_Wl_Surface_State *state)
2834 struct wl_resource *cb;
2835 Eina_Rectangle *dmg;
2837 EINA_LIST_FREE(state->frames, cb)
2838 wl_resource_destroy(cb);
2840 EINA_LIST_FREE(state->damages, dmg)
2841 eina_rectangle_free(dmg);
2843 EINA_LIST_FREE(state->buffer_damages, dmg)
2844 eina_rectangle_free(dmg);
2846 if (state->opaque) eina_tiler_free(state->opaque);
2847 state->opaque = NULL;
2849 if (state->input) eina_tiler_free(state->input);
2850 state->input = NULL;
2852 if (state->buffer) wl_list_remove(&state->buffer_destroy_listener.link);
2853 state->buffer = NULL;
2855 e_presentation_time_container_finish(&state->presentation_container);
2859 _e_comp_wl_surface_state_buffer_set(E_Comp_Wl_Surface_State *state, E_Comp_Wl_Buffer *buffer)
2861 if (state->buffer == buffer) return;
2863 wl_list_remove(&state->buffer_destroy_listener.link);
2864 state->buffer = buffer;
2866 wl_signal_add(&state->buffer->destroy_signal,
2867 &state->buffer_destroy_listener);
2871 _e_comp_wl_surface_state_commit(E_Client *ec, E_Comp_Wl_Surface_State *state)
2873 Eina_Rectangle *dmg;
2874 Eina_Bool placed = EINA_TRUE;
2878 E_Comp_Wl_Buffer *buffer;
2879 struct wl_resource *cb;
2881 E_Comp_Wl_Client_Data *cdata = e_client_cdata_get(ec);
2882 E_Comp_Wl_Buffer_Viewport *vp = &cdata->scaler.buffer_viewport;
2887 if ((ec->internal) ||
2888 (cdata->shell.surface && state->new_attach))
2892 e_comp->new_clients++;
2893 ELOGF("COMP", "Unignore", ec);
2894 e_client_unignore(ec);
2898 /* buffer transform */
2899 if (vp->buffer.transform != state->buffer_viewport.buffer.transform)
2902 int transform_change = (4 + state->buffer_viewport.buffer.transform - vp->buffer.transform) & 0x3;
2904 /* when buffer is transformed, we have to apply the new evas-map */
2905 state->buffer_viewport.changed = EINA_TRUE;
2907 ELOGF("TRANSFORM", "buffer_transform changed: old(%d) new(%d)",
2909 vp->buffer.transform, state->buffer_viewport.buffer.transform);
2911 if (transform_change == vp->wait_for_transform_change)
2912 vp->wait_for_transform_change = 0;
2914 // TODO: This logic has to move to e_comp_hwc or e_hwc_window and it is
2915 // triggered by E_CLIENT_HOOK calls at those file.
2916 zone = e_comp_zone_find_by_ec(ec);
2919 eout = e_output_find(zone->output_id);
2920 if (eout && eout->hwc)
2922 if (e_hwc_policy_get(eout->hwc) == E_HWC_POLICY_PLANES)
2924 if (e_comp_is_on_overlay(ec))
2925 e_comp_hwc_client_end(ec, __FUNCTION__);
2931 /* assign a new buffer_vieport to cdata->scaler.buffer_viewport */
2932 cdata->scaler.buffer_viewport = state->buffer_viewport;
2934 if (state->new_attach)
2936 e_comp_wl_surface_attach(ec, state->buffer);
2939 /* emit a apply_viewport signal when the information of viewport and buffer is ready */
2940 wl_signal_emit(&cdata->apply_viewport_signal, &cdata->surface);
2942 _e_comp_wl_surface_state_buffer_set(state, NULL);
2944 if ((state->new_attach) ||
2945 (state->buffer_viewport.changed))
2947 _e_comp_wl_surface_state_size_update(ec, state);
2948 e_comp_wl_map_size_cal_from_viewport(ec);
2950 /* update the position */
2951 if (ec->changes.pos)
2953 e_comp_object_frame_xy_unadjust(ec->frame,
2963 if (ec->new_client) placed = ec->placed;
2965 if (!ec->lock_client_size)
2970 ec->client.w = state->bw;
2971 ec->client.h = state->bh;
2973 e_comp_object_frame_wh_adjust(ec->frame,
2974 ec->client.w, ec->client.h,
2976 e_client_size_set(ec, nw, nh);
2978 if ((w != ec->w) || (h != ec->h))
2980 ec->changes.size = 1;
2985 if (ec->changes.buf_size)
2987 ELOGF("COMP", "Buffer size is changed. size(%d,%d)", ec, state->bw, state->bh);
2988 _e_comp_wl_hook_call(E_COMP_WL_HOOK_BUFFER_SIZE_CHANGE, ec);
2989 ec->changes.buf_size = EINA_FALSE;
2991 if (ec->move_after_resize)
2993 ELOGF("POSSIZE", "Unset move_after_resize. ec_geo(%d,%d,%dx%d)", ec, ec->x, ec->y, ec->w, ec->h);
2994 ec->move_after_resize = EINA_FALSE;
2999 /* map or unmap ec */
3000 Eina_Bool pixmap_usable = e_pixmap_usable_get(ec->pixmap);
3001 Eina_Bool hide_by_request = e_client_hide_by_request_get(ec);
3002 if (!pixmap_usable || hide_by_request)
3007 ELOGF("COMP", "Unmap. pixmap_usable:%d", ec, pixmap_usable);
3012 if ((cdata->sub.below_obj) &&
3013 (evas_object_visible_get(cdata->sub.below_obj)))
3015 evas_object_hide(cdata->sub.below_obj);
3023 if ((cdata->sub.below_obj) &&
3024 (!evas_object_visible_get(cdata->sub.below_obj)) &&
3025 (evas_object_visible_get(ec->frame)))
3027 evas_object_show(cdata->sub.below_obj);
3031 if ((state->new_attach) ||
3032 (state->buffer_viewport.changed))
3034 if ((e_comp_wl->drag) &&
3035 (e_comp_wl->drag_client) &&
3036 (e_comp_wl->drag_client == ec))
3038 e_drag_reference_point_set(e_comp_wl->drag, state->sx, state->sy);
3040 e_drag_move(e_comp_wl->drag,
3042 e_comp_wl->drag->y);
3044 e_drag_resize(e_comp_wl->drag,
3045 state->bw, state->bh);
3047 else if ((cdata->shell.surface) &&
3048 (cdata->shell.configure))
3050 e_comp_wl_commit_sync_configure(ec);
3052 else if (!e_client_video_hw_composition_check(ec))
3054 e_client_util_move_resize_without_frame(ec, x, y, ec->w, ec->h);
3059 ec->placed = placed;
3060 ec->want_focus |= ec->icccm.accepts_focus && (!ec->override);
3064 if (cdata->scaler.buffer_viewport.changed)
3065 e_comp_wl_map_apply(ec);
3067 /* resize transform object */
3068 if (ec->transformed)
3069 e_client_transform_update(ec);
3073 state->new_attach = EINA_FALSE;
3075 EINA_LIST_FOREACH_SAFE(cdata->frames, l, ll, cb)
3077 wl_callback_send_done(cb, (unsigned int)(ecore_loop_time_get() * 1000));
3078 wl_resource_destroy(cb);
3081 /* insert state frame callbacks into comp_data->frames
3082 * NB: This clears state->frames list */
3083 cdata->frames = eina_list_merge(cdata->frames,
3085 state->frames = NULL;
3087 e_presentation_time_container_feedback_discard(&cdata->presentation_container);
3088 e_presentation_time_container_feedback_merge(&cdata->presentation_container,
3089 &state->presentation_container);
3091 buffer = e_pixmap_resource_get(ec->pixmap);
3093 /* put state damages into surface */
3096 /* FIXME: workaround for bad wayland egl driver which doesn't send damage request */
3097 if (!eina_list_count(state->damages) && !eina_list_count(state->buffer_damages))
3099 if ((cdata->buffer_ref.buffer) &&
3100 ((cdata->buffer_ref.buffer->type == E_COMP_WL_BUFFER_TYPE_NATIVE) ||
3101 (cdata->buffer_ref.buffer->type == E_COMP_WL_BUFFER_TYPE_TBM)))
3103 e_comp_object_damage(ec->frame,
3105 cdata->buffer_ref.buffer->w,
3106 cdata->buffer_ref.buffer->h);
3111 Eina_List *damages = NULL;
3114 _e_comp_wl_buffer_damage_set(buffer, state->buffer_damages);
3116 if (eina_list_count(state->buffer_damages))
3118 EINA_LIST_FREE(state->buffer_damages, dmg)
3121 e_comp_wl_rect_convert_inverse(buffer->w, buffer->h,
3122 e_comp_wl_output_buffer_transform_get(ec),
3124 dmg->x, dmg->y, dmg->w, dmg->h,
3125 &dmg->x, &dmg->y, &dmg->w, &dmg->h);
3126 damages = eina_list_append(damages, dmg);
3130 EINA_LIST_FREE(state->damages, dmg)
3131 damages = eina_list_append(damages, dmg);
3133 EINA_LIST_FREE(damages, dmg)
3135 /* not creating damage for ec that shows a underlay video */
3136 if (state->buffer_viewport.changed ||
3137 !e_comp->wl_comp_data->available_hw_accel.underlay ||
3138 !buffer || buffer->type != E_COMP_WL_BUFFER_TYPE_VIDEO)
3139 e_comp_object_damage(ec->frame, dmg->x, dmg->y, dmg->w, dmg->h);
3141 eina_rectangle_free(dmg);
3146 /* put state opaque into surface */
3147 e_pixmap_image_opaque_set(ec->pixmap, 0, 0, 0, 0);
3150 Eina_Rectangle *rect;
3153 itr = eina_tiler_iterator_new(state->opaque);
3154 EINA_ITERATOR_FOREACH(itr, rect)
3158 EINA_RECTANGLE_SET(&r, rect->x, rect->y, rect->w, rect->h);
3159 E_RECTS_CLIP_TO_RECT(r.x, r.y, r.w, r.h, 0, 0, state->bw, state->bh);
3160 e_pixmap_image_opaque_set(ec->pixmap, r.x, r.y, r.w, r.h);
3164 eina_iterator_free(itr);
3167 /* put state input into surface */
3168 if ((state->input) &&
3169 (!eina_tiler_empty(state->input)) &&
3172 Eina_Tiler *src, *tmp;
3176 tmp = eina_tiler_new(sw, sh);
3177 eina_tiler_tile_size_set(tmp, 1, 1);
3179 eina_tiler_rect_add(tmp,
3180 &(Eina_Rectangle){0, 0, sw, sh});
3182 if ((src = eina_tiler_intersection(state->input, tmp)))
3184 Eina_Rectangle *rect;
3187 e_comp_object_input_objs_del(ec->frame);
3188 itr = eina_tiler_iterator_new(src);
3189 EINA_ITERATOR_FOREACH(itr, rect)
3191 ELOGF("COMP", "Set Input Area x:%d, y:%d, w:%d, h:%d, ec(%dx%d), state(%dx%d)",
3192 ec, rect->x, rect->y, rect->w, rect->h,
3193 ec->w, ec->h, state->bw, state->bh);
3194 e_comp_object_input_area_set(ec->frame,
3199 eina_iterator_free(itr);
3200 eina_tiler_free(src);
3203 e_comp_object_input_area_set(ec->frame, 0, 0, ec->w, ec->h);
3205 eina_tiler_free(tmp);
3207 /* clear input tiler */
3208 eina_tiler_clear(state->input);
3211 e_comp_wl_subsurface_check_below_bg_rectangle(ec);
3213 if ((cdata->video_client) &&
3215 (buffer->type == E_COMP_WL_BUFFER_TYPE_VIDEO)) &&
3216 (e_comp->wl_comp_data->available_hw_accel.underlay))
3218 e_pixmap_image_clear(ec->pixmap, 1);
3221 state->buffer_viewport.changed = 0;
3223 wl_signal_emit(&cdata->state_commit_signal, &cdata->surface);
3226 ec->exp_iconify.buffer_flush &&
3227 e_policy_visibility_client_is_iconic(ec))
3229 e_pixmap_buffer_clear(ec->pixmap, EINA_FALSE);
3234 _e_comp_wl_surface_render_stop(E_Client *ec)
3236 /* FIXME: this may be fine after e_pixmap can create textures for wl clients? */
3237 //if ((!ec->internal) && (!e_comp_gl_get()))
3240 /* check if internal animation is running */
3241 if (e_comp_object_is_animating(ec->frame)) return;
3242 /* check if external animation is running */
3243 if (evas_object_data_get(ec->frame, "effect_running")) return;
3245 evas_object_hide(ec->frame);
3249 e_comp_wl_client_surface_finish(E_Client *ec)
3251 struct wl_resource *res, *surface;
3252 struct wl_client *surface_client = NULL;
3255 surface = e_comp_wl_client_surface_get(ec);
3258 surface_client = wl_resource_get_client(surface);
3260 if (surface_client &&
3261 (ec == e_client_focused_get()))
3263 g_mutex_lock(&e_comp_wl->kbd.focused_mutex);
3264 EINA_LIST_FOREACH_SAFE(e_comp_wl->kbd.focused, l, ll, res)
3266 if (wl_resource_get_client(res) ==
3268 e_comp_wl->kbd.focused =
3269 eina_list_remove_list(e_comp_wl->kbd.focused, l);
3273 g_mutex_unlock(&e_comp_wl->kbd.focused_mutex);
3276 e_comp_wl_client_surface_set(ec, NULL);
3278 ec->comp_data->wl_surface = NULL;
3279 e_pixmap_win_id_del(ec->pixmap);
3281 _e_comp_wl_surface_render_stop(ec);
3282 e_object_del(E_OBJECT(ec));
3286 _e_comp_wl_pname_get(pid_t pid, char *name, int size)
3291 char proc[512], pname[512];
3294 snprintf(proc, 512,"/proc/%d/cmdline", pid);
3296 h = fopen(proc, "r");
3299 len = fread(pname, sizeof(char), 512, h);
3301 pname[len - 1] = '\0';
3303 strncpy(pname, "NO NAME", sizeof(pname));
3309 strncpy(pname, "NO NAME", sizeof(pname));
3312 strncpy(name, pname, size);
3316 _e_comp_wl_pname_print(pid_t pid)
3319 char proc[512], pname[512];
3322 snprintf(proc, 512,"/proc/%d/cmdline", pid);
3324 h = fopen(proc, "r");
3327 len = fread(pname, sizeof(char), 512, h);
3329 pname[len - 1] = '\0';
3331 strncpy(pname, "NO NAME", sizeof(pname));
3335 ELOGF("COMP", " |%s", NULL, pname);
3340 _e_comp_wl_connected_client_cb_destroy(struct wl_listener *listener, void *data)
3342 struct wl_client *client = data;
3343 E_Comp_Connected_Client_Info *cinfo;
3346 cinfo = wl_container_of(listener, cinfo, destroy);
3348 ELOGF("WL_CLIENT", "DESTROY |client:%8p|%d|%d|%d",
3349 NULL, client, cinfo->pid, cinfo->uid, cinfo->gid);
3351 eai = e_appinfo_find_with_pid(cinfo->pid);
3352 if (e_appinfo_owner_get(eai) == E_APPINFO_OWNER_SERVER)
3355 e_comp->connected_clients = eina_list_remove(e_comp->connected_clients, cinfo);
3357 wl_list_remove(&cinfo->destroy.link);
3358 eina_stringshare_del(cinfo->name);
3363 _e_comp_wl_connected_client_create(struct wl_client *client, char *name, pid_t pid, uid_t uid, gid_t gid)
3365 E_Comp_Connected_Client_Info *cinfo;
3367 cinfo = E_NEW(E_Comp_Connected_Client_Info, 1);
3368 EINA_SAFETY_ON_NULL_RETURN(cinfo);
3370 cinfo->name = eina_stringshare_add(name);
3374 cinfo->destroy.notify = _e_comp_wl_connected_client_cb_destroy;
3375 wl_client_add_destroy_listener(client, &cinfo->destroy);
3376 e_comp->connected_clients = eina_list_append(e_comp->connected_clients, cinfo);
3378 _e_comp_wl_pid_hook_call(E_COMP_WL_PID_HOOK_CONNECTED_CLIENT_CREATE, pid);
3382 _e_comp_wl_client_cb_focus_set(void *data EINA_UNUSED, E_Client *ec)
3384 if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return;
3386 /* send configure */
3387 if (ec->comp_data->shell.configure_send)
3389 if (ec->comp_data->shell.surface)
3390 _e_comp_wl_configure_send(ec, 0, 0);
3393 e_comp_wl->kbd.focus = ec->comp_data->surface;
3397 _e_comp_wl_client_cb_focus_unset(void *data EINA_UNUSED, E_Client *ec)
3399 if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return;
3401 /* send configure */
3402 if (ec->comp_data->shell.configure_send)
3404 if (ec->comp_data->shell.surface)
3405 _e_comp_wl_configure_send(ec, 0, 0);
3408 _e_comp_wl_focus_check();
3410 if (e_comp_wl->kbd.focus == ec->comp_data->surface)
3411 e_comp_wl->kbd.focus = NULL;
3415 _e_comp_wl_client_cb_resize_begin(void *data EINA_UNUSED, E_Client *ec)
3417 if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return;
3418 if (ec->keyboard_resizing) return;
3420 /* do nothing currently */
3425 _e_comp_wl_client_cb_resize_end(void *data EINA_UNUSED, E_Client *ec)
3427 if (e_object_is_del(E_OBJECT(ec))) return;
3428 if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return;
3430 e_comp_wl->resize.edges = 0;
3431 e_comp_wl->resize.resource = NULL;
3435 _e_comp_wl_client_cb_move_end(void *data EINA_UNUSED, E_Client *ec)
3437 if (e_object_is_del(E_OBJECT(ec))) return;
3438 if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return;
3442 _e_comp_wl_output_info_send(E_Comp_Wl_Output *output, struct wl_resource *resource, pid_t pid, int res_w, int res_h)
3445 int ratio_w, ratio_h;
3447 phys_w = output->phys_width;
3448 phys_h = output->phys_height;
3450 if (e_config->configured_output_resolution.use)
3452 // change the configured physical size(mm) of the output
3453 if (output->w != res_w)
3455 ratio_w = res_w / output->w;
3456 phys_w = (int)((float)output->phys_width * (float)ratio_w);
3459 if (output->h != res_h)
3461 ratio_h = res_h / output->h;
3462 phys_h = (int)((float)output->phys_height * (float)ratio_h);
3465 ELOGF("COMP_WL", "\tSend Configured Output (pid:%d)", NULL, pid);
3468 ELOGF("COMP_WL", "\t Output Resolution: res(%d, %d) phy_size(%d, %d) (pid:%d).",
3469 NULL, res_w, res_h, phys_w, phys_h, pid);
3471 if (wl_resource_get_version(resource) >= WL_OUTPUT_SCALE_SINCE_VERSION)
3472 wl_output_send_scale(resource, output->scale);
3474 wl_output_send_geometry(resource, output->x, output->y,
3476 output->subpixel, output->make ?: "",
3477 output->model ?: "", output->transform);
3479 wl_output_send_mode(resource, WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED,
3480 res_w, res_h, output->refresh);
3482 if (wl_resource_get_version(resource) >= WL_OUTPUT_DONE_SINCE_VERSION)
3483 wl_output_send_done(resource);
3487 _e_comp_wl_cb_output_unbind(struct wl_resource *resource)
3489 E_Comp_Wl_Output *output;
3491 if (!(output = wl_resource_get_user_data(resource))) return;
3493 output->resources = eina_list_remove(output->resources, resource);
3497 _e_comp_wl_cb_output_bind(struct wl_client *client, void *data, uint32_t version, uint32_t id)
3499 E_Comp_Wl_Output *output;
3500 struct wl_resource *resource;
3501 E_Appinfo *eai = NULL;
3505 if (!(output = data)) return;
3508 wl_resource_create(client, &wl_output_interface, version, id);
3511 wl_client_post_no_memory(client);
3515 ELOGF("COMP_WL", "Bound Output: %s", NULL, output->id);
3516 ELOGF("COMP_WL", "\tOutput Geom: %d %d %d %d", NULL, output->x, output->y, output->w, output->h);
3518 output->resources = eina_list_append(output->resources, resource);
3520 wl_resource_set_implementation(resource, NULL, output,
3521 _e_comp_wl_cb_output_unbind);
3522 wl_resource_set_user_data(resource, output);
3524 // set the configured_output_resolution as a resolution of the wl_output if the use is set.
3525 if (e_config->configured_output_resolution.use)
3527 wl_client_get_credentials(client, &pid, NULL, NULL);
3530 res_w = e_config->configured_output_resolution.w;
3531 res_h = e_config->configured_output_resolution.h;
3535 eai = e_appinfo_find_with_pid(pid);
3538 res_w = e_config->configured_output_resolution.w;
3539 res_h = e_config->configured_output_resolution.h;
3543 if (!e_appinfo_base_output_resolution_get(eai, &res_w, &res_h))
3545 res_w = e_config->configured_output_resolution.w;
3546 res_h = e_config->configured_output_resolution.h;
3550 ELOGF("COMP_WL", "Get base_screen_resolution. (pid:%d).", NULL, pid);
3559 _e_comp_wl_output_info_send(output, resource, pid, res_w, res_h);
3563 _e_comp_wl_gl_init(void *data EINA_UNUSED)
3566 Evas_GL *evasgl = NULL;
3567 Evas_GL_API *glapi = NULL;
3568 Evas_GL_Context *ctx = NULL;
3569 Evas_GL_Surface *sfc = NULL;
3570 Evas_GL_Config *cfg = NULL;
3572 E_Comp_Wl_Evas_Gl *evas_gl = NULL;
3574 if (!e_comp_gl_get()) return;
3576 evas_gl = E_NEW(E_Comp_Wl_Evas_Gl, 1);
3577 EINA_SAFETY_ON_NULL_RETURN(evas_gl);
3579 /* create dummy evas gl to bind wayland display of enlightenment to egl display */
3580 e_main_ts_begin("\tE_Comp_Wl_GL Init");
3582 /* if wl_drm module doesn't call e_comp_canvas_init yet,
3583 * then we should get evas from ecore_evas.
3586 evas = e_comp->evas;
3588 evas = ecore_evas_get(e_comp->ee);
3590 evasgl = evas_gl_new(evas);
3591 EINA_SAFETY_ON_NULL_GOTO(evasgl, err);
3593 glapi = evas_gl_api_get(evasgl);
3594 EINA_SAFETY_ON_NULL_GOTO(glapi, err);
3595 EINA_SAFETY_ON_NULL_GOTO(glapi->evasglBindWaylandDisplay, err);
3597 cfg = evas_gl_config_new();
3598 EINA_SAFETY_ON_NULL_GOTO(cfg, err);
3600 sfc = evas_gl_surface_create(evasgl, cfg, 1, 1);
3601 EINA_SAFETY_ON_NULL_GOTO(sfc, err);
3603 ctx = evas_gl_context_create(evasgl, NULL);
3604 EINA_SAFETY_ON_NULL_GOTO(ctx, err);
3606 res = evas_gl_make_current(evasgl, sfc, ctx);
3607 EINA_SAFETY_ON_FALSE_GOTO(res, err);
3609 res = glapi->evasglBindWaylandDisplay(evasgl, e_comp_wl->wl.disp);
3610 EINA_SAFETY_ON_FALSE_GOTO(res, err);
3612 evas_gl_config_free(cfg);
3614 evas_gl->gl = evasgl;
3615 evas_gl->glapi = glapi;
3616 evas_gl->glsfc = sfc;
3617 evas_gl->glctx = ctx;
3619 e_comp_wl->evas_gl = evas_gl;
3621 /* for native surface */
3624 e_main_ts_end("\tE_Comp_Wl_GL Init Done");
3629 evas_gl_config_free(cfg);
3630 evas_gl_make_current(evasgl, NULL, NULL);
3631 evas_gl_context_destroy(evasgl, ctx);
3632 evas_gl_surface_destroy(evasgl, sfc);
3633 evas_gl_free(evasgl);
3640 _e_comp_wl_gl_popup_cb_close(void *data,
3641 Evas_Object *obj EINA_UNUSED,
3642 void *event_info EINA_UNUSED)
3644 evas_object_del(data);
3648 _e_comp_wl_gl_popup_cb_focus(void *data,
3649 Evas_Object *obj EINA_UNUSED,
3650 void *event_info EINA_UNUSED)
3652 elm_object_focus_set(data, EINA_TRUE);
3657 _e_comp_wl_gl_idle(void *data)
3661 /* show warning window to notify failure of gl init */
3664 Evas_Object *win, *bg, *popup, *btn;
3666 win = elm_win_add(NULL, "compositor warning", ELM_WIN_BASIC);
3667 elm_win_title_set(win, "Compositor Warning");
3668 elm_win_autodel_set(win, EINA_TRUE);
3669 elm_win_borderless_set(win, EINA_TRUE);
3670 elm_win_role_set(win, "notification-low");
3671 elm_win_alpha_set(win, EINA_TRUE);
3673 bg = evas_object_rectangle_add(evas_object_evas_get(win));
3674 evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
3675 elm_win_resize_object_add(win, bg);
3676 evas_object_color_set(bg, 125, 125, 125, 125);
3677 evas_object_show(bg);
3679 popup = elm_popup_add(win);
3680 elm_object_text_set(popup,
3681 _( "Your screen does not support OpenGL.<br>"
3682 "Falling back to software engine."));
3683 elm_object_part_text_set(popup, "title,text", "Compositor Warning");
3685 btn = elm_button_add(popup);
3686 elm_object_text_set(btn, "Close");
3687 elm_object_part_content_set(popup, "button1", btn);
3688 evas_object_show(btn);
3690 evas_object_smart_callback_add(win, "focus,in", _e_comp_wl_gl_popup_cb_focus, popup);
3691 evas_object_smart_callback_add(btn, "unpressed", _e_comp_wl_gl_popup_cb_close, win);
3693 evas_object_show(popup);
3694 evas_object_show(win);
3698 return ECORE_CALLBACK_CANCEL;
3702 _e_comp_wl_cb_client_created(struct wl_listener *listener, void *data)
3704 struct wl_client *client = data;
3710 wl_client_get_credentials(client, &pid, &uid, &gid);
3712 ELOGF("COMP", "WL_CLIENT|client:%8p|%d|%d|%d", NULL, client, pid, uid, gid);
3714 _e_comp_wl_pname_print(pid);
3715 _e_comp_wl_pname_get(pid, name, sizeof(name));
3716 _e_comp_wl_connected_client_create(client, name, pid, uid, gid);
3720 _e_comp_wl_ds_log_handler(enum ds_log_level level, const char *fmt, va_list args)
3722 char buf[1024] = {0, };
3724 vsnprintf(buf, 1024, fmt, args);
3728 DBG("[libds] %s", buf);
3731 INF("[libds] %s", buf);
3734 ERR("[libds] %s", buf);
3742 _e_comp_wl_display_create(void)
3745 E_Comp_Wl_Data *wl_cdata;
3750 /* create new compositor data */
3751 if (!(comp = E_NEW(E_Comp_Data, 1)))
3753 ERR("Could not create compositor data: %m");
3756 wl_cdata = &comp->base;
3758 /* set compositor wayland data */
3759 e_comp_wl = e_comp->wl_comp_data = wl_cdata;
3761 g_mutex_init(&connection_mutex);
3763 /* try to create a wayland display */
3764 if (!(wl_cdata->wl.disp = wl_display_create()))
3766 ERR("Could not create a Wayland display: %m");
3770 /* try to setup wayland socket */
3771 if (!(name = wl_display_add_socket_auto(wl_cdata->wl.disp)))
3773 ERR("Could not create Wayland display socket: %m");
3774 PRCTL("[Winsys] Could not create Wayland display socket: /run/wayland-0");
3778 res = e_comp_socket_init(name);
3779 EINA_SAFETY_ON_FALSE_GOTO(res, sock_err);
3780 PRCTL("[Winsys] change permission and create sym link for %s", name);
3782 /* set wayland display environment variable */
3783 e_env_set("WAYLAND_DISPLAY", name);
3785 /* wl_cdata->output.transform = WL_OUTPUT_TRANSFORM_NORMAL; */
3786 /* wl_cdata->output.scale = e_scale; */
3788 ds_log_init(DS_DBG, _e_comp_wl_ds_log_handler);
3790 if (!e_compositor_init(wl_cdata->wl.disp))
3792 ERR("Failed to initialize compositor");
3796 comp->client_created.notify = _e_comp_wl_cb_client_created;
3797 wl_display_add_client_created_listener(comp->base.wl.disp, &comp->client_created);
3799 if (!e_comp_wl_subsurfaces_init())
3801 ERR("Failed to init_subsurfaces");
3802 goto subsurfaces_err;
3805 /* initialize shm mechanism */
3806 wl_display_init_shm(wl_cdata->wl.disp);
3808 /* _e_comp_wl_cb_randr_change(NULL, 0, NULL); */
3810 /* try to init data manager */
3811 if (!e_comp_wl_data_manager_init())
3813 ERR("Could not initialize data manager");
3817 /* try to init input */
3818 if (!e_comp_wl_input_init())
3820 ERR("Could not initialize input");
3824 if (e_comp_gl_get())
3825 _e_comp_wl_gl_init(NULL);
3827 /* get the wayland display loop */
3828 wl_cdata->wl.loop = wl_display_get_event_loop(wl_cdata->wl.disp);
3830 /* get the file descriptor of the wayland event loop */
3831 fd = wl_event_loop_get_fd(wl_cdata->wl.loop);
3833 /* create a listener for wayland main loop events */
3835 ecore_main_fd_handler_add(fd, (ECORE_FD_READ | ECORE_FD_ERROR),
3836 _e_comp_wl_cb_read, wl_cdata, NULL, NULL);
3837 ecore_main_fd_handler_prepare_callback_set(wl_cdata->fd_hdlr,
3838 _e_comp_wl_cb_prepare, wl_cdata);
3843 e_comp_wl_data_manager_shutdown();
3845 e_comp_wl_subsurfaces_shutdown();
3847 wl_list_remove(&comp->client_created.link);
3849 e_env_unset("WAYLAND_DISPLAY");
3851 wl_display_destroy(wl_cdata->wl.disp);
3853 g_mutex_clear(&connection_mutex);
3859 _e_comp_wl_gl_shutdown(void)
3861 if (!e_comp_wl->evas_gl) return;
3863 e_comp_wl->evas_gl->glapi->evasglUnbindWaylandDisplay(e_comp_wl->evas_gl->gl, e_comp_wl->wl.disp);
3865 evas_gl_make_current(e_comp_wl->evas_gl->gl, NULL, NULL);
3866 evas_gl_context_destroy(e_comp_wl->evas_gl->gl, e_comp_wl->evas_gl->glctx);
3867 evas_gl_surface_destroy(e_comp_wl->evas_gl->gl, e_comp_wl->evas_gl->glsfc);
3868 evas_gl_free(e_comp_wl->evas_gl->gl);
3870 E_FREE(e_comp_wl->evas_gl);
3873 /* public functions */
3876 * Creates and initializes a Wayland compositor with ecore.
3877 * Registers callback handlers for keyboard and mouse activity
3878 * and other client events.
3880 * @returns true on success, false if initialization failed.
3883 e_comp_wl_init(void)
3885 TRACE_DS_BEGIN(COMP_WL:INIT);
3887 /* try to create a wayland compositor */
3888 if (!_e_comp_wl_display_create())
3890 e_error_message_show(_("Enlightenment cannot create a Wayland Compositor!\n"));
3895 e_comp_wl_shell_init();
3897 #ifdef HAVE_WAYLAND_TBM
3898 e_comp_wl_tbm_init();
3900 e_comp_wl_remote_surface_init();
3904 e_comp_wl_screenshooter_init();
3906 if (!e_comp_wl_video_init())
3907 ELOGF("COMP", "Failed to initialize the e_comp_wl_video", NULL);
3909 e_comp_wl_viewport_init();
3910 e_comp_wl_capture_init();
3911 e_comp_wl_renderer_init();
3912 _e_comp_wl_move_resize_init();
3913 e_presentation_time_init();
3914 ds_single_pixel_buffer_manager_v1_create(e_comp_wl->wl.disp);
3917 if (!e_foreign_global_init(e_comp_wl->wl.disp))
3918 ELOGF("COMP", "Failed to initialize the e_foreign global", NULL);
3920 /* add event handlers to catch E events */
3921 E_LIST_HANDLER_APPEND(handlers, E_EVENT_SCREEN_CHANGE, _e_comp_wl_cb_randr_change, NULL);
3922 E_LIST_HANDLER_APPEND(handlers, E_EVENT_COMP_OBJECT_ADD, _e_comp_wl_cb_comp_object_add, NULL);
3923 E_LIST_HANDLER_PREPEND(handlers, ECORE_EVENT_MOUSE_MOVE, _e_comp_wl_cb_mouse_move, NULL);
3924 E_LIST_HANDLER_APPEND(handlers, ECORE_EVENT_MOUSE_RELATIVE_MOVE, _e_comp_wl_cb_mouse_relative_move, NULL);
3925 E_LIST_HANDLER_PREPEND(handlers, ECORE_EVENT_MOUSE_BUTTON_CANCEL, _e_comp_wl_cb_mouse_button_cancel, NULL);
3926 E_LIST_HANDLER_APPEND(handlers, E_EVENT_ZONE_DISPLAY_STATE_CHANGE, _e_comp_wl_cb_zone_display_state_change, NULL);
3927 E_LIST_HANDLER_APPEND(handlers, E_EVENT_CLIENT_ROTATION_CHANGE_BEGIN, _e_comp_wl_cb_client_rot_change_begin, NULL);
3928 E_LIST_HANDLER_APPEND(handlers, E_EVENT_CLIENT_ROTATION_CHANGE_CANCEL, _e_comp_wl_cb_client_rot_change_cancel, NULL);
3929 E_LIST_HANDLER_APPEND(handlers, E_EVENT_CLIENT_ROTATION_CHANGE_END, _e_comp_wl_cb_client_rot_change_end, NULL);
3931 /* add hooks to catch e_client events */
3932 E_LIST_HOOK_APPEND(hooks, E_CLIENT_HOOK_FOCUS_SET, _e_comp_wl_client_cb_focus_set, NULL);
3933 E_LIST_HOOK_APPEND(hooks, E_CLIENT_HOOK_FOCUS_UNSET, _e_comp_wl_client_cb_focus_unset, NULL);
3934 E_LIST_HOOK_APPEND(hooks, E_CLIENT_HOOK_RESIZE_BEGIN, _e_comp_wl_client_cb_resize_begin, NULL);
3935 E_LIST_HOOK_APPEND(hooks, E_CLIENT_HOOK_RESIZE_END, _e_comp_wl_client_cb_resize_end, NULL);
3936 E_LIST_HOOK_APPEND(hooks, E_CLIENT_HOOK_MOVE_END, _e_comp_wl_client_cb_move_end, NULL);
3938 e_comp_wl->idle_exiter = ecore_idle_exiter_add(_e_comp_wl_cb_idle_exiter, NULL);
3945 e_comp_wl_deferred_job(void)
3947 ecore_idle_enterer_add(_e_comp_wl_gl_idle, NULL);
3950 /* internal functions */
3952 e_comp_wl_shutdown(void)
3954 E_Comp_Data *comp = (E_Comp_Data *)e_comp_wl;
3956 ecore_idle_exiter_del(e_comp_wl->idle_exiter);
3958 e_comp_wl_subsurfaces_shutdown();
3960 E_FREE_LIST(handlers, ecore_event_handler_del);
3961 E_FREE_LIST(hooks, e_client_hook_del);
3962 _e_comp_wl_gl_shutdown();
3964 e_presentation_time_shutdown();
3965 e_comp_wl_renderer_shutdown();
3966 e_comp_wl_capture_shutdown();
3967 e_comp_wl_viewport_shutdown();
3968 e_comp_wl_video_shutdown();
3969 e_comp_wl_screenshooter_shutdown();
3971 e_comp_wl_remote_surface_shutdown();
3973 e_pixmap_shutdown();
3975 e_wtz_shell_shutdown();
3976 e_comp_wl_shell_shutdown();
3977 e_comp_wl_input_shutdown();
3979 wl_list_remove(&comp->client_created.link);
3982 e_comp->wl_comp_data = NULL;
3986 E_Comp_Wl_Output *output;
3988 if (e_comp_wl->screenshooter.global)
3989 wl_global_destroy(e_comp_wl->screenshooter.global);
3991 EINA_LIST_FREE(e_comp_wl->outputs, output)
3993 if (output->id) eina_stringshare_del(output->id);
3994 if (output->make) eina_stringshare_del(output->make);
3995 if (output->model) eina_stringshare_del(output->model);
3999 /* delete fd handler */
4000 if (e_comp_wl->fd_hdlr) ecore_main_fd_handler_del(e_comp_wl->fd_hdlr);
4002 E_FREE_FUNC(e_comp_wl->ptr.hide_tmr, ecore_timer_del);
4003 cursor_timer_ec = NULL;
4005 /* free allocated data structure */
4011 e_comp_wl_surface_event_simple_free(void *d EINA_UNUSED, E_Event_Client *ev)
4013 e_object_unref(E_OBJECT(ev->ec));
4018 e_comp_wl_surface_attach(E_Client *ec, E_Comp_Wl_Buffer *buffer)
4021 ev = E_NEW(E_Event_Client, 1);
4024 e_comp_wl_buffer_reference(&ec->comp_data->buffer_ref, buffer);
4026 /* set usable early because shell module checks this */
4027 if (ec->comp_data->shell.surface || e_comp_wl_subsurface_check(ec))
4028 e_pixmap_usable_set(ec->pixmap, (buffer != NULL));
4030 e_pixmap_resource_set(ec->pixmap, buffer);
4031 e_pixmap_dirty(ec->pixmap);
4032 e_pixmap_refresh(ec->pixmap);
4034 e_comp_wl_map_size_cal_from_buffer(ec);
4035 _e_comp_wl_surface_state_size_update(ec, &ec->comp_data->pending);
4037 /* wm-policy module uses it */
4038 _e_comp_wl_hook_call(E_COMP_WL_HOOK_BUFFER_CHANGE, ec);
4041 e_object_ref(E_OBJECT(ec));
4042 ecore_event_add(E_EVENT_CLIENT_BUFFER_CHANGE, ev,
4043 (Ecore_End_Cb)e_comp_wl_surface_event_simple_free, NULL);
4047 e_comp_wl_surface_commit(E_Client *ec)
4052 _e_comp_wl_surface_state_commit(ec, &ec->comp_data->pending);
4053 if (!e_comp_object_damage_exists(ec->frame))
4055 if ((ec->comp_data->video_client) ||
4056 (!e_client_video_hw_composition_check(ec)))
4057 e_pixmap_image_clear(ec->pixmap, 1);
4060 ignored = ec->ignored;
4062 if (e_comp_wl_subsurface_order_commit(ec))
4064 E_Client *topmost = e_comp_wl_topmost_parent_get(ec);
4065 e_comp_wl_subsurface_restack(topmost);
4066 e_comp_wl_subsurface_restack_bg_rectangle(topmost);
4069 ec->ignored = ignored;
4071 if (ec->is_cursor && ec->visible)
4073 /* ignore cursor changes during resize/move I guess */
4074 if (!e_client_action_get())
4076 if (e_comp->pointer)
4078 x = e_comp->pointer->hot.x;
4079 y = e_comp->pointer->hot.y;
4081 e_pointer_object_set(e_comp->pointer, ec->frame, x, y);
4087 static E_Comp_Wl_Output *
4088 _e_comp_wl_output_get(Eina_List *outputs, const char *id)
4091 E_Comp_Wl_Output *output;
4093 EINA_LIST_FOREACH(outputs, l, output)
4095 if (!strcmp(output->id, id))
4103 * Initializes information about one display output.
4105 * Adds or updates the given data about a single display output,
4106 * with an id matching the provided id.
4108 * @param id identification of output to be added or changed
4109 * @param make manufacturer name of the display output
4110 * @param model model name of the display output
4111 * @param x output's top left corner x coordinate
4112 * @param y output's top left corner y coordinate
4113 * @param w output's width in pixels
4114 * @param h output's height in pixels
4115 * @param pw output's physical width in millimeters
4116 * @param ph output's physical height in millimeters
4117 * @param refresh output's refresh rate in mHz
4118 * @param subpixel output's subpixel layout
4119 * @param transform output's rotation and/or mirror transformation
4121 * @returns True if a display output object could be added or updated
4124 e_comp_wl_output_init(const char *id, const char *make, const char *model,
4125 int x, int y, int w, int h, int pw, int ph,
4126 unsigned int refresh, unsigned int subpixel,
4127 unsigned int transform)
4129 E_Comp_Wl_Output *output;
4131 struct wl_resource *resource;
4133 /* retrieve named output; or create it if it doesn't exist */
4134 output = _e_comp_wl_output_get(e_comp_wl->outputs, id);
4137 if (!(output = E_NEW(E_Comp_Wl_Output, 1))) return EINA_FALSE;
4139 if (id) output->id = eina_stringshare_add(id);
4141 output->make = eina_stringshare_add(make);
4143 output->make = eina_stringshare_add("unknown");
4145 output->model = eina_stringshare_add(model);
4147 output->model = eina_stringshare_add("unknown");
4149 e_comp_wl->outputs = eina_list_append(e_comp_wl->outputs, output);
4152 wl_global_create(e_comp_wl->wl.disp, &wl_output_interface,
4153 2, output, _e_comp_wl_cb_output_bind);
4155 output->resources = NULL;
4156 output->scale = e_scale;
4159 /* update the output details */
4164 output->phys_width = pw;
4165 output->phys_height = ph;
4166 output->refresh = refresh;
4167 output->subpixel = subpixel;
4168 output->transform = transform;
4170 if (output->scale <= 0)
4171 output->scale = e_scale;
4173 /* if we have bound resources, send updates */
4174 EINA_LIST_FOREACH(output->resources, l2, resource)
4176 wl_output_send_geometry(resource,
4177 output->x, output->y,
4179 output->phys_height,
4181 output->make ?: "", output->model ?: "",
4184 if (wl_resource_get_version(resource) >= WL_OUTPUT_SCALE_SINCE_VERSION)
4185 wl_output_send_scale(resource, output->scale);
4187 wl_output_send_mode(resource, WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED,
4188 output->w, output->h, output->refresh);
4190 if (wl_resource_get_version(resource) >= WL_OUTPUT_DONE_SINCE_VERSION)
4191 wl_output_send_done(resource);
4198 e_comp_wl_output_remove(const char *id)
4200 E_Comp_Wl_Output *output;
4202 output = _e_comp_wl_output_get(e_comp_wl->outputs, id);
4205 e_comp_wl->outputs = eina_list_remove(e_comp_wl->outputs, output);
4207 /* wl_global_destroy(output->global); */
4209 /* eina_stringshare_del(output->id); */
4210 /* eina_stringshare_del(output->make); */
4211 /* eina_stringshare_del(output->model); */
4218 _e_comp_wl_key_send(Ecore_Event_Key *ev, E_Device *dev, enum wl_keyboard_key_state state, Eina_List *key_list, E_Client *ec)
4220 struct wl_resource *res;
4222 uint32_t serial, keycode;
4223 struct wl_client *wc = NULL;
4224 E_Comp_Config *comp_conf = NULL;
4225 const char *device_name = NULL;
4227 keycode = (ev->keycode - 8);
4229 serial = wl_display_next_serial(e_comp_wl->wl.disp);
4231 comp_conf = e_comp_config_get();
4233 if (ec && ec->comp_data)
4235 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4238 wc = wl_resource_get_client(surface);
4241 if (e_config->key_input_ttrace_enable)
4243 TRACE_INPUT_BEGIN(wl_keyboard_send_key:%s:%s, (state ? "PRESS" : "RELEASE"), ev->keyname);
4244 ELOGF("INPUT", "wl_keyboard_send_key:%s:%s|B|", NULL, (state ? "PRESS" : "RELEASE"), ev->keyname);
4247 EINA_LIST_FOREACH(key_list, l, res)
4249 if (wl_resource_get_client(res) != wc) continue;
4251 TRACE_INPUT_BEGIN(_e_comp_wl_key_send);
4252 if (!e_input_thread_mode_get())
4254 _e_comp_wl_send_event_device(wc, ev->timestamp, ev->dev, serial);
4255 device_name = ecore_device_name_get(ev->dev);
4261 _e_comp_wl_send_event_e_device(wc, ev->timestamp, dev, serial);
4262 device_name = e_device_name_get(dev);
4266 if (comp_conf && comp_conf->input_log_enable)
4267 ELOGF("Key", "Send Key %s (time: %d, device: %s)", ec, (state ? "Down" : "Up"), ev->timestamp, device_name);
4269 wl_keyboard_send_key(res, serial, ev->timestamp,
4274 if (e_config->key_input_ttrace_enable)
4277 ELOGF("INPUT", "wl_keyboard_send_key|E|", NULL);
4282 e_comp_wl_key_down(Ecore_Event_Key *ev, E_Device *dev)
4284 E_Client *ec = NULL;
4286 E_Comp_Wl_Key_Data *end, *k;
4288 if (ev->window != e_comp->ee_win)
4293 keycode = (ev->keycode - 8);
4294 if (!(e_comp_wl = e_comp->wl_comp_data))
4299 #ifndef E_RELEASE_BUILD
4300 if ((ev->modifiers & ECORE_EVENT_MODIFIER_CTRL) &&
4301 ((ev->modifiers & ECORE_EVENT_MODIFIER_ALT) ||
4302 (ev->modifiers & ECORE_EVENT_MODIFIER_ALTGR)) &&
4303 eina_streq(ev->key, "BackSpace"))
4309 g_mutex_lock(&e_comp_wl->kbd.keys_mutex);
4311 end = (E_Comp_Wl_Key_Data *)e_comp_wl->kbd.keys.data + (e_comp_wl->kbd.keys.size / sizeof(*k));
4313 for (k = e_comp_wl->kbd.keys.data; k < end; k++)
4315 /* ignore server-generated key repeats */
4316 if (k->key == keycode)
4318 g_mutex_unlock(&e_comp_wl->kbd.keys_mutex);
4323 g_mutex_unlock(&e_comp_wl->kbd.keys_mutex);
4325 if ((!e_client_action_get()) && (!e_comp->input_key_grabs))
4327 ec = e_client_focused_get();
4328 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4329 if (ec && ec->comp_data && surface)
4331 g_mutex_lock(&e_comp_wl->kbd.focused_mutex);
4332 if (e_comp_wl->kbd.focused)
4334 _e_comp_wl_key_send(ev, dev, WL_KEYBOARD_KEY_STATE_PRESSED, e_comp_wl->kbd.focused, ec);
4336 /* A key only sent to clients is added to the list */
4337 g_mutex_lock(&e_comp_wl->kbd.keys_mutex);
4338 e_comp_wl->kbd.keys.size = (const char *)end - (const char *)e_comp_wl->kbd.keys.data;
4340 if (!(k = wl_array_add(&e_comp_wl->kbd.keys, sizeof(*k))))
4342 DBG("wl_array_add: Out of memory\n");
4343 g_mutex_unlock(&e_comp_wl->kbd.keys_mutex);
4344 g_mutex_unlock(&e_comp_wl->kbd.focused_mutex);
4347 g_mutex_unlock(&e_comp_wl->kbd.keys_mutex);
4351 g_mutex_unlock(&e_comp_wl->kbd.focused_mutex);
4355 /* update modifier state */
4356 e_comp_wl_input_keyboard_state_update(keycode, EINA_TRUE);
4362 e_comp_wl_key_up(Ecore_Event_Key *ev, E_Device *dev)
4364 E_Client *ec = NULL;
4365 uint32_t keycode, delivered_key;
4366 E_Comp_Wl_Key_Data *end, *k;
4368 if (ev->window != e_comp->ee_win)
4373 keycode = (ev->keycode - 8);
4375 if (!(e_comp_wl = e_comp->wl_comp_data))
4380 g_mutex_lock(&e_comp_wl->kbd.keys_mutex);
4382 end = (E_Comp_Wl_Key_Data *)e_comp_wl->kbd.keys.data + (e_comp_wl->kbd.keys.size / sizeof(*k));
4383 for (k = e_comp_wl->kbd.keys.data; k < end; k++)
4385 if (k->key == keycode)
4392 e_comp_wl->kbd.keys.size =
4393 (const char *)end - (const char *)e_comp_wl->kbd.keys.data;
4395 g_mutex_unlock(&e_comp_wl->kbd.keys_mutex);
4397 /* If a key down event have been sent to clients, send a key up event to client for garantee key event sequence pair. (down/up) */
4398 if ((delivered_key) ||
4399 ((!e_client_action_get()) && (!e_comp->input_key_grabs)))
4401 ec = e_client_focused_get();
4403 g_mutex_lock(&e_comp_wl->kbd.focused_mutex);
4404 if (e_comp_wl->kbd.focused)
4406 _e_comp_wl_key_send(ev, dev, WL_KEYBOARD_KEY_STATE_RELEASED, e_comp_wl->kbd.focused, ec);
4408 g_mutex_unlock(&e_comp_wl->kbd.focused_mutex);
4411 /* update modifier state */
4412 e_comp_wl_input_keyboard_state_update(keycode, EINA_FALSE);
4418 e_comp_wl_key_process(Ecore_Event_Key *ev, E_Device *dev, int type)
4420 Eina_Bool res = EINA_FALSE;
4422 if (type == ECORE_EVENT_KEY_DOWN)
4424 res = e_comp_wl_key_down(ev, dev);
4426 else if (type == ECORE_EVENT_KEY_UP)
4428 res = e_comp_wl_key_up(ev, dev);
4435 e_comp_wl_evas_handle_mouse_button(E_Client *ec, uint32_t timestamp, uint32_t button_id, uint32_t state)
4438 struct wl_client *wc;
4439 uint32_t serial, btn;
4440 struct wl_resource *res;
4441 E_Comp_Config *comp_conf = NULL;
4443 if (ec->cur_mouse_action || e_comp_wl->drag)
4445 if (e_object_is_del(E_OBJECT(ec))) return EINA_FALSE;
4446 if ((ec->ignored) && (!ec->remote_surface.provider)) return EINA_FALSE;
4450 case 1: btn = BTN_LEFT; break;
4451 case 2: btn = BTN_MIDDLE; break;
4452 case 3: btn = BTN_RIGHT; break;
4453 default: btn = button_id; break;
4456 e_comp_wl->ptr.button = btn;
4457 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4458 if (!surface) return EINA_FALSE;
4460 if (!eina_list_count(e_comp_wl->ptr.resources))
4463 wc = wl_resource_get_client(surface);
4464 serial = wl_display_next_serial(e_comp_wl->wl.disp);
4466 comp_conf = e_comp_config_get();
4468 EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
4470 if (wl_resource_get_client(res) != wc) continue;
4471 if (!e_comp_wl_input_pointer_check(res)) continue;
4472 TRACE_INPUT_BEGIN(e_comp_wl_evas_handle_mouse_button);
4474 if (comp_conf && comp_conf->input_log_enable)
4475 ELOGF("Mouse", "Button %s (btn: %d, time: %d)", ec, (state ? "Down" : "Up"), btn, timestamp);
4477 wl_pointer_send_button(res, serial, timestamp, btn, state);
4484 e_comp_wl_touch_cancel(void)
4486 _e_comp_wl_touch_cancel();
4489 E_API E_Comp_Wl_Hook *
4490 e_comp_wl_hook_add(E_Comp_Wl_Hook_Point hookpoint, E_Comp_Wl_Hook_Cb func, const void *data)
4494 EINA_SAFETY_ON_TRUE_RETURN_VAL(hookpoint >= E_COMP_WL_HOOK_LAST, NULL);
4495 ch = E_NEW(E_Comp_Wl_Hook, 1);
4496 if (!ch) return NULL;
4497 ch->hookpoint = hookpoint;
4499 ch->data = (void*)data;
4500 _e_comp_wl_hooks[hookpoint] = eina_inlist_append(_e_comp_wl_hooks[hookpoint], EINA_INLIST_GET(ch));
4505 e_comp_wl_hook_del(E_Comp_Wl_Hook *ch)
4508 if (_e_comp_wl_hooks_walking == 0)
4510 _e_comp_wl_hooks[ch->hookpoint] = eina_inlist_remove(_e_comp_wl_hooks[ch->hookpoint], EINA_INLIST_GET(ch));
4514 _e_comp_wl_hooks_delete++;
4517 E_API E_Comp_Wl_Pid_Hook *
4518 e_comp_wl_pid_hook_add(E_Comp_Wl_Pid_Hook_Point hookpoint, E_Comp_Wl_Pid_Hook_Cb func, const void *data)
4520 E_Comp_Wl_Pid_Hook *ch;
4522 EINA_SAFETY_ON_TRUE_RETURN_VAL(hookpoint >= E_COMP_WL_PID_HOOK_LAST, NULL);
4524 ch = E_NEW(E_Comp_Wl_Pid_Hook, 1);
4525 EINA_SAFETY_ON_NULL_RETURN_VAL(ch, NULL);
4527 ch->hookpoint = hookpoint;
4529 ch->data = (void*)data;
4530 _e_comp_wl_pid_hooks[hookpoint] = eina_inlist_append(_e_comp_wl_pid_hooks[hookpoint], EINA_INLIST_GET(ch));
4536 e_comp_wl_pid_hook_del(E_Comp_Wl_Pid_Hook *ch)
4539 if (_e_comp_wl_pid_hooks_walking == 0)
4541 _e_comp_wl_pid_hooks[ch->hookpoint] = eina_inlist_remove(_e_comp_wl_pid_hooks[ch->hookpoint], EINA_INLIST_GET(ch));
4545 _e_comp_wl_pid_hooks_delete++;
4548 E_API E_Comp_Wl_Intercept_Hook *
4549 e_comp_wl_intercept_hook_add(E_Comp_Wl_Intercept_Hook_Point hookpoint, E_Comp_Wl_Intercept_Hook_Cb func, const void *data)
4551 E_Comp_Wl_Intercept_Hook *ch;
4553 EINA_SAFETY_ON_TRUE_RETURN_VAL(hookpoint >= E_COMP_WL_INTERCEPT_HOOK_LAST, NULL);
4554 ch = E_NEW(E_Comp_Wl_Intercept_Hook, 1);
4555 if (!ch) return NULL;
4556 ch->hookpoint = hookpoint;
4558 ch->data = (void*)data;
4559 _e_comp_wl_intercept_hooks[hookpoint] = eina_inlist_append(_e_comp_wl_intercept_hooks[hookpoint], EINA_INLIST_GET(ch));
4564 e_comp_wl_intercept_hook_del(E_Comp_Wl_Intercept_Hook *ch)
4567 if (_e_comp_wl_intercept_hooks_walking == 0)
4569 _e_comp_wl_intercept_hooks[ch->hookpoint] = eina_inlist_remove(_e_comp_wl_intercept_hooks[ch->hookpoint], EINA_INLIST_GET(ch));
4573 _e_comp_wl_intercept_hooks_delete++;
4577 e_comp_wl_shell_surface_ready(E_Client *ec)
4581 _e_comp_wl_hook_call(E_COMP_WL_HOOK_SHELL_SURFACE_READY, ec);
4585 e_comp_wl_input_cursor_timer_enable_set(Eina_Bool enabled)
4587 e_config->use_cursor_timer = !!enabled;
4589 if (e_config->use_cursor_timer)
4591 if (!e_pointer_is_hidden(e_comp->pointer))
4593 _e_comp_wl_cursor_move_timer_control(e_comp_wl->ptr.ec);
4598 if (e_comp_wl->ptr.hide_tmr)
4600 ecore_timer_del(e_comp_wl->ptr.hide_tmr);
4601 e_comp_wl->ptr.hide_tmr = NULL;
4603 cursor_timer_ec = NULL;
4605 if (e_comp_wl->ptr.ec && e_comp_wl->ptr.ec->has_cursor_unset)
4608 if (e_pointer_is_hidden(e_comp->pointer))
4610 _e_comp_wl_cursor_reload(e_comp_wl->ptr.ec);
4616 e_comp_wl_send_event_device(struct wl_client *wc, uint32_t timestamp, Ecore_Device *dev, uint32_t serial)
4618 EINA_SAFETY_ON_NULL_RETURN(wc);
4619 EINA_SAFETY_ON_NULL_RETURN(dev);
4621 _e_comp_wl_send_event_device(wc, timestamp, dev, serial);
4625 e_comp_wl_send_event_e_device(struct wl_client *wc, uint32_t timestamp, E_Device *dev, uint32_t serial)
4627 EINA_SAFETY_ON_NULL_RETURN(wc);
4628 EINA_SAFETY_ON_NULL_RETURN(dev);
4630 _e_comp_wl_send_event_e_device(wc, timestamp, dev, serial);
4634 e_comp_wl_key_send(E_Client *ec, int keycode, Eina_Bool pressed, void *dev, uint32_t time)
4636 struct wl_resource *res;
4637 struct wl_client *wc;
4639 uint32_t serial, wl_keycode;
4640 enum wl_keyboard_key_state state;
4641 E_Comp_Config *comp_conf = NULL;
4642 const char *dev_name = NULL;
4644 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4645 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4646 EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4648 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4649 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4651 wl_keycode = keycode - 8;
4652 EINA_SAFETY_ON_TRUE_RETURN_VAL(wl_keycode <= 0, EINA_FALSE);
4654 wc = wl_resource_get_client(surface);
4655 serial = wl_display_next_serial(e_comp_wl->wl.disp);
4656 if (!time) time = e_util_timestamp_get();
4657 if (pressed) state = WL_KEYBOARD_KEY_STATE_PRESSED;
4658 else state = WL_KEYBOARD_KEY_STATE_RELEASED;
4660 comp_conf = e_comp_config_get();
4661 e_keyrouter_event_surface_send(ec, keycode);
4663 if (e_config->key_input_ttrace_enable)
4665 TRACE_INPUT_BEGIN(wl_keyboard_send_key:%s:%d, (state ? "PRESS" : "RELEASE"), keycode);
4666 ELOGF("INPUT", "wl_keyboard_send_key:%s:%d|B|", NULL, (state ? "PRESS" : "RELEASE"), keycode);
4669 g_mutex_lock(&e_comp_wl->kbd.resource_mutex);
4670 EINA_LIST_FOREACH(e_comp_wl->kbd.resources, l, res)
4672 if (wl_resource_get_client(res) != wc) continue;
4673 if (!e_input_thread_mode_get())
4677 _e_comp_wl_send_event_device(wc, time, (Ecore_Device *)dev, serial);
4678 dev_name = ecore_device_name_get((Ecore_Device *)dev);
4682 _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_KEYBOARD, time);
4689 e_comp_wl_send_event_e_device(wc, time, (E_Device *)dev, serial);
4690 dev_name = e_device_name_get(dev);
4694 if (comp_conf && comp_conf->input_log_enable)
4695 ELOGF("Key", "Send Key %s (keycode: %d, time: %d, device: %s)", ec, (state ? "Down" : "Up"), wl_keycode, time,
4698 wl_keyboard_send_key(res, serial, time,
4701 g_mutex_unlock(&e_comp_wl->kbd.resource_mutex);
4703 if (e_config->key_input_ttrace_enable)
4706 ELOGF("INPUT", "wl_keyboard_send_key|E|", NULL);
4713 e_comp_wl_key_cancel(E_Client *ec, int keycode, Ecore_Device *dev, uint32_t time)
4715 struct wl_resource *res;
4716 struct wl_client *wc;
4718 uint32_t serial, wl_keycode, cancel_keycode;
4719 E_Comp_Config *comp_conf = NULL;
4720 struct xkb_keymap *keymap = NULL;
4722 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4723 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4724 EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4726 keymap = e_comp_input_key->xkb.keymap;
4727 EINA_SAFETY_ON_NULL_RETURN_VAL(keymap, EINA_FALSE);
4729 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4730 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4732 cancel_keycode = e_comp_wl_input_keymap_keyname_to_keycode("Cancel");
4733 if (cancel_keycode == XKB_KEYCODE_INVALID)
4735 ELOGF("Key", "Failed to send key cancel for %d key, Cancel key is not supported\n", ec, keycode);
4739 EINA_SAFETY_ON_TRUE_RETURN_VAL(cancel_keycode < 8, EINA_FALSE);
4741 cancel_keycode = cancel_keycode - 8;
4743 wl_keycode = keycode - 8;
4744 EINA_SAFETY_ON_TRUE_RETURN_VAL(wl_keycode <= 0, EINA_FALSE);
4746 wc = wl_resource_get_client(surface);
4747 serial = wl_display_next_serial(e_comp_wl->wl.disp);
4748 if (!time) time = e_util_timestamp_get();
4750 comp_conf = e_comp_config_get();
4751 e_keyrouter_event_surface_send(ec, keycode);
4753 g_mutex_lock(&e_comp_wl->kbd.resource_mutex);
4754 EINA_LIST_FOREACH(e_comp_wl->kbd.resources, l, res)
4756 if (wl_resource_get_client(res) != wc) continue;
4757 if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
4758 else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_KEYBOARD, time);
4760 if (comp_conf && comp_conf->input_log_enable)
4761 ELOGF("Key", "Send Key Cancel (time: %d)", ec, time);
4762 wl_keyboard_send_key(res, serial, time,
4763 cancel_keycode, WL_KEYBOARD_KEY_STATE_PRESSED);
4764 wl_keyboard_send_key(res, serial, time,
4765 wl_keycode, WL_KEYBOARD_KEY_STATE_RELEASED);
4766 wl_keyboard_send_key(res, serial, time,
4767 cancel_keycode, WL_KEYBOARD_KEY_STATE_RELEASED);
4769 g_mutex_unlock(&e_comp_wl->kbd.resource_mutex);
4776 e_comp_wl_touch_send(E_Client *ec, int idx, int x, int y, Eina_Bool pressed, Ecore_Device *dev, double radius_x, double radius_y, double pressure, double angle, uint32_t time)
4778 struct wl_client *wc;
4780 E_Devicemgr_Input_Device *device = NULL;
4782 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4783 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4784 EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4786 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4787 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4789 if (!dev) device = _e_comp_wl_device_last_device_get(ECORE_DEVICE_CLASS_TOUCH);
4791 wc = wl_resource_get_client(surface);
4792 if (!time) time = e_util_timestamp_get();
4793 serial = wl_display_next_serial(e_comp_wl->wl.disp);
4797 _e_comp_wl_send_event_device(wc, time, dev, serial);
4798 _e_comp_wl_device_handle_axes(ecore_device_identifier_get(dev), ECORE_DEVICE_CLASS_TOUCH, ec, idx, radius_x, radius_y, pressure, angle);
4802 _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_TOUCH, time);
4803 _e_comp_wl_device_handle_axes(device->identifier, device->clas, ec, idx, radius_x, radius_y, pressure, angle);
4806 x = x + ec->client.x;
4807 y = y + ec->client.y;
4809 _e_comp_wl_send_touch(ec, idx, x, y, time, pressed);
4815 e_comp_wl_touch_update_send(E_Client *ec, int idx, int x, int y, Ecore_Device *dev, double radius_x, double radius_y, double pressure, double angle, uint32_t time)
4817 E_Devicemgr_Input_Device *device;
4819 struct wl_client *wc;
4821 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4822 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4823 EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4825 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4826 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4828 if (!dev) device = _e_comp_wl_device_last_device_get(ECORE_DEVICE_CLASS_TOUCH);
4830 wc = wl_resource_get_client(surface);
4831 if (!time) time = e_util_timestamp_get();
4832 serial = wl_display_next_serial(e_comp_wl->wl.disp);
4836 _e_comp_wl_send_event_device(wc, time, dev, serial);
4837 _e_comp_wl_device_handle_axes(ecore_device_identifier_get(dev), ECORE_DEVICE_CLASS_TOUCH, ec, idx, radius_x, radius_y, pressure, angle);
4841 _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_TOUCH, time);
4842 _e_comp_wl_device_handle_axes(device->identifier, device->clas, ec, idx, radius_x, radius_y, pressure, angle);
4845 x = x + ec->client.x;
4846 y = y + ec->client.y;
4848 _e_comp_wl_send_touch_move(ec, idx, x, y, time);
4854 e_comp_wl_touch_cancel_send(E_Client *ec)
4856 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4857 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4858 EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4860 _e_comp_wl_send_touch_cancel(ec);
4866 e_comp_wl_mouse_button_send(E_Client *ec, int buttons, Eina_Bool pressed, Ecore_Device *dev, uint32_t time)
4869 struct wl_client *wc;
4871 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4872 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4873 EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4875 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4876 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4878 wc = wl_resource_get_client(surface);
4879 if (!time) time = e_util_timestamp_get();
4880 serial = wl_display_next_serial(e_comp_wl->wl.disp);
4882 if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
4883 else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, time);
4886 e_comp_wl_evas_handle_mouse_button(ec, time, buttons,
4887 WL_POINTER_BUTTON_STATE_PRESSED);
4889 e_comp_wl_evas_handle_mouse_button(ec, time, buttons,
4890 WL_POINTER_BUTTON_STATE_RELEASED);
4896 e_comp_wl_mouse_move_send(E_Client *ec, int x, int y, Ecore_Device *dev, uint32_t time)
4899 struct wl_client *wc;
4901 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4902 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4903 EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4905 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4906 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4908 wc = wl_resource_get_client(surface);
4909 if (!time) time = e_util_timestamp_get();
4910 serial = wl_display_next_serial(e_comp_wl->wl.disp);
4912 if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
4913 else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, time);
4915 x = x + ec->client.x;
4916 y = y + ec->client.y;
4918 _e_comp_wl_send_mouse_move(ec, x, y, time);
4924 e_comp_wl_mouse_wheel_send(E_Client *ec, int direction, int z, Ecore_Device *dev, uint32_t time)
4927 struct wl_client *wc;
4929 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4930 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4931 EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4933 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4934 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4936 wc = wl_resource_get_client(surface);
4937 if (!time) time = e_util_timestamp_get();
4938 serial = wl_display_next_serial(e_comp_wl->wl.disp);
4940 if (_e_comp_wl_check_cursor_timer_needed(ec))
4942 if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_WHEEL, ec))
4946 if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
4947 else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, time);
4949 _e_comp_wl_mouse_wheel_send(ec, direction, z, time);
4951 if (!need_send_released) // set cursor's hide_tmr only when mouse button is not pressed
4953 if (_e_comp_wl_check_cursor_timer_needed(ec))
4954 _e_comp_wl_cursor_move_timer_control(ec);
4961 e_comp_wl_mouse_in_send(E_Client *ec, int x, int y, Ecore_Device *dev, uint32_t time)
4964 struct wl_client *wc;
4965 struct wl_resource *res;
4968 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4969 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4971 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4972 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4974 EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4975 EINA_SAFETY_ON_TRUE_RETURN_VAL(e_object_is_del(E_OBJECT(ec)), EINA_FALSE);
4977 if (!eina_list_count(e_comp_wl->ptr.resources)) return EINA_FALSE;
4978 wc = wl_resource_get_client(surface);
4979 serial = wl_display_next_serial(e_comp_wl->wl.disp);
4980 EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
4982 if (!e_comp_wl_input_pointer_check(res)) continue;
4983 if (wl_resource_get_client(res) != wc) continue;
4985 if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
4986 else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, time);
4988 wl_pointer_send_enter(res, serial, surface,
4989 wl_fixed_from_int(x),
4990 wl_fixed_from_int(y));
4991 ec->pointer_enter_sent = EINA_TRUE;
4993 wl_signal_emit(&e_comp_wl->ptr_constraints.surface_mousein_signal, ec);
4999 e_comp_wl_mouse_out_send(E_Client *ec, Ecore_Device *dev, uint32_t time)
5002 struct wl_client *wc;
5003 struct wl_resource *res;
5006 EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
5007 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
5008 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
5009 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
5010 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
5011 EINA_SAFETY_ON_TRUE_RETURN_VAL(e_object_is_del(E_OBJECT(ec)), EINA_FALSE);
5013 if (!eina_list_count(e_comp_wl->ptr.resources)) return EINA_FALSE;
5014 wc = wl_resource_get_client(surface);
5015 serial = wl_display_next_serial(e_comp_wl->wl.disp);
5016 EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
5018 if (!e_comp_wl_input_pointer_check(res)) continue;
5019 if (wl_resource_get_client(res) != wc) continue;
5021 if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
5022 else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, time);
5024 wl_pointer_send_leave(res, serial, surface);
5025 ec->pointer_enter_sent = EINA_FALSE;
5032 e_comp_wl_mouse_in_renew(E_Client *ec, int buttons, int x, int y, void *data, Evas_Modifier *modifiers, Evas_Lock *locks, unsigned int timestamp, Evas_Event_Flags event_flags, Evas_Device *dev, Evas_Object *event_src)
5034 Evas_Event_Mouse_In ev_in;
5037 if (ec->pointer_enter_sent) return;
5039 ev_in.buttons = buttons;
5047 ev_in.modifiers = modifiers;
5048 ev_in.locks = locks;
5049 ev_in.timestamp = timestamp;
5050 ev_in.event_flags = event_flags;
5053 ev_in.event_src = event_src;
5055 _e_comp_wl_evas_cb_mouse_in((void *)ec, NULL, NULL, &ev_in);
5059 e_comp_wl_mouse_out_renew(E_Client *ec, int buttons, int x, int y, void *data, Evas_Modifier *modifiers, Evas_Lock *locks, unsigned int timestamp, Evas_Event_Flags event_flags, Evas_Device *dev, Evas_Object *event_src)
5061 Evas_Event_Mouse_Out ev_out;
5064 if (!ec->pointer_enter_sent) return;
5066 ev_out.buttons = buttons;
5068 ev_out.output.x = x;
5069 ev_out.output.y = y;
5070 ev_out.canvas.x = x;
5071 ev_out.canvas.y = y;
5074 ev_out.modifiers = modifiers;
5075 ev_out.locks = locks;
5076 ev_out.timestamp = timestamp;
5077 ev_out.event_flags = event_flags;
5080 ev_out.event_src = event_src;
5082 _e_comp_wl_evas_cb_mouse_out((void *)ec, NULL, NULL, &ev_out);
5086 e_comp_wl_cursor_hide(E_Client *ec)
5088 struct wl_resource *res;
5089 struct wl_client *wc;
5093 e_pointer_object_set(e_comp->pointer, NULL, 0, 0);
5095 if (e_comp_wl->ptr.hide_tmr)
5097 ecore_timer_del(e_comp_wl->ptr.hide_tmr);
5098 e_comp_wl->ptr.hide_tmr = NULL;
5100 cursor_timer_ec = NULL;
5102 if (!ec) return EINA_FALSE;
5103 if (e_object_is_del(E_OBJECT(ec))) return EINA_FALSE;
5104 struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
5105 EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
5107 wc = wl_resource_get_client(surface);
5108 serial = wl_display_next_serial(e_comp_wl->wl.disp);
5109 EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
5111 if (!e_comp_wl_input_pointer_check(res)) continue;
5112 if (wl_resource_get_client(res) != wc) continue;
5113 if (ec->pointer_enter_sent == EINA_FALSE) continue;
5114 wl_pointer_send_leave(res, serial, surface);
5115 ec->pointer_enter_sent = EINA_FALSE;
5121 /* surface to buffer
5122 * - width : surface width
5123 * - height : surface height
5124 * - transform: buffer transform
5125 * - scale : buffer scale
5127 * - width : screen width
5128 * - height : screen height
5129 * - transform: output transform
5130 * - scale : output scale
5132 static E_Util_Transform_Matrix
5133 _e_comp_wl_buffer_coord_get(int width, int height, int transform, int scale)
5135 E_Util_Transform_Matrix m;
5137 e_util_transform_matrix_load_identity(&m);
5139 if (transform & 0x4)
5141 e_util_transform_matrix_translate(&m, -((double)width / 2), 0, 0);
5142 e_util_transform_matrix_flip_x(&m);
5143 e_util_transform_matrix_translate(&m, (double)width / 2, 0, 0);
5146 switch (transform & 0x3)
5148 case WL_OUTPUT_TRANSFORM_90:
5149 e_util_transform_matrix_translate(&m, -width, 0, 0);
5150 e_util_transform_matrix_rotation_z(&m, 270);
5152 case WL_OUTPUT_TRANSFORM_180:
5153 e_util_transform_matrix_translate(&m, -width, -height, 0);
5154 e_util_transform_matrix_rotation_z(&m, 180);
5156 case WL_OUTPUT_TRANSFORM_270:
5157 e_util_transform_matrix_translate(&m, 0, -height, 0);
5158 e_util_transform_matrix_rotation_z(&m, 90);
5164 e_util_transform_matrix_scale(&m, scale, scale, 1);
5169 /* surface to buffer
5170 * - surface width, surface height, buffer transform, buffer scale
5172 * - screen width, screen height, output transform, output scale
5175 e_comp_wl_pos_convert(int width, int height, int transform, int scale, int sx, int sy, int *bx, int *by)
5177 E_Util_Transform_Matrix m;
5178 E_Util_Transform_Vertex v;
5180 m = _e_comp_wl_buffer_coord_get(width, height, transform, scale);
5182 e_util_transform_vertex_init(&v, sx, sy, 0.0, 1.0);
5183 v = e_util_transform_matrix_multiply_vertex(&m, &v);
5184 e_util_transform_vertex_pos_round_get(&v, bx, by, NULL, NULL);
5188 * - buffer width, buffer height, buffer transform, buffer scale
5191 e_comp_wl_pos_convert_inverse(int width, int height, int transform, int scale, int bx, int by, int *sx, int *sy)
5193 E_Util_Transform_Matrix m;
5194 E_Util_Transform_Vertex v;
5197 if (transform != 0 || scale > 1)
5199 tw = ((transform % 2) ? height : width) / scale;
5200 th = ((transform % 2) ? width : height) / scale;
5208 m = _e_comp_wl_buffer_coord_get(tw, th, transform, scale);
5209 m = e_util_transform_matrix_inverse_get(&m);
5211 e_util_transform_vertex_init(&v, bx, by, 0.0, 1.0);
5212 v = e_util_transform_matrix_multiply_vertex(&m, &v);
5213 e_util_transform_vertex_pos_round_get(&v, sx, sy, NULL, NULL);
5216 /* surface to buffer
5217 * - surface width, surface height, buffer transform, buffer scale
5219 * - screen width, screen height, output transform, output scale
5222 e_comp_wl_rect_convert(int width, int height, int transform, int scale,
5223 int sx, int sy, int sw, int sh, int *bx, int *by, int *bw, int *bh)
5225 E_Util_Transform_Matrix m;
5226 E_Util_Transform_Rect sr = {sx, sy, sw, sh};
5227 E_Util_Transform_Rect_Vertex sv;
5229 m = _e_comp_wl_buffer_coord_get(width, height, transform, scale);
5231 sv = e_util_transform_rect_to_vertices(&sr);
5232 sv = e_util_transform_matrix_multiply_rect_vertex(&m, &sv);
5233 sr = e_util_transform_vertices_to_rect(&sv);
5242 * - buffer width, buffer height, buffer transform, buffer scale
5245 e_comp_wl_rect_convert_inverse(int width, int height, int transform, int scale,
5246 int bx, int by, int bw, int bh, int *sx, int *sy, int *sw, int *sh)
5248 E_Util_Transform_Matrix m;
5249 E_Util_Transform_Rect br = {bx, by, bw, bh};
5250 E_Util_Transform_Rect_Vertex bv;
5253 if (transform != 0 || scale > 1)
5255 tw = ((transform % 2) ? height : width) / scale;
5256 th = ((transform % 2) ? width : height) / scale;
5264 m = _e_comp_wl_buffer_coord_get(tw, th, transform, scale);
5265 m = e_util_transform_matrix_inverse_get(&m);
5267 bv = e_util_transform_rect_to_vertices(&br);
5268 bv = e_util_transform_matrix_multiply_rect_vertex(&m, &bv);
5269 br = e_util_transform_vertices_to_rect(&bv);
5277 EINTERN E_Comp_Wl_Output*
5278 e_comp_wl_output_find(E_Client *ec)
5281 E_Comp_Wl_Output *output;
5283 if (!ec || !ec->comp_data || e_object_is_del(E_OBJECT(ec))) return NULL;
5285 EINA_LIST_FOREACH(e_comp_wl->outputs, l, output)
5287 if (output->transform % 2)
5289 if (ec->x < output->y || ec->x >= (output->y + output->h) ||
5290 ec->y < output->x || ec->y >= (output->x + output->w))
5295 if (ec->x < output->x || ec->x >= (output->x + output->w) ||
5296 ec->y < output->y || ec->y >= (output->y + output->h))
5306 EINTERN Eina_Array *
5307 e_comp_wl_output_find_all(E_Client *ec)
5309 E_Comp_Wl_Output *output;
5310 Eina_Array *outputs;
5313 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, NULL);
5315 outputs = eina_array_new(4);
5319 EINA_LIST_FOREACH(e_comp_wl->outputs, l, output)
5321 if (E_INTERSECTS(ec->x, ec->y, ec->w, ec->h,
5322 output->x, output->y, output->w, output->h))
5324 eina_array_push(outputs, output);
5328 if (eina_array_count(outputs) == 0)
5330 eina_array_free(outputs);
5337 // --------------------------------------------------------
5338 // tizen_move_resize
5339 // --------------------------------------------------------
5341 e_comp_wl_commit_sync_client_geometry_add(E_Client *ec,
5348 E_Client_Pending_Geometry *geo;
5351 if (e_object_is_del(E_OBJECT(ec))) goto ret;
5352 if (ec->fullscreen || ec->maximized) goto err;
5354 geo = E_NEW(E_Client_Pending_Geometry, 1);
5357 geo->serial = serial;
5363 ec->surface_sync.pending_geometry = eina_list_append(ec->surface_sync.pending_geometry, geo);
5364 ec->surface_sync.wait_commit = EINA_TRUE;
5369 ELOGF("POSSIZE", "Could not add geometry(new:%d full:%d max:%d)", ec, ec->new_client, ec->fullscreen, ec->maximized);
5376 e_comp_wl_commit_sync_configure(E_Client *ec)
5379 E_Client_Pending_Geometry *geo;
5381 Eina_Bool match_size = EINA_FALSE;
5388 if (!ec || !ec->frame) goto ret;
5389 if (e_object_is_del(E_OBJECT(ec))) goto ret;
5392 config.x = ec->x; config.y = ec->y; config.w = ec->w; config.h = ec->h;
5393 if (!e_pixmap_size_get(ec->pixmap, &bw, &bh)) goto err;
5395 if (eina_list_count(ec->surface_sync.pending_geometry))
5397 Eina_List *ll = NULL;
5398 EINA_LIST_REVERSE_FOREACH_SAFE(ec->surface_sync.pending_geometry, l, ll, geo)
5402 ec->surface_sync.pending_geometry = eina_list_remove(ec->surface_sync.pending_geometry, geo);
5407 if ((geo->w == bw) && (geo->h == bh))
5409 match_size = EINA_TRUE;
5414 ec->surface_sync.pending_geometry = eina_list_remove(ec->surface_sync.pending_geometry, geo);
5421 if ((config.w != ec->w) || (config.h != ec->h))
5423 e_client_size_set(ec, config.w, config.h);
5424 ec->changes.size = EINA_TRUE;
5428 // FIXME: The geometry of the client would be better to be calculated
5429 // at e_desk or at e_desk_area. So the position(x,y) of the client
5430 // should be calcuated at the e_desk or at the e_desk_area.
5432 desk = e_comp_desk_find_by_ec(ec);
5435 ec->client.x = desk->geom.x + config.x;
5436 ec->client.y = desk->geom.y + config.y;
5440 ec->client.x = config.x;
5441 ec->client.y = config.y;
5444 if ((ec->client.x != ec->x) || (ec->client.y != ec->y))
5446 e_client_pos_set(ec, ec->client.x, ec->client.y);
5448 ec->changes.pos = 1;
5452 ELOGF("POSSIZE", "Configure pending geometry (%d,%d,%dx%d)", ec, ec->x, ec->y, ec->w, ec->h);
5456 // cw interceptor(move,resize) won't work if wait_commit is TRUE
5457 ec->surface_sync.wait_commit = EINA_FALSE;
5459 e_client_shell_configure(ec, ec->x, ec->y, ec->w, ec->h);
5461 // rollback wait_commit if there are pending requests remained
5462 if (eina_list_count(ec->surface_sync.pending_geometry))
5463 ec->surface_sync.wait_commit = EINA_TRUE;
5468 ELOGF("POSSIZE", "Could not configure geometry (%d,%d - %dx%d) bw:%d bh:%d", ec, ec->x, ec->y, ec->w, ec->h, bw, bh);
5475 _tz_move_resize_iface_cb_destroy(struct wl_client *client EINA_UNUSED,
5476 struct wl_resource *res_moveresize)
5478 wl_resource_destroy(res_moveresize);
5482 _tz_move_resize_iface_cb_set_geometry(struct wl_client *client EINA_UNUSED,
5483 struct wl_resource *res_moveresize,
5484 struct wl_resource *surface,
5491 /* to be implemented */
5494 int cur_w = 0, cur_h = 0;
5496 ec = e_client_from_surface_resource(surface);
5499 pending = e_client_pending_geometry_has(ec);
5500 e_client_geometry_get(ec, NULL, NULL, &cur_w, &cur_h);
5501 ELOGF("POSSIZE", "Request move_resize geometry_set. geo(%d,%d,%dx%d) cur(%dx%d). pend:%d", ec, x, y, w, h, cur_w, cur_h, pending);
5505 if ((cur_w == w) && (cur_h == h))
5507 e_client_pos_set(ec, x, y);
5508 ec->changes.pos = 1;
5514 if (!e_comp_wl_commit_sync_client_geometry_add(ec, serial, x, y, w, h)) goto err;
5518 ELOGF("POSSIZE", "Could not add set_geometry request(serial:%d, %d,%d - %dx%d)", ec, serial, x, y, w, h);
5521 static const struct tizen_move_resize_interface _tz_move_resize_iface =
5523 _tz_move_resize_iface_cb_destroy,
5524 _tz_move_resize_iface_cb_set_geometry,
5528 _tz_moveresize_cb_bind(struct wl_client *client,
5529 void *data EINA_UNUSED,
5533 struct wl_resource *res_moveresize;
5535 res_moveresize = wl_resource_create(client,
5536 &tizen_move_resize_interface,
5539 EINA_SAFETY_ON_NULL_GOTO(res_moveresize, err);
5542 wl_resource_set_implementation(res_moveresize,
5543 &_tz_move_resize_iface,
5549 ERR("Could not create tizen_move_resize_interface res: %m");
5550 wl_client_post_no_memory(client);
5554 _e_comp_wl_move_resize_init(void)
5556 if (!e_comp_wl) return;
5557 if (!e_comp_wl->wl.disp) return;
5559 if (!wl_global_create(e_comp_wl->wl.disp,
5560 &tizen_move_resize_interface,
5563 _tz_moveresize_cb_bind))
5565 ERR("Could not create tizen_move_resize_interface to wayland globals: %m");
5572 e_comp_wl_pid_output_configured_resolution_send(pid_t pid, int w, int h)
5574 E_Comp_Wl_Output *output;
5575 pid_t output_pid = 0;
5576 Eina_List *l = NULL, *l2 = NULL;
5577 struct wl_resource *resource = NULL;
5579 if (!e_config->configured_output_resolution.use) return EINA_TRUE;
5581 EINA_SAFETY_ON_TRUE_RETURN_VAL(pid <= 0, EINA_FALSE);
5582 EINA_SAFETY_ON_TRUE_RETURN_VAL(w < 0, EINA_FALSE);
5583 EINA_SAFETY_ON_TRUE_RETURN_VAL(h < 0, EINA_FALSE);
5585 EINA_LIST_FOREACH(e_comp_wl->outputs, l, output)
5587 /* if we have bound resources, send updates */
5588 EINA_LIST_FOREACH(output->resources, l2, resource)
5590 wl_client_get_credentials(wl_resource_get_client(resource), &output_pid, NULL, NULL);
5591 if (output_pid != pid) continue;
5593 ELOGF("COMP_WL", "\tSend Configured Output AGAIN ~!!!!! (pid:%d)", NULL, pid);
5595 // send output information to the client
5596 _e_comp_wl_output_info_send(output, resource, pid, w, h);
5604 e_comp_wl_surface_state_init(E_Comp_Wl_Surface_State *state, int w, int h)
5606 _e_comp_wl_surface_state_init(state, w, h);
5610 e_comp_wl_surface_state_commit(E_Client *ec, E_Comp_Wl_Surface_State *state)
5612 _e_comp_wl_surface_state_commit(ec, state);
5616 e_comp_wl_hook_call(E_Comp_Wl_Hook_Point hookpoint, E_Client *ec)
5618 _e_comp_wl_hook_call(hookpoint, ec);
5622 e_comp_wl_surface_state_finish(E_Comp_Wl_Surface_State *state)
5624 _e_comp_wl_surface_state_finish(state);
5628 e_comp_wl_surface_state_buffer_set(E_Comp_Wl_Surface_State *state, E_Comp_Wl_Buffer *buffer)
5630 _e_comp_wl_surface_state_buffer_set(state, buffer);
5634 buffer_transform(int width, int height, uint32_t transform, int32_t scale,
5635 int sx, int sy, int *dx, int *dy)
5639 case WL_OUTPUT_TRANSFORM_NORMAL:
5643 case WL_OUTPUT_TRANSFORM_FLIPPED:
5644 *dx = width - sx, *dy = sy;
5646 case WL_OUTPUT_TRANSFORM_90:
5647 *dx = height - sy, *dy = sx;
5649 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
5650 *dx = height - sy, *dy = width - sx;
5652 case WL_OUTPUT_TRANSFORM_180:
5653 *dx = width - sx, *dy = height - sy;
5655 case WL_OUTPUT_TRANSFORM_FLIPPED_180:
5656 *dx = sx, *dy = height - sy;
5658 case WL_OUTPUT_TRANSFORM_270:
5659 *dx = sy, *dy = width - sx;
5661 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
5671 _buffer_viewport_get(E_Comp_Wl_Buffer_Viewport *vp, int bw, int bh, Eina_Rectangle *out)
5674 int tx1, ty1, tx2, ty2;
5675 int width_from_buffer, height_from_buffer;
5677 switch (vp->buffer.transform)
5679 case WL_OUTPUT_TRANSFORM_90:
5680 case WL_OUTPUT_TRANSFORM_270:
5681 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
5682 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
5683 width_from_buffer = bh / vp->buffer.scale;
5684 height_from_buffer = bw / vp->buffer.scale;
5687 width_from_buffer = bw / vp->buffer.scale;
5688 height_from_buffer = bh / vp->buffer.scale;
5692 if (vp->buffer.src_width == wl_fixed_from_int(-1))
5696 x2 = width_from_buffer;
5697 y2 = height_from_buffer;
5701 x1 = wl_fixed_to_int(vp->buffer.src_x);
5702 y1 = wl_fixed_to_int(vp->buffer.src_y);
5703 x2 = wl_fixed_to_int(vp->buffer.src_x + vp->buffer.src_width);
5704 y2 = wl_fixed_to_int(vp->buffer.src_y + vp->buffer.src_height);
5707 buffer_transform(width_from_buffer, height_from_buffer,
5708 vp->buffer.transform, vp->buffer.scale, x1, y1, &tx1, &ty1);
5709 buffer_transform(width_from_buffer, height_from_buffer,
5710 vp->buffer.transform, vp->buffer.scale, x2, y2, &tx2, &ty2);
5712 out->x = (tx1 <= tx2) ? tx1 : tx2;
5713 out->y = (ty1 <= ty2) ? ty1 : ty2;
5714 out->w = (tx1 <= tx2) ? tx2 - tx1 : tx1 - tx2;
5715 out->h = (ty1 <= ty2) ? ty2 - ty1 : ty1 - ty2;
5719 * Convert given four coordinates to elements of rectangle
5720 * @in p[4] Coordinates to be converted
5721 * @out rect x, y, width, and height
5722 * transform Angle which represents TDM_TRANSFORM of rectangle
5723 * @return EINA_FALSE in following case, otherwise EINA_TRUE.
5724 * 1. The given coordinates are not represented by rectangle.
5725 * 2. All angles except for 0, 90, 180, 270.
5728 _coords_to_rectangle_convert(Evas_Point p[4], Eina_Rectangle *rect, uint *rotation)
5730 Eina_Bool ret = EINA_FALSE;
5732 if ((p[0].y == p[1].y) && (p[1].x == p[2].x) && (p[2].y == p[3].y) && (p[3].x == p[0].x))
5735 if ((p[0].x < p[2].x) && (p[0].y < p[2].y))
5738 *rotation = TDM_TRANSFORM_NORMAL;
5741 EINA_RECTANGLE_SET(rect, p[0].x, p[0].y, p[2].x - p[0].x, p[2].y - p[0].y);
5745 else if ((p[0].x > p[2].x) && (p[0].y > p[2].y))
5748 *rotation = TDM_TRANSFORM_180;
5751 EINA_RECTANGLE_SET(rect, p[2].x, p[2].y, p[0].x - p[2].x, p[0].y - p[2].y);
5756 else if ((p[0].x == p[1].x) && (p[1].y == p[2].y) && (p[2].x == p[3].x) && (p[3].y == p[0].y))
5759 if ((p[0].x > p[2].x) && (p[0].y < p[2].y))
5762 *rotation = TDM_TRANSFORM_90;
5765 EINA_RECTANGLE_SET(rect, p[2].x, p[0].y, p[0].x - p[2].x, p[2].y - p[0].y);
5769 else if ((p[0].x < p[2].x) && (p[0].y > p[2].y))
5772 *rotation = TDM_TRANSFORM_270;
5775 EINA_RECTANGLE_SET(rect, p[0].x, p[2].y, p[2].x - p[0].x, p[0].y - p[2].y);
5785 _output_viewport_get_from_evas_map(E_Map *m, Eina_Rectangle *out, unsigned int *rotation)
5790 for (i = 0; i < 4; i++)
5791 e_map_point_coord_get(m, i, &p[i].x, &p[i].y, NULL);
5793 if (!_coords_to_rectangle_convert(p, out, rotation))
5795 DBG("Cannot convert given coords to rectangle.\n"
5796 "p1(%d %d) p2(%d %d) p3(%d %d) p4(%d %d)",
5797 p[0].x, p[0].y, p[1].x, p[1].y,
5798 p[2].x, p[2].y, p[3].x, p[3].y);
5806 _transform_merge_with_rotation(enum wl_output_transform transform, unsigned int rotation)
5808 int trans_rotation, flip;
5810 trans_rotation = transform & 0x3;
5811 flip = transform & 0x4;
5813 return (flip + (trans_rotation + rotation) % 4);
5817 _e_comp_wl_surface_output_viewport_get(E_Client *ec, Eina_Rectangle *out)
5825 if (e_comp_wl_subsurface_check(ec))
5826 e_comp_wl_subsurface_global_coord_get(ec, &out->x, &out->y);
5833 out->w = ec->comp_data->width_from_viewport;
5834 out->w = (out->w + 1) & ~1;
5835 out->h = ec->comp_data->height_from_viewport;
5837 e_comp_object_frame_xy_unadjust(ec->frame, out->x, out->y, &out->x, &out->y);
5838 e_comp_object_frame_wh_unadjust(ec->frame, out->w, out->h, &out->w, &out->h);
5842 e_comp_wl_surface_viewport_get(E_Client *ec, Eina_Rectangle *buffer_viewport, Eina_Rectangle *output_viewport, unsigned int *transform)
5844 E_Comp_Wl_Buffer *buffer;
5845 E_Comp_Wl_Buffer_Viewport *vp;
5847 enum wl_output_transform buffer_transform;
5848 unsigned int rotation;
5849 Eina_Bool res = EINA_FALSE;
5851 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
5853 if (e_object_is_del(E_OBJECT(ec)))
5856 vp = &ec->comp_data->scaler.buffer_viewport;
5858 if (buffer_viewport)
5860 buffer = ec->comp_data->buffer_ref.buffer;
5861 /* Getting a viewport of buffer needs geometry of buffer. */
5865 _buffer_viewport_get(vp, buffer->w, buffer->h, buffer_viewport);
5868 if ((output_viewport) || (transform))
5870 m = e_client_map_get(ec);
5872 res = _output_viewport_get_from_evas_map(m, output_viewport, &rotation);
5874 _e_comp_wl_surface_output_viewport_get(ec, output_viewport);
5879 buffer_transform = e_comp_wl_output_buffer_transform_get(ec);
5880 /* NOTE Merge transform value from evas_map with E_Comp_Wl_Buffer_Viewport's one.
5881 * Since buffer.transform isn't applied using evas_map,
5882 * it has to be taken into account here to apply buffer.transform
5883 * and rotation of e_client_transform together. */
5885 *transform = _transform_merge_with_rotation(buffer_transform, rotation);
5887 *transform = (unsigned int)buffer_transform;
5895 e_comp_wl_surface_role_set(E_Client *ec, const char *role_name, struct wl_resource *error_resource, uint32_t error_code)
5897 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
5898 EINA_SAFETY_ON_NULL_RETURN_VAL(role_name, EINA_FALSE);
5900 /* Must be called with valid comp_data */
5901 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
5903 if ((ec->comp_data->role_name == NULL) ||
5904 (ec->comp_data->role_name == role_name) ||
5905 (strcmp(ec->comp_data->role_name, role_name) == 0))
5907 ec->comp_data->role_name = role_name;
5913 wl_resource_post_error(error_resource, error_code,
5914 "Cannot assign role %s to wl_surface@%d,"
5915 " already has role %s\n",
5917 ec->comp_data->wl_surface ?
5918 wl_resource_get_id(ec->comp_data->wl_surface) : -1,
5919 ec->comp_data->role_name);
5925 EINTERN const char *
5926 e_comp_wl_surface_role_get(E_Client *ec)
5928 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, NULL);
5929 return ec->comp_data ? ec->comp_data->role_name : NULL;
5932 EINTERN struct wl_resource *
5933 e_comp_wl_client_surface_get(E_Client *ec)
5935 struct wl_resource *surface = NULL;
5936 EINA_SAFETY_ON_NULL_RETURN_VAL(ec, NULL);
5937 EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, NULL);
5939 g_mutex_lock(&ec->comp_data->surface_mutex);
5940 surface = ec->comp_data->surface;
5941 g_mutex_unlock(&ec->comp_data->surface_mutex);
5946 EINTERN void e_comp_wl_client_surface_set(E_Client *ec, struct wl_resource *surface)
5948 EINA_SAFETY_ON_NULL_RETURN(ec);
5949 EINA_SAFETY_ON_NULL_RETURN(ec->comp_data);
5951 g_mutex_lock(&ec->comp_data->surface_mutex);
5952 ec->comp_data->surface = surface;
5953 g_mutex_unlock(&ec->comp_data->surface_mutex);
5957 e_comp_wl_util_client_from_surface_resource(struct wl_resource *surface_resource)
5959 return e_compositor_util_client_from_surface_resource(surface_resource);
5963 e_comp_wl_client_surface_pending_buffer_set(E_Client *ec, E_Comp_Wl_Buffer *buffer, int32_t sx, int32_t sy)
5965 if (!ec->comp_data->mapped)
5967 if (ec->comp_data->shell.surface &&
5968 !ec->internal && !e_comp_wl_subsurface_check(ec) && !ec->remote_surface.provider)
5970 ELOGF("COMP", "Current unmapped. ATTACH buffer:%p", ec, buffer);
5976 if (ec->comp_data->mapped)
5978 /* will be unmapped. so run capture */
5979 e_comp_wl_remote_surface_image_save(ec);
5983 _e_comp_wl_surface_state_buffer_set(&ec->comp_data->pending, buffer);
5985 ec->comp_data->pending.sx = sx;
5986 ec->comp_data->pending.sy = sy;
5987 ec->comp_data->pending.new_attach = EINA_TRUE;
5989 e_client_fps_update(ec);
5993 e_comp_wl_client_surface_pending_opaque_region_set(E_Client *ec, Eina_Tiler *region)
5995 if (ec->comp_data->pending.opaque)
5996 eina_tiler_clear(ec->comp_data->pending.opaque);
6000 eina_tiler_union(ec->comp_data->pending.opaque, region);
6002 if (!eina_tiler_empty(ec->comp_data->pending.opaque))
6006 ec->argb = EINA_FALSE;
6007 ELOGF("COMP", "Set argb:%d", ec, ec->argb);
6009 _e_comp_wl_hook_call(E_COMP_WL_HOOK_CLIENT_ALPHA_CHANGE, ec);
6010 e_comp_object_alpha_set(ec->frame, EINA_FALSE);
6018 ec->argb = EINA_TRUE;
6019 ELOGF("COMP", "Set argb:%d", ec, ec->argb);
6021 _e_comp_wl_hook_call(E_COMP_WL_HOOK_CLIENT_ALPHA_CHANGE, ec);
6022 e_comp_object_alpha_set(ec->frame, EINA_TRUE);
6028 e_comp_wl_client_surface_pending_input_region_set(E_Client *ec, Eina_Tiler *region)
6030 if (ec->comp_data->pending.input)
6031 eina_tiler_clear(ec->comp_data->pending.input);
6035 if (eina_tiler_empty(region))
6037 ELOGF("COMP", " |unset input rect", NULL);
6038 e_comp_object_input_objs_del(ec->frame);
6039 e_comp_object_input_area_set(ec->frame, -1, -1, 1, 1);
6042 eina_tiler_union(ec->comp_data->pending.input, region);
6046 eina_tiler_rect_add(ec->comp_data->pending.input,
6047 &(Eina_Rectangle){0, 0, ec->client.w, ec->client.h});
6052 e_comp_wl_client_surface_pending_frame_callback_add(E_Client *ec, struct wl_resource *callback_resource)
6054 ec->comp_data->pending.frames = eina_list_prepend(ec->comp_data->pending.frames, callback_resource);
6058 e_comp_wl_client_surface_frame_callback_remove(E_Client *ec, struct wl_resource *callback_resource)
6060 E_Comp_Wl_Subsurf_Data *sdata;
6065 if (ec->comp_data->frames)
6067 ec->comp_data->frames =
6068 eina_list_remove(ec->comp_data->frames, callback_resource);
6071 if (ec->comp_data->pending.frames)
6073 ec->comp_data->pending.frames =
6074 eina_list_remove(ec->comp_data->pending.frames, callback_resource);
6077 sdata = ec->comp_data->sub.data;
6078 if ((sdata) && (sdata->cached.frames))
6080 sdata->cached.frames =
6081 eina_list_remove(sdata->cached.frames, callback_resource);
6086 e_comp_wl_client_surface_pending_commit(E_Client *ec)
6088 if (e_object_is_del(E_OBJECT(ec))) return;
6090 if (e_comp_wl_remote_surface_commit(ec)) return;
6092 e_comp_wl_surface_commit(ec);
6094 _e_comp_wl_hook_call(E_COMP_WL_HOOK_CLIENT_SURFACE_COMMIT, ec);
6098 _e_comp_wl_client_subsurface_set(E_Client *ec, E_Comp_Wl_Subsurf_Data *sub)
6100 e_comp_wl_client_surface_set(ec, ec->comp_data->wl_surface);
6101 ec->comp_data->sub.data = sub;
6103 /* set subsurface client properties */
6104 ec->borderless = EINA_TRUE;
6105 ec->argb = EINA_TRUE;
6106 ELOGF("SUBSURFACE", "Set argb:%d", ec, ec->argb);
6107 ec->lock_border = EINA_TRUE;
6108 ec->lock_focus_in = ec->lock_focus_out = EINA_TRUE;
6109 ec->netwm.state.skip_taskbar = EINA_TRUE;
6110 ec->netwm.state.skip_pager = EINA_TRUE;
6111 ec->border_size = 0;
6112 ec->lock_user_location = 0;
6113 ec->lock_client_location = 0;
6114 ec->lock_user_size = 0;
6115 ec->lock_client_size = 0;
6116 ec->lock_client_stacking = 0;
6117 ec->lock_user_maximize = 0;
6118 ec->lock_client_maximize = 0;
6119 ec->changes.need_maximize = 0;
6120 ec->maximized = E_MAXIMIZE_NONE;
6123 ec->new_client = ec->netwm.ping = EINA_TRUE;
6124 e_comp->new_clients++;
6125 e_client_unignore(ec);
6127 /* Delete 'below_obj' if it was created before 'E_Client' becomes subsurface.
6128 * It's not for subsurface. */
6129 E_FREE_FUNC(ec->comp_data->sub.below_obj, evas_object_del);
6133 _e_comp_wl_client_subsurface_parent_set(E_Client *ec, E_Client *parent)
6135 E_Comp_Wl_Subsurf_Data *sub = ec->comp_data->sub.data;
6138 ELOGF("COMP", " |subsurface_parent:%p", ec, parent);
6140 sub->parent = parent;
6144 layer = e_client_layer_get(parent);
6145 if (layer > E_LAYER_BOTTOM)
6146 e_client_layer_set(ec, layer);
6149 if (parent->comp_data)
6151 /* append this client to the parents subsurface list */
6152 parent->comp_data->sub.list_pending =
6153 eina_list_append(parent->comp_data->sub.list_pending, ec);
6154 parent->comp_data->sub.list_changed = EINA_TRUE;
6159 e_comp_wl_client_subsurface_parent_unset(E_Client *ec)
6161 E_Comp_Wl_Subsurf_Data *sub = ec->comp_data->sub.data;
6162 E_Client *parent = sub->parent;
6164 parent->comp_data->sub.list =
6165 eina_list_remove(parent->comp_data->sub.list, ec);
6166 parent->comp_data->sub.list_pending =
6167 eina_list_remove(parent->comp_data->sub.list_pending, ec);
6168 parent->comp_data->sub.below_list =
6169 eina_list_remove(parent->comp_data->sub.below_list, ec);
6170 parent->comp_data->sub.below_list_pending =
6171 eina_list_remove(parent->comp_data->sub.below_list_pending, ec);
6177 e_comp_wl_client_subsurface_init(E_Client *ec, struct wl_resource *subsurface_resource, E_Comp_Wl_Subsurf_Data *sub, E_Client *parent, E_Client *offscreen_parent)
6179 sub->resource = subsurface_resource;
6180 sub->cached_buffer_ref.buffer = NULL;
6181 sub->synchronized = EINA_TRUE;
6182 sub->parent = parent;
6183 sub->remote_surface.offscreen_parent = offscreen_parent;
6184 if (offscreen_parent)
6185 ELOGF("SUBSURFACE", " |offscreen_parent:%p", ec, offscreen_parent);
6187 _e_comp_wl_surface_state_init(&sub->cached, ec->w, ec->h);
6189 _e_comp_wl_client_subsurface_set(ec, sub);
6190 _e_comp_wl_client_subsurface_parent_set(ec, parent);
6192 e_comp_wl_hook_call(E_COMP_WL_HOOK_SUBSURFACE_CREATE, ec);
6196 e_comp_wl_client_subsurface_finish(E_Client *ec)
6198 E_Comp_Wl_Subsurf_Data *sub = ec->comp_data->sub.data;
6201 e_comp_wl_client_subsurface_parent_unset(ec);
6203 e_comp_wl_surface_state_finish(&sub->cached);
6204 e_comp_wl_buffer_reference(&sub->cached_buffer_ref, NULL);
6206 ec->comp_data->sub.data = NULL;
6210 e_comp_wl_client_evas_init(E_Client *ec)
6212 EINA_SAFETY_ON_NULL_RETURN(ec);
6214 _e_comp_wl_client_evas_init(ec);
6218 e_comp_wl_client_evas_deinit(E_Client *ec)
6220 EINA_SAFETY_ON_NULL_RETURN(ec);
6222 _e_comp_wl_client_evas_deinit(ec);
6226 e_comp_wl_focus_check(void)
6228 _e_comp_wl_focus_check();
6232 e_comp_wl_client_subsurface_cyclic_reference_check(E_Client *ec, E_Client *parent)
6239 if ((parent->comp_data) && (parent->comp_data->sub.data))
6240 parent = parent->comp_data->sub.data->parent;