]> git.sur5r.net Git - i3/i3/blob - i3bar/src/ipc.c
Merge branch 'master' into 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     parse_config_json(reply);
88
89     /* Now we can actually use 'config', so let's subscribe to the appropriate
90      * events and request the workspaces if necessary. */
91     subscribe_events();
92     if (!config.disable_ws)
93         i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_WORKSPACES, NULL);
94
95     /* Initialize the rest of XCB */
96     init_xcb_late(config.fontname);
97
98     /* Resolve color strings to colorpixels and save them, then free the strings. */
99     init_colors(&(config.colors));
100     free_colors(&(config.colors));
101
102     /* The name of this function is actually misleading. Even if no command is
103      * specified, this function initiates the watchers to listen on stdin and
104      * react accordingly */
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 /* Data-structure to easily call the reply-handlers later */
142 handler_t event_handlers[] = {
143     &got_workspace_event,
144     &got_output_event
145 };
146
147 /*
148  * Called, when we get a message from i3
149  *
150  */
151 void got_data(struct ev_loop *loop, ev_io *watcher, int events) {
152     DLOG("Got data!\n");
153     int fd = watcher->fd;
154
155     /* First we only read the header, because we know its length */
156     uint32_t header_len = strlen(I3_IPC_MAGIC) + sizeof(uint32_t)*2;
157     char *header = smalloc(header_len);
158
159     /* We first parse the fixed-length IPC-header, to know, how much data
160      * we have to expect */
161     uint32_t rec = 0;
162     while (rec < header_len) {
163         int n = read(fd, header + rec, header_len - rec);
164         if (n == -1) {
165             ELOG("read() failed: %s\n", strerror(errno));
166             exit(EXIT_FAILURE);
167         }
168         if (n == 0) {
169             /* EOF received. Since i3 will restart i3bar instances as appropriate,
170              * we exit here. */
171             DLOG("EOF received, exiting...\n");
172             clean_xcb();
173             exit(EXIT_SUCCESS);
174         }
175         rec += n;
176     }
177
178     if (strncmp(header, I3_IPC_MAGIC, strlen(I3_IPC_MAGIC))) {
179         ELOG("Wrong magic code: %.*s\n Expected: %s\n",
180              (int) strlen(I3_IPC_MAGIC),
181              header,
182              I3_IPC_MAGIC);
183         exit(EXIT_FAILURE);
184     }
185
186     char *walk = header + strlen(I3_IPC_MAGIC);
187     uint32_t size;
188     memcpy(&size, (uint32_t*)walk, sizeof(uint32_t));
189     walk += sizeof(uint32_t);
190     uint32_t type;
191     memcpy(&type, (uint32_t*)walk, sizeof(uint32_t));
192
193     /* Now that we know, what to expect, we can start read()ing the rest
194      * of the message */
195     char *buffer = smalloc(size + 1);
196     rec = 0;
197
198     while (rec < size) {
199         int n = read(fd, buffer + rec, size - rec);
200         if (n == -1) {
201             ELOG("read() failed: %s\n", strerror(errno));
202             exit(EXIT_FAILURE);
203         }
204         if (n == 0) {
205             ELOG("Nothing to read!\n");
206             exit(EXIT_FAILURE);
207         }
208         rec += n;
209     }
210     buffer[size] = '\0';
211
212     /* And call the callback (indexed by the type) */
213     if (type & (1 << 31)) {
214         type ^= 1 << 31;
215         event_handlers[type](buffer);
216     } else {
217         if (reply_handlers[type])
218             reply_handlers[type](buffer);
219     }
220
221     FREE(header);
222     FREE(buffer);
223 }
224
225 /*
226  * Sends a Message to i3.
227  * type must be a valid I3_IPC_MESSAGE_TYPE (see i3/ipc.h for further information)
228  *
229  */
230 int i3_send_msg(uint32_t type, const char *payload) {
231     uint32_t len = 0;
232     if (payload != NULL) {
233         len = strlen(payload);
234     }
235
236     /* We are a wellbehaved client and send a proper header first */
237     uint32_t to_write = strlen (I3_IPC_MAGIC) + sizeof(uint32_t)*2 + len;
238     /* TODO: I'm not entirely sure if this buffer really has to contain more
239      * than the pure header (why not just write() the payload from *payload?),
240      * but we leave it for now */
241     char *buffer = smalloc(to_write);
242     char *walk = buffer;
243
244     strncpy(buffer, I3_IPC_MAGIC, strlen(I3_IPC_MAGIC));
245     walk += strlen(I3_IPC_MAGIC);
246     memcpy(walk, &len, sizeof(uint32_t));
247     walk += sizeof(uint32_t);
248     memcpy(walk, &type, sizeof(uint32_t));
249     walk += sizeof(uint32_t);
250
251     if (payload != NULL)
252         strncpy(walk, payload, len);
253
254     uint32_t written = 0;
255
256     while (to_write > 0) {
257         int n = write(i3_connection->fd, buffer + written, to_write);
258         if (n == -1) {
259             ELOG("write() failed: %s\n", strerror(errno));
260             exit(EXIT_FAILURE);
261         }
262
263         to_write -= n;
264         written += n;
265     }
266
267     FREE(buffer);
268
269     return 1;
270 }
271
272 /*
273  * Initiate a connection to i3.
274  * socket-path must be a valid path to the ipc_socket of i3
275  *
276  */
277 int init_connection(const char *socket_path) {
278     sock_path = socket_path;
279     int sockfd = ipc_connect(socket_path);
280     i3_connection = smalloc(sizeof(ev_io));
281     ev_io_init(i3_connection, &got_data, sockfd, EV_READ);
282     ev_io_start(main_loop, i3_connection);
283     return 1;
284 }
285
286 /*
287  * Destroy the connection to i3.
288  */
289 void destroy_connection(void) {
290     close(i3_connection->fd);
291     ev_io_stop(main_loop, i3_connection);
292 }
293
294 /*
295  * Subscribe to all the i3-events, we need
296  *
297  */
298 void subscribe_events(void) {
299     if (config.disable_ws) {
300         i3_send_msg(I3_IPC_MESSAGE_TYPE_SUBSCRIBE, "[ \"output\" ]");
301     } else {
302         i3_send_msg(I3_IPC_MESSAGE_TYPE_SUBSCRIBE, "[ \"workspace\", \"output\" ]");
303     }
304 }