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