gri3-wm/i3bar/src/ipc.c

305 lines
7.8 KiB
C
Raw Normal View History

2010-08-07 18:05:16 +02:00
/*
2011-10-09 15:28:20 +02:00
* vim:ts=4:sw=4:expandtab
*
2010-08-07 18:05:16 +02:00
* i3bar - an xcb-based status- and ws-bar for i3
* © 2010-2011 Axel Wagner and contributors (see also: LICENSE)
2010-08-07 18:05:16 +02:00
*
* ipc.c: Communicating with i3
2010-08-07 18:05:16 +02:00
*
*/
2010-07-23 04:43:43 +02:00
#include <stdlib.h>
2010-07-22 01:15:18 +02:00
#include <stdio.h>
2010-07-23 04:43:43 +02:00
#include <unistd.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>
2010-07-22 01:15:18 +02:00
#include <sys/socket.h>
#include <sys/un.h>
#include <i3/ipc.h>
#include <ev.h>
2010-07-22 01:15:18 +02:00
#include "common.h"
2011-04-28 19:54:31 +02:00
ev_io *i3_connection;
2010-12-26 19:29:57 +01:00
const char *sock_path;
2010-07-22 01:15:18 +02:00
2010-07-23 04:43:43 +02:00
typedef void(*handler_t)(char*);
2010-07-22 01:15:18 +02:00
2010-08-07 02:10:05 +02:00
/*
* Called, when we get a reply to a command from i3.
* Since i3 does not give us much feedback on commands, we do not much
*
*/
2010-07-23 04:43:43 +02:00
void got_command_reply(char *reply) {
2010-09-17 05:26:31 +02:00
/* TODO: Error handling for command-replies */
2010-07-22 01:15:18 +02:00
}
2010-08-07 02:10:05 +02:00
/*
* Called, when we get a reply with workspaces-data
*
*/
2010-07-23 04:43:43 +02:00
void got_workspace_reply(char *reply) {
DLOG("Got Workspace-Data!\n");
2010-08-03 21:20:11 +02:00
parse_workspaces_json(reply);
2010-08-04 03:34:18 +02:00
draw_bars();
2010-07-22 01:15:18 +02:00
}
2010-08-07 02:10:05 +02:00
/*
* Called, when we get a reply for a subscription.
* Since i3 does not give us much feedback on commands, we do not much
*
*/
2010-07-23 04:43:43 +02:00
void got_subscribe_reply(char *reply) {
DLOG("Got Subscribe Reply: %s\n", reply);
2010-09-17 05:26:31 +02:00
/* TODO: Error handling for subscribe-commands */
2010-07-23 04:43:43 +02:00
}
2010-07-22 01:15:18 +02:00
2010-08-07 02:10:05 +02:00
/*
* Called, when we get a reply with outputs-data
*
*/
2010-07-23 04:43:43 +02:00
void got_output_reply(char *reply) {
DLOG("Parsing Outputs-JSON...\n");
2010-08-03 21:20:11 +02:00
parse_outputs_json(reply);
DLOG("Reconfiguring Windows...\n");
realloc_sl_buffer();
2010-08-06 03:32:05 +02:00
reconfig_windows();
i3_output *o_walk;
SLIST_FOREACH(o_walk, outputs, slist) {
kick_tray_clients(o_walk);
}
draw_bars();
2010-07-23 04:43:43 +02:00
}
2010-07-22 01:15:18 +02:00
/*
* Called when we get the configuration for our bar instance
*
*/
void got_bar_config(char *reply) {
DLOG("Received bar config \"%s\"\n", reply);
/* We initiate the main-function by requesting infos about the outputs and
* workspaces. Everything else (creating the bars, showing the right workspace-
* buttons and more) is taken care of by the event-drivenness of the code */
i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_OUTPUTS, NULL);
parse_config_json(reply);
/* Now we can actually use 'config', so let's subscribe to the appropriate
* events and request the workspaces if necessary. */
subscribe_events();
if (!config.disable_ws)
i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_WORKSPACES, NULL);
/* Initialize the rest of XCB */
init_xcb_late(config.fontname);
/* Resolve color strings to colorpixels and save them, then free the strings. */
init_colors(&(config.colors));
free_colors(&(config.colors));
/* The name of this function is actually misleading. Even if no command is
* specified, this function initiates the watchers to listen on stdin and
* react accordingly */
start_child(config.command);
FREE(config.command);
}
2010-08-07 02:10:05 +02:00
/* Data-structure to easily call the reply-handlers later */
2010-07-23 04:43:43 +02:00
handler_t reply_handlers[] = {
2010-08-03 21:20:11 +02:00
&got_command_reply,
&got_workspace_reply,
&got_subscribe_reply,
&got_output_reply,
NULL,
NULL,
&got_bar_config,
2010-07-23 04:43:43 +02:00
};
2010-07-22 01:15:18 +02:00
2010-08-07 02:10:05 +02:00
/*
* Called, when a workspace-event arrives (i.e. the user changed the workspace)
*
*/
2010-07-23 04:43:43 +02:00
void got_workspace_event(char *event) {
DLOG("Got Workspace Event!\n");
2010-08-03 21:20:11 +02:00
i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_WORKSPACES, NULL);
2010-07-22 01:15:18 +02:00
}
2010-08-07 02:10:05 +02:00
/*
* Called, when an output-event arrives (i.e. the screen-configuration changed)
*
*/
2010-07-23 04:43:43 +02:00
void got_output_event(char *event) {
DLOG("Got Output Event!\n");
2010-08-03 21:20:11 +02:00
i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_OUTPUTS, NULL);
if (!config.disable_ws) {
i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_WORKSPACES, NULL);
}
2010-07-23 04:43:43 +02:00
}
2010-07-22 01:15:18 +02:00
2010-08-07 02:10:05 +02:00
/* Data-structure to easily call the reply-handlers later */
2010-07-23 04:43:43 +02:00
handler_t event_handlers[] = {
2010-08-03 21:20:11 +02:00
&got_workspace_event,
&got_output_event
2010-07-23 04:43:43 +02:00
};
2010-07-22 01:15:18 +02:00
2010-08-07 02:10:05 +02:00
/*
* Called, when we get a message from i3
*
*/
2010-07-23 04:43:43 +02:00
void got_data(struct ev_loop *loop, ev_io *watcher, int events) {
DLOG("Got data!\n");
2010-08-03 21:20:11 +02:00
int fd = watcher->fd;
2010-08-07 02:10:05 +02:00
2011-03-20 19:52:20 +01:00
/* First we only read the header, because we know its length */
2010-08-03 21:20:11 +02:00
uint32_t header_len = strlen(I3_IPC_MAGIC) + sizeof(uint32_t)*2;
2011-10-21 20:30:46 +02:00
char *header = smalloc(header_len);
2010-08-03 21:20:11 +02:00
2010-09-17 05:26:31 +02:00
/* We first parse the fixed-length IPC-header, to know, how much data
* we have to expect */
2010-08-03 21:20:11 +02:00
uint32_t rec = 0;
while (rec < header_len) {
int n = read(fd, header + rec, header_len - rec);
if (n == -1) {
ELOG("read() failed: %s\n", strerror(errno));
2010-08-03 21:20:11 +02:00
exit(EXIT_FAILURE);
}
if (n == 0) {
/* EOF received. Since i3 will restart i3bar instances as appropriate,
* we exit here. */
DLOG("EOF received, exiting...\n");
clean_xcb();
exit(EXIT_SUCCESS);
2010-08-03 21:20:11 +02:00
}
rec += n;
}
if (strncmp(header, I3_IPC_MAGIC, strlen(I3_IPC_MAGIC))) {
ELOG("Wrong magic code: %.*s\n Expected: %s\n",
(int) strlen(I3_IPC_MAGIC),
header,
I3_IPC_MAGIC);
2010-08-03 21:20:11 +02:00
exit(EXIT_FAILURE);
}
char *walk = header + strlen(I3_IPC_MAGIC);
uint32_t size;
memcpy(&size, (uint32_t*)walk, sizeof(uint32_t));
2010-08-03 21:20:11 +02:00
walk += sizeof(uint32_t);
uint32_t type;
memcpy(&type, (uint32_t*)walk, sizeof(uint32_t));
2010-09-17 05:26:31 +02:00
/* Now that we know, what to expect, we can start read()ing the rest
* of the message */
2011-10-21 20:30:46 +02:00
char *buffer = smalloc(size + 1);
2010-08-03 21:20:11 +02:00
rec = 0;
while (rec < size) {
int n = read(fd, buffer + rec, size - rec);
if (n == -1) {
ELOG("read() failed: %s\n", strerror(errno));
2010-08-03 21:20:11 +02:00
exit(EXIT_FAILURE);
}
if (n == 0) {
ELOG("Nothing to read!\n");
2010-08-03 21:20:11 +02:00
exit(EXIT_FAILURE);
}
rec += n;
}
buffer[size] = '\0';
2010-08-07 02:10:05 +02:00
/* And call the callback (indexed by the type) */
2010-08-03 21:20:11 +02:00
if (type & (1 << 31)) {
type ^= 1 << 31;
event_handlers[type](buffer);
} else {
if (reply_handlers[type])
reply_handlers[type](buffer);
2010-08-03 21:20:11 +02:00
}
2010-08-04 04:07:16 +02:00
FREE(header);
2010-08-03 21:20:11 +02:00
FREE(buffer);
2010-07-23 04:43:43 +02:00
}
2010-07-22 01:15:18 +02:00
2010-08-07 02:10:05 +02:00
/*
* Sends a Message to i3.
* type must be a valid I3_IPC_MESSAGE_TYPE (see i3/ipc.h for further information)
*
*/
2010-08-03 21:20:11 +02:00
int i3_send_msg(uint32_t type, const char *payload) {
uint32_t len = 0;
if (payload != NULL) {
len = strlen(payload);
}
2010-09-17 05:26:31 +02:00
/* We are a wellbehaved client and send a proper header first */
2010-08-03 21:20:11 +02:00
uint32_t to_write = strlen (I3_IPC_MAGIC) + sizeof(uint32_t)*2 + len;
2010-09-17 05:26:31 +02:00
/* TODO: I'm not entirely sure if this buffer really has to contain more
* than the pure header (why not just write() the payload from *payload?),
* but we leave it for now */
2011-10-21 20:30:46 +02:00
char *buffer = smalloc(to_write);
2010-08-03 21:20:11 +02:00
char *walk = buffer;
strncpy(buffer, I3_IPC_MAGIC, strlen(I3_IPC_MAGIC));
walk += strlen(I3_IPC_MAGIC);
memcpy(walk, &len, sizeof(uint32_t));
walk += sizeof(uint32_t);
memcpy(walk, &type, sizeof(uint32_t));
walk += sizeof(uint32_t);
if (payload != NULL)
strncpy(walk, payload, len);
2010-08-03 21:20:11 +02:00
uint32_t written = 0;
while (to_write > 0) {
2011-04-28 19:54:31 +02:00
int n = write(i3_connection->fd, buffer + written, to_write);
2010-08-03 21:20:11 +02:00
if (n == -1) {
ELOG("write() failed: %s\n", strerror(errno));
2010-08-03 21:20:11 +02:00
exit(EXIT_FAILURE);
}
to_write -= n;
written += n;
}
FREE(buffer);
return 1;
2010-07-23 04:43:43 +02:00
}
2010-07-22 01:15:18 +02:00
2010-08-07 02:10:05 +02:00
/*
* Initiate a connection to i3.
* socket-path must be a valid path to the ipc_socket of i3
*
*/
2010-07-23 04:43:43 +02:00
int init_connection(const char *socket_path) {
2010-12-26 19:29:57 +01:00
sock_path = socket_path;
int sockfd = ipc_connect(socket_path);
2011-10-21 20:30:46 +02:00
i3_connection = smalloc(sizeof(ev_io));
2011-04-28 19:54:31 +02:00
ev_io_init(i3_connection, &got_data, sockfd, EV_READ);
ev_io_start(main_loop, i3_connection);
2010-08-03 21:20:11 +02:00
return 1;
2010-07-23 04:43:43 +02:00
}
2010-07-22 01:15:18 +02:00
2010-12-26 19:29:57 +01:00
/*
* Destroy the connection to i3.
*/
void destroy_connection() {
2011-04-28 19:54:31 +02:00
close(i3_connection->fd);
ev_io_stop(main_loop, i3_connection);
2010-12-26 19:29:57 +01:00
}
2010-08-07 02:10:05 +02:00
/*
* Subscribe to all the i3-events, we need
*
*/
2010-07-23 04:43:43 +02:00
void subscribe_events() {
if (config.disable_ws) {
i3_send_msg(I3_IPC_MESSAGE_TYPE_SUBSCRIBE, "[ \"output\" ]");
} else {
i3_send_msg(I3_IPC_MESSAGE_TYPE_SUBSCRIBE, "[ \"workspace\", \"output\" ]");
}
2010-07-22 01:15:18 +02:00
}