]> git.sur5r.net Git - i3/i3/blob - i3-input/main.c
travis: check spelling of binaries and manpages, use docker
[i3/i3] / i3-input / main.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * i3-input/main.c: Utility which lets the user input commands and sends them
8  *                  to i3.
9  *
10  */
11 #include <stdio.h>
12 #include <sys/types.h>
13 #include <stdlib.h>
14 #include <stdbool.h>
15 #include <unistd.h>
16 #include <string.h>
17 #include <errno.h>
18 #include <err.h>
19 #include <stdint.h>
20 #include <getopt.h>
21 #include <limits.h>
22
23 #include <xcb/xcb.h>
24 #include <xcb/xcb_aux.h>
25 #include <xcb/xcb_event.h>
26 #include <xcb/xcb_keysyms.h>
27
28 #include <X11/keysym.h>
29
30 #include "keysym2ucs.h"
31
32 #include "i3-input.h"
33
34 #include "libi3.h"
35
36 /* IPC format string. %s will be replaced with what the user entered, then
37  * the command will be sent to i3 */
38 static char *format;
39
40 static char *socket_path;
41 static int sockfd;
42 static xcb_key_symbols_t *symbols;
43 static bool modeswitch_active = false;
44 static xcb_window_t win;
45 static xcb_pixmap_t pixmap;
46 static xcb_gcontext_t pixmap_gc;
47 static xcb_char2b_t glyphs_ucs[512];
48 static char *glyphs_utf8[512];
49 static int input_position;
50 static i3Font font;
51 static i3String *prompt;
52 static int prompt_offset = 0;
53 static int limit;
54 xcb_window_t root;
55 xcb_connection_t *conn;
56 xcb_screen_t *root_screen;
57 static xcb_get_input_focus_cookie_t focus_cookie;
58
59 /*
60  * Having verboselog(), errorlog() and debuglog() is necessary when using libi3.
61  *
62  */
63 void verboselog(char *fmt, ...) {
64     va_list args;
65
66     va_start(args, fmt);
67     vfprintf(stdout, fmt, args);
68     va_end(args);
69 }
70
71 void errorlog(char *fmt, ...) {
72     va_list args;
73
74     va_start(args, fmt);
75     vfprintf(stderr, fmt, args);
76     va_end(args);
77 }
78
79 void debuglog(char *fmt, ...) {
80 }
81
82 /*
83  * Restores the X11 input focus to whereever it was before.
84  * This is necessary because i3-input’s window has override_redirect=1
85  * (→ unmanaged by the window manager) and thus i3-input changes focus itself.
86  * This function is called on exit().
87  *
88  */
89 static void restore_input_focus(void) {
90     xcb_generic_error_t *error;
91     xcb_get_input_focus_reply_t *reply = xcb_get_input_focus_reply(conn, focus_cookie, &error);
92     if (error != NULL) {
93         fprintf(stderr, "[i3-input] ERROR: Could not restore input focus (X error %d)\n", error->error_code);
94         return;
95     }
96     xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, reply->focus, XCB_CURRENT_TIME);
97     xcb_flush(conn);
98 }
99
100 /*
101  * Concats the glyphs (either UCS-2 or UTF-8) to a single string, suitable for
102  * rendering it (UCS-2) or sending it to i3 (UTF-8).
103  *
104  */
105 static uint8_t *concat_strings(char **glyphs, int max) {
106     uint8_t *output = scalloc(max + 1, 4);
107     uint8_t *walk = output;
108     for (int c = 0; c < max; c++) {
109         printf("at %c\n", glyphs[c][0]);
110         /* if the first byte is 0, this has to be UCS2 */
111         if (glyphs[c][0] == '\0') {
112             memcpy(walk, glyphs[c], 2);
113             walk += 2;
114         } else {
115             strcpy((char *)walk, glyphs[c]);
116             walk += strlen(glyphs[c]);
117         }
118     }
119     printf("output = %s\n", output);
120     return output;
121 }
122
123 /*
124  * Handles expose events (redraws of the window) and rendering in general. Will
125  * be called from the code with event == NULL or from X with event != NULL.
126  *
127  */
128 static int handle_expose(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
129     printf("expose!\n");
130
131     /* re-draw the background */
132     xcb_rectangle_t border = {0, 0, logical_px(500), font.height + logical_px(8)},
133                     inner = {logical_px(2), logical_px(2), logical_px(496), font.height + logical_px(8) - logical_px(4)};
134     xcb_change_gc(conn, pixmap_gc, XCB_GC_FOREGROUND, (uint32_t[]){get_colorpixel("#FF0000")});
135     xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &border);
136     xcb_change_gc(conn, pixmap_gc, XCB_GC_FOREGROUND, (uint32_t[]){get_colorpixel("#000000")});
137     xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &inner);
138
139     /* restore font color */
140     set_font_colors(pixmap_gc, draw_util_hex_to_color("#FFFFFF"), draw_util_hex_to_color("#000000"));
141
142     /* draw the prompt … */
143     if (prompt != NULL) {
144         draw_text(prompt, pixmap, pixmap_gc, NULL, logical_px(4), logical_px(4), logical_px(492));
145     }
146     /* … and the text */
147     if (input_position > 0) {
148         i3String *input = i3string_from_ucs2(glyphs_ucs, input_position);
149         draw_text(input, pixmap, pixmap_gc, NULL, prompt_offset + logical_px(4), logical_px(4), logical_px(492));
150         i3string_free(input);
151     }
152
153     /* Copy the contents of the pixmap to the real window */
154     xcb_copy_area(conn, pixmap, win, pixmap_gc, 0, 0, 0, 0, logical_px(500), font.height + logical_px(8));
155     xcb_flush(conn);
156
157     return 1;
158 }
159
160 /*
161  * Deactivates the Mode_switch bit upon release of the Mode_switch key.
162  *
163  */
164 static int handle_key_release(void *ignored, xcb_connection_t *conn, xcb_key_release_event_t *event) {
165     printf("releasing %d, state raw = %d\n", event->detail, event->state);
166
167     xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, event->state);
168     if (sym == XK_Mode_switch) {
169         printf("Mode switch disabled\n");
170         modeswitch_active = false;
171     }
172
173     return 1;
174 }
175
176 static void finish_input() {
177     char *command = (char *)concat_strings(glyphs_utf8, input_position);
178
179     /* count the occurrences of %s in the string */
180     int c;
181     int len = strlen(format);
182     int cnt = 0;
183     for (c = 0; c < (len - 1); c++)
184         if (format[c] == '%' && format[c + 1] == 's')
185             cnt++;
186     printf("occurrences = %d\n", cnt);
187
188     /* allocate space for the output */
189     int inputlen = strlen(command);
190     char *full = scalloc(strlen(format) - (2 * cnt) /* format without all %s */
191                              + (inputlen * cnt)     /* replaced %s */
192                              + 1,                   /* trailing NUL */
193                          1);
194     char *dest = full;
195     for (c = 0; c < len; c++) {
196         /* if this is not % or it is % but without a following 's',
197          * just copy the character */
198         if (format[c] != '%' || (c == (len - 1)) || format[c + 1] != 's')
199             *(dest++) = format[c];
200         else {
201             strncat(dest, command, inputlen);
202             dest += inputlen;
203             /* skip the following 's' of '%s' */
204             c++;
205         }
206     }
207
208     /* prefix the command if a prefix was specified on commandline */
209     printf("command = %s\n", full);
210
211     restore_input_focus();
212
213     xcb_aux_sync(conn);
214
215     ipc_send_message(sockfd, strlen(full), 0, (uint8_t *)full);
216
217     free(full);
218
219 #if 0
220     free(command);
221     return 1;
222 #endif
223     exit(0);
224 }
225
226 /*
227  * Handles keypresses by converting the keycodes to keysymbols, then the
228  * keysymbols to UCS-2. If the conversion succeeded, the glyph is saved in the
229  * internal buffers and displayed in the input window.
230  *
231  * Also handles backspace (deleting one character) and return (sending the
232  * command to i3).
233  *
234  */
235 static int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
236     printf("Keypress %d, state raw = %d\n", event->detail, event->state);
237
238     // TODO: port the input handling code from i3lock once libxkbcommon ≥ 0.5.0
239     // is available in distros.
240
241     /* See the documentation of xcb_key_symbols_get_keysym for this one.
242      * Basically: We get either col 0 or col 1, depending on whether shift is
243      * pressed. */
244     int col = (event->state & XCB_MOD_MASK_SHIFT);
245
246     /* If modeswitch is currently active, we need to look in group 2 or 3,
247      * respectively. */
248     if (modeswitch_active)
249         col += 2;
250
251     xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, col);
252     if (sym == XK_Mode_switch) {
253         printf("Mode switch enabled\n");
254         modeswitch_active = true;
255         return 1;
256     }
257
258     if (sym == XK_Return)
259         finish_input();
260
261     if (sym == XK_BackSpace) {
262         if (input_position == 0)
263             return 1;
264
265         input_position--;
266         free(glyphs_utf8[input_position]);
267
268         handle_expose(NULL, conn, NULL);
269         return 1;
270     }
271     if (sym == XK_Escape) {
272         restore_input_focus();
273         exit(0);
274     }
275
276     /* TODO: handle all of these? */
277     printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
278     printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
279     printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
280     printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
281     printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
282     printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
283     printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
284
285     if (xcb_is_modifier_key(sym) || xcb_is_cursor_key(sym))
286         return 1;
287
288     printf("sym = %c (%d)\n", sym, sym);
289
290     /* convert the keysym to UCS */
291     uint16_t ucs = keysym2ucs(sym);
292     if ((int16_t)ucs == -1) {
293         fprintf(stderr, "Keysym could not be converted to UCS, skipping\n");
294         return 1;
295     }
296
297     xcb_char2b_t inp;
298     inp.byte1 = (ucs & 0xff00) >> 2;
299     inp.byte2 = (ucs & 0x00ff) >> 0;
300
301     printf("inp.byte1 = %02x, inp.byte2 = %02x\n", inp.byte1, inp.byte2);
302     /* convert it to UTF-8 */
303     char *out = convert_ucs2_to_utf8(&inp, 1);
304     printf("converted to %s\n", out);
305
306     glyphs_ucs[input_position] = inp;
307     glyphs_utf8[input_position] = out;
308     input_position++;
309
310     if (input_position == limit)
311         finish_input();
312
313     handle_expose(NULL, conn, NULL);
314     return 1;
315 }
316
317 static xcb_rectangle_t get_window_position(void) {
318     xcb_rectangle_t result = (xcb_rectangle_t){logical_px(50), logical_px(50), logical_px(500), font.height + logical_px(8)};
319
320     xcb_get_input_focus_reply_t *input_focus = NULL;
321     xcb_get_geometry_reply_t *geometry = NULL;
322     xcb_translate_coordinates_reply_t *coordinates = NULL;
323
324     /* In rare cases, the window holding the input focus might disappear while we are figuring out its
325      * position. To avoid this, we grab the server in the meantime. */
326     xcb_grab_server(conn);
327
328     input_focus = xcb_get_input_focus_reply(conn, xcb_get_input_focus(conn), NULL);
329     if (input_focus == NULL || input_focus->focus == XCB_NONE) {
330         DLOG("Failed to receive the current input focus or no window has the input focus right now.\n");
331         goto free_resources;
332     }
333
334     geometry = xcb_get_geometry_reply(conn, xcb_get_geometry(conn, input_focus->focus), NULL);
335     if (geometry == NULL) {
336         DLOG("Failed to received window geometry.\n");
337         goto free_resources;
338     }
339
340     coordinates = xcb_translate_coordinates_reply(
341         conn, xcb_translate_coordinates(conn, input_focus->focus, root, geometry->x, geometry->y), NULL);
342     if (coordinates == NULL) {
343         DLOG("Failed to translate coordinates.\n");
344         goto free_resources;
345     }
346
347     DLOG("Determined coordinates of window with input focus at x = %i / y = %i.\n", coordinates->dst_x, coordinates->dst_y);
348     result.x += coordinates->dst_x;
349     result.y += coordinates->dst_y;
350
351 free_resources:
352     xcb_ungrab_server(conn);
353     xcb_flush(conn);
354
355     FREE(input_focus);
356     FREE(geometry);
357     FREE(coordinates);
358     return result;
359 }
360
361 int main(int argc, char *argv[]) {
362     format = sstrdup("%s");
363     socket_path = getenv("I3SOCK");
364     char *pattern = sstrdup("pango:monospace 8");
365     int o, option_index = 0;
366
367     static struct option long_options[] = {
368         {"socket", required_argument, 0, 's'},
369         {"version", no_argument, 0, 'v'},
370         {"limit", required_argument, 0, 'l'},
371         {"prompt", required_argument, 0, 'P'},
372         {"prefix", required_argument, 0, 'p'},
373         {"format", required_argument, 0, 'F'},
374         {"font", required_argument, 0, 'f'},
375         {"help", no_argument, 0, 'h'},
376         {0, 0, 0, 0}};
377
378     char *options_string = "s:p:P:f:l:F:vh";
379
380     while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
381         switch (o) {
382             case 's':
383                 FREE(socket_path);
384                 socket_path = sstrdup(optarg);
385                 break;
386             case 'v':
387                 printf("i3-input " I3_VERSION);
388                 return 0;
389             case 'p':
390                 /* This option is deprecated, but will still work in i3 v4.1, 4.2 and 4.3 */
391                 fprintf(stderr, "i3-input: WARNING: the -p option is DEPRECATED in favor of the -F (format) option\n");
392                 FREE(format);
393                 sasprintf(&format, "%s%%s", optarg);
394                 break;
395             case 'l':
396                 limit = atoi(optarg);
397                 break;
398             case 'P':
399                 i3string_free(prompt);
400                 prompt = i3string_from_utf8(optarg);
401                 break;
402             case 'f':
403                 FREE(pattern);
404                 pattern = sstrdup(optarg);
405                 break;
406             case 'F':
407                 FREE(format);
408                 format = sstrdup(optarg);
409                 break;
410             case 'h':
411                 printf("i3-input " I3_VERSION "\n");
412                 printf("i3-input [-s <socket>] [-F <format>] [-l <limit>] [-P <prompt>] [-f <font>] [-v]\n");
413                 printf("\n");
414                 printf("Example:\n");
415                 printf("    i3-input -F 'workspace \"%%s\"' -P 'Switch to workspace: '\n");
416                 return 0;
417         }
418     }
419
420     printf("using format \"%s\"\n", format);
421
422     int screen;
423     conn = xcb_connect(NULL, &screen);
424     if (!conn || xcb_connection_has_error(conn))
425         die("Cannot open display\n");
426
427     if (socket_path == NULL)
428         socket_path = root_atom_contents("I3_SOCKET_PATH", conn, screen);
429
430     if (socket_path == NULL)
431         socket_path = "/tmp/i3-ipc.sock";
432
433     sockfd = ipc_connect(socket_path);
434
435     /* Request the current InputFocus to restore when i3-input exits. */
436     focus_cookie = xcb_get_input_focus(conn);
437
438     root_screen = xcb_aux_get_screen(conn, screen);
439     root = root_screen->root;
440
441     symbols = xcb_key_symbols_alloc(conn);
442
443     font = load_font(pattern, true);
444     set_font(&font);
445
446     if (prompt != NULL)
447         prompt_offset = predict_text_width(prompt);
448
449     const xcb_rectangle_t win_pos = get_window_position();
450
451     /* Open an input window */
452     win = xcb_generate_id(conn);
453     xcb_create_window(
454         conn,
455         XCB_COPY_FROM_PARENT,
456         win,                                                 /* the window id */
457         root,                                                /* parent == root */
458         win_pos.x, win_pos.y, win_pos.width, win_pos.height, /* dimensions */
459         0,                                                   /* X11 border = 0, we draw our own */
460         XCB_WINDOW_CLASS_INPUT_OUTPUT,
461         XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
462         XCB_CW_BACK_PIXEL | XCB_CW_OVERRIDE_REDIRECT | XCB_CW_EVENT_MASK,
463         (uint32_t[]){
464             0, /* back pixel: black */
465             1, /* override redirect: don’t manage this window */
466             XCB_EVENT_MASK_EXPOSURE});
467
468     /* Map the window (make it visible) */
469     xcb_map_window(conn, win);
470
471     /* Create pixmap */
472     pixmap = xcb_generate_id(conn);
473     pixmap_gc = xcb_generate_id(conn);
474     xcb_create_pixmap(conn, root_screen->root_depth, pixmap, win, logical_px(500), font.height + logical_px(8));
475     xcb_create_gc(conn, pixmap_gc, pixmap, 0, 0);
476
477     /* Set input focus (we have override_redirect=1, so the wm will not do
478      * this for us) */
479     xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, win, XCB_CURRENT_TIME);
480
481     /* Grab the keyboard to get all input */
482     xcb_flush(conn);
483
484     /* Try (repeatedly, if necessary) to grab the keyboard. We might not
485      * get the keyboard at the first attempt because of the keybinding
486      * still being active when started via a wm’s keybinding. */
487     xcb_grab_keyboard_cookie_t cookie;
488     xcb_grab_keyboard_reply_t *reply = NULL;
489
490     int count = 0;
491     while ((reply == NULL || reply->status != XCB_GRAB_STATUS_SUCCESS) && (count++ < 500)) {
492         cookie = xcb_grab_keyboard(conn, false, win, XCB_CURRENT_TIME, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC);
493         reply = xcb_grab_keyboard_reply(conn, cookie, NULL);
494         usleep(1000);
495     }
496
497     if (reply->status != XCB_GRAB_STATUS_SUCCESS) {
498         fprintf(stderr, "Could not grab keyboard, status = %d\n", reply->status);
499         restore_input_focus();
500         exit(-1);
501     }
502
503     xcb_flush(conn);
504
505     xcb_generic_event_t *event;
506     while ((event = xcb_wait_for_event(conn)) != NULL) {
507         if (event->response_type == 0) {
508             fprintf(stderr, "X11 Error received! sequence %x\n", event->sequence);
509             continue;
510         }
511
512         /* Strip off the highest bit (set if the event is generated) */
513         int type = (event->response_type & 0x7F);
514
515         switch (type) {
516             case XCB_KEY_PRESS:
517                 handle_key_press(NULL, conn, (xcb_key_press_event_t *)event);
518                 break;
519
520             case XCB_KEY_RELEASE:
521                 handle_key_release(NULL, conn, (xcb_key_release_event_t *)event);
522                 break;
523
524             case XCB_EXPOSE:
525                 handle_expose(NULL, conn, (xcb_expose_event_t *)event);
526                 break;
527         }
528
529         free(event);
530     }
531
532     return 0;
533 }