2009-07-28 21:26:36 +02:00
|
|
|
|
/*
|
2011-07-13 17:53:07 +02:00
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
2009-07-28 21:26:36 +02:00
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2009-07-28 21:26:36 +02:00
|
|
|
|
*
|
|
|
|
|
* i3-msg/main.c: Utility which sends messages to a running i3-instance using
|
|
|
|
|
* IPC via UNIX domain sockets.
|
|
|
|
|
*
|
2011-10-02 19:33:10 +02:00
|
|
|
|
* This (in combination with libi3/ipc_send_message.c and
|
|
|
|
|
* libi3/ipc_recv_message.c) serves as an example for how to send your own
|
|
|
|
|
* messages to i3.
|
|
|
|
|
*
|
2009-07-28 21:26:36 +02:00
|
|
|
|
* Additionally, it’s even useful sometimes :-).
|
|
|
|
|
*
|
|
|
|
|
*/
|
2016-10-11 09:13:35 +02:00
|
|
|
|
#include "libi3.h"
|
|
|
|
|
|
2009-07-28 21:26:36 +02:00
|
|
|
|
#include <stdio.h>
|
2010-03-12 15:30:09 +01:00
|
|
|
|
#include <stdbool.h>
|
2009-07-28 21:26:36 +02:00
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#include <sys/un.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <err.h>
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <getopt.h>
|
2011-03-19 21:23:55 +01:00
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
2013-01-26 17:56:43 +01:00
|
|
|
|
#include <yajl/yajl_parse.h>
|
|
|
|
|
#include <yajl/yajl_version.h>
|
|
|
|
|
|
2011-03-19 21:23:55 +01:00
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
#include <xcb/xcb_aux.h>
|
2009-07-28 21:26:36 +02:00
|
|
|
|
|
2010-03-12 15:30:09 +01:00
|
|
|
|
#include <i3/ipc.h>
|
|
|
|
|
|
2011-03-19 21:23:55 +01:00
|
|
|
|
static char *socket_path;
|
|
|
|
|
|
2013-01-23 18:50:21 +01:00
|
|
|
|
/*
|
|
|
|
|
* Having verboselog() and errorlog() is necessary when using libi3.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void verboselog(char *fmt, ...) {
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
|
vfprintf(stdout, fmt, args);
|
|
|
|
|
va_end(args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void errorlog(char *fmt, ...) {
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
|
vfprintf(stderr, fmt, args);
|
|
|
|
|
va_end(args);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-26 17:56:43 +01:00
|
|
|
|
static char *last_key = NULL;
|
|
|
|
|
|
|
|
|
|
typedef struct reply_t {
|
|
|
|
|
bool success;
|
|
|
|
|
char *error;
|
|
|
|
|
char *input;
|
|
|
|
|
char *errorposition;
|
|
|
|
|
} reply_t;
|
|
|
|
|
|
|
|
|
|
static reply_t last_reply;
|
|
|
|
|
|
|
|
|
|
static int reply_boolean_cb(void *params, int val) {
|
|
|
|
|
if (strcmp(last_key, "success") == 0)
|
|
|
|
|
last_reply.success = val;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int reply_string_cb(void *params, const unsigned char *val, size_t len) {
|
2015-08-03 11:50:13 +02:00
|
|
|
|
char *str = scalloc(len + 1, 1);
|
2014-06-15 19:07:02 +02:00
|
|
|
|
strncpy(str, (const char *)val, len);
|
2013-01-26 17:56:43 +01:00
|
|
|
|
if (strcmp(last_key, "error") == 0)
|
|
|
|
|
last_reply.error = str;
|
|
|
|
|
else if (strcmp(last_key, "input") == 0)
|
|
|
|
|
last_reply.input = str;
|
|
|
|
|
else if (strcmp(last_key, "errorposition") == 0)
|
|
|
|
|
last_reply.errorposition = str;
|
2014-06-15 19:07:02 +02:00
|
|
|
|
else
|
|
|
|
|
free(str);
|
2013-01-26 17:56:43 +01:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int reply_start_map_cb(void *params) {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int reply_end_map_cb(void *params) {
|
|
|
|
|
if (!last_reply.success) {
|
|
|
|
|
fprintf(stderr, "ERROR: Your command: %s\n", last_reply.input);
|
|
|
|
|
fprintf(stderr, "ERROR: %s\n", last_reply.errorposition);
|
|
|
|
|
fprintf(stderr, "ERROR: %s\n", last_reply.error);
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int reply_map_key_cb(void *params, const unsigned char *keyVal, size_t keyLen) {
|
|
|
|
|
free(last_key);
|
2015-08-03 11:50:13 +02:00
|
|
|
|
last_key = scalloc(keyLen + 1, 1);
|
2014-06-15 19:07:02 +02:00
|
|
|
|
strncpy(last_key, (const char *)keyVal, keyLen);
|
2013-01-26 17:56:43 +01:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-01 17:19:55 +01:00
|
|
|
|
static yajl_callbacks reply_callbacks = {
|
|
|
|
|
.yajl_boolean = reply_boolean_cb,
|
|
|
|
|
.yajl_string = reply_string_cb,
|
|
|
|
|
.yajl_start_map = reply_start_map_cb,
|
|
|
|
|
.yajl_map_key = reply_map_key_cb,
|
|
|
|
|
.yajl_end_map = reply_end_map_cb,
|
2013-01-26 17:56:43 +01:00
|
|
|
|
};
|
|
|
|
|
|
2017-08-19 17:29:03 +02:00
|
|
|
|
/*******************************************************************************
|
|
|
|
|
* Config reply callbacks
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
|
|
static char *config_last_key = NULL;
|
|
|
|
|
|
|
|
|
|
static int config_string_cb(void *params, const unsigned char *val, size_t len) {
|
|
|
|
|
char *str = scalloc(len + 1, 1);
|
|
|
|
|
strncpy(str, (const char *)val, len);
|
|
|
|
|
if (strcmp(config_last_key, "config") == 0) {
|
|
|
|
|
fprintf(stdout, "%s", str);
|
|
|
|
|
}
|
|
|
|
|
free(str);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int config_start_map_cb(void *params) {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int config_end_map_cb(void *params) {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int config_map_key_cb(void *params, const unsigned char *keyVal, size_t keyLen) {
|
|
|
|
|
config_last_key = scalloc(keyLen + 1, 1);
|
|
|
|
|
strncpy(config_last_key, (const char *)keyVal, keyLen);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static yajl_callbacks config_callbacks = {
|
|
|
|
|
.yajl_string = config_string_cb,
|
|
|
|
|
.yajl_start_map = config_start_map_cb,
|
|
|
|
|
.yajl_map_key = config_map_key_cb,
|
|
|
|
|
.yajl_end_map = config_end_map_cb,
|
|
|
|
|
};
|
|
|
|
|
|
2009-07-28 21:26:36 +02:00
|
|
|
|
int main(int argc, char *argv[]) {
|
2016-01-14 10:06:34 +01:00
|
|
|
|
#if defined(__OpenBSD__)
|
|
|
|
|
if (pledge("stdio rpath unix", NULL) == -1)
|
|
|
|
|
err(EXIT_FAILURE, "pledge");
|
|
|
|
|
#endif
|
2015-08-20 21:55:23 +02:00
|
|
|
|
char *env_socket_path = getenv("I3SOCK");
|
|
|
|
|
if (env_socket_path)
|
|
|
|
|
socket_path = sstrdup(env_socket_path);
|
|
|
|
|
else
|
|
|
|
|
socket_path = NULL;
|
2011-07-13 17:53:07 +02:00
|
|
|
|
int o, option_index = 0;
|
2013-12-25 20:01:37 +01:00
|
|
|
|
uint32_t message_type = I3_IPC_MESSAGE_TYPE_COMMAND;
|
2011-07-13 18:01:24 +02:00
|
|
|
|
char *payload = NULL;
|
2011-07-13 17:53:07 +02:00
|
|
|
|
bool quiet = false;
|
|
|
|
|
|
|
|
|
|
static struct option long_options[] = {
|
|
|
|
|
{"socket", required_argument, 0, 's'},
|
|
|
|
|
{"type", required_argument, 0, 't'},
|
|
|
|
|
{"version", no_argument, 0, 'v'},
|
|
|
|
|
{"quiet", no_argument, 0, 'q'},
|
|
|
|
|
{"help", no_argument, 0, 'h'},
|
2014-06-15 19:07:02 +02:00
|
|
|
|
{0, 0, 0, 0}};
|
2011-07-13 17:53:07 +02:00
|
|
|
|
|
|
|
|
|
char *options_string = "s:t:vhq";
|
|
|
|
|
|
|
|
|
|
while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
|
|
|
|
|
if (o == 's') {
|
|
|
|
|
if (socket_path != NULL)
|
|
|
|
|
free(socket_path);
|
2011-10-02 19:11:01 +02:00
|
|
|
|
socket_path = sstrdup(optarg);
|
2011-07-13 17:53:07 +02:00
|
|
|
|
} else if (o == 't') {
|
2017-08-19 17:29:03 +02:00
|
|
|
|
if (strcasecmp(optarg, "command") == 0) {
|
2011-07-13 17:53:07 +02:00
|
|
|
|
message_type = I3_IPC_MESSAGE_TYPE_COMMAND;
|
2017-08-19 17:29:03 +02:00
|
|
|
|
} else if (strcasecmp(optarg, "get_workspaces") == 0) {
|
2011-07-13 17:53:07 +02:00
|
|
|
|
message_type = I3_IPC_MESSAGE_TYPE_GET_WORKSPACES;
|
2017-08-19 17:29:03 +02:00
|
|
|
|
} else if (strcasecmp(optarg, "get_outputs") == 0) {
|
2011-07-13 17:53:07 +02:00
|
|
|
|
message_type = I3_IPC_MESSAGE_TYPE_GET_OUTPUTS;
|
2017-08-19 17:29:03 +02:00
|
|
|
|
} else if (strcasecmp(optarg, "get_tree") == 0) {
|
2011-07-13 17:53:07 +02:00
|
|
|
|
message_type = I3_IPC_MESSAGE_TYPE_GET_TREE;
|
2017-08-19 17:29:03 +02:00
|
|
|
|
} else if (strcasecmp(optarg, "get_marks") == 0) {
|
2011-08-07 19:03:10 +02:00
|
|
|
|
message_type = I3_IPC_MESSAGE_TYPE_GET_MARKS;
|
2017-08-19 17:29:03 +02:00
|
|
|
|
} else if (strcasecmp(optarg, "get_bar_config") == 0) {
|
2011-10-13 00:23:09 +02:00
|
|
|
|
message_type = I3_IPC_MESSAGE_TYPE_GET_BAR_CONFIG;
|
2017-08-19 17:29:03 +02:00
|
|
|
|
} else if (strcasecmp(optarg, "get_binding_modes") == 0) {
|
2016-06-15 22:25:22 +02:00
|
|
|
|
message_type = I3_IPC_MESSAGE_TYPE_GET_BINDING_MODES;
|
2017-08-19 17:29:03 +02:00
|
|
|
|
} else if (strcasecmp(optarg, "get_version") == 0) {
|
2012-08-05 14:29:19 +02:00
|
|
|
|
message_type = I3_IPC_MESSAGE_TYPE_GET_VERSION;
|
2017-08-19 17:29:03 +02:00
|
|
|
|
} else if (strcasecmp(optarg, "get_config") == 0) {
|
|
|
|
|
message_type = I3_IPC_MESSAGE_TYPE_GET_CONFIG;
|
|
|
|
|
} else {
|
2011-07-13 17:53:07 +02:00
|
|
|
|
printf("Unknown message type\n");
|
2017-08-19 17:29:03 +02:00
|
|
|
|
printf("Known types: command, get_workspaces, get_outputs, get_tree, get_marks, get_bar_config, get_binding_modes, get_version, get_config\n");
|
2011-07-13 17:53:07 +02:00
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
}
|
|
|
|
|
} else if (o == 'q') {
|
|
|
|
|
quiet = true;
|
|
|
|
|
} else if (o == 'v') {
|
|
|
|
|
printf("i3-msg " I3_VERSION "\n");
|
|
|
|
|
return 0;
|
|
|
|
|
} else if (o == 'h') {
|
|
|
|
|
printf("i3-msg " I3_VERSION "\n");
|
|
|
|
|
printf("i3-msg [-s <socket>] [-t <type>] <message>\n");
|
|
|
|
|
return 0;
|
2017-06-22 16:53:08 +02:00
|
|
|
|
} else if (o == '?') {
|
|
|
|
|
exit(EXIT_FAILURE);
|
2009-07-28 21:26:36 +02:00
|
|
|
|
}
|
2011-07-13 17:53:07 +02:00
|
|
|
|
}
|
2009-07-28 21:26:36 +02:00
|
|
|
|
|
2011-07-13 17:53:07 +02:00
|
|
|
|
if (socket_path == NULL)
|
2013-11-22 15:48:45 +01:00
|
|
|
|
socket_path = root_atom_contents("I3_SOCKET_PATH", NULL, 0);
|
2011-03-19 21:23:55 +01:00
|
|
|
|
|
2011-07-13 17:53:07 +02:00
|
|
|
|
/* Fall back to the default socket path */
|
|
|
|
|
if (socket_path == NULL)
|
2011-10-02 19:11:01 +02:00
|
|
|
|
socket_path = sstrdup("/tmp/i3-ipc.sock");
|
2011-03-19 21:23:55 +01:00
|
|
|
|
|
2011-07-13 18:01:24 +02:00
|
|
|
|
/* Use all arguments, separated by whitespace, as payload.
|
|
|
|
|
* This way, you don’t have to do i3-msg 'mark foo', you can use
|
|
|
|
|
* i3-msg mark foo */
|
|
|
|
|
while (optind < argc) {
|
|
|
|
|
if (!payload) {
|
2011-10-02 19:11:01 +02:00
|
|
|
|
payload = sstrdup(argv[optind]);
|
2011-07-13 18:01:24 +02:00
|
|
|
|
} else {
|
|
|
|
|
char *both;
|
2015-08-03 11:50:50 +02:00
|
|
|
|
sasprintf(&both, "%s %s", payload, argv[optind]);
|
2011-07-13 18:01:24 +02:00
|
|
|
|
free(payload);
|
|
|
|
|
payload = both;
|
|
|
|
|
}
|
|
|
|
|
optind++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!payload)
|
2016-11-03 08:18:18 +01:00
|
|
|
|
payload = sstrdup("");
|
2009-07-28 21:26:36 +02:00
|
|
|
|
|
2011-07-13 17:53:07 +02:00
|
|
|
|
int sockfd = socket(AF_LOCAL, SOCK_STREAM, 0);
|
|
|
|
|
if (sockfd == -1)
|
|
|
|
|
err(EXIT_FAILURE, "Could not create socket");
|
2009-07-28 21:29:23 +02:00
|
|
|
|
|
2011-07-13 17:53:07 +02:00
|
|
|
|
struct sockaddr_un addr;
|
|
|
|
|
memset(&addr, 0, sizeof(struct sockaddr_un));
|
|
|
|
|
addr.sun_family = AF_LOCAL;
|
2011-07-23 22:22:36 +02:00
|
|
|
|
strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path) - 1);
|
2014-06-15 19:07:02 +02:00
|
|
|
|
if (connect(sockfd, (const struct sockaddr *)&addr, sizeof(struct sockaddr_un)) < 0)
|
2013-01-23 08:11:27 +01:00
|
|
|
|
err(EXIT_FAILURE, "Could not connect to i3 on socket \"%s\"", socket_path);
|
2009-07-28 21:26:36 +02:00
|
|
|
|
|
2014-06-15 19:07:02 +02:00
|
|
|
|
if (ipc_send_message(sockfd, strlen(payload), message_type, (uint8_t *)payload) == -1)
|
2011-10-02 19:33:10 +02:00
|
|
|
|
err(EXIT_FAILURE, "IPC: write()");
|
2016-11-03 08:18:18 +01:00
|
|
|
|
free(payload);
|
2010-03-12 15:30:09 +01:00
|
|
|
|
|
2011-07-13 17:53:07 +02:00
|
|
|
|
if (quiet)
|
|
|
|
|
return 0;
|
2010-03-12 15:30:09 +01:00
|
|
|
|
|
2011-07-13 17:53:07 +02:00
|
|
|
|
uint32_t reply_length;
|
2013-01-23 18:50:21 +01:00
|
|
|
|
uint32_t reply_type;
|
2011-07-13 17:53:07 +02:00
|
|
|
|
uint8_t *reply;
|
2011-10-02 19:33:10 +02:00
|
|
|
|
int ret;
|
2013-01-23 18:50:21 +01:00
|
|
|
|
if ((ret = ipc_recv_message(sockfd, &reply_type, &reply_length, &reply)) != 0) {
|
2011-10-02 19:33:10 +02:00
|
|
|
|
if (ret == -1)
|
|
|
|
|
err(EXIT_FAILURE, "IPC: read()");
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
2013-01-23 18:50:21 +01:00
|
|
|
|
if (reply_type != message_type)
|
|
|
|
|
errx(EXIT_FAILURE, "IPC: Received reply of type %d but expected %d", reply_type, message_type);
|
2013-01-26 17:56:43 +01:00
|
|
|
|
/* For the reply of commands, have a look if that command was successful.
|
|
|
|
|
* If not, nicely format the error message. */
|
2017-08-19 17:29:03 +02:00
|
|
|
|
if (reply_type == I3_IPC_REPLY_TYPE_COMMAND) {
|
2016-11-06 17:14:37 +01:00
|
|
|
|
yajl_handle handle = yajl_alloc(&reply_callbacks, NULL, NULL);
|
2014-06-15 19:07:02 +02:00
|
|
|
|
yajl_status state = yajl_parse(handle, (const unsigned char *)reply, reply_length);
|
2016-11-06 17:14:37 +01:00
|
|
|
|
yajl_free(handle);
|
|
|
|
|
|
2013-01-26 17:56:43 +01:00
|
|
|
|
switch (state) {
|
|
|
|
|
case yajl_status_ok:
|
|
|
|
|
break;
|
|
|
|
|
case yajl_status_client_canceled:
|
|
|
|
|
case yajl_status_error:
|
|
|
|
|
errx(EXIT_FAILURE, "IPC: Could not parse JSON reply.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* NB: We still fall-through and print the reply, because even if one
|
|
|
|
|
* command failed, that doesn’t mean that all commands failed. */
|
2017-08-19 17:29:03 +02:00
|
|
|
|
} else if (reply_type == I3_IPC_REPLY_TYPE_CONFIG) {
|
|
|
|
|
yajl_handle handle = yajl_alloc(&config_callbacks, NULL, NULL);
|
|
|
|
|
yajl_status state = yajl_parse(handle, (const unsigned char *)reply, reply_length);
|
|
|
|
|
yajl_free(handle);
|
|
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
|
case yajl_status_ok:
|
|
|
|
|
break;
|
|
|
|
|
case yajl_status_client_canceled:
|
|
|
|
|
case yajl_status_error:
|
|
|
|
|
errx(EXIT_FAILURE, "IPC: Could not parse JSON reply.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
goto exit;
|
2013-01-26 17:56:43 +01:00
|
|
|
|
}
|
2011-09-05 22:55:31 +02:00
|
|
|
|
printf("%.*s\n", reply_length, reply);
|
2017-08-19 17:29:03 +02:00
|
|
|
|
|
|
|
|
|
exit:
|
2011-07-13 17:53:07 +02:00
|
|
|
|
free(reply);
|
2009-07-28 21:26:36 +02:00
|
|
|
|
|
2011-07-13 17:53:07 +02:00
|
|
|
|
close(sockfd);
|
2009-07-28 21:26:36 +02:00
|
|
|
|
|
2011-07-13 17:53:07 +02:00
|
|
|
|
return 0;
|
2009-07-28 21:26:36 +02:00
|
|
|
|
}
|