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