]> git.sur5r.net Git - i3/i3/blob - i3-msg/main.c
4bc3c14987300866e994f241c8916f0ad324b295
[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 static char *socket_path;
42
43 /*
44  * Having verboselog() and errorlog() is necessary when using libi3.
45  *
46  */
47 void verboselog(char *fmt, ...) {
48     va_list args;
49
50     va_start(args, fmt);
51     vfprintf(stdout, fmt, args);
52     va_end(args);
53 }
54
55 void errorlog(char *fmt, ...) {
56     va_list args;
57
58     va_start(args, fmt);
59     vfprintf(stderr, fmt, args);
60     va_end(args);
61 }
62
63 static char *last_key = NULL;
64
65 typedef struct reply_t {
66     bool success;
67     char *error;
68     char *input;
69     char *errorposition;
70 } reply_t;
71
72 static reply_t last_reply;
73
74 static int reply_boolean_cb(void *params, int val) {
75     if (strcmp(last_key, "success") == 0)
76         last_reply.success = val;
77     return 1;
78 }
79
80 static int reply_string_cb(void *params, const unsigned char *val, size_t len) {
81     char *str = scalloc(len + 1, 1);
82     strncpy(str, (const char *)val, len);
83     if (strcmp(last_key, "error") == 0)
84         last_reply.error = str;
85     else if (strcmp(last_key, "input") == 0)
86         last_reply.input = str;
87     else if (strcmp(last_key, "errorposition") == 0)
88         last_reply.errorposition = str;
89     else
90         free(str);
91     return 1;
92 }
93
94 static int reply_start_map_cb(void *params) {
95     return 1;
96 }
97
98 static int reply_end_map_cb(void *params) {
99     if (!last_reply.success) {
100         fprintf(stderr, "ERROR: Your command: %s\n", last_reply.input);
101         fprintf(stderr, "ERROR:               %s\n", last_reply.errorposition);
102         fprintf(stderr, "ERROR: %s\n", last_reply.error);
103     }
104     return 1;
105 }
106
107 static int reply_map_key_cb(void *params, const unsigned char *keyVal, size_t keyLen) {
108     free(last_key);
109     last_key = scalloc(keyLen + 1, 1);
110     strncpy(last_key, (const char *)keyVal, keyLen);
111     return 1;
112 }
113
114 static yajl_callbacks reply_callbacks = {
115     .yajl_boolean = reply_boolean_cb,
116     .yajl_string = reply_string_cb,
117     .yajl_start_map = reply_start_map_cb,
118     .yajl_map_key = reply_map_key_cb,
119     .yajl_end_map = reply_end_map_cb,
120 };
121
122 int main(int argc, char *argv[]) {
123 #if defined(__OpenBSD__)
124     if (pledge("stdio rpath unix", NULL) == -1)
125         err(EXIT_FAILURE, "pledge");
126 #endif
127     char *env_socket_path = getenv("I3SOCK");
128     if (env_socket_path)
129         socket_path = sstrdup(env_socket_path);
130     else
131         socket_path = NULL;
132     int o, option_index = 0;
133     uint32_t message_type = I3_IPC_MESSAGE_TYPE_COMMAND;
134     char *payload = NULL;
135     bool quiet = false;
136
137     static struct option long_options[] = {
138         {"socket", required_argument, 0, 's'},
139         {"type", required_argument, 0, 't'},
140         {"version", no_argument, 0, 'v'},
141         {"quiet", no_argument, 0, 'q'},
142         {"help", no_argument, 0, 'h'},
143         {0, 0, 0, 0}};
144
145     char *options_string = "s:t:vhq";
146
147     while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
148         if (o == 's') {
149             if (socket_path != NULL)
150                 free(socket_path);
151             socket_path = sstrdup(optarg);
152         } else if (o == 't') {
153             if (strcasecmp(optarg, "command") == 0)
154                 message_type = I3_IPC_MESSAGE_TYPE_COMMAND;
155             else if (strcasecmp(optarg, "get_workspaces") == 0)
156                 message_type = I3_IPC_MESSAGE_TYPE_GET_WORKSPACES;
157             else if (strcasecmp(optarg, "get_outputs") == 0)
158                 message_type = I3_IPC_MESSAGE_TYPE_GET_OUTPUTS;
159             else if (strcasecmp(optarg, "get_tree") == 0)
160                 message_type = I3_IPC_MESSAGE_TYPE_GET_TREE;
161             else if (strcasecmp(optarg, "get_marks") == 0)
162                 message_type = I3_IPC_MESSAGE_TYPE_GET_MARKS;
163             else if (strcasecmp(optarg, "get_bar_config") == 0)
164                 message_type = I3_IPC_MESSAGE_TYPE_GET_BAR_CONFIG;
165             else if (strcasecmp(optarg, "get_binding_modes") == 0)
166                 message_type = I3_IPC_MESSAGE_TYPE_GET_BINDING_MODES;
167             else if (strcasecmp(optarg, "get_version") == 0)
168                 message_type = I3_IPC_MESSAGE_TYPE_GET_VERSION;
169             else {
170                 printf("Unknown message type\n");
171                 printf("Known types: command, get_workspaces, get_outputs, get_tree, get_marks, get_bar_config, get_binding_modes, get_version\n");
172                 exit(EXIT_FAILURE);
173             }
174         } else if (o == 'q') {
175             quiet = true;
176         } else if (o == 'v') {
177             printf("i3-msg " I3_VERSION "\n");
178             return 0;
179         } else if (o == 'h') {
180             printf("i3-msg " I3_VERSION "\n");
181             printf("i3-msg [-s <socket>] [-t <type>] <message>\n");
182             return 0;
183         } else if (o == '?') {
184             exit(EXIT_FAILURE);
185         }
186     }
187
188     if (socket_path == NULL)
189         socket_path = root_atom_contents("I3_SOCKET_PATH", NULL, 0);
190
191     /* Fall back to the default socket path */
192     if (socket_path == NULL)
193         socket_path = sstrdup("/tmp/i3-ipc.sock");
194
195     /* Use all arguments, separated by whitespace, as payload.
196      * This way, you don’t have to do i3-msg 'mark foo', you can use
197      * i3-msg mark foo */
198     while (optind < argc) {
199         if (!payload) {
200             payload = sstrdup(argv[optind]);
201         } else {
202             char *both;
203             sasprintf(&both, "%s %s", payload, argv[optind]);
204             free(payload);
205             payload = both;
206         }
207         optind++;
208     }
209
210     if (!payload)
211         payload = sstrdup("");
212
213     int sockfd = socket(AF_LOCAL, SOCK_STREAM, 0);
214     if (sockfd == -1)
215         err(EXIT_FAILURE, "Could not create socket");
216
217     struct sockaddr_un addr;
218     memset(&addr, 0, sizeof(struct sockaddr_un));
219     addr.sun_family = AF_LOCAL;
220     strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path) - 1);
221     if (connect(sockfd, (const struct sockaddr *)&addr, sizeof(struct sockaddr_un)) < 0)
222         err(EXIT_FAILURE, "Could not connect to i3 on socket \"%s\"", socket_path);
223
224     if (ipc_send_message(sockfd, strlen(payload), message_type, (uint8_t *)payload) == -1)
225         err(EXIT_FAILURE, "IPC: write()");
226     free(payload);
227
228     if (quiet)
229         return 0;
230
231     uint32_t reply_length;
232     uint32_t reply_type;
233     uint8_t *reply;
234     int ret;
235     if ((ret = ipc_recv_message(sockfd, &reply_type, &reply_length, &reply)) != 0) {
236         if (ret == -1)
237             err(EXIT_FAILURE, "IPC: read()");
238         exit(1);
239     }
240     if (reply_type != message_type)
241         errx(EXIT_FAILURE, "IPC: Received reply of type %d but expected %d", reply_type, message_type);
242     /* For the reply of commands, have a look if that command was successful.
243      * If not, nicely format the error message. */
244     if (reply_type == I3_IPC_MESSAGE_TYPE_COMMAND) {
245         yajl_handle handle = yajl_alloc(&reply_callbacks, NULL, NULL);
246         yajl_status state = yajl_parse(handle, (const unsigned char *)reply, reply_length);
247         yajl_free(handle);
248
249         switch (state) {
250             case yajl_status_ok:
251                 break;
252             case yajl_status_client_canceled:
253             case yajl_status_error:
254                 errx(EXIT_FAILURE, "IPC: Could not parse JSON reply.");
255         }
256
257         /* NB: We still fall-through and print the reply, because even if one
258          * command failed, that doesn’t mean that all commands failed. */
259     }
260     printf("%.*s\n", reply_length, reply);
261     free(reply);
262
263     close(sockfd);
264
265     return 0;
266 }