2012-08-12 12:18:43 +02:00
|
|
|
|
#undef I3__FILE__
|
|
|
|
|
#define I3__FILE__ "main.c"
|
2010-03-27 15:25:51 +01:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
2011-10-23 00:40:02 +02:00
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2013-03-17 01:01:04 +01:00
|
|
|
|
* © 2009-2013 Michael Stapelberg and contributors (see also: LICENSE)
|
2011-10-23 00:40:02 +02:00
|
|
|
|
*
|
|
|
|
|
* main.c: Initialization, main loop
|
|
|
|
|
*
|
2010-03-27 15:25:51 +01:00
|
|
|
|
*/
|
|
|
|
|
#include <ev.h>
|
2010-11-27 00:26:51 +01:00
|
|
|
|
#include <fcntl.h>
|
2011-10-02 20:20:43 +02:00
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#include <sys/un.h>
|
2011-11-08 23:49:25 +01:00
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
#include <sys/resource.h>
|
2011-12-10 11:51:55 +01:00
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
#include <sys/stat.h>
|
2010-03-27 15:25:51 +01:00
|
|
|
|
#include "all.h"
|
2013-06-05 14:59:05 +02:00
|
|
|
|
#include "shmlog.h"
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2011-08-10 15:55:27 +02:00
|
|
|
|
#include "sd-daemon.h"
|
|
|
|
|
|
2011-11-08 23:49:25 +01:00
|
|
|
|
/* The original value of RLIMIT_CORE when i3 was started. We need to restore
|
|
|
|
|
* this before starting any other process, since we set RLIMIT_CORE to
|
|
|
|
|
* RLIM_INFINITY for i3 debugging versions. */
|
|
|
|
|
struct rlimit original_rlimit_core;
|
|
|
|
|
|
2012-01-22 00:03:09 +01:00
|
|
|
|
/** The number of file descriptors passed via socket activation. */
|
|
|
|
|
int listen_fds;
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
static int xkb_event_base;
|
|
|
|
|
|
|
|
|
|
int xkb_current_group;
|
|
|
|
|
|
|
|
|
|
extern Con *focused;
|
|
|
|
|
|
|
|
|
|
char **start_argv;
|
|
|
|
|
|
|
|
|
|
xcb_connection_t *conn;
|
2011-10-09 19:19:31 +02:00
|
|
|
|
/* The screen (0 when you are using DISPLAY=:0) of the connection 'conn' */
|
|
|
|
|
int conn_screen;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2011-10-09 19:21:59 +02:00
|
|
|
|
/* Display handle for libstartup-notification */
|
|
|
|
|
SnDisplay *sndisplay;
|
|
|
|
|
|
|
|
|
|
/* The last timestamp we got from X11 (timestamps are included in some events
|
|
|
|
|
* and are used for some things, like determining a unique ID in startup
|
|
|
|
|
* notification). */
|
|
|
|
|
xcb_timestamp_t last_timestamp = XCB_CURRENT_TIME;
|
|
|
|
|
|
2011-07-23 22:29:01 +02:00
|
|
|
|
xcb_screen_t *root_screen;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
xcb_window_t root;
|
2012-01-28 17:09:02 +01:00
|
|
|
|
|
|
|
|
|
/* Color depth, visual id and colormap to use when creating windows and
|
|
|
|
|
* pixmaps. Will use 32 bit depth and an appropriate visual, if available,
|
|
|
|
|
* otherwise the root window’s default (usually 24 bit TrueColor). */
|
2010-03-27 15:25:51 +01:00
|
|
|
|
uint8_t root_depth;
|
2012-01-28 17:09:02 +01:00
|
|
|
|
xcb_visualid_t visual_id;
|
|
|
|
|
xcb_colormap_t colormap;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
struct ev_loop *main_loop;
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
xcb_key_symbols_t *keysyms;
|
|
|
|
|
|
2010-11-27 00:26:51 +01:00
|
|
|
|
/* Those are our connections to X11 for use with libXcursor and XKB */
|
|
|
|
|
Display *xlibdpy, *xkbdpy;
|
|
|
|
|
|
2013-06-05 14:59:05 +02:00
|
|
|
|
/* Default shmlog size if not set by user. */
|
|
|
|
|
const int default_shmlog_size = 25 * 1024 * 1024;
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
/* The list of key bindings */
|
|
|
|
|
struct bindings_head *bindings;
|
|
|
|
|
|
|
|
|
|
/* The list of exec-lines */
|
|
|
|
|
struct autostarts_head autostarts = TAILQ_HEAD_INITIALIZER(autostarts);
|
|
|
|
|
|
2011-07-12 12:24:01 +02:00
|
|
|
|
/* The list of exec_always lines */
|
|
|
|
|
struct autostarts_always_head autostarts_always = TAILQ_HEAD_INITIALIZER(autostarts_always);
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
/* The list of assignments */
|
|
|
|
|
struct assignments_head assignments = TAILQ_HEAD_INITIALIZER(assignments);
|
|
|
|
|
|
2011-05-14 22:13:29 +02:00
|
|
|
|
/* The list of workspace assignments (which workspace should end up on which
|
|
|
|
|
* output) */
|
|
|
|
|
struct ws_assignments_head ws_assignments = TAILQ_HEAD_INITIALIZER(ws_assignments);
|
|
|
|
|
|
2010-11-27 00:26:51 +01:00
|
|
|
|
/* We hope that those are supported and set them to true */
|
|
|
|
|
bool xcursor_supported = true;
|
|
|
|
|
bool xkb_supported = true;
|
|
|
|
|
|
2011-10-20 23:25:59 +02:00
|
|
|
|
/* This will be set to true when -C is used so that functions can behave
|
|
|
|
|
* slightly differently. We don’t want i3-nagbar to be started when validating
|
|
|
|
|
* the config, for example. */
|
|
|
|
|
bool only_check_config = false;
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
/*
|
|
|
|
|
* This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
|
|
|
|
|
* See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
|
|
|
|
|
/* empty, because xcb_prepare_cb and xcb_check_cb are used */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Flush before blocking (and waiting for new events)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
|
|
|
|
|
xcb_flush(conn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Instead of polling the X connection socket we leave this to
|
|
|
|
|
* xcb_poll_for_event() which knows better than we can ever know.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
|
|
|
|
|
xcb_generic_event_t *event;
|
|
|
|
|
|
|
|
|
|
while ((event = xcb_poll_for_event(conn)) != NULL) {
|
2011-03-18 14:36:36 +01:00
|
|
|
|
if (event->response_type == 0) {
|
2011-07-10 23:44:13 +02:00
|
|
|
|
if (event_is_ignored(event->sequence, 0))
|
|
|
|
|
DLOG("Expected X11 Error received for sequence %x\n", event->sequence);
|
2011-07-29 13:11:02 +02:00
|
|
|
|
else {
|
|
|
|
|
xcb_generic_error_t *error = (xcb_generic_error_t*)event;
|
2012-08-05 20:56:33 +02:00
|
|
|
|
DLOG("X11 Error received (probably harmless)! sequence 0x%x, error_code = %d\n",
|
2011-07-29 13:11:02 +02:00
|
|
|
|
error->sequence, error->error_code);
|
|
|
|
|
}
|
2011-07-31 19:41:57 +02:00
|
|
|
|
free(event);
|
2011-03-18 14:36:36 +01:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Strip off the highest bit (set if the event is generated) */
|
|
|
|
|
int type = (event->response_type & 0x7F);
|
|
|
|
|
|
|
|
|
|
handle_event(type, event);
|
|
|
|
|
|
|
|
|
|
free(event);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-17 14:27:49 +01:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* When using xmodmap to change the keyboard mapping, this event
|
|
|
|
|
* is only sent via XKB. Therefore, we need this special handler.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void xkb_got_event(EV_P_ struct ev_io *w, int revents) {
|
|
|
|
|
DLOG("Handling XKB event\n");
|
|
|
|
|
XkbEvent ev;
|
|
|
|
|
|
|
|
|
|
/* When using xmodmap, every change (!) gets an own event.
|
|
|
|
|
* Therefore, we just read all events and only handle the
|
|
|
|
|
* mapping_notify once. */
|
|
|
|
|
bool mapping_changed = false;
|
|
|
|
|
while (XPending(xkbdpy)) {
|
|
|
|
|
XNextEvent(xkbdpy, (XEvent*)&ev);
|
|
|
|
|
/* While we should never receive a non-XKB event,
|
|
|
|
|
* better do sanity checking */
|
|
|
|
|
if (ev.type != xkb_event_base)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (ev.any.xkb_type == XkbMapNotify) {
|
|
|
|
|
mapping_changed = true;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ev.any.xkb_type != XkbStateNotify) {
|
|
|
|
|
ELOG("Unknown XKB event received (type %d)\n", ev.any.xkb_type);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* See The XKB Extension: Library Specification, section 14.1 */
|
|
|
|
|
/* We check if the current group (each group contains
|
|
|
|
|
* two levels) has been changed. Mode_switch activates
|
|
|
|
|
* group XkbGroup2Index */
|
|
|
|
|
if (xkb_current_group == ev.state.group)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
xkb_current_group = ev.state.group;
|
|
|
|
|
|
|
|
|
|
if (ev.state.group == XkbGroup2Index) {
|
|
|
|
|
DLOG("Mode_switch enabled\n");
|
|
|
|
|
grab_all_keys(conn, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ev.state.group == XkbGroup1Index) {
|
|
|
|
|
DLOG("Mode_switch disabled\n");
|
|
|
|
|
ungrab_all_keys(conn);
|
|
|
|
|
grab_all_keys(conn, false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!mapping_changed)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
DLOG("Keyboard mapping changed, updating keybindings\n");
|
|
|
|
|
xcb_key_symbols_free(keysyms);
|
|
|
|
|
keysyms = xcb_key_symbols_alloc(conn);
|
|
|
|
|
|
2011-10-23 22:26:15 +02:00
|
|
|
|
xcb_numlock_mask = aio_get_mod_mask_for(XCB_NUM_LOCK, keysyms);
|
2011-01-17 14:27:49 +01:00
|
|
|
|
|
|
|
|
|
ungrab_all_keys(conn);
|
|
|
|
|
DLOG("Re-grabbing...\n");
|
|
|
|
|
translate_keysyms();
|
|
|
|
|
grab_all_keys(conn, (xkb_current_group == XkbGroup2Index));
|
|
|
|
|
DLOG("Done\n");
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-11 22:49:35 +02:00
|
|
|
|
/*
|
|
|
|
|
* Exit handler which destroys the main_loop. Will trigger cleanup handlers.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-03-31 10:53:04 +02:00
|
|
|
|
static void i3_exit(void) {
|
2011-10-15 17:56:32 +02:00
|
|
|
|
/* We need ev >= 4 for the following code. Since it is not *that* important (it
|
|
|
|
|
* only makes sure that there are no i3-nagbar instances left behind) we still
|
|
|
|
|
* support old systems with libev 3. */
|
|
|
|
|
#if EV_VERSION_MAJOR >= 4
|
2011-09-11 22:49:35 +02:00
|
|
|
|
ev_loop_destroy(main_loop);
|
2011-10-15 17:56:32 +02:00
|
|
|
|
#endif
|
2011-12-10 11:51:55 +01:00
|
|
|
|
|
|
|
|
|
if (*shmlogname != '\0') {
|
|
|
|
|
fprintf(stderr, "Closing SHM log \"%s\"\n", shmlogname);
|
|
|
|
|
fflush(stderr);
|
|
|
|
|
shm_unlink(shmlogname);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* (One-shot) Handler for all signals with default action "Term", see signal(7)
|
|
|
|
|
*
|
|
|
|
|
* Unlinks the SHM log and re-raises the signal.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-09-27 12:34:09 +02:00
|
|
|
|
static void handle_signal(int sig, siginfo_t *info, void *data) {
|
2011-12-10 11:51:55 +01:00
|
|
|
|
if (*shmlogname != '\0') {
|
|
|
|
|
shm_unlink(shmlogname);
|
|
|
|
|
}
|
|
|
|
|
raise(sig);
|
2011-09-11 22:49:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
int main(int argc, char *argv[]) {
|
2012-03-21 18:03:49 +01:00
|
|
|
|
/* Keep a symbol pointing to the I3_VERSION string constant so that we have
|
|
|
|
|
* it in gdb backtraces. */
|
2012-05-09 19:12:20 +02:00
|
|
|
|
const char *i3_version __attribute__ ((unused)) = I3_VERSION;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
char *override_configpath = NULL;
|
|
|
|
|
bool autostart = true;
|
2010-12-01 03:14:08 +01:00
|
|
|
|
char *layout_path = NULL;
|
2011-03-14 23:17:52 +01:00
|
|
|
|
bool delete_layout_path = false;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
bool force_xinerama = false;
|
2012-04-09 14:27:33 +02:00
|
|
|
|
char *fake_outputs = NULL;
|
2011-01-28 00:31:26 +01:00
|
|
|
|
bool disable_signalhandler = false;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
static struct option long_options[] = {
|
2010-04-13 16:48:42 +02:00
|
|
|
|
{"no-autostart", no_argument, 0, 'a'},
|
|
|
|
|
{"config", required_argument, 0, 'c'},
|
|
|
|
|
{"version", no_argument, 0, 'v'},
|
2012-08-12 15:10:13 +02:00
|
|
|
|
{"moreversion", no_argument, 0, 'm'},
|
|
|
|
|
{"more-version", no_argument, 0, 'm'},
|
|
|
|
|
{"more_version", no_argument, 0, 'm'},
|
2010-04-13 16:48:42 +02:00
|
|
|
|
{"help", no_argument, 0, 'h'},
|
2010-12-01 03:14:08 +01:00
|
|
|
|
{"layout", required_argument, 0, 'L'},
|
|
|
|
|
{"restart", required_argument, 0, 0},
|
2010-04-13 16:48:42 +02:00
|
|
|
|
{"force-xinerama", no_argument, 0, 0},
|
2011-10-23 20:41:40 +02:00
|
|
|
|
{"force_xinerama", no_argument, 0, 0},
|
2011-01-28 00:31:26 +01:00
|
|
|
|
{"disable-signalhandler", no_argument, 0, 0},
|
2011-12-10 11:51:55 +01:00
|
|
|
|
{"shmlog-size", required_argument, 0, 0},
|
|
|
|
|
{"shmlog_size", required_argument, 0, 0},
|
2011-10-02 17:12:10 +02:00
|
|
|
|
{"get-socketpath", no_argument, 0, 0},
|
2011-10-23 20:41:40 +02:00
|
|
|
|
{"get_socketpath", no_argument, 0, 0},
|
2012-04-09 14:27:33 +02:00
|
|
|
|
{"fake_outputs", required_argument, 0, 0},
|
|
|
|
|
{"fake-outputs", required_argument, 0, 0},
|
2012-10-08 13:26:42 +02:00
|
|
|
|
{"force-old-config-parser-v4.4-only", no_argument, 0, 0},
|
2010-04-13 16:48:42 +02:00
|
|
|
|
{0, 0, 0, 0}
|
2010-03-27 15:25:51 +01:00
|
|
|
|
};
|
|
|
|
|
int option_index = 0, opt;
|
|
|
|
|
|
|
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
|
|
2011-11-08 23:49:25 +01:00
|
|
|
|
/* Get the RLIMIT_CORE limit at startup time to restore this before
|
|
|
|
|
* starting processes. */
|
|
|
|
|
getrlimit(RLIMIT_CORE, &original_rlimit_core);
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
/* Disable output buffering to make redirects in .xsession actually useful for debugging */
|
|
|
|
|
if (!isatty(fileno(stdout)))
|
|
|
|
|
setbuf(stdout, NULL);
|
|
|
|
|
|
2011-10-19 20:57:39 +02:00
|
|
|
|
srand(time(NULL));
|
|
|
|
|
|
2011-12-10 11:51:55 +01:00
|
|
|
|
/* Init logging *before* initializing debug_build to guarantee early
|
|
|
|
|
* (file) logging. */
|
2011-07-10 14:33:19 +02:00
|
|
|
|
init_logging();
|
|
|
|
|
|
2013-06-05 15:08:47 +02:00
|
|
|
|
/* On release builds, disable SHM logging by default. */
|
2013-06-05 14:59:05 +02:00
|
|
|
|
shmlog_size = (is_debug_build() ? default_shmlog_size : 0);
|
2011-12-10 11:51:55 +01:00
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
start_argv = argv;
|
|
|
|
|
|
2012-08-12 15:10:13 +02:00
|
|
|
|
while ((opt = getopt_long(argc, argv, "c:CvmaL:hld:V", long_options, &option_index)) != -1) {
|
2010-03-27 15:25:51 +01:00
|
|
|
|
switch (opt) {
|
|
|
|
|
case 'a':
|
|
|
|
|
LOG("Autostart disabled using -a\n");
|
|
|
|
|
autostart = false;
|
|
|
|
|
break;
|
2010-12-01 03:14:08 +01:00
|
|
|
|
case 'L':
|
2011-01-12 10:12:24 +01:00
|
|
|
|
FREE(layout_path);
|
2010-12-01 03:14:08 +01:00
|
|
|
|
layout_path = sstrdup(optarg);
|
|
|
|
|
delete_layout_path = false;
|
|
|
|
|
break;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
case 'c':
|
2011-01-12 10:12:24 +01:00
|
|
|
|
FREE(override_configpath);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
override_configpath = sstrdup(optarg);
|
|
|
|
|
break;
|
|
|
|
|
case 'C':
|
|
|
|
|
LOG("Checking configuration file only (-C)\n");
|
|
|
|
|
only_check_config = true;
|
|
|
|
|
break;
|
|
|
|
|
case 'v':
|
2013-03-17 01:01:04 +01:00
|
|
|
|
printf("i3 version " I3_VERSION " © 2009-2013 Michael Stapelberg and contributors\n");
|
2010-03-27 15:25:51 +01:00
|
|
|
|
exit(EXIT_SUCCESS);
|
2012-08-12 15:10:13 +02:00
|
|
|
|
break;
|
|
|
|
|
case 'm':
|
2013-03-17 01:01:04 +01:00
|
|
|
|
printf("Binary i3 version: " I3_VERSION " © 2009-2013 Michael Stapelberg and contributors\n");
|
2012-08-12 15:10:13 +02:00
|
|
|
|
display_running_version();
|
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
|
break;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
case 'V':
|
|
|
|
|
set_verbosity(true);
|
|
|
|
|
break;
|
|
|
|
|
case 'd':
|
2012-07-22 00:16:52 +02:00
|
|
|
|
LOG("Enabling debug logging\n");
|
|
|
|
|
set_debug_logging(true);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
break;
|
|
|
|
|
case 'l':
|
|
|
|
|
/* DEPRECATED, ignored for the next 3 versions (3.e, 3.f, 3.g) */
|
|
|
|
|
break;
|
|
|
|
|
case 0:
|
2011-10-23 20:41:40 +02:00
|
|
|
|
if (strcmp(long_options[option_index].name, "force-xinerama") == 0 ||
|
|
|
|
|
strcmp(long_options[option_index].name, "force_xinerama") == 0) {
|
2010-03-27 15:25:51 +01:00
|
|
|
|
force_xinerama = true;
|
|
|
|
|
ELOG("Using Xinerama instead of RandR. This option should be "
|
|
|
|
|
"avoided at all cost because it does not refresh the list "
|
|
|
|
|
"of screens, so you cannot configure displays at runtime. "
|
|
|
|
|
"Please check if your driver really does not support RandR "
|
|
|
|
|
"and disable this option as soon as you can.\n");
|
|
|
|
|
break;
|
2011-01-28 00:31:26 +01:00
|
|
|
|
} else if (strcmp(long_options[option_index].name, "disable-signalhandler") == 0) {
|
|
|
|
|
disable_signalhandler = true;
|
|
|
|
|
break;
|
2011-10-23 20:41:40 +02:00
|
|
|
|
} else if (strcmp(long_options[option_index].name, "get-socketpath") == 0 ||
|
|
|
|
|
strcmp(long_options[option_index].name, "get_socketpath") == 0) {
|
2012-01-07 00:40:07 +01:00
|
|
|
|
char *socket_path = root_atom_contents("I3_SOCKET_PATH");
|
2011-10-02 17:12:10 +02:00
|
|
|
|
if (socket_path) {
|
|
|
|
|
printf("%s\n", socket_path);
|
2012-08-11 01:50:37 +02:00
|
|
|
|
exit(EXIT_SUCCESS);
|
2011-10-02 17:12:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-11 01:50:37 +02:00
|
|
|
|
exit(EXIT_FAILURE);
|
2011-12-10 11:51:55 +01:00
|
|
|
|
} else if (strcmp(long_options[option_index].name, "shmlog-size") == 0 ||
|
|
|
|
|
strcmp(long_options[option_index].name, "shmlog_size") == 0) {
|
|
|
|
|
shmlog_size = atoi(optarg);
|
|
|
|
|
/* Re-initialize logging immediately to get as many
|
|
|
|
|
* logmessages as possible into the SHM log. */
|
|
|
|
|
init_logging();
|
|
|
|
|
LOG("Limiting SHM log size to %d bytes\n", shmlog_size);
|
|
|
|
|
break;
|
2010-12-01 03:14:08 +01:00
|
|
|
|
} else if (strcmp(long_options[option_index].name, "restart") == 0) {
|
2011-01-12 10:12:24 +01:00
|
|
|
|
FREE(layout_path);
|
2010-12-01 03:14:08 +01:00
|
|
|
|
layout_path = sstrdup(optarg);
|
|
|
|
|
delete_layout_path = true;
|
|
|
|
|
break;
|
2012-04-09 14:27:33 +02:00
|
|
|
|
} else if (strcmp(long_options[option_index].name, "fake-outputs") == 0 ||
|
|
|
|
|
strcmp(long_options[option_index].name, "fake_outputs") == 0) {
|
|
|
|
|
LOG("Initializing fake outputs: %s\n", optarg);
|
|
|
|
|
fake_outputs = sstrdup(optarg);
|
|
|
|
|
break;
|
2012-10-08 13:26:42 +02:00
|
|
|
|
} else if (strcmp(long_options[option_index].name, "force-old-config-parser-v4.4-only") == 0) {
|
2012-12-24 15:46:57 +01:00
|
|
|
|
ELOG("You are passing --force-old-config-parser-v4.4-only, but that flag was removed by now.\n");
|
2012-10-08 13:26:42 +02:00
|
|
|
|
break;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
}
|
|
|
|
|
/* fall-through */
|
|
|
|
|
default:
|
2012-07-22 00:16:52 +02:00
|
|
|
|
fprintf(stderr, "Usage: %s [-c configfile] [-d all] [-a] [-v] [-V] [-C]\n", argv[0]);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
fprintf(stderr, "\n");
|
2011-10-02 19:55:15 +02:00
|
|
|
|
fprintf(stderr, "\t-a disable autostart ('exec' lines in config)\n");
|
|
|
|
|
fprintf(stderr, "\t-c <file> use the provided configfile instead\n");
|
|
|
|
|
fprintf(stderr, "\t-C validate configuration file and exit\n");
|
2012-07-22 00:16:52 +02:00
|
|
|
|
fprintf(stderr, "\t-d all enable debug output\n");
|
2011-10-02 19:55:15 +02:00
|
|
|
|
fprintf(stderr, "\t-L <file> path to the serialized layout during restarts\n");
|
|
|
|
|
fprintf(stderr, "\t-v display version and exit\n");
|
|
|
|
|
fprintf(stderr, "\t-V enable verbose mode\n");
|
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
fprintf(stderr, "\t--force-xinerama\n"
|
|
|
|
|
"\tUse Xinerama instead of RandR.\n"
|
|
|
|
|
"\tThis option should only be used if you are stuck with the\n"
|
2012-09-19 17:52:56 +02:00
|
|
|
|
"\told nVidia closed source driver (older than 302.17), which does\n"
|
|
|
|
|
"\tnot support RandR.\n");
|
2011-10-02 19:55:15 +02:00
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
fprintf(stderr, "\t--get-socketpath\n"
|
|
|
|
|
"\tRetrieve the i3 IPC socket path from X11, print it, then exit.\n");
|
2011-10-02 20:20:43 +02:00
|
|
|
|
fprintf(stderr, "\n");
|
2011-12-10 11:51:55 +01:00
|
|
|
|
fprintf(stderr, "\t--shmlog-size <limit>\n"
|
|
|
|
|
"\tLimits the size of the i3 SHM log to <limit> bytes. Setting this\n"
|
|
|
|
|
"\tto 0 disables SHM logging entirely.\n"
|
|
|
|
|
"\tThe default is %d bytes.\n", shmlog_size);
|
|
|
|
|
fprintf(stderr, "\n");
|
2011-10-02 20:20:43 +02:00
|
|
|
|
fprintf(stderr, "If you pass plain text arguments, i3 will interpret them as a command\n"
|
|
|
|
|
"to send to a currently running i3 (like i3-msg). This allows you to\n"
|
|
|
|
|
"use nice and logical commands, such as:\n"
|
|
|
|
|
"\n"
|
|
|
|
|
"\ti3 border none\n"
|
|
|
|
|
"\ti3 floating toggle\n"
|
|
|
|
|
"\ti3 kill window\n"
|
|
|
|
|
"\n");
|
2010-03-27 15:25:51 +01:00
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-02 20:20:43 +02:00
|
|
|
|
/* If the user passes more arguments, we act like i3-msg would: Just send
|
|
|
|
|
* the arguments as an IPC message to i3. This allows for nice semantic
|
|
|
|
|
* commands such as 'i3 border none'. */
|
2012-06-25 21:43:41 +02:00
|
|
|
|
if (!only_check_config && optind < argc) {
|
2011-10-02 20:20:43 +02:00
|
|
|
|
/* We enable verbose mode so that the user knows what’s going on.
|
|
|
|
|
* This should make it easier to find mistakes when the user passes
|
|
|
|
|
* arguments by mistake. */
|
|
|
|
|
set_verbosity(true);
|
|
|
|
|
|
|
|
|
|
LOG("Additional arguments passed. Sending them as a command to i3.\n");
|
|
|
|
|
char *payload = NULL;
|
|
|
|
|
while (optind < argc) {
|
|
|
|
|
if (!payload) {
|
|
|
|
|
payload = sstrdup(argv[optind]);
|
|
|
|
|
} else {
|
|
|
|
|
char *both;
|
2011-10-23 14:16:56 +02:00
|
|
|
|
sasprintf(&both, "%s %s", payload, argv[optind]);
|
2011-10-02 20:20:43 +02:00
|
|
|
|
free(payload);
|
|
|
|
|
payload = both;
|
|
|
|
|
}
|
|
|
|
|
optind++;
|
|
|
|
|
}
|
2012-08-05 16:34:38 +02:00
|
|
|
|
DLOG("Command is: %s (%zd bytes)\n", payload, strlen(payload));
|
2012-01-07 00:40:07 +01:00
|
|
|
|
char *socket_path = root_atom_contents("I3_SOCKET_PATH");
|
2011-10-02 20:20:43 +02:00
|
|
|
|
if (!socket_path) {
|
|
|
|
|
ELOG("Could not get i3 IPC socket path\n");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int sockfd = socket(AF_LOCAL, SOCK_STREAM, 0);
|
|
|
|
|
if (sockfd == -1)
|
|
|
|
|
err(EXIT_FAILURE, "Could not create socket");
|
|
|
|
|
|
|
|
|
|
struct sockaddr_un addr;
|
|
|
|
|
memset(&addr, 0, sizeof(struct sockaddr_un));
|
|
|
|
|
addr.sun_family = AF_LOCAL;
|
|
|
|
|
strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path) - 1);
|
|
|
|
|
if (connect(sockfd, (const struct sockaddr*)&addr, sizeof(struct sockaddr_un)) < 0)
|
|
|
|
|
err(EXIT_FAILURE, "Could not connect to i3");
|
|
|
|
|
|
|
|
|
|
if (ipc_send_message(sockfd, strlen(payload), I3_IPC_MESSAGE_TYPE_COMMAND,
|
|
|
|
|
(uint8_t*)payload) == -1)
|
|
|
|
|
err(EXIT_FAILURE, "IPC: write()");
|
|
|
|
|
|
|
|
|
|
uint32_t reply_length;
|
2013-01-23 18:50:21 +01:00
|
|
|
|
uint32_t reply_type;
|
2011-10-02 20:20:43 +02:00
|
|
|
|
uint8_t *reply;
|
|
|
|
|
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 20:20:43 +02:00
|
|
|
|
if (ret == -1)
|
|
|
|
|
err(EXIT_FAILURE, "IPC: read()");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2013-01-23 18:50:21 +01:00
|
|
|
|
if (reply_type != I3_IPC_MESSAGE_TYPE_COMMAND)
|
|
|
|
|
errx(EXIT_FAILURE, "IPC: received reply of type %d but expected %d (COMMAND)", reply_type, I3_IPC_MESSAGE_TYPE_COMMAND);
|
2011-10-02 20:20:43 +02:00
|
|
|
|
printf("%.*s\n", reply_length, reply);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-10 11:51:55 +01:00
|
|
|
|
/* Enable logging to handle the case when the user did not specify --shmlog-size */
|
|
|
|
|
init_logging();
|
|
|
|
|
|
|
|
|
|
/* Try to enable core dumps by default when running a debug build */
|
2012-05-09 19:12:20 +02:00
|
|
|
|
if (is_debug_build()) {
|
2011-11-08 23:49:25 +01:00
|
|
|
|
struct rlimit limit = { RLIM_INFINITY, RLIM_INFINITY };
|
|
|
|
|
setrlimit(RLIMIT_CORE, &limit);
|
|
|
|
|
|
|
|
|
|
/* The following code is helpful, but not required. We thus don’t pay
|
|
|
|
|
* much attention to error handling, non-linux or other edge cases. */
|
|
|
|
|
char cwd[PATH_MAX];
|
|
|
|
|
LOG("CORE DUMPS: You are running a development version of i3, so coredumps were automatically enabled (ulimit -c unlimited).\n");
|
|
|
|
|
if (getcwd(cwd, sizeof(cwd)) != NULL)
|
|
|
|
|
LOG("CORE DUMPS: Your current working directory is \"%s\".\n", cwd);
|
|
|
|
|
int patternfd;
|
|
|
|
|
if ((patternfd = open("/proc/sys/kernel/core_pattern", O_RDONLY)) >= 0) {
|
2011-11-09 23:23:33 +01:00
|
|
|
|
memset(cwd, '\0', sizeof(cwd));
|
2011-11-08 23:49:25 +01:00
|
|
|
|
if (read(patternfd, cwd, sizeof(cwd)) > 0)
|
|
|
|
|
/* a trailing newline is included in cwd */
|
|
|
|
|
LOG("CORE DUMPS: Your core_pattern is: %s", cwd);
|
|
|
|
|
close(patternfd);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 01:57:23 +02:00
|
|
|
|
LOG("i3 " I3_VERSION " starting\n");
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2011-10-09 19:19:31 +02:00
|
|
|
|
conn = xcb_connect(NULL, &conn_screen);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
if (xcb_connection_has_error(conn))
|
|
|
|
|
errx(EXIT_FAILURE, "Cannot open display\n");
|
|
|
|
|
|
2011-10-09 19:21:59 +02:00
|
|
|
|
sndisplay = sn_xcb_display_new(conn, NULL, NULL);
|
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
/* Initialize the libev event loop. This needs to be done before loading
|
|
|
|
|
* the config file because the parser will install an ev_child watcher
|
|
|
|
|
* for the nagbar when config errors are found. */
|
|
|
|
|
main_loop = EV_DEFAULT;
|
|
|
|
|
if (main_loop == NULL)
|
|
|
|
|
die("Could not initialize libev. Bad LIBEV_FLAGS?\n");
|
|
|
|
|
|
2011-10-09 19:19:31 +02:00
|
|
|
|
root_screen = xcb_aux_get_screen(conn, conn_screen);
|
2011-01-28 00:42:55 +01:00
|
|
|
|
root = root_screen->root;
|
2012-01-28 17:09:02 +01:00
|
|
|
|
|
|
|
|
|
/* By default, we use the same depth and visual as the root window, which
|
|
|
|
|
* usually is TrueColor (24 bit depth) and the corresponding visual.
|
|
|
|
|
* However, we also check if a 32 bit depth and visual are available (for
|
|
|
|
|
* transparency) and use it if so. */
|
2011-01-28 00:42:55 +01:00
|
|
|
|
root_depth = root_screen->root_depth;
|
2012-01-28 17:09:02 +01:00
|
|
|
|
visual_id = root_screen->root_visual;
|
|
|
|
|
colormap = root_screen->default_colormap;
|
|
|
|
|
|
|
|
|
|
DLOG("root_depth = %d, visual_id = 0x%08x.\n", root_depth, visual_id);
|
|
|
|
|
|
2011-06-10 18:27:20 +02:00
|
|
|
|
xcb_get_geometry_cookie_t gcookie = xcb_get_geometry(conn, root);
|
2011-08-17 13:37:08 +02:00
|
|
|
|
xcb_query_pointer_cookie_t pointercookie = xcb_query_pointer(conn, root);
|
2011-01-28 00:42:55 +01:00
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
load_configuration(conn, override_configpath, false);
|
|
|
|
|
if (only_check_config) {
|
|
|
|
|
LOG("Done checking configuration file. Exiting.\n");
|
|
|
|
|
exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-19 00:22:32 +02:00
|
|
|
|
if (config.ipc_socket_path == NULL) {
|
|
|
|
|
/* Fall back to a file name in /tmp/ based on the PID */
|
|
|
|
|
if ((config.ipc_socket_path = getenv("I3SOCK")) == NULL)
|
|
|
|
|
config.ipc_socket_path = get_process_filename("ipc-socket");
|
|
|
|
|
else
|
|
|
|
|
config.ipc_socket_path = sstrdup(config.ipc_socket_path);
|
|
|
|
|
}
|
2011-01-11 05:25:04 +01:00
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
xcb_void_cookie_t cookie;
|
2012-12-27 17:04:13 +01:00
|
|
|
|
cookie = xcb_change_window_attributes_checked(conn, root, XCB_CW_EVENT_MASK, (uint32_t[]){ ROOT_EVENT_MASK });
|
2010-03-27 15:25:51 +01:00
|
|
|
|
check_error(conn, cookie, "Another window manager seems to be running");
|
|
|
|
|
|
2011-06-10 18:27:20 +02:00
|
|
|
|
xcb_get_geometry_reply_t *greply = xcb_get_geometry_reply(conn, gcookie, NULL);
|
|
|
|
|
if (greply == NULL) {
|
|
|
|
|
ELOG("Could not get geometry of the root window, exiting\n");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
DLOG("root geometry reply: (%d, %d) %d x %d\n", greply->x, greply->y, greply->width, greply->height);
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
/* Place requests for the atoms we need as soon as possible */
|
2011-03-18 14:36:36 +01:00
|
|
|
|
#define xmacro(atom) \
|
|
|
|
|
xcb_intern_atom_cookie_t atom ## _cookie = xcb_intern_atom(conn, 0, strlen(#atom), #atom);
|
|
|
|
|
#include "atoms.xmacro"
|
|
|
|
|
#undef xmacro
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2010-11-27 00:26:51 +01:00
|
|
|
|
/* Initialize the Xlib connection */
|
|
|
|
|
xlibdpy = xkbdpy = XOpenDisplay(NULL);
|
|
|
|
|
|
|
|
|
|
/* Try to load the X cursors and initialize the XKB extension */
|
|
|
|
|
if (xlibdpy == NULL) {
|
|
|
|
|
ELOG("ERROR: XOpenDisplay() failed, disabling libXcursor/XKB support\n");
|
|
|
|
|
xcursor_supported = false;
|
|
|
|
|
xkb_supported = false;
|
|
|
|
|
} else if (fcntl(ConnectionNumber(xlibdpy), F_SETFD, FD_CLOEXEC) == -1) {
|
|
|
|
|
ELOG("Could not set FD_CLOEXEC on xkbdpy\n");
|
|
|
|
|
return 1;
|
|
|
|
|
} else {
|
|
|
|
|
xcursor_load_cursors();
|
|
|
|
|
/*init_xkb();*/
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-29 01:36:14 +02:00
|
|
|
|
/* Set a cursor for the root window (otherwise the root window will show no
|
|
|
|
|
cursor until the first client is launched). */
|
2011-10-10 16:53:57 +02:00
|
|
|
|
if (xcursor_supported)
|
|
|
|
|
xcursor_set_root_cursor(XCURSOR_CURSOR_POINTER);
|
|
|
|
|
else xcb_set_root_cursor(XCURSOR_CURSOR_POINTER);
|
2011-07-29 01:36:14 +02:00
|
|
|
|
|
2011-01-17 14:27:49 +01:00
|
|
|
|
if (xkb_supported) {
|
|
|
|
|
int errBase,
|
|
|
|
|
major = XkbMajorVersion,
|
|
|
|
|
minor = XkbMinorVersion;
|
|
|
|
|
|
|
|
|
|
if (fcntl(ConnectionNumber(xkbdpy), F_SETFD, FD_CLOEXEC) == -1) {
|
|
|
|
|
fprintf(stderr, "Could not set FD_CLOEXEC on xkbdpy\n");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int i1;
|
|
|
|
|
if (!XkbQueryExtension(xkbdpy,&i1,&xkb_event_base,&errBase,&major,&minor)) {
|
|
|
|
|
fprintf(stderr, "XKB not supported by X-server\n");
|
2013-01-23 17:21:07 +01:00
|
|
|
|
xkb_supported = false;
|
2011-01-17 14:27:49 +01:00
|
|
|
|
}
|
|
|
|
|
/* end of ugliness */
|
|
|
|
|
|
2013-01-23 17:21:07 +01:00
|
|
|
|
if (xkb_supported && !XkbSelectEvents(xkbdpy, XkbUseCoreKbd,
|
|
|
|
|
XkbMapNotifyMask | XkbStateNotifyMask,
|
|
|
|
|
XkbMapNotifyMask | XkbStateNotifyMask)) {
|
2011-01-17 14:27:49 +01:00
|
|
|
|
fprintf(stderr, "Could not set XKB event mask\n");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
/* Setup NetWM atoms */
|
2011-03-18 14:36:36 +01:00
|
|
|
|
#define xmacro(name) \
|
2010-03-27 15:25:51 +01:00
|
|
|
|
do { \
|
2011-03-18 14:36:36 +01:00
|
|
|
|
xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, name ## _cookie, NULL); \
|
2010-03-27 15:25:51 +01:00
|
|
|
|
if (!reply) { \
|
|
|
|
|
ELOG("Could not get atom " #name "\n"); \
|
|
|
|
|
exit(-1); \
|
|
|
|
|
} \
|
2011-03-18 14:36:36 +01:00
|
|
|
|
A_ ## name = reply->atom; \
|
2010-03-27 15:25:51 +01:00
|
|
|
|
free(reply); \
|
2011-03-18 14:36:36 +01:00
|
|
|
|
} while (0);
|
|
|
|
|
#include "atoms.xmacro"
|
|
|
|
|
#undef xmacro
|
|
|
|
|
|
|
|
|
|
property_handlers_init();
|
2011-03-14 17:20:04 +01:00
|
|
|
|
|
2012-01-20 11:52:45 +01:00
|
|
|
|
ewmh_setup_hints();
|
2010-04-13 17:46:54 +02:00
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
keysyms = xcb_key_symbols_alloc(conn);
|
|
|
|
|
|
2011-10-23 22:26:15 +02:00
|
|
|
|
xcb_numlock_mask = aio_get_mod_mask_for(XCB_NUM_LOCK, keysyms);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
|
|
|
|
translate_keysyms();
|
|
|
|
|
grab_all_keys(conn, false);
|
|
|
|
|
|
2011-01-05 00:16:10 +01:00
|
|
|
|
bool needs_tree_init = true;
|
|
|
|
|
if (layout_path) {
|
|
|
|
|
LOG("Trying to restore the layout from %s...", layout_path);
|
2011-06-10 18:27:20 +02:00
|
|
|
|
needs_tree_init = !tree_restore(layout_path, greply);
|
2011-01-05 00:16:10 +01:00
|
|
|
|
if (delete_layout_path)
|
|
|
|
|
unlink(layout_path);
|
|
|
|
|
free(layout_path);
|
|
|
|
|
}
|
|
|
|
|
if (needs_tree_init)
|
2011-06-10 18:27:20 +02:00
|
|
|
|
tree_init(greply);
|
|
|
|
|
|
|
|
|
|
free(greply);
|
2011-01-05 00:16:10 +01:00
|
|
|
|
|
2012-04-09 14:27:33 +02:00
|
|
|
|
/* Setup fake outputs for testing */
|
|
|
|
|
if (fake_outputs == NULL && config.fake_outputs != NULL)
|
|
|
|
|
fake_outputs = config.fake_outputs;
|
|
|
|
|
|
|
|
|
|
if (fake_outputs != NULL) {
|
|
|
|
|
fake_outputs_init(fake_outputs);
|
|
|
|
|
FREE(fake_outputs);
|
|
|
|
|
config.fake_outputs = NULL;
|
|
|
|
|
} else if (force_xinerama || config.force_xinerama) {
|
|
|
|
|
/* Force Xinerama (for drivers which don't support RandR yet, esp. the
|
|
|
|
|
* nVidia binary graphics driver), when specified either in the config
|
|
|
|
|
* file or on command-line */
|
2010-03-27 15:25:51 +01:00
|
|
|
|
xinerama_init();
|
|
|
|
|
} else {
|
|
|
|
|
DLOG("Checking for XRandR...\n");
|
|
|
|
|
randr_init(&randr_base);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-08 16:22:03 +02:00
|
|
|
|
scratchpad_fix_resolution();
|
|
|
|
|
|
2011-08-17 13:37:08 +02:00
|
|
|
|
xcb_query_pointer_reply_t *pointerreply;
|
2011-08-20 17:48:07 +02:00
|
|
|
|
Output *output = NULL;
|
|
|
|
|
if (!(pointerreply = xcb_query_pointer_reply(conn, pointercookie, NULL))) {
|
|
|
|
|
ELOG("Could not query pointer position, using first screen\n");
|
|
|
|
|
} else {
|
|
|
|
|
DLOG("Pointer at %d, %d\n", pointerreply->root_x, pointerreply->root_y);
|
|
|
|
|
output = get_output_containing(pointerreply->root_x, pointerreply->root_y);
|
|
|
|
|
if (!output) {
|
|
|
|
|
ELOG("ERROR: No screen at (%d, %d), starting on the first screen\n",
|
|
|
|
|
pointerreply->root_x, pointerreply->root_y);
|
|
|
|
|
output = get_first_output();
|
|
|
|
|
}
|
2011-08-17 13:37:08 +02:00
|
|
|
|
|
2011-08-20 17:48:07 +02:00
|
|
|
|
con_focus(con_descend_focused(output_get_content(output->con)));
|
|
|
|
|
}
|
2011-08-17 13:37:08 +02:00
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
tree_render();
|
|
|
|
|
|
|
|
|
|
/* Create the UNIX domain socket for IPC */
|
2011-03-21 13:05:58 +01:00
|
|
|
|
int ipc_socket = ipc_create_socket(config.ipc_socket_path);
|
|
|
|
|
if (ipc_socket == -1) {
|
|
|
|
|
ELOG("Could not create the IPC socket, IPC disabled\n");
|
|
|
|
|
} else {
|
2011-04-19 00:22:32 +02:00
|
|
|
|
free(config.ipc_socket_path);
|
2011-03-21 13:05:58 +01:00
|
|
|
|
struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
|
|
|
|
|
ev_io_init(ipc_io, ipc_new_client, ipc_socket, EV_READ);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
ev_io_start(main_loop, ipc_io);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-17 00:14:57 +01:00
|
|
|
|
/* Also handle the UNIX domain sockets passed via socket activation. The
|
|
|
|
|
* parameter 1 means "remove the environment variables", we don’t want to
|
|
|
|
|
* pass these to child processes. */
|
2012-01-22 00:03:09 +01:00
|
|
|
|
listen_fds = sd_listen_fds(0);
|
|
|
|
|
if (listen_fds < 0)
|
2011-08-10 15:55:27 +02:00
|
|
|
|
ELOG("socket activation: Error in sd_listen_fds\n");
|
2012-01-22 00:03:09 +01:00
|
|
|
|
else if (listen_fds == 0)
|
2011-08-10 15:55:27 +02:00
|
|
|
|
DLOG("socket activation: no sockets passed\n");
|
|
|
|
|
else {
|
2012-01-22 00:03:09 +01:00
|
|
|
|
int flags;
|
|
|
|
|
for (int fd = SD_LISTEN_FDS_START;
|
|
|
|
|
fd < (SD_LISTEN_FDS_START + listen_fds);
|
|
|
|
|
fd++) {
|
2011-08-10 15:55:27 +02:00
|
|
|
|
DLOG("socket activation: also listening on fd %d\n", fd);
|
2012-01-22 00:03:09 +01:00
|
|
|
|
|
|
|
|
|
/* sd_listen_fds() enables FD_CLOEXEC by default.
|
|
|
|
|
* However, we need to keep the file descriptors open for in-place
|
|
|
|
|
* restarting, therefore we explicitly disable FD_CLOEXEC. */
|
|
|
|
|
if ((flags = fcntl(fd, F_GETFD)) < 0 ||
|
|
|
|
|
fcntl(fd, F_SETFD, flags & ~FD_CLOEXEC) < 0) {
|
|
|
|
|
ELOG("Could not disable FD_CLOEXEC on fd %d\n", fd);
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-10 15:55:27 +02:00
|
|
|
|
struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
|
|
|
|
|
ev_io_init(ipc_io, ipc_new_client, fd, EV_READ);
|
|
|
|
|
ev_io_start(main_loop, ipc_io);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-20 15:34:34 +01:00
|
|
|
|
/* Set up i3 specific atoms like I3_SOCKET_PATH and I3_CONFIG_PATH */
|
|
|
|
|
x_set_i3_atoms();
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
struct ev_io *xcb_watcher = scalloc(sizeof(struct ev_io));
|
2011-01-17 14:27:49 +01:00
|
|
|
|
struct ev_io *xkb = scalloc(sizeof(struct ev_io));
|
2010-03-27 15:25:51 +01:00
|
|
|
|
struct ev_check *xcb_check = scalloc(sizeof(struct ev_check));
|
|
|
|
|
struct ev_prepare *xcb_prepare = scalloc(sizeof(struct ev_prepare));
|
|
|
|
|
|
|
|
|
|
ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
ev_io_start(main_loop, xcb_watcher);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2011-01-17 14:27:49 +01:00
|
|
|
|
|
|
|
|
|
if (xkb_supported) {
|
|
|
|
|
ev_io_init(xkb, xkb_got_event, ConnectionNumber(xkbdpy), EV_READ);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
ev_io_start(main_loop, xkb);
|
2011-01-17 14:27:49 +01:00
|
|
|
|
|
|
|
|
|
/* Flush the buffer so that libev can properly get new events */
|
|
|
|
|
XFlush(xkbdpy);
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
ev_check_init(xcb_check, xcb_check_cb);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
ev_check_start(main_loop, xcb_check);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
|
|
|
|
ev_prepare_init(xcb_prepare, xcb_prepare_cb);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
ev_prepare_start(main_loop, xcb_prepare);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
|
|
|
|
xcb_flush(conn);
|
|
|
|
|
|
2012-09-03 22:33:35 +02:00
|
|
|
|
/* What follows is a fugly consequence of X11 protocol race conditions like
|
|
|
|
|
* the following: In an i3 in-place restart, i3 will reparent all windows
|
|
|
|
|
* to the root window, then exec() itself. In the new process, it calls
|
|
|
|
|
* manage_existing_windows. However, in case any application sent a
|
|
|
|
|
* generated UnmapNotify message to the WM (as GIMP does), this message
|
|
|
|
|
* will be handled by i3 *after* managing the window, thus i3 thinks the
|
|
|
|
|
* window just closed itself. In reality, the message was sent in the time
|
|
|
|
|
* period where i3 wasn’t running yet.
|
|
|
|
|
*
|
|
|
|
|
* To prevent this, we grab the server (disables processing of any other
|
|
|
|
|
* connections), then discard all pending events (since we didn’t do
|
|
|
|
|
* anything, there cannot be any meaningful responses), then ungrab the
|
|
|
|
|
* server. */
|
|
|
|
|
xcb_grab_server(conn);
|
|
|
|
|
{
|
|
|
|
|
xcb_aux_sync(conn);
|
|
|
|
|
xcb_generic_event_t *event;
|
|
|
|
|
while ((event = xcb_poll_for_event(conn)) != NULL) {
|
2012-12-24 14:49:19 +01:00
|
|
|
|
if (event->response_type == 0) {
|
|
|
|
|
free(event);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Strip off the highest bit (set if the event is generated) */
|
|
|
|
|
int type = (event->response_type & 0x7F);
|
|
|
|
|
|
|
|
|
|
/* We still need to handle MapRequests which are sent in the
|
|
|
|
|
* timespan starting from when we register as a window manager and
|
|
|
|
|
* this piece of code which drops events. */
|
|
|
|
|
if (type == XCB_MAP_REQUEST)
|
|
|
|
|
handle_event(type, event);
|
|
|
|
|
|
2012-09-03 22:33:35 +02:00
|
|
|
|
free(event);
|
|
|
|
|
}
|
|
|
|
|
manage_existing_windows(root);
|
|
|
|
|
}
|
|
|
|
|
xcb_ungrab_server(conn);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2012-09-27 12:34:09 +02:00
|
|
|
|
struct sigaction action;
|
2011-12-10 11:51:55 +01:00
|
|
|
|
|
2012-09-27 12:34:09 +02:00
|
|
|
|
action.sa_sigaction = handle_signal;
|
|
|
|
|
action.sa_flags = SA_NODEFER | SA_RESETHAND | SA_SIGINFO;
|
|
|
|
|
sigemptyset(&action.sa_mask);
|
2011-12-10 11:51:55 +01:00
|
|
|
|
|
2011-01-28 00:31:26 +01:00
|
|
|
|
if (!disable_signalhandler)
|
|
|
|
|
setup_signal_handler();
|
2011-12-10 11:51:55 +01:00
|
|
|
|
else {
|
|
|
|
|
/* Catch all signals with default action "Core", see signal(7) */
|
2012-09-27 12:34:09 +02:00
|
|
|
|
if (sigaction(SIGQUIT, &action, NULL) == -1 ||
|
|
|
|
|
sigaction(SIGILL, &action, NULL) == -1 ||
|
|
|
|
|
sigaction(SIGABRT, &action, NULL) == -1 ||
|
|
|
|
|
sigaction(SIGFPE, &action, NULL) == -1 ||
|
|
|
|
|
sigaction(SIGSEGV, &action, NULL) == -1)
|
|
|
|
|
ELOG("Could not setup signal handler");
|
2011-12-10 11:51:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Catch all signals with default action "Term", see signal(7) */
|
2012-09-27 12:34:09 +02:00
|
|
|
|
if (sigaction(SIGHUP, &action, NULL) == -1 ||
|
|
|
|
|
sigaction(SIGINT, &action, NULL) == -1 ||
|
|
|
|
|
sigaction(SIGALRM, &action, NULL) == -1 ||
|
|
|
|
|
sigaction(SIGUSR1, &action, NULL) == -1 ||
|
|
|
|
|
sigaction(SIGUSR2, &action, NULL) == -1)
|
|
|
|
|
ELOG("Could not setup signal handler");
|
2010-12-30 21:09:32 +01:00
|
|
|
|
|
|
|
|
|
/* Ignore SIGPIPE to survive errors when an IPC client disconnects
|
|
|
|
|
* while we are sending him a message */
|
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
|
|
2010-11-23 00:40:05 +01:00
|
|
|
|
/* Autostarting exec-lines */
|
|
|
|
|
if (autostart) {
|
|
|
|
|
struct Autostart *exec;
|
|
|
|
|
TAILQ_FOREACH(exec, &autostarts, autostarts) {
|
|
|
|
|
LOG("auto-starting %s\n", exec->command);
|
2011-10-25 23:18:17 +02:00
|
|
|
|
start_application(exec->command, exec->no_startup_id);
|
2010-11-23 00:40:05 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-12 12:24:01 +02:00
|
|
|
|
/* Autostarting exec_always-lines */
|
|
|
|
|
struct Autostart *exec_always;
|
|
|
|
|
TAILQ_FOREACH(exec_always, &autostarts_always, autostarts_always) {
|
|
|
|
|
LOG("auto-starting (always!) %s\n", exec_always->command);
|
2011-10-25 23:18:17 +02:00
|
|
|
|
start_application(exec_always->command, exec_always->no_startup_id);
|
2011-07-12 12:24:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-10-20 20:03:40 +02:00
|
|
|
|
/* Start i3bar processes for all configured bars */
|
|
|
|
|
Barconfig *barconfig;
|
|
|
|
|
TAILQ_FOREACH(barconfig, &barconfigs, configs) {
|
|
|
|
|
char *command = NULL;
|
2011-11-24 21:53:29 +01:00
|
|
|
|
sasprintf(&command, "%s --bar_id=%s --socket=\"%s\"",
|
|
|
|
|
barconfig->i3bar_command ? barconfig->i3bar_command : "i3bar",
|
|
|
|
|
barconfig->id, current_socketpath);
|
2011-10-20 20:03:40 +02:00
|
|
|
|
LOG("Starting bar process: %s\n", command);
|
2011-10-25 23:18:17 +02:00
|
|
|
|
start_application(command, true);
|
2011-10-20 20:03:40 +02:00
|
|
|
|
free(command);
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-11 22:49:35 +02:00
|
|
|
|
/* Make sure to destroy the event loop to invoke the cleeanup callbacks
|
|
|
|
|
* when calling exit() */
|
|
|
|
|
atexit(i3_exit);
|
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
ev_loop(main_loop, 0);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
}
|