summaryrefslogtreecommitdiff
path: root/src/bin/exactness/injector.c
blob: 7530fd88067d8df5864d15b11fd39cf10252e69c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <unistd.h>

#include <Eina.h>
#include <Eet.h>
#include <Ecore.h>
#include <Ecore_Getopt.h>
#include <Elementary.h>

#include <Exactness.h>
#include "common.h"

static Eina_Stringshare *_src_filename = NULL;
static Exactness_Unit *_src_unit = NULL;
static int _verbose = 0;

static Eina_Debug_Session *_session = NULL;
static int _cid = -1, _pid = -1;
static Eina_List *_cur_event_list = NULL;

static int _all_apps_get_op = EINA_DEBUG_OPCODE_INVALID;
static int _mouse_in_op = EINA_DEBUG_OPCODE_INVALID;
static int _mouse_out_op = EINA_DEBUG_OPCODE_INVALID;
static int _mouse_wheel_op = EINA_DEBUG_OPCODE_INVALID;
static int _multi_down_op = EINA_DEBUG_OPCODE_INVALID;
static int _multi_up_op = EINA_DEBUG_OPCODE_INVALID;
static int _multi_move_op = EINA_DEBUG_OPCODE_INVALID;
static int _key_down_op = EINA_DEBUG_OPCODE_INVALID;
static int _key_up_op = EINA_DEBUG_OPCODE_INVALID;
static int _take_shot_op = EINA_DEBUG_OPCODE_INVALID;
static int _efl_event_op = EINA_DEBUG_OPCODE_INVALID;
static int _click_on_op = EINA_DEBUG_OPCODE_INVALID;
static int _stabilize_op = EINA_DEBUG_OPCODE_INVALID;
static int _finish_op = EINA_DEBUG_OPCODE_INVALID;

static Eina_Bool _all_apps_get_cb(Eina_Debug_Session *, int , void *, int);

EINA_DEBUG_OPCODES_ARRAY_DEFINE(_debug_ops,
      {"Daemon/Client/register_observer", &_all_apps_get_op, NULL},
      {"Daemon/Client/added", NULL, &_all_apps_get_cb},
      {"Exactness/Actions/Mouse In", &_mouse_in_op, NULL},
      {"Exactness/Actions/Mouse Out", &_mouse_out_op, NULL},
      {"Exactness/Actions/Mouse Wheel", &_mouse_wheel_op, NULL},
      {"Exactness/Actions/Multi Down", &_multi_down_op, NULL},
      {"Exactness/Actions/Multi Up", &_multi_up_op, NULL},
      {"Exactness/Actions/Multi Move", &_multi_move_op, NULL},
      {"Exactness/Actions/Key Down", &_key_down_op, NULL},
      {"Exactness/Actions/Key Up", &_key_up_op, NULL},
      {"Exactness/Actions/Take Shot", &_take_shot_op, NULL},
      {"Exactness/Actions/EFL Event", &_efl_event_op, NULL},
      {"Exactness/Actions/Click On", &_click_on_op, NULL},
      {"Exactness/Actions/Stabilize", &_stabilize_op, NULL},
      {"Exactness/Actions/Finish", &_finish_op, NULL},
      {NULL, NULL, NULL}
      );

