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
|
/*
* Copyright © 2012 Intel Corporation
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that copyright
* notice and this permission notice appear in supporting documentation, and
* that the name of the copyright holders not be used in advertising or
* publicity pertaining to distribution of the software without specific,
* written prior permission. The copyright holders make no representations
* about the suitability of this software for any purpose. It is provided "as
* is" without express or implied warranty.
*
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THIS SOFTWARE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <assert.h>
#include <poll.h>
#include <wayland-client.h>
#include "../clients/text-client-protocol.h"
struct display {
struct wl_display *display;
struct wl_compositor *compositor;
struct wl_surface *surface;
struct wl_seat *seat;
struct text_model_factory *factory;
struct text_model *text_model;
unsigned int activated;
unsigned int deactivated;
};
static void
text_model_commit_string(void *data,
struct text_model *text_model,
const char *text,
uint32_t index)
{
}
static void
text_model_preedit_string(void *data,
struct text_model *text_model,
const char *text,
uint32_t index)
{
}
static void
text_model_delete_surrounding_text(void *data,
struct text_model *text_model,
int32_t index,
uint32_t length)
{
}
static void
text_model_preedit_styling(void *data,
struct text_model *text_model)
{
}
static void
text_model_key(void *data,
struct text_model *text_model,
uint32_t key,
uint32_t state)
{
}
static void
text_model_selection_replacement(void *data,
struct text_model *text_model)
{
}
static void
text_model_direction(void *data,
struct text_model *text_model)
{
}
static void
text_model_locale(void *data,
struct text_model *text_model)
{
}
static void
text_model_activated(void *data,
struct text_model *text_model)
{
struct display *display = data;
fprintf(stderr, "%s\n", __FUNCTION__);
display->activated += 1;
}
static void
text_model_deactivated(void *data,
struct text_model *text_model)
{
struct display *display = data;
display->deactivated += 1;
}
static const struct text_model_listener text_model_listener = {
text_model_commit_string,
text_model_preedit_string,
text_model_delete_surrounding_text,
text_model_preedit_styling,
text_model_key,
text_model_selection_replacement,
text_model_direction,
text_model_locale,
text_model_activated,
text_model_deactivated
};
static void
handle_global(struct wl_display *_display, uint32_t id,
const char *interface, uint32_t version, void *data)
{
struct display *display = data;
if (strcmp(interface, "wl_compositor") == 0) {
display->compositor =
wl_display_bind(display->display,
id, &wl_compositor_interface);
} else if (strcmp(interface, "wl_seat") == 0) {
display->seat = wl_display_bind(display->display, id,
&wl_seat_interface);
} else if (strcmp(interface, "text_model_factory") == 0) {
display->factory = wl_display_bind(display->display, id,
&text_model_factory_interface);
}
}
static void
create_surface(int fd, struct display *display)
{
char buf[64];
int len;
display->surface = wl_compositor_create_surface(display->compositor);
wl_display_flush(display->display);
len = snprintf(buf, sizeof buf, "surface %d\n",
wl_proxy_get_id((struct wl_proxy *) display->surface));
assert(write(fd, buf, len) == len);
}
static void
create_text_model(int fd, struct display *display)
{
char buf[64];
int len;
display->text_model = text_model_factory_create_text_model(display->factory);
text_model_add_listener(display->text_model, &text_model_listener, display);
wl_display_flush(display->display);
len = snprintf(buf, sizeof buf, "text_model %d\n",
wl_proxy_get_id((struct wl_proxy *) display->text_model));
assert(write(fd, buf, len) == len);
}
static void
write_state(int fd, struct display *display)
{
char buf[64];
int len;
wl_display_flush(display->display);
len = snprintf(buf, sizeof buf, "activated %u deactivated %u\n",
display->activated, display->deactivated);
assert(write(fd, buf, len) == len);
wl_display_roundtrip(display->display);
}
static void
activate_text_model(int fd, struct display *display)
{
write_state(fd, display);
text_model_activate(display->text_model, display->seat, display->surface);
wl_display_flush(display->display);
wl_display_roundtrip(display->display);
}
static void
deactivate_text_model(int fd, struct display *display)
{
write_state(fd, display);
text_model_deactivate(display->text_model, display->seat);
wl_display_flush(display->display);
wl_display_roundtrip(display->display);
}
int main(int argc, char *argv[])
{
struct display *display;
char buf[256], *p;
int ret, fd;
display = malloc(sizeof *display);
assert(display);
display->display = wl_display_connect(NULL);
assert(display->display);
display->activated = 0;
display->deactivated = 0;
wl_display_add_global_listener(display->display,
handle_global, display);
wl_display_iterate(display->display, WL_DISPLAY_READABLE);
wl_display_roundtrip(display->display);
fd = 0;
p = getenv("TEST_SOCKET");
if (p)
fd = strtol(p, NULL, 0);
while (1) {
ret = read(fd, buf, sizeof buf);
if (ret == -1) {
fprintf(stderr, "read error: fd %d, %m\n", fd);
return -1;
}
fprintf(stderr, "test-client: got %.*s\n", ret - 1, buf);
if (strncmp(buf, "bye\n", ret) == 0) {
return 0;
} else if (strncmp(buf, "create-surface\n", ret) == 0) {
create_surface(fd, display);
} else if (strncmp(buf, "create-text-model\n", ret) == 0) {
create_text_model(fd, display);
} else if (strncmp(buf, "activate-text-model\n", ret) == 0) {
activate_text_model(fd, display);
} else if (strncmp(buf, "deactivate-text-model\n", ret) == 0) {
deactivate_text_model(fd, display);
} else if (strncmp(buf, "assert-state\n", ret) == 0) {
write_state(fd, display);
} else {
fprintf(stderr, "unknown command %.*s\n", ret, buf);
return -1;
}
}
assert(0);
}
|