]> git.sur5r.net Git - i3/i3/blob - i3-input/main.c
Use I3SOCK-environment-variable
[i3/i3] / i3-input / main.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * i3-input/main.c: Utility which lets the user input commands and sends them
11  * to i3.
12  *
13  */
14 #include <ev.h>
15 #include <stdio.h>
16 #include <sys/types.h>
17 #include <stdlib.h>
18 #include <stdbool.h>
19 #include <unistd.h>
20 #include <string.h>
21 #include <errno.h>
22 #include <err.h>
23 #include <stdint.h>
24 #include <getopt.h>
25
26 #include <xcb/xcb.h>
27 #include <xcb/xcb_aux.h>
28 #include <xcb/xcb_event.h>
29 #include <xcb/xcb_keysyms.h>
30
31 #include <X11/keysym.h>
32
33 #include "keysym2ucs.h"
34
35 #include "i3-input.h"
36
37 static int sockfd;
38 static xcb_key_symbols_t *symbols;
39 static int modeswitchmask;
40 static int numlockmask;
41 static bool modeswitch_active = false;
42 static xcb_window_t win;
43 static xcb_pixmap_t pixmap;
44 static xcb_gcontext_t pixmap_gc;
45 static char *glyphs_ucs[512];
46 static char *glyphs_utf8[512];
47 static int input_position;
48 static int font_height;
49 static char *command_prefix;
50 static char *prompt;
51 static int prompt_len;
52 static int limit;
53
54 /*
55  * Concats the glyphs (either UCS-2 or UTF-8) to a single string, suitable for
56  * rendering it (UCS-2) or sending it to i3 (UTF-8).
57  *
58  */
59 static uint8_t *concat_strings(char **glyphs, int max) {
60         uint8_t *output = calloc(max+1, 4);
61         uint8_t *walk = output;
62         for (int c = 0; c < max; c++) {
63                 printf("at %c\n", glyphs[c][0]);
64                 /* if the first byte is 0, this has to be UCS2 */
65                 if (glyphs[c][0] == '\0') {
66                         memcpy(walk, glyphs[c], 2);
67                         walk += 2;
68                 } else {
69                         strcpy((char*)walk, glyphs[c]);
70                         walk += strlen(glyphs[c]);
71                 }
72         }
73         printf("output = %s\n", output);
74         return output;
75 }
76
77 /*
78  * Handles expose events (redraws of the window) and rendering in general. Will
79  * be called from the code with event == NULL or from X with event != NULL.
80  *
81  */
82 static int handle_expose(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
83         printf("expose!\n");
84
85         /* re-draw the background */
86         xcb_rectangle_t border = {0, 0, 500, font_height + 8}, inner = {2, 2, 496, font_height + 8 - 4};
87         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FF0000"));
88         xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &border);
89         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
90         xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &inner);
91
92         /* restore font color */
93         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FFFFFF"));
94         uint8_t *con = concat_strings(glyphs_ucs, input_position);
95         char *full_text = (char*)con;
96         if (prompt != NULL) {
97                 full_text = malloc((prompt_len + input_position) * 2 + 1);
98                 if (full_text == NULL)
99                         err(EXIT_FAILURE, "malloc() failed\n");
100                 memcpy(full_text, prompt, prompt_len * 2);
101                 memcpy(full_text + (prompt_len * 2), con, input_position * 2);
102         }
103         xcb_image_text_16(conn, input_position + prompt_len, pixmap, pixmap_gc, 4 /* X */,
104                           font_height + 2 /* Y = baseline of font */, (xcb_char2b_t*)full_text);
105
106         /* Copy the contents of the pixmap to the real window */
107         xcb_copy_area(conn, pixmap, win, pixmap_gc, 0, 0, 0, 0, /* */ 500, font_height + 8);
108         xcb_flush(conn);
109         free(con);
110         if (prompt != NULL)
111                 free(full_text);
112
113         return 1;
114 }
115
116 /*
117  * Deactivates the Mode_switch bit upon release of the Mode_switch key.
118  *
119  */
120 static int handle_key_release(void *ignored, xcb_connection_t *conn, xcb_key_release_event_t *event) {
121         printf("releasing %d, state raw = %d\n", event->detail, event->state);
122
123         /* fix state */
124         event->state &= ~numlockmask;
125
126         xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, event->state);
127         if (sym == XK_Mode_switch) {
128                 printf("Mode switch disabled\n");
129                 modeswitch_active = false;
130         }
131
132         return 1;
133 }
134
135 static void finish_input() {
136         uint8_t *command = concat_strings(glyphs_utf8, input_position);
137         char *full_command = (char*)command;
138         /* prefix the command if a prefix was specified on commandline */
139         if (command_prefix != NULL) {
140                 if (asprintf(&full_command, "%s%s", command_prefix, command) == -1)
141                         err(EXIT_FAILURE, "asprintf() failed\n");
142         }
143         printf("command = %s\n", full_command);
144
145         ipc_send_message(sockfd, strlen(full_command), 0, (uint8_t*)full_command);
146
147 #if 0
148         free(command);
149         return 1;
150 #endif
151         exit(0);
152 }
153
154 /*
155  * Handles keypresses by converting the keycodes to keysymbols, then the
156  * keysymbols to UCS-2. If the conversion succeeded, the glyph is saved in the
157  * internal buffers and displayed in the input window.
158  *
159  * Also handles backspace (deleting one character) and return (sending the
160  * command to i3).
161  *
162  */
163 static int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
164         printf("Keypress %d, state raw = %d\n", event->detail, event->state);
165
166         /* fix state */
167         if (modeswitch_active)
168                 event->state |= modeswitchmask;
169
170         /* Apparantly, after activating numlock once, the numlock modifier
171          * stays turned on (use xev(1) to verify). So, to resolve useful
172          * keysyms, we remove the numlock flag from the event state */
173         event->state &= ~numlockmask;
174
175         xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, event->state);
176         if (sym == XK_Mode_switch) {
177                 printf("Mode switch enabled\n");
178                 modeswitch_active = true;
179                 return 1;
180         }
181
182         if (sym == XK_Return)
183                 finish_input();
184
185         if (sym == XK_BackSpace) {
186                 if (input_position == 0)
187                         return 1;
188
189                 input_position--;
190                 free(glyphs_ucs[input_position]);
191                 free(glyphs_utf8[input_position]);
192
193                 handle_expose(NULL, conn, NULL);
194                 return 1;
195         }
196         if (sym == XK_Escape) {
197                 exit(0);
198         }
199
200         /* TODO: handle all of these? */
201         printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
202         printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
203         printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
204         printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
205         printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
206         printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
207         printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
208
209         if (xcb_is_modifier_key(sym) || xcb_is_cursor_key(sym))
210                 return 1;
211
212         printf("sym = %c (%d)\n", sym, sym);
213
214         /* convert the keysym to UCS */
215         uint16_t ucs = keysym2ucs(sym);
216         if ((int16_t)ucs == -1) {
217                 fprintf(stderr, "Keysym could not be converted to UCS, skipping\n");
218                 return 1;
219         }
220
221         /* store the UCS into a string */
222         uint8_t inp[3] = {(ucs & 0xFF00) >> 8, (ucs & 0xFF), 0};
223
224         printf("inp[0] = %02x, inp[1] = %02x, inp[2] = %02x\n", inp[0], inp[1], inp[2]);
225         /* convert it to UTF-8 */
226         char *out = convert_ucs_to_utf8((char*)inp);
227         printf("converted to %s\n", out);
228
229         glyphs_ucs[input_position] = malloc(3 * sizeof(uint8_t));
230         if (glyphs_ucs[input_position] == NULL)
231                 err(EXIT_FAILURE, "malloc() failed\n");
232         memcpy(glyphs_ucs[input_position], inp, 3);
233         glyphs_utf8[input_position] = strdup(out);
234         input_position++;
235
236         if (input_position == limit)
237                 finish_input();
238
239         handle_expose(NULL, conn, NULL);
240         return 1;
241 }
242
243 int main(int argc, char *argv[]) {
244         char *socket_path;
245         if ((socket_path = getenv("I3SOCK")) == NULL) {
246                 socket_path = "/tmp/i3-ipc.sock";
247         }
248         char *pattern = "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1";
249         int o, option_index = 0;
250
251         static struct option long_options[] = {
252                 {"socket", required_argument, 0, 's'},
253                 {"version", no_argument, 0, 'v'},
254                 {"limit", required_argument, 0, 'l'},
255                 {"prompt", required_argument, 0, 'P'},
256                 {"prefix", required_argument, 0, 'p'},
257                 {"font", required_argument, 0, 'f'},
258                 {"help", no_argument, 0, 'h'},
259                 {0, 0, 0, 0}
260         };
261
262         char *options_string = "s:p:P:f:l:vh";
263
264         while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
265                 switch (o) {
266                         case 's':
267                                 FREE(socket_path);
268                                 socket_path = strdup(optarg);
269                                 break;
270                         case 'v':
271                                 printf("i3-input " I3_VERSION);
272                                 return 0;
273                         case 'p':
274                                 FREE(command_prefix);
275                                 command_prefix = strdup(optarg);
276                                 break;
277                         case 'l':
278                                 limit = atoi(optarg);
279                                 break;
280                         case 'P':
281                                 FREE(prompt);
282                                 prompt = strdup(optarg);
283                                 break;
284                         case 'f':
285                                 FREE(pattern);
286                                 pattern = strdup(optarg);
287                                 break;
288                         case 'h':
289                                 printf("i3-input " I3_VERSION);
290                                 printf("i3-input [-s <socket>] [-p <prefix>] [-l <limit>] [-P <prompt>] [-f <font>] [-v]\n");
291                                 return 0;
292                 }
293         }
294
295         sockfd = connect_ipc(socket_path);
296
297         if (prompt != NULL)
298                 prompt = convert_utf8_to_ucs2(prompt, &prompt_len);
299
300         int screens;
301         xcb_connection_t *conn = xcb_connect(NULL, &screens);
302         if (xcb_connection_has_error(conn))
303                 die("Cannot open display\n");
304
305         /* Set up event handlers for key press and key release */
306         xcb_event_handlers_t evenths;
307         memset(&evenths, 0, sizeof(xcb_event_handlers_t));
308         xcb_event_handlers_init(conn, &evenths);
309         xcb_event_set_key_press_handler(&evenths, handle_key_press, NULL);
310         xcb_event_set_key_release_handler(&evenths, handle_key_release, NULL);
311         xcb_event_set_expose_handler(&evenths, handle_expose, NULL);
312
313         modeswitchmask = get_mod_mask(conn, XK_Mode_switch);
314         numlockmask = get_mod_mask(conn, XK_Num_Lock);
315         symbols = xcb_key_symbols_alloc(conn);
316
317         uint32_t font_id = get_font_id(conn, pattern, &font_height);
318
319         /* Open an input window */
320         win = open_input_window(conn, 500, font_height + 8);
321
322         /* Create pixmap */
323         xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screens);
324
325         pixmap = xcb_generate_id(conn);
326         pixmap_gc = xcb_generate_id(conn);
327         xcb_create_pixmap(conn, root_screen->root_depth, pixmap, win, 500, font_height + 8);
328         xcb_create_gc(conn, pixmap_gc, pixmap, 0, 0);
329
330         /* Set input focus (we have override_redirect=1, so the wm will not do
331          * this for us) */
332         xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, win, XCB_CURRENT_TIME);
333
334         /* Create graphics context */
335         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FONT, font_id);
336
337         /* Grab the keyboard to get all input */
338         xcb_flush(conn);
339
340         /* Try (repeatedly, if necessary) to grab the keyboard. We might not
341          * get the keyboard at the first attempt because of the keybinding
342          * still being active when started via a wm’s keybinding. */
343         xcb_grab_keyboard_cookie_t cookie;
344         xcb_grab_keyboard_reply_t *reply = NULL;
345
346         int count = 0;
347         while ((reply == NULL || reply->status != XCB_GRAB_STATUS_SUCCESS) && (count++ < 500)) {
348                 cookie = xcb_grab_keyboard(conn, false, win, XCB_CURRENT_TIME, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC);
349                 reply = xcb_grab_keyboard_reply(conn, cookie, NULL);
350                 usleep(1000);
351         }
352
353         if (reply->status != XCB_GRAB_STATUS_SUCCESS) {
354                 fprintf(stderr, "Could not grab keyboard, status = %d\n", reply->status);
355                 exit(-1);
356         }
357
358         xcb_flush(conn);
359
360         xcb_event_wait_for_event_loop(&evenths);
361
362         return 0;
363 }