static void
_feed_event(Exactness_Action_Type type, unsigned int n_evas, void *data)
{
   switch (type)
     {
      case EXACTNESS_ACTION_MOUSE_IN:
           {
              ex_printf(1, "Mouse in\n");
              ex_printf(2, "%s evas_event_feed_mouse_in n_evas=<%d>\n", __func__, n_evas);
              eina_debug_session_send(_session, _cid, _mouse_in_op, &n_evas, sizeof(int));
              break;
           }
      case EXACTNESS_ACTION_MOUSE_OUT:
           {
              ex_printf(1, "Mouse out\n");
              ex_printf(2, "%s evas_event_feed_mouse_out n_evas=<%d>\n", __func__, n_evas);
              eina_debug_session_send(_session, _cid, _mouse_out_op, &n_evas, sizeof(int));
              break;
           }
      case EXACTNESS_ACTION_MOUSE_WHEEL:
           {
              Exactness_Action_Mouse_Wheel *t = data;
              int len = 3*sizeof(int);
              char *buf = malloc(len), *tmp = buf;
              ex_printf(1, "Mouse wheel\n");
              ex_printf(2, "%s evas_event_feed_mouse_wheel n_evas=<%d>\n", __func__, n_evas);
              STORE_INT(tmp, n_evas);
              STORE_INT(tmp, t->direction);
              STORE_INT(tmp, t->z);
              eina_debug_session_send(_session, _cid, _mouse_wheel_op, buf, len);
              free(buf);
              break;
           }
      case EXACTNESS_ACTION_MULTI_DOWN:
      case EXACTNESS_ACTION_MULTI_UP:
           {
              Exactness_Action_Multi_Event *t = data;
              int len = 5*sizeof(int)+7*sizeof(double)+sizeof(int);
              char *buf = malloc(len), *tmp = buf;
              ex_printf(2, "%s %s n_evas=<%d>\n", __func__,
                    type == EXACTNESS_ACTION_MULTI_DOWN ? "evas_event_feed_multi_down" :
                    "evas_event_feed_multi_up", n_evas);
              STORE_INT(tmp, n_evas);
              STORE_INT(tmp, t->d);
              STORE_INT(tmp, t->b);
              STORE_INT(tmp, t->x);
              STORE_INT(tmp, t->y);
              STORE_DOUBLE(tmp, t->rad);
              STORE_DOUBLE(tmp, t->radx);
              STORE_DOUBLE(tmp, t->rady);
              STORE_DOUBLE(tmp, t->pres);
              STORE_DOUBLE(tmp, t->ang);
              STORE_DOUBLE(tmp, t->fx);
              STORE_DOUBLE(tmp, t->fy);
              STORE_INT(tmp, t->flags);
              eina_debug_session_send(_session, _cid,
                    type == EXACTNESS_ACTION_MULTI_DOWN ? _multi_down_op : _multi_up_op,
                    buf, len);
              free(buf);
              break;
           }
      case EXACTNESS_ACTION_MULTI_MOVE:
           {
              Exactness_Action_Multi_Move *t = data;
              int len = 4*sizeof(int)+7*sizeof(double);
              char *buf = malloc(len), *tmp = buf;
              ex_printf(2, "%s evas_event_feed_multi_move n_evas=<%d>\n", __func__, n_evas);
              STORE_INT(tmp, n_evas);
              STORE_INT(tmp, t->d);
              STORE_INT(tmp, t->x);
              STORE_INT(tmp, t->y);
              STORE_DOUBLE(tmp, t->rad);
              STORE_DOUBLE(tmp, t->radx);
              STORE_DOUBLE(tmp, t->rady);
              STORE_DOUBLE(tmp, t->pres);
              STORE_DOUBLE(tmp, t->ang);
              STORE_DOUBLE(tmp, t->fx);
              STORE_DOUBLE(tmp, t->fy);
              eina_debug_session_send(_session, _cid, _multi_move_op, buf, len);
              free(buf);
              break;
           }
      case EXACTNESS_ACTION_KEY_DOWN:
      case EXACTNESS_ACTION_KEY_UP:
           {
              Exactness_Action_Key_Down_Up *t = data;
              int len = 2*sizeof(int) + 4;
              len += t->keyname ? strlen(t->keyname) : 0;
              len += t->key ? strlen(t->key) : 0;
              len += t->string ? strlen(t->string) : 0;
              len += t->compose ? strlen(t->compose) : 0;
              char *buf = malloc(len), *tmp = buf;
              ex_printf(2, "%s %s n_evas=<%d>\n", __func__,
                    type == EXACTNESS_ACTION_KEY_DOWN ? "evas_event_feed_key_down " :
                    "evas_event_feed_key_up", n_evas);
              STORE_INT(tmp, n_evas);
              STORE_STRING(tmp, t->keyname);
              STORE_STRING(tmp, t->key);
              STORE_STRING(tmp, t->string);
              STORE_STRING(tmp, t->compose);
              STORE_INT(tmp, t->keycode);
              eina_debug_session_send(_session, _cid,
                    type == EXACTNESS_ACTION_KEY_DOWN ? _key_down_op : _key_up_op,
                    buf, len);
              free(buf);
              break;
           }
      case EXACTNESS_ACTION_TAKE_SHOT:
           {
              ex_printf(2, "%s take shot n_evas=<%d>\n", __func__, n_evas);
              eina_debug_session_send(_session, _cid, _take_shot_op, &n_evas, sizeof(int));
              break;
           }
      case EXACTNESS_ACTION_EFL_EVENT:
           {
              Exactness_Action_Efl_Event *t = data;
              int len = 0;
              len += t->wdg_name ? strlen(t->wdg_name) : 0;
              len += t->event_name ? strlen(t->event_name) : 0;
              char *buf = malloc(len), *tmp = buf;
              ex_printf(2, "%s %s\n", __func__, "EFL event");
              STORE_STRING(tmp, t->wdg_name);
              STORE_STRING(tmp, t->event_name);
              eina_debug_session_send(_session, _cid, _efl_event_op, buf, len);
              free(buf);
              break;
           }
      case EXACTNESS_ACTION_CLICK_ON:
           {
              Exactness_Action_Click_On *t = data;
              int len = 0;
              len += t->wdg_name ? strlen(t->wdg_name) : 0;
              char *buf = malloc(len), *tmp = buf;
              ex_printf(2, "%s %s\n", __func__, "Click On");
              STORE_STRING(tmp, t->wdg_name);
              eina_debug_session_send(_session, _cid, _click_on_op, buf, len);
              free(buf);
              break;
           }
      case EXACTNESS_ACTION_STABILIZE:
           {
              ex_printf(2, "%s stabilize\n", __func__);
              eina_debug_session_send(_session, _cid, _stabilize_op, NULL, 0);
              break;
           }
      default: /* All non-input events are not handeled */
         break;
     }
}

