2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-12 14:29:51 +02:00
|
|
|
* awesome.c - awesome main functions
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
2008-01-02 16:59:43 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2008-01-31 18:34:59 +01:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <getopt.h>
|
|
|
|
|
2007-09-05 20:15:00 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <locale.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/select.h>
|
2007-10-12 13:10:43 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2007-10-15 22:52:49 +02:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
2007-10-12 13:10:43 +02:00
|
|
|
#include <fcntl.h>
|
2007-12-27 16:03:21 +01:00
|
|
|
#include <signal.h>
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/shape.h>
|
|
|
|
#include <xcb/randr.h>
|
|
|
|
#include <xcb/xcb_aux.h>
|
|
|
|
#include <xcb/xcb_atom.h>
|
|
|
|
#include <xcb/xcb_icccm.h>
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-01-29 11:27:14 +01:00
|
|
|
#include "config.h"
|
2007-09-10 12:06:54 +02:00
|
|
|
#include "awesome.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
#include "event.h"
|
|
|
|
#include "layout.h"
|
2007-09-15 12:45:55 +02:00
|
|
|
#include "screen.h"
|
2007-09-15 15:16:53 +02:00
|
|
|
#include "statusbar.h"
|
2007-10-12 17:10:36 +02:00
|
|
|
#include "uicb.h"
|
2007-10-26 18:23:15 +02:00
|
|
|
#include "window.h"
|
2007-12-14 16:42:54 +01:00
|
|
|
#include "client.h"
|
2007-12-14 21:51:54 +01:00
|
|
|
#include "focus.h"
|
2007-12-27 17:27:20 +01:00
|
|
|
#include "ewmh.h"
|
2008-02-12 15:30:48 +01:00
|
|
|
#include "tag.h"
|
2008-02-27 09:07:52 +01:00
|
|
|
#include "common/socket.h"
|
2008-01-21 18:14:59 +01:00
|
|
|
#include "common/util.h"
|
2008-02-27 09:04:17 +01:00
|
|
|
#include "common/version.h"
|
2008-01-31 16:34:00 +01:00
|
|
|
#include "common/configopts.h"
|
2008-03-13 09:05:34 +01:00
|
|
|
#include "common/xscreen.h"
|
2008-03-21 16:50:17 +01:00
|
|
|
#include "common/xutil.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
static bool running = true;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-12-19 04:46:44 +01:00
|
|
|
AwesomeConf globalconf;
|
2007-12-16 02:45:38 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2008-03-27 06:12:39 +01:00
|
|
|
xcb_window_t id;
|
|
|
|
xcb_query_tree_cookie_t tree_cookie;
|
|
|
|
} root_win_t;
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2007-09-16 22:51:11 +02:00
|
|
|
/** Scan X to find windows to manage
|
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
static void
|
2007-12-16 02:45:38 +01:00
|
|
|
scan()
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-03-30 15:46:07 +02:00
|
|
|
int i, screen, real_screen, tree_c_len;
|
2008-03-27 06:12:39 +01:00
|
|
|
const int screen_max = xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
|
2008-04-09 11:36:10 +02:00
|
|
|
root_win_t *root_wins = p_new(root_win_t, screen_max);
|
2008-03-27 06:12:39 +01:00
|
|
|
xcb_query_tree_reply_t *tree_r;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_window_t *wins = NULL;
|
2008-03-27 06:12:39 +01:00
|
|
|
xcb_get_window_attributes_cookie_t *attr_wins = NULL;
|
2008-03-30 15:46:07 +02:00
|
|
|
xcb_get_geometry_cookie_t **geom_wins = NULL;
|
2008-03-27 06:12:39 +01:00
|
|
|
xcb_get_window_attributes_reply_t *attr_r;
|
|
|
|
xcb_get_geometry_reply_t *geom_r;
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
for(screen = 0; screen < screen_max; screen++)
|
|
|
|
{
|
2008-03-30 15:46:07 +02:00
|
|
|
/* Get the root window ID associated to this screen */
|
2008-03-27 16:05:37 +01:00
|
|
|
root_wins[screen].id = xcb_aux_get_screen(globalconf.connection, screen)->root;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-03-30 15:46:07 +02:00
|
|
|
/* Get the window tree associated to this screen */
|
2008-03-27 06:12:39 +01:00
|
|
|
root_wins[screen].tree_cookie = xcb_query_tree_unchecked(globalconf.connection,
|
|
|
|
root_wins[screen].id);
|
2008-03-21 16:50:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for(screen = 0; screen < screen_max; screen++)
|
2007-09-16 00:36:56 +02:00
|
|
|
{
|
2008-03-27 06:12:39 +01:00
|
|
|
tree_r = xcb_query_tree_reply(globalconf.connection,
|
|
|
|
root_wins[screen].tree_cookie,
|
|
|
|
NULL);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-03-27 06:12:39 +01:00
|
|
|
if(!tree_r)
|
2008-03-21 16:50:17 +01:00
|
|
|
continue;
|
2008-03-30 15:46:07 +02:00
|
|
|
|
|
|
|
/* Get the tree of the children Windows of the current root
|
|
|
|
* Window */
|
2008-03-27 06:12:39 +01:00
|
|
|
wins = xcb_query_tree_children(tree_r);
|
2008-03-30 15:46:07 +02:00
|
|
|
tree_c_len = xcb_query_tree_children_length(tree_r);
|
|
|
|
attr_wins = p_new(xcb_get_window_attributes_cookie_t, tree_c_len);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-03-30 15:46:07 +02:00
|
|
|
for(i = 0; i < tree_c_len; i++)
|
2008-03-27 06:12:39 +01:00
|
|
|
attr_wins[i] = xcb_get_window_attributes_unchecked(globalconf.connection,
|
|
|
|
wins[i]);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-03-30 15:46:07 +02:00
|
|
|
geom_wins = p_new(xcb_get_geometry_cookie_t *, tree_c_len);
|
|
|
|
|
|
|
|
for(i = 0; i < tree_c_len; i++)
|
2008-03-21 16:50:17 +01:00
|
|
|
{
|
2008-03-27 06:12:39 +01:00
|
|
|
attr_r = xcb_get_window_attributes_reply(globalconf.connection,
|
|
|
|
attr_wins[i],
|
|
|
|
NULL);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-03-27 06:12:39 +01:00
|
|
|
if(!attr_r || attr_r->override_redirect ||
|
|
|
|
!(attr_r->map_state == XCB_MAP_STATE_VIEWABLE ||
|
|
|
|
window_getstate(wins[i]) == XCB_WM_ICONIC_STATE))
|
|
|
|
{
|
|
|
|
if(attr_r)
|
|
|
|
p_delete(&attr_r);
|
|
|
|
continue;
|
|
|
|
}
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-03-27 06:12:39 +01:00
|
|
|
p_delete(&attr_r);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-03-30 15:46:07 +02:00
|
|
|
/* Get the geometry of the current window */
|
2008-04-09 11:36:10 +02:00
|
|
|
geom_wins[i] = p_new(xcb_get_geometry_cookie_t, 1);
|
|
|
|
*(geom_wins[i]) = xcb_get_geometry_unchecked(globalconf.connection, wins[i]);
|
2008-03-30 15:46:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p_delete(&attr_wins);
|
|
|
|
|
|
|
|
for(i = 0; i < tree_c_len; i++)
|
|
|
|
{
|
2008-04-09 11:36:10 +02:00
|
|
|
if(!geom_wins[i])
|
2008-03-30 15:46:07 +02:00
|
|
|
continue;
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-04-09 11:36:10 +02:00
|
|
|
if(!(geom_r = xcb_get_geometry_reply(globalconf.connection,
|
|
|
|
*(geom_wins[i]), NULL)))
|
2008-03-27 06:12:39 +01:00
|
|
|
continue;
|
|
|
|
|
2008-04-09 11:36:10 +02:00
|
|
|
real_screen = screen_get_bycoord(globalconf.screens_info, screen,
|
|
|
|
geom_r->x, geom_r->y);
|
2008-03-27 06:12:39 +01:00
|
|
|
|
|
|
|
client_manage(wins[i], geom_r, real_screen);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-03-27 06:12:39 +01:00
|
|
|
p_delete(&geom_r);
|
2008-03-30 15:46:07 +02:00
|
|
|
p_delete(&geom_wins[i]);
|
2008-03-21 16:50:17 +01:00
|
|
|
}
|
|
|
|
|
2008-03-30 15:46:07 +02:00
|
|
|
p_delete(&geom_wins);
|
2008-03-27 06:12:39 +01:00
|
|
|
p_delete(&tree_r);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
2008-04-09 11:36:10 +02:00
|
|
|
p_delete(&root_wins);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
/** Equivalent to 'XCreateFontCursor()', error are handled by the
|
|
|
|
* default current error handler
|
|
|
|
* \param cursor_font type of cursor to use
|
|
|
|
* \return allocated cursor font
|
|
|
|
*/
|
|
|
|
static xcb_cursor_t
|
|
|
|
create_font_cursor(unsigned int cursor_font)
|
|
|
|
{
|
2008-04-09 12:05:37 +02:00
|
|
|
xcb_font_t font;
|
|
|
|
xcb_cursor_t cursor;
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
/* Get the font for the cursor*/
|
|
|
|
font = xcb_generate_id(globalconf.connection);
|
2008-03-27 06:19:29 +01:00
|
|
|
xcb_open_font(globalconf.connection, font, strlen("cursor"), "cursor");
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
cursor = xcb_generate_id(globalconf.connection);
|
|
|
|
xcb_create_glyph_cursor (globalconf.connection, cursor, font, font,
|
|
|
|
cursor_font, cursor_font + 1,
|
|
|
|
0, 0, 0,
|
2008-03-27 06:19:29 +01:00
|
|
|
65535, 65535, 65535);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
return cursor;
|
|
|
|
}
|
|
|
|
|
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.
|
2008-03-21 16:50:17 +01:00
|
|
|
* \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
|
|
|
{
|
2007-12-13 15:20:42 +01:00
|
|
|
eprint("another window manager is already running\n");
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-04-10 23:37:22 +02:00
|
|
|
/** Quit awesome.
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param screen Screen ID
|
2007-09-16 22:51:11 +02:00
|
|
|
* \param arg nothing
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_quit(int screen __attribute__ ((unused)), char *arg __attribute__ ((unused)))
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
running = false;
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-04-09 12:05:37 +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(int sig __attribute__ ((unused)))
|
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
running = false;
|
2007-12-27 16:03:21 +01:00
|
|
|
}
|
|
|
|
|
2008-03-04 12:56:43 +01:00
|
|
|
/** \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.
|
2008-03-04 12:56:43 +01:00
|
|
|
* \param edpy display ref
|
|
|
|
* \param ee XErrorEvent 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
|
|
|
{
|
2008-03-27 16:51:24 +01:00
|
|
|
xutil_error_t *err = xutil_get_error(e);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
if(e->error_code == BadWindow
|
2008-03-27 16:51:24 +01:00
|
|
|
|| (e->error_code == BadMatch && err->request_code == XCB_SET_INPUT_FOCUS)
|
|
|
|
|| (e->error_code == BadValue && err->request_code == XCB_KILL_CLIENT)
|
|
|
|
|| (err->request_code == XCB_CONFIGURE_WINDOW && e->error_code == BadMatch))
|
|
|
|
{
|
|
|
|
xutil_delete_error(err);
|
2007-09-05 20:15:00 +02:00
|
|
|
return 0;
|
2008-03-27 16:51:24 +01:00
|
|
|
}
|
2008-04-09 12:05:37 +02:00
|
|
|
|
2008-03-27 16:51:24 +01:00
|
|
|
warn("fatal error: request=%s, error=%s\n", err->request_label, err->error_label);
|
|
|
|
xutil_delete_error(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'
|
|
|
|
*
|
2008-04-09 12:05:37 +02:00
|
|
|
* \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 == BadImplementation)
|
|
|
|
exit(1);
|
|
|
|
|
|
|
|
return 0;
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-01-21 15:04:49 +01:00
|
|
|
/** Print help and exit(2) with given exit_code.
|
2008-04-09 12:05:37 +02:00
|
|
|
* \param exit_code the exit code
|
2008-01-21 15:04:49 +01:00
|
|
|
*/
|
2008-01-21 15:57:24 +01:00
|
|
|
static void __attribute__ ((noreturn))
|
|
|
|
exit_help(int exit_code)
|
2008-01-21 15:04:49 +01:00
|
|
|
{
|
2008-01-21 15:55:56 +01:00
|
|
|
FILE *outfile = (exit_code == EXIT_SUCCESS) ? stdout : stderr;
|
2008-02-04 14:48:44 +01:00
|
|
|
fprintf(outfile,
|
|
|
|
"Usage: awesome [OPTION]\n\
|
|
|
|
-h, --help show help\n\
|
|
|
|
-v, --version show version\n\
|
|
|
|
-c, --config FILE configuration file to use\n\
|
2008-03-28 13:51:38 +01:00
|
|
|
-k, --check check configuration file syntax\n");
|
2008-01-21 15:04:49 +01:00
|
|
|
exit(exit_code);
|
|
|
|
}
|
|
|
|
|
2008-04-09 12:05:37 +02:00
|
|
|
/** Hello, this is main.
|
2007-09-16 22:51:11 +02:00
|
|
|
* \param argc who knows
|
|
|
|
* \param argv who knows
|
|
|
|
* \return EXIT_SUCCESS I hope
|
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
int
|
2008-04-09 12:05:37 +02:00
|
|
|
main(int argc, char **argv)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-10-29 10:57:49 +01:00
|
|
|
char buf[1024];
|
2007-10-29 16:14:50 +01:00
|
|
|
const char *confpath = NULL;
|
2008-03-21 16:50:17 +01:00
|
|
|
int r, xfd, csfd, i, screen_nbr, opt;
|
2008-02-26 17:52:56 +01:00
|
|
|
ssize_t cmdlen = 1;
|
2008-03-21 16:50:17 +01:00
|
|
|
const xcb_query_extension_reply_t *shape_query, *randr_query;
|
2008-04-11 11:27:36 +02:00
|
|
|
statusbar_t *statusbar;
|
2007-09-05 20:15:00 +02:00
|
|
|
fd_set rd;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_generic_event_t *ev;
|
2007-10-29 16:14:50 +01:00
|
|
|
struct sockaddr_un *addr;
|
2008-04-11 11:35:11 +02:00
|
|
|
client_t *c;
|
2008-03-21 16:50:17 +01:00
|
|
|
bool confcheck = false;
|
2008-02-04 14:43:20 +01:00
|
|
|
static struct option long_options[] =
|
|
|
|
{
|
2008-01-31 18:34:59 +01:00
|
|
|
{"help", 0, NULL, 'h'},
|
|
|
|
{"version", 0, NULL, 'v'},
|
2008-02-04 14:48:44 +01:00
|
|
|
{"check", 0, NULL, 'k'},
|
2008-03-16 11:31:38 +01:00
|
|
|
{"config", 1, NULL, 'c'},
|
2008-01-31 18:34:59 +01:00
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
};
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-02-26 17:52:56 +01:00
|
|
|
/* save argv */
|
|
|
|
for(i = 0; i < argc; i++)
|
|
|
|
cmdlen += a_strlen(argv[i]) + 1;
|
|
|
|
|
|
|
|
globalconf.argv = p_new(char, cmdlen);
|
|
|
|
a_strcpy(globalconf.argv, cmdlen, argv[0]);
|
|
|
|
|
|
|
|
for(i = 1; i < argc; i++)
|
|
|
|
{
|
|
|
|
a_strcat(globalconf.argv, cmdlen, " ");
|
|
|
|
a_strcat(globalconf.argv, cmdlen, argv[i]);
|
|
|
|
}
|
|
|
|
|
2007-12-31 10:10:24 +01:00
|
|
|
/* check args */
|
2008-03-23 21:35:34 +01:00
|
|
|
while((opt = getopt_long(argc, argv, "vhkc:s",
|
2008-01-31 18:34:59 +01:00
|
|
|
long_options, NULL)) != -1)
|
|
|
|
switch(opt)
|
2007-09-26 21:22:30 +02:00
|
|
|
{
|
2008-01-31 18:34:59 +01:00
|
|
|
case 'v':
|
|
|
|
eprint_version("awesome");
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
exit_help(EXIT_SUCCESS);
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
if(a_strlen(optarg))
|
2008-03-23 21:35:34 +01:00
|
|
|
confpath = a_strdup(optarg);
|
2007-09-26 21:22:30 +02:00
|
|
|
else
|
2008-01-21 15:04:49 +01:00
|
|
|
eprint("-c option requires a file name\n");
|
2008-01-31 18:34:59 +01:00
|
|
|
break;
|
|
|
|
case 'k':
|
2008-03-21 16:50:17 +01:00
|
|
|
confcheck = true;
|
2008-03-16 11:31:38 +01:00
|
|
|
break;
|
2008-01-31 18:34:59 +01:00
|
|
|
}
|
|
|
|
|
2008-01-11 15:58:38 +01:00
|
|
|
/* Text won't be printed correctly otherwise */
|
2008-01-08 18:17:01 +01:00
|
|
|
setlocale(LC_CTYPE, "");
|
2007-09-16 22:51:11 +02:00
|
|
|
|
2008-03-23 21:35:34 +01:00
|
|
|
if(confcheck)
|
|
|
|
return config_check(confpath);
|
|
|
|
|
2007-12-31 10:10:24 +01:00
|
|
|
/* X stuff */
|
2008-04-09 12:05:37 +02:00
|
|
|
globalconf.connection = xcb_connect(NULL, &globalconf.default_screen);
|
|
|
|
if(xcb_connection_has_error(globalconf.connection))
|
2007-12-13 15:20:42 +01:00
|
|
|
eprint("cannot open display\n");
|
2007-09-16 22:51:11 +02:00
|
|
|
|
2008-04-09 12:05:37 +02:00
|
|
|
/* Get the file descriptor corresponding to the X connection */
|
|
|
|
xfd = xcb_get_file_descriptor(globalconf.connection);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
/* Allocate a handler which will holds all errors and events */
|
2008-04-09 12:05:37 +02:00
|
|
|
globalconf.evenths = xcb_alloc_event_handlers(globalconf.connection);
|
2008-03-27 16:51:24 +01:00
|
|
|
xutil_set_error_handler_catch_all(globalconf.evenths, xerrorstart, NULL);
|
2007-09-16 22:51:11 +02:00
|
|
|
|
2008-03-22 18:47:13 +01:00
|
|
|
const uint32_t select_input_val = XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT;
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
for(screen_nbr = 0;
|
2008-04-09 12:05:37 +02:00
|
|
|
screen_nbr < xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
|
2008-03-21 16:50:17 +01:00
|
|
|
screen_nbr++)
|
2008-04-09 12:05:37 +02:00
|
|
|
/* This causes an error if some other window manager is running */
|
|
|
|
xcb_change_window_attributes(globalconf.connection,
|
|
|
|
xcb_aux_get_screen(globalconf.connection, screen_nbr)->root,
|
2008-03-22 18:47:13 +01:00
|
|
|
XCB_CW_EVENT_MASK, &select_input_val);
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-04-09 12:05:37 +02:00
|
|
|
/* Need to xcb_flush to validate error handler */
|
|
|
|
xcb_aux_sync(globalconf.connection);
|
2007-12-31 10:10:24 +01:00
|
|
|
|
2008-04-09 12:05:37 +02:00
|
|
|
/* Process all errors in the queue if any */
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_poll_for_event_loop(globalconf.evenths);
|
|
|
|
|
2008-04-09 12:05:37 +02:00
|
|
|
/* Set the default xerror handler */
|
2008-03-27 16:51:24 +01:00
|
|
|
xutil_set_error_handler_catch_all(globalconf.evenths, xerror, NULL);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-03-24 00:48:42 +01:00
|
|
|
/* Allocate the key symbols */
|
2008-04-09 12:05:37 +02:00
|
|
|
globalconf.keysyms = xcb_key_symbols_alloc(globalconf.connection);
|
2008-03-24 00:48:42 +01:00
|
|
|
|
|
|
|
/* Get the NumLock, ShiftLock and CapsLock masks */
|
2008-04-09 12:05:37 +02:00
|
|
|
xutil_getlockmask(globalconf.connection, globalconf.keysyms, &globalconf.numlockmask,
|
|
|
|
&globalconf.shiftlockmask, &globalconf.capslockmask);
|
2007-09-16 12:13:34 +02:00
|
|
|
|
2007-12-31 10:10:24 +01:00
|
|
|
/* init EWMH atoms */
|
2007-12-27 18:18:12 +01:00
|
|
|
ewmh_init_atoms();
|
|
|
|
|
2007-12-31 10:10:24 +01:00
|
|
|
/* init screens struct */
|
2008-04-09 12:05:37 +02:00
|
|
|
globalconf.screens_info = screensinfo_new(globalconf.connection);
|
2008-03-13 09:28:21 +01:00
|
|
|
globalconf.screens = p_new(VirtScreen, globalconf.screens_info->nscreen);
|
2007-12-17 03:56:29 +01:00
|
|
|
focus_add_client(NULL);
|
2007-12-31 10:10:24 +01:00
|
|
|
|
|
|
|
/* parse config */
|
2007-12-16 13:22:13 +01:00
|
|
|
config_parse(confpath);
|
2007-09-16 14:54:29 +02:00
|
|
|
|
2008-03-06 16:16:39 +01:00
|
|
|
/* init cursors */
|
2008-03-21 16:50:17 +01:00
|
|
|
globalconf.cursor[CurNormal] = create_font_cursor(CURSOR_LEFT_PTR);
|
|
|
|
globalconf.cursor[CurResize] = create_font_cursor(CURSOR_SIZING);
|
|
|
|
globalconf.cursor[CurMove] = create_font_cursor(CURSOR_FLEUR);
|
2008-03-06 16:16:39 +01:00
|
|
|
|
2007-12-31 10:10:24 +01:00
|
|
|
/* for each virtual screen */
|
2008-03-21 16:50:17 +01:00
|
|
|
for(screen_nbr = 0; screen_nbr < globalconf.screens_info->nscreen; screen_nbr++)
|
2008-03-06 16:16:39 +01:00
|
|
|
{
|
|
|
|
/* view at least one tag */
|
2008-03-21 16:50:17 +01:00
|
|
|
tag_view(globalconf.screens[screen_nbr].tags, true);
|
2008-04-09 12:56:52 +02:00
|
|
|
for(statusbar = globalconf.screens[screen_nbr].statusbar;
|
|
|
|
statusbar; statusbar = statusbar->next)
|
2008-03-06 16:16:39 +01:00
|
|
|
statusbar_init(statusbar);
|
|
|
|
}
|
2008-03-10 12:41:07 +01:00
|
|
|
|
2008-03-06 16:16:39 +01:00
|
|
|
/* select for events */
|
2008-03-21 16:50:17 +01:00
|
|
|
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]
|
|
|
|
};
|
2007-10-03 20:46:03 +02:00
|
|
|
|
|
|
|
/* do this only for real screen */
|
2008-03-21 16:50:17 +01:00
|
|
|
for(screen_nbr = 0;
|
2008-04-09 12:05:37 +02:00
|
|
|
screen_nbr < xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
|
2008-03-21 16:50:17 +01:00
|
|
|
screen_nbr++)
|
2007-10-03 20:46:03 +02:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_change_window_attributes(globalconf.connection,
|
2008-03-27 16:05:37 +01:00
|
|
|
xcb_aux_get_screen(globalconf.connection, screen_nbr)->root,
|
2008-03-21 16:50:17 +01:00
|
|
|
XCB_CW_EVENT_MASK | XCB_CW_CURSOR,
|
|
|
|
change_win_vals);
|
|
|
|
ewmh_set_supported_hints(screen_nbr);
|
2008-01-23 09:13:02 +01:00
|
|
|
/* call this to at least grab root window clicks */
|
2008-03-21 16:50:17 +01:00
|
|
|
window_root_grabbuttons(screen_nbr);
|
|
|
|
window_root_grabkeys(screen_nbr);
|
2007-09-16 12:13:34 +02:00
|
|
|
}
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-03-10 12:41:07 +01:00
|
|
|
/* scan existing windows */
|
|
|
|
scan();
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
/* process all errors in the queue if any */
|
|
|
|
xcb_poll_for_event_loop(globalconf.evenths);
|
|
|
|
|
|
|
|
set_button_press_event_handler(globalconf.evenths, event_handle_buttonpress, NULL);
|
|
|
|
set_configure_request_event_handler(globalconf.evenths, event_handle_configurerequest, NULL);
|
|
|
|
set_configure_notify_event_handler(globalconf.evenths, event_handle_configurenotify, NULL);
|
|
|
|
set_destroy_notify_event_handler(globalconf.evenths, event_handle_destroynotify, NULL);
|
|
|
|
set_enter_notify_event_handler(globalconf.evenths, event_handle_enternotify, NULL);
|
|
|
|
set_expose_event_handler(globalconf.evenths, event_handle_expose, NULL);
|
|
|
|
set_key_press_event_handler(globalconf.evenths, event_handle_keypress, NULL);
|
|
|
|
set_mapping_notify_event_handler(globalconf.evenths, event_handle_mappingnotify, NULL);
|
|
|
|
set_map_request_event_handler(globalconf.evenths, event_handle_maprequest, NULL);
|
|
|
|
set_property_notify_event_handler(globalconf.evenths, event_handle_propertynotify, NULL);
|
|
|
|
set_unmap_notify_event_handler(globalconf.evenths, event_handle_unmapnotify, NULL);
|
|
|
|
set_client_message_event_handler(globalconf.evenths, event_handle_clientmessage, NULL);
|
2007-09-07 12:29:54 +02:00
|
|
|
|
2007-09-16 13:55:21 +02:00
|
|
|
/* check for shape extension */
|
2008-04-09 12:05:37 +02:00
|
|
|
shape_query = xcb_get_extension_data(globalconf.connection, &xcb_shape_id);
|
2008-03-21 16:50:17 +01:00
|
|
|
if((globalconf.have_shape = shape_query->present))
|
2008-04-09 12:56:52 +02:00
|
|
|
xcb_set_event_handler(globalconf.evenths,
|
|
|
|
(shape_query->first_event + XCB_SHAPE_NOTIFY),
|
|
|
|
(xcb_generic_event_handler_t) event_handle_shape,
|
|
|
|
NULL);
|
2007-09-13 15:57:35 +02:00
|
|
|
|
2007-09-16 13:55:21 +02:00
|
|
|
/* check for randr extension */
|
2008-04-09 12:05:37 +02:00
|
|
|
randr_query = xcb_get_extension_data(globalconf.connection, &xcb_randr_id);
|
2008-03-21 16:50:17 +01:00
|
|
|
if((globalconf.have_randr = randr_query->present))
|
2008-04-09 12:56:52 +02:00
|
|
|
xcb_set_event_handler(globalconf.evenths,
|
|
|
|
(randr_query->first_event + XCB_RANDR_SCREEN_CHANGE_NOTIFY),
|
2008-03-21 16:50:17 +01:00
|
|
|
(xcb_generic_event_handler_t) event_handle_randr_screen_change_notify,
|
|
|
|
NULL);
|
2007-09-13 16:00:03 +02:00
|
|
|
|
2008-04-09 12:05:37 +02:00
|
|
|
xcb_aux_sync(globalconf.connection);
|
2007-09-07 12:29:54 +02:00
|
|
|
|
2007-10-29 16:14:50 +01:00
|
|
|
/* get socket fd */
|
2008-03-21 11:26:56 +01:00
|
|
|
csfd = socket_getclient();
|
|
|
|
addr = socket_getaddr(getenv("DISPLAY"));
|
2007-10-29 10:57:49 +01:00
|
|
|
|
2007-10-29 16:14:50 +01:00
|
|
|
if(bind(csfd, (const struct sockaddr *) addr, SUN_LEN(addr)))
|
2007-10-15 22:52:49 +02:00
|
|
|
{
|
2007-10-29 16:14:50 +01:00
|
|
|
if(errno == EADDRINUSE)
|
2007-10-15 22:52:49 +02:00
|
|
|
{
|
2007-10-29 16:14:50 +01:00
|
|
|
if(unlink(addr->sun_path))
|
2008-03-10 09:26:20 +01:00
|
|
|
warn("error unlinking existing file: %s\n", strerror(errno));
|
2007-10-29 16:14:50 +01:00
|
|
|
if(bind(csfd, (const struct sockaddr *) addr, SUN_LEN(addr)))
|
2008-03-10 09:26:20 +01:00
|
|
|
warn("error binding UNIX domain socket: %s\n", strerror(errno));
|
2007-10-15 22:52:49 +02:00
|
|
|
}
|
2007-10-29 16:14:50 +01:00
|
|
|
else
|
2008-03-10 09:26:20 +01:00
|
|
|
warn("error binding UNIX domain socket: %s\n", strerror(errno));
|
2007-10-15 22:52:49 +02:00
|
|
|
}
|
|
|
|
|
2007-12-27 16:03:21 +01:00
|
|
|
/* register function for signals */
|
|
|
|
signal(SIGINT, &exit_on_signal);
|
|
|
|
signal(SIGTERM, &exit_on_signal);
|
|
|
|
signal(SIGHUP, &exit_on_signal);
|
|
|
|
|
2008-01-23 20:58:05 +01:00
|
|
|
/* refresh everything before waiting events */
|
|
|
|
statusbar_refresh();
|
|
|
|
layout_refresh();
|
2008-02-13 06:53:08 +01:00
|
|
|
|
2007-10-29 10:57:49 +01:00
|
|
|
/* main event loop, also reads status text from socket */
|
2007-09-05 20:15:00 +02:00
|
|
|
while(running)
|
|
|
|
{
|
2007-10-12 17:41:54 +02:00
|
|
|
FD_ZERO(&rd);
|
2007-10-15 22:52:49 +02:00
|
|
|
if(csfd >= 0)
|
|
|
|
FD_SET(csfd, &rd);
|
2007-10-12 17:41:54 +02:00
|
|
|
FD_SET(xfd, &rd);
|
2007-10-29 10:57:49 +01:00
|
|
|
if(select(MAX(xfd, csfd) + 1, &rd, NULL, NULL, NULL) == -1)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
if(errno == EINTR)
|
|
|
|
continue;
|
|
|
|
eprint("select failed\n");
|
|
|
|
}
|
2007-10-15 22:52:49 +02:00
|
|
|
if(csfd >= 0 && FD_ISSET(csfd, &rd))
|
|
|
|
switch (r = recv(csfd, buf, sizeof(buf)-1, MSG_TRUNC))
|
|
|
|
{
|
2008-01-07 18:12:38 +01:00
|
|
|
case -1:
|
2008-03-19 13:11:13 +01:00
|
|
|
warn("error reading UNIX domain socket: %s\n", strerror(errno));
|
2007-10-15 22:52:49 +02:00
|
|
|
csfd = -1;
|
|
|
|
break;
|
2008-01-07 18:12:38 +01:00
|
|
|
case 0:
|
2007-10-15 22:52:49 +02:00
|
|
|
break;
|
2008-01-07 18:12:38 +01:00
|
|
|
default:
|
2007-10-29 10:57:49 +01:00
|
|
|
if(r >= ssizeof(buf))
|
2007-10-15 22:52:49 +02:00
|
|
|
break;
|
|
|
|
buf[r] = '\0';
|
2008-04-09 13:14:25 +02:00
|
|
|
__uicb_parsecmd(buf);
|
2008-01-24 20:43:06 +01:00
|
|
|
statusbar_refresh();
|
|
|
|
layout_refresh();
|
2007-10-15 22:52:49 +02:00
|
|
|
}
|
2008-01-24 19:14:49 +01:00
|
|
|
/* two level XPending:
|
|
|
|
* we need to first check we have XEvent to handle
|
|
|
|
* and if so, we handle them all in a round.
|
|
|
|
* Then when we have refresh()'ed stuff so maybe new XEvent
|
|
|
|
* are available and select() won't tell us, so let's check
|
|
|
|
* with XPending() again.
|
|
|
|
*/
|
2008-04-09 12:05:37 +02:00
|
|
|
while((ev = xcb_poll_for_event(globalconf.connection)))
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
do
|
2008-01-18 11:21:40 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_handle_event(globalconf.evenths, ev);
|
2008-02-13 06:53:08 +01:00
|
|
|
|
2008-01-25 12:55:44 +01:00
|
|
|
/* need to resync */
|
2008-04-09 12:05:37 +02:00
|
|
|
xcb_aux_sync(globalconf.connection);
|
2008-03-30 15:46:07 +02:00
|
|
|
|
|
|
|
p_delete(&ev);
|
2008-04-09 12:05:37 +02:00
|
|
|
} while((ev = xcb_poll_for_event(globalconf.connection)));
|
2008-02-13 06:53:08 +01:00
|
|
|
|
2008-01-24 19:14:49 +01:00
|
|
|
statusbar_refresh();
|
|
|
|
layout_refresh();
|
2008-02-13 06:53:08 +01:00
|
|
|
|
2008-01-17 16:12:50 +01:00
|
|
|
/* need to resync */
|
2008-04-09 12:05:37 +02:00
|
|
|
xcb_aux_sync(globalconf.connection);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
}
|
2007-10-12 17:41:54 +02:00
|
|
|
|
2008-02-04 14:43:20 +01:00
|
|
|
|
2007-10-15 22:52:49 +02:00
|
|
|
if(csfd > 0 && close(csfd))
|
2008-03-19 13:11:13 +01:00
|
|
|
warn("error closing UNIX domain socket: %s\n", strerror(errno));
|
2007-10-29 16:14:50 +01:00
|
|
|
if(unlink(addr->sun_path))
|
2008-03-19 13:11:13 +01:00
|
|
|
warn("error unlinking UNIX domain socket: %s\n", strerror(errno));
|
2007-10-29 16:23:05 +01:00
|
|
|
p_delete(&addr);
|
2007-10-15 22:52:49 +02:00
|
|
|
|
2008-02-04 14:43:20 +01:00
|
|
|
/* remap all clients since some WM won't handle them otherwise */
|
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
|
|
|
client_unban(c);
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_aux_sync(globalconf.connection);
|
2008-02-04 14:43:20 +01:00
|
|
|
|
2008-04-09 12:05:37 +02:00
|
|
|
xcb_disconnect(globalconf.connection);
|
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
|
|
|
}
|
2008-04-09 12:05:37 +02:00
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|