]> git.sur5r.net Git - i3/i3/blob - i3bar/src/ipc.c
Merge branch 'next'
[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();
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     /* The name of this function is actually misleading. Even if no command is
104      * specified, this function initiates the watchers to listen on stdin and
105      * react accordingly */
106     start_child(config.command);
107     FREE(config.command);
108 }
109
110 /* Data-structure to easily call the reply-handlers later */
111 handler_t reply_handlers[] = {
112     &got_command_reply,
113     &got_workspace_reply,
114     &got_subscribe_reply,
115     &got_output_reply,
116     NULL,
117     NULL,
118     &got_bar_config,
119 };
120
121 /*
122  * Called, when a workspace-event arrives (i.e. the user changed the workspace)
123  *
124  */
125 void got_workspace_event(char *event) {
126     DLOG("Got Workspace Event!\n");
127     i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_WORKSPACES, NULL);
128 }
129
130 /*
131  * Called, when an output-event arrives (i.e. the screen-configuration changed)
132  *
133  */
134 void got_output_event(char *event) {
135     DLOG("Got Output Event!\n");
136     i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_OUTPUTS, NULL);
137     if (!config.disable_ws) {
138         i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_WORKSPACES, NULL);
139     }
140 }
141
142 /*
143  * Called, when a mode-event arrives (i3 changed binding mode).
144  *
145  */
146 void got_mode_event(char *event) {
147     DLOG("Got Mode Event!\n");
148     parse_mode_json(event);
149     draw_bars(false);
150 }
151
152
153 /* Data-structure to easily call the reply-handlers later */
154 handler_t event_handlers[] = {
155     &got_workspace_event,
156     &got_output_event,
157     &got_mode_event
158 };
159
160 /*
161  * Called, when we get a message from i3
162  *
163  */
164 void got_data(struct ev_loop *loop, ev_io *watcher, int events) {
165     DLOG("Got data!\n");
166     int fd = watcher->fd;
167
168     /* First we only read the header, because we know its length */
169     uint32_t header_len = strlen(I3_IPC_MAGIC) + sizeof(uint32_t)*2;
170     char *header = smalloc(header_len);
171
172     /* We first parse the fixed-length IPC-header, to know, how much data
173      * we have to expect */
174     uint32_t rec = 0;
175     while (rec < header_len) {
176         int n = read(fd, header + rec, header_len - rec);
177         if (n == -1) {
178             ELOG("read() failed: %s\n", strerror(errno));
179             exit(EXIT_FAILURE);
180         }
181         if (n == 0) {
182             /* EOF received. Since i3 will restart i3bar instances as appropriate,
183              * we exit here. */
184             DLOG("EOF received, exiting...\n");
185             clean_xcb();
186             exit(EXIT_SUCCESS);
187         }
188         rec += n;
189     }
190
191     if (strncmp(header, I3_IPC_MAGIC, strlen(I3_IPC_MAGIC))) {
192         ELOG("Wrong magic code: %.*s\n Expected: %s\n",
193              (int) strlen(I3_IPC_MAGIC),
194              header,
195              I3_IPC_MAGIC);
196         exit(EXIT_FAILURE);
197     }
198
199     char *walk = header + strlen(I3_IPC_MAGIC);
200     uint32_t size;
201     memcpy(&size, (uint32_t*)walk, sizeof(uint32_t));
202     walk += sizeof(uint32_t);
203     uint32_t type;
204     memcpy(&type, (uint32_t*)walk, sizeof(uint32_t));
205
206     /* Now that we know, what to expect, we can start read()ing the rest
207      * of the message */
208     char *buffer = smalloc(size + 1);
209     rec = 0;
210
211     while (rec < size) {
212         int n = read(fd, buffer + rec, size - rec);
213         if (n == -1) {
214             ELOG("read() failed: %s\n", strerror(errno));
215             exit(EXIT_FAILURE);
216         }
217         if (n == 0) {
218             ELOG("Nothing to read!\n");
219             exit(EXIT_FAILURE);
220         }
221         rec += n;
222     }
223     buffer[size] = '\0';
224
225     /* And call the callback (indexed by the type) */
226     if (type & (1 << 31)) {
227         type ^= 1 << 31;
228         event_handlers[type](buffer);
229     } else {
230         if (reply_handlers[type])
231             reply_handlers[type](buffer);
232     }
233
234     FREE(header);
235     FREE(buffer);
236 }
237
238 /*
239  * Sends a Message to i3.
240  * type must be a valid I3_IPC_MESSAGE_TYPE (see i3/ipc.h for further information)
241  *
242  */
243 int i3_send_msg(uint32_t type, const char *payload) {
244     uint32_t len = 0;
245     if (payload != NULL) {
246         len = strlen(payload);
247     }
248
249     /* We are a wellbehaved client and send a proper header first */
250     uint32_t to_write = strlen (I3_IPC_MAGIC) + sizeof(uint32_t)*2 + len;
251     /* TODO: I'm not entirely sure if this buffer really has to contain more
252      * than the pure header (why not just write() the payload from *payload?),
253      * but we leave it for now */
254     char *buffer = smalloc(to_write);
255     char *walk = buffer;
256
257     strncpy(buffer, I3_IPC_MAGIC, strlen(I3_IPC_MAGIC));
258     walk += strlen(I3_IPC_MAGIC);
259     memcpy(walk, &len, sizeof(uint32_t));
260     walk += sizeof(uint32_t);
261     memcpy(walk, &type, sizeof(uint32_t));
262     walk += sizeof(uint32_t);
263
264     if (payload != NULL)
265         strncpy(walk, payload, len);
266
267     uint32_t written = 0;
268
269     while (to_write > 0) {
270         int n = write(i3_connection->fd, buffer + written, to_write);
271         if (n == -1) {
272             ELOG("write() failed: %s\n", strerror(errno));
273             exit(EXIT_FAILURE);
274         }
275
276         to_write -= n;
277         written += n;
278     }
279
280     FREE(buffer);
281
282     return 1;
283 }
284
285 /*
286  * Initiate a connection to i3.
287  * socket-path must be a valid path to the ipc_socket of i3
288  *
289  */
290 int init_connection(const char *socket_path) {
291     sock_path = socket_path;
292     int sockfd = ipc_connect(socket_path);
293     i3_connection = smalloc(sizeof(ev_io));
294     ev_io_init(i3_connection, &got_data, sockfd, EV_READ);
295     ev_io_start(main_loop, i3_connection);
296     return 1;
297 }
298
299 /*
300  * Destroy the connection to i3.
301  */
302 void destroy_connection(void) {
303     close(i3_connection->fd);
304     ev_io_stop(main_loop, i3_connection);
305 }
306
307 /*
308  * Subscribe to all the i3-events, we need
309  *
310  */
311 void subscribe_events(void) {
312     if (config.disable_ws) {
313         i3_send_msg(I3_IPC_MESSAGE_TYPE_SUBSCRIBE, "[ \"output\", \"mode\" ]");
314     } else {
315         i3_send_msg(I3_IPC_MESSAGE_TYPE_SUBSCRIBE, "[ \"workspace\", \"output\", \"mode\" ]");
316     }
317 }