static Eina_Bool
_feed_event_timer_cb(void *data EINA_UNUSED)
{
   Exactness_Action *act = eina_list_data_get(_cur_event_list);
   _feed_event(act->type, act->n_evas, act->data);

   _cur_event_list = eina_list_next(_cur_event_list);

   if (!_cur_event_list)
     {  /* Finished reading all events */
        eina_debug_session_send(_session, _cid, _finish_op, NULL, 0);
        ecore_main_loop_quit();
     }
   else
     {
        Exactness_Action *cur_act = eina_list_data_get(_cur_event_list);
        ecore_timer_add(cur_act->delay_ms / 1000.0, _feed_event_timer_cb, NULL);
     }
   return ECORE_CALLBACK_CANCEL;
}

static Eina_Bool
_src_open()
{
   double diff_time = 0; /* Time to wait before feeding the first event */

   ex_printf(2, "<%s> Source file is <%s>\n", __func__, _src_filename);
   if (!strcmp(_src_filename + strlen(_src_filename) - 4,".exu"))
     {
        _src_unit = exactness_unit_file_read(_src_filename);
     }
   if (!_src_unit) return EINA_FALSE;
   _cur_event_list = _src_unit->actions;
   Exactness_Action *act = eina_list_data_get(_cur_event_list);

   if (act->delay_ms)
     {
        ex_printf(2, "  Waiting <%f>\n", diff_time);
        ecore_timer_add(act->delay_ms / 1000.0, _feed_event_timer_cb, NULL);
     }
   else
     {
        _feed_event_timer_cb(NULL);
     }
   return EINA_TRUE;
}

