aboutsummaryrefslogtreecommitdiff
path: root/i3-msg
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2013-01-26 17:56:43 +0100
committerMichael Stapelberg <michael@stapelberg.de>2013-01-26 17:56:43 +0100
commitc300d216ec9fe7948d9f487adf99add0a71ee030 (patch)
tree4b082bd7357f45f5aa2d3cd7c33b0d29c7f8bf6b /i3-msg
parent62b0df06408029f86fdfe8d27a98f113943e7cc6 (diff)
downloadi3-c300d216ec9fe7948d9f487adf99add0a71ee030.tar.gz
i3-c300d216ec9fe7948d9f487adf99add0a71ee030.zip
i3-msg: parse command replies and display errors nicely if there were errors
fixes #737
Diffstat (limited to 'i3-msg')
-rw-r--r--i3-msg/i3-msg.mk2
-rw-r--r--i3-msg/main.c102
2 files changed, 103 insertions, 1 deletions
diff --git a/i3-msg/i3-msg.mk b/i3-msg/i3-msg.mk
index fef9581d..b1ba7b4d 100644
--- a/i3-msg/i3-msg.mk
+++ b/i3-msg/i3-msg.mk
@@ -5,7 +5,7 @@ CLEAN_TARGETS += clean-i3-msg
i3_msg_SOURCES := $(wildcard i3-msg/*.c)
i3_msg_HEADERS := $(wildcard i3-msg/*.h)
i3_msg_CFLAGS = $(XCB_CFLAGS) $(PANGO_CFLAGS)
-i3_msg_LIBS = $(XCB_LIBS)
+i3_msg_LIBS = $(XCB_LIBS) $(YAJL_LIBS)
i3_msg_OBJECTS := $(i3_msg_SOURCES:.c=.o)
diff --git a/i3-msg/main.c b/i3-msg/main.c
index 3259043c..a1428fb8 100644
--- a/i3-msg/main.c
+++ b/i3-msg/main.c
@@ -28,6 +28,9 @@
#include <getopt.h>
#include <limits.h>
+#include <yajl/yajl_parse.h>
+#include <yajl/yajl_version.h>
+
#include <xcb/xcb.h>
#include <xcb/xcb_aux.h>
@@ -56,6 +59,79 @@ void errorlog(char *fmt, ...) {
va_end(args);
}
+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;
+}
+
+#if YAJL_MAJOR >= 2
+static int reply_string_cb(void *params, const unsigned char *val, size_t len) {
+#else
+static int reply_string_cb(void *params, const unsigned char *val, unsigned int len) {
+#endif
+ char *str = scalloc(len + 1);
+ strncpy(str, (const char*)val, len);
+ 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;
+ else free(str);
+ 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;
+}
+
+
+#if YAJL_MAJOR >= 2
+static int reply_map_key_cb(void *params, const unsigned char *keyVal, size_t keyLen) {
+#else
+static int reply_map_key_cb(void *params, const unsigned char *keyVal, unsigned keyLen) {
+#endif
+ free(last_key);
+ last_key = scalloc(keyLen + 1);
+ strncpy(last_key, (const char*)keyVal, keyLen);
+ return 1;
+}
+
+yajl_callbacks reply_callbacks = {
+ NULL,
+ &reply_boolean_cb,
+ NULL,
+ NULL,
+ NULL,
+ &reply_string_cb,
+ &reply_start_map_cb,
+ &reply_map_key_cb,
+ &reply_end_map_cb,
+ NULL,
+ NULL
+};
+
int main(int argc, char *argv[]) {
socket_path = getenv("I3SOCK");
int o, option_index = 0;
@@ -165,6 +241,32 @@ int main(int argc, char *argv[]) {
}
if (reply_type != message_type)
errx(EXIT_FAILURE, "IPC: Received reply of type %d but expected %d", reply_type, message_type);
+ /* For the reply of commands, have a look if that command was successful.
+ * If not, nicely format the error message. */
+ if (reply_type == I3_IPC_MESSAGE_TYPE_COMMAND) {
+ yajl_handle handle;
+#if YAJL_MAJOR < 2
+ yajl_parser_config parse_conf = { 0, 0 };
+
+ handle = yajl_alloc(&reply_callbacks, &parse_conf, NULL, NULL);
+#else
+ handle = yajl_alloc(&reply_callbacks, NULL, NULL);
+#endif
+ yajl_status state = yajl_parse(handle, (const unsigned char*)reply, reply_length);
+ switch (state) {
+ case yajl_status_ok:
+ break;
+ case yajl_status_client_canceled:
+#if YAJL_MAJOR < 2
+ case yajl_status_insufficient_data:
+#endif
+ 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. */
+ }
printf("%.*s\n", reply_length, reply);
free(reply);