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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
|
/*
* Copyright (c) 2013, TOYOTA MOTOR CORPORATION.
*
* This program is licensed under the terms and conditions of the
* Apache License, version 2.0. The full text of the Apache License is at
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
/**
* @brief HomeScreen for uint test of Weston(Wayland) IVI plugins
*
* @date Feb-08-2013
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <assert.h>
#include <poll.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <signal.h>
#include <linux/input.h>
#include <wayland-client.h>
#include "ico_ivi_shell-client-protocol.h"
#include "ico_window_mgr-client-protocol.h"
#include "ico_input_mgr-client-protocol.h"
#include "test-common.h"
#define MAX_APPID 128
#define ICO_IVI_MAX_COORDINATE 16383
struct surface_name {
struct surface_name *next;
int surfaceid;
int pid;
char appid[MAX_APPID];
int x;
int y;
int width;
int height;
int visible;
};
#define MAX_CON_NAME 127
struct display {
struct wl_display *display;
struct wl_registry *registry;
struct wl_compositor *compositor;
struct wl_shell *shell;
struct ico_ivi_shell *ico_ivi_shell;
struct ico_window_mgr *ico_window_mgr;
struct ico_input_mgr_control *ico_input_mgr;
struct ico_input_mgr_device *ico_input_device;
struct ico_exinput *ico_exinput;
struct input *input;
struct output *output;
struct surface *surface;
struct surface_name *surface_name;
struct surface_name *bgsurface_name;
int bg_created;
int init_color;
int init_width;
int init_height;
int surface_created;
int surface_destroyed;
int prompt;
int visible_on_create;
char connect[MAX_CON_NAME+1];
};
struct input {
struct display *display;
struct wl_seat *seat;
struct wl_pointer *pointer;
struct wl_keyboard *keyboard;
float x, y;
uint32_t button_mask;
struct surface *pointer_focus;
struct surface *keyboard_focus;
uint32_t last_key, last_key_state;
};
struct output {
struct display *display;
struct wl_output *output;
int x, y;
int width, height;
};
struct surface {
struct display *display;
struct wl_surface *surface;
struct wl_shell_surface *shell_surface;
struct output *output;
EGLDisplay dpy;
EGLConfig conf;
EGLContext ctx;
EGLSurface egl_surface;
};
static void clear_surface(struct display *display);
static void
pointer_handle_enter(void *data, struct wl_pointer *pointer,
uint32_t serial, struct wl_surface *surface,
wl_fixed_t x, wl_fixed_t y)
{
struct input *input = data;
input->pointer_focus = wl_surface_get_user_data(surface);
input->x = wl_fixed_to_double(x);
input->y = wl_fixed_to_double(y);
print_log("HOMESCREEN: got pointer enter (%d,%d), surface %p",
(int)input->x, (int)input->y, surface);
}
static void
pointer_handle_leave(void *data, struct wl_pointer *pointer,
uint32_t serial, struct wl_surface *surface)
{
struct input *input = data;
input->pointer_focus = NULL;
print_log("HOMESCREEN: got pointer leave, surface %p", surface);
}
static void
pointer_handle_motion(void *data, struct wl_pointer *pointer,
uint32_t time, wl_fixed_t x, wl_fixed_t y)
{
struct input *input = data;
input->x = wl_fixed_to_double(x);
input->y = wl_fixed_to_double(y);
print_log("HOMESCREEN: got pointer motion (%d,%d)", (int)input->x, (int)input->y);
}
static void
pointer_handle_button(void *data, struct wl_pointer *pointer,
uint32_t serial, uint32_t time, uint32_t button, uint32_t state_w)
{
struct input *input = data;
uint32_t bit;
enum wl_pointer_button_state state = state_w;
bit = 1 << (button - BTN_LEFT);
if (state == WL_POINTER_BUTTON_STATE_PRESSED)
input->button_mask |= bit;
else
input->button_mask &= ~bit;
print_log("HOMESCREEN: got pointer button %u %u", button, state_w);
}
static void
pointer_handle_axis(void *data, struct wl_pointer *pointer,
uint32_t time, uint32_t axis, wl_fixed_t value)
{
print_log("HOMESCREEN: got pointer axis %u %d", axis, value);
}
static void
keyboard_handle_keymap(void *data, struct wl_keyboard *keyboard,
uint32_t format, int fd, uint32_t size)
{
close(fd);
print_log("HOMESCREEN: got keyboard keymap");
}
static void
keyboard_handle_enter(void *data, struct wl_keyboard *keyboard,
uint32_t serial, struct wl_surface *surface, struct wl_array *keys)
{
struct input *input = data;
input->keyboard_focus = wl_surface_get_user_data(surface);
print_log("HOMESCREEN: got keyboard enter, surface %p", surface);
}
static void
keyboard_handle_leave(void *data, struct wl_keyboard *keyboard,
uint32_t serial, struct wl_surface *surface)
{
struct input *input = data;
input->keyboard_focus = NULL;
print_log("HOMESCREEN: got keyboard leave, surface %p", surface);
}
static void
keyboard_handle_key(void *data, struct wl_keyboard *keyboard,
uint32_t serial, uint32_t time, uint32_t key, uint32_t state)
{
struct input *input = data;
input->last_key = key;
input->last_key_state = state;
print_log("HOMESCREEN: got keyboard key %u %u", key, state);
}
static void
keyboard_handle_modifiers(void *data, struct wl_keyboard *keyboard,
uint32_t serial, uint32_t mods_depressed,
uint32_t mods_latched, uint32_t mods_locked, uint32_t group)
{
print_log("HOMESCREEN: got keyboard modifier");
}
static const struct wl_pointer_listener pointer_listener = {
pointer_handle_enter,
pointer_handle_leave,
pointer_handle_motion,
pointer_handle_button,
pointer_handle_axis,
};
static const struct wl_keyboard_listener keyboard_listener = {
keyboard_handle_keymap,
keyboard_handle_enter,
keyboard_handle_leave,
keyboard_handle_key,
keyboard_handle_modifiers,
};
static void
seat_handle_capabilities(void *data, struct wl_seat *seat,
enum wl_seat_capability caps)
{
struct input *input = data;
if ((caps & WL_SEAT_CAPABILITY_POINTER) && !input->pointer) {
input->pointer = wl_seat_get_pointer(seat);
wl_pointer_set_user_data(input->pointer, input);
wl_pointer_add_listener(input->pointer, &pointer_listener,
input);
}
else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && input->pointer) {
wl_pointer_destroy(input->pointer);
input->pointer = NULL;
}
if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !input->keyboard) {
input->keyboard = wl_seat_get_keyboard(seat);
wl_keyboard_set_user_data(input->keyboard, input);
wl_keyboard_add_listener(input->keyboard, &keyboard_listener,
input);
}
else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && input->keyboard) {
wl_keyboard_destroy(input->keyboard);
input->keyboard = NULL;
}
}
static const struct wl_seat_listener seat_listener = {
seat_handle_capabilities,
};
static void
surface_enter(void *data, struct wl_surface *wl_surface, struct wl_output *output)
{
struct surface *surface = data;
surface->output = wl_output_get_user_data(output);
print_log("HOMESCREEN: got surface enter, output %p", surface->output);
}
static void
surface_leave(void *data, struct wl_surface *wl_surface, struct wl_output *output)
{
struct surface *surface = data;
surface->output = NULL;
print_log("HOMESCREEN: got surface leave, output %p",
wl_output_get_user_data(output));
}
static const struct wl_surface_listener surface_listener = {
surface_enter,
surface_leave
};
static void
create_surface(struct display *display)
{
struct surface *surface;
int id;
surface = malloc(sizeof *surface);
assert(surface);
surface->display = display;
display->surface = surface;
surface->surface = wl_compositor_create_surface(display->compositor);
wl_surface_add_listener(surface->surface, &surface_listener, surface);
if (display->shell) {
surface->shell_surface =
wl_shell_get_shell_surface(display->shell, surface->surface);
if (surface->shell_surface) {
wl_shell_surface_set_toplevel(surface->shell_surface);
}
}
wl_display_flush(display->display);
id = wl_proxy_get_id((struct wl_proxy *) surface->surface);
print_log("HOMESCREEN: create surface = %d", id);
poll(NULL, 0, 100); /* Wait for next frame where we'll get events. */
wl_display_roundtrip(display->display);
surface->dpy = opengl_init(display->display, &surface->conf, &surface->ctx);
if (surface->dpy) {
surface->egl_surface = opengl_create_window(display->display, surface->surface,
surface->dpy, surface->conf,
surface->ctx, display->init_width,
display->init_height, display->init_color);
clear_surface(display);
print_log("HOMESCREEN: created egl_surface %08x", (int)surface->egl_surface);
}
}
static void
clear_surface(struct display *display)
{
if (! display->surface) {
create_surface(display);
}
else {
opengl_clear_window(display->init_color);
opengl_swap_buffer(display->display,
display->surface->dpy, display->surface->egl_surface);
}
}
static void
output_handle_geometry(void *data, struct wl_output *wl_output, int x, int y,
int physical_width, int physical_height, int subpixel,
const char *make, const char *model, int32_t transform)
{
struct output *output = data;
output->x = x;
output->y = y;
}
static void
output_handle_mode(void *data, struct wl_output *wl_output, uint32_t flags,
int width, int height, int refresh)
{
struct output *output = data;
if (flags & WL_OUTPUT_MODE_CURRENT) {
struct display *display = output->display;
output->width = width;
output->height = height;
print_log("HOMESCREEN: Event[handle_mode] x/y=%d/%d bgsurf=%08x",
width, height, (int)display->bgsurface_name);
display->init_width = width;
display->init_height = height;
if (display->bgsurface_name) {
ico_window_mgr_set_positionsize(display->ico_window_mgr,
display->bgsurface_name->surfaceid,
0, 0, width, height);
}
else if (display->bg_created == 0) {
display->bg_created = 9;
create_surface(output->display);
}
}
}
static const struct wl_output_listener output_listener = {
output_handle_geometry,
output_handle_mode
};
static int
search_surface(struct display *display, const char *surfname)
{
struct surface_name *p;
p = display->surface_name;
while (p) {
if (strcmp(p->appid, surfname) == 0) break;
p = p->next;
}
if (p) {
return(p->surfaceid);
}
else {
return(-1);
}
}
static struct surface_name *
search_surfacename(struct display *display, const char *surfname)
{
struct surface_name *p;
p = display->surface_name;
while (p) {
if (strcmp(p->appid, surfname) == 0) break;
p = p->next;
}
return(p);
}
static struct surface_name *
search_surfaceid(struct display *display, const int surfaceid)
{
struct surface_name *p;
p = display->surface_name;
while (p) {
if (p->surfaceid == surfaceid) {
return(p);
}
p = p->next;
}
return(NULL);
}
static void
window_created(void *data, struct ico_window_mgr *ico_window_mgr,
uint32_t surfaceid, int32_t pid, const char *appid)
{
struct display *display = data;
struct surface_name *p;
struct surface_name *fp;
display->surface_created = 1;
p = display->surface_name;
fp = NULL;
while (p) {
if (p->surfaceid == (int)surfaceid) break;
fp = p;
p = p->next;
}
if (p) {
print_log("HOMESCREEN: Event[window_created] surface=%08x(app=%s) exist",
(int)surfaceid, appid);
}
else {
print_log("HOMESCREEN: Event[window_created] new surface=%08x(app=%s)",
(int)surfaceid, appid);
p = malloc(sizeof(struct surface_name));
if (! p) {
return;
}
memset(p, 0, sizeof(struct surface_name));
if (fp) {
fp->next = p;
}
else {
display->surface_name = p;
}
}
p->surfaceid = surfaceid;
p->pid = pid;
strncpy(p->appid, appid, MAX_APPID-1);
/* Set default size and show */
if (p->width > 0) {
ico_window_mgr_set_positionsize(display->ico_window_mgr, surfaceid,
p->x, p->y, p->width, p->height);
}
print_log("HOMESCREEN: Created window[%08x] (app=%s)", (int)surfaceid, appid);
if (strncasecmp(appid, "test-homescreen", 15) == 0) {
display->bgsurface_name = p;
if (display->bg_created == 1) {
display->bg_created = 9;
ico_window_mgr_set_positionsize(display->ico_window_mgr, surfaceid,
0, 0, display->init_width, display->init_height);
}
ico_window_mgr_set_visible(display->ico_window_mgr, surfaceid, 1, 0);
print_log("HOMESCREEN: Created window[%08x] (app=%s) Visible",
(int)surfaceid, appid);
p->visible = 1;
}
}
static void
window_destroyed(void *data, struct ico_window_mgr *ico_window_mgr, uint32_t surfaceid)
{
struct display *display = data;
struct surface_name *p;
struct surface_name *fp;
display->surface_destroyed = 1;
p = search_surfaceid(display, (int)surfaceid);
if (! p) {
print_log("HOMESCREEN: Event[window_destroyed] surface=%08x dose not exist",
(int)surfaceid);
}
else {
print_log("HOMESCREEN: Event[window_destroyed] surface=%08x", (int)surfaceid);
if (p == display->surface_name) {
display->surface_name = p->next;
}
else {
fp = display->surface_name;
while (fp) {
if (fp->next == p) {
fp->next = p->next;
break;
}
fp = fp->next;
}
}
free(p);
}
}
static void
window_visible(void *data, struct ico_window_mgr *ico_window_mgr,
uint32_t surfaceid, int32_t visible, int32_t raise, int32_t hint)
{
struct display *display = data;
struct surface_name *p;
p = search_surfaceid(display, (int)surfaceid);
if (! p) {
print_log("HOMESCREEN: Event[window_visible] surface=%08x dose not exist",
(int)surfaceid);
}
else {
print_log("HOMESCREEN: Event[window_visible] surface=%08x "
"visible=%d raise=%d hint=%d",
(int)surfaceid, visible, raise, hint);
p->visible = visible;
if (hint == 0) {
ico_window_mgr_set_visible(display->ico_window_mgr, surfaceid, visible, 9);
}
}
}
static void
window_configure(void *data, struct ico_window_mgr *ico_window_mgr,
uint32_t surfaceid, const char *appid, int32_t layer,
int32_t x, int32_t y, int32_t width, int32_t height, int32_t hint)
{
struct display *display = data;
struct surface_name *p;
print_log("HOMESCREEN: Event[window_configure] surface=%08x "
"app=%s x/y=%d/%d w/h=%d/%d hint=%d",
(int)surfaceid, appid, x, y, width, height, hint);
p = search_surfaceid(display, (int)surfaceid);
if (! p) {
print_log("HOMESCREEN: Event[window_configure] surface=%08x(app=%s) new create",
(int)surfaceid, appid);
window_created(data, ico_window_mgr, surfaceid, 0, appid);
p = search_surfaceid(display, (int)surfaceid);
if (! p) {
print_log("HOMESCREEN: Event[window_configure] can not make table");
return;
}
}
}
static void
window_active(void *data, struct ico_window_mgr *ico_window_mgr,
uint32_t surfaceid, const uint32_t active)
{
print_log("HOMESCREEN: Event[window_active] surface=%08x acive=%d",
(int)surfaceid, (int)active);
}
static const struct ico_window_mgr_listener window_mgr_listener = {
window_created,
window_destroyed,
window_visible,
window_configure,
window_active
};
static void
cb_input_capabilities(void *data, struct ico_exinput *ico_exinput,
const char *device, int32_t type, const char *swname, int32_t input,
const char *codename, int32_t code)
{
print_log("HOMESCREEN: Event[input_capabilities] device=%s type=%d sw=%s input=%d "
"code=%s[%d]", device, type, swname, input, codename, code);
}
static void
cb_input_code(void *data, struct ico_exinput *ico_exinput,
const char *device, int32_t input, const char *codename, int32_t code)
{
print_log("HOMESCREEN: Event[input_code] device=%s input=%d code=%s[%d]",
device, input, codename, code);
}
static void
cb_input_input(void *data, struct ico_exinput *ico_exinput, uint32_t time,
const char *device, int32_t input, int32_t code, int32_t state)
{
print_log("HOMESCREEN: Event[input_input] device=%s input=%d code=%d state=%d",
device, input, code, state);
}
static const struct ico_exinput_listener exinput_listener = {
cb_input_capabilities,
cb_input_code,
cb_input_input
};
static void
handle_global(void *data, struct wl_registry *registry, uint32_t id,
const char *interface, uint32_t version)
{
struct display *display = data;
struct input *input;
struct output *output;
print_log("HOMESCREEN: handle_global: interface=<%s> id=%d", interface, (int)id);
if (strcmp(interface, "wl_compositor") == 0) {
display->compositor =
wl_registry_bind(display->registry,
id, &wl_compositor_interface, 1);
}
else if (strcmp(interface, "wl_seat") == 0) {
input = calloc(1, sizeof *input);
input->display = display;
input->seat = wl_registry_bind(display->registry, id,
&wl_seat_interface, 1);
input->pointer_focus = NULL;
input->keyboard_focus = NULL;
wl_seat_add_listener(input->seat, &seat_listener, input);
display->input = input;
}
else if (strcmp(interface, "wl_output") == 0) {
output = malloc(sizeof *output);
output->display = display;
output->output = wl_registry_bind(display->registry,
id, &wl_output_interface, 1);
wl_output_add_listener(output->output,
&output_listener, output);
display->output = output;
print_log("HOMESCREEN: created output global %p", display->output);
}
else if (strcmp(interface, "wl_shell") == 0) {
display->shell =
wl_registry_bind(display->registry,
id, &wl_shell_interface, 1);
}
else if (strcmp(interface, "ico_ivi_shell") == 0) {
display->ico_ivi_shell =
wl_registry_bind(display->registry,
id, &ico_ivi_shell_interface, 1);
}
else if (strcmp(interface, "ico_window_mgr") == 0) {
display->ico_window_mgr =
wl_registry_bind(display->registry,
id, &ico_window_mgr_interface, 1);
ico_window_mgr_add_listener(display->ico_window_mgr,
&window_mgr_listener, display);
print_log("HOMESCREEN: created window_mgr global %p", display->ico_window_mgr);
ico_window_mgr_set_eventcb(display->ico_window_mgr, 1);
}
else if (strcmp(interface, "ico_input_mgr_control") == 0) {
display->ico_input_mgr =
wl_registry_bind(display->registry,
id, &ico_input_mgr_control_interface, 1);
print_log("HOMESCREEN: created input_mgr global %p", display->ico_input_mgr);
}
else if (strcmp(interface, "ico_input_mgr_device") == 0) {
display->ico_input_device =
wl_registry_bind(display->registry,
id, &ico_input_mgr_device_interface, 1);
print_log("HOMESCREEN: created input_device global %p", display->ico_input_device);
}
else if (strcmp(interface, "ico_exinput") == 0) {
display->ico_exinput =
wl_registry_bind(display->registry,
id, &ico_exinput_interface, 1);
ico_exinput_add_listener(display->ico_exinput,
&exinput_listener, display);
print_log("HOMESCREEN: created exinput global %p", display->ico_exinput);
ico_window_mgr_set_eventcb(display->ico_window_mgr, 1);
display->bg_created = 1;
create_surface(display);
}
}
static const struct wl_registry_listener registry_listener = {
handle_global
};
static char *
skip_spaces(char *buf)
{
while ((*buf == ' ') || (*buf == '\t')) {
buf++;
}
return(buf);
}
static int
pars_command(char *buf, char *pt[], const int len)
{
char *p;
int narg;
memset(pt, 0, sizeof(int *)*10);
p = buf;
for (narg = 0; narg < len; narg++) {
p = skip_spaces(p);
if (*p == 0) break;
pt[narg] = p;
for (; *p; p++) {
if ((*p == ' ') || (*p == '\t') ||
(*p == '=') || (*p == ',')) break;
}
if (*p == 0) {
narg++;
break;
}
*p = 0;
p++;
}
return (narg);
}
static void
launch_app(struct display *display, char *buf)
{
char sbuf[256];
display->surface_created = 0;
display->surface_destroyed = 0;
snprintf(sbuf, sizeof(sbuf)-1, "%s &", skip_spaces(buf));
if (system(sbuf) < 0) {
print_log("HOMESCREEN: Can not launch application[%s]", sbuf);
}
else {
sleep_with_wayland(display->display, 500);
}
}
static void
kill_app(struct display *display, char *buf)
{
char *args[10];
int narg;
struct surface_name *p;
struct surface_name *fp;
narg = pars_command(buf, args, 10);
if (narg >= 1) {
p = search_surfacename(display, args[0]);
if (kill(p->pid, SIGINT) < 0) {
print_log("HOMESCREEN: kill[%s.%d] Application dose not exist",
p->appid, p->pid);
}
else {
sleep_with_wayland(display->display, 300);
p = search_surfacename(display, args[0]);
if ((p != NULL) && (kill(p->pid, SIGTERM) >= 0)) {
sleep_with_wayland(display->display, 200);
p = search_surfacename(display, args[0]);
if (p) {
kill(p->pid, SIGKILL);
sleep_with_wayland(display->display, 200);
}
}
}
p = search_surfacename(display, args[0]);
if (p) {
if (p == display->surface_name) {
display->surface_name = p->next;
}
else {
fp = display->surface_name;
while (fp) {
if (fp->next == p) {
fp->next = p->next;
break;
}
}
}
free(p);
}
}
else {
print_log("HOMESCREEN: kill command[kill appid] has no argument");
}
}
static void
layer_surface(struct display *display, char *buf)
{
char *args[10];
int narg;
int surfaceid;
int layerid;
narg = pars_command(buf, args, 10);
if (narg >= 2) {
surfaceid = search_surface(display, args[0]);
layerid = strtol(args[1], (char **)0, 0);
if ((surfaceid >= 0) && (layerid >= 0)) {
print_log("HOMESCREEN: set_window_layer(%s,%08x)",
args[0], surfaceid, layerid);
ico_window_mgr_set_window_layer(display->ico_window_mgr, surfaceid, layerid);
}
else {
print_log("HOMESCREEN: Unknown surface(%s) at layer command", args[0]);
}
}
else {
print_log("HOMESCREEN: layer command[layer appid layerid] has no argument");
}
}
static void
positionsize_surface(struct display *display, char *buf)
{
char *args[10];
int narg;
int surfaceid;
int x, y, width, height;
narg = pars_command(buf, args, 10);
if (narg >= 5) {
surfaceid = search_surface(display, args[0]);
x = strtol(args[1], (char **)0, 0);
y = strtol(args[2], (char **)0, 0);
width = strtol(args[3], (char **)0, 0);
height = strtol(args[4], (char **)0, 0);
if ((surfaceid >= 0) && (x >= 0) && (y >=0) && (width >= 0) && (height >=0)) {
print_log("HOMESCREEN: set_positionsize(%s,%08x,%d,%d,%d,%d)",
args[0], surfaceid, x, y, width, height);
ico_window_mgr_set_positionsize(display->ico_window_mgr, surfaceid,
x, y, width, height);
}
else {
print_log("HOMESCREEN: Unknown surface(%s) at positionsize command",
args[0]);
}
}
else {
print_log("HOMESCREEN: positionsize command"
"[positionsize appid x y width heigh] has no argument");
}
}
static void
move_surface(struct display *display, char *buf)
{
char *args[10];
int narg;
int surfaceid;
int x, y;
narg = pars_command(buf, args, 10);
if (narg >= 3) {
surfaceid = search_surface(display, args[0]);
x = strtol(args[1], (char **)0, 0);
y = strtol(args[2], (char **)0, 0);
if ((surfaceid >= 0) && (x >= 0) && (y >=0)) {
print_log("HOMESCREEN: move(%s,%08x,%d,%d)", args[0], surfaceid, x, y);
ico_window_mgr_set_positionsize(display->ico_window_mgr, surfaceid,
x, y,
ICO_IVI_MAX_COORDINATE+1, ICO_IVI_MAX_COORDINATE+1);
}
else {
print_log("HOMESCREEN: Unknown surface(%s) at move command", args[0]);
}
}
else {
print_log("HOMESCREEN: move command[positionsize appid x y] has no argument");
}
}
static void
resize_surface(struct display *display, char *buf)
{
char *args[10];
int narg;
int surfaceid;
int width, height;
narg = pars_command(buf, args, 10);
if (narg >= 3) {
surfaceid = search_surface(display, args[0]);
width = strtol(args[1], (char **)0, 0);
height = strtol(args[2], (char **)0, 0);
if ((surfaceid >= 0) && (width >= 0) && (height >=0)) {
print_log("HOMESCREEN: resize(%s,%08x,%d,%d)", args[0], surfaceid, width, height);
ico_window_mgr_set_positionsize(display->ico_window_mgr, surfaceid,
ICO_IVI_MAX_COORDINATE+1, ICO_IVI_MAX_COORDINATE+1,
width, height);
}
else {
print_log("HOMESCREEN: Unknown surface(%s) at resize command", args[0]);
}
}
else {
print_log("HOMESCREEN: positionsize command"
"[resize appid width heigh] has no argument");
}
}
static void
visible_surface(struct display *display, char *buf)
{
char *args[10];
int narg;
int surfaceid;
int visible;
int raise;
narg = pars_command(buf, args, 10);
if (narg >= 3) {
surfaceid = search_surface(display, args[0]);
visible = strtol(args[1], (char **)0, 0);
raise = strtol(args[2], (char **)0, 0);
if ((surfaceid >= 0) && (visible >= 0) && (raise >=0)) {
print_log("HOMESCREEN: visible(%s,%08x,%d,%d)",
args[0], surfaceid, visible, raise);
ico_window_mgr_set_visible(display->ico_window_mgr, surfaceid,
visible, raise);
}
else {
print_log("HOMESCREEN: Unknown surface(%s) at visible command", args[0]);
}
}
else {
print_log("HOMESCREEN: visible command[visible appid visible raise] has no argument");
}
}
static void
show_surface(struct display *display, char *buf, const int show)
{
char *args[10];
int narg;
int surfaceid;
narg = pars_command(buf, args, 10);
if (narg >= 1) {
surfaceid = search_surface(display, args[0]);
if (surfaceid >= 0) {
if (show) {
print_log("HOMESCREEN: show(%s,%08x)", args[0], surfaceid);
ico_window_mgr_set_visible(display->ico_window_mgr, surfaceid, 1, 9);
}
else {
print_log("HOMESCREEN: hide(%s,%08x)", args[0], surfaceid);
ico_window_mgr_set_visible(display->ico_window_mgr, surfaceid, 0, 9);
}
}
else {
print_log("HOMESCREEN: Unknown surface(%s) at show/hide command", args[0]);
}
}
else {
print_log("HOMESCREEN: show command[show/hide appid] has no argument");
}
}
static void
raise_surface(struct display *display, char *buf, const int raise)
{
char *args[10];
int narg;
int surfaceid;
narg = pars_command(buf, args, 10);
if (narg >= 1) {
surfaceid = search_surface(display, args[0]);
if (surfaceid >= 0) {
if (raise) {
print_log("HOMESCREEN: raise(%s,%08x)", args[0], surfaceid);
ico_window_mgr_set_visible(display->ico_window_mgr, surfaceid, 9, 1);
}
else {
print_log("HOMESCREEN: lower(%s,%08x)", args[0], surfaceid);
ico_window_mgr_set_visible(display->ico_window_mgr, surfaceid, 9, 0);
}
}
else {
print_log("HOMESCREEN: Unknown surface(%s) at raise/lower command", args[0]);
}
}
else {
print_log("HOMESCREEN: show command[raise/lower appid] has no argument");
}
}
static void
transition_surface(struct display *display, char *buf)
{
char *args[10];
int narg;
int surfaceid;
int transition;
narg = pars_command(buf, args, 10);
if (narg >= 2) {
surfaceid = search_surface(display, args[0]);
transition = strtol(args[1], (char **)0, 0);
if ((surfaceid >= 0) && (transition >=0)) {
print_log("HOMESCREEN: transition(%s,%08x,%d)", args[0], surfaceid, transition);
ico_window_mgr_set_transition(display->ico_window_mgr, surfaceid, transition);
}
else {
print_log("HOMESCREEN: Unknown surface(%s) at transition command", args[0]);
}
}
else {
print_log("HOMESCREEN: transition command"
"[transition appid transition] has no argument");
}
}
static void
visible_layer(struct display *display, char *buf)
{
char *args[10];
int narg;
int layer;
int visible;
narg = pars_command(buf, args, 10);
if (narg >= 2) {
layer = strtol(args[0], (char **)0, 0);
visible = strtol(args[1], (char **)0, 0);
ico_window_mgr_set_layer_visible(display->ico_window_mgr, layer, visible);
}
else {
print_log("HOMESCREEN: layer_visible command"
"[layer_visible layer visible] has no argument");
}
}
static void
input_add(struct display *display, char *buf)
{
char *args[10];
int narg;
int input;
int fix;
narg = pars_command(buf, args, 10);
if (narg >= 3) {
input = strtol(args[1], (char **)0, 0);
if (narg >= 4) {
fix = strtol(args[3], (char **)0, 0);
}
else {
fix = 0;
}
if ((input >= 0) && (fix >=0)) {
print_log("HOMESCREEN: input_add(%s.%d to %s[%d])", args[0], input, args[2], fix);
ico_input_mgr_control_add_input_app(display->ico_input_mgr,
args[2], args[0], input, fix);
}
else {
print_log("HOMESCREEN: Unknown input(%s) at input_add command", args[1]);
}
}
else {
print_log("HOMESCREEN: input_add command[input_add device inputId appid fix] "
"has no argument");
}
}
static void
input_del(struct display *display, char *buf)
{
char *args[10];
int narg;
int input;
char wk1[32], wk2[32];
narg = pars_command(buf, args, 10);
if (narg >= 3) {
input = strtol(args[1], (char **)0, 0);
if (args[0][0] == '@') {
wk1[0] = 0;
args[0] = wk1;
}
if (args[2][0] == '@') {
wk2[0] = 0;
args[2] = wk2;
}
print_log("HOMESCREEN: input_del(%s.%d to %s)", args[0], input, args[2]);
ico_input_mgr_control_del_input_app(display->ico_input_mgr,
args[2], args[0], input);
}
else {
print_log("HOMESCREEN: input_del command[input_del device inputId appid] "
"has no argument");
}
}
static void
input_conf(struct display *display, char *buf)
{
char *args[10];
int narg;
int type;
int input;
int code;
char wk1[32], wk2[32];
narg = pars_command(buf, args, 10);
if (narg >= 4) {
type = strtol(args[1], (char **)0, 0);
input = strtol(args[3], (char **)0, 0);
if (narg >= 6) {
code = strtol(args[5], (char **)0, 0);
}
else {
code = 0;
args[4] = wk1;
strcpy(wk1, args[2]);
args[5] = wk2;
strcpy(wk2, "0");
}
if ((type >= 0) && (input >= 0) && (code >=0)) {
ico_input_mgr_device_configure_input(display->ico_input_device, args[0], type,
args[2], input, args[4], code);
}
else {
print_log("HOMESCREEN: Unknown type(%s),input(%s) or code(%s) "
"at input_conf command", args[1], args[3], args[5]);
}
}
else {
print_log("HOMESCREEN: input_conf command[input_conf device type swname input "
"codename code] has no argument");
}
}
static void
input_code(struct display *display, char *buf)
{
char *args[10];
int narg;
int input;
int code;
narg = pars_command(buf, args, 10);
if (narg >= 4) {
input = strtol(args[1], (char **)0, 0);
code = strtol(args[3], (char **)0, 0);
if ((input >= 0) && (code >= 0)) {
ico_input_mgr_device_configure_code(display->ico_input_device, args[0], input,
args[2], code);
}
else {
print_log("HOMESCREEN: Unknown input(%s) or code(%s) "
"at input_code command", args[1], args[3]);
}
}
else {
print_log("HOMESCREEN: input_conf command[input_code device input codename code] "
"has no argument");
}
}
static void
input_sw(struct display *display, char *buf)
{
char *args[10];
int narg;
int timems;
int input;
int code;
int state;
struct timeval stv;
narg = pars_command(buf, args, 10);
if (narg >= 4) {
input = strtol(args[1], (char **)0, 0);
code = strtol(args[2], (char **)0, 0);
state = strtol(args[3], (char **)0, 0);
if ((input >= 0) && (state >= 0)) {
gettimeofday(&stv, (struct timezone *)NULL);
timems = (stv.tv_sec % 1000) * 1000 + (stv.tv_usec / 1000);
ico_input_mgr_device_input_event(display->ico_input_device,
timems, args[0], input, code, state);
}
else {
print_log("HOMESCREEN: Unknown input(%s),code(%s) or state(%s) "
"at input_sw command", args[1], args[2], args[3]);
}
}
else {
print_log("HOMESCREEN: input_sw command[input_sw device input code, state] "
"has no argument");
}
}
static void
send_event(const char *cmd)
{
static int nmqinfo = 0;
static struct {
int mqkey;
int mqid;
} mqinfo[10];
int mqkey;
int mqid;
struct {
long mtype;
char buf[240];
} mqbuf;
int pt, i;
if (cmd == NULL) {
return;
}
mqkey = 0;
for (pt = 0; cmd[pt]; pt++) {
if ((cmd[pt] >= '0') && (cmd[pt] <= '9')) {
mqkey = mqkey * 10 + cmd[pt] - '0';
}
else {
break;
}
}
for (; cmd[pt] == ' '; pt++) ;
if (mqkey <= 0) {
mqkey = 5551;
pt = 0;
}
for (i = 0; i < nmqinfo; i++) {
if (mqinfo[i].mqkey == mqkey) {
mqid = mqinfo[i].mqid;
break;
}
}
if (i >= nmqinfo) {
if (nmqinfo >= 10) {
fprintf(stderr, "HOMESCREEN: message queue(%d) overflow\n", mqkey);
return;
}
mqid = msgget(mqkey, 0);
if (mqid < 0) {
fprintf(stderr, "HOMESCREEN: message queue(%d(0x%x)) get error[%d]\n",
mqkey, mqkey, errno);
return;
}
mqinfo[nmqinfo].mqkey = mqkey;
mqinfo[nmqinfo].mqid = mqid;
nmqinfo ++;
}
memset(&mqbuf, 0, sizeof(mqbuf));
mqbuf.mtype = 1;
strncpy(mqbuf.buf, &cmd[pt], sizeof(mqbuf)-sizeof(long));
if (msgsnd(mqid, &mqbuf, sizeof(mqbuf)-sizeof(long), 0) < 0) {
fprintf(stderr, "HOMESCREEN: message queue(%d(0x%x)) send error[%d]\n",
mqkey, mqkey, errno);
return;
}
}
/*
* Main Program
*
* usage:
* test-homescreen < test-case-data-file > test-result-output
*/
int main(int argc, char *argv[])
{
struct display *display;
char buf[256];
int ret, fd;
int msec;
display = malloc(sizeof *display);
assert(display);
memset((char *)display, 0, sizeof *display);
display->init_width = 640;
display->init_height = 480;
display->init_color = 0xFF304010;
for (fd = 1; fd < argc; fd++) {
if (argv[fd][0] == '-') {
if (strncasecmp(argv[fd], "-visible=", 9) == 0) {
display->visible_on_create = argv[fd][9] & 1;
}
else if (strncasecmp(argv[fd], "-display=", 9) == 0) {
strncpy(display->connect, &argv[fd][9], MAX_CON_NAME);
}
else if (strncasecmp(argv[fd], "-prompt=", 8) == 0) {
display->prompt = argv[fd][8] & 1;
}
}
}
if (display->connect[0]) {
display->display = wl_display_connect(display->connect);
}
else {
display->display = wl_display_connect(NULL);
}
assert(display->display);
display->registry = wl_display_get_registry(display->display);
wl_registry_add_listener(display->registry,
®istry_listener, display);
wl_display_dispatch(display->display);
fd = 0;
while (1) {
sleep_with_wayland(display->display, 20);
if (display->prompt) {
printf("HOMESCREEN: "); fflush(stdout);
}
ret = getdata(display->ico_window_mgr, "HOMESCREEN: ", fd, buf, sizeof(buf));
if (ret < 0) {
fprintf(stderr, "HOMESCREEN: read error: fd %d, %m\n",
fd);
return -1;
}
if (ret == 0) continue;
wl_display_flush(display->display);
if ((strncasecmp(buf, "bye", 3) == 0) ||
(strncasecmp(buf, "quit", 4) == 0) ||
(strncasecmp(buf, "end", 3) == 0)) {
/* Exit, end of test */
return 0;
}
else if (strncasecmp(buf, "launch", 6) == 0) {
/* Launch test application */
launch_app(display, &buf[6]);
}
else if (strncasecmp(buf, "kill", 4) == 0) {
/* Launch test application */
kill_app(display, &buf[4]);
}
else if (strncasecmp(buf, "layer_visible", 13) == 0) {
/* Change layer visiblety */
visible_layer(display, &buf[13]);
}
else if (strncasecmp(buf, "layer", 5) == 0) {
/* layer change surface window */
layer_surface(display, &buf[5]);
}
else if (strncasecmp(buf, "positionsize", 12) == 0) {
/* Move and Ressize surface window*/
positionsize_surface(display, &buf[12]);
}
else if (strncasecmp(buf, "move", 4) == 0) {
/* Move surface window */
move_surface(display, &buf[4]);
}
else if (strncasecmp(buf, "resize", 6) == 0) {
/* Resize surface window */
resize_surface(display, &buf[6]);
}
else if (strncasecmp(buf, "visible", 7) == 0) {
/* Visible and Raise surface window*/
visible_surface(display, &buf[7]);
}
else if (strncasecmp(buf, "show", 4) == 0) {
/* Show/Hide surface window */
show_surface(display, &buf[4], 1);
}
else if (strncasecmp(buf, "hide", 4) == 0) {
/* Show/Hide surface window */
show_surface(display, &buf[4], 0);
}
else if (strncasecmp(buf, "raise", 5) == 0) {
/* Raise/Lower surface window */
raise_surface(display, &buf[5], 1);
}
else if (strncasecmp(buf, "lower", 5) == 0) {
/* Raise/Lower surface window */
raise_surface(display, &buf[5], 0);
}
else if (strncasecmp(buf, "transition", 10) == 0) {
/* Set transition surface window*/
transition_surface(display, &buf[10]);
}
else if (strncasecmp(buf, "input_add", 9) == 0) {
/* Set input switch to application */
input_add(display, &buf[9]);
}
else if (strncasecmp(buf, "input_del", 9) == 0) {
/* Reset input switch to application*/
input_del(display, &buf[9]);
}
else if (strncasecmp(buf, "input_conf", 10) == 0) {
/* input switch configuration */
input_conf(display, &buf[10]);
}
else if (strncasecmp(buf, "input_code", 10) == 0) {
/* input code configuration */
input_code(display, &buf[10]);
}
else if (strncasecmp(buf, "input_sw", 8) == 0) {
/* input switch event */
input_sw(display, &buf[8]);
}
else if (strncasecmp(buf, "sleep", 5) == 0) {
/* Sleep */
msec = sec_str_2_value(&buf[6]);
sleep_with_wayland(display->display, msec);
}
else if (strncasecmp(buf, "waitcreate", 10) == 0) {
/* Wait surface create */
msec = sec_str_2_value(&buf[11]);
wait_with_wayland(display->display, msec, &display->surface_created);
}
else if (strncasecmp(buf, "waitdestroy", 11) == 0) {
/* Wait surface destrpy */
msec = sec_str_2_value(&buf[12]);
wait_with_wayland(display->display, msec, &display->surface_destroyed);
}
else if (strncasecmp(buf, "event", 5) == 0) {
/* Send touch panel event to Weston */
send_event(&buf[6]);
}
else {
print_log("HOMESCREEN: unknown command[%s]", buf);
return -1;
}
}
print_log("HOMESCREEN: end");
send_event(NULL);
return(0);
}
|