awesome/awesome.c

528 lines
17 KiB
C
Raw Normal View History

/*
2007-09-12 14:29:51 +02:00
* awesome.c - awesome main functions
*
2008-01-02 16:59:43 +01:00
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
2007-09-05 20:15:00 +02:00
#define _GNU_SOURCE
#include <getopt.h>
2007-09-05 20:15:00 +02:00
#include <locale.h>
#include <stdio.h>
#include <unistd.h>
2007-12-27 16:03:21 +01:00
#include <signal.h>
2008-03-21 16:50:17 +01:00
#include <ev.h>
2007-09-05 20:15:00 +02:00
#include <xcb/xcb_event.h>
#include "awesome.h"
#include "client.h"
#include "window.h"
2007-12-27 17:27:20 +01:00
#include "ewmh.h"
#include "dbus.h"
#include "systray.h"
#include "event.h"
#include "common/version.h"
#include "common/atoms.h"
#include "config.h"
2007-09-05 20:15:00 +02:00
awesome_t globalconf;
2008-03-21 16:50:17 +01:00
typedef struct
{
xcb_window_t id;
xcb_query_tree_cookie_t tree_cookie;
} root_win_t;
2008-03-21 16:50:17 +01:00
/** Call before exiting.
*/
void
awesome_atexit(void)
{
client_t *c;
xembed_window_t *em;
int screen_nbr;
a_dbus_cleanup();
luaA_cs_cleanup();
/* reparent systray windows, otherwise they may die with their master */
for(em = globalconf.embedded; em; em = em->next)
{
xcb_screen_t *s = xutil_screen_get(globalconf.connection, em->phys_screen);
xembed_window_unembed(globalconf.connection, em->win, s->root);
}
/* do this only for real screen */
for(screen_nbr = 0;
screen_nbr < xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
screen_nbr++)
systray_cleanup(screen_nbr);
/* remap all clients since some WM won't handle them otherwise */
for(c = globalconf.clients; c; c = c->next)
client_unban(c);
xcb_flush(globalconf.connection);
xcb_disconnect(globalconf.connection);
}
/** Scan X to find windows to manage.
2007-09-16 22:51:11 +02:00
*/
2007-09-05 20:15:00 +02:00
static void
scan(void)
2007-09-05 20:15:00 +02:00
{
int i, screen, phys_screen, tree_c_len;
const int screen_max = xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
root_win_t root_wins[screen_max];
xcb_query_tree_reply_t *tree_r;
2008-03-21 16:50:17 +01:00
xcb_window_t *wins = NULL;
xcb_get_window_attributes_reply_t *attr_r;
xcb_get_geometry_reply_t *geom_r;
long state;
2008-03-21 16:50:17 +01:00
for(phys_screen = 0; phys_screen < screen_max; phys_screen++)
2008-03-21 16:50:17 +01:00
{
/* Get the root window ID associated to this screen */
root_wins[phys_screen].id = xutil_screen_get(globalconf.connection, phys_screen)->root;
2007-09-05 20:15:00 +02:00
/* Get the window tree associated to this screen */
root_wins[phys_screen].tree_cookie = xcb_query_tree_unchecked(globalconf.connection,
root_wins[phys_screen].id);
2008-03-21 16:50:17 +01:00
}
for(phys_screen = 0; phys_screen < screen_max; phys_screen++)
2007-09-16 00:36:56 +02:00
{
tree_r = xcb_query_tree_reply(globalconf.connection,
root_wins[phys_screen].tree_cookie,
NULL);
2008-03-21 16:50:17 +01:00
if(!tree_r)
2008-03-21 16:50:17 +01:00
continue;
/* Get the tree of the children windows of the current root window */
if(!(wins = xcb_query_tree_children(tree_r)))
fatal("E: cannot get tree children");
tree_c_len = xcb_query_tree_children_length(tree_r);
xcb_get_window_attributes_cookie_t attr_wins[tree_c_len];
xcb_get_property_cookie_t state_wins[tree_c_len];
2008-03-21 16:50:17 +01:00
for(i = 0; i < tree_c_len; i++)
{
attr_wins[i] = xcb_get_window_attributes_unchecked(globalconf.connection,
wins[i]);
2008-03-21 16:50:17 +01:00
state_wins[i] = window_state_get_unchecked(wins[i]);
}
xcb_get_geometry_cookie_t *geom_wins[tree_c_len];
for(i = 0; i < tree_c_len; i++)
2008-03-21 16:50:17 +01:00
{
bool has_awesome_prop;
attr_r = xcb_get_window_attributes_reply(globalconf.connection,
attr_wins[i],
NULL);
2008-03-21 16:50:17 +01:00
state = window_state_get_reply(state_wins[i]);
has_awesome_prop = xutil_text_prop_get(globalconf.connection, wins[i],
_AWESOME_TAGS, NULL, NULL);
if(!attr_r || attr_r->override_redirect
|| (attr_r->map_state != XCB_MAP_STATE_VIEWABLE && !has_awesome_prop)
|| (state == XCB_WM_STATE_WITHDRAWN && !has_awesome_prop))
{
geom_wins[i] = NULL;
p_delete(&attr_r);
continue;
}
2008-03-21 16:50:17 +01:00
p_delete(&attr_r);
2008-03-21 16:50:17 +01:00
/* Get the geometry of the current window */
geom_wins[i] = p_alloca(xcb_get_geometry_cookie_t, 1);
*(geom_wins[i]) = xcb_get_geometry_unchecked(globalconf.connection, wins[i]);
}
for(i = 0; i < tree_c_len; i++)
{
if(!geom_wins[i] || !(geom_r = xcb_get_geometry_reply(globalconf.connection,
*(geom_wins[i]), NULL)))
continue;
screen = screen_get_bycoord(globalconf.screens_info, phys_screen,
geom_r->x, geom_r->y);
client_manage(wins[i], geom_r, phys_screen, screen);
2008-03-21 16:50:17 +01:00
p_delete(&geom_r);
2008-03-21 16:50:17 +01:00
}
p_delete(&tree_r);
2007-09-05 20:15:00 +02:00
}
}
static void
a_xcb_check_cb(EV_P_ ev_check *w, int revents)
{
xcb_event_poll_for_event_loop(&globalconf.evenths);
awesome_refresh(globalconf.connection);
}
static void
a_xcb_io_cb(EV_P_ ev_io *w, int revents)
{
/* empty */
}
2007-09-16 22:51:11 +02:00
/** Startup Error handler to check if another window manager
2007-09-05 20:15:00 +02:00
* is already running.
* \param data Additional optional parameters data.
* \param c X connection.
* \param error Error event.
2007-09-05 20:15:00 +02:00
*/
2007-09-12 14:32:24 +02:00
static int __attribute__ ((noreturn))
2008-03-21 16:50:17 +01:00
xerrorstart(void * data __attribute__ ((unused)),
xcb_connection_t * c __attribute__ ((unused)),
xcb_generic_error_t * error __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
fatal("another window manager is already running");
2007-09-05 20:15:00 +02:00
}
/** Function to exit on some signals.
* \param sig the signal received, unused
*/
2007-12-27 16:03:21 +01:00
static void
exit_on_signal(EV_P_ ev_signal *w, int revents)
2007-12-27 16:03:21 +01:00
{
ev_unloop(EV_A_ 1);
2007-12-27 16:03:21 +01:00
}
void
awesome_restart(void)
{
awesome_atexit();
a_exec(globalconf.argv);
}
/** Function to restart aweome on some signals.
* \param sig the signam received, unused
*/
static void
restart_on_signal(EV_P_ ev_signal *w, int revents)
{
awesome_restart();
}
/** \brief awesome xerror function.
* There's no way to check accesses to destroyed windows, thus those cases are
2007-09-05 20:15:00 +02:00
* ignored (especially on UnmapNotify's). Other types of errors call Xlibs
* default error handler, which may call exit.
* \param data Currently unused.
* \param c The connectiont to the X server.
* \param e The error event.
* \return 0 if no error, or xerror's xlib return status.
2007-09-05 20:15:00 +02:00
*/
2008-01-06 21:57:53 +01:00
static int
2008-03-21 16:50:17 +01:00
xerror(void *data __attribute__ ((unused)),
xcb_connection_t *c __attribute__ ((unused)),
xcb_generic_error_t *e)
2007-09-05 20:15:00 +02:00
{
xutil_error_t *err = xutil_error_get(e);
if(!err)
return 0;
2008-03-21 16:50:17 +01:00
if(e->error_code == XUTIL_BAD_WINDOW
|| (e->error_code == XUTIL_BAD_MATCH && err->request_code == XCB_SET_INPUT_FOCUS)
|| (e->error_code == XUTIL_BAD_VALUE && err->request_code == XCB_KILL_CLIENT)
|| (err->request_code == XCB_CONFIGURE_WINDOW && e->error_code == XUTIL_BAD_MATCH))
2008-03-27 16:51:24 +01:00
{
xutil_error_delete(err);
2007-09-05 20:15:00 +02:00
return 0;
2008-03-27 16:51:24 +01:00
}
warn("fatal error: request=%s, error=%s", err->request_label, err->error_label);
xutil_error_delete(err);
2008-03-21 16:50:17 +01:00
/*
* Xlib code was using default X error handler, namely
* '_XDefaultError()', which displays more informations about the
* error and also exit if 'error_code'' equals to
* 'BadImplementation'
*
* \todo display more informations about the error (like the Xlib default error handler)
2008-03-21 16:50:17 +01:00
*/
if(e->error_code == XUTIL_BAD_IMPLEMENTATION)
exit(EXIT_FAILURE);
2008-03-21 16:50:17 +01:00
return 0;
2007-09-05 20:15:00 +02:00
}
/** Print help and exit(2) with given exit_code.
* \param exit_code The exit code.
*/
2008-01-21 15:57:24 +01:00
static void __attribute__ ((noreturn))
exit_help(int exit_code)
{
2008-01-21 15:55:56 +01:00
FILE *outfile = (exit_code == EXIT_SUCCESS) ? stdout : stderr;
fprintf(outfile,
"Usage: awesome [OPTION]\n\
-h, --help show help\n\
-v, --version show version\n\
-c, --config FILE configuration file to use\n");
exit(exit_code);
}
/** Hello, this is main.
* \param argc Who knows.
* \param argv Who knows.
* \return EXIT_SUCCESS I hope.
2007-09-16 22:51:11 +02:00
*/
2007-09-05 20:15:00 +02:00
int
main(int argc, char **argv)
2007-09-05 20:15:00 +02:00
{
const char *confpath = NULL;
2008-08-12 14:53:57 +02:00
int xfd, i, screen_nbr, opt, colors_nbr;
xcolor_init_request_t colors_reqs[2];
xcb_get_modifier_mapping_cookie_t xmapping_cookie;
ssize_t cmdlen = 1;
static struct option long_options[] =
{
{"help", 0, NULL, 'h'},
{"version", 0, NULL, 'v'},
2008-03-16 11:31:38 +01:00
{"config", 1, NULL, 'c'},
{NULL, 0, NULL, 0}
};
2007-09-05 20:15:00 +02:00
/* event loop watchers */
ev_io xio = { .fd = -1 };
ev_check xcheck;
ev_signal sigint;
ev_signal sigterm;
ev_signal sighup;
/* clear the globalconf structure */
p_clear(&globalconf, 1);
globalconf.keygrabber = LUA_REFNIL;
2008-02-26 17:52:56 +01:00
/* save argv */
for(i = 0; i < argc; i++)
cmdlen += a_strlen(argv[i]) + 1;
2008-02-26 17:52:56 +01:00
globalconf.argv = p_new(char, cmdlen);
a_strcpy(globalconf.argv, cmdlen, argv[0]);
2008-02-26 17:52:56 +01:00
for(i = 1; i < argc; i++)
{
a_strcat(globalconf.argv, cmdlen, " ");
a_strcat(globalconf.argv, cmdlen, argv[i]);
2008-02-26 17:52:56 +01:00
}
2007-12-31 10:10:24 +01:00
/* check args */
while((opt = getopt_long(argc, argv, "vhc:",
long_options, NULL)) != -1)
switch(opt)
{
case 'v':
eprint_version("awesome");
break;
case 'h':
exit_help(EXIT_SUCCESS);
break;
case 'c':
if(a_strlen(optarg))
confpath = a_strdup(optarg);
else
fatal("-c option requires a file name");
break;
}
2008-01-11 15:58:38 +01:00
/* Text won't be printed correctly otherwise */
setlocale(LC_CTYPE, "");
globalconf.loop = ev_default_loop(0);
ev_timer_init(&globalconf.timer, &luaA_on_timer, 0., 0.);
/* register function for signals */
ev_signal_init(&sigint, exit_on_signal, SIGINT);
ev_signal_init(&sigterm, exit_on_signal, SIGTERM);
ev_signal_init(&sighup, restart_on_signal, SIGHUP);
ev_signal_start(globalconf.loop, &sigint);
ev_signal_start(globalconf.loop, &sigterm);
ev_signal_start(globalconf.loop, &sighup);
ev_unref(globalconf.loop);
ev_unref(globalconf.loop);
ev_unref(globalconf.loop);
2007-09-16 22:51:11 +02:00
2007-12-31 10:10:24 +01:00
/* X stuff */
globalconf.connection = xcb_connect(NULL, &globalconf.default_screen);
if(xcb_connection_has_error(globalconf.connection))
fatal("cannot open display");
2007-09-16 22:51:11 +02:00
/* Grab server */
xcb_grab_server(globalconf.connection);
xcb_flush(globalconf.connection);
/* Get the file descriptor corresponding to the X connection */
xfd = xcb_get_file_descriptor(globalconf.connection);
ev_io_init(&xio, &a_xcb_io_cb, xfd, EV_READ);
ev_io_start(globalconf.loop, &xio);
ev_check_init(&xcheck, &a_xcb_check_cb);
ev_check_start(globalconf.loop, &xcheck);
ev_unref(globalconf.loop);
2008-03-21 16:50:17 +01:00
/* Allocate a handler which will holds all errors and events */
xcb_event_handlers_init(globalconf.connection, &globalconf.evenths);
xutil_error_handler_catch_all_set(&globalconf.evenths, xerrorstart, NULL);
2007-09-16 22:51:11 +02:00
2008-03-21 16:50:17 +01:00
for(screen_nbr = 0;
screen_nbr < xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
2008-03-21 16:50:17 +01:00
screen_nbr++)
{
const uint32_t select_input_val = XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT;
/* This causes an error if some other window manager is running */
xcb_change_window_attributes(globalconf.connection,
xutil_screen_get(globalconf.connection, screen_nbr)->root,
XCB_CW_EVENT_MASK, &select_input_val);
}
2007-09-05 20:15:00 +02:00
/* Need to xcb_flush to validate error handler */
xcb_aux_sync(globalconf.connection);
2007-12-31 10:10:24 +01:00
/* Process all errors in the queue if any */
xcb_event_poll_for_event_loop(&globalconf.evenths);
2008-03-21 16:50:17 +01:00
/* Set the default xerror handler */
xutil_error_handler_catch_all_set(&globalconf.evenths, xerror, NULL);
2008-03-21 16:50:17 +01:00
/* Allocate the key symbols */
globalconf.keysyms = xcb_key_symbols_alloc(globalconf.connection);
/* Send the request to get the NumLock, ShiftLock and CapsLock
masks */
xmapping_cookie = xcb_get_modifier_mapping_unchecked(globalconf.connection);
/* init atom cache */
atoms_init(globalconf.connection);
2007-12-31 10:10:24 +01:00
/* init screens struct */
globalconf.screens_info = screensinfo_new(globalconf.connection);
globalconf.screen_focus = globalconf.screens = p_new(screen_t, globalconf.screens_info->nscreen);
/* \todo stop duplicating this */
for(screen_nbr = 0; screen_nbr < globalconf.screens_info->nscreen; screen_nbr++)
{
globalconf.screens[screen_nbr].index = screen_nbr;
globalconf.screens[screen_nbr].geometry = globalconf.screens_info->geometry[screen_nbr];
}
2007-12-31 10:10:24 +01:00
/* init default font and colors */
2008-08-12 14:53:57 +02:00
colors_reqs[0] = xcolor_init_unchecked(globalconf.connection, &globalconf.colors.fg,
globalconf.default_screen, "black",
sizeof("black")-1);
colors_reqs[1] = xcolor_init_unchecked(globalconf.connection, &globalconf.colors.bg,
globalconf.default_screen, "white",
sizeof("white")-1);
globalconf.font = draw_font_new(globalconf.connection, globalconf.default_screen, "sans 8");
/* init cursors */
globalconf.cursor[CurNormal] = xutil_cursor_new(globalconf.connection, XUTIL_CURSOR_LEFT_PTR);
globalconf.cursor[CurResize] = xutil_cursor_new(globalconf.connection, XUTIL_CURSOR_SIZING);
globalconf.cursor[CurResizeH] = xutil_cursor_new(globalconf.connection, XUTIL_CURSOR_DOUBLE_ARROW_HORIZ);
globalconf.cursor[CurResizeV] = xutil_cursor_new(globalconf.connection, XUTIL_CURSOR_DOUBLE_ARROW_VERT);
globalconf.cursor[CurMove] = xutil_cursor_new(globalconf.connection, XUTIL_CURSOR_FLEUR);
globalconf.cursor[CurTopRight] = xutil_cursor_new(globalconf.connection, XUTIL_CURSOR_TOP_RIGHT_CORNER);
globalconf.cursor[CurTopLeft] = xutil_cursor_new(globalconf.connection, XUTIL_CURSOR_TOP_LEFT_CORNER);
globalconf.cursor[CurBotRight] = xutil_cursor_new(globalconf.connection, XUTIL_CURSOR_BOTTOM_RIGHT_CORNER);
globalconf.cursor[CurBotLeft] = xutil_cursor_new(globalconf.connection, XUTIL_CURSOR_BOTTOM_LEFT_CORNER);
2008-08-12 14:53:57 +02:00
for(colors_nbr = 0; colors_nbr < 2; colors_nbr++)
xcolor_init_reply(globalconf.connection, colors_reqs[colors_nbr]);
/* Process the reply of previously sent mapping request */
xutil_lock_mask_get(globalconf.connection, xmapping_cookie,
globalconf.keysyms, &globalconf.numlockmask,
&globalconf.shiftlockmask, &globalconf.capslockmask);
/* init lua */
luaA_init();
luaA_parserc(confpath);
/* scan existing windows */
scan();
2008-03-21 16:50:17 +01:00
/* process all errors in the queue if any */
xcb_event_poll_for_event_loop(&globalconf.evenths);
a_xcb_set_event_handlers();
2008-03-21 16:50:17 +01:00
/* do this only for real screen */
for(screen_nbr = 0;
screen_nbr < xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
screen_nbr++)
{
/* select for events */
const uint32_t change_win_vals[] =
{
XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT | XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY
| XCB_EVENT_MASK_ENTER_WINDOW | XCB_EVENT_MASK_LEAVE_WINDOW
| XCB_EVENT_MASK_STRUCTURE_NOTIFY,
globalconf.cursor[CurNormal]
};
xcb_change_window_attributes(globalconf.connection,
xutil_screen_get(globalconf.connection, screen_nbr)->root,
XCB_CW_EVENT_MASK | XCB_CW_CURSOR,
change_win_vals);
ewmh_init(screen_nbr);
systray_init(screen_nbr);
}
/* Grab server */
xcb_ungrab_server(globalconf.connection);
xcb_aux_sync(globalconf.connection);
luaA_cs_init();
a_dbus_init();
2008-01-23 20:58:05 +01:00
/* refresh everything before waiting events */
awesome_refresh(globalconf.connection);
/* main event loop */
ev_loop(globalconf.loop, 0);
2007-10-12 17:41:54 +02:00
/* cleanup event loop */
ev_ref(globalconf.loop);
ev_check_stop(globalconf.loop, &xcheck);
ev_ref(globalconf.loop);
ev_io_stop(globalconf.loop, &xio);
awesome_atexit();
2007-09-05 20:15:00 +02:00
2007-09-16 22:51:11 +02:00
return EXIT_SUCCESS;
2007-09-05 20:15:00 +02:00
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80