]> git.sur5r.net Git - i3/i3/blob - i3bar/src/ipc.c
Ensure all *.[ch] files include config.h
[i3/i3] / i3bar / src / ipc.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3bar - an xcb-based status- and ws-bar for i3
5  * © 2010 Axel Wagner and contributors (see also: LICENSE)
6  *
7  * ipc.c: Communicating with i3
8  *
9  */
10 #include "common.h"
11
12 #include <stdlib.h>
13 #include <stdio.h>
14 #include <unistd.h>
15 #include <stdint.h>
16 #include <string.h>
17 #include <errno.h>
18 #include <sys/socket.h>
19 #include <sys/un.h>
20 #include <i3/ipc.h>
21 #include <ev.h>
22 #ifdef I3_ASAN_ENABLED
23 #include <sanitizer/lsan_interface.h>
24 #endif
25
26 ev_io *i3_connection;
27
28 const char *sock_path;
29
30 typedef void (*handler_t)(char *);
31
32 /*
33  * Called, when we get a reply to a command from i3.
34  * Since i3 does not give us much feedback on commands, we do not much
35  *
36  */
37 void got_command_reply(char *reply) {
38     /* TODO: Error handling for command replies */
39 }
40
41 /*
42  * Called, when we get a reply with workspaces data
43  *
44  */
45 void got_workspace_reply(char *reply) {
46     DLOG("Got workspace data!\n");
47     parse_workspaces_json(reply);
48     draw_bars(false);
49 }
50
51 /*
52  * Called, when we get a reply for a subscription.
53  * Since i3 does not give us much feedback on commands, we do not much
54  *
55  */
56 void got_subscribe_reply(char *reply) {
57     DLOG("Got subscribe reply: %s\n", reply);
58     /* TODO: Error handling for subscribe commands */
59 }
60
61 /*
62  * Called, when we get a reply with outputs data
63  *
64  */
65 void got_output_reply(char *reply) {
66     DLOG("Parsing outputs JSON...\n");
67     parse_outputs_json(reply);
68     DLOG("Reconfiguring windows...\n");
69     reconfig_windows(false);
70
71     i3_output *o_walk;
72     SLIST_FOREACH(o_walk, outputs, slist) {
73         kick_tray_clients(o_walk);
74     }
75
76     draw_bars(false);
77 }
78
79 /*
80  * Called when we get the configuration for our bar instance
81  *
82  */
83 void got_bar_config(char *reply) {
84     DLOG("Received bar config \"%s\"\n", reply);
85     /* We initiate the main function by requesting infos about the outputs and
86      * workspaces. Everything else (creating the bars, showing the right workspace-
87      * buttons and more) is taken care of by the event-drivenness of the code */
88     i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_OUTPUTS, NULL);
89
90     free_colors(&(config.colors));
91     parse_config_json(reply);
92
93     /* Now we can actually use 'config', so let's subscribe to the appropriate
94      * events and request the workspaces if necessary. */
95     subscribe_events();
96     if (!config.disable_ws)
97         i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_WORKSPACES, NULL);
98
99     /* Initialize the rest of XCB */
100     init_xcb_late(config.fontname);
101
102     /* Resolve color strings to colorpixels and save them, then free the strings. */
103     init_colors(&(config.colors));
104
105     start_child(config.command);
106     FREE(config.command);
107 }
108
109 /* Data structure to easily call the reply handlers later */
110 handler_t reply_handlers[] = {
111     &got_command_reply,
112     &got_workspace_reply,
113     &got_subscribe_reply,
114     &got_output_reply,
115     NULL,
116     NULL,
117     &got_bar_config,
118 };
119
120 /*
121  * Called, when a workspace event arrives (i.e. the user changed the workspace)
122  *
123  */
124 void got_workspace_event(char *event) {
125     DLOG("Got workspace event!\n");
126     i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_WORKSPACES, NULL);
127 }
128
129 /*
130  * Called, when an output event arrives (i.e. the screen configuration changed)
131  *
132  */
133 void got_output_event(char *event) {
134     DLOG("Got output event!\n");
135     i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_OUTPUTS, NULL);
136     if (!config.disable_ws) {
137         i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_WORKSPACES, NULL);
138     }
139 }
140
141 /*
142  * Called, when a mode event arrives (i3 changed binding mode).
143  *
144  */
145 void got_mode_event(char *event) {
146     DLOG("Got mode event!\n");
147     parse_mode_json(event);
148     draw_bars(false);
149 }
150
151 /*
152  * Called, when a barconfig_update event arrives (i.e. i3 changed the bar hidden_state or mode)
153  *
154  */
155 void got_bar_config_update(char *event) {
156     /* check whether this affect this bar instance by checking the bar_id */
157     char *expected_id;
158     sasprintf(&expected_id, "\"id\":\"%s\"", config.bar_id);
159     char *found_id = strstr(event, expected_id);
160     FREE(expected_id);
161     if (found_id == NULL)
162         return;
163
164     /* reconfigure the bar based on the current outputs */
165     i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_OUTPUTS, NULL);
166
167     free_colors(&(config.colors));
168
169     /* update the configuration with the received settings */
170     DLOG("Received bar config update \"%s\"\n", event);
171     bar_display_mode_t old_mode = config.hide_on_modifier;
172     parse_config_json(event);
173     if (old_mode != config.hide_on_modifier) {
174         reconfig_windows(true);
175     }
176
177     /* update fonts and colors */
178     init_xcb_late(config.fontname);
179     init_colors(&(config.colors));
180
181     draw_bars(false);
182 }
183
184 /* Data structure to easily call the event handlers later */
185 handler_t event_handlers[] = {
186     &got_workspace_event,
187     &got_output_event,
188     &got_mode_event,
189     NULL,
190     &got_bar_config_update,
191 };
192
193 /*
194  * Called, when we get a message from i3
195  *
196  */
197 void got_data(struct ev_loop *loop, ev_io *watcher, int events) {
198     DLOG("Got data!\n");
199     int fd = watcher->fd;
200
201     /* First we only read the header, because we know its length */
202     uint32_t header_len = strlen(I3_IPC_MAGIC) + sizeof(uint32_t) * 2;
203     char *header = smalloc(header_len);
204
205     /* We first parse the fixed-length IPC header, to know, how much data
206      * we have to expect */
207     uint32_t rec = 0;
208     while (rec < header_len) {
209         int n = read(fd, header + rec, header_len - rec);
210         if (n == -1) {
211             ELOG("read() failed: %s\n", strerror(errno));
212             exit(EXIT_FAILURE);
213         }
214         if (n == 0) {
215             /* EOF received. Since i3 will restart i3bar instances as appropriate,
216              * we exit here. */
217             DLOG("EOF received, exiting...\n");
218 #ifdef I3_ASAN_ENABLED
219             __lsan_do_leak_check();
220 #endif
221             clean_xcb();
222             exit(EXIT_SUCCESS);
223         }
224         rec += n;
225     }
226
227     if (strncmp(header, I3_IPC_MAGIC, strlen(I3_IPC_MAGIC))) {
228         ELOG("Wrong magic code: %.*s\n Expected: %s\n",
229              (int)strlen(I3_IPC_MAGIC),
230              header,
231              I3_IPC_MAGIC);
232         exit(EXIT_FAILURE);
233     }
234
235     char *walk = header + strlen(I3_IPC_MAGIC);
236     uint32_t size;
237     memcpy(&size, (uint32_t *)walk, sizeof(uint32_t));
238     walk += sizeof(uint32_t);
239     uint32_t type;
240     memcpy(&type, (uint32_t *)walk, sizeof(uint32_t));
241
242     /* Now that we know, what to expect, we can start read()ing the rest
243      * of the message */
244     char *buffer = smalloc(size + 1);
245     rec = 0;
246
247     while (rec < size) {
248         int n = read(fd, buffer + rec, size - rec);
249         if (n == -1) {
250             ELOG("read() failed: %s\n", strerror(errno));
251             exit(EXIT_FAILURE);
252         }
253         if (n == 0) {
254             ELOG("Nothing to read!\n");
255             exit(EXIT_FAILURE);
256         }
257         rec += n;
258     }
259     buffer[size] = '\0';
260
261     /* And call the callback (indexed by the type) */
262     if (type & (1 << 31)) {
263         type ^= 1 << 31;
264         event_handlers[type](buffer);
265     } else {
266         if (reply_handlers[type])
267             reply_handlers[type](buffer);
268     }
269
270     FREE(header);
271     FREE(buffer);
272 }
273
274 /*
275  * Sends a message to i3.
276  * type must be a valid I3_IPC_MESSAGE_TYPE (see i3/ipc.h for further information)
277  *
278  */
279 int i3_send_msg(uint32_t type, const char *payload) {
280     uint32_t len = 0;
281     if (payload != NULL) {
282         len = strlen(payload);
283     }
284
285     /* We are a wellbehaved client and send a proper header first */
286     uint32_t to_write = strlen(I3_IPC_MAGIC) + sizeof(uint32_t) * 2 + len;
287     /* TODO: I'm not entirely sure if this buffer really has to contain more
288      * than the pure header (why not just write() the payload from *payload?),
289      * but we leave it for now */
290     char *buffer = smalloc(to_write);
291     char *walk = buffer;
292
293     strncpy(buffer, I3_IPC_MAGIC, strlen(I3_IPC_MAGIC));
294     walk += strlen(I3_IPC_MAGIC);
295     memcpy(walk, &len, sizeof(uint32_t));
296     walk += sizeof(uint32_t);
297     memcpy(walk, &type, sizeof(uint32_t));
298     walk += sizeof(uint32_t);
299
300     if (payload != NULL)
301         strncpy(walk, payload, len);
302
303     swrite(i3_connection->fd, buffer, to_write);
304
305     FREE(buffer);
306
307     return 1;
308 }
309
310 /*
311  * Initiate a connection to i3.
312  * socket_path must be a valid path to the ipc_socket of i3
313  *
314  */
315 int init_connection(const char *socket_path) {
316     sock_path = socket_path;
317     int sockfd = ipc_connect(socket_path);
318     i3_connection = smalloc(sizeof(ev_io));
319     ev_io_init(i3_connection, &got_data, sockfd, EV_READ);
320     ev_io_start(main_loop, i3_connection);
321     return 1;
322 }
323
324 /*
325  * Destroy the connection to i3.
326  */
327 void destroy_connection(void) {
328     close(i3_connection->fd);
329     ev_io_stop(main_loop, i3_connection);
330 }
331
332 /*
333  * Subscribe to all the i3-events, we need
334  *
335  */
336 void subscribe_events(void) {
337     if (config.disable_ws) {
338         i3_send_msg(I3_IPC_MESSAGE_TYPE_SUBSCRIBE, "[ \"output\", \"mode\", \"barconfig_update\" ]");
339     } else {
340         i3_send_msg(I3_IPC_MESSAGE_TYPE_SUBSCRIBE, "[ \"workspace\", \"output\", \"mode\", \"barconfig_update\" ]");
341     }
342 }