static void
_main_loop_all_apps_get_cb(Eina_Debug_Session *session EINA_UNUSED, int srcid EINA_UNUSED, void *buffer, int size EINA_UNUSED)
{
   char *buf = buffer;
   int chosen_cid = -1;
   if (_cid != -1) return;
   while (size > 0)
     {
        int cid, pid, len;
        cid = EXTRACT_INT(buf);
        pid = EXTRACT_INT(buf);
        if (_pid != -1)
          {
             if (_pid == pid)
               {
                  _cid = cid;
                  _src_open();
                  return;
               }
          }
        else
          {
             if (!strcmp(buf, "exactness_play"))
               {
                  if (chosen_cid != -1)
                    {
                       fprintf(stderr, "Need to specify a PID - too much choice\n");
                       return;
                    }
                  chosen_cid = cid;
               }
          }
        len = strlen(buf) + 1;
        buf += len;
        size -= (2 * sizeof(int) + len);
     }
   if (chosen_cid != -1)
     {
        _cid = chosen_cid;
        _src_open();
     }
}

WRAPPER_TO_XFER_MAIN_LOOP(_all_apps_get_cb)

static void
_ops_ready_cb(void *data EINA_UNUSED, Eina_Bool status)
{
   if (status)
      eina_debug_session_send(_session, 0, _all_apps_get_op, NULL, 0);
}

static const Ecore_Getopt optdesc = {
  "exactness_inject",
  "%prog [options] <-v|-p|-t|-h> command",
  PACKAGE_VERSION,
  "(C) 2018 Enlightenment",
  "BSD",
  "A scenario events injector for EFL based applications.",
  1,
  {
    ECORE_GETOPT_STORE_STR('t', "test", "Test to run on the given application"),
    ECORE_GETOPT_STORE_INT('p', "pid", "PID of the application to connect to"),
    ECORE_GETOPT_STORE_INT('r', "remote-port", "Port to connect remotely to the daemon. Local connection if not specified"),
    ECORE_GETOPT_COUNT('v', "verbose", "Turn verbose messages on."),

    ECORE_GETOPT_LICENSE('L', "license"),
    ECORE_GETOPT_COPYRIGHT('C', "copyright"),
    ECORE_GETOPT_VERSION('V', "version"),
    ECORE_GETOPT_HELP('h', "help"),
    ECORE_GETOPT_SENTINEL
  }
};

int main(int argc, char **argv)
{
   int opt_args = 0, real__ = 1, port = -1;
   char *src = NULL;
   Eina_Value *ret__;
   Eina_Bool want_quit = EINA_FALSE;

   Ecore_Getopt_Value values[] = {
     ECORE_GETOPT_VALUE_STR(src),
     ECORE_GETOPT_VALUE_INT(_pid),
     ECORE_GETOPT_VALUE_INT(port),
     ECORE_GETOPT_VALUE_INT(_verbose),

     ECORE_GETOPT_VALUE_BOOL(want_quit),
     ECORE_GETOPT_VALUE_BOOL(want_quit),
     ECORE_GETOPT_VALUE_BOOL(want_quit),
     ECORE_GETOPT_VALUE_BOOL(want_quit),
     ECORE_GETOPT_VALUE_NONE
   };

   if (!ecore_evas_init())
      return EXIT_FAILURE;

   opt_args = ecore_getopt_parse(&optdesc, values, argc, argv);
   if (opt_args < 0)
     {
        fprintf(stderr, "Failed parsing arguments.\n");
        goto end;
     }
   if (want_quit) goto end;

   if (!src)
     {
        fprintf(stderr, "no test file specified\n");
        goto end;
     }
   _src_filename = eina_stringshare_add(src);

   if (port == -1)
      _session = eina_debug_local_connect(EINA_TRUE);
   else
      _session = eina_debug_remote_connect(port);
   eina_debug_opcodes_register(_session, _debug_ops(), _ops_ready_cb, NULL);

   elm_init(argc, argv);
   ret__ = efl_loop_begin(efl_main_loop_get());
   real__ = efl_loop_exit_code_process(ret__);
   elm_shutdown();
end:
   ecore_evas_shutdown();
   return real__;
}