e_input: move kbd structure to e_comp_input_intern.h
[platform/upstream/enlightenment.git] / src / bin / e_comp_wl.c
1
2 #include "e_comp_wl_intern.h"
3 #include "e_main_intern.h"
4 #include "e_foreign_intern.h"
5 #include "e_wtz_shell_intern.h"
6 #include "e_client_intern.h"
7 #include "e_appinfo_intern.h"
8 #include "e_blender_intern.h"
9 #include "e_utils_intern.h"
10 #include "e_scale_intern.h"
11 #include "e_comp_canvas_intern.h"
12 #include "e_comp_screen_intern.h"
13 #include "e_comp_wl_capture_intern.h"
14 #include "e_comp_wl_data_intern.h"
15 #include "e_comp_wl_input_intern.h"
16 #include "e_comp_wl_renderer_intern.h"
17 #include "e_comp_wl_rsm_intern.h"
18 #include "e_comp_wl_screenshooter_intern.h"
19 #include "e_comp_wl_shell_intern.h"
20 #include "e_comp_wl_subsurface_intern.h"
21 #include "e_comp_wl_tbm_intern.h"
22 #include "e_comp_wl_viewport_intern.h"
23 #include "e_comp_intern.h"
24 #include "e_input_intern.h"
25 #include "e_keyrouter_intern.h"
26 #include "e_error_intern.h"
27 #include "e_pointer_intern.h"
28 #include "e_presentation_time_intern.h"
29 #include "e_grabinput_intern.h"
30 #include "e_env_intern.h"
31 #include "e_dnd_intern.h"
32 #include "e_policy_visibility_intern.h"
33 #include "e_compositor_intern.h"
34 #include "e_client_video_intern.h"
35 #include "e_comp_wl_video_intern.h"
36 #include "e_comp_object_intern.h"
37 #include "e_desk_intern.h"
38 #include "e_zone_intern.h"
39 #include "e_hints_intern.h"
40 #include "e_comp_input_intern.h"
41 #include "e_blur_intern.h"
42
43 #include <tizen-extension-server-protocol.h>
44 #include <relative-pointer-unstable-v1-server-protocol.h>
45 #include <pointer-constraints-unstable-v1-server-protocol.h>
46
47 #include <wayland-tbm-server.h>
48 #include <glib.h>
49 #include <libds/log.h>
50 #include <libds/single_pixel_buffer_v1.h>
51 #include <Evas_GL.h>
52
53  #include <ctype.h>
54  #include <sys/resource.h>
55
56 /* handle include for printing uint64_t */
57 #define __STDC_FORMAT_MACROS
58 #include <inttypes.h>
59
60 #define E_COM_WL_PREPARE_GAP_LOG_TIME 2000
61
62 /* Resource Data Mapping: (wl_resource_get_user_data)
63  *
64  * wl_surface == e_pixmap
65  * wl_region == eina_tiler
66  * wl_subsurface == e_client
67  *
68  */
69
70 typedef struct _E_Comp_Data E_Comp_Data;
71
72 struct _E_Comp_Data
73 {
74    E_Comp_Wl_Data base;
75    struct wl_listener client_created;
76 };
77
78 static void _e_comp_wl_move_resize_init(void);
79
80 static Eina_Bool _e_comp_wl_cursor_timer_control(Evas_Callback_Type type, E_Client *ec);
81
82 /* local variables */
83 typedef struct _E_Comp_Wl_Key_Data
84 {
85    uint32_t key;
86    Ecore_Device *dev;
87 } E_Comp_Wl_Key_Data;
88
89 struct _E_Comp_Wl_Evas_Gl
90 {
91    Evas_GL *gl;
92    Evas_GL_Config *glcfg;
93    Evas_GL_Context *glctx;
94    Evas_GL_Surface *glsfc;
95    Evas_GL_API *glapi;
96 };
97
98 static Eina_List *handlers = NULL;
99 static E_Client *cursor_timer_ec = NULL;
100 static Eina_Bool need_send_released = EINA_FALSE;
101 static Eina_Bool need_send_motion = EINA_TRUE;
102
103 static GMutex connection_mutex;
104
105 static int _e_comp_wl_hooks_delete = 0;
106 static int _e_comp_wl_hooks_walking = 0;
107
108 static int _e_comp_wl_pid_hooks_delete = 0;
109 static int _e_comp_wl_pid_hooks_walking = 0;
110
111 static int _e_comp_wl_intercept_hooks_delete = 0;
112 static int _e_comp_wl_intercept_hooks_walking = 0;
113
114 static Eina_Inlist *_e_comp_wl_hooks[] =
115 {
116    [E_COMP_WL_HOOK_SHELL_SURFACE_READY] = NULL,
117    [E_COMP_WL_HOOK_SUBSURFACE_CREATE] = NULL,
118    [E_COMP_WL_HOOK_SUBSURFACE_COMMIT_TO_CACHE] = NULL,
119    [E_COMP_WL_HOOK_SUBSURFACE_SYNCHRONIZED_COMMIT] = NULL,
120    [E_COMP_WL_HOOK_BUFFER_CHANGE] = NULL,
121    [E_COMP_WL_HOOK_CLIENT_REUSE] = NULL,
122    [E_COMP_WL_HOOK_BUFFER_SIZE_CHANGE] = NULL,
123    [E_COMP_WL_HOOK_DEL] = NULL,
124    [E_COMP_WL_HOOK_CLIENT_ALPHA_CHANGE] = NULL,
125    [E_COMP_WL_HOOK_CLIENT_SURFACE_COMMIT] = NULL,
126    [E_COMP_WL_HOOK_CLIENT_BEFORE_SURFACE_COMMIT] = NULL,
127 };
128
129 static Eina_Inlist *_e_comp_wl_pid_hooks[] =
130 {
131    [E_COMP_WL_PID_HOOK_CONNECTED_CLIENT_CREATE] = NULL,
132 };
133
134 static Eina_Inlist *_e_comp_wl_intercept_hooks[] =
135 {
136    [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_IN] = NULL,
137    [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_OUT] = NULL,
138    [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_MOVE] = NULL,
139    [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_WHEEL] = NULL,
140    [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_DOWN] = NULL,
141    [E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_UP] = NULL,
142 };
143
144 static Eina_List *hooks = NULL;
145
146 /* local functions */
147 static void
148 _e_comp_wl_hooks_clean(void)
149 {
150    Eina_Inlist *l;
151    E_Comp_Wl_Hook *ch;
152    unsigned int x;
153    for (x = 0; x < E_COMP_WL_HOOK_LAST; x++)
154      EINA_INLIST_FOREACH_SAFE(_e_comp_wl_hooks[x], l, ch)
155        {
156           if (!ch->delete_me) continue;
157           _e_comp_wl_hooks[x] = eina_inlist_remove(_e_comp_wl_hooks[x], EINA_INLIST_GET(ch));
158          free(ch);
159        }
160 }
161
162 static void
163 _e_comp_wl_hook_call(E_Comp_Wl_Hook_Point hookpoint, E_Client *ec)
164 {
165    E_Comp_Wl_Hook *ch;
166
167    e_object_ref(E_OBJECT(ec));
168    _e_comp_wl_hooks_walking++;
169    EINA_INLIST_FOREACH(_e_comp_wl_hooks[hookpoint], ch)
170      {
171         if (ch->delete_me) continue;
172         ch->func(ch->data, ec);
173         if ((hookpoint != E_COMP_WL_HOOK_DEL) &&
174             (e_object_is_del(E_OBJECT(ec))))
175           break;
176      }
177    _e_comp_wl_hooks_walking--;
178    if ((_e_comp_wl_hooks_walking == 0) && (_e_comp_wl_hooks_delete > 0))
179      _e_comp_wl_hooks_clean();
180    e_object_unref(E_OBJECT(ec));
181 }
182
183 static void
184 _e_comp_wl_pid_hooks_clean(void)
185 {
186    Eina_Inlist *l;
187    E_Comp_Wl_Pid_Hook *ch;
188    unsigned int x;
189    for (x = 0; x < E_COMP_WL_PID_HOOK_LAST; x++)
190      EINA_INLIST_FOREACH_SAFE(_e_comp_wl_pid_hooks[x], l, ch)
191        {
192           if (!ch->delete_me) continue;
193           _e_comp_wl_pid_hooks[x] = eina_inlist_remove(_e_comp_wl_pid_hooks[x], EINA_INLIST_GET(ch));
194          free(ch);
195        }
196 }
197
198 static void
199 _e_comp_wl_pid_hook_call(E_Comp_Wl_Pid_Hook_Point hookpoint, pid_t pid)
200 {
201    E_Comp_Wl_Pid_Hook *ch;
202
203    _e_comp_wl_pid_hooks_walking++;
204    EINA_INLIST_FOREACH(_e_comp_wl_pid_hooks[hookpoint], ch)
205      {
206         if (ch->delete_me) continue;
207         ch->func(ch->data, pid);
208      }
209    _e_comp_wl_pid_hooks_walking--;
210    if ((_e_comp_wl_pid_hooks_walking == 0) && (_e_comp_wl_pid_hooks_delete > 0))
211      _e_comp_wl_pid_hooks_clean();
212 }
213
214 static void
215 _e_comp_wl_intercept_hooks_clean(void)
216 {
217    Eina_Inlist *l;
218    E_Comp_Wl_Intercept_Hook *ch;
219    unsigned int x;
220    for (x = 0; x < E_COMP_WL_INTERCEPT_HOOK_LAST; x++)
221      EINA_INLIST_FOREACH_SAFE(_e_comp_wl_intercept_hooks[x], l, ch)
222        {
223           if (!ch->delete_me) continue;
224           _e_comp_wl_intercept_hooks[x] = eina_inlist_remove(_e_comp_wl_intercept_hooks[x], EINA_INLIST_GET(ch));
225          free(ch);
226        }
227 }
228
229 static Eina_Bool
230 _e_comp_wl_intercept_hook_call(E_Comp_Wl_Intercept_Hook_Point hookpoint, E_Client *ec)
231 {
232    E_Comp_Wl_Intercept_Hook *ch;
233    Eina_Bool res = EINA_TRUE, ret = EINA_TRUE;
234
235    e_object_ref(E_OBJECT(ec));
236    _e_comp_wl_intercept_hooks_walking++;
237    EINA_INLIST_FOREACH(_e_comp_wl_intercept_hooks[hookpoint], ch)
238      {
239         if (ch->delete_me) continue;
240         res = ch->func(ch->data, ec);
241         if (!res) ret = EINA_FALSE;
242         if (e_object_is_del(E_OBJECT(ec)))
243           break;
244      }
245    _e_comp_wl_intercept_hooks_walking--;
246    if ((_e_comp_wl_intercept_hooks_walking == 0) && (_e_comp_wl_intercept_hooks_delete > 0))
247      _e_comp_wl_intercept_hooks_clean();
248    e_object_unref(E_OBJECT(ec));
249
250    return ret;
251 }
252
253
254 static void
255 _e_comp_wl_configure_send(E_Client *ec, Eina_Bool edges, Eina_Bool send_size)
256 {
257    int w, h;
258
259    if (send_size)
260      {
261         if (e_comp_object_frame_exists(ec->frame))
262           w = ec->client.w, h = ec->client.h;
263         else
264           w = ec->w, h = ec->h;
265      }
266    else
267      {
268         // Width and Height are -1 means that we don't consider size value
269         w = h = -1;
270      }
271
272    e_client_shell_configure_send(ec, edges * e_comp_wl->resize.edges, w, h);
273 }
274
275 static void
276 _e_comp_wl_focus_check(void)
277 {
278    E_Client *ec;
279
280    if (stopping) return;
281    ec = e_client_focused_get();
282    if (!ec)
283      e_grabinput_focus(e_comp->ee_win, E_FOCUS_METHOD_PASSIVE);
284 }
285
286 static Eina_Bool
287 _e_comp_wl_cb_read(void *data EINA_UNUSED, Ecore_Fd_Handler *hdlr EINA_UNUSED)
288 {
289    /* dispatch pending wayland events */
290    wl_event_loop_dispatch(e_comp_wl->wl.loop, 0);
291
292    return ECORE_CALLBACK_RENEW;
293 }
294
295 void
296 e_comp_wl_display_flush()
297 {
298    if (e_comp_wl && e_comp_wl->wl.disp)
299      {
300         if (e_config->key_input_ttrace_enable)
301           {
302              TRACE_INPUT_BEGIN(wl_display_flush_clients);
303              ELOGF("INPUT", "wl_display_flush_clients|B|", NULL);
304           }
305
306         g_mutex_lock(&connection_mutex);
307         wl_display_flush_clients(e_comp_wl->wl.disp);
308         g_mutex_unlock(&connection_mutex);
309
310         if (e_config->key_input_ttrace_enable)
311           {
312              TRACE_INPUT_END();
313              ELOGF("INPUT", "wl_display_flush_clients|E|", NULL);
314           }
315      }
316 }
317
318 EINTERN void
319 e_comp_wl_connection_lock()
320 {
321    e_input_boost_lock(&connection_mutex);
322 }
323
324 EINTERN void
325 e_comp_wl_connection_unlock()
326 {
327    e_input_boost_unlock(&connection_mutex);
328 }
329
330 void
331 e_comp_wl_focused_client_flush()
332 {
333    E_Client *focused_ec;
334    if (!(e_comp_wl && e_comp_wl->wl.disp)) return;
335
336    e_input_boost_lock(&connection_mutex);
337    focused_ec = e_client_focused_get();
338
339    if (focused_ec)
340      {
341         struct wl_client *wc;
342         struct wl_resource *surface = e_comp_wl_client_surface_get(focused_ec);
343         if (!surface)
344           {
345             e_input_boost_unlock(&connection_mutex);
346             return;
347           }
348
349         wc = wl_resource_get_client(surface);
350         wl_client_flush(wc);
351      }
352
353    e_input_boost_unlock(&connection_mutex);
354 }
355
356 static void
357 _e_comp_wl_cb_prepare(void *data EINA_UNUSED, Ecore_Fd_Handler *hdlr EINA_UNUSED)
358 {
359    double gap_time;
360
361    if (e_comp_wl->idle_exiter_timestamp > 0.0)
362      {
363         gap_time = (ecore_time_get() * 1000) - e_comp_wl->idle_exiter_timestamp;
364         if (gap_time > E_COM_WL_PREPARE_GAP_LOG_TIME)
365           {
366              ELOGF("E_COMP", "prepare gap time: %lfms",
367                    NULL, gap_time);
368           }
369      }
370
371    e_comp_wl->idle_exiter_timestamp = 0.0;
372
373    wl_event_loop_dispatch_idle(e_comp_wl->wl.loop);
374
375    /* flush pending client events */
376    e_comp_wl_display_flush();
377
378    TRACE_DS_ASYNC_END((intptr_t)&e_comp_wl->idle_exiter_timestamp,
379                       IDLE_EXITER~CB_PREPARE);
380
381    // _e_comp_wl_cb_prepare() function is called before idle state in ecore_main_loop.
382    // idle state means that epoll() or select() is called in ecore_main_loop.
383    e_main_hook_call(E_MAIN_HOOK_LOOP_BEFORE_IDLE_ENTER);
384 }
385
386 static void
387 _e_comp_wl_cb_awake(void *data)
388 {
389    e_comp_wl->idle_exiter_timestamp = ecore_time_get() * 1000;
390
391    TRACE_DS_ASYNC_BEGIN((intptr_t)&e_comp_wl->idle_exiter_timestamp,
392                         IDLE_EXITER~CB_PREPARE);
393
394    // _e_comp_wl_cb_awake() function is called after idle state in ecore_main_loop.
395    // ecore_main_loop awake due to returning from epoll() or select()
396    e_main_hook_call(E_MAIN_HOOK_LOOP_AFTER_IDLE_EXIT);
397 }
398
399 E_API enum wl_output_transform
400 e_comp_wl_output_buffer_transform_get(E_Client *ec)
401 {
402    E_Comp_Wl_Buffer_Viewport *vp;
403    E_Comp_Wl_Buffer *buffer;
404    enum wl_output_transform transform, rotation;
405
406    if (!ec) return WL_OUTPUT_TRANSFORM_NORMAL;
407    if (e_object_is_del(E_OBJECT(ec))) return WL_OUTPUT_TRANSFORM_NORMAL;
408    if (!ec->comp_data) return WL_OUTPUT_TRANSFORM_NORMAL;
409
410    vp = &ec->comp_data->scaler.buffer_viewport;
411    if (e_comp_wl_subsurface_check(ec))
412      return vp->buffer.transform;
413
414    buffer = ec->comp_data->buffer_ref.buffer;
415
416    if (!buffer ||
417        (buffer->type != E_COMP_WL_BUFFER_TYPE_NATIVE && buffer->type != E_COMP_WL_BUFFER_TYPE_TBM))
418      return vp->buffer.transform;
419
420    rotation = buffer->transform;
421    if (rotation == 0)
422      return vp->buffer.transform;
423
424    /* ignore the flip value when calculating transform because the screen rotation
425     * functionality doesn't consider the flip output transform currently
426     */
427    transform = (4 + (vp->buffer.transform & 0x3) - rotation) & 0x3;
428
429    DBG("ec(%p) window rotation(%d) buffer_transform(%d) : transform(%d)",
430        ec, rotation, vp->buffer.transform, transform);
431
432    return transform;
433 }
434
435 EINTERN enum wl_output_transform
436 e_comp_wl_output_pending_buffer_transform_get(E_Client *ec)
437 {
438    E_Comp_Wl_Buffer_Viewport *vp;
439    E_Comp_Wl_Buffer *buffer;
440    enum wl_output_transform transform, rotation;
441
442    if (!ec) return WL_OUTPUT_TRANSFORM_NORMAL;
443    if (e_object_is_del(E_OBJECT(ec))) return WL_OUTPUT_TRANSFORM_NORMAL;
444    if (!ec->comp_data) return WL_OUTPUT_TRANSFORM_NORMAL;
445
446    vp = &ec->comp_data->pending.buffer_viewport;
447    if (e_comp_wl_subsurface_check(ec))
448      return vp->buffer.transform;
449
450    buffer = ec->comp_data->pending.buffer;
451
452    if (!buffer ||
453        (buffer->type != E_COMP_WL_BUFFER_TYPE_NATIVE && buffer->type != E_COMP_WL_BUFFER_TYPE_TBM))
454      return vp->buffer.transform;
455
456    rotation = buffer->transform;
457    if (rotation == 0)
458      return vp->buffer.transform;
459
460    /* ignore the flip value when calculating transform because the screen rotation
461     * functionality doesn't consider the flip output transform currently
462     */
463    transform = (4 + (vp->buffer.transform & 0x3) - rotation) & 0x3;
464
465    DBG("ec(%p) window rotation(%d) buffer_transform(%d) : transform(%d)",
466        ec, rotation, vp->buffer.transform, transform);
467
468    return transform;
469 }
470
471 E_API void
472 e_comp_wl_map_size_cal_from_buffer(E_Client *ec)
473 {
474    E_Comp_Wl_Buffer_Viewport *vp = &ec->comp_data->scaler.buffer_viewport;
475    E_Comp_Wl_Buffer *buffer;
476    int32_t width, height;
477
478    buffer = e_pixmap_resource_get(ec->pixmap);
479    if (!buffer)
480      {
481         ec->comp_data->width_from_buffer = 0;
482         ec->comp_data->height_from_buffer = 0;
483         return;
484      }
485
486    switch (e_comp_wl_output_buffer_transform_get(ec))
487      {
488       case WL_OUTPUT_TRANSFORM_90:
489       case WL_OUTPUT_TRANSFORM_270:
490       case WL_OUTPUT_TRANSFORM_FLIPPED_90:
491       case WL_OUTPUT_TRANSFORM_FLIPPED_270:
492         width = buffer->h / vp->buffer.scale;
493         height = buffer->w / vp->buffer.scale;
494         break;
495       default:
496         width = buffer->w / vp->buffer.scale;
497         height = buffer->h / vp->buffer.scale;
498         break;
499      }
500
501    ec->comp_data->width_from_buffer = width;
502    ec->comp_data->height_from_buffer = height;
503 }
504
505 E_API void
506 e_comp_wl_map_size_cal_from_viewport(E_Client *ec)
507 {
508    E_Comp_Wl_Buffer_Viewport *vp = &ec->comp_data->scaler.buffer_viewport;
509    int32_t width, height;
510
511    width = ec->comp_data->width_from_buffer;
512    height = ec->comp_data->height_from_buffer;
513
514    if (width == 0 && height == 0) return;
515
516    if (width != 0 && vp->surface.width != -1)
517      {
518         ec->comp_data->width_from_viewport = vp->surface.width;
519         ec->comp_data->height_from_viewport = vp->surface.height;
520         return;
521      }
522
523    if (width != 0 && vp->buffer.src_width != wl_fixed_from_int(-1))
524      {
525         int32_t w = wl_fixed_to_int(wl_fixed_from_int(1) - 1 + vp->buffer.src_width);
526         int32_t h = wl_fixed_to_int(wl_fixed_from_int(1) - 1 + vp->buffer.src_height);
527         ec->comp_data->width_from_viewport = w ?: 1;
528         ec->comp_data->height_from_viewport = h ?: 1;
529         return;
530      }
531
532    ec->comp_data->width_from_viewport = width;
533    ec->comp_data->height_from_viewport = height;
534 }
535
536 E_API E_Client*
537 e_comp_wl_topmost_parent_get(E_Client *ec)
538 {
539    E_Client *parent;
540
541    if (!e_comp_wl_subsurface_check(ec))
542      return ec;
543
544    parent = e_comp_wl_subsurface_parent_get(ec);
545    while (parent)
546      {
547         if (!e_comp_wl_subsurface_check(parent))
548           return parent;
549
550         parent = e_comp_wl_subsurface_parent_get(parent);
551      }
552
553    return ec;
554 }
555
556 E_API void
557 e_comp_wl_map_apply(E_Client *ec)
558 {
559    E_Comp_Wl_Buffer_Viewport *vp;
560    E_Comp_Wl_Subsurf_Data *sdata;
561    E_Comp_Wl_Client_Data *cdata;
562    int x1, y1, x2, y2, x, y;
563    int dx = 0, dy = 0;
564    Eina_Bool zoom_animating = EINA_FALSE;
565
566    if (!ec || !ec->comp_data || e_object_is_del(E_OBJECT(ec))) return;
567
568    e_comp_object_map_update(ec->frame);
569
570    cdata = ec->comp_data;
571    vp = &cdata->scaler.buffer_viewport;
572    if ((vp->buffer.src_width == wl_fixed_from_int(-1)) &&
573        (!cdata->viewport_transform))
574      return;
575
576    if (e_comp_wl_subsurface_check(ec))
577      {
578         e_comp_wl_subsurface_global_coord_get(ec, &dx, &dy);
579
580         sdata = ec->comp_data->sub.data;
581         if (sdata->remote_surface.offscreen_parent)
582           {
583              E_Client *offscreen_parent = sdata->remote_surface.offscreen_parent;
584              Eina_Rectangle *rect;
585              Eina_List *l;
586
587              EINA_LIST_FOREACH(offscreen_parent->comp_data->remote_surface.regions, l, rect)
588                {
589                   /* TODO: If there are one more regions, it means that provider's offscreen
590                    * is displayed by one more remote_surfaces. Have to consider it later. At
591                    * this time, just consider only one remote_surface.
592                    */
593                   dx += rect->x;
594                   dy += rect->y;
595                   break;
596                }
597           }
598      }
599    else
600      {
601         dx = ec->x;
602         dy = ec->y;
603      }
604
605    evas_object_geometry_get(ec->frame, &x, &y, NULL, NULL);
606    if (x != dx || y != dy)
607      evas_object_move(ec->frame, dx, dy);
608
609    if (!cdata->viewport_transform)
610      {
611         cdata->viewport_transform = e_util_transform_new();
612         e_util_transform_role_set(cdata->viewport_transform, "viewport_transform");
613         e_client_transform_core_add(ec, cdata->viewport_transform);
614      }
615
616    e_util_transform_viewport_set(cdata->viewport_transform, dx, dy,
617                                  ec->comp_data->width_from_viewport,
618                                  ec->comp_data->height_from_viewport);
619
620    if (vp->buffer.src_width == wl_fixed_from_int(-1))
621      {
622         x1 = 0;
623         y1 = 0;
624         x2 = cdata->width_from_buffer;
625         y2 = cdata->height_from_buffer;
626      }
627    else
628      {
629         x1 = wl_fixed_to_int(vp->buffer.src_x);
630         y1 = wl_fixed_to_int(vp->buffer.src_y);
631         x2 = wl_fixed_to_int(vp->buffer.src_x + vp->buffer.src_width);
632         y2 = wl_fixed_to_int(vp->buffer.src_y + vp->buffer.src_height);
633      }
634
635    e_util_transform_texcoord_set(cdata->viewport_transform, 0, x1, y1);
636    e_util_transform_texcoord_set(cdata->viewport_transform, 1, x2, y1);
637    e_util_transform_texcoord_set(cdata->viewport_transform, 2, x2, y2);
638    e_util_transform_texcoord_set(cdata->viewport_transform, 3, x1, y2);
639
640    E_Desk *desk;
641    desk = e_comp_desk_find_by_ec(ec);
642    if (desk)
643      zoom_animating = e_desk_zoom_is_animating(desk);
644
645    ELOGF("TRANSFORM", "viewport map: point(%d,%d %dx%d) uv(%d,%d %d,%d %d,%d %d,%d), zoom_animating: %d",
646          ec, ec->x, ec->y, ec->comp_data->width_from_viewport,
647          ec->comp_data->height_from_viewport, x1, y1, x2, y1, x2, y2, x1, y2, zoom_animating);
648
649    /* workaround:: when the desk zoom is doing their animation,
650       the transform core update can override animation's zoom boundary.
651       so, don't doing transform core update while desk zoom animation */
652    if (!zoom_animating)
653      e_client_transform_core_update(ec);
654
655 }
656
657 EINTERN void
658 e_comp_wl_map_inv_coord_get(E_Client *ec, int x, int y, int *mx, int *my)
659 {
660    E_Map *map;
661    E_Map *map2;
662    int map_c = 0, map_x = 0, map_y = 0;
663    double inv_x = 0.0, inv_y = 0.0;
664
665    EINA_SAFETY_ON_NULL_RETURN(ec);
666
667    map = e_client_map_get(ec);
668    map_c = e_map_count_get(map);
669
670    if (!map || map_c <= 0)
671      {
672         *mx = x;
673         *my = y;
674         e_map_free(map);
675         return;
676      }
677
678    map2 = e_map_new();
679
680    e_map_point_coord_set(map2, 0, ec->x, ec->y, 0);
681    e_map_point_coord_set(map2, 1, ec->x + ec->w, ec->y, 0);
682    e_map_point_coord_set(map2, 2, ec->x + ec->w, ec->y + ec->h, 0);
683    e_map_point_coord_set(map2, 3, ec->x, ec->y + ec->h, 0);
684
685    for (int i = 0; i < map_c; i++)
686      {
687         e_map_point_coord_get(map, i, &map_x, &map_y, NULL);
688         e_map_point_image_uv_set(map2, i, map_x, map_y);
689      }
690    e_map_coords_get(map2, (double)x, (double)y, &inv_x, &inv_y, 0);
691
692    *mx = lround(inv_x);
693    *my = lround(inv_y);
694
695    e_map_free(map);
696    e_map_free(map2);
697 }
698
699 static void
700 _e_comp_wl_evas_cb_show(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
701 {
702    E_Client *ec, *tmp;
703    Eina_List *l;
704    E_Client *topmost;
705
706    if (!(ec = data)) return;
707    if (e_object_is_del(data)) return;
708
709    if (!ec->override) e_hints_window_visible_set(ec);
710
711    if ((!ec->override) && (!ec->re_manage) && (!ec->comp_data->reparented) &&
712        (!ec->comp_data->need_reparent))
713      {
714         ec->comp_data->need_reparent = EINA_TRUE;
715         ec->visible = EINA_TRUE;
716      }
717    if (!e_client_util_ignored_get(ec))
718      {
719         ec->take_focus = !starting;
720         EC_CHANGED(ec);
721      }
722
723    if (!ec->comp_data->need_reparent)
724      {
725         if ((ec->hidden) || (ec->iconic))
726           {
727              evas_object_hide(ec->frame);
728 //             e_comp_object_damage(ec->frame, 0, 0, ec->w, ec->h);
729           }
730         else
731           evas_object_show(ec->frame);
732      }
733
734    EINA_LIST_FOREACH(ec->e.state.video_child, l, tmp)
735      evas_object_show(tmp->frame);
736
737    topmost = e_comp_wl_topmost_parent_get(ec);
738    if (topmost == ec && (ec->comp_data->sub.list || ec->comp_data->sub.below_list))
739      e_comp_wl_subsurface_show(ec);
740
741    if (ec->comp_data->sub.below_obj)
742      evas_object_show(ec->comp_data->sub.below_obj);
743 }
744
745 static void
746 _e_comp_wl_evas_cb_hide(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
747 {
748    E_Client *ec, *tmp;
749    Eina_List *l;
750    E_Client *topmost;
751
752    if (!(ec = data)) return;
753    if (e_object_is_del(E_OBJECT(ec))) return;
754
755    /* Uncommonly some clients's final buffer can be skipped if the client
756     * requests unmap of its surface right after wl_surface@commit.
757     * So if this client evas object is hidden state and client is already
758     * unmmapped, we can consider to clear pixmap image here mandatorily.
759     */
760    if (!ec->comp_data->mapped)
761      e_pixmap_image_clear(ec->pixmap, 1);
762
763    EINA_LIST_FOREACH(ec->e.state.video_child, l, tmp)
764      evas_object_hide(tmp->frame);
765
766    topmost = e_comp_wl_topmost_parent_get(ec);
767    if (topmost == ec && (ec->comp_data->sub.list || ec->comp_data->sub.below_list))
768      e_comp_wl_subsurface_hide(ec);
769
770    if (ec->comp_data->sub.below_obj)
771      evas_object_hide(ec->comp_data->sub.below_obj);
772
773    wl_signal_emit(&e_comp_wl->ptr_constraints.surface_unmap_signal, ec);
774 }
775
776 static void
777 _e_comp_wl_evas_cb_move(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
778 {
779    E_Client *ec;
780    E_Client *subc;
781    Eina_List *l;
782    int x = 0 , y = 0;
783
784    if (!(ec = data)) return;
785    if (e_object_is_del(E_OBJECT(ec))) return;
786
787    EINA_LIST_FOREACH(ec->comp_data->sub.list, l, subc)
788      {
789         if (!e_comp_wl_subsurface_check(subc)) continue;
790         e_comp_wl_subsurface_global_coord_get(subc, &x, &y);
791         evas_object_move(subc->frame, x, y);
792
793         if (subc->comp_data->scaler.viewport)
794           {
795              E_Comp_Wl_Client_Data *cdata = subc->comp_data;
796              if (cdata->viewport_transform)
797                e_comp_wl_map_apply(subc);
798           }
799      }
800
801    EINA_LIST_FOREACH(ec->comp_data->sub.below_list, l, subc)
802      {
803         if (!e_comp_wl_subsurface_check(subc)) continue;
804         e_comp_wl_subsurface_global_coord_get(subc, &x, &y);
805         evas_object_move(subc->frame, x, y);
806
807         if (subc->comp_data->scaler.viewport)
808           {
809              E_Comp_Wl_Client_Data *cdata = subc->comp_data;
810              if (cdata->viewport_transform)
811                e_comp_wl_map_apply(subc);
812           }
813      }
814
815    if (ec->comp_data->sub.below_obj)
816      {
817         evas_object_move(ec->comp_data->sub.below_obj, ec->x, ec->y);
818         e_comp_wl_subsurface_bg_rectangle_map_apply(ec);
819      }
820 }
821
822 static void
823 _e_comp_wl_send_touch_cancel(E_Client *ec)
824 {
825    Eina_List *l;
826    struct wl_resource *res;
827    struct wl_client *wc;
828    E_Comp_Config *comp_conf = NULL;
829
830    if (!ec) return;
831    if (e_object_is_del(E_OBJECT(ec))) return;
832    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
833
834    if (!surface) return;
835    if ((ec->ignored) && (!ec->remote_surface.provider)) return;
836
837    wc = wl_resource_get_client(surface);
838
839    comp_conf = e_comp_config_get();
840
841    EINA_LIST_FOREACH(e_comp->wl_comp_data->touch.resources, l, res)
842      {
843         if (wl_resource_get_client(res) != wc) continue;
844         if (!e_comp_wl_input_touch_check(res)) continue;
845
846         if (comp_conf && comp_conf->input_log_enable)
847            ELOGF("Touch", "Cancel name:%20s", ec, e_client_util_name_get(ec));
848
849         wl_touch_send_cancel(res);
850      }
851 }
852
853 static void
854 _e_comp_wl_touch_cancel(void)
855 {
856    E_Client *ec;
857
858    ec = e_comp_wl->ptr.ec ? e_comp_wl->ptr.ec : e_comp_wl->touch.faked_ec;
859    if (!ec) return;
860    if (!e_comp_wl->touch.pressed) return;
861
862    _e_comp_wl_send_touch_cancel(ec);
863 }
864
865 static E_Devicemgr_Input_Device *
866 _e_comp_wl_device_last_device_get(Ecore_Device_Class dev_class)
867 {
868    E_Devicemgr_Input_Device *last_kbd = NULL;
869    switch (dev_class)
870      {
871       case ECORE_DEVICE_CLASS_MOUSE:
872          return e_devicemgr->last_device_ptr;
873       case ECORE_DEVICE_CLASS_KEYBOARD:
874          last_kbd = atomic_load(&e_devicemgr->last_device_kbd);
875          return last_kbd;
876       case ECORE_DEVICE_CLASS_TOUCH:
877          return e_devicemgr->last_device_touch;
878       default:
879          return NULL;;
880      }
881    return NULL;
882 }
883
884 static void
885 _e_comp_wl_device_last_device_set(Ecore_Device_Class dev_class, E_Devicemgr_Input_Device *device)
886 {
887    switch (dev_class)
888      {
889       case ECORE_DEVICE_CLASS_MOUSE:
890          e_devicemgr->last_device_ptr = device;
891          break;
892       case ECORE_DEVICE_CLASS_KEYBOARD:
893          atomic_store(&e_devicemgr->last_device_kbd, device);
894          break;
895       case ECORE_DEVICE_CLASS_TOUCH:
896          e_devicemgr->last_device_touch = device;
897          break;
898       default:
899          break;
900      }
901 }
902
903 static E_Devicemgr_Input_Device *
904 _e_comp_wl_device_client_last_device_get(E_Client *ec, Ecore_Device_Class dev_class)
905 {
906    E_Devicemgr_Input_Device *last_kbd = NULL;
907
908    switch (dev_class)
909      {
910       case ECORE_DEVICE_CLASS_MOUSE:
911          return ec->comp_data->last_device_ptr;
912       case ECORE_DEVICE_CLASS_KEYBOARD:
913          last_kbd = atomic_load(&ec->comp_data->last_device_kbd);
914          return last_kbd;
915       case ECORE_DEVICE_CLASS_TOUCH:
916          return ec->comp_data->last_device_touch;
917       default:
918          return NULL;;
919      }
920    return NULL;
921 }
922
923 static void
924 _e_comp_wl_device_client_last_device_set(E_Client *ec, Ecore_Device_Class dev_class, E_Devicemgr_Input_Device *device)
925 {
926    switch (dev_class)
927      {
928       case ECORE_DEVICE_CLASS_MOUSE:
929          ec->comp_data->last_device_ptr = device;
930          break;
931       case ECORE_DEVICE_CLASS_KEYBOARD:
932          atomic_store(&ec->comp_data->last_device_kbd, device);
933          break;
934       case ECORE_DEVICE_CLASS_TOUCH:
935          ec->comp_data->last_device_touch = device;
936          break;
937       default:
938          break;
939      }
940 }
941
942 static void
943 _e_comp_wl_device_send_event_device(E_Client *ec, Evas_Device *dev, uint32_t timestamp)
944 {
945    E_Devicemgr_Input_Device *last_device, *ec_last_device, *input_dev;
946    struct wl_resource *dev_res;
947    const char *dev_name;
948    Ecore_Device_Class dev_class;
949    struct wl_client *wc;
950    uint32_t serial;
951    Eina_List *l, *ll;
952
953    EINA_SAFETY_ON_NULL_RETURN(dev);
954
955    if (!ec) return;
956    if (ec->cur_mouse_action || e_comp_wl->drag)
957      return;
958    if (e_object_is_del(E_OBJECT(ec))) return;
959    if ((ec->ignored) && (!ec->remote_surface.provider)) return;
960    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
961    if (!surface) return;
962
963    dev_class = (Ecore_Device_Class)evas_device_class_get(dev);
964    dev_name = evas_device_description_get(dev);
965    last_device = _e_comp_wl_device_last_device_get(dev_class);
966    ec_last_device = _e_comp_wl_device_client_last_device_get(ec, dev_class);
967
968    serial = wl_display_next_serial(e_comp_wl->wl.disp);
969    wc = wl_resource_get_client(surface);
970    g_rec_mutex_lock(&e_devicemgr->device_list_mutex);
971    EINA_LIST_FOREACH(e_devicemgr->device_list, l, input_dev)
972      {
973         if (!eina_streq(input_dev->identifier, dev_name) || (input_dev->clas != dev_class)) continue;
974         if ((!last_device) || (last_device != input_dev) || (!ec_last_device) || (ec_last_device != input_dev))
975           {
976              _e_comp_wl_device_last_device_set(dev_class, input_dev);
977              _e_comp_wl_device_client_last_device_set(ec, dev_class, input_dev);
978
979              EINA_LIST_FOREACH(input_dev->resources, ll, dev_res)
980                {
981                   if (wl_resource_get_client(dev_res) != wc) continue;
982                   tizen_input_device_send_event_device(dev_res, serial, input_dev->identifier, timestamp);
983                }
984           }
985      }
986    g_rec_mutex_unlock(&e_devicemgr->device_list_mutex);
987 }
988
989 static void
990 _e_comp_wl_device_send_last_event_device(E_Client *ec, Ecore_Device_Class dev_class, uint32_t timestamp)
991 {
992    E_Devicemgr_Input_Device *last_device;
993    struct wl_resource *dev_res;
994    struct wl_client *wc;
995    uint32_t serial;
996    Eina_List *l;
997
998    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
999    if (!surface) return;
1000
1001    last_device = _e_comp_wl_device_last_device_get(dev_class);
1002    if (!last_device) return;
1003
1004    _e_comp_wl_device_client_last_device_set(ec, dev_class, last_device);
1005
1006    serial = wl_display_next_serial(e_comp_wl->wl.disp);
1007    wc = wl_resource_get_client(surface);
1008    EINA_LIST_FOREACH(last_device->resources, l, dev_res)
1009      {
1010         if (wl_resource_get_client(dev_res) != wc) continue;
1011         tizen_input_device_send_event_device(dev_res, serial, last_device->identifier, timestamp);
1012      }
1013 }
1014
1015 static void
1016 _e_comp_wl_send_event_device(struct wl_client *wc, uint32_t timestamp, Ecore_Device *dev, uint32_t serial)
1017 {
1018    E_Devicemgr_Input_Device *input_dev;
1019    struct wl_resource *dev_res;
1020    const char *dev_name;
1021    Eina_List *l, *ll;
1022
1023    EINA_SAFETY_ON_NULL_RETURN(dev);
1024
1025    dev_name = ecore_device_identifier_get(dev);
1026
1027    g_rec_mutex_lock(&e_devicemgr->device_list_mutex);
1028    EINA_LIST_FOREACH(e_devicemgr->device_list, l, input_dev)
1029      {
1030         if (!eina_streq(input_dev->identifier, dev_name) ||
1031             (input_dev->clas != ecore_device_class_get(dev))) continue;
1032         _e_comp_wl_device_last_device_set(ecore_device_class_get(dev), input_dev);
1033
1034         EINA_LIST_FOREACH(input_dev->resources, ll, dev_res)
1035           {
1036              if (wl_resource_get_client(dev_res) != wc) continue;
1037              tizen_input_device_send_event_device(dev_res, serial, input_dev->identifier, timestamp);
1038           }
1039      }
1040    g_rec_mutex_unlock(&e_devicemgr->device_list_mutex);
1041 }
1042
1043 static void
1044 _e_comp_wl_send_event_e_device(struct wl_client *wc, uint32_t timestamp, E_Device *dev, uint32_t serial)
1045 {
1046    E_Devicemgr_Input_Device *input_dev;
1047    struct wl_resource *dev_res;
1048    const char *dev_name;
1049    Eina_List *l, *ll;
1050
1051    EINA_SAFETY_ON_NULL_RETURN(dev);
1052
1053    dev_name = e_device_identifier_get(dev);
1054
1055    g_rec_mutex_lock(&e_devicemgr->device_list_mutex);
1056    EINA_LIST_FOREACH(e_devicemgr->device_list, l, input_dev)
1057      {
1058         if (!eina_streq(input_dev->identifier, dev_name) ||
1059             (input_dev->clas != e_device_class_get(dev))) continue;
1060         _e_comp_wl_device_last_device_set(e_device_class_get(dev), input_dev);
1061
1062         EINA_LIST_FOREACH(input_dev->resources, ll, dev_res)
1063           {
1064              if (wl_resource_get_client(dev_res) != wc) continue;
1065              tizen_input_device_send_event_device(dev_res, serial, input_dev->identifier, timestamp);
1066           }
1067      }
1068    g_rec_mutex_unlock(&e_devicemgr->device_list_mutex);
1069 }
1070
1071 static void
1072 _e_comp_wl_cursor_reload(E_Client *ec)
1073 {
1074    struct wl_resource *res;
1075    struct wl_client *wc;
1076    Eina_List *l;
1077    E_Map *map;
1078    uint32_t serial;
1079    int cx, cy, px, py;
1080
1081    if (e_comp->pointer && e_comp->pointer->o_ptr &&
1082        !evas_object_visible_get(e_comp->pointer->o_ptr))
1083      e_pointer_object_set(e_comp->pointer, NULL, 0, 0);
1084
1085    if (!ec) return;
1086    if (e_object_is_del(E_OBJECT(ec))) return;
1087    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1088    if (!surface) return;
1089    if (ec->pointer_enter_sent) return;
1090
1091    px = wl_fixed_to_int(e_comp_wl->ptr.x);
1092    py = wl_fixed_to_int(e_comp_wl->ptr.y);
1093
1094    if (e_client_transform_core_enable_get(ec))
1095      {
1096         double dx = 0.0, dy = 0.0;
1097         map = e_client_map_get(ec);
1098         e_map_coords_get(map, (double)px, (double)py, &dx, &dy, 0);
1099         px = (int)dx;
1100         py = (int)dy;
1101         e_map_free(map);
1102      }
1103
1104    cx = px - ec->client.x;
1105    cy = py - ec->client.y;
1106
1107    wc = wl_resource_get_client(surface);
1108    serial = wl_display_next_serial(e_comp_wl->wl.disp);
1109    EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
1110      {
1111         if (!e_comp_wl_input_pointer_check(res)) continue;
1112         if (wl_resource_get_client(res) != wc) continue;
1113         wl_pointer_send_enter(res, serial, surface,
1114                               wl_fixed_from_int(cx), wl_fixed_from_int(cy));
1115         ec->pointer_enter_sent = EINA_TRUE;
1116      }
1117    wl_signal_emit(&e_comp_wl->ptr_constraints.surface_mousein_signal, ec);
1118 }
1119
1120 static Eina_Bool
1121 _e_comp_wl_cursor_timer(void *data)
1122 {
1123    E_Client *ec = data;
1124
1125    ELOGF("Mouse", "Cursor hide timer expired after %d sec.", ec, e_config->cursor_timer_interval);
1126    if (e_comp_wl->relative_ptr.activated) return ECORE_CALLBACK_CANCEL;
1127
1128    e_comp_wl_cursor_hide(ec);
1129
1130    return ECORE_CALLBACK_CANCEL;
1131 }
1132
1133 static void
1134 _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)
1135 {
1136    E_Devicemgr_Input_Device *input_dev;
1137    struct wl_resource *dev_res;
1138    struct wl_client *wc;
1139    Eina_List *l, *ll;
1140    wl_fixed_t f_value;
1141
1142    if (!ec) return;
1143    if (ec->cur_mouse_action) return;
1144    if (e_object_is_del(E_OBJECT(ec))) return;
1145    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1146    if (!surface) return;
1147
1148    f_value = wl_fixed_from_double(value);
1149    wc = wl_resource_get_client(surface);
1150
1151    g_rec_mutex_lock(&e_devicemgr->device_list_mutex);
1152    EINA_LIST_FOREACH(e_devicemgr->device_list, l, input_dev)
1153      {
1154         if ((strcmp(input_dev->identifier, dev_name)) || (input_dev->clas != (Ecore_Device_Class)dev_class)) continue;
1155         EINA_LIST_FOREACH(input_dev->resources, ll, dev_res)
1156           {
1157              if (wl_resource_get_client(dev_res) != wc) continue;
1158              tizen_input_device_send_axis(dev_res, axis_type, f_value);
1159           }
1160      }
1161    g_rec_mutex_unlock(&e_devicemgr->device_list_mutex);
1162 }
1163
1164 static void
1165 _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)
1166 {
1167    if (idx >= e_input_touch_max_count_get()) return;
1168
1169    _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_RADIUS_X, radius_x);
1170    e_devicemgr->multi[idx].radius_x = radius_x;
1171    _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_RADIUS_Y, radius_y);
1172    e_devicemgr->multi[idx].radius_y = radius_y;
1173    _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_PRESSURE, pressure);
1174    e_devicemgr->multi[idx].pressure = pressure;
1175    _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_ANGLE, angle);
1176    e_devicemgr->multi[idx].angle = angle;
1177 }
1178
1179 static void
1180 _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)
1181 {
1182    if (idx >= e_input_touch_max_count_get()) return;
1183
1184    if (e_devicemgr->multi[idx].radius_x != radius_x)
1185      {
1186         _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_RADIUS_X, radius_x);
1187         e_devicemgr->multi[idx].radius_x = radius_x;
1188      }
1189    if (e_devicemgr->multi[idx].radius_y != radius_y)
1190      {
1191         _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_RADIUS_Y, radius_y);
1192         e_devicemgr->multi[idx].radius_y = radius_y;
1193      }
1194    if (e_devicemgr->multi[idx].pressure != pressure)
1195      {
1196         _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_PRESSURE, pressure);
1197         e_devicemgr->multi[idx].pressure = pressure;
1198      }
1199    if (e_devicemgr->multi[idx].angle != angle)
1200      {
1201         _e_comp_wl_device_send_axis(dev_name, dev_class, ec, TIZEN_INPUT_DEVICE_AXIS_TYPE_ANGLE, angle);
1202         e_devicemgr->multi[idx].angle = angle;
1203      }
1204 }
1205
1206 static Eina_Bool
1207 _e_comp_wl_cursor_timer_control(Evas_Callback_Type type, E_Client *ec)
1208 {
1209    Eina_Bool ret = EINA_TRUE;
1210    switch (type)
1211      {
1212         case EVAS_CALLBACK_MOUSE_IN:
1213           ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_IN, ec);
1214           if (!ret) break;
1215
1216           if (e_comp_wl->ptr.hide_tmr)
1217             {
1218                ecore_timer_del(e_comp_wl->ptr.hide_tmr);
1219                cursor_timer_ec = ec;
1220                e_comp_wl->ptr.hide_tmr = ecore_timer_add(e_config->cursor_timer_interval, _e_comp_wl_cursor_timer, ec);
1221             }
1222           else
1223             {
1224                if (e_pointer_is_hidden(e_comp->pointer))
1225                  ret = EINA_FALSE;
1226             }
1227           break;
1228
1229         case EVAS_CALLBACK_MOUSE_OUT:
1230           ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_OUT, ec);
1231           if (!ret) break;
1232
1233           if (!e_comp_wl->ptr.hide_tmr && e_pointer_is_hidden(e_comp->pointer))
1234             ret = EINA_FALSE;
1235           break;
1236
1237         case EVAS_CALLBACK_MOUSE_MOVE:
1238           ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_MOVE, ec);
1239           if (!ret) break;
1240
1241           if (e_pointer_is_hidden(e_comp->pointer) || !ec->pointer_enter_sent)
1242             _e_comp_wl_cursor_reload(ec);
1243           break;
1244
1245         case EVAS_CALLBACK_MOUSE_WHEEL:
1246           ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_WHEEL, ec);
1247           if (!ret) break;
1248
1249           if (e_pointer_is_hidden(e_comp->pointer) || !ec->pointer_enter_sent)
1250             _e_comp_wl_cursor_reload(ec);
1251           break;
1252
1253         case EVAS_CALLBACK_MOUSE_DOWN:
1254           ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_DOWN, ec);
1255           if (!ret) break;
1256
1257           if (e_comp_wl->ptr.hide_tmr)
1258             {
1259                ecore_timer_del(e_comp_wl->ptr.hide_tmr);
1260                e_comp_wl->ptr.hide_tmr = NULL;
1261             }
1262           cursor_timer_ec = NULL;
1263
1264           if (e_pointer_is_hidden(e_comp->pointer) || !ec->pointer_enter_sent)
1265             _e_comp_wl_cursor_reload(ec);
1266           break;
1267
1268         case EVAS_CALLBACK_MOUSE_UP:
1269           ret = _e_comp_wl_intercept_hook_call(E_COMP_WL_INTERCEPT_HOOK_CURSOR_TIMER_MOUSE_UP, ec);
1270           break;
1271
1272         default:
1273           break;
1274      }
1275
1276    return ret;
1277 }
1278
1279 static Eina_Bool
1280 _e_comp_wl_check_cursor_timer_needed(E_Client *ec)
1281 {
1282    if (ec->has_cursor_unset)
1283      return EINA_FALSE;
1284
1285    if (!e_config->show_cursor)
1286      return EINA_FALSE;
1287
1288    if (!e_config->use_cursor_timer)
1289      return EINA_FALSE;
1290
1291    return EINA_TRUE;
1292 }
1293
1294 static void
1295 _e_comp_wl_evas_cb_mouse_in(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj, void *event)
1296 {
1297    E_Client *ec;
1298    Evas_Event_Mouse_In *ev;
1299    struct wl_resource *res;
1300    struct wl_client *wc;
1301    Eina_List *l;
1302    uint32_t serial;
1303    E_Comp_Config *comp_conf;
1304    E_Client *prev_ptr_ec;
1305
1306    ev = event;
1307
1308    e_comp_wl->ptr.x = wl_fixed_from_int(ev->output.x);
1309    e_comp_wl->ptr.y = wl_fixed_from_int(ev->output.y);
1310
1311    if (!(ec = data)) return;
1312    if (e_object_is_del(E_OBJECT(ec))) return;
1313    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1314    if (!surface) return;
1315
1316    prev_ptr_ec = e_comp_wl->ptr.ec;
1317    if (prev_ptr_ec)
1318      {
1319         ELOGF("Mouse", "In (prev_ptr_ec: %p pointer_enter_sent: %d)", ec, prev_ptr_ec, prev_ptr_ec->pointer_enter_sent);
1320         prev_ptr_ec->pointer_enter_sent = EINA_FALSE;
1321      }
1322
1323    e_comp_wl->ptr.ec = ec;
1324
1325    comp_conf = e_comp_config_get();
1326    if (comp_conf && comp_conf->input_log_enable)
1327      ELOGF("Mouse", "In  (obj: %p, time: %d, canvas(%d, %d) output(%d, %d), name:%20s)",
1328            ec, obj, ev->timestamp, ev->canvas.x, ev->canvas.y, ev->output.x, ev->output.y,
1329            e_client_util_name_get(ec));
1330
1331    if (_e_comp_wl_check_cursor_timer_needed(ec))
1332      {
1333         if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_IN, ec))
1334           return;
1335      }
1336
1337    if (!eina_list_count(e_comp_wl->ptr.resources)) return;
1338    wc = wl_resource_get_client(surface);
1339    serial = wl_display_next_serial(e_comp_wl->wl.disp);
1340    EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
1341      {
1342         if (!e_comp_wl_input_pointer_check(res)) continue;
1343         if (wl_resource_get_client(res) != wc) continue;
1344
1345         _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, ev->timestamp);
1346
1347         wl_pointer_send_enter(res, serial, surface,
1348                               wl_fixed_from_int(ev->canvas.x - ec->client.x),
1349                               wl_fixed_from_int(ev->canvas.y - ec->client.y));
1350         ec->pointer_enter_sent = EINA_TRUE;
1351      }
1352
1353    wl_signal_emit(&e_comp_wl->ptr_constraints.surface_mousein_signal, ec);
1354 }
1355
1356 static void
1357 _e_comp_wl_evas_cb_mouse_out(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj, void *event)
1358 {
1359    E_Client *ec;
1360    Evas_Event_Mouse_Out *ev;
1361    struct wl_resource *res;
1362    struct wl_client *wc;
1363    Eina_List *l;
1364    uint32_t serial;
1365    Eina_Bool inside_check;
1366    E_Comp_Config *comp_conf;
1367
1368    ev = event;
1369
1370    if (!(ec = data)) return;
1371    inside_check = E_INSIDE(ev->canvas.x, ev->canvas.y,
1372                           ec->client.x, ec->client.y, ec->client.w, ec->client.h);
1373    if (ec->cur_mouse_action && inside_check) return;
1374    if (e_object_is_del(E_OBJECT(e_comp))) return;
1375    if (e_comp_wl->ptr.ec == ec)
1376      e_comp_wl->ptr.ec = NULL;
1377    if (e_object_is_del(E_OBJECT(ec))) return;
1378
1379    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1380    if (!surface) return;
1381
1382    comp_conf = e_comp_config_get();
1383    if (comp_conf && comp_conf->input_log_enable)
1384      ELOGF("Mouse", "Out (obj: %p, time: %d, canvas(%d, %d) output(%d, %d), name:%20s)",
1385            ec, obj, ev->timestamp, ev->canvas.x, ev->canvas.y, ev->output.x, ev->output.y,
1386            e_client_util_name_get(ec));
1387
1388    if (_e_comp_wl_check_cursor_timer_needed(ec))
1389      {
1390         if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_OUT, ec))
1391           return;
1392      }
1393
1394    if (!eina_list_count(e_comp_wl->ptr.resources)) return;
1395
1396    wc = wl_resource_get_client(surface);
1397    serial = wl_display_next_serial(e_comp_wl->wl.disp);
1398    EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
1399      {
1400         if (!e_comp_wl_input_pointer_check(res)) continue;
1401         if (wl_resource_get_client(res) != wc) continue;
1402         if (ec->pointer_enter_sent == EINA_FALSE) continue;
1403
1404         _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, ev->timestamp);
1405
1406         wl_pointer_send_leave(res, serial, surface);
1407         ec->pointer_enter_sent = EINA_FALSE;
1408      }
1409 }
1410
1411 static void
1412 _e_comp_wl_send_touch(E_Client *ec, int idx, int canvas_x, int canvas_y, uint32_t timestamp, Eina_Bool pressed)
1413 {
1414    Eina_List *l;
1415    struct wl_client *wc;
1416    struct wl_resource *res;
1417    wl_fixed_t x, y;
1418    uint32_t serial;
1419    E_Comp_Config *comp_conf = NULL;
1420
1421    if (!ec) return;
1422    if (e_object_is_del(E_OBJECT(ec))) return;
1423    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1424    if (!surface) return;
1425
1426    wc = wl_resource_get_client(surface);
1427    serial = wl_display_next_serial(e_comp_wl->wl.disp);
1428
1429    if (pressed)
1430      {
1431         x = wl_fixed_from_int(canvas_x - ec->client.x);
1432         y = wl_fixed_from_int(canvas_y - ec->client.y);
1433      }
1434
1435    comp_conf = e_comp_config_get();
1436
1437    EINA_LIST_FOREACH(e_comp_wl->touch.resources, l, res)
1438      {
1439         if (wl_resource_get_client(res) != wc) continue;
1440         if (!e_comp_wl_input_touch_check(res)) continue;
1441         TRACE_INPUT_BEGIN(_e_comp_wl_send_touch);
1442         if (pressed)
1443           {
1444              if (comp_conf && comp_conf->input_log_enable)
1445                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));
1446
1447              wl_touch_send_down(res, serial, timestamp, surface, idx, x, y); //id 0 for the 1st finger
1448           }
1449         else
1450           {
1451              if (comp_conf && comp_conf->input_log_enable)
1452                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));
1453
1454              wl_touch_send_up(res, serial, timestamp, idx);
1455           }
1456         TRACE_INPUT_END();
1457      }
1458 }
1459
1460 static void
1461 _e_comp_wl_send_touch_move(E_Client *ec, int idx, int canvas_x, int canvas_y, uint32_t timestamp)
1462 {
1463    Eina_List *l;
1464    struct wl_client *wc;
1465    struct wl_resource *res;
1466    wl_fixed_t x, y;
1467
1468    if (!ec) return;
1469    if (ec->cur_mouse_action) return;
1470    if (e_object_is_del(E_OBJECT(ec))) return;
1471    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1472    if (!surface) return;
1473
1474    wc = wl_resource_get_client(surface);
1475
1476    x = wl_fixed_from_int(canvas_x - ec->client.x);
1477    y = wl_fixed_from_int(canvas_y - ec->client.y);
1478
1479    EINA_LIST_FOREACH(e_comp_wl->touch.resources, l, res)
1480      {
1481         if (wl_resource_get_client(res) != wc) continue;
1482         if (!e_comp_wl_input_touch_check(res)) continue;
1483         wl_touch_send_motion(res, timestamp, idx, x, y);
1484      }
1485 }
1486
1487 static void
1488 _e_comp_wl_send_mouse_move(E_Client *ec, int x, int y, unsigned int timestamp)
1489 {
1490    struct wl_resource *res;
1491    struct wl_client *wc;
1492    Eina_List *l;
1493
1494    if (!ec) return;
1495    if (ec->cur_mouse_action) return;
1496    if (e_object_is_del(E_OBJECT(ec))) return;
1497    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1498    if (!surface) return;
1499
1500    wc = wl_resource_get_client(surface);
1501    EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
1502      {
1503         if (!e_comp_wl_input_pointer_check(res)) continue;
1504         if (wl_resource_get_client(res) != wc) continue;
1505         wl_pointer_send_motion(res, timestamp,
1506                                wl_fixed_from_int(x - ec->client.x),
1507                                wl_fixed_from_int(y - ec->client.y));
1508      }
1509 }
1510
1511 static void
1512 _e_comp_wl_cursor_move_timer_control(E_Client *ec)
1513 {
1514    if (e_comp_wl->ptr.hide_tmr)
1515      {
1516         if (cursor_timer_ec == ec)
1517           {
1518              ecore_timer_interval_set(e_comp_wl->ptr.hide_tmr, e_config->cursor_timer_interval);
1519              ecore_timer_reset(e_comp_wl->ptr.hide_tmr);
1520           }
1521         else
1522           {
1523              ecore_timer_del(e_comp_wl->ptr.hide_tmr);
1524              cursor_timer_ec = ec;
1525              e_comp_wl->ptr.hide_tmr = ecore_timer_add(e_config->cursor_timer_interval, _e_comp_wl_cursor_timer, ec);
1526           }
1527      }
1528    else
1529      {
1530         cursor_timer_ec = ec;
1531         e_comp_wl->ptr.hide_tmr = ecore_timer_add(e_config->cursor_timer_interval, _e_comp_wl_cursor_timer, ec);
1532      }
1533 }
1534
1535 static void
1536 _e_comp_wl_evas_cb_mouse_move(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj, void *event)
1537 {
1538    E_Client *ec;
1539    Evas_Event_Mouse_Move *ev;
1540    Evas_Device *dev = NULL;
1541    const char *dev_name;
1542    E_Comp_Config *comp_conf;
1543
1544    ev = event;
1545
1546    e_comp->wl_comp_data->ptr.x = wl_fixed_from_int(ev->cur.canvas.x);
1547    e_comp->wl_comp_data->ptr.y = wl_fixed_from_int(ev->cur.canvas.y);
1548
1549    if (!(ec = data)) return;
1550    if (e_object_is_del(E_OBJECT(ec))) return;
1551    if ((ec->ignored) && (!ec->remote_surface.provider)) return;
1552    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1553    if (!surface) return;
1554
1555    if ((!need_send_motion) && (!need_send_released) && (e_client_visibility_get(ec) == E_VISIBILITY_FULLY_OBSCURED)) return;
1556
1557    dev = ev->dev;
1558    dev_name = evas_device_description_get(dev);
1559
1560    comp_conf = e_comp_config_get();
1561    if (comp_conf && comp_conf->input_log_enable)
1562      ELOGF("Mouse", "Move (obj: %p, time: %d, canvas(%d, %d), output(%d, %d), name:%20s) (dev:%s)",
1563            ec, obj, ev->timestamp, ev->cur.canvas.x, ev->cur.canvas.y, ev->cur.output.x, ev->cur.output.y,
1564            e_client_util_name_get(ec), dev_name);
1565
1566    if (dev && (evas_device_class_get(dev) == EVAS_DEVICE_CLASS_TOUCH))
1567      {
1568         if (!e_comp_wl->drag_client)
1569           {
1570              e_comp_wl->touch.faked_ec = ec;
1571              if (e_comp_wl->touch.pressed & (1 << 0))
1572                {
1573                   _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1574                   if (dev_name)
1575                     _e_comp_wl_device_handle_axes(dev_name, evas_device_class_get(dev),
1576                                                   ec, 0, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1577                   _e_comp_wl_send_touch_move(ec, 0, ev->cur.canvas.x, ev->cur.canvas.y, ev->timestamp);
1578                }
1579           }
1580
1581         e_pointer_touch_move(e_comp->pointer, ev->cur.output.x, ev->cur.output.y);
1582      }
1583    else
1584      {
1585         if (!e_comp_wl->drag_client)
1586           {
1587              if (_e_comp_wl_check_cursor_timer_needed(ec))
1588                {
1589                   if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_MOVE, ec))
1590                     return;
1591                }
1592
1593              _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1594              _e_comp_wl_send_mouse_move(ec, ev->cur.canvas.x, ev->cur.canvas.y, ev->timestamp);
1595
1596              if (!need_send_released) // set cursor's hide_tmr only when mouse button is not pressed
1597                {
1598                   if (_e_comp_wl_check_cursor_timer_needed(ec))
1599                     _e_comp_wl_cursor_move_timer_control(ec);
1600                }
1601           }
1602
1603         e_pointer_mouse_move(e_comp->pointer, ev->cur.output.x, ev->cur.output.y);
1604      }
1605 }
1606
1607 static void
1608 _e_comp_wl_evas_handle_mouse_button_to_touch(E_Client *ec, uint32_t timestamp, int canvas_x, int canvas_y, Eina_Bool flag)
1609 {
1610    if (ec->cur_mouse_action || e_comp_wl->drag) return;
1611    if (e_object_is_del(E_OBJECT(ec))) return;
1612    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1613    if (!surface) return;
1614    if ((ec->ignored) && (!ec->remote_surface.provider)) return;
1615
1616    e_comp_wl->ptr.button = BTN_LEFT;
1617
1618    _e_comp_wl_send_touch(ec, 0, canvas_x, canvas_y, timestamp, flag);
1619 }
1620
1621 static void
1622 _e_comp_wl_evas_cb_mouse_down(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj, void *event)
1623 {
1624    E_Client *ec = data;
1625    Evas_Event_Mouse_Down *ev = event;
1626    Evas_Device *dev = NULL;
1627    const Evas_Device *seat_dev;
1628    const char *dev_name, *seat_name;
1629    E_Comp_Config *comp_conf = NULL;
1630
1631    if (!ec) return;
1632    if (e_object_is_del(E_OBJECT(ec))) return;
1633
1634    dev = ev->dev;
1635    dev_name = evas_device_description_get(dev);
1636
1637    seat_dev = evas_device_parent_get(dev);
1638    seat_name = evas_device_name_get(seat_dev);
1639
1640    comp_conf = e_comp_config_get();
1641    if (comp_conf && comp_conf->input_log_enable)
1642      ELOGF("Touch", "Down (obj: %p, button: %d, time: %d, x:%d, y:%d, name:%20s) (dev:%s, seat:%s)",
1643            ec, obj, ev->button, ev->timestamp, ev->output.x, ev->output.y, e_client_util_name_get(ec),
1644            dev_name, seat_name);
1645
1646    _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1647
1648    if (dev &&  (evas_device_class_get(dev) == EVAS_DEVICE_CLASS_TOUCH))
1649      {
1650         e_comp_wl->touch.faked_ec = ec;
1651
1652         if (dev_name)
1653           _e_comp_wl_device_renew_axis(dev_name, evas_device_class_get(dev),
1654                                         ec, 0, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1655         _e_comp_wl_evas_handle_mouse_button_to_touch(ec, ev->timestamp, ev->canvas.x, ev->canvas.y, EINA_TRUE);
1656
1657         e_pointer_touch_move(e_comp->pointer, ev->output.x, ev->output.y);
1658         e_comp_wl->touch.pressed |= (1 << 0);
1659      }
1660    else
1661      {
1662         if (_e_comp_wl_check_cursor_timer_needed(ec))
1663           {
1664              if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_DOWN, ec))
1665                return;
1666           }
1667
1668         e_comp_wl_evas_handle_mouse_button(ec, ev->timestamp, ev->button,
1669                                            WL_POINTER_BUTTON_STATE_PRESSED);
1670
1671         e_pointer_mouse_move(e_comp->pointer, ev->output.x, ev->output.y);
1672      }
1673
1674    need_send_released = EINA_TRUE;
1675 }
1676
1677 static void
1678 _e_comp_wl_evas_cb_mouse_up(void *data, Evas *evas, Evas_Object *obj, void *event)
1679 {
1680    E_Client *ec = data;
1681    Evas_Event_Mouse_Up *ev = event;
1682    Evas_Device *dev = NULL;
1683    const Evas_Device *seat_dev;
1684    const char *dev_name, *seat_name;;
1685    Evas_Event_Flags flags;
1686    E_Comp_Config *comp_conf = NULL;
1687
1688    if (!ec) return;
1689    if (ec->cur_mouse_action) return;
1690    if (e_object_is_del(E_OBJECT(ec))) return;
1691
1692    if (!need_send_released)
1693      {
1694         need_send_motion = EINA_TRUE;
1695      }
1696
1697    dev = ev->dev;
1698    dev_name = evas_device_description_get(dev);
1699
1700    seat_dev = evas_device_parent_get(dev);
1701    seat_name = evas_device_name_get(seat_dev);
1702    flags = evas_event_default_flags_get(evas);
1703
1704    comp_conf = e_comp_config_get();
1705    if (comp_conf && comp_conf->input_log_enable)
1706      ELOGF("Touch", "Up (obj: %p, button: %d, flag: 0x%x, time: %d, x:%d, y:%d, name:%20s) (dev:%s, seat:%s)",
1707            ec, obj, ev->button, flags, ev->timestamp, ev->output.x, ev->output.y, e_client_util_name_get(ec),
1708            dev_name, seat_name);
1709
1710    if (dev && (evas_device_class_get(dev) == EVAS_DEVICE_CLASS_TOUCH))
1711      {
1712         e_comp_wl->touch.pressed &= ~(1 << 0);
1713
1714         if (!e_comp_wl->touch.pressed && e_comp_wl->touch.faked_ec)
1715           e_comp_wl->touch.faked_ec = NULL;
1716      }
1717
1718    if (flags & EVAS_EVENT_FLAG_ON_HOLD) goto finish;
1719
1720    _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1721
1722    if (dev && (evas_device_class_get(dev) == EVAS_DEVICE_CLASS_TOUCH))
1723      {
1724         if (dev_name)
1725           _e_comp_wl_device_handle_axes(dev_name, evas_device_class_get(dev),
1726                                         ec, 0, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1727         _e_comp_wl_evas_handle_mouse_button_to_touch(ec, ev->timestamp, ev->canvas.x, ev->canvas.y, EINA_FALSE);
1728      }
1729    else
1730      {
1731         if (_e_comp_wl_check_cursor_timer_needed(ec))
1732           {
1733              if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_UP, ec))
1734                return;
1735           }
1736
1737         e_comp_wl_evas_handle_mouse_button(ec, ev->timestamp, ev->button,
1738                                            WL_POINTER_BUTTON_STATE_RELEASED);
1739
1740         if (_e_comp_wl_check_cursor_timer_needed(ec))
1741           _e_comp_wl_cursor_move_timer_control(ec);
1742      }
1743
1744 finish:
1745    need_send_released = EINA_FALSE;
1746 }
1747
1748 static void
1749 _e_comp_wl_mouse_wheel_send(E_Client *ec, int direction, int z, int timestamp)
1750 {
1751    struct wl_resource *res;
1752    struct wl_client *wc;
1753    Eina_List *l;
1754    uint32_t axis, dir;
1755
1756    if (direction == 0)
1757      axis = WL_POINTER_AXIS_VERTICAL_SCROLL;
1758    else
1759      axis = WL_POINTER_AXIS_HORIZONTAL_SCROLL;
1760
1761    if (z < 0)
1762      dir = -wl_fixed_from_int(abs(z));
1763    else
1764      dir = wl_fixed_from_int(z);
1765
1766    if (!ec) return;
1767    if (e_object_is_del(E_OBJECT(ec))) return;
1768    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1769    if (!surface) return;
1770
1771    wc = wl_resource_get_client(surface);
1772    EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
1773      {
1774         if (!e_comp_wl_input_pointer_check(res)) continue;
1775         if (wl_resource_get_client(res) != wc) continue;
1776         wl_pointer_send_axis(res, timestamp, axis, dir);
1777      }
1778 }
1779
1780 static void
1781 _e_comp_wl_evas_cb_mouse_wheel(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event)
1782 {
1783    E_Client *ec;
1784    Evas_Event_Mouse_Wheel *ev;
1785
1786    ev = event;
1787    if (!(ec = data)) return;
1788    if (ec->cur_mouse_action) return;
1789    if (e_object_is_del(E_OBJECT(ec))) return;
1790    if ((ec->ignored) && (!ec->remote_surface.provider)) return;
1791    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1792    if (!surface) return;
1793
1794    if (!eina_list_count(e_comp_wl->ptr.resources))
1795      return;
1796
1797    if (_e_comp_wl_check_cursor_timer_needed(ec))
1798       {
1799          if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_WHEEL, ec))
1800            return;
1801       }
1802
1803    _e_comp_wl_device_send_event_device(ec, ev->dev, ev->timestamp);
1804
1805    _e_comp_wl_mouse_wheel_send(ec, ev->direction, ev->z, ev->timestamp);
1806
1807    if (!need_send_released) // set cursor's hide_tmr only when mouse button is not pressed
1808      {
1809         if (_e_comp_wl_check_cursor_timer_needed(ec))
1810           _e_comp_wl_cursor_move_timer_control(ec);
1811      }
1812 }
1813
1814 static void
1815 _e_comp_wl_evas_cb_multi_down(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj, void *event)
1816 {
1817    E_Client *ec = data;
1818    Evas_Event_Multi_Down *ev = event;
1819    Evas_Device *dev = NULL;
1820    const Evas_Device *seat_dev;
1821    const char *dev_name, *seat_name;
1822    Evas_Device_Class dev_class;
1823    E_Comp_Config *comp_conf = NULL;
1824
1825    if (!ec) return;
1826    if (e_object_is_del(E_OBJECT(ec))) return;
1827    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1828    if (!surface) return;
1829
1830    /* Do not deliver emulated single touch events to client */
1831    if (ev->device == 0) return;
1832
1833    dev = ev->dev;
1834    dev_name = evas_device_description_get(dev);
1835    e_comp_wl->touch.faked_ec = ec;
1836
1837    seat_dev = evas_device_parent_get(dev);
1838    seat_name = evas_device_name_get(seat_dev);
1839
1840    comp_conf = e_comp_config_get();
1841    if (comp_conf && comp_conf->input_log_enable)
1842      ELOGF("Touch", "Down (obj: %p, idx: %d, time: %d, x:%d, y:%d, name:%20s) (dev:%s, seat:%s)",
1843            ec, obj, ev->device, ev->timestamp, ev->output.x, ev->output.y, e_client_util_name_get(ec),
1844            dev_name, seat_name);
1845
1846    if (dev && dev_name)
1847      {
1848         dev_class = evas_device_class_get(dev);
1849         _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1850         _e_comp_wl_device_renew_axis(dev_name, dev_class, ec, ev->device, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1851      }
1852
1853    _e_comp_wl_send_touch(ec, ev->device, ev->canvas.x, ev->canvas.y, ev->timestamp, EINA_TRUE);
1854    e_comp_wl->touch.pressed |= (1 << ev->device);
1855 }
1856
1857 static void
1858 _e_comp_wl_evas_cb_multi_up(void *data, Evas *evas, Evas_Object *obj EINA_UNUSED, void *event)
1859 {
1860    E_Client *ec = data;
1861    Evas_Event_Multi_Up *ev = event;
1862    Evas_Device *dev = NULL;
1863    const Evas_Device *seat_dev;
1864    const char *dev_name, *seat_name;
1865    Evas_Device_Class dev_class;
1866    Evas_Event_Flags flags;
1867    E_Comp_Config *comp_conf = NULL;
1868
1869    if (!ec) return;
1870    if (e_object_is_del(E_OBJECT(ec))) return;
1871    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1872    if (!surface) return;
1873
1874    /* Do not deliver emulated single touch events to client */
1875    if (ev->device == 0) return;
1876
1877    flags = evas_event_default_flags_get(evas);
1878
1879    e_comp_wl->touch.pressed &= ~(1 << ev->device);
1880    if (!e_comp_wl->touch.pressed && e_comp_wl->touch.faked_ec)
1881      e_comp_wl->touch.faked_ec = NULL;
1882
1883    if (flags & EVAS_EVENT_FLAG_ON_HOLD) return;
1884
1885    dev = ev->dev;
1886    dev_name = evas_device_description_get(dev);
1887
1888    seat_dev = evas_device_parent_get(dev);
1889    seat_name = evas_device_name_get(seat_dev);
1890
1891    comp_conf = e_comp_config_get();
1892    if (comp_conf && comp_conf->input_log_enable)
1893      ELOGF("Touch", "Up (obj: %p, idx: %d, flag: 0x%x, time: %d, x:%d, y:%d, name:%20s) (dev:%s, seat:%s)",
1894            ec, obj, ev->device, flags, ev->timestamp, ev->output.x, ev->output.y, e_client_util_name_get(ec),
1895            dev_name, seat_name);
1896
1897    if (dev && dev_name)
1898      {
1899         dev_class = evas_device_class_get(dev);
1900         _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1901         _e_comp_wl_device_handle_axes(dev_name, dev_class, ec, ev->device, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1902      }
1903
1904    _e_comp_wl_send_touch(ec, ev->device, 0, 0, ev->timestamp, EINA_FALSE);
1905 }
1906
1907 static void
1908 _e_comp_wl_evas_cb_multi_move(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event)
1909 {
1910    E_Client *ec = data;
1911    Evas_Event_Multi_Move *ev = event;
1912    Evas_Device *dev = NULL;
1913    const char *dev_name;
1914    Evas_Device_Class dev_class;
1915
1916    if (!ec) return;
1917    if (e_object_is_del(E_OBJECT(ec))) return;
1918    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
1919    if (!surface) return;
1920
1921    /* Do not deliver emulated single touch events to client */
1922    if (ev->device == 0) return;
1923
1924    e_comp_wl->touch.faked_ec = ec;
1925
1926    if (e_comp_wl->touch.pressed & (1 << ev->device))
1927      {
1928         dev = ev->dev;
1929         if (dev && (dev_name = evas_device_description_get(dev)))
1930           {
1931              dev_class = evas_device_class_get(dev);
1932              _e_comp_wl_device_send_event_device(ec, dev, ev->timestamp);
1933              _e_comp_wl_device_handle_axes(dev_name, dev_class, ec, ev->device, ev->radius_x, ev->radius_y, ev->pressure, ev->angle);
1934           }
1935
1936         _e_comp_wl_send_touch_move(ec, ev->device, ev->cur.canvas.x, ev->cur.canvas.y, ev->timestamp);
1937      }
1938 }
1939
1940 static void
1941 _e_comp_wl_client_priority_adjust(int pid, int set, int adj, Eina_Bool use_adj, Eina_Bool adj_child, Eina_Bool do_child)
1942 {
1943    Eina_List *files;
1944    char *file, buff[PATH_MAX];
1945    FILE *f;
1946    int pid2, ppid;
1947    int num_read;
1948    int n;
1949
1950    if (use_adj)
1951      n = (getpriority(PRIO_PROCESS, pid) + adj);
1952    else
1953      n = set;
1954
1955    setpriority(PRIO_PROCESS, pid, n);
1956
1957    if (adj_child)
1958      use_adj = EINA_TRUE;
1959
1960    if (!do_child) return;
1961
1962    files = ecore_file_ls("/proc");
1963    EINA_LIST_FREE(files, file)
1964       {
1965          if (!isdigit(file[0]))
1966            continue;
1967
1968          snprintf(buff, sizeof(buff), "/proc/%s/stat", file);
1969          if ((f = fopen(buff, "r")))
1970            {
1971               pid2 = -1;
1972               ppid = -1;
1973               num_read = fscanf(f, "%i %*s %*s %i %*s", &pid2, &ppid);
1974               fclose(f);
1975               if (num_read == 2 && ppid == pid)
1976                 _e_comp_wl_client_priority_adjust(pid2, set,
1977                                                   adj, use_adj,
1978                                                   adj_child, do_child);
1979            }
1980
1981          free(file);
1982       }
1983 }
1984
1985 static void
1986 _e_comp_wl_client_priority_raise(E_Client *ec)
1987 {
1988    if (!e_config->priority_control) return;
1989    if (ec->netwm.pid <= 0) return;
1990    if (ec->netwm.pid == getpid()) return;
1991    _e_comp_wl_client_priority_adjust(ec->netwm.pid,
1992                                      e_config->priority - 1, -1,
1993                                      EINA_FALSE, EINA_TRUE, EINA_FALSE);
1994 }
1995
1996 static void
1997 _e_comp_wl_client_priority_normal(E_Client *ec)
1998 {
1999    if (!e_config->priority_control) return;
2000    if (ec->netwm.pid <= 0) return;
2001    if (ec->netwm.pid == getpid()) return;
2002    _e_comp_wl_client_priority_adjust(ec->netwm.pid, e_config->priority, 1,
2003                                      EINA_FALSE, EINA_TRUE, EINA_FALSE);
2004 }
2005
2006 static void
2007 _e_comp_wl_input_thread_send_keys()
2008 {
2009    uint32_t serial;
2010    double t;
2011    Eina_List *l;
2012    struct wl_resource *res;
2013    E_Comp_Wl_Key_Data *k;
2014
2015    if (!e_comp_input_key->kbd.focused)
2016      {
2017         return;
2018      }
2019
2020    serial = wl_display_next_serial(e_comp_wl->wl.disp);
2021    t = ecore_time_unix_get();
2022
2023    EINA_LIST_FOREACH(e_comp_input_key->kbd.focused, l, res)
2024      {
2025         wl_array_for_each(k, &e_comp_input_key->kbd.keys)
2026           {
2027              _e_comp_wl_send_event_device(wl_resource_get_client(res), t, k->dev, serial);
2028              wl_keyboard_send_key(res, serial, t,
2029                                   k->key, WL_KEYBOARD_KEY_STATE_PRESSED);
2030           }
2031      }
2032 }
2033
2034 static Eina_Bool
2035 _e_comp_wl_evas_cb_focus_in_timer(E_Client *ec)
2036 {
2037    if (!ec) return EINA_FALSE;
2038    if (e_object_is_del(E_OBJECT(ec))) return EINA_FALSE;
2039    if (!ec->comp_data) return EINA_FALSE;
2040
2041    ec->comp_data->on_focus_timer = NULL;
2042
2043    e_input_thread_safe_call(_e_comp_wl_input_thread_send_keys, NULL, 0);
2044
2045    return EINA_FALSE;
2046 }
2047
2048 static void
2049 _e_comp_wl_input_thread_focus_in(void *data)
2050 {
2051    struct wl_resource *surface = NULL;
2052    memcpy(&surface, data, sizeof(struct wl_resource *));
2053    struct wl_resource *res;
2054    struct wl_client *wc;
2055    Eina_List *l;
2056
2057    wc = wl_resource_get_client(surface);
2058
2059    EINA_LIST_FOREACH(e_comp_wl->kbd.resources, l, res)
2060      {
2061         if (wl_resource_get_client(res) == wc)
2062           {
2063              if (!eina_list_data_find(e_comp_wl->kbd.focused, res))
2064                e_comp_wl->kbd.focused = eina_list_append(e_comp_wl->kbd.focused, res);
2065           }
2066      }
2067
2068    EINA_LIST_FOREACH(e_comp_input_key->kbd.resources, l, res)
2069      {
2070         if (wl_resource_get_client(res) == wc)
2071           {
2072              if (!eina_list_data_find(e_comp_input_key->kbd.focused, res))
2073                e_comp_input_key->kbd.focused = eina_list_append(e_comp_input_key->kbd.focused, res);
2074           }
2075      }
2076
2077    if (!e_comp_input_key->kbd.focused)
2078      {
2079         return;
2080      }
2081
2082    e_comp_wl->kbd.focus = surface;
2083    e_comp_input_key->kbd.focus = surface;
2084    e_comp_wl_input_keyboard_enter_send(surface);
2085    e_comp_wl_data_device_keyboard_focus_set();
2086 }
2087
2088 /* It is called in the following cases:
2089  *  When a normal ec->frame has focus.
2090  *  Or launching image ec is replaced to the real ec.
2091  */
2092 EINTERN void
2093 e_comp_wl_feed_focus_in(E_Client *ec)
2094 {
2095    E_Client *focused;
2096
2097    if (!ec) return;
2098    if (e_object_is_del(E_OBJECT(ec))) return;
2099    if (ec->iconic) return;
2100
2101    /* block spurious focus events */
2102    focused = e_client_focused_get();
2103    if ((focused) && (ec != focused)) return;
2104
2105    /* raise client priority */
2106    _e_comp_wl_client_priority_raise(ec);
2107
2108    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
2109    if (!surface) return;
2110
2111    INF("send focus in request to input thread. resource %p\n", surface);
2112    e_input_thread_safe_call(_e_comp_wl_input_thread_focus_in, (void *)&surface, sizeof(struct wl_resource *));
2113
2114    ec->comp_data->on_focus_timer =
2115       ecore_timer_add(((e_config->xkb.delay_held_key_input_to_focus)/1000.0),
2116                       (Ecore_Task_Cb)_e_comp_wl_evas_cb_focus_in_timer, ec);
2117    int rotation = ec->e.state.rot.ang.curr;
2118    e_pointer_rotation_set(e_comp->pointer, rotation);
2119 }
2120
2121 static void
2122 _e_comp_wl_evas_cb_focus_in(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2123 {
2124    E_Client *ec;
2125    if (!(ec = data)) return;
2126    e_comp_wl_feed_focus_in(ec);
2127 }
2128
2129 static void
2130 _e_comp_wl_input_thread_focus_out(void *data)
2131 {
2132    struct wl_resource *surface = NULL;
2133    struct wl_resource *res;
2134    uint32_t serial;
2135    E_Comp_Wl_Key_Data *k;
2136    Eina_List *l, *ll;
2137    double t;
2138
2139    memcpy(&surface, data, sizeof(struct wl_resource *));
2140
2141    /* update keyboard modifier state */
2142    wl_array_for_each(k, &e_comp_input_key->kbd.keys)
2143       e_comp_wl_input_keyboard_state_update(k->key, EINA_FALSE);
2144
2145    if (!surface) return;
2146
2147    if (!eina_list_count(e_comp_input_key->kbd.resources))
2148      {
2149         return;
2150      }
2151
2152    /* send keyboard_leave to all keyboard resources */
2153    serial = wl_display_next_serial(e_comp_wl->wl.disp);
2154    t = ecore_time_unix_get();
2155
2156    EINA_LIST_FOREACH_SAFE(e_comp_wl->kbd.focused, l, ll, res)
2157      {
2158         e_comp_wl->kbd.focused =
2159            eina_list_remove_list(e_comp_wl->kbd.focused, l);
2160      }
2161
2162    EINA_LIST_FOREACH_SAFE(e_comp_input_key->kbd.focused, l, ll, res)
2163      {
2164         wl_array_for_each(k, &e_comp_input_key->kbd.keys)
2165           {
2166              _e_comp_wl_send_event_device(wl_resource_get_client(res), t, k->dev, serial);
2167               wl_keyboard_send_key(res, serial, t,
2168                                    k->key, WL_KEYBOARD_KEY_STATE_RELEASED);
2169           }
2170         wl_keyboard_send_leave(res, serial, surface);
2171         e_comp_input_key->kbd.focused =
2172            eina_list_remove_list(e_comp_input_key->kbd.focused, l);
2173      }
2174 }
2175
2176 static void
2177 _e_comp_wl_evas_cb_focus_out(void *data, Evas *evas EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2178 {
2179    E_Client *ec;
2180    if (!(ec = data)) return;
2181
2182    if (!ec->comp_data) return;
2183
2184    E_FREE_FUNC(ec->comp_data->on_focus_timer, ecore_timer_del);
2185
2186    /* lower client priority */
2187    if (!e_object_is_del(data))
2188      _e_comp_wl_client_priority_normal(ec);
2189
2190    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
2191    INF("send focus out request to input thread. resource %p\n", surface);
2192    e_input_thread_safe_call(_e_comp_wl_input_thread_focus_out, (void *)&surface, sizeof(struct wl_resource *));
2193 }
2194
2195 static void
2196 _e_comp_wl_evas_cb_resize(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2197 {
2198    E_Client *ec;
2199
2200    if (!(ec = data)) return;
2201
2202    if (!ec->comp_data->shell.configure_send) return;
2203
2204    /* TODO: calculate x, y with transfrom object */
2205    if ((e_client_util_resizing_get(ec)) && (!ec->transformed) && (e_comp_wl->resize.edges))
2206      {
2207         int w, h;
2208
2209         w = ec->mouse.last_down[ec->moveinfo.down.button - 1].w;
2210         h = ec->mouse.last_down[ec->moveinfo.down.button - 1].h;
2211         if (e_comp_object_frame_exists(ec->frame))
2212           e_comp_object_frame_wh_unadjust(ec->frame, w, h, &w, &h);
2213
2214         switch (ec->resize_mode)
2215           {
2216            case E_POINTER_RESIZE_TL:
2217            case E_POINTER_RESIZE_L:
2218            case E_POINTER_RESIZE_BL:
2219              w += ec->mouse.last_down[ec->moveinfo.down.button - 1].mx -
2220                ec->mouse.current.mx;
2221              break;
2222            case E_POINTER_RESIZE_TR:
2223            case E_POINTER_RESIZE_R:
2224            case E_POINTER_RESIZE_BR:
2225              w += ec->mouse.current.mx - ec->mouse.last_down[ec->moveinfo.down.button - 1].mx;
2226              break;
2227            default:
2228              break;;
2229           }
2230         switch (ec->resize_mode)
2231           {
2232            case E_POINTER_RESIZE_TL:
2233            case E_POINTER_RESIZE_T:
2234            case E_POINTER_RESIZE_TR:
2235              h += ec->mouse.last_down[ec->moveinfo.down.button - 1].my -
2236                ec->mouse.current.my;
2237              break;
2238            case E_POINTER_RESIZE_BL:
2239            case E_POINTER_RESIZE_B:
2240            case E_POINTER_RESIZE_BR:
2241              h += ec->mouse.current.my - ec->mouse.last_down[ec->moveinfo.down.button - 1].my;
2242              break;
2243            default:
2244              break;
2245           }
2246         w = E_CLAMP(w, 1, w);
2247         h = E_CLAMP(h, 1, h);
2248         e_client_resize_limit(ec, &w, &h);
2249
2250         e_client_shell_configure_send(ec, e_comp_wl->resize.edges, w, h);
2251      }
2252    else if ((!ec->fullscreen) && (!ec->maximized) &&
2253             (!ec->comp_data->maximize_pre))
2254      {
2255         int pw = 0;
2256         int ph = 0;
2257         e_pixmap_size_get(ec->pixmap, &pw, &ph);
2258         if ((pw != ec->w) || (ph != ec->h))
2259           {
2260              _e_comp_wl_configure_send(ec, 1, 1);
2261           }
2262      }
2263
2264    if (ec->comp_data->sub.below_obj)
2265      e_comp_wl_subsurface_bg_rectangle_map_apply(ec);
2266 }
2267
2268 static void
2269 _e_comp_wl_evas_cb_maximize_pre(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2270 {
2271    E_Client *ec = data;
2272
2273    ec->comp_data->maximize_pre = 1;
2274 }
2275
2276 static void
2277 _e_comp_wl_evas_cb_maximize_done(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2278 {
2279    E_Client *ec = data;
2280    int w, h;
2281
2282    if (e_object_is_del(E_OBJECT(ec))) return;
2283
2284    e_client_maximized_geometry_get(ec, NULL, NULL, &w, &h);
2285    e_client_shell_configure_send(ec, 0, w, h);
2286
2287    ec->comp_data->maximize_pre = 0;
2288 }
2289
2290 static void
2291 _e_comp_wl_evas_cb_unmaximize_pre(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2292 {
2293    E_Client *ec = data;
2294
2295    ec->comp_data->maximize_pre = 1;
2296 }
2297
2298 static void
2299 _e_comp_wl_evas_cb_unmaximize_done(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2300 {
2301    E_Client *ec = data;
2302
2303    if (e_object_is_del(E_OBJECT(ec))) return;
2304
2305    /* check for wayland pixmap */
2306
2307    if (ec->comp_data->shell.configure_send)
2308      _e_comp_wl_configure_send(ec, 0, 0);
2309
2310    ec->comp_data->maximize_pre = 0;
2311 }
2312
2313 static void
2314 _e_comp_wl_evas_cb_fullscreen(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2315 {
2316    E_Client *ec = data;
2317
2318    if (e_object_is_del(E_OBJECT(ec))) return;
2319
2320    /* check for wayland pixmap */
2321
2322    if (ec->comp_data->shell.configure_send)
2323      _e_comp_wl_configure_send(ec, 0, 1);
2324
2325    ec->comp_data->maximize_pre = 0;
2326 }
2327
2328 static void
2329 _e_comp_wl_evas_cb_unfullscreen(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2330 {
2331    E_Client *ec = data;
2332
2333    if (e_object_is_del(E_OBJECT(ec))) return;
2334
2335    /* check for wayland pixmap */
2336
2337    if (ec->comp_data->shell.configure_send)
2338      _e_comp_wl_configure_send(ec, 0, 0);
2339
2340    ec->comp_data->maximize_pre = 0;
2341 }
2342
2343 static void
2344 _e_comp_wl_evas_cb_delete_request(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2345 {
2346    E_Client *ec;
2347
2348    if (!(ec = data)) return;
2349
2350    e_comp_ignore_win_del(E_PIXMAP_TYPE_WL, e_pixmap_window_get(ec->pixmap));
2351
2352    e_object_del(E_OBJECT(ec));
2353
2354    _e_comp_wl_focus_check();
2355
2356    /* TODO: Delete request send ??
2357     * NB: No such animal wrt wayland */
2358 }
2359
2360 static void
2361 _e_comp_wl_evas_cb_kill_request(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2362 {
2363    E_Client *ec;
2364
2365    if (!(ec = data)) return;
2366
2367    e_comp_ignore_win_del(E_PIXMAP_TYPE_WL, e_pixmap_window_get(ec->pixmap));
2368    if (ec->comp_data)
2369      {
2370         if (ec->comp_data->reparented)
2371           e_client_comp_hidden_set(ec, EINA_TRUE);
2372      }
2373
2374    evas_object_pass_events_set(ec->frame, EINA_TRUE);
2375    if (ec->visible) evas_object_hide(ec->frame);
2376    if (!ec->internal) e_object_del(E_OBJECT(ec));
2377
2378    _e_comp_wl_focus_check();
2379 }
2380
2381 static void
2382 _e_comp_wl_evas_cb_ping(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
2383 {
2384    E_Client *ec;
2385
2386    if (!(ec = data)) return;
2387
2388    e_client_shell_ping(ec);
2389 }
2390
2391 static void
2392 _e_comp_wl_evas_cb_color_set(void *data, Evas_Object *obj, void *event EINA_UNUSED)
2393 {
2394    E_Client *ec;
2395    int a = 0;
2396
2397    if (!(ec = data)) return;
2398    evas_object_color_get(obj, NULL, NULL, NULL, &a);
2399    if (ec->netwm.opacity == a) return;
2400    ec->netwm.opacity = a;
2401    ec->netwm.opacity_changed = EINA_TRUE;
2402 }
2403
2404 static void
2405 _e_comp_wl_buffer_damage_set(E_Comp_Wl_Buffer *buffer, Eina_List *buffer_damages)
2406 {
2407    Eina_Rectangle *damage_rect = NULL;
2408    Eina_Rectangle *dmg = NULL;
2409    Eina_List *l = NULL;
2410
2411    if (buffer->type != E_COMP_WL_BUFFER_TYPE_NATIVE &&
2412        buffer->type != E_COMP_WL_BUFFER_TYPE_TBM)
2413      return;
2414
2415    if (!buffer->tbm_surface) return;
2416
2417    if (buffer_damages)
2418      {
2419         EINA_LIST_FOREACH(buffer_damages, l, dmg)
2420           {
2421              if (!damage_rect)
2422                {
2423                   damage_rect = eina_rectangle_new(dmg->x, dmg->y, dmg->w, dmg->h);
2424                   EINA_SAFETY_ON_FALSE_RETURN(damage_rect);
2425                }
2426              else
2427                eina_rectangle_union(damage_rect, dmg);
2428           }
2429      }
2430    else
2431      {
2432         damage_rect = eina_rectangle_new(0, 0, buffer->w, buffer->h);
2433         EINA_SAFETY_ON_FALSE_RETURN(damage_rect);
2434      }
2435
2436    tbm_surface_internal_set_damage(buffer->tbm_surface,
2437                                    damage_rect->x,
2438                                    damage_rect->y,
2439                                    damage_rect->w,
2440                                    damage_rect->h);
2441
2442    eina_rectangle_free(damage_rect);
2443 }
2444
2445 static void
2446 _e_comp_wl_client_evas_init(E_Client *ec)
2447 {
2448    if (!ec || !ec->comp_data) return;
2449    if (ec->comp_data->evas_init) return;
2450
2451    evas_object_event_callback_add(ec->frame, EVAS_CALLBACK_SHOW,        _e_comp_wl_evas_cb_show,        ec);
2452    evas_object_event_callback_add(ec->frame, EVAS_CALLBACK_HIDE,        _e_comp_wl_evas_cb_hide,        ec);
2453    evas_object_event_callback_add(ec->frame, EVAS_CALLBACK_MOVE,        _e_comp_wl_evas_cb_move,        ec);
2454
2455
2456    evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_IN,    EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_in,    ec);
2457    evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_OUT,   EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_out,   ec);
2458    evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_MOVE,  EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_move,  ec);
2459    evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_DOWN,  EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_down,  ec);
2460    evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_UP,    EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_up,    ec);
2461    evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MOUSE_WHEEL, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_mouse_wheel, ec);
2462
2463    evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MULTI_DOWN, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_multi_down, ec);
2464    evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MULTI_UP,   EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_multi_up,   ec);
2465    evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_MULTI_MOVE, EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_multi_move, ec);
2466
2467    evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_FOCUS_IN,    EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_focus_in,    ec);
2468    evas_object_event_callback_priority_add(ec->frame, EVAS_CALLBACK_FOCUS_OUT,   EVAS_CALLBACK_PRIORITY_AFTER, _e_comp_wl_evas_cb_focus_out,   ec);
2469
2470    if (!ec->override)
2471      {
2472         evas_object_smart_callback_add(ec->frame, "client_resize",   _e_comp_wl_evas_cb_resize,          ec);
2473         evas_object_smart_callback_add(ec->frame, "maximize_pre",    _e_comp_wl_evas_cb_maximize_pre,    ec);
2474         evas_object_smart_callback_add(ec->frame, "maximize_done",   _e_comp_wl_evas_cb_maximize_done,   ec);
2475         evas_object_smart_callback_add(ec->frame, "unmaximize_pre",  _e_comp_wl_evas_cb_unmaximize_pre,  ec);
2476         evas_object_smart_callback_add(ec->frame, "unmaximize_done", _e_comp_wl_evas_cb_unmaximize_done, ec);
2477         evas_object_smart_callback_add(ec->frame, "fullscreen",      _e_comp_wl_evas_cb_fullscreen,      ec);
2478         evas_object_smart_callback_add(ec->frame, "unfullscreen",    _e_comp_wl_evas_cb_unfullscreen,    ec);
2479      }
2480
2481    /* setup delete/kill callbacks */
2482    evas_object_smart_callback_add(ec->frame, "delete_request", _e_comp_wl_evas_cb_delete_request, ec);
2483    evas_object_smart_callback_add(ec->frame, "kill_request",   _e_comp_wl_evas_cb_kill_request,   ec);
2484
2485    /* setup ping callback */
2486    evas_object_smart_callback_add(ec->frame, "ping",           _e_comp_wl_evas_cb_ping,           ec);
2487    evas_object_smart_callback_add(ec->frame, "color_set",      _e_comp_wl_evas_cb_color_set,      ec);
2488
2489    ec->comp_data->evas_init = EINA_TRUE;
2490 }
2491
2492 static void
2493 _e_comp_wl_client_evas_deinit(E_Client *ec)
2494 {
2495    if (!ec || !ec->comp_data) return;
2496    if (!ec->comp_data->evas_init) return;
2497
2498    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_SHOW, _e_comp_wl_evas_cb_show);
2499    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_HIDE, _e_comp_wl_evas_cb_hide);
2500    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOVE, _e_comp_wl_evas_cb_move);
2501
2502    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_IN,    _e_comp_wl_evas_cb_mouse_in);
2503    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_OUT,   _e_comp_wl_evas_cb_mouse_out);
2504    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_MOVE,  _e_comp_wl_evas_cb_mouse_move);
2505    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_DOWN,  _e_comp_wl_evas_cb_mouse_down);
2506    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_UP,    _e_comp_wl_evas_cb_mouse_up);
2507    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MOUSE_WHEEL, _e_comp_wl_evas_cb_mouse_wheel);
2508
2509    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MULTI_DOWN, _e_comp_wl_evas_cb_multi_down);
2510    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MULTI_UP,   _e_comp_wl_evas_cb_multi_up);
2511    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_MULTI_MOVE, _e_comp_wl_evas_cb_multi_move);
2512
2513    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_FOCUS_IN,  _e_comp_wl_evas_cb_focus_in);
2514    evas_object_event_callback_del(ec->frame, EVAS_CALLBACK_FOCUS_OUT, _e_comp_wl_evas_cb_focus_out);
2515
2516    if (!ec->override)
2517      {
2518         evas_object_smart_callback_del(ec->frame, "client_resize",   _e_comp_wl_evas_cb_resize);
2519         evas_object_smart_callback_del(ec->frame, "maximize_pre",    _e_comp_wl_evas_cb_maximize_pre);
2520         evas_object_smart_callback_del(ec->frame, "maximize_done",   _e_comp_wl_evas_cb_maximize_done);
2521         evas_object_smart_callback_del(ec->frame, "unmaximize_pre",  _e_comp_wl_evas_cb_unmaximize_pre);
2522         evas_object_smart_callback_del(ec->frame, "unmaximize_done", _e_comp_wl_evas_cb_unmaximize_done);
2523         evas_object_smart_callback_del(ec->frame, "fullscreen",      _e_comp_wl_evas_cb_fullscreen);
2524         evas_object_smart_callback_del(ec->frame, "unfullscreen",    _e_comp_wl_evas_cb_unfullscreen);
2525      }
2526
2527    evas_object_smart_callback_del(ec->frame, "delete_request", _e_comp_wl_evas_cb_delete_request);
2528    evas_object_smart_callback_del(ec->frame, "kill_request",   _e_comp_wl_evas_cb_kill_request);
2529
2530    evas_object_smart_callback_del(ec->frame, "ping",           _e_comp_wl_evas_cb_ping);
2531    evas_object_smart_callback_del(ec->frame, "color_set",      _e_comp_wl_evas_cb_color_set);
2532
2533    ec->comp_data->evas_init = EINA_FALSE;
2534 }
2535
2536 static Eina_Bool
2537 _e_comp_wl_cb_randr_change(void *data EINA_UNUSED, int type EINA_UNUSED, void *event EINA_UNUSED)
2538 {
2539    Eina_List *l;
2540    E_Output *eout;
2541    E_Comp_Screen *e_comp_screen;
2542    unsigned int transform = WL_OUTPUT_TRANSFORM_NORMAL;
2543
2544    if (!e_comp) return ECORE_CALLBACK_RENEW;
2545    if (!e_comp->e_comp_screen) return ECORE_CALLBACK_RENEW;
2546    e_comp_screen = e_comp->e_comp_screen;
2547
2548    EINA_LIST_FOREACH(e_comp_screen->outputs, l, eout)
2549      {
2550         if (!eout->config.enabled)
2551           {
2552              e_comp_wl_output_remove(eout->id);
2553              continue;
2554           }
2555
2556         switch (eout->config.rotation)
2557           {
2558            case 90:
2559              transform = WL_OUTPUT_TRANSFORM_90;
2560              break;
2561            case 180:
2562              transform = WL_OUTPUT_TRANSFORM_180;
2563              break;
2564            case 270:
2565              transform = WL_OUTPUT_TRANSFORM_270;
2566              break;
2567            case 0:
2568            default:
2569              transform = WL_OUTPUT_TRANSFORM_NORMAL;
2570              break;
2571           }
2572
2573         if (!e_comp_wl_output_init(eout->id, eout->info.name,
2574                                    eout->info.screen,
2575                                    eout->config.geom.x, eout->config.geom.y,
2576                                    eout->config.geom.w, eout->config.geom.h,
2577                                    eout->info.size.w, eout->info.size.h,
2578                                    eout->config.mode.refresh, 0, transform))
2579           ERR("Could not initialize screen %s", eout->info.name);
2580      }
2581
2582    return ECORE_CALLBACK_RENEW;
2583 }
2584
2585 static Eina_Bool
2586 _e_comp_wl_cb_comp_object_add(void *data EINA_UNUSED, int type EINA_UNUSED, E_Event_Comp_Object *ev)
2587 {
2588    E_Client *ec;
2589
2590    /* try to get the client from the object */
2591    if (!(ec = e_comp_object_client_get(ev->comp_object)))
2592      return ECORE_CALLBACK_RENEW;
2593
2594    /* check for client being deleted */
2595    if (e_object_is_del(E_OBJECT(ec))) return ECORE_CALLBACK_RENEW;
2596
2597    /* check for wayland pixmap */
2598    if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL)
2599      return ECORE_CALLBACK_RENEW;
2600
2601    /* if we have not setup evas callbacks for this client, do it */
2602    if (!ec->comp_data->evas_init) _e_comp_wl_client_evas_init(ec);
2603
2604    return ECORE_CALLBACK_RENEW;
2605 }
2606
2607 static Eina_Bool
2608 _e_comp_wl_cb_mouse_move(void *d EINA_UNUSED, int t EINA_UNUSED, Ecore_Event_Mouse_Move *ev)
2609 {
2610    int ec_x, ec_y;
2611
2612    e_comp_wl->ptr.x = wl_fixed_from_int(ev->x);
2613    e_comp_wl->ptr.y = wl_fixed_from_int(ev->y);
2614
2615    if (e_comp_wl->selection.target &&
2616        e_comp_wl->drag)
2617      {
2618         struct wl_resource *res;
2619         int x, y;
2620         E_Client *ec = NULL;
2621         E_Client *legacy_target = e_comp_wl->selection.target;
2622         int device_id = e_comp_wl_data_current_device_id_get();
2623
2624         if (device_id < 0)
2625           {
2626              e_comp_wl_data_current_device_id_set(ev->multi.device);
2627           }
2628         else if (device_id != ev->multi.device)
2629           {
2630              return ECORE_CALLBACK_RENEW;
2631           }
2632
2633         ec = e_client_under_position_input_get(legacy_target->desk, ev->x, ev->y);
2634         EINA_SAFETY_ON_NULL_RETURN_VAL(ec, ECORE_CALLBACK_RENEW);
2635
2636         struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
2637         EINA_SAFETY_ON_NULL_RETURN_VAL(surface, ECORE_CALLBACK_RENEW);
2638
2639         res = e_comp_wl_data_find_for_client(wl_resource_get_client(surface));
2640         EINA_SAFETY_ON_NULL_RETURN_VAL(res, ECORE_CALLBACK_RENEW);
2641
2642         if ((e_comp_wl->drag_offer != wl_resource_get_user_data(res)) &&
2643             (ec != legacy_target))
2644           {
2645              e_comp_wl_data_device_send_leave(legacy_target);
2646              e_comp_wl_data_device_send_enter(ec);
2647           }
2648
2649         if (e_comp_wl->drag)
2650           e_drag_move(e_comp_wl->drag, ev->x, ev->y);
2651
2652         if (e_client_transform_core_enable_get(ec))
2653           {
2654              int trans_x, trans_y;
2655              e_client_transform_core_input_transform(ec, ev->x, ev->y, &trans_x, &trans_y);
2656              x = trans_x - ec->client.x;
2657              y = trans_y - ec->client.y;
2658           }
2659         else
2660           {
2661              e_client_geometry_get(ec, &ec_x, &ec_y, NULL, NULL);
2662              x = ev->x - ec_x;
2663              y = ev->y - ec_y;
2664           }
2665
2666         wl_data_device_send_motion(res, ev->timestamp, wl_fixed_from_int(x), wl_fixed_from_int(y));
2667      }
2668
2669    return ECORE_CALLBACK_RENEW;
2670 }
2671
2672 static Eina_Bool
2673 _e_comp_wl_cb_mouse_relative_move(void *d EINA_UNUSED, int t EINA_UNUSED, Ecore_Event_Mouse_Relative_Move *ev)
2674 {
2675    E_Client *ec;
2676    struct wl_resource *surface;
2677    struct wl_resource *res;
2678    struct wl_client *wc;
2679    Eina_List *l;
2680    E_Comp_Config *comp_conf;
2681
2682    ec = e_comp_wl->ptr_constraints.ec;
2683    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, ECORE_CALLBACK_RENEW);
2684
2685    surface = e_comp_wl_client_surface_get(ec);
2686    EINA_SAFETY_ON_NULL_RETURN_VAL(surface, ECORE_CALLBACK_RENEW);
2687
2688    wc = wl_resource_get_client(surface);
2689
2690    comp_conf = e_comp_config_get();
2691
2692    EINA_LIST_FOREACH(e_comp_wl->relative_ptr.resources, l, res)
2693      {
2694         if (!e_comp_wl_input_relative_pointer_check(res)) continue;
2695         if (wl_resource_get_client(res) != wc) continue;
2696
2697         if (comp_conf && comp_conf->input_log_enable)
2698           ELOGF("Mouse", "Relative Move (time: %d, dx:%d dy:%d, unaccel(%d, %d) name:%20s)",
2699                 ec, ev->timestamp, ev->dx, ev->dy, ev->dx_unaccel, ev->dy_unaccel,
2700                 e_client_util_name_get(ec));
2701
2702         zwp_relative_pointer_v1_send_relative_motion(res,
2703                                                      0,
2704                                                      (uint32_t)(ev->timestamp),
2705                                                      wl_fixed_from_int(ev->dx),
2706                                                      wl_fixed_from_int(ev->dy),
2707                                                      wl_fixed_from_int(ev->dx_unaccel),
2708                                                      wl_fixed_from_int(ev->dy_unaccel));
2709      }
2710
2711    return ECORE_CALLBACK_DONE;
2712 }
2713
2714 static Eina_Bool
2715 _e_comp_wl_cb_mouse_button_cancel(void *d EINA_UNUSED, int t EINA_UNUSED, Ecore_Event_Mouse_Button *ev)
2716 {
2717    _e_comp_wl_touch_cancel();
2718
2719    return ECORE_CALLBACK_PASS_ON;
2720 }
2721
2722 static Eina_Bool
2723 _e_comp_wl_cb_zone_display_state_change(void *d EINA_UNUSED, int t EINA_UNUSED, E_Event_Zone_Display_State_Change *ev)
2724 {
2725    if (!ev) return ECORE_CALLBACK_PASS_ON;
2726
2727    E_Zone *zone = ev->zone;
2728
2729    E_OBJECT_CHECK_RETURN(zone, ECORE_CALLBACK_PASS_ON);
2730    E_OBJECT_TYPE_CHECK_RETURN(zone, E_ZONE_TYPE, ECORE_CALLBACK_PASS_ON);
2731
2732    if (!e_zone_is_displaying(zone))
2733      _e_comp_wl_touch_cancel();
2734
2735    return ECORE_CALLBACK_PASS_ON;
2736 }
2737
2738 static Eina_Bool
2739 _e_comp_wl_cb_client_rot_change_begin(void *d EINA_UNUSED, int t EINA_UNUSED, E_Event_Client_Rotation_Change_Begin *ev)
2740 {
2741    E_Client *ec = ev->ec;
2742    E_Comp_Wl_Buffer_Viewport *vp;
2743
2744    if (!ec) return ECORE_CALLBACK_PASS_ON;
2745    if (e_object_is_del(E_OBJECT(ec))) return ECORE_CALLBACK_PASS_ON;
2746    if (!ec->comp_data) return ECORE_CALLBACK_PASS_ON;
2747    if (e_comp_wl_subsurface_check(ec)) return ECORE_CALLBACK_PASS_ON;
2748    if (ec->e.state.rot.ang.next < 0) return ECORE_CALLBACK_PASS_ON;
2749
2750    vp = &ec->comp_data->scaler.buffer_viewport;
2751    vp->wait_for_transform_change = ((360 + ec->e.state.rot.ang.next - ec->e.state.rot.ang.curr) % 360) / 90;
2752
2753    DBG("ec(%p) wait_for_transform_change(%d)", ec, vp->wait_for_transform_change);
2754
2755    return ECORE_CALLBACK_PASS_ON;
2756 }
2757
2758 static Eina_Bool
2759 _e_comp_wl_cb_client_rot_change_cancel(void *d EINA_UNUSED, int t EINA_UNUSED, E_Event_Client_Rotation_Change_Cancel *ev)
2760 {
2761    E_Client *ec = ev->ec;
2762    E_Comp_Wl_Buffer_Viewport *vp;
2763
2764    if (!ec) return ECORE_CALLBACK_PASS_ON;
2765    if (e_object_is_del(E_OBJECT(ec))) return ECORE_CALLBACK_PASS_ON;
2766    if (!ec->comp_data) return ECORE_CALLBACK_PASS_ON;
2767    if (e_comp_wl_subsurface_check(ec)) return ECORE_CALLBACK_PASS_ON;
2768
2769    vp = &ec->comp_data->scaler.buffer_viewport;
2770    vp->wait_for_transform_change = 0;
2771
2772    DBG("ec(%p) wait_for_transform_change(%d) reset", ec, vp->wait_for_transform_change);
2773
2774    return ECORE_CALLBACK_PASS_ON;
2775 }
2776
2777 static Eina_Bool
2778 _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)
2779 {
2780    E_Client *focused_ec;
2781    int rotation;
2782
2783    focused_ec = e_client_focused_get();
2784    if (!focused_ec) return ECORE_CALLBACK_PASS_ON;
2785
2786    rotation = focused_ec->e.state.rot.ang.curr;
2787    e_pointer_rotation_set(e_comp->pointer, rotation);
2788
2789    return ECORE_CALLBACK_PASS_ON;
2790 }
2791
2792 static void
2793 _e_comp_wl_surface_state_size_update(E_Client *ec, E_Comp_Wl_Surface_State *state)
2794 {
2795    int prev_w, prev_h;
2796    Eina_Rectangle *window;
2797
2798    prev_w = state->bw;
2799    prev_h = state->bh;
2800
2801    if (!e_pixmap_size_get(ec->pixmap, &state->bw, &state->bh)) return;
2802
2803    if ((prev_w != state->bw) ||
2804        (prev_h != state->bh))
2805      {
2806         ec->changes.buf_size = EINA_TRUE;
2807      }
2808
2809    if (e_comp_object_frame_exists(ec->frame)) return;
2810    window = &ec->comp_data->shell.window;
2811    if ((!ec->borderless) && /* FIXME temporarily added this check code
2812                              * to prevent updating E_Client's size by frame */
2813        (window->x || window->y || window->w || window->h))
2814      {
2815         e_comp_object_frame_geometry_set(ec->frame,
2816                                          -window->x,
2817                                          (window->x + window->w) - state->bw,
2818                                          -window->y,
2819                                          (window->y + window->h) - state->bh);
2820      }
2821    else
2822      e_comp_object_frame_geometry_set(ec->frame, 0, 0, 0, 0);
2823 }
2824
2825 static void
2826 _e_comp_wl_surface_state_cb_buffer_destroy(struct wl_listener *listener, void *data EINA_UNUSED)
2827 {
2828    E_Comp_Wl_Surface_State *state;
2829
2830    state =
2831      container_of(listener, E_Comp_Wl_Surface_State, buffer_destroy_listener);
2832    state->buffer = NULL;
2833 }
2834
2835 static void
2836 _e_comp_wl_surface_state_init(E_Comp_Wl_Surface_State *state, int w, int h)
2837 {
2838    state->new_attach = EINA_FALSE;
2839    state->buffer = NULL;
2840    state->buffer_destroy_listener.notify =
2841      _e_comp_wl_surface_state_cb_buffer_destroy;
2842    state->sx = state->sy = 0;
2843
2844    state->input = eina_tiler_new(w, h);
2845    eina_tiler_tile_size_set(state->input, 1, 1);
2846
2847    state->opaque = eina_tiler_new(w, h);
2848    eina_tiler_tile_size_set(state->opaque, 1, 1);
2849
2850    state->buffer_viewport.buffer.transform = WL_OUTPUT_TRANSFORM_NORMAL;
2851    state->buffer_viewport.buffer.scale = 1;
2852    state->buffer_viewport.buffer.src_width = wl_fixed_from_int(-1);
2853    state->buffer_viewport.surface.width = -1;
2854    state->buffer_viewport.changed = 0;
2855
2856    e_presentation_time_container_init(&state->presentation_container);
2857 }
2858
2859 static void
2860 _e_comp_wl_surface_state_finish(E_Comp_Wl_Surface_State *state)
2861 {
2862    struct wl_resource *cb;
2863    Eina_Rectangle *dmg;
2864
2865    EINA_LIST_FREE(state->frames, cb)
2866      wl_resource_destroy(cb);
2867
2868    EINA_LIST_FREE(state->damages, dmg)
2869      eina_rectangle_free(dmg);
2870
2871    EINA_LIST_FREE(state->buffer_damages, dmg)
2872      eina_rectangle_free(dmg);
2873
2874    if (state->opaque) eina_tiler_free(state->opaque);
2875    state->opaque = NULL;
2876
2877    if (state->input) eina_tiler_free(state->input);
2878    state->input = NULL;
2879
2880    if (state->buffer) wl_list_remove(&state->buffer_destroy_listener.link);
2881    state->buffer = NULL;
2882
2883    e_presentation_time_container_finish(&state->presentation_container);
2884 }
2885
2886 static void
2887 _e_comp_wl_surface_state_buffer_set(E_Comp_Wl_Surface_State *state, E_Comp_Wl_Buffer *buffer)
2888 {
2889    if (state->buffer == buffer) return;
2890    if (state->buffer)
2891      wl_list_remove(&state->buffer_destroy_listener.link);
2892    state->buffer = buffer;
2893    if (state->buffer)
2894      wl_signal_add(&state->buffer->destroy_signal,
2895                    &state->buffer_destroy_listener);
2896 }
2897
2898 static void
2899 _e_comp_wl_surface_state_commit(E_Client *ec, E_Comp_Wl_Surface_State *state)
2900 {
2901    Eina_Rectangle *dmg;
2902    Eina_Bool placed = EINA_TRUE;
2903    int x = 0, y = 0;
2904    int w, h;
2905    int nw, nh;
2906    E_Comp_Wl_Buffer *buffer;
2907    struct wl_resource *cb;
2908    Eina_List *l, *ll;
2909    E_Comp_Wl_Client_Data *cdata = e_client_cdata_get(ec);
2910    E_Comp_Wl_Buffer_Viewport *vp = &cdata->scaler.buffer_viewport;
2911    E_Zone *zone;
2912
2913    if (ec->ignored)
2914      {
2915         if ((ec->internal) ||
2916             (cdata->shell.surface && state->new_attach))
2917           {
2918              EC_CHANGED(ec);
2919              ec->new_client = 1;
2920              e_comp->new_clients++;
2921              ELOGF("COMP", "Unignore", ec);
2922              e_client_unignore(ec);
2923           }
2924      }
2925
2926    /* buffer transform */
2927    if (vp->buffer.transform != state->buffer_viewport.buffer.transform)
2928      {
2929         E_Output *eout;
2930         int transform_change = (4 + state->buffer_viewport.buffer.transform - vp->buffer.transform) & 0x3;
2931
2932         /* when buffer is transformed, we have to apply the new evas-map */
2933         state->buffer_viewport.changed = EINA_TRUE;
2934
2935         ELOGF("TRANSFORM", "buffer_transform changed: old(%d) new(%d)",
2936               ec,
2937               vp->buffer.transform, state->buffer_viewport.buffer.transform);
2938
2939         if (transform_change == vp->wait_for_transform_change)
2940           vp->wait_for_transform_change = 0;
2941
2942         // TODO: This logic has to move to e_comp_hwc or e_hwc_window and it is
2943         //       triggered by E_CLIENT_HOOK calls at those file.
2944         zone = e_comp_zone_find_by_ec(ec);
2945         if (zone)
2946           {
2947              eout = e_output_find(zone->output_id);
2948              if (eout && eout->hwc)
2949                {
2950                   if (e_hwc_policy_get(eout->hwc) == E_HWC_POLICY_PLANES)
2951                     {
2952                        if (e_comp_is_on_overlay(ec))
2953                          e_comp_hwc_client_end(ec, __FUNCTION__);
2954                     }
2955                }
2956           }
2957      }
2958
2959    /* assign a new buffer_vieport to cdata->scaler.buffer_viewport */
2960    cdata->scaler.buffer_viewport = state->buffer_viewport;
2961
2962    if (state->new_attach)
2963      {
2964         e_comp_wl_surface_attach(ec, state->buffer);
2965      }
2966
2967    /* emit a apply_viewport signal when the information of viewport and buffer is ready */
2968    wl_signal_emit(&cdata->apply_viewport_signal, &cdata->surface);
2969
2970    _e_comp_wl_surface_state_buffer_set(state, NULL);
2971
2972    if ((state->new_attach) ||
2973        (state->buffer_viewport.changed))
2974      {
2975         _e_comp_wl_surface_state_size_update(ec, state);
2976         e_comp_wl_map_size_cal_from_viewport(ec);
2977
2978         /* update the position */
2979         if (ec->changes.pos)
2980           {
2981              e_comp_object_frame_xy_unadjust(ec->frame,
2982                                              ec->x, ec->y,
2983                                              &x, &y);
2984           }
2985         else
2986           {
2987              x = ec->client.x;
2988              y = ec->client.y;
2989           }
2990
2991         if (ec->new_client) placed = ec->placed;
2992
2993         if (!ec->lock_client_size)
2994           {
2995              w = ec->w;
2996              h = ec->h;
2997
2998              ec->client.w = state->bw;
2999              ec->client.h = state->bh;
3000
3001              e_comp_object_frame_wh_adjust(ec->frame,
3002                                            ec->client.w, ec->client.h,
3003                                            &nw, &nh);
3004              e_client_size_set(ec, nw, nh);
3005
3006              if ((w != ec->w) || (h != ec->h))
3007                {
3008                   ec->changes.size = 1;
3009                   EC_CHANGED(ec);
3010                }
3011           }
3012
3013         if (ec->changes.buf_size)
3014           {
3015              ELOGF("COMP", "Buffer size is changed. size(%d,%d)", ec, state->bw, state->bh);
3016              _e_comp_wl_hook_call(E_COMP_WL_HOOK_BUFFER_SIZE_CHANGE, ec);
3017              ec->changes.buf_size = EINA_FALSE;
3018
3019              if (ec->move_after_resize)
3020                {
3021                   ELOGF("POSSIZE", "Unset move_after_resize. ec_geo(%d,%d,%dx%d)", ec, ec->x, ec->y, ec->w, ec->h);
3022                   ec->move_after_resize = EINA_FALSE;
3023                }
3024           }
3025      }
3026
3027    /* map or unmap ec */
3028    Eina_Bool pixmap_usable = e_pixmap_usable_get(ec->pixmap);
3029    Eina_Bool hide_by_request = e_client_hide_by_request_get(ec);
3030    if (!pixmap_usable || hide_by_request)
3031      {
3032         /* unmap ec */
3033         if (cdata->mapped)
3034           {
3035              ELOGF("COMP", "Unmap. pixmap_usable:%d", ec, pixmap_usable);
3036
3037              e_client_hide(ec);
3038           }
3039
3040         if ((cdata->sub.below_obj) &&
3041             (evas_object_visible_get(cdata->sub.below_obj)))
3042           {
3043              evas_object_hide(cdata->sub.below_obj);
3044           }
3045      }
3046    else
3047      {
3048         /* map ec */
3049         e_client_show(ec);
3050
3051         if ((cdata->sub.below_obj) &&
3052             (!evas_object_visible_get(cdata->sub.below_obj)) &&
3053             (evas_object_visible_get(ec->frame)))
3054           {
3055              evas_object_show(cdata->sub.below_obj);
3056           }
3057      }
3058
3059    if ((state->new_attach) ||
3060        (state->buffer_viewport.changed))
3061      {
3062         if ((e_comp_wl->drag) &&
3063             (e_comp_wl->drag_client) &&
3064             (e_comp_wl->drag_client == ec))
3065           {
3066              e_drag_reference_point_set(e_comp_wl->drag, state->sx, state->sy);
3067
3068              e_drag_move(e_comp_wl->drag,
3069                          e_comp_wl->drag->x,
3070                          e_comp_wl->drag->y);
3071
3072              e_drag_resize(e_comp_wl->drag,
3073                            state->bw, state->bh);
3074           }
3075         else if ((cdata->shell.surface) &&
3076                  (cdata->shell.configure))
3077           {
3078              e_comp_wl_commit_sync_configure(ec);
3079           }
3080         else if (!e_client_video_hw_composition_check(ec))
3081           {
3082              e_client_util_move_resize_without_frame(ec, x, y, ec->w, ec->h);
3083           }
3084
3085         if (ec->new_client)
3086           {
3087              ec->placed = placed;
3088              ec->want_focus |= ec->icccm.accepts_focus && (!ec->override);
3089           }
3090      }
3091
3092    if (cdata->scaler.buffer_viewport.changed)
3093      e_comp_wl_map_apply(ec);
3094
3095    /* resize transform object */
3096    if (ec->transformed)
3097      e_client_transform_update(ec);
3098
3099    state->sx = 0;
3100    state->sy = 0;
3101    state->new_attach = EINA_FALSE;
3102
3103    EINA_LIST_FOREACH_SAFE(cdata->frames, l, ll, cb)
3104      {
3105         wl_callback_send_done(cb, (unsigned int)(ecore_loop_time_get() * 1000));
3106         wl_resource_destroy(cb);
3107      }
3108
3109    /* insert state frame callbacks into comp_data->frames
3110     * NB: This clears state->frames list */
3111    cdata->frames = eina_list_merge(cdata->frames,
3112                                            state->frames);
3113    state->frames = NULL;
3114
3115    e_presentation_time_container_feedback_discard(&cdata->presentation_container);
3116    e_presentation_time_container_feedback_merge(&cdata->presentation_container,
3117                                                 &state->presentation_container);
3118
3119    buffer = e_pixmap_resource_get(ec->pixmap);
3120
3121    /* put state damages into surface */
3122    if (ec->frame)
3123      {
3124         /* FIXME: workaround for bad wayland egl driver which doesn't send damage request */
3125         if (!eina_list_count(state->damages) && !eina_list_count(state->buffer_damages))
3126           {
3127              if ((cdata->buffer_ref.buffer) &&
3128                  ((cdata->buffer_ref.buffer->type == E_COMP_WL_BUFFER_TYPE_NATIVE) ||
3129                   (cdata->buffer_ref.buffer->type == E_COMP_WL_BUFFER_TYPE_TBM)))
3130                {
3131                   e_comp_object_damage(ec->frame,
3132                                        0, 0,
3133                                        cdata->buffer_ref.buffer->w,
3134                                        cdata->buffer_ref.buffer->h);
3135                }
3136           }
3137         else
3138           {
3139              Eina_List *damages = NULL;
3140
3141              if (buffer)
3142                _e_comp_wl_buffer_damage_set(buffer, state->buffer_damages);
3143
3144              if (eina_list_count(state->buffer_damages))
3145                {
3146                   EINA_LIST_FREE(state->buffer_damages, dmg)
3147                     {
3148                        if (buffer)
3149                          e_comp_wl_rect_convert_inverse(buffer->w, buffer->h,
3150                                                         e_comp_wl_output_buffer_transform_get(ec),
3151                                                         vp->buffer.scale,
3152                                                         dmg->x, dmg->y, dmg->w, dmg->h,
3153                                                         &dmg->x, &dmg->y, &dmg->w, &dmg->h);
3154                        damages = eina_list_append(damages, dmg);
3155                     }
3156                }
3157
3158              EINA_LIST_FREE(state->damages, dmg)
3159                damages = eina_list_append(damages, dmg);
3160
3161              EINA_LIST_FREE(damages, dmg)
3162                {
3163                   /* not creating damage for ec that shows a underlay video */
3164                   if (state->buffer_viewport.changed ||
3165                       !e_comp->wl_comp_data->available_hw_accel.underlay ||
3166                       !buffer || buffer->type != E_COMP_WL_BUFFER_TYPE_VIDEO)
3167                     e_comp_object_damage(ec->frame, dmg->x, dmg->y, dmg->w, dmg->h);
3168
3169                   eina_rectangle_free(dmg);
3170                }
3171           }
3172      }
3173
3174    /* put state opaque into surface */
3175    e_pixmap_image_opaque_set(ec->pixmap, 0, 0, 0, 0);
3176    if (state->opaque)
3177      {
3178         Eina_Rectangle *rect;
3179         Eina_Iterator *itr;
3180
3181         itr = eina_tiler_iterator_new(state->opaque);
3182         EINA_ITERATOR_FOREACH(itr, rect)
3183           {
3184              Eina_Rectangle r;
3185
3186              EINA_RECTANGLE_SET(&r, rect->x, rect->y, rect->w, rect->h);
3187              E_RECTS_CLIP_TO_RECT(r.x, r.y, r.w, r.h, 0, 0, state->bw, state->bh);
3188              e_pixmap_image_opaque_set(ec->pixmap, r.x, r.y, r.w, r.h);
3189              break;
3190           }
3191
3192         eina_iterator_free(itr);
3193      }
3194
3195    /* put state input into surface */
3196    if ((state->input) &&
3197        (!eina_tiler_empty(state->input)) &&
3198        ec->first_mapped)
3199      {
3200         Eina_Tiler *src, *tmp;
3201         int sw = ec->w;
3202         int sh = ec->h;
3203
3204         tmp = eina_tiler_new(sw, sh);
3205         eina_tiler_tile_size_set(tmp, 1, 1);
3206
3207         eina_tiler_rect_add(tmp,
3208                             &(Eina_Rectangle){0, 0, sw, sh});
3209
3210         if ((src = eina_tiler_intersection(state->input, tmp)))
3211           {
3212              Eina_Rectangle *rect;
3213              Eina_Iterator *itr;
3214
3215              e_comp_object_input_objs_del(ec->frame);
3216              itr = eina_tiler_iterator_new(src);
3217              EINA_ITERATOR_FOREACH(itr, rect)
3218                {
3219                   ELOGF("COMP", "Set Input Area x:%d, y:%d, w:%d, h:%d, ec(%dx%d), state(%dx%d)",
3220                         ec, rect->x, rect->y, rect->w, rect->h,
3221                         ec->w, ec->h, state->bw, state->bh);
3222                   e_comp_object_input_area_set(ec->frame,
3223                                                rect->x, rect->y,
3224                                                rect->w, rect->h);
3225                }
3226
3227              eina_iterator_free(itr);
3228              eina_tiler_free(src);
3229           }
3230         else
3231           e_comp_object_input_area_set(ec->frame, 0, 0, ec->w, ec->h);
3232
3233         eina_tiler_free(tmp);
3234
3235         /* clear input tiler */
3236         eina_tiler_clear(state->input);
3237      }
3238
3239    e_comp_wl_subsurface_check_below_bg_rectangle(ec);
3240
3241    if ((cdata->video_client) &&
3242        ((buffer) &&
3243         (buffer->type == E_COMP_WL_BUFFER_TYPE_VIDEO)) &&
3244        (e_comp->wl_comp_data->available_hw_accel.underlay))
3245      {
3246         e_pixmap_image_clear(ec->pixmap, 1);
3247      }
3248
3249    state->buffer_viewport.changed = 0;
3250
3251    wl_signal_emit(&cdata->state_commit_signal, &cdata->surface);
3252
3253    if (buffer &&
3254        ec->exp_iconify.buffer_flush &&
3255        e_policy_visibility_client_is_iconic(ec))
3256      {
3257         e_pixmap_buffer_clear(ec->pixmap, EINA_FALSE);
3258      }
3259 }
3260
3261 static void
3262 _e_comp_wl_surface_render_stop(E_Client *ec)
3263 {
3264    /* FIXME: this may be fine after e_pixmap can create textures for wl clients? */
3265    //if ((!ec->internal) && (!e_comp_gl_get()))
3266      ec->dead = 1;
3267
3268    /* check if internal animation is running */
3269    if (e_comp_object_is_animating(ec->frame)) return;
3270    /* check if external animation is running */
3271    if (evas_object_data_get(ec->frame, "effect_running")) return;
3272
3273    evas_object_hide(ec->frame);
3274 }
3275
3276 EINTERN void
3277 e_comp_wl_client_surface_finish(E_Client *ec)
3278 {
3279    struct wl_resource *res, *surface;
3280    struct wl_client *surface_client = NULL;
3281    Eina_List *l, *ll;
3282
3283    surface = e_comp_wl_client_surface_get(ec);
3284
3285    if (surface)
3286      surface_client = wl_resource_get_client(surface);
3287
3288    if (surface_client &&
3289        (ec == e_client_focused_get()))
3290      {
3291         EINA_LIST_FOREACH_SAFE(e_comp_input_key->kbd.focused, l, ll, res)
3292           {
3293              if (wl_resource_get_client(res) ==
3294                  surface_client)
3295                e_comp_input_key->kbd.focused =
3296                   eina_list_remove_list(e_comp_input_key->kbd.focused, l);
3297
3298           }
3299      }
3300
3301    e_comp_wl_client_surface_set(ec, NULL);
3302
3303    ec->comp_data->wl_surface = NULL;
3304    e_pixmap_win_id_del(ec->pixmap);
3305
3306    _e_comp_wl_surface_render_stop(ec);
3307    e_object_del(E_OBJECT(ec));
3308 }
3309
3310 static void
3311 _e_comp_wl_pname_get(pid_t pid, char *name, int size)
3312 {
3313    if (!name) return;
3314
3315    FILE *h;
3316    char proc[512], pname[512];
3317    size_t len;
3318
3319    snprintf(proc, 512,"/proc/%d/cmdline", pid);
3320
3321    h = fopen(proc, "r");
3322    if (h)
3323      {
3324         len = fread(pname, sizeof(char), 512, h);
3325         if (len > 0)
3326           pname[len - 1] = '\0';
3327         else
3328           strncpy(pname, "NO NAME", sizeof(pname));
3329
3330         fclose(h);
3331      }
3332    else
3333      {
3334         strncpy(pname, "NO NAME", sizeof(pname));
3335      }
3336
3337    strncpy(name, pname, size);
3338 }
3339
3340 static void
3341 _e_comp_wl_pname_print(pid_t pid)
3342 {
3343    FILE *h;
3344    char proc[512], pname[512];
3345    size_t len;
3346
3347    snprintf(proc, 512,"/proc/%d/cmdline", pid);
3348
3349    h = fopen(proc, "r");
3350    if (!h) return;
3351
3352    len = fread(pname, sizeof(char), 512, h);
3353    if (len > 0)
3354      pname[len - 1] = '\0';
3355    else
3356      strncpy(pname, "NO NAME", sizeof(pname));
3357
3358    fclose(h);
3359
3360    ELOGF("COMP", "         |%s", NULL, pname);
3361 }
3362
3363
3364 static void
3365 _e_comp_wl_connected_client_cb_destroy(struct wl_listener *listener, void *data)
3366 {
3367    struct wl_client *client = data;
3368    E_Comp_Connected_Client_Info *cinfo;
3369    E_Appinfo *eai;
3370
3371    cinfo = wl_container_of(listener, cinfo, destroy);
3372
3373    ELOGF("WL_CLIENT", "DESTROY  |client:%8p|%d|%d|%d",
3374          NULL, client, cinfo->pid, cinfo->uid, cinfo->gid);
3375
3376    eai = e_appinfo_find_with_pid(cinfo->pid);
3377    if (e_appinfo_owner_get(eai) == E_APPINFO_OWNER_SERVER)
3378      e_appinfo_del(eai);
3379
3380    e_comp->connected_clients = eina_list_remove(e_comp->connected_clients, cinfo);
3381
3382    wl_list_remove(&cinfo->destroy.link);
3383    eina_stringshare_del(cinfo->name);
3384    free(cinfo);
3385 }
3386
3387 static void
3388 _e_comp_wl_connected_client_create(struct wl_client *client, char *name, pid_t pid, uid_t uid, gid_t gid)
3389 {
3390    E_Comp_Connected_Client_Info *cinfo;
3391
3392    cinfo = E_NEW(E_Comp_Connected_Client_Info, 1);
3393    EINA_SAFETY_ON_NULL_RETURN(cinfo);
3394
3395    cinfo->name = eina_stringshare_add(name);
3396    cinfo->pid = pid;
3397    cinfo->uid = uid;
3398    cinfo->gid = gid;
3399    cinfo->destroy.notify = _e_comp_wl_connected_client_cb_destroy;
3400    wl_client_add_destroy_listener(client, &cinfo->destroy);
3401    e_comp->connected_clients = eina_list_append(e_comp->connected_clients, cinfo);
3402
3403    _e_comp_wl_pid_hook_call(E_COMP_WL_PID_HOOK_CONNECTED_CLIENT_CREATE, pid);
3404 }
3405
3406 static void
3407 _e_comp_wl_client_cb_focus_set(void *data EINA_UNUSED, E_Client *ec)
3408 {
3409    if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return;
3410
3411    /* send configure */
3412    if (ec->comp_data->shell.configure_send)
3413      {
3414         if (ec->comp_data->shell.surface)
3415           _e_comp_wl_configure_send(ec, 0, 0);
3416      }
3417
3418    e_comp_wl->kbd.focus = ec->comp_data->surface;
3419    e_comp_input_key->kbd.focus = ec->comp_data->surface;
3420 }
3421
3422 static void
3423 _e_comp_wl_client_cb_focus_unset(void *data EINA_UNUSED, E_Client *ec)
3424 {
3425    if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return;
3426
3427    /* send configure */
3428    if (ec->comp_data->shell.configure_send)
3429      {
3430         if (ec->comp_data->shell.surface)
3431           _e_comp_wl_configure_send(ec, 0, 0);
3432      }
3433
3434    _e_comp_wl_focus_check();
3435
3436    if (e_comp_wl->kbd.focus == ec->comp_data->surface)
3437      e_comp_wl->kbd.focus = NULL;
3438
3439    if (e_comp_input_key->kbd.focus == ec->comp_data->surface)
3440      e_comp_input_key->kbd.focus = NULL;
3441 }
3442
3443 static void
3444 _e_comp_wl_client_cb_resize_begin(void *data EINA_UNUSED, E_Client *ec)
3445 {
3446    if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return;
3447    if (ec->keyboard_resizing) return;
3448
3449    /* do nothing currently */
3450    ;
3451 }
3452
3453 static void
3454 _e_comp_wl_client_cb_resize_end(void *data EINA_UNUSED, E_Client *ec)
3455 {
3456    if (e_object_is_del(E_OBJECT(ec))) return;
3457    if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return;
3458
3459    e_comp_wl->resize.edges = 0;
3460    e_comp_wl->resize.resource = NULL;
3461 }
3462
3463 static void
3464 _e_comp_wl_client_cb_move_end(void *data EINA_UNUSED, E_Client *ec)
3465 {
3466    if (e_object_is_del(E_OBJECT(ec))) return;
3467    if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return;
3468 }
3469
3470 static void
3471 _e_comp_wl_output_info_send(E_Comp_Wl_Output *output, struct wl_resource *resource, pid_t pid, int res_w, int res_h)
3472 {
3473    int phys_w, phys_h;
3474    int ratio_w, ratio_h;
3475
3476    phys_w = output->phys_width;
3477    phys_h = output->phys_height;
3478
3479    if (e_config->configured_output_resolution.use)
3480      {
3481         // change the configured physical size(mm) of the output
3482         if (output->w != res_w)
3483           {
3484              ratio_w = res_w / output->w;
3485              phys_w = (int)((float)output->phys_width * (float)ratio_w);
3486           }
3487
3488         if (output->h != res_h)
3489           {
3490              ratio_h = res_h / output->h;
3491              phys_h = (int)((float)output->phys_height * (float)ratio_h);
3492           }
3493
3494         ELOGF("COMP_WL", "\tSend Configured Output (pid:%d)", NULL, pid);
3495      }
3496
3497    ELOGF("COMP_WL", "\t    Output Resolution: res(%d, %d) phy_size(%d, %d) (pid:%d).",
3498          NULL, res_w, res_h, phys_w, phys_h, pid);
3499
3500    if (wl_resource_get_version(resource) >= WL_OUTPUT_SCALE_SINCE_VERSION)
3501      wl_output_send_scale(resource, output->scale);
3502
3503    wl_output_send_geometry(resource, output->x, output->y,
3504                            phys_w, phys_h,
3505                            output->subpixel, output->make ?: "",
3506                            output->model ?: "", output->transform);
3507
3508    wl_output_send_mode(resource,  WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED,
3509                        res_w, res_h, output->refresh);
3510
3511    if (wl_resource_get_version(resource) >= WL_OUTPUT_DONE_SINCE_VERSION)
3512      wl_output_send_done(resource);
3513 }
3514
3515 static void
3516 _e_comp_wl_cb_output_unbind(struct wl_resource *resource)
3517 {
3518    E_Comp_Wl_Output *output;
3519
3520    if (!(output = wl_resource_get_user_data(resource))) return;
3521
3522    output->resources = eina_list_remove(output->resources, resource);
3523 }
3524
3525 static void
3526 _e_comp_wl_cb_output_bind(struct wl_client *client, void *data, uint32_t version, uint32_t id)
3527 {
3528    E_Comp_Wl_Output *output;
3529    struct wl_resource *resource;
3530    E_Appinfo *eai = NULL;
3531    pid_t pid = 0;
3532    int res_w, res_h;
3533
3534    if (!(output = data)) return;
3535
3536    resource =
3537      wl_resource_create(client, &wl_output_interface, version, id);
3538    if (!resource)
3539      {
3540         wl_client_post_no_memory(client);
3541         return;
3542      }
3543
3544    ELOGF("COMP_WL", "Bound Output: %s", NULL, output->id);
3545    ELOGF("COMP_WL", "\tOutput Geom: %d %d %d %d", NULL, output->x, output->y, output->w, output->h);
3546
3547    output->resources = eina_list_append(output->resources, resource);
3548
3549    wl_resource_set_implementation(resource, NULL, output,
3550                                   _e_comp_wl_cb_output_unbind);
3551    wl_resource_set_user_data(resource, output);
3552
3553    // set the configured_output_resolution as a resolution of the wl_output if the use is set.
3554    if (e_config->configured_output_resolution.use)
3555      {
3556         wl_client_get_credentials(client, &pid, NULL, NULL);
3557         if (pid <= 0)
3558           {
3559              res_w = e_config->configured_output_resolution.w;
3560              res_h = e_config->configured_output_resolution.h;
3561              goto send_info;
3562           }
3563
3564         eai = e_appinfo_find_with_pid(pid);
3565         if (!eai)
3566           {
3567              res_w = e_config->configured_output_resolution.w;
3568              res_h = e_config->configured_output_resolution.h;
3569              goto send_info;
3570           }
3571
3572         if (!e_appinfo_base_output_resolution_get(eai, &res_w, &res_h))
3573           {
3574              res_w = e_config->configured_output_resolution.w;
3575              res_h = e_config->configured_output_resolution.h;
3576              goto send_info;
3577           }
3578
3579         ELOGF("COMP_WL", "Get base_screen_resolution. (pid:%d).", NULL, pid);
3580      }
3581    else
3582      {
3583         res_w = output->w;
3584         res_h = output->h;
3585      }
3586
3587 send_info:
3588    _e_comp_wl_output_info_send(output, resource, pid, res_w, res_h);
3589 }
3590
3591 static void
3592 _e_comp_wl_gl_init(void *data EINA_UNUSED)
3593 {
3594    Evas *evas = NULL;
3595    Evas_GL *evasgl = NULL;
3596    Evas_GL_API *glapi = NULL;
3597    Evas_GL_Context *ctx = NULL;
3598    Evas_GL_Surface *sfc = NULL;
3599    Evas_GL_Config *cfg = NULL;
3600    Eina_Bool res;
3601    E_Comp_Wl_Evas_Gl *evas_gl = NULL;
3602
3603    if (!e_comp_gl_get()) return;
3604
3605    evas_gl = E_NEW(E_Comp_Wl_Evas_Gl, 1);
3606    EINA_SAFETY_ON_NULL_RETURN(evas_gl);
3607
3608    /* create dummy evas gl to bind wayland display of enlightenment to egl display */
3609    e_main_ts_begin("\tE_Comp_Wl_GL Init");
3610
3611    /* if wl_drm module doesn't call e_comp_canvas_init yet,
3612     * then we should get evas from ecore_evas.
3613     */
3614    if (e_comp->evas)
3615      evas = e_comp->evas;
3616    else
3617      evas = ecore_evas_get(e_comp->ee);
3618
3619    evasgl = evas_gl_new(evas);
3620    EINA_SAFETY_ON_NULL_GOTO(evasgl, err);
3621
3622    glapi = evas_gl_api_get(evasgl);
3623    EINA_SAFETY_ON_NULL_GOTO(glapi, err);
3624    EINA_SAFETY_ON_NULL_GOTO(glapi->evasglBindWaylandDisplay, err);
3625
3626    cfg = evas_gl_config_new();
3627    EINA_SAFETY_ON_NULL_GOTO(cfg, err);
3628
3629    sfc = evas_gl_surface_create(evasgl, cfg, 1, 1);
3630    EINA_SAFETY_ON_NULL_GOTO(sfc, err);
3631
3632    ctx = evas_gl_context_create(evasgl, NULL);
3633    EINA_SAFETY_ON_NULL_GOTO(ctx, err);
3634
3635    res = evas_gl_make_current(evasgl, sfc, ctx);
3636    EINA_SAFETY_ON_FALSE_GOTO(res, err);
3637
3638    res = glapi->evasglBindWaylandDisplay(evasgl, e_comp_wl->wl.disp);
3639    EINA_SAFETY_ON_FALSE_GOTO(res, err);
3640
3641    evas_gl_config_free(cfg);
3642
3643    evas_gl->gl = evasgl;
3644    evas_gl->glapi = glapi;
3645    evas_gl->glsfc = sfc;
3646    evas_gl->glctx = ctx;
3647
3648    e_comp_wl->evas_gl = evas_gl;
3649
3650    /* for native surface */
3651    e_comp->gl = 1;
3652
3653    e_main_ts_end("\tE_Comp_Wl_GL Init Done");
3654
3655    return;
3656
3657 err:
3658    evas_gl_config_free(cfg);
3659    evas_gl_make_current(evasgl, NULL, NULL);
3660    evas_gl_context_destroy(evasgl, ctx);
3661    evas_gl_surface_destroy(evasgl, sfc);
3662    evas_gl_free(evasgl);
3663    free(evas_gl);
3664 }
3665
3666 // FIXME
3667 #if 0
3668 static void
3669 _e_comp_wl_gl_popup_cb_close(void *data,
3670                              Evas_Object *obj EINA_UNUSED,
3671                              void *event_info EINA_UNUSED)
3672 {
3673    evas_object_del(data);
3674 }
3675
3676 static void
3677 _e_comp_wl_gl_popup_cb_focus(void *data,
3678                              Evas_Object *obj EINA_UNUSED,
3679                              void *event_info EINA_UNUSED)
3680 {
3681    elm_object_focus_set(data, EINA_TRUE);
3682 }
3683 #endif
3684
3685 static Eina_Bool
3686 _e_comp_wl_gl_idle(void *data)
3687 {
3688    if (!e_comp->gl)
3689      {
3690         /* show warning window to notify failure of gl init */
3691         // TODO: yigl
3692 #if 0
3693         Evas_Object *win, *bg, *popup, *btn;
3694
3695         win = elm_win_add(NULL, "compositor warning", ELM_WIN_BASIC);
3696         elm_win_title_set(win, "Compositor Warning");
3697         elm_win_autodel_set(win, EINA_TRUE);
3698         elm_win_borderless_set(win, EINA_TRUE);
3699         elm_win_role_set(win, "notification-low");
3700         elm_win_alpha_set(win, EINA_TRUE);
3701
3702         bg = evas_object_rectangle_add(evas_object_evas_get(win));
3703         evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
3704         elm_win_resize_object_add(win, bg);
3705         evas_object_color_set(bg, 125, 125, 125, 125);
3706         evas_object_show(bg);
3707
3708         popup = elm_popup_add(win);
3709         elm_object_text_set(popup,
3710                             _( "Your screen does not support OpenGL.<br>"
3711                                "Falling back to software engine."));
3712         elm_object_part_text_set(popup, "title,text", "Compositor Warning");
3713
3714         btn = elm_button_add(popup);
3715         elm_object_text_set(btn, "Close");
3716         elm_object_part_content_set(popup, "button1", btn);
3717         evas_object_show(btn);
3718
3719         evas_object_smart_callback_add(win, "focus,in", _e_comp_wl_gl_popup_cb_focus, popup);
3720         evas_object_smart_callback_add(btn, "unpressed", _e_comp_wl_gl_popup_cb_close, win);
3721
3722         evas_object_show(popup);
3723         evas_object_show(win);
3724 #endif
3725      }
3726
3727    return ECORE_CALLBACK_CANCEL;
3728 }
3729
3730 static void
3731 _e_comp_wl_cb_client_created(struct wl_listener *listener, void *data)
3732 {
3733    struct wl_client *client = data;
3734    pid_t pid = 0;
3735    uid_t uid = 0;
3736    gid_t gid = 0;
3737    char name[512];
3738
3739    wl_client_get_credentials(client, &pid, &uid, &gid);
3740
3741    ELOGF("COMP", "WL_CLIENT|client:%8p|%d|%d|%d", NULL, client, pid, uid, gid);
3742
3743    _e_comp_wl_pname_print(pid);
3744    _e_comp_wl_pname_get(pid, name, sizeof(name));
3745    _e_comp_wl_connected_client_create(client, name, pid, uid, gid);
3746 }
3747
3748 static void
3749 _e_comp_wl_ds_log_handler(enum ds_log_level level, const char *fmt, va_list args)
3750 {
3751    char buf[1024] = {0, };
3752
3753    vsnprintf(buf, 1024, fmt, args);
3754    switch (level)
3755      {
3756       case DS_DBG:
3757          DBG("[libds] %s", buf);
3758          break;
3759       case DS_INF:
3760          INF("[libds] %s", buf);
3761          break;
3762       case DS_ERR:
3763          ERR("[libds] %s", buf);
3764          break;
3765       default:
3766          break;
3767      }
3768 }
3769
3770 static Eina_Bool
3771 _e_comp_wl_display_create(void)
3772 {
3773    E_Comp_Data *comp;
3774    E_Comp_Wl_Data *wl_cdata;
3775    const char *name;
3776    int fd = 0;
3777    Eina_Bool res;
3778
3779    /* create new compositor data */
3780    if (!(comp = E_NEW(E_Comp_Data, 1)))
3781      {
3782         ERR("Could not create compositor data: %m");
3783         return EINA_FALSE;
3784      }
3785    wl_cdata = &comp->base;
3786
3787    /* set compositor wayland data */
3788    e_comp_wl = e_comp->wl_comp_data = wl_cdata;
3789
3790    g_mutex_init(&connection_mutex);
3791
3792    /* try to create a wayland display */
3793    if (!(wl_cdata->wl.disp = wl_display_create()))
3794      {
3795         ERR("Could not create a Wayland display: %m");
3796         goto disp_err;
3797      }
3798
3799    /* try to setup wayland socket */
3800    if (!(name = wl_display_add_socket_auto(wl_cdata->wl.disp)))
3801      {
3802         ERR("Could not create Wayland display socket: %m");
3803         PRCTL("[Winsys] Could not create Wayland display socket: /run/wayland-0");
3804         goto sock_err;
3805      }
3806
3807    res = e_comp_socket_init(name);
3808    EINA_SAFETY_ON_FALSE_GOTO(res, sock_err);
3809    PRCTL("[Winsys] change permission and create sym link for %s", name);
3810
3811    /* set wayland display environment variable */
3812    e_env_set("WAYLAND_DISPLAY", name);
3813
3814    /* wl_cdata->output.transform = WL_OUTPUT_TRANSFORM_NORMAL; */
3815    /* wl_cdata->output.scale = e_scale; */
3816
3817    ds_log_init(DS_DBG, _e_comp_wl_ds_log_handler);
3818
3819    if (!e_compositor_init(wl_cdata->wl.disp))
3820      {
3821         ERR("Failed to initialize compositor");
3822         goto comp_err;
3823      }
3824
3825    comp->client_created.notify = _e_comp_wl_cb_client_created;
3826    wl_display_add_client_created_listener(comp->base.wl.disp, &comp->client_created);
3827
3828    if (!e_comp_wl_subsurfaces_init())
3829      {
3830         ERR("Failed to init_subsurfaces");
3831         goto subsurfaces_err;
3832      }
3833
3834    /* initialize shm mechanism */
3835    wl_display_init_shm(wl_cdata->wl.disp);
3836
3837    /* _e_comp_wl_cb_randr_change(NULL, 0, NULL); */
3838
3839    /* try to init data manager */
3840    if (!e_comp_wl_data_manager_init())
3841      {
3842         ERR("Could not initialize data manager");
3843         goto data_err;
3844      }
3845
3846    /* try to init input */
3847    if (!e_comp_wl_input_init())
3848      {
3849         ERR("Could not initialize input");
3850         goto input_err;
3851      }
3852
3853    if (e_comp_gl_get())
3854      _e_comp_wl_gl_init(NULL);
3855
3856    /* get the wayland display loop */
3857    wl_cdata->wl.loop = wl_display_get_event_loop(wl_cdata->wl.disp);
3858
3859    /* get the file descriptor of the wayland event loop */
3860    fd = wl_event_loop_get_fd(wl_cdata->wl.loop);
3861
3862    /* create a listener for wayland main loop events */
3863    wl_cdata->fd_hdlr =
3864      ecore_main_fd_handler_add(fd, (ECORE_FD_READ | ECORE_FD_ERROR),
3865                                _e_comp_wl_cb_read, wl_cdata, NULL, NULL);
3866    ecore_main_fd_handler_prepare_callback_set(wl_cdata->fd_hdlr,
3867                                               _e_comp_wl_cb_prepare, wl_cdata);
3868
3869    /* add awake handler */
3870    ecore_main_awake_handler_add(_e_comp_wl_cb_awake, NULL);
3871
3872    return EINA_TRUE;
3873
3874 input_err:
3875    e_comp_wl_data_manager_shutdown();
3876 data_err:
3877    e_comp_wl_subsurfaces_shutdown();
3878 subsurfaces_err:
3879    wl_list_remove(&comp->client_created.link);
3880 comp_err:
3881    e_env_unset("WAYLAND_DISPLAY");
3882 sock_err:
3883    wl_display_destroy(wl_cdata->wl.disp);
3884 disp_err:
3885    g_mutex_clear(&connection_mutex);
3886    free(comp);
3887    return EINA_FALSE;
3888 }
3889
3890 static void
3891 _e_comp_wl_gl_shutdown(void)
3892 {
3893    if (!e_comp_wl->evas_gl) return;
3894
3895    e_comp_wl->evas_gl->glapi->evasglUnbindWaylandDisplay(e_comp_wl->evas_gl->gl, e_comp_wl->wl.disp);
3896
3897    evas_gl_make_current(e_comp_wl->evas_gl->gl, NULL, NULL);
3898    evas_gl_context_destroy(e_comp_wl->evas_gl->gl, e_comp_wl->evas_gl->glctx);
3899    evas_gl_surface_destroy(e_comp_wl->evas_gl->gl, e_comp_wl->evas_gl->glsfc);
3900    evas_gl_free(e_comp_wl->evas_gl->gl);
3901
3902    E_FREE(e_comp_wl->evas_gl);
3903 }
3904
3905 /* public functions */
3906
3907 /**
3908  * Creates and initializes a Wayland compositor with ecore.
3909  * Registers callback handlers for keyboard and mouse activity
3910  * and other client events.
3911  *
3912  * @returns true on success, false if initialization failed.
3913  */
3914 EINTERN Eina_Bool
3915 e_comp_wl_init(void)
3916 {
3917    TRACE_DS_BEGIN(COMP_WL:INIT);
3918
3919    /* try to create a wayland compositor */
3920    if (!_e_comp_wl_display_create())
3921      {
3922         e_error_message_show(_("Enlightenment cannot create a Wayland Compositor!\n"));
3923         TRACE_DS_END();
3924         return EINA_FALSE;
3925      }
3926
3927    e_comp_wl_shell_init();
3928    e_wtz_shell_init();
3929 #ifdef HAVE_WAYLAND_TBM
3930    e_comp_wl_tbm_init();
3931 #endif
3932    e_comp_wl_remote_surface_init();
3933
3934    e_pixmap_init();
3935
3936    e_comp_wl_screenshooter_init();
3937
3938    if (!e_comp_wl_video_init())
3939      ELOGF("COMP", "Failed to initialize the e_comp_wl_video", NULL);
3940
3941    e_comp_wl_viewport_init();
3942    e_comp_wl_capture_init();
3943    e_comp_wl_renderer_init();
3944    _e_comp_wl_move_resize_init();
3945    e_presentation_time_init();
3946    ds_single_pixel_buffer_manager_v1_create(e_comp_wl->wl.disp);
3947    e_blender_init();
3948    e_blur_manager_init();
3949
3950    if (!e_foreign_global_init(e_comp_wl->wl.disp))
3951      ELOGF("COMP", "Failed to initialize the e_foreign global", NULL);
3952
3953    /* add event handlers to catch E events */
3954    E_LIST_HANDLER_APPEND(handlers, E_EVENT_SCREEN_CHANGE,            _e_comp_wl_cb_randr_change,        NULL);
3955    E_LIST_HANDLER_APPEND(handlers, E_EVENT_COMP_OBJECT_ADD,         _e_comp_wl_cb_comp_object_add,     NULL);
3956    E_LIST_HANDLER_PREPEND(handlers, ECORE_EVENT_MOUSE_MOVE,          _e_comp_wl_cb_mouse_move,          NULL);
3957    E_LIST_HANDLER_APPEND(handlers, ECORE_EVENT_MOUSE_RELATIVE_MOVE,  _e_comp_wl_cb_mouse_relative_move, NULL);
3958    E_LIST_HANDLER_PREPEND(handlers, ECORE_EVENT_MOUSE_BUTTON_CANCEL, _e_comp_wl_cb_mouse_button_cancel, NULL);
3959    E_LIST_HANDLER_APPEND(handlers, E_EVENT_ZONE_DISPLAY_STATE_CHANGE, _e_comp_wl_cb_zone_display_state_change, NULL);
3960    E_LIST_HANDLER_APPEND(handlers, E_EVENT_CLIENT_ROTATION_CHANGE_BEGIN, _e_comp_wl_cb_client_rot_change_begin, NULL);
3961    E_LIST_HANDLER_APPEND(handlers, E_EVENT_CLIENT_ROTATION_CHANGE_CANCEL, _e_comp_wl_cb_client_rot_change_cancel, NULL);
3962    E_LIST_HANDLER_APPEND(handlers, E_EVENT_CLIENT_ROTATION_CHANGE_END, _e_comp_wl_cb_client_rot_change_end, NULL);
3963
3964    /* add hooks to catch e_client events */
3965    E_LIST_HOOK_APPEND(hooks, E_CLIENT_HOOK_FOCUS_SET,    _e_comp_wl_client_cb_focus_set,    NULL);
3966    E_LIST_HOOK_APPEND(hooks, E_CLIENT_HOOK_FOCUS_UNSET,  _e_comp_wl_client_cb_focus_unset,  NULL);
3967    E_LIST_HOOK_APPEND(hooks, E_CLIENT_HOOK_RESIZE_BEGIN, _e_comp_wl_client_cb_resize_begin, NULL);
3968    E_LIST_HOOK_APPEND(hooks, E_CLIENT_HOOK_RESIZE_END,   _e_comp_wl_client_cb_resize_end,   NULL);
3969    E_LIST_HOOK_APPEND(hooks, E_CLIENT_HOOK_MOVE_END,     _e_comp_wl_client_cb_move_end,     NULL);
3970
3971    TRACE_DS_END();
3972    return EINA_TRUE;
3973 }
3974
3975 EINTERN void
3976 e_comp_wl_deferred_job(void)
3977 {
3978    ecore_idle_enterer_add(_e_comp_wl_gl_idle, NULL);
3979 }
3980
3981 /* internal functions */
3982 EINTERN void
3983 e_comp_wl_shutdown(void)
3984 {
3985    E_Comp_Data *comp = (E_Comp_Data *)e_comp_wl;
3986
3987    e_comp_wl_subsurfaces_shutdown();
3988    /* free handlers */
3989    E_FREE_LIST(handlers, ecore_event_handler_del);
3990    E_FREE_LIST(hooks, e_client_hook_del);
3991    _e_comp_wl_gl_shutdown();
3992
3993    e_presentation_time_shutdown();
3994    e_comp_wl_renderer_shutdown();
3995    e_comp_wl_capture_shutdown();
3996    e_comp_wl_viewport_shutdown();
3997    e_comp_wl_video_shutdown();
3998    e_comp_wl_screenshooter_shutdown();
3999
4000    e_comp_wl_remote_surface_shutdown();
4001
4002    e_pixmap_shutdown();
4003
4004    e_wtz_shell_shutdown();
4005    e_comp_wl_shell_shutdown();
4006    e_comp_wl_input_shutdown();
4007
4008    wl_list_remove(&comp->client_created.link);
4009
4010    /* delete awake handler */
4011    ecore_main_awake_handler_del(_e_comp_wl_cb_awake);
4012
4013    e_comp_wl = NULL;
4014    e_comp->wl_comp_data = NULL;
4015    free(comp);
4016    // TODO: yigl
4017 #if 0
4018    E_Comp_Wl_Output *output;
4019
4020    if (e_comp_wl->screenshooter.global)
4021      wl_global_destroy(e_comp_wl->screenshooter.global);
4022
4023    EINA_LIST_FREE(e_comp_wl->outputs, output)
4024      {
4025         if (output->id) eina_stringshare_del(output->id);
4026         if (output->make) eina_stringshare_del(output->make);
4027         if (output->model) eina_stringshare_del(output->model);
4028         free(output);
4029      }
4030
4031    /* delete fd handler */
4032    if (e_comp_wl->fd_hdlr) ecore_main_fd_handler_del(e_comp_wl->fd_hdlr);
4033
4034    E_FREE_FUNC(e_comp_wl->ptr.hide_tmr, ecore_timer_del);
4035    cursor_timer_ec = NULL;
4036
4037    /* free allocated data structure */
4038    free(e_comp_wl);
4039 #endif
4040 }
4041
4042 static void
4043 e_comp_wl_surface_event_simple_free(void *d EINA_UNUSED, E_Event_Client *ev)
4044 {
4045    e_object_unref(E_OBJECT(ev->ec));
4046    free(ev);
4047 }
4048
4049 EINTERN void
4050 e_comp_wl_surface_attach(E_Client *ec, E_Comp_Wl_Buffer *buffer)
4051 {
4052    E_Event_Client *ev;
4053    ev = E_NEW(E_Event_Client, 1);
4054    if (!ev) return;
4055
4056    e_comp_wl_buffer_reference(&ec->comp_data->buffer_ref, buffer);
4057
4058    /* set usable early because shell module checks this */
4059    if (ec->comp_data->shell.surface || e_comp_wl_subsurface_check(ec))
4060      e_pixmap_usable_set(ec->pixmap, (buffer != NULL));
4061
4062    e_pixmap_resource_set(ec->pixmap, buffer);
4063    e_pixmap_dirty(ec->pixmap);
4064    e_pixmap_refresh(ec->pixmap);
4065
4066    e_comp_wl_map_size_cal_from_buffer(ec);
4067    _e_comp_wl_surface_state_size_update(ec, &ec->comp_data->pending);
4068
4069    /* wm-policy module uses it */
4070    _e_comp_wl_hook_call(E_COMP_WL_HOOK_BUFFER_CHANGE, ec);
4071
4072    ev->ec = ec;
4073    e_object_ref(E_OBJECT(ec));
4074    ecore_event_add(E_EVENT_CLIENT_BUFFER_CHANGE, ev,
4075                    (Ecore_End_Cb)e_comp_wl_surface_event_simple_free, NULL);
4076 }
4077
4078 EINTERN Eina_Bool
4079 e_comp_wl_surface_commit(E_Client *ec)
4080 {
4081    Eina_Bool ignored;
4082    int x = 0, y = 0;
4083
4084    _e_comp_wl_surface_state_commit(ec, &ec->comp_data->pending);
4085    if (!e_comp_object_damage_exists(ec->frame))
4086      {
4087         if ((ec->comp_data->video_client) ||
4088             (!e_client_video_hw_composition_check(ec)))
4089           e_pixmap_image_clear(ec->pixmap, 1);
4090      }
4091
4092    ignored = ec->ignored;
4093
4094    if (e_comp_wl_subsurface_order_commit(ec))
4095      {
4096         E_Client *topmost = e_comp_wl_topmost_parent_get(ec);
4097         e_comp_wl_subsurface_restack(topmost);
4098         e_comp_wl_subsurface_restack_bg_rectangle(topmost);
4099      }
4100
4101    ec->ignored = ignored;
4102
4103    if (ec->is_cursor && ec->visible)
4104      {
4105         /* ignore cursor changes during resize/move I guess */
4106         if (!e_client_action_get())
4107           {
4108              if (e_comp->pointer)
4109                {
4110                   x = e_comp->pointer->hot.x;
4111                   y = e_comp->pointer->hot.y;
4112                }
4113              e_pointer_object_set(e_comp->pointer, ec->frame, x, y);
4114           }
4115      }
4116    return EINA_TRUE;
4117 }
4118
4119 static E_Comp_Wl_Output *
4120 _e_comp_wl_output_get(Eina_List *outputs, const char *id)
4121 {
4122    Eina_List *l;
4123    E_Comp_Wl_Output *output;
4124
4125    EINA_LIST_FOREACH(outputs, l, output)
4126      {
4127        if (!strcmp(output->id, id))
4128          return output;
4129      }
4130
4131    return NULL;
4132 }
4133
4134 /**
4135  * Initializes information about one display output.
4136  *
4137  * Adds or updates the given data about a single display output,
4138  * with an id matching the provided id.
4139  *
4140  * @param id         identification of output to be added or changed
4141  * @param make       manufacturer name of the display output
4142  * @param model      model name of the display output
4143  * @param x          output's top left corner x coordinate
4144  * @param y          output's top left corner y coordinate
4145  * @param w          output's width in pixels
4146  * @param h          output's height in pixels
4147  * @param pw         output's physical width in millimeters
4148  * @param ph         output's physical height in millimeters
4149  * @param refresh    output's refresh rate in mHz
4150  * @param subpixel   output's subpixel layout
4151  * @param transform  output's rotation and/or mirror transformation
4152  *
4153  * @returns True if a display output object could be added or updated
4154  */
4155 EINTERN Eina_Bool
4156 e_comp_wl_output_init(const char *id, const char *make, const char *model,
4157                       int x, int y, int w, int h, int pw, int ph,
4158                       unsigned int refresh, unsigned int subpixel,
4159                       unsigned int transform)
4160 {
4161    E_Comp_Wl_Output *output;
4162    Eina_List *l2;
4163    struct wl_resource *resource;
4164
4165    /* retrieve named output; or create it if it doesn't exist */
4166    output = _e_comp_wl_output_get(e_comp_wl->outputs, id);
4167    if (!output)
4168      {
4169         if (!(output = E_NEW(E_Comp_Wl_Output, 1))) return EINA_FALSE;
4170
4171         if (id) output->id = eina_stringshare_add(id);
4172         if (make)
4173           output->make = eina_stringshare_add(make);
4174         else
4175           output->make = eina_stringshare_add("unknown");
4176         if (model)
4177           output->model = eina_stringshare_add(model);
4178         else
4179           output->model = eina_stringshare_add("unknown");
4180
4181         e_comp_wl->outputs = eina_list_append(e_comp_wl->outputs, output);
4182
4183         output->global =
4184           wl_global_create(e_comp_wl->wl.disp, &wl_output_interface,
4185                            2, output, _e_comp_wl_cb_output_bind);
4186
4187         output->resources = NULL;
4188         output->scale = e_scale;
4189      }
4190
4191    /* update the output details */
4192    output->x = x;
4193    output->y = y;
4194    output->w = w;
4195    output->h = h;
4196    output->phys_width = pw;
4197    output->phys_height = ph;
4198    output->refresh = refresh;
4199    output->subpixel = subpixel;
4200    output->transform = transform;
4201
4202    if (output->scale <= 0)
4203      output->scale = e_scale;
4204
4205    /* if we have bound resources, send updates */
4206    EINA_LIST_FOREACH(output->resources, l2, resource)
4207      {
4208         wl_output_send_geometry(resource,
4209                                 output->x, output->y,
4210                                 output->phys_width,
4211                                 output->phys_height,
4212                                 output->subpixel,
4213                                 output->make ?: "", output->model ?: "",
4214                                 output->transform);
4215
4216         if (wl_resource_get_version(resource) >= WL_OUTPUT_SCALE_SINCE_VERSION)
4217           wl_output_send_scale(resource, output->scale);
4218
4219         wl_output_send_mode(resource, WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED,
4220                             output->w, output->h, output->refresh);
4221
4222         if (wl_resource_get_version(resource) >= WL_OUTPUT_DONE_SINCE_VERSION)
4223           wl_output_send_done(resource);
4224      }
4225
4226    return EINA_TRUE;
4227 }
4228
4229 EINTERN void
4230 e_comp_wl_output_remove(const char *id)
4231 {
4232    E_Comp_Wl_Output *output;
4233
4234    output = _e_comp_wl_output_get(e_comp_wl->outputs, id);
4235    if (output)
4236      {
4237         e_comp_wl->outputs = eina_list_remove(e_comp_wl->outputs, output);
4238
4239         /* wl_global_destroy(output->global); */
4240
4241         /* eina_stringshare_del(output->id); */
4242         /* eina_stringshare_del(output->make); */
4243         /* eina_stringshare_del(output->model); */
4244
4245         /* free(output); */
4246      }
4247 }
4248
4249 static void
4250 _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)
4251 {
4252    struct wl_resource *res;
4253    Eina_List *l;
4254    uint32_t serial, keycode;
4255    struct wl_client *wc = NULL;
4256    E_Comp_Config *comp_conf = NULL;
4257    const char *device_name = NULL;
4258
4259    keycode = (ev->keycode - 8);
4260
4261    serial = wl_display_next_serial(e_comp_wl->wl.disp);
4262
4263    comp_conf = e_comp_config_get();
4264
4265    if (ec && ec->comp_data)
4266      {
4267         struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4268
4269         if (surface)
4270           wc = wl_resource_get_client(surface);
4271      }
4272
4273    if (e_config->key_input_ttrace_enable)
4274      {
4275         TRACE_INPUT_BEGIN(wl_keyboard_send_key:%s:%s, (state ? "PRESS" : "RELEASE"), ev->keyname);
4276         ELOGF("INPUT", "wl_keyboard_send_key:%s:%s|B|", NULL, (state ? "PRESS" : "RELEASE"), ev->keyname);
4277      }
4278
4279    EINA_LIST_FOREACH(key_list, l, res)
4280      {
4281         if (wl_resource_get_client(res) != wc) continue;
4282
4283         TRACE_INPUT_BEGIN(_e_comp_wl_key_send);
4284         if (!e_input_thread_mode_get())
4285           {
4286              _e_comp_wl_send_event_device(wc, ev->timestamp, ev->dev, serial);
4287              device_name = ecore_device_name_get(ev->dev);
4288           }
4289         else
4290           {
4291              if (dev)
4292                {
4293                   _e_comp_wl_send_event_e_device(wc, ev->timestamp, dev, serial);
4294                   device_name = e_device_name_get(dev);
4295                }
4296           }
4297
4298         if (comp_conf && comp_conf->input_log_enable)
4299           ELOGF("Key", "Send Key %s (time: %d, device: %s)", ec, (state ? "Down" : "Up"), ev->timestamp, device_name);
4300
4301         wl_keyboard_send_key(res, serial, ev->timestamp,
4302                              keycode, state);
4303         TRACE_INPUT_END();
4304      }
4305
4306    if (e_config->key_input_ttrace_enable)
4307      {
4308         TRACE_INPUT_END();
4309         ELOGF("INPUT", "wl_keyboard_send_key|E|", NULL);
4310      }
4311 }
4312
4313 EINTERN Eina_Bool
4314 e_comp_wl_key_down(Ecore_Event_Key *ev, E_Device *dev)
4315 {
4316    E_Client *ec = NULL;
4317    uint32_t keycode;
4318    E_Comp_Wl_Key_Data *end, *k;
4319
4320    if (ev->window != e_comp->ee_win)
4321      {
4322         return EINA_FALSE;
4323      }
4324
4325    keycode = (ev->keycode - 8);
4326    if (!(e_comp_wl = e_comp->wl_comp_data))
4327      {
4328         return EINA_FALSE;
4329      }
4330
4331 #ifndef E_RELEASE_BUILD
4332    if ((ev->modifiers & ECORE_EVENT_MODIFIER_CTRL) &&
4333        ((ev->modifiers & ECORE_EVENT_MODIFIER_ALT) ||
4334        (ev->modifiers & ECORE_EVENT_MODIFIER_ALTGR)) &&
4335        eina_streq(ev->key, "BackSpace"))
4336      {
4337         exit(0);
4338      }
4339 #endif
4340
4341    end = (E_Comp_Wl_Key_Data *)e_comp_input_key->kbd.keys.data + (e_comp_input_key->kbd.keys.size / sizeof(*k));
4342
4343    for (k = e_comp_input_key->kbd.keys.data; k < end; k++)
4344      {
4345         /* ignore server-generated key repeats */
4346         if (k->key == keycode)
4347           {
4348              return EINA_FALSE;
4349           }
4350      }
4351
4352    if ((!e_client_action_get()) && (!e_comp->input_key_grabs))
4353      {
4354         ec = e_client_focused_get();
4355         struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4356         if (ec && ec->comp_data && surface)
4357           {
4358              if (e_comp_input_key->kbd.focused)
4359                {
4360                   _e_comp_wl_key_send(ev, dev, WL_KEYBOARD_KEY_STATE_PRESSED, e_comp_input_key->kbd.focused, ec);
4361
4362                   /* A key only sent to clients is added to the list */
4363                   e_comp_wl->kbd.keys.size = (const char *)end - (const char *)e_comp_wl->kbd.keys.data;
4364
4365                   if (!(k = wl_array_add(&e_comp_wl->kbd.keys, sizeof(*k))))
4366                     {
4367                        DBG("wl_array_add: Out of memory\n");
4368                        return EINA_FALSE;
4369                     }
4370
4371                   e_comp_input_key->kbd.keys.size = (const char *)end - (const char *)e_comp_input_key->kbd.keys.data;
4372
4373                   if (!(k = wl_array_add(&e_comp_input_key->kbd.keys, sizeof(*k))))
4374                     {
4375                        DBG("wl_array_add: Out of memory\n");
4376                        return EINA_FALSE;
4377                     }
4378                   k->key = keycode;
4379                   k->dev = ev->dev;
4380                }
4381           }
4382      }
4383
4384    /* update modifier state */
4385    e_comp_wl_input_keyboard_state_update(keycode, EINA_TRUE);
4386
4387    return !!ec;
4388 }
4389
4390 EINTERN Eina_Bool
4391 e_comp_wl_key_up(Ecore_Event_Key *ev, E_Device *dev)
4392 {
4393    E_Client *ec = NULL;
4394    uint32_t keycode, delivered_key;
4395    E_Comp_Wl_Key_Data *end, *k;
4396
4397    if (ev->window != e_comp->ee_win)
4398      {
4399         return EINA_FALSE;
4400      }
4401
4402    keycode = (ev->keycode - 8);
4403    delivered_key = 0;
4404    if (!(e_comp_wl = e_comp->wl_comp_data))
4405      {
4406         return EINA_FALSE;
4407      }
4408
4409    end = (E_Comp_Wl_Key_Data *)e_comp_input_key->kbd.keys.data + (e_comp_input_key->kbd.keys.size / sizeof(*k));
4410    for (k = e_comp_input_key->kbd.keys.data; k < end; k++)
4411      {
4412         if (k->key == keycode)
4413           {
4414              *k = *--end;
4415              delivered_key = 1;
4416           }
4417      }
4418
4419    e_comp_wl->kbd.keys.size =
4420      (const char *)end - (const char *)e_comp_wl->kbd.keys.data;
4421
4422    e_comp_input_key->kbd.keys.size =
4423      (const char *)end - (const char *)e_comp_input_key->kbd.keys.data;
4424
4425    /* 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) */
4426    if ((delivered_key) ||
4427        ((!e_client_action_get()) && (!e_comp->input_key_grabs)))
4428      {
4429         ec = e_client_focused_get();
4430
4431         if (e_comp_input_key->kbd.focused)
4432           {
4433              _e_comp_wl_key_send(ev, dev, WL_KEYBOARD_KEY_STATE_RELEASED, e_comp_input_key->kbd.focused, ec);
4434           }
4435      }
4436
4437    /* update modifier state */
4438    e_comp_wl_input_keyboard_state_update(keycode, EINA_FALSE);
4439
4440    return !!ec;
4441 }
4442
4443 EINTERN Eina_Bool
4444 e_comp_wl_key_process(Ecore_Event_Key *ev, E_Device *dev, int type)
4445 {
4446    Eina_Bool res = EINA_FALSE;
4447
4448    if (type == ECORE_EVENT_KEY_DOWN)
4449      {
4450         res = e_comp_wl_key_down(ev, dev);
4451      }
4452    else if (type == ECORE_EVENT_KEY_UP)
4453      {
4454         res = e_comp_wl_key_up(ev, dev);
4455      }
4456
4457    return res;
4458 }
4459
4460 EINTERN Eina_Bool
4461 e_comp_wl_evas_handle_mouse_button(E_Client *ec, uint32_t timestamp, uint32_t button_id, uint32_t state)
4462 {
4463    Eina_List *l;
4464    struct wl_client *wc;
4465    uint32_t serial, btn;
4466    struct wl_resource *res;
4467    E_Comp_Config *comp_conf = NULL;
4468
4469    if (ec->cur_mouse_action || e_comp_wl->drag)
4470      return EINA_FALSE;
4471    if (e_object_is_del(E_OBJECT(ec))) return EINA_FALSE;
4472    if ((ec->ignored) && (!ec->remote_surface.provider)) return EINA_FALSE;
4473
4474    switch (button_id)
4475      {
4476       case 1:  btn = BTN_LEFT;   break;
4477       case 2:  btn = BTN_MIDDLE; break;
4478       case 3:  btn = BTN_RIGHT;  break;
4479       default: btn = button_id;  break;
4480      }
4481
4482    e_comp_wl->ptr.button = btn;
4483    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4484    if (!surface) return EINA_FALSE;
4485
4486    if (!eina_list_count(e_comp_wl->ptr.resources))
4487      return EINA_TRUE;
4488
4489    wc = wl_resource_get_client(surface);
4490    serial = wl_display_next_serial(e_comp_wl->wl.disp);
4491
4492    comp_conf = e_comp_config_get();
4493
4494    EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
4495      {
4496         if (wl_resource_get_client(res) != wc) continue;
4497         if (!e_comp_wl_input_pointer_check(res)) continue;
4498         TRACE_INPUT_BEGIN(e_comp_wl_evas_handle_mouse_button);
4499
4500         if (comp_conf && comp_conf->input_log_enable)
4501           ELOGF("Mouse", "Button %s (btn: %d, time: %d)", ec, (state ? "Down" : "Up"), btn, timestamp);
4502
4503         wl_pointer_send_button(res, serial, timestamp, btn, state);
4504         TRACE_INPUT_END();
4505      }
4506    return EINA_TRUE;
4507 }
4508
4509 E_API void
4510 e_comp_wl_touch_cancel(void)
4511 {
4512    _e_comp_wl_touch_cancel();
4513 }
4514
4515 E_API E_Comp_Wl_Hook *
4516 e_comp_wl_hook_add(E_Comp_Wl_Hook_Point hookpoint, E_Comp_Wl_Hook_Cb func, const void *data)
4517 {
4518    E_Comp_Wl_Hook *ch;
4519
4520    EINA_SAFETY_ON_TRUE_RETURN_VAL(hookpoint >= E_COMP_WL_HOOK_LAST, NULL);
4521    ch = E_NEW(E_Comp_Wl_Hook, 1);
4522    if (!ch) return NULL;
4523    ch->hookpoint = hookpoint;
4524    ch->func = func;
4525    ch->data = (void*)data;
4526    _e_comp_wl_hooks[hookpoint] = eina_inlist_append(_e_comp_wl_hooks[hookpoint], EINA_INLIST_GET(ch));
4527    return ch;
4528 }
4529
4530 E_API void
4531 e_comp_wl_hook_del(E_Comp_Wl_Hook *ch)
4532 {
4533    ch->delete_me = 1;
4534    if (_e_comp_wl_hooks_walking == 0)
4535      {
4536         _e_comp_wl_hooks[ch->hookpoint] = eina_inlist_remove(_e_comp_wl_hooks[ch->hookpoint], EINA_INLIST_GET(ch));
4537         free(ch);
4538      }
4539    else
4540      _e_comp_wl_hooks_delete++;
4541 }
4542
4543 E_API E_Comp_Wl_Pid_Hook *
4544 e_comp_wl_pid_hook_add(E_Comp_Wl_Pid_Hook_Point hookpoint, E_Comp_Wl_Pid_Hook_Cb func, const void *data)
4545 {
4546    E_Comp_Wl_Pid_Hook *ch;
4547
4548    EINA_SAFETY_ON_TRUE_RETURN_VAL(hookpoint >= E_COMP_WL_PID_HOOK_LAST, NULL);
4549
4550    ch = E_NEW(E_Comp_Wl_Pid_Hook, 1);
4551    EINA_SAFETY_ON_NULL_RETURN_VAL(ch, NULL);
4552
4553    ch->hookpoint = hookpoint;
4554    ch->func = func;
4555    ch->data = (void*)data;
4556    _e_comp_wl_pid_hooks[hookpoint] = eina_inlist_append(_e_comp_wl_pid_hooks[hookpoint], EINA_INLIST_GET(ch));
4557
4558    return ch;
4559 }
4560
4561 E_API void
4562 e_comp_wl_pid_hook_del(E_Comp_Wl_Pid_Hook *ch)
4563 {
4564    ch->delete_me = 1;
4565    if (_e_comp_wl_pid_hooks_walking == 0)
4566      {
4567         _e_comp_wl_pid_hooks[ch->hookpoint] = eina_inlist_remove(_e_comp_wl_pid_hooks[ch->hookpoint], EINA_INLIST_GET(ch));
4568         free(ch);
4569      }
4570    else
4571      _e_comp_wl_pid_hooks_delete++;
4572 }
4573
4574 E_API E_Comp_Wl_Intercept_Hook *
4575 e_comp_wl_intercept_hook_add(E_Comp_Wl_Intercept_Hook_Point hookpoint, E_Comp_Wl_Intercept_Hook_Cb func, const void *data)
4576 {
4577    E_Comp_Wl_Intercept_Hook *ch;
4578
4579    EINA_SAFETY_ON_TRUE_RETURN_VAL(hookpoint >= E_COMP_WL_INTERCEPT_HOOK_LAST, NULL);
4580    ch = E_NEW(E_Comp_Wl_Intercept_Hook, 1);
4581    if (!ch) return NULL;
4582    ch->hookpoint = hookpoint;
4583    ch->func = func;
4584    ch->data = (void*)data;
4585    _e_comp_wl_intercept_hooks[hookpoint] = eina_inlist_append(_e_comp_wl_intercept_hooks[hookpoint], EINA_INLIST_GET(ch));
4586    return ch;
4587 }
4588
4589 E_API void
4590 e_comp_wl_intercept_hook_del(E_Comp_Wl_Intercept_Hook *ch)
4591 {
4592    ch->delete_me = 1;
4593    if (_e_comp_wl_intercept_hooks_walking == 0)
4594      {
4595         _e_comp_wl_intercept_hooks[ch->hookpoint] = eina_inlist_remove(_e_comp_wl_intercept_hooks[ch->hookpoint], EINA_INLIST_GET(ch));
4596         free(ch);
4597      }
4598    else
4599      _e_comp_wl_intercept_hooks_delete++;
4600 }
4601
4602 EINTERN void
4603 e_comp_wl_shell_surface_ready(E_Client *ec)
4604 {
4605    if (!ec) return;
4606
4607    _e_comp_wl_hook_call(E_COMP_WL_HOOK_SHELL_SURFACE_READY, ec);
4608 }
4609
4610 E_API void
4611 e_comp_wl_input_cursor_timer_enable_set(Eina_Bool enabled)
4612 {
4613    e_config->use_cursor_timer = !!enabled;
4614
4615    if (e_config->use_cursor_timer)
4616      {
4617         if (!e_pointer_is_hidden(e_comp->pointer))
4618           {
4619              _e_comp_wl_cursor_move_timer_control(e_comp_wl->ptr.ec);
4620           }
4621      }
4622    else
4623      {
4624         if (e_comp_wl->ptr.hide_tmr)
4625           {
4626              ecore_timer_del(e_comp_wl->ptr.hide_tmr);
4627              e_comp_wl->ptr.hide_tmr = NULL;
4628           }
4629         cursor_timer_ec = NULL;
4630
4631         if (e_comp_wl->ptr.ec && e_comp_wl->ptr.ec->has_cursor_unset)
4632           return;
4633
4634         if (e_pointer_is_hidden(e_comp->pointer))
4635           {
4636              _e_comp_wl_cursor_reload(e_comp_wl->ptr.ec);
4637           }
4638      }
4639 }
4640
4641 EINTERN void
4642 e_comp_wl_send_event_device(struct wl_client *wc, uint32_t timestamp, Ecore_Device *dev, uint32_t serial)
4643 {
4644    EINA_SAFETY_ON_NULL_RETURN(wc);
4645    EINA_SAFETY_ON_NULL_RETURN(dev);
4646
4647    _e_comp_wl_send_event_device(wc, timestamp, dev, serial);
4648 }
4649
4650 EINTERN void
4651 e_comp_wl_send_event_e_device(struct wl_client *wc, uint32_t timestamp, E_Device *dev, uint32_t serial)
4652 {
4653    EINA_SAFETY_ON_NULL_RETURN(wc);
4654    EINA_SAFETY_ON_NULL_RETURN(dev);
4655
4656    _e_comp_wl_send_event_e_device(wc, timestamp, dev, serial);
4657 }
4658
4659 EINTERN Eina_Bool
4660 e_comp_wl_key_send(E_Client *ec, int keycode, Eina_Bool pressed, void *dev, uint32_t time)
4661 {
4662    struct wl_resource *res;
4663    struct wl_client *wc;
4664    Eina_List *l;
4665    uint32_t serial, wl_keycode;
4666    enum wl_keyboard_key_state state;
4667    E_Comp_Config *comp_conf = NULL;
4668    const char *dev_name = NULL;
4669
4670    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4671    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4672    EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4673
4674    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4675    EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4676
4677    wl_keycode = keycode - 8;
4678    EINA_SAFETY_ON_TRUE_RETURN_VAL(wl_keycode <= 0, EINA_FALSE);
4679
4680    wc = wl_resource_get_client(surface);
4681    serial = wl_display_next_serial(e_comp_wl->wl.disp);
4682    if (!time) time = e_util_timestamp_get();
4683    if (pressed) state = WL_KEYBOARD_KEY_STATE_PRESSED;
4684    else state = WL_KEYBOARD_KEY_STATE_RELEASED;
4685
4686    comp_conf = e_comp_config_get();
4687    e_keyrouter_event_surface_send(ec, keycode);
4688
4689    if (e_config->key_input_ttrace_enable)
4690      {
4691         TRACE_INPUT_BEGIN(wl_keyboard_send_key:%s:%d, (state ? "PRESS" : "RELEASE"), keycode);
4692         ELOGF("INPUT", "wl_keyboard_send_key:%s:%d|B|", NULL, (state ? "PRESS" : "RELEASE"), keycode);
4693      }
4694
4695    EINA_LIST_FOREACH(e_comp_input_key->kbd.resources, l, res)
4696      {
4697         if (wl_resource_get_client(res) != wc) continue;
4698         if (!e_input_thread_mode_get())
4699           {
4700              if (dev)
4701                {
4702                   _e_comp_wl_send_event_device(wc, time, (Ecore_Device *)dev, serial);
4703                   dev_name = ecore_device_name_get((Ecore_Device *)dev);
4704                }
4705              else
4706                {
4707                   _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_KEYBOARD, time);
4708                }
4709           }
4710         else
4711           {
4712              if (dev)
4713                {
4714                   e_comp_wl_send_event_e_device(wc, time, (E_Device *)dev, serial);
4715                   dev_name = e_device_name_get(dev);
4716                }
4717           }
4718
4719         if (comp_conf && comp_conf->input_log_enable)
4720           ELOGF("Key", "Send Key %s (keycode: %d, time: %d, device: %s)", ec, (state ? "Down" : "Up"), wl_keycode, time,
4721                 dev_name);
4722
4723         wl_keyboard_send_key(res, serial, time,
4724                              wl_keycode, state);
4725      }
4726
4727    if (e_config->key_input_ttrace_enable)
4728      {
4729         TRACE_INPUT_END();
4730         ELOGF("INPUT", "wl_keyboard_send_key|E|", NULL);
4731      }
4732
4733    return EINA_TRUE;
4734 }
4735
4736 EINTERN Eina_Bool
4737 e_comp_wl_key_cancel(E_Client *ec, int keycode, Ecore_Device *dev, uint32_t time)
4738 {
4739    struct wl_resource *res;
4740    struct wl_client *wc;
4741    Eina_List *l;
4742    uint32_t serial, wl_keycode, cancel_keycode;
4743    E_Comp_Config *comp_conf = NULL;
4744    struct xkb_keymap *keymap = NULL;
4745
4746    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4747    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4748    EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4749
4750    keymap = e_comp_input_key->xkb.keymap;
4751    EINA_SAFETY_ON_NULL_RETURN_VAL(keymap, EINA_FALSE);
4752
4753    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4754    EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4755
4756    cancel_keycode = e_comp_wl_input_keymap_keyname_to_keycode("Cancel");
4757    if (cancel_keycode == XKB_KEYCODE_INVALID)
4758      {
4759         ELOGF("Key", "Failed to send key cancel for %d key, Cancel key is not supported\n", ec, keycode);
4760         return EINA_FALSE;
4761      }
4762
4763    EINA_SAFETY_ON_TRUE_RETURN_VAL(cancel_keycode < 8, EINA_FALSE);
4764
4765    cancel_keycode = cancel_keycode - 8;
4766
4767    wl_keycode = keycode - 8;
4768    EINA_SAFETY_ON_TRUE_RETURN_VAL(wl_keycode <= 0, EINA_FALSE);
4769
4770    wc = wl_resource_get_client(surface);
4771    serial = wl_display_next_serial(e_comp_wl->wl.disp);
4772    if (!time) time = e_util_timestamp_get();
4773
4774    comp_conf = e_comp_config_get();
4775    e_keyrouter_event_surface_send(ec, keycode);
4776
4777    EINA_LIST_FOREACH(e_comp_input_key->kbd.resources, l, res)
4778      {
4779         if (wl_resource_get_client(res) != wc) continue;
4780         if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
4781         else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_KEYBOARD, time);
4782
4783         if (comp_conf && comp_conf->input_log_enable)
4784           ELOGF("Key", "Send Key Cancel (time: %d)", ec, time);
4785         wl_keyboard_send_key(res, serial, time,
4786                              cancel_keycode, WL_KEYBOARD_KEY_STATE_PRESSED);
4787         wl_keyboard_send_key(res, serial, time,
4788                              wl_keycode, WL_KEYBOARD_KEY_STATE_RELEASED);
4789         wl_keyboard_send_key(res, serial, time,
4790                              cancel_keycode, WL_KEYBOARD_KEY_STATE_RELEASED);
4791      }
4792
4793    return EINA_TRUE;
4794 }
4795
4796
4797 EINTERN Eina_Bool
4798 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)
4799 {
4800    struct wl_client *wc;
4801    uint32_t serial;
4802    E_Devicemgr_Input_Device *device = NULL;
4803
4804    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4805    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4806    EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4807
4808    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4809    EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4810
4811    if (!dev) device = _e_comp_wl_device_last_device_get(ECORE_DEVICE_CLASS_TOUCH);
4812
4813    wc = wl_resource_get_client(surface);
4814    if (!time) time = e_util_timestamp_get();
4815    serial = wl_display_next_serial(e_comp_wl->wl.disp);
4816
4817    if (dev)
4818      {
4819         _e_comp_wl_send_event_device(wc, time, dev, serial);
4820         _e_comp_wl_device_handle_axes(ecore_device_identifier_get(dev), ECORE_DEVICE_CLASS_TOUCH, ec, idx, radius_x, radius_y, pressure, angle);
4821      }
4822    else if (device)
4823      {
4824         _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_TOUCH, time);
4825         _e_comp_wl_device_handle_axes(device->identifier, device->clas, ec, idx, radius_x, radius_y, pressure, angle);
4826      }
4827
4828    x = x + ec->client.x;
4829    y = y + ec->client.y;
4830
4831    _e_comp_wl_send_touch(ec, idx, x, y, time, pressed);
4832
4833    return EINA_TRUE;
4834 }
4835
4836 EINTERN Eina_Bool
4837 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)
4838 {
4839    E_Devicemgr_Input_Device *device;
4840    uint32_t serial;
4841    struct wl_client *wc;
4842
4843    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4844    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4845    EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4846
4847    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4848    EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4849
4850    if (!dev) device = _e_comp_wl_device_last_device_get(ECORE_DEVICE_CLASS_TOUCH);
4851
4852    wc = wl_resource_get_client(surface);
4853    if (!time) time = e_util_timestamp_get();
4854    serial = wl_display_next_serial(e_comp_wl->wl.disp);
4855
4856    if (dev)
4857      {
4858         _e_comp_wl_send_event_device(wc, time, dev, serial);
4859         _e_comp_wl_device_handle_axes(ecore_device_identifier_get(dev), ECORE_DEVICE_CLASS_TOUCH, ec, idx, radius_x, radius_y, pressure, angle);
4860      }
4861    else if (device)
4862      {
4863         _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_TOUCH, time);
4864         _e_comp_wl_device_handle_axes(device->identifier, device->clas, ec, idx, radius_x, radius_y, pressure, angle);
4865      }
4866
4867    x = x + ec->client.x;
4868    y = y + ec->client.y;
4869
4870    _e_comp_wl_send_touch_move(ec, idx, x, y, time);
4871
4872    return EINA_TRUE;
4873 }
4874
4875 EINTERN Eina_Bool
4876 e_comp_wl_touch_cancel_send(E_Client *ec)
4877 {
4878    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4879    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4880    EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4881
4882    _e_comp_wl_send_touch_cancel(ec);
4883
4884    return EINA_TRUE;
4885 }
4886
4887 EINTERN Eina_Bool
4888 e_comp_wl_mouse_button_send(E_Client *ec, int buttons, Eina_Bool pressed, Ecore_Device *dev, uint32_t time)
4889 {
4890    uint32_t serial;
4891    struct wl_client *wc;
4892
4893    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4894    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4895    EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4896
4897    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4898    EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4899
4900    wc = wl_resource_get_client(surface);
4901    if (!time) time = e_util_timestamp_get();
4902    serial = wl_display_next_serial(e_comp_wl->wl.disp);
4903
4904    if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
4905    else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, time);
4906
4907    if (pressed)
4908      e_comp_wl_evas_handle_mouse_button(ec, time, buttons,
4909                                           WL_POINTER_BUTTON_STATE_PRESSED);
4910    else
4911      e_comp_wl_evas_handle_mouse_button(ec, time, buttons,
4912                                           WL_POINTER_BUTTON_STATE_RELEASED);
4913
4914    return EINA_TRUE;
4915 }
4916
4917 EINTERN Eina_Bool
4918 e_comp_wl_mouse_move_send(E_Client *ec, int x, int y, Ecore_Device *dev, uint32_t time)
4919 {
4920    uint32_t serial;
4921    struct wl_client *wc;
4922
4923    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4924    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4925    EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4926
4927    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4928    EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4929
4930    wc = wl_resource_get_client(surface);
4931    if (!time) time = e_util_timestamp_get();
4932    serial = wl_display_next_serial(e_comp_wl->wl.disp);
4933
4934    if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
4935    else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, time);
4936
4937    x = x + ec->client.x;
4938    y = y + ec->client.y;
4939
4940    _e_comp_wl_send_mouse_move(ec, x, y, time);
4941
4942    return EINA_TRUE;
4943 }
4944
4945 EINTERN Eina_Bool
4946 e_comp_wl_mouse_wheel_send(E_Client *ec, int direction, int z, Ecore_Device *dev, uint32_t time)
4947 {
4948    uint32_t serial;
4949    struct wl_client *wc;
4950
4951    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4952    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4953    EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4954
4955    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4956    EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4957
4958    wc = wl_resource_get_client(surface);
4959    if (!time) time = e_util_timestamp_get();
4960    serial = wl_display_next_serial(e_comp_wl->wl.disp);
4961
4962    if (_e_comp_wl_check_cursor_timer_needed(ec))
4963       {
4964          if (!_e_comp_wl_cursor_timer_control(EVAS_CALLBACK_MOUSE_WHEEL, ec))
4965            return EINA_TRUE;
4966       }
4967
4968    if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
4969    else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, time);
4970
4971    _e_comp_wl_mouse_wheel_send(ec, direction, z, time);
4972
4973    if (!need_send_released) // set cursor's hide_tmr only when mouse button is not pressed
4974      {
4975         if (_e_comp_wl_check_cursor_timer_needed(ec))
4976           _e_comp_wl_cursor_move_timer_control(ec);
4977      }
4978
4979    return EINA_TRUE;
4980 }
4981
4982 EINTERN Eina_Bool
4983 e_comp_wl_mouse_in_send(E_Client *ec, int x, int y, Ecore_Device *dev, uint32_t time)
4984 {
4985    uint32_t serial;
4986    struct wl_client *wc;
4987    struct wl_resource *res;
4988    Eina_List *l;
4989
4990    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
4991    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
4992
4993    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
4994    EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
4995
4996    EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
4997    EINA_SAFETY_ON_TRUE_RETURN_VAL(e_object_is_del(E_OBJECT(ec)), EINA_FALSE);
4998
4999    if (!eina_list_count(e_comp_wl->ptr.resources)) return EINA_FALSE;
5000    wc = wl_resource_get_client(surface);
5001    serial = wl_display_next_serial(e_comp_wl->wl.disp);
5002    EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
5003      {
5004         if (!e_comp_wl_input_pointer_check(res)) continue;
5005         if (wl_resource_get_client(res) != wc) continue;
5006
5007         if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
5008         else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, time);
5009
5010         wl_pointer_send_enter(res, serial, surface,
5011                               wl_fixed_from_int(x),
5012                               wl_fixed_from_int(y));
5013         ec->pointer_enter_sent = EINA_TRUE;
5014      }
5015    wl_signal_emit(&e_comp_wl->ptr_constraints.surface_mousein_signal, ec);
5016
5017    return EINA_TRUE;
5018 }
5019
5020 EINTERN Eina_Bool
5021 e_comp_wl_mouse_out_send(E_Client *ec, Ecore_Device *dev, uint32_t time)
5022 {
5023    uint32_t serial;
5024    struct wl_client *wc;
5025    struct wl_resource *res;
5026    Eina_List *l;
5027
5028    EINA_SAFETY_ON_NULL_RETURN_VAL(e_comp_wl, EINA_FALSE);
5029    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
5030    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
5031    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
5032    EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
5033    EINA_SAFETY_ON_TRUE_RETURN_VAL(e_object_is_del(E_OBJECT(ec)), EINA_FALSE);
5034
5035    if (!eina_list_count(e_comp_wl->ptr.resources)) return EINA_FALSE;
5036    wc = wl_resource_get_client(surface);
5037    serial = wl_display_next_serial(e_comp_wl->wl.disp);
5038    EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
5039      {
5040         if (!e_comp_wl_input_pointer_check(res)) continue;
5041         if (wl_resource_get_client(res) != wc) continue;
5042
5043         if (dev) _e_comp_wl_send_event_device(wc, time, dev, serial);
5044         else _e_comp_wl_device_send_last_event_device(ec, ECORE_DEVICE_CLASS_MOUSE, time);
5045
5046         wl_pointer_send_leave(res, serial, surface);
5047         ec->pointer_enter_sent = EINA_FALSE;
5048      }
5049
5050    return EINA_TRUE;
5051 }
5052
5053 EINTERN void
5054 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)
5055 {
5056    Evas_Event_Mouse_In ev_in;
5057
5058    if (!ec) return;
5059    if (ec->pointer_enter_sent) return;
5060
5061    ev_in.buttons = buttons;
5062
5063    ev_in.output.x = x;
5064    ev_in.output.y = y;
5065    ev_in.canvas.x = x;
5066    ev_in.canvas.y = y;
5067
5068    ev_in.data = data;
5069    ev_in.modifiers = modifiers;
5070    ev_in.locks = locks;
5071    ev_in.timestamp = timestamp;
5072    ev_in.event_flags = event_flags;
5073
5074    ev_in.dev = dev;
5075    ev_in.event_src = event_src;
5076
5077    _e_comp_wl_evas_cb_mouse_in((void *)ec, NULL, NULL, &ev_in);
5078 }
5079
5080 EINTERN void
5081 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)
5082 {
5083    Evas_Event_Mouse_Out ev_out;
5084
5085    if (!ec) return;
5086    if (!ec->pointer_enter_sent) return;
5087
5088    ev_out.buttons = buttons;
5089
5090    ev_out.output.x = x;
5091    ev_out.output.y = y;
5092    ev_out.canvas.x = x;
5093    ev_out.canvas.y = y;
5094
5095    ev_out.data = data;
5096    ev_out.modifiers = modifiers;
5097    ev_out.locks = locks;
5098    ev_out.timestamp = timestamp;
5099    ev_out.event_flags = event_flags;
5100
5101    ev_out.dev = dev;
5102    ev_out.event_src = event_src;
5103
5104    _e_comp_wl_evas_cb_mouse_out((void *)ec, NULL, NULL, &ev_out);
5105 }
5106
5107 EINTERN Eina_Bool
5108 e_comp_wl_cursor_hide(E_Client *ec)
5109 {
5110    struct wl_resource *res;
5111    struct wl_client *wc;
5112    Eina_List *l;
5113    uint32_t serial;
5114
5115    e_pointer_object_set(e_comp->pointer, NULL, 0, 0);
5116
5117    if (e_comp_wl->ptr.hide_tmr)
5118      {
5119         ecore_timer_del(e_comp_wl->ptr.hide_tmr);
5120         e_comp_wl->ptr.hide_tmr = NULL;
5121      }
5122    cursor_timer_ec = NULL;
5123
5124    if (!ec) return EINA_FALSE;
5125    if (e_object_is_del(E_OBJECT(ec))) return EINA_FALSE;
5126    struct wl_resource *surface = e_comp_wl_client_surface_get(ec);
5127    EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);
5128
5129    wc = wl_resource_get_client(surface);
5130    serial = wl_display_next_serial(e_comp_wl->wl.disp);
5131    EINA_LIST_FOREACH(e_comp_wl->ptr.resources, l, res)
5132      {
5133         if (!e_comp_wl_input_pointer_check(res)) continue;
5134         if (wl_resource_get_client(res) != wc) continue;
5135         if (ec->pointer_enter_sent == EINA_FALSE) continue;
5136         wl_pointer_send_leave(res, serial, surface);
5137         ec->pointer_enter_sent = EINA_FALSE;
5138      }
5139
5140    return EINA_TRUE;
5141 }
5142
5143 /* surface to buffer
5144  *   - width    : surface width
5145  *   - height   : surface height
5146  *   - transform: buffer transform
5147  *   - scale    : buffer scale
5148  * screen to output
5149  *   - width    : screen width
5150  *   - height   : screen height
5151  *   - transform: output transform
5152  *   - scale    : output scale
5153  */
5154 static E_Util_Transform_Matrix
5155 _e_comp_wl_buffer_coord_get(int width, int height, int transform, int scale)
5156 {
5157    E_Util_Transform_Matrix m;
5158
5159    e_util_transform_matrix_load_identity(&m);
5160
5161    if (transform & 0x4)
5162      {
5163         e_util_transform_matrix_translate(&m, -((double)width / 2), 0, 0);
5164         e_util_transform_matrix_flip_x(&m);
5165         e_util_transform_matrix_translate(&m, (double)width / 2, 0, 0);
5166      }
5167
5168    switch (transform & 0x3)
5169      {
5170       case WL_OUTPUT_TRANSFORM_90:
5171         e_util_transform_matrix_translate(&m, -width, 0, 0);
5172         e_util_transform_matrix_rotation_z(&m, 270);
5173         break;
5174       case WL_OUTPUT_TRANSFORM_180:
5175         e_util_transform_matrix_translate(&m, -width, -height, 0);
5176         e_util_transform_matrix_rotation_z(&m, 180);
5177         break;
5178       case WL_OUTPUT_TRANSFORM_270:
5179         e_util_transform_matrix_translate(&m, 0, -height, 0);
5180         e_util_transform_matrix_rotation_z(&m, 90);
5181         break;
5182       default:
5183         break;
5184      }
5185
5186    e_util_transform_matrix_scale(&m, scale, scale, 1);
5187
5188    return m;
5189 }
5190
5191 /* surface to buffer
5192  *   - surface width, surface height, buffer transform, buffer scale
5193  * screen to output
5194  *   - screen width, screen height, output transform, output scale
5195  */
5196 EINTERN void
5197 e_comp_wl_pos_convert(int width, int height, int transform, int scale, int sx, int sy, int *bx, int *by)
5198 {
5199    E_Util_Transform_Matrix m;
5200    E_Util_Transform_Vertex v;
5201
5202    m = _e_comp_wl_buffer_coord_get(width, height, transform, scale);
5203
5204    e_util_transform_vertex_init(&v, sx, sy, 0.0, 1.0);
5205    v = e_util_transform_matrix_multiply_vertex(&m, &v);
5206    e_util_transform_vertex_pos_round_get(&v, bx, by, NULL, NULL);
5207 }
5208
5209 /* buffer to screen
5210  *   - buffer width, buffer height, buffer transform, buffer scale
5211  */
5212 EINTERN void
5213 e_comp_wl_pos_convert_inverse(int width, int height, int transform, int scale, int bx, int by, int *sx, int *sy)
5214 {
5215    E_Util_Transform_Matrix m;
5216    E_Util_Transform_Vertex v;
5217    int tw, th;
5218
5219    if (transform != 0 || scale > 1)
5220      {
5221         tw = ((transform % 2) ? height : width) / scale;
5222         th = ((transform % 2) ? width : height) / scale;
5223      }
5224    else
5225      {
5226         tw = width;
5227         th = height;
5228      }
5229
5230    m = _e_comp_wl_buffer_coord_get(tw, th, transform, scale);
5231    m = e_util_transform_matrix_inverse_get(&m);
5232
5233    e_util_transform_vertex_init(&v, bx, by, 0.0, 1.0);
5234    v = e_util_transform_matrix_multiply_vertex(&m, &v);
5235    e_util_transform_vertex_pos_round_get(&v, sx, sy, NULL, NULL);
5236 }
5237
5238 /* surface to buffer
5239  *   - surface width, surface height, buffer transform, buffer scale
5240  * screen to output
5241  *   - screen width, screen height, output transform, output scale
5242  */
5243 EINTERN void
5244 e_comp_wl_rect_convert(int width, int height, int transform, int scale,
5245                        int sx, int sy, int sw, int sh, int *bx, int *by, int *bw, int *bh)
5246 {
5247    E_Util_Transform_Matrix m;
5248    E_Util_Transform_Rect sr = {sx, sy, sw, sh};
5249    E_Util_Transform_Rect_Vertex sv;
5250
5251    m = _e_comp_wl_buffer_coord_get(width, height, transform, scale);
5252
5253    sv = e_util_transform_rect_to_vertices(&sr);
5254    sv = e_util_transform_matrix_multiply_rect_vertex(&m, &sv);
5255    sr = e_util_transform_vertices_to_rect(&sv);
5256
5257    if (bx) *bx = sr.x;
5258    if (by) *by = sr.y;
5259    if (bw) *bw = sr.w;
5260    if (bh) *bh = sr.h;
5261 }
5262
5263 /* buffer to screen
5264  *   - buffer width, buffer height, buffer transform, buffer scale
5265  */
5266 EINTERN void
5267 e_comp_wl_rect_convert_inverse(int width, int height, int transform, int scale,
5268                                int bx, int by, int bw, int bh, int *sx, int *sy, int *sw, int *sh)
5269 {
5270    E_Util_Transform_Matrix m;
5271    E_Util_Transform_Rect br = {bx, by, bw, bh};
5272    E_Util_Transform_Rect_Vertex bv;
5273    int tw, th;
5274
5275    if (transform != 0 || scale > 1)
5276      {
5277         tw = ((transform % 2) ? height : width) / scale;
5278         th = ((transform % 2) ? width : height) / scale;
5279      }
5280    else
5281      {
5282         tw = width;
5283         th = height;
5284      }
5285
5286    m = _e_comp_wl_buffer_coord_get(tw, th, transform, scale);
5287    m = e_util_transform_matrix_inverse_get(&m);
5288
5289    bv = e_util_transform_rect_to_vertices(&br);
5290    bv = e_util_transform_matrix_multiply_rect_vertex(&m, &bv);
5291    br = e_util_transform_vertices_to_rect(&bv);
5292
5293    if (sx) *sx = br.x;
5294    if (sy) *sy = br.y;
5295    if (sw) *sw = br.w;
5296    if (sh) *sh = br.h;
5297 }
5298
5299 EINTERN E_Comp_Wl_Output*
5300 e_comp_wl_output_find(E_Client *ec)
5301 {
5302    Eina_List *l;
5303    E_Comp_Wl_Output *output;
5304
5305    if (!ec || !ec->comp_data || e_object_is_del(E_OBJECT(ec))) return NULL;
5306
5307    EINA_LIST_FOREACH(e_comp_wl->outputs, l, output)
5308      {
5309         if (output->transform % 2)
5310           {
5311              if (ec->x < output->y || ec->x >= (output->y + output->h) ||
5312                  ec->y < output->x || ec->y >= (output->x + output->w))
5313                continue;
5314           }
5315         else
5316           {
5317              if (ec->x < output->x || ec->x >= (output->x + output->w) ||
5318                  ec->y < output->y || ec->y >= (output->y + output->h))
5319                continue;
5320           }
5321
5322         return output;
5323      }
5324
5325    return NULL;
5326 }
5327
5328 EINTERN Eina_Array *
5329 e_comp_wl_output_find_all(E_Client *ec)
5330 {
5331    E_Comp_Wl_Output *output;
5332    Eina_Array *outputs;
5333    Eina_List *l;
5334
5335    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, NULL);
5336
5337    outputs = eina_array_new(4);
5338    if (!outputs)
5339      return NULL;
5340
5341    EINA_LIST_FOREACH(e_comp_wl->outputs, l, output)
5342      {
5343         if (E_INTERSECTS(ec->x, ec->y, ec->w, ec->h,
5344                          output->x, output->y, output->w, output->h))
5345           {
5346              eina_array_push(outputs, output);
5347           }
5348      }
5349
5350    if (eina_array_count(outputs) == 0)
5351      {
5352         eina_array_free(outputs);
5353         return NULL;
5354      }
5355
5356    return outputs;
5357 }
5358
5359 // --------------------------------------------------------
5360 // tizen_move_resize
5361 // --------------------------------------------------------
5362 EINTERN Eina_Bool
5363 e_comp_wl_commit_sync_client_geometry_add(E_Client *ec,
5364                                           uint32_t serial,
5365                                           int32_t x,
5366                                           int32_t y,
5367                                           int32_t w,
5368                                           int32_t h)
5369 {
5370    E_Client_Pending_Geometry *geo;
5371
5372    if (!ec) goto ret;
5373    if (e_object_is_del(E_OBJECT(ec))) goto ret;
5374    if (ec->fullscreen || ec->maximized) goto err;
5375
5376    geo = E_NEW(E_Client_Pending_Geometry, 1);
5377    if (!geo) goto err;
5378
5379    geo->serial = serial;
5380    geo->x = x;
5381    geo->y = y;
5382    geo->w = w;
5383    geo->h = h;
5384
5385    ec->surface_sync.pending_geometry = eina_list_append(ec->surface_sync.pending_geometry, geo);
5386    ec->surface_sync.wait_commit = EINA_TRUE;
5387
5388    return EINA_TRUE;
5389
5390 err:
5391    ELOGF("POSSIZE", "Could not add geometry(new:%d full:%d max:%d)", ec, ec->new_client, ec->fullscreen, ec->maximized);
5392
5393 ret:
5394    return EINA_FALSE;
5395 }
5396
5397 EINTERN Eina_Bool
5398 e_comp_wl_commit_sync_configure(E_Client *ec)
5399 {
5400    Eina_List *l;
5401    E_Client_Pending_Geometry *geo;
5402    int bw, bh;
5403    Eina_Bool match_size = EINA_FALSE;
5404
5405    struct
5406      {
5407         int x, y, w, h;
5408      } config;
5409
5410    if (!ec || !ec->frame) goto ret;
5411    if (e_object_is_del(E_OBJECT(ec))) goto ret;
5412
5413    bw = bh = 0;
5414    config.x = ec->x; config.y = ec->y; config.w = ec->w; config.h = ec->h;
5415    if (!e_pixmap_size_get(ec->pixmap, &bw, &bh)) goto err;
5416
5417    if (eina_list_count(ec->surface_sync.pending_geometry))
5418      {
5419         Eina_List *ll = NULL;
5420         EINA_LIST_REVERSE_FOREACH_SAFE(ec->surface_sync.pending_geometry, l, ll, geo)
5421           {
5422              if (match_size)
5423                {
5424                   ec->surface_sync.pending_geometry = eina_list_remove(ec->surface_sync.pending_geometry, geo);
5425                   E_FREE(geo);
5426                   continue;
5427                }
5428
5429              if ((geo->w == bw) && (geo->h == bh))
5430                {
5431                   match_size = EINA_TRUE;
5432                   config.w = geo->w;
5433                   config.h = geo->h;
5434                   config.x = geo->x;
5435                   config.y = geo->y;
5436                   ec->surface_sync.pending_geometry = eina_list_remove(ec->surface_sync.pending_geometry, geo);
5437                   E_FREE(geo);
5438                }
5439           }
5440
5441         if (match_size)
5442           {
5443              if ((config.w != ec->w) || (config.h != ec->h))
5444                {
5445                   e_client_size_set(ec, config.w, config.h);
5446                   ec->changes.size = EINA_TRUE;
5447                   EC_CHANGED(ec);
5448                }
5449
5450              // FIXME: The geometry of the client would be better to be calculated
5451              //        at e_desk or at e_desk_area. So the position(x,y) of the client
5452              //        should be calcuated at the e_desk or at the e_desk_area.
5453              E_Desk *desk;
5454              desk = e_comp_desk_find_by_ec(ec);
5455              if (desk)
5456                {
5457                   ec->client.x = desk->geom.x + config.x;
5458                   ec->client.y = desk->geom.y + config.y;
5459                }
5460              else
5461                {
5462                   ec->client.x = config.x;
5463                   ec->client.y = config.y;
5464                }
5465
5466              if ((ec->client.x != ec->x) || (ec->client.y != ec->y))
5467                {
5468                   e_client_pos_set(ec, ec->client.x, ec->client.y);
5469                   ec->placed = 1;
5470                   ec->changes.pos = 1;
5471                   EC_CHANGED(ec);
5472                }
5473
5474              ELOGF("POSSIZE", "Configure pending geometry (%d,%d,%dx%d)", ec, ec->x, ec->y, ec->w, ec->h);
5475           }
5476      }
5477
5478    // cw interceptor(move,resize) won't work if wait_commit is TRUE
5479    ec->surface_sync.wait_commit = EINA_FALSE;
5480
5481    e_client_shell_configure(ec, ec->x, ec->y, ec->w, ec->h);
5482
5483    // rollback wait_commit if there are pending requests remained
5484    if (eina_list_count(ec->surface_sync.pending_geometry))
5485      ec->surface_sync.wait_commit = EINA_TRUE;
5486
5487    return EINA_TRUE;
5488
5489 err:
5490    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);
5491
5492 ret:
5493    return EINA_FALSE;
5494 }
5495
5496 static void
5497 _tz_move_resize_iface_cb_destroy(struct wl_client *client EINA_UNUSED,
5498                                  struct wl_resource *res_moveresize)
5499 {
5500    wl_resource_destroy(res_moveresize);
5501 }
5502
5503 static void
5504 _tz_move_resize_iface_cb_set_geometry(struct wl_client *client EINA_UNUSED,
5505                                       struct wl_resource *res_moveresize,
5506                                       struct wl_resource *surface,
5507                                       uint32_t serial,
5508                                       int32_t x,
5509                                       int32_t y,
5510                                       int32_t w,
5511                                       int32_t h)
5512 {
5513    /* to be implemented */
5514    E_Client *ec;
5515    Eina_Bool pending;
5516    int cur_w = 0, cur_h = 0;
5517
5518    ec = e_client_from_surface_resource(surface);
5519    if (!ec) return;
5520
5521    pending = e_client_pending_geometry_has(ec);
5522    e_client_geometry_get(ec, NULL, NULL, &cur_w, &cur_h);
5523    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);
5524
5525    if (!pending)
5526      {
5527         if ((cur_w == w) && (cur_h == h))
5528           {
5529              e_client_pos_set(ec, x, y);
5530              ec->changes.pos = 1;
5531              EC_CHANGED(ec);
5532              return;
5533           }
5534      }
5535
5536    if (!e_comp_wl_commit_sync_client_geometry_add(ec, serial, x, y, w, h)) goto err;
5537    return;
5538
5539 err:
5540    ELOGF("POSSIZE", "Could not add set_geometry request(serial:%d, %d,%d - %dx%d)", ec, serial, x, y, w, h);
5541 }
5542
5543 static const struct tizen_move_resize_interface _tz_move_resize_iface =
5544 {
5545    _tz_move_resize_iface_cb_destroy,
5546    _tz_move_resize_iface_cb_set_geometry,
5547 };
5548
5549 static void
5550 _tz_moveresize_cb_bind(struct wl_client *client,
5551                        void *data EINA_UNUSED,
5552                        uint32_t ver,
5553                        uint32_t id)
5554 {
5555    struct wl_resource *res_moveresize;
5556
5557    res_moveresize = wl_resource_create(client,
5558                                        &tizen_move_resize_interface,
5559                                        ver,
5560                                        id);
5561    EINA_SAFETY_ON_NULL_GOTO(res_moveresize, err);
5562
5563
5564    wl_resource_set_implementation(res_moveresize,
5565                                   &_tz_move_resize_iface,
5566                                   NULL,
5567                                   NULL);
5568    return;
5569
5570 err:
5571    ERR("Could not create tizen_move_resize_interface res: %m");
5572    wl_client_post_no_memory(client);
5573 }
5574
5575 static void
5576 _e_comp_wl_move_resize_init(void)
5577 {
5578    if (!e_comp_wl) return;
5579    if (!e_comp_wl->wl.disp) return;
5580
5581    if (!wl_global_create(e_comp_wl->wl.disp,
5582                          &tizen_move_resize_interface,
5583                          1,
5584                          NULL,
5585                          _tz_moveresize_cb_bind))
5586      {
5587         ERR("Could not create tizen_move_resize_interface to wayland globals: %m");
5588      }
5589
5590    return;
5591 }
5592
5593 EINTERN Eina_Bool
5594 e_comp_wl_pid_output_configured_resolution_send(pid_t pid, int w, int h)
5595 {
5596    E_Comp_Wl_Output *output;
5597    pid_t output_pid = 0;
5598    Eina_List *l = NULL, *l2 = NULL;
5599    struct wl_resource *resource = NULL;
5600
5601    if (!e_config->configured_output_resolution.use) return EINA_TRUE;
5602
5603    EINA_SAFETY_ON_TRUE_RETURN_VAL(pid <= 0, EINA_FALSE);
5604    EINA_SAFETY_ON_TRUE_RETURN_VAL(w < 0, EINA_FALSE);
5605    EINA_SAFETY_ON_TRUE_RETURN_VAL(h < 0, EINA_FALSE);
5606
5607    EINA_LIST_FOREACH(e_comp_wl->outputs, l, output)
5608      {
5609         /* if we have bound resources, send updates */
5610         EINA_LIST_FOREACH(output->resources, l2, resource)
5611           {
5612              wl_client_get_credentials(wl_resource_get_client(resource), &output_pid, NULL, NULL);
5613              if (output_pid != pid) continue;
5614
5615              ELOGF("COMP_WL", "\tSend Configured Output AGAIN ~!!!!! (pid:%d)", NULL, pid);
5616
5617              // send output information to the client
5618              _e_comp_wl_output_info_send(output, resource, pid, w, h);
5619           }
5620      }
5621
5622    return EINA_TRUE;
5623 }
5624
5625 EINTERN void
5626 e_comp_wl_surface_state_init(E_Comp_Wl_Surface_State *state, int w, int h)
5627 {
5628    _e_comp_wl_surface_state_init(state, w, h);
5629 }
5630
5631 EINTERN void
5632 e_comp_wl_surface_state_commit(E_Client *ec, E_Comp_Wl_Surface_State *state)
5633 {
5634    _e_comp_wl_surface_state_commit(ec, state);
5635 }
5636
5637 EINTERN void
5638 e_comp_wl_hook_call(E_Comp_Wl_Hook_Point hookpoint, E_Client *ec)
5639 {
5640    _e_comp_wl_hook_call(hookpoint, ec);
5641 }
5642
5643 EINTERN void
5644 e_comp_wl_surface_state_finish(E_Comp_Wl_Surface_State *state)
5645 {
5646    _e_comp_wl_surface_state_finish(state);
5647 }
5648
5649 EINTERN void
5650 e_comp_wl_surface_state_buffer_set(E_Comp_Wl_Surface_State *state, E_Comp_Wl_Buffer *buffer)
5651 {
5652    _e_comp_wl_surface_state_buffer_set(state, buffer);
5653 }
5654
5655 static void
5656 buffer_transform(int width, int height, uint32_t transform, int32_t scale,
5657                  int sx, int sy, int *dx, int *dy)
5658 {
5659    switch (transform)
5660      {
5661       case WL_OUTPUT_TRANSFORM_NORMAL:
5662       default:
5663          *dx = sx, *dy = sy;
5664          break;
5665       case WL_OUTPUT_TRANSFORM_FLIPPED:
5666          *dx = width - sx, *dy = sy;
5667          break;
5668       case WL_OUTPUT_TRANSFORM_90:
5669          *dx = height - sy, *dy = sx;
5670          break;
5671       case WL_OUTPUT_TRANSFORM_FLIPPED_90:
5672          *dx = height - sy, *dy = width - sx;
5673          break;
5674       case WL_OUTPUT_TRANSFORM_180:
5675          *dx = width - sx, *dy = height - sy;
5676          break;
5677       case WL_OUTPUT_TRANSFORM_FLIPPED_180:
5678          *dx = sx, *dy = height - sy;
5679          break;
5680       case WL_OUTPUT_TRANSFORM_270:
5681          *dx = sy, *dy = width - sx;
5682          break;
5683       case WL_OUTPUT_TRANSFORM_FLIPPED_270:
5684          *dx = sy, *dy = sx;
5685          break;
5686      }
5687
5688    *dx *= scale;
5689    *dy *= scale;
5690 }
5691
5692 static void
5693 _buffer_viewport_get(E_Comp_Wl_Buffer_Viewport *vp, int bw, int bh, Eina_Rectangle *out)
5694 {
5695    int x1, y1, x2, y2;
5696    int tx1, ty1, tx2, ty2;
5697    int width_from_buffer, height_from_buffer;
5698
5699    switch (vp->buffer.transform)
5700      {
5701       case WL_OUTPUT_TRANSFORM_90:
5702       case WL_OUTPUT_TRANSFORM_270:
5703       case WL_OUTPUT_TRANSFORM_FLIPPED_90:
5704       case WL_OUTPUT_TRANSFORM_FLIPPED_270:
5705          width_from_buffer = bh / vp->buffer.scale;
5706          height_from_buffer = bw / vp->buffer.scale;
5707          break;
5708       default:
5709          width_from_buffer = bw / vp->buffer.scale;
5710          height_from_buffer = bh / vp->buffer.scale;
5711          break;
5712      }
5713
5714    if (vp->buffer.src_width == wl_fixed_from_int(-1))
5715      {
5716         x1 = 0.0;
5717         y1 = 0.0;
5718         x2 = width_from_buffer;
5719         y2 = height_from_buffer;
5720      }
5721    else
5722      {
5723         x1 = wl_fixed_to_int(vp->buffer.src_x);
5724         y1 = wl_fixed_to_int(vp->buffer.src_y);
5725         x2 = wl_fixed_to_int(vp->buffer.src_x + vp->buffer.src_width);
5726         y2 = wl_fixed_to_int(vp->buffer.src_y + vp->buffer.src_height);
5727      }
5728
5729    buffer_transform(width_from_buffer, height_from_buffer,
5730                     vp->buffer.transform, vp->buffer.scale, x1, y1, &tx1, &ty1);
5731    buffer_transform(width_from_buffer, height_from_buffer,
5732                     vp->buffer.transform, vp->buffer.scale, x2, y2, &tx2, &ty2);
5733
5734    out->x = (tx1 <= tx2) ? tx1 : tx2;
5735    out->y = (ty1 <= ty2) ? ty1 : ty2;
5736    out->w = (tx1 <= tx2) ? tx2 - tx1 : tx1 - tx2;
5737    out->h = (ty1 <= ty2) ? ty2 - ty1 : ty1 - ty2;
5738 }
5739
5740 /**
5741  * Convert given four coordinates to elements of rectangle
5742  * @in   p[4]        Coordinates to be converted
5743  * @out  rect        x, y, width, and height
5744  *       transform   Angle which represents TDM_TRANSFORM of rectangle
5745  * @return EINA_FALSE in following case, otherwise EINA_TRUE.
5746  *   1. The given coordinates are not represented by rectangle.
5747  *   2. All angles except for 0, 90, 180, 270.
5748  */
5749 static Eina_Bool
5750 _coords_to_rectangle_convert(Evas_Point p[4], Eina_Rectangle *rect, uint *rotation)
5751 {
5752    Eina_Bool ret = EINA_FALSE;
5753
5754    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))
5755      {
5756         /* 0 or 180 */
5757         if ((p[0].x < p[2].x) && (p[0].y < p[2].y))
5758           {
5759              if (rotation)
5760                *rotation = TDM_TRANSFORM_NORMAL;
5761
5762              if (rect)
5763                EINA_RECTANGLE_SET(rect, p[0].x, p[0].y, p[2].x - p[0].x, p[2].y - p[0].y);
5764
5765              ret = EINA_TRUE;
5766           }
5767         else if ((p[0].x > p[2].x) && (p[0].y > p[2].y))
5768           {
5769              if (rotation)
5770                *rotation = TDM_TRANSFORM_180;
5771
5772              if (rect)
5773                EINA_RECTANGLE_SET(rect, p[2].x, p[2].y, p[0].x - p[2].x, p[0].y - p[2].y);
5774
5775              ret = EINA_TRUE;
5776           }
5777      }
5778    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))
5779      {
5780         /* 90 or 270 */
5781         if ((p[0].x > p[2].x) && (p[0].y < p[2].y))
5782           {
5783              if (rotation)
5784                *rotation = TDM_TRANSFORM_90;
5785
5786              if (rect)
5787                EINA_RECTANGLE_SET(rect, p[2].x, p[0].y, p[0].x - p[2].x, p[2].y - p[0].y);
5788
5789              ret = EINA_TRUE;
5790           }
5791         else if ((p[0].x < p[2].x) && (p[0].y > p[2].y))
5792           {
5793              if (rotation)
5794                *rotation = TDM_TRANSFORM_270;
5795
5796              if (rect)
5797                EINA_RECTANGLE_SET(rect, p[0].x, p[2].y, p[2].x - p[0].x, p[0].y - p[2].y);
5798
5799              ret = EINA_TRUE;
5800           }
5801      }
5802
5803    return ret;
5804 }
5805
5806 static Eina_Bool
5807 _output_viewport_get_from_evas_map(E_Map *m, Eina_Rectangle *out, unsigned int *rotation)
5808 {
5809    Evas_Point p[4];
5810    int i;
5811
5812    for (i = 0; i < 4; i++)
5813      e_map_point_coord_get(m, i, &p[i].x, &p[i].y, NULL);
5814
5815    if (!_coords_to_rectangle_convert(p, out, rotation))
5816      {
5817         DBG("Cannot convert given coords to rectangle.\n"
5818             "p1(%d %d) p2(%d %d) p3(%d %d) p4(%d %d)",
5819             p[0].x, p[0].y, p[1].x, p[1].y,
5820             p[2].x, p[2].y, p[3].x, p[3].y);
5821         return EINA_FALSE;
5822      }
5823
5824    return EINA_TRUE;
5825 }
5826
5827 static unsigned int
5828 _transform_merge_with_rotation(enum wl_output_transform transform, unsigned int rotation)
5829 {
5830    int trans_rotation, flip;
5831
5832    trans_rotation = transform & 0x3;
5833    flip = transform & 0x4;
5834
5835    return (flip + (trans_rotation + rotation) % 4);
5836 }
5837
5838 static void
5839 _e_comp_wl_surface_output_viewport_get(E_Client *ec, Eina_Rectangle *out)
5840 {
5841    if (!out)
5842      return;
5843
5844    if (!ec->comp_data)
5845      return;
5846
5847    if (e_comp_wl_subsurface_check(ec))
5848      e_comp_wl_subsurface_global_coord_get(ec, &out->x, &out->y);
5849    else
5850      {
5851         out->x = ec->x;
5852         out->y = ec->y;
5853      }
5854
5855    out->w = ec->comp_data->width_from_viewport;
5856    out->w = (out->w + 1) & ~1;
5857    out->h = ec->comp_data->height_from_viewport;
5858
5859    e_comp_object_frame_xy_unadjust(ec->frame, out->x, out->y, &out->x, &out->y);
5860    e_comp_object_frame_wh_unadjust(ec->frame, out->w, out->h, &out->w, &out->h);
5861 }
5862
5863 EINTERN Eina_Bool
5864 e_comp_wl_surface_viewport_get(E_Client *ec, Eina_Rectangle *buffer_viewport, Eina_Rectangle *output_viewport, unsigned int *transform)
5865 {
5866    E_Comp_Wl_Buffer *buffer;
5867    E_Comp_Wl_Buffer_Viewport *vp;
5868    E_Map *m;
5869    enum wl_output_transform buffer_transform;
5870    unsigned int rotation;
5871    Eina_Bool res = EINA_FALSE;
5872
5873    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
5874
5875    if (e_object_is_del(E_OBJECT(ec)))
5876      return EINA_FALSE;
5877
5878    vp = &ec->comp_data->scaler.buffer_viewport;
5879
5880    if (buffer_viewport)
5881      {
5882         buffer = ec->comp_data->buffer_ref.buffer;
5883         /* Getting a viewport of buffer needs geometry of buffer. */
5884         if (!buffer)
5885           return EINA_FALSE;
5886
5887         _buffer_viewport_get(vp, buffer->w, buffer->h, buffer_viewport);
5888      }
5889
5890    if ((output_viewport) || (transform))
5891      {
5892         m = e_client_map_get(ec);
5893         if (m)
5894           res = _output_viewport_get_from_evas_map(m, output_viewport, &rotation);
5895         else
5896           _e_comp_wl_surface_output_viewport_get(ec, output_viewport);
5897         e_map_free(m);
5898
5899         if (transform)
5900           {
5901              buffer_transform = e_comp_wl_output_buffer_transform_get(ec);
5902              /* NOTE Merge transform value from evas_map with E_Comp_Wl_Buffer_Viewport's one.
5903               * Since buffer.transform isn't applied using evas_map,
5904               * it has to be taken into account here to apply buffer.transform
5905               * and rotation of e_client_transform together. */
5906              if (res)
5907                *transform = _transform_merge_with_rotation(buffer_transform, rotation);
5908              else
5909                *transform = (unsigned int)buffer_transform;
5910           }
5911      }
5912
5913    return EINA_TRUE;
5914 }
5915
5916 EINTERN Eina_Bool
5917 e_comp_wl_surface_role_set(E_Client *ec, const char *role_name, struct wl_resource *error_resource, uint32_t error_code)
5918 {
5919    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
5920    EINA_SAFETY_ON_NULL_RETURN_VAL(role_name, EINA_FALSE);
5921
5922    /* Must be called with valid comp_data */
5923    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, EINA_FALSE);
5924
5925    if ((ec->comp_data->role_name == NULL) ||
5926        (ec->comp_data->role_name == role_name) ||
5927        (strcmp(ec->comp_data->role_name, role_name) == 0))
5928      {
5929         ec->comp_data->role_name = role_name;
5930         return EINA_TRUE;
5931      }
5932
5933    if (error_resource)
5934      {
5935         wl_resource_post_error(error_resource, error_code,
5936                                "Cannot assign role %s to wl_surface@%d,"
5937                                " already has role %s\n",
5938                                role_name,
5939                                ec->comp_data->wl_surface ?
5940                                wl_resource_get_id(ec->comp_data->wl_surface) : -1,
5941                                ec->comp_data->role_name);
5942      }
5943
5944    return EINA_FALSE;
5945 }
5946
5947 EINTERN const char *
5948 e_comp_wl_surface_role_get(E_Client *ec)
5949 {
5950    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, NULL);
5951    return ec->comp_data ? ec->comp_data->role_name : NULL;
5952 }
5953
5954 EINTERN struct wl_resource *
5955 e_comp_wl_client_surface_get(E_Client *ec)
5956 {
5957    struct wl_resource *surface = NULL;
5958    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, NULL);
5959    EINA_SAFETY_ON_NULL_RETURN_VAL(ec->comp_data, NULL);
5960
5961    g_mutex_lock(&ec->comp_data->surface_mutex);
5962    surface = ec->comp_data->surface;
5963    g_mutex_unlock(&ec->comp_data->surface_mutex);
5964
5965    return surface;
5966 }
5967
5968 EINTERN void e_comp_wl_client_surface_set(E_Client *ec, struct wl_resource *surface)
5969 {
5970    EINA_SAFETY_ON_NULL_RETURN(ec);
5971    EINA_SAFETY_ON_NULL_RETURN(ec->comp_data);
5972
5973    g_mutex_lock(&ec->comp_data->surface_mutex);
5974    ec->comp_data->surface = surface;
5975    g_mutex_unlock(&ec->comp_data->surface_mutex);
5976 }
5977
5978 EINTERN E_Client *
5979 e_comp_wl_util_client_from_surface_resource(struct wl_resource *surface_resource)
5980 {
5981    return e_compositor_util_client_from_surface_resource(surface_resource);
5982 }
5983
5984 EINTERN void
5985 e_comp_wl_client_surface_pending_buffer_set(E_Client *ec, E_Comp_Wl_Buffer *buffer, int32_t sx, int32_t sy)
5986 {
5987    if (!ec->comp_data->mapped)
5988      {
5989         if (ec->comp_data->shell.surface &&
5990             !ec->internal && !e_comp_wl_subsurface_check(ec) && !ec->remote_surface.provider)
5991           {
5992              ELOGF("COMP", "Current unmapped. ATTACH buffer:%p", ec, buffer);
5993           }
5994      }
5995
5996    if (!buffer)
5997      {
5998         if (ec->comp_data->mapped)
5999           {
6000              /* will be unmapped. so run capture */
6001              e_comp_wl_remote_surface_image_save(ec);
6002           }
6003      }
6004
6005    _e_comp_wl_surface_state_buffer_set(&ec->comp_data->pending, buffer);
6006
6007    ec->comp_data->pending.sx = sx;
6008    ec->comp_data->pending.sy = sy;
6009    ec->comp_data->pending.new_attach = EINA_TRUE;
6010
6011    e_client_fps_update(ec);
6012 }
6013
6014 EINTERN void
6015 e_comp_wl_client_surface_pending_opaque_region_set(E_Client *ec, Eina_Tiler *region)
6016 {
6017    if (ec->comp_data->pending.opaque)
6018      eina_tiler_clear(ec->comp_data->pending.opaque);
6019
6020    if (region)
6021      {
6022         eina_tiler_union(ec->comp_data->pending.opaque, region);
6023
6024         if (!eina_tiler_empty(ec->comp_data->pending.opaque))
6025           {
6026              if (ec->argb)
6027                {
6028                   ec->argb = EINA_FALSE;
6029                   ELOGF("COMP", "Set argb:%d", ec, ec->argb);
6030                   EC_CHANGED(ec);
6031                   _e_comp_wl_hook_call(E_COMP_WL_HOOK_CLIENT_ALPHA_CHANGE, ec);
6032                   e_comp_object_alpha_set(ec->frame, EINA_FALSE);
6033                }
6034           }
6035      }
6036    else
6037      {
6038         if (!ec->argb)
6039           {
6040              ec->argb = EINA_TRUE;
6041              ELOGF("COMP", "Set argb:%d", ec, ec->argb);
6042              EC_CHANGED(ec);
6043              _e_comp_wl_hook_call(E_COMP_WL_HOOK_CLIENT_ALPHA_CHANGE, ec);
6044              e_comp_object_alpha_set(ec->frame, EINA_TRUE);
6045           }
6046      }
6047 }
6048
6049 EINTERN void
6050 e_comp_wl_client_surface_pending_input_region_set(E_Client *ec, Eina_Tiler *region)
6051 {
6052    if (ec->comp_data->pending.input)
6053      eina_tiler_clear(ec->comp_data->pending.input);
6054
6055    if (region)
6056      {
6057         if (eina_tiler_empty(region))
6058           {
6059              ELOGF("COMP", "         |unset input rect", NULL);
6060              e_comp_object_input_objs_del(ec->frame);
6061              e_comp_object_input_area_set(ec->frame, -1, -1, 1, 1);
6062           }
6063         else
6064           eina_tiler_union(ec->comp_data->pending.input, region);
6065      }
6066    else
6067      {
6068         eina_tiler_rect_add(ec->comp_data->pending.input,
6069                             &(Eina_Rectangle){0, 0, ec->client.w, ec->client.h});
6070      }
6071 }
6072
6073 EINTERN void
6074 e_comp_wl_client_surface_pending_frame_callback_add(E_Client *ec, struct wl_resource *callback_resource)
6075 {
6076    ec->comp_data->pending.frames = eina_list_prepend(ec->comp_data->pending.frames, callback_resource);
6077 }
6078
6079 EINTERN void
6080 e_comp_wl_client_surface_frame_callback_remove(E_Client *ec, struct wl_resource *callback_resource)
6081 {
6082    E_Comp_Wl_Subsurf_Data *sdata;
6083
6084    if (!ec->comp_data)
6085      return;
6086
6087    if (ec->comp_data->frames)
6088      {
6089         ec->comp_data->frames =
6090            eina_list_remove(ec->comp_data->frames, callback_resource);
6091      }
6092
6093    if (ec->comp_data->pending.frames)
6094      {
6095         ec->comp_data->pending.frames =
6096            eina_list_remove(ec->comp_data->pending.frames, callback_resource);
6097      }
6098
6099    sdata = ec->comp_data->sub.data;
6100    if ((sdata) && (sdata->cached.frames))
6101      {
6102         sdata->cached.frames =
6103            eina_list_remove(sdata->cached.frames, callback_resource);
6104      }
6105 }
6106
6107 EINTERN void
6108 e_comp_wl_client_surface_pending_commit(E_Client *ec)
6109 {
6110    if (e_object_is_del(E_OBJECT(ec))) return;
6111
6112    if (e_comp_wl_remote_surface_commit(ec)) return;
6113
6114    e_comp_wl_surface_commit(ec);
6115
6116    _e_comp_wl_hook_call(E_COMP_WL_HOOK_CLIENT_SURFACE_COMMIT, ec);
6117 }
6118
6119 static void
6120 _e_comp_wl_client_subsurface_set(E_Client *ec, E_Comp_Wl_Subsurf_Data *sub)
6121 {
6122    e_comp_wl_client_surface_set(ec, ec->comp_data->wl_surface);
6123    ec->comp_data->sub.data = sub;
6124
6125    /* set subsurface client properties */
6126    ec->borderless = EINA_TRUE;
6127    ec->argb = EINA_TRUE;
6128    ELOGF("SUBSURFACE", "Set argb:%d", ec, ec->argb);
6129    ec->lock_border = EINA_TRUE;
6130    ec->lock_focus_in = ec->lock_focus_out = EINA_TRUE;
6131    ec->netwm.state.skip_taskbar = EINA_TRUE;
6132    ec->netwm.state.skip_pager = EINA_TRUE;
6133    ec->border_size = 0;
6134    ec->lock_user_location = 0;
6135    ec->lock_client_location = 0;
6136    ec->lock_user_size = 0;
6137    ec->lock_client_size = 0;
6138    ec->lock_client_stacking = 0;
6139    ec->lock_user_maximize = 0;
6140    ec->lock_client_maximize = 0;
6141    ec->changes.need_maximize = 0;
6142    ec->maximized = E_MAXIMIZE_NONE;
6143    EC_CHANGED(ec);
6144
6145    ec->new_client = ec->netwm.ping = EINA_TRUE;
6146    e_comp->new_clients++;
6147    e_client_unignore(ec);
6148
6149    /* Delete 'below_obj' if it was created before 'E_Client' becomes subsurface.
6150     * It's not for subsurface. */
6151    E_FREE_FUNC(ec->comp_data->sub.below_obj, evas_object_del);
6152 }
6153
6154 static void
6155 _e_comp_wl_client_subsurface_parent_set(E_Client *ec, E_Client *parent)
6156 {
6157    E_Comp_Wl_Subsurf_Data *sub = ec->comp_data->sub.data;
6158    E_Layer layer;
6159
6160    ELOGF("COMP", "         |subsurface_parent:%p", ec, parent);
6161
6162    sub->parent = parent;
6163
6164    if (parent->frame)
6165      {
6166         layer = e_client_layer_get(parent);
6167         if (layer > E_LAYER_BOTTOM)
6168           e_client_layer_set(ec, layer);
6169      }
6170
6171    if (parent->comp_data)
6172      {
6173         /* append this client to the parents subsurface list */
6174         parent->comp_data->sub.list_pending =
6175            eina_list_append(parent->comp_data->sub.list_pending, ec);
6176         parent->comp_data->sub.list_changed = EINA_TRUE;
6177      }
6178 }
6179
6180 EINTERN void
6181 e_comp_wl_client_subsurface_parent_unset(E_Client *ec)
6182 {
6183    E_Comp_Wl_Subsurf_Data *sub = ec->comp_data->sub.data;
6184    E_Client *parent = sub->parent;
6185
6186    parent->comp_data->sub.list =
6187       eina_list_remove(parent->comp_data->sub.list, ec);
6188    parent->comp_data->sub.list_pending =
6189       eina_list_remove(parent->comp_data->sub.list_pending, ec);
6190    parent->comp_data->sub.below_list =
6191       eina_list_remove(parent->comp_data->sub.below_list, ec);
6192    parent->comp_data->sub.below_list_pending =
6193       eina_list_remove(parent->comp_data->sub.below_list_pending, ec);
6194
6195    sub->parent = NULL;
6196 }
6197
6198 EINTERN void
6199 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)
6200 {
6201    sub->resource = subsurface_resource;
6202    sub->cached_buffer_ref.buffer = NULL;
6203    sub->synchronized = EINA_TRUE;
6204    sub->parent = parent;
6205    sub->remote_surface.offscreen_parent = offscreen_parent;
6206    if (offscreen_parent)
6207      ELOGF("SUBSURFACE", "         |offscreen_parent:%p", ec, offscreen_parent);
6208
6209    _e_comp_wl_surface_state_init(&sub->cached, ec->w, ec->h);
6210
6211    _e_comp_wl_client_subsurface_set(ec, sub);
6212    _e_comp_wl_client_subsurface_parent_set(ec, parent);
6213
6214    e_comp_wl_hook_call(E_COMP_WL_HOOK_SUBSURFACE_CREATE, ec);
6215 }
6216
6217 EINTERN void
6218 e_comp_wl_client_subsurface_finish(E_Client *ec)
6219 {
6220    E_Comp_Wl_Subsurf_Data *sub = ec->comp_data->sub.data;
6221
6222    if (sub->parent)
6223      e_comp_wl_client_subsurface_parent_unset(ec);
6224
6225    e_comp_wl_surface_state_finish(&sub->cached);
6226    e_comp_wl_buffer_reference(&sub->cached_buffer_ref, NULL);
6227
6228    ec->comp_data->sub.data = NULL;
6229 }
6230
6231 EINTERN void
6232 e_comp_wl_client_evas_init(E_Client *ec)
6233 {
6234    EINA_SAFETY_ON_NULL_RETURN(ec);
6235
6236    _e_comp_wl_client_evas_init(ec);
6237 }
6238
6239 EINTERN void
6240 e_comp_wl_client_evas_deinit(E_Client *ec)
6241 {
6242    EINA_SAFETY_ON_NULL_RETURN(ec);
6243
6244    _e_comp_wl_client_evas_deinit(ec);
6245 }
6246
6247 EINTERN void
6248 e_comp_wl_focus_check(void)
6249 {
6250    _e_comp_wl_focus_check();
6251 }
6252
6253 EINTERN Eina_Bool
6254 e_comp_wl_client_subsurface_cyclic_reference_check(E_Client *ec, E_Client *parent)
6255 {
6256    while (parent)
6257      {
6258         if (ec == parent)
6259           return EINA_TRUE;
6260
6261         if ((parent->comp_data) && (parent->comp_data->sub.data))
6262           parent = parent->comp_data->sub.data->parent;
6263         else
6264           break;
6265      }
6266
6267    return EINA_FALSE;
6268 }