]> git.sur5r.net Git - i3/i3/blob - i3-msg/main.c
tree_close_internal: Log workspace name in EWMH message
[i3/i3] / i3-msg / main.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * i3-msg/main.c: Utility which sends messages to a running i3-instance using
8  * IPC via UNIX domain sockets.
9  *
10  * This (in combination with libi3/ipc_send_message.c and
11  * libi3/ipc_recv_message.c) serves as an example for how to send your own
12  * messages to i3.
13  *
14  * Additionally, it’s even useful sometimes :-).
15  *
16  */
17 #include "libi3.h"
18
19 #include <stdio.h>
20 #include <stdbool.h>
21 #include <sys/types.h>
22 #include <sys/socket.h>
23 #include <sys/un.h>
24 #include <stdlib.h>
25 #include <unistd.h>
26 #include <string.h>
27 #include <errno.h>
28 #include <err.h>
29 #include <stdint.h>
30 #include <getopt.h>
31 #include <limits.h>
32
33 #include <yajl/yajl_parse.h>
34 #include <yajl/yajl_version.h>
35
36 #include <xcb/xcb.h>
37 #include <xcb/xcb_aux.h>
38
39 #include <i3/ipc.h>
40
41 /*
42  * Having verboselog() and errorlog() is necessary when using libi3.
43  *
44  */
45 void verboselog(char *fmt, ...) {
46     va_list args;
47
48     va_start(args, fmt);
49     vfprintf(stdout, fmt, args);
50     va_end(args);
51 }
52
53 void errorlog(char *fmt, ...) {
54     va_list args;
55
56     va_start(args, fmt);
57     vfprintf(stderr, fmt, args);
58     va_end(args);
59 }
60
61 static char *last_key = NULL;
62
63 typedef struct reply_t {
64     bool success;
65     char *error;
66     char *input;
67     char *errorposition;
68 } reply_t;
69
70 static int exit_code = 0;
71 static reply_t last_reply;
72
73 static int reply_boolean_cb(void *params, int val) {
74     if (strcmp(last_key, "success") == 0)
75         last_reply.success = val;
76     return 1;
77 }
78
79 static int reply_string_cb(void *params, const unsigned char *val, size_t len) {
80     char *str = sstrndup((const char *)val, len);
81
82     if (strcmp(last_key, "error") == 0)
83         last_reply.error = str;
84     else if (strcmp(last_key, "input") == 0)
85         last_reply.input = str;
86     else if (strcmp(last_key, "errorposition") == 0)
87         last_reply.errorposition = str;
88     else
89         free(str);
90     return 1;
91 }
92
93 static int reply_start_map_cb(void *params) {
94     return 1;
95 }
96
97 static int reply_end_map_cb(void *params) {
98     if (!last_reply.success) {
99         if (last_reply.input) {
100             fprintf(stderr, "ERROR: Your command: %s\n", last_reply.input);
101             fprintf(stderr, "ERROR:               %s\n", last_reply.errorposition);
102         }
103         fprintf(stderr, "ERROR: %s\n", last_reply.error);
104         exit_code = 2;
105     }
106     return 1;
107 }
108
109 static int reply_map_key_cb(void *params, const unsigned char *keyVal, size_t keyLen) {
110     free(last_key);
111     last_key = sstrndup((const char *)keyVal, keyLen);
112     return 1;
113 }
114
115 static yajl_callbacks reply_callbacks = {
116     .yajl_boolean = reply_boolean_cb,
117     .yajl_string = reply_string_cb,
118     .yajl_start_map = reply_start_map_cb,
119     .yajl_map_key = reply_map_key_cb,
120     .yajl_end_map = reply_end_map_cb,
121 };
122
123 /*******************************************************************************
124  * Config reply callbacks
125  *******************************************************************************/
126
127 static char *config_last_key = NULL;
128
129 static int config_string_cb(void *params, const unsigned char *val, size_t len) {
130     char *str = sstrndup((const char *)val, len);
131     if (strcmp(config_last_key, "config") == 0) {
132         fprintf(stdout, "%s", str);
133     }
134     free(str);
135     return 1;
136 }
137
138 static int config_start_map_cb(void *params) {
139     return 1;
140 }
141
142 static int config_end_map_cb(void *params) {
143     return 1;
144 }
145
146 static int config_map_key_cb(void *params, const unsigned char *keyVal, size_t keyLen) {
147     config_last_key = sstrndup((const char *)keyVal, keyLen);
148     return 1;
149 }
150
151 static yajl_callbacks config_callbacks = {
152     .yajl_string = config_string_cb,
153     .yajl_start_map = config_start_map_cb,
154     .yajl_map_key = config_map_key_cb,
155     .yajl_end_map = config_end_map_cb,
156 };
157
158 int main(int argc, char *argv[]) {
159 #if defined(__OpenBSD__)
160     if (pledge("stdio rpath unix", NULL) == -1)
161         err(EXIT_FAILURE, "pledge");
162 #endif
163     char *socket_path = NULL;
164     int o, option_index = 0;
165     uint32_t message_type = I3_IPC_MESSAGE_TYPE_RUN_COMMAND;
166     char *payload = NULL;
167     bool quiet = false;
168     bool monitor = false;
169
170     static struct option long_options[] = {
171         {"socket", required_argument, 0, 's'},
172         {"type", required_argument, 0, 't'},
173         {"version", no_argument, 0, 'v'},
174         {"quiet", no_argument, 0, 'q'},
175         {"monitor", no_argument, 0, 'm'},
176         {"help", no_argument, 0, 'h'},
177         {0, 0, 0, 0}};
178
179     char *options_string = "s:t:vhqm";
180
181     while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
182         if (o == 's') {
183             free(socket_path);
184             socket_path = sstrdup(optarg);
185         } else if (o == 't') {
186             if (strcasecmp(optarg, "command") == 0) {
187                 message_type = I3_IPC_MESSAGE_TYPE_RUN_COMMAND;
188             } else if (strcasecmp(optarg, "run_command") == 0) {
189                 message_type = I3_IPC_MESSAGE_TYPE_RUN_COMMAND;
190             } else if (strcasecmp(optarg, "get_workspaces") == 0) {
191                 message_type = I3_IPC_MESSAGE_TYPE_GET_WORKSPACES;
192             } else if (strcasecmp(optarg, "get_outputs") == 0) {
193                 message_type = I3_IPC_MESSAGE_TYPE_GET_OUTPUTS;
194             } else if (strcasecmp(optarg, "get_tree") == 0) {
195                 message_type = I3_IPC_MESSAGE_TYPE_GET_TREE;
196             } else if (strcasecmp(optarg, "get_marks") == 0) {
197                 message_type = I3_IPC_MESSAGE_TYPE_GET_MARKS;
198             } else if (strcasecmp(optarg, "get_bar_config") == 0) {
199                 message_type = I3_IPC_MESSAGE_TYPE_GET_BAR_CONFIG;
200             } else if (strcasecmp(optarg, "get_binding_modes") == 0) {
201                 message_type = I3_IPC_MESSAGE_TYPE_GET_BINDING_MODES;
202             } else if (strcasecmp(optarg, "get_version") == 0) {
203                 message_type = I3_IPC_MESSAGE_TYPE_GET_VERSION;
204             } else if (strcasecmp(optarg, "get_config") == 0) {
205                 message_type = I3_IPC_MESSAGE_TYPE_GET_CONFIG;
206             } else if (strcasecmp(optarg, "send_tick") == 0) {
207                 message_type = I3_IPC_MESSAGE_TYPE_SEND_TICK;
208             } else if (strcasecmp(optarg, "subscribe") == 0) {
209                 message_type = I3_IPC_MESSAGE_TYPE_SUBSCRIBE;
210             } else {
211                 printf("Unknown message type\n");
212                 printf("Known types: run_command, get_workspaces, get_outputs, get_tree, get_marks, get_bar_config, get_binding_modes, get_version, get_config, send_tick, subscribe\n");
213                 exit(EXIT_FAILURE);
214             }
215         } else if (o == 'q') {
216             quiet = true;
217         } else if (o == 'm') {
218             monitor = true;
219         } else if (o == 'v') {
220             printf("i3-msg " I3_VERSION "\n");
221             return 0;
222         } else if (o == 'h') {
223             printf("i3-msg " I3_VERSION "\n");
224             printf("i3-msg [-s <socket>] [-t <type>] [-m] <message>\n");
225             return 0;
226         } else if (o == '?') {
227             exit(EXIT_FAILURE);
228         }
229     }
230
231     if (monitor && message_type != I3_IPC_MESSAGE_TYPE_SUBSCRIBE) {
232         fprintf(stderr, "The monitor option -m is used with -t SUBSCRIBE exclusively.\n");
233         exit(EXIT_FAILURE);
234     }
235
236     /* Use all arguments, separated by whitespace, as payload.
237      * This way, you don’t have to do i3-msg 'mark foo', you can use
238      * i3-msg mark foo */
239     while (optind < argc) {
240         if (!payload) {
241             payload = sstrdup(argv[optind]);
242         } else {
243             char *both;
244             sasprintf(&both, "%s %s", payload, argv[optind]);
245             free(payload);
246             payload = both;
247         }
248         optind++;
249     }
250
251     if (!payload)
252         payload = sstrdup("");
253
254     int sockfd = ipc_connect(socket_path);
255     if (ipc_send_message(sockfd, strlen(payload), message_type, (uint8_t *)payload) == -1)
256         err(EXIT_FAILURE, "IPC: write()");
257     free(payload);
258
259     uint32_t reply_length;
260     uint32_t reply_type;
261     uint8_t *reply;
262     int ret;
263     if ((ret = ipc_recv_message(sockfd, &reply_type, &reply_length, &reply)) != 0) {
264         if (ret == -1)
265             err(EXIT_FAILURE, "IPC: read()");
266         exit(1);
267     }
268     if (reply_type != message_type)
269         errx(EXIT_FAILURE, "IPC: Received reply of type %d but expected %d", reply_type, message_type);
270     /* For the reply of commands, have a look if that command was successful.
271      * If not, nicely format the error message. */
272     if (reply_type == I3_IPC_REPLY_TYPE_COMMAND) {
273         yajl_handle handle = yajl_alloc(&reply_callbacks, NULL, NULL);
274         yajl_status state = yajl_parse(handle, (const unsigned char *)reply, reply_length);
275         yajl_free(handle);
276
277         switch (state) {
278             case yajl_status_ok:
279                 break;
280             case yajl_status_client_canceled:
281             case yajl_status_error:
282                 errx(EXIT_FAILURE, "IPC: Could not parse JSON reply.");
283         }
284
285         if (!quiet) {
286             printf("%.*s\n", reply_length, reply);
287         }
288     } else if (reply_type == I3_IPC_REPLY_TYPE_CONFIG) {
289         yajl_handle handle = yajl_alloc(&config_callbacks, NULL, NULL);
290         yajl_status state = yajl_parse(handle, (const unsigned char *)reply, reply_length);
291         yajl_free(handle);
292
293         switch (state) {
294             case yajl_status_ok:
295                 break;
296             case yajl_status_client_canceled:
297             case yajl_status_error:
298                 errx(EXIT_FAILURE, "IPC: Could not parse JSON reply.");
299         }
300     } else if (reply_type == I3_IPC_REPLY_TYPE_SUBSCRIBE) {
301         do {
302             free(reply);
303             if ((ret = ipc_recv_message(sockfd, &reply_type, &reply_length, &reply)) != 0) {
304                 if (ret == -1)
305                     err(EXIT_FAILURE, "IPC: read()");
306                 exit(1);
307             }
308
309             if (!(reply_type & I3_IPC_EVENT_MASK)) {
310                 errx(EXIT_FAILURE, "IPC: Received reply of type %d but expected an event", reply_type);
311             }
312
313             if (!quiet) {
314                 fprintf(stdout, "%.*s\n", reply_length, reply);
315                 fflush(stdout);
316             }
317         } while (monitor);
318     } else {
319         if (!quiet) {
320             printf("%.*s\n", reply_length, reply);
321         }
322     }
323
324     free(reply);
325
326     close(sockfd);
327
328     return exit_code;
329 }