wibox.layout.align: make the middle widget really centered
[awesome.git] / awesome.c
blob9178d36ac9d69c1652e48a4859c4c3f0c72f13f2
1 /*
2 * awesome.c - awesome main functions
4 * Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <getopt.h>
24 #include <locale.h>
25 #include <stdio.h>
26 #include <unistd.h>
27 #include <signal.h>
29 #include <xcb/bigreq.h>
30 #include <xcb/randr.h>
31 #include <xcb/xcb_event.h>
32 #include <xcb/xinerama.h>
33 #include <xcb/xtest.h>
34 #include <xcb/shape.h>
36 #include <X11/Xlib-xcb.h>
38 #include <glib-unix.h>
40 #include "awesome.h"
41 #include "spawn.h"
42 #include "objects/client.h"
43 #include "xwindow.h"
44 #include "ewmh.h"
45 #include "dbus.h"
46 #include "systray.h"
47 #include "event.h"
48 #include "property.h"
49 #include "screen.h"
50 #include "luaa.h"
51 #include "common/version.h"
52 #include "common/atoms.h"
53 #include "common/xcursor.h"
54 #include "common/xutil.h"
55 #include "common/backtrace.h"
57 awesome_t globalconf;
59 /** argv used to run awesome */
60 static char *awesome_argv;
62 /** Call before exiting.
64 void
65 awesome_atexit(bool restart)
67 lua_pushboolean(globalconf.L, restart);
68 signal_object_emit(globalconf.L, &global_signals, "exit", 1);
70 a_dbus_cleanup();
72 systray_cleanup();
74 /* Close Lua */
75 lua_close(globalconf.L);
77 /* X11 is a great protocol. There is a save-set so that reparenting WMs
78 * don't kill clients when they shut down. However, when a focused windows
79 * is saved, the focus will move to its parent with revert-to none.
80 * Immediately afterwards, this parent is destroyed and the focus is gone.
81 * Work around this by placing the focus where we like it to be.
83 xcb_set_input_focus(globalconf.connection, XCB_INPUT_FOCUS_POINTER_ROOT,
84 XCB_NONE, XCB_CURRENT_TIME);
85 xcb_aux_sync(globalconf.connection);
87 /* Disconnect *after* closing lua */
88 xcb_disconnect(globalconf.connection);
91 /** Scan X to find windows to manage.
93 static void
94 scan(xcb_query_tree_cookie_t tree_c)
96 int i, tree_c_len;
97 xcb_query_tree_reply_t *tree_r;
98 xcb_window_t *wins = NULL;
99 xcb_get_window_attributes_reply_t *attr_r;
100 xcb_get_geometry_reply_t *geom_r;
101 long state;
103 tree_r = xcb_query_tree_reply(globalconf.connection,
104 tree_c,
105 NULL);
107 if(!tree_r)
108 return;
110 /* Get the tree of the children windows of the current root window */
111 if(!(wins = xcb_query_tree_children(tree_r)))
112 fatal("cannot get tree children");
114 tree_c_len = xcb_query_tree_children_length(tree_r);
115 xcb_get_window_attributes_cookie_t attr_wins[tree_c_len];
116 xcb_get_property_cookie_t state_wins[tree_c_len];
118 for(i = 0; i < tree_c_len; i++)
120 attr_wins[i] = xcb_get_window_attributes_unchecked(globalconf.connection,
121 wins[i]);
123 state_wins[i] = xwindow_get_state_unchecked(wins[i]);
126 xcb_get_geometry_cookie_t *geom_wins[tree_c_len];
128 for(i = 0; i < tree_c_len; i++)
130 attr_r = xcb_get_window_attributes_reply(globalconf.connection,
131 attr_wins[i],
132 NULL);
134 state = xwindow_get_state_reply(state_wins[i]);
136 if(!attr_r || attr_r->override_redirect
137 || attr_r->map_state == XCB_MAP_STATE_UNMAPPED
138 || state == XCB_ICCCM_WM_STATE_WITHDRAWN)
140 geom_wins[i] = NULL;
141 p_delete(&attr_r);
142 continue;
145 p_delete(&attr_r);
147 /* Get the geometry of the current window */
148 geom_wins[i] = p_alloca(xcb_get_geometry_cookie_t, 1);
149 *(geom_wins[i]) = xcb_get_geometry_unchecked(globalconf.connection, wins[i]);
152 for(i = 0; i < tree_c_len; i++)
154 if(!geom_wins[i] || !(geom_r = xcb_get_geometry_reply(globalconf.connection,
155 *(geom_wins[i]), NULL)))
156 continue;
158 client_manage(wins[i], geom_r, true);
160 p_delete(&geom_r);
163 p_delete(&tree_r);
166 static void
167 a_xcb_check(void)
169 xcb_generic_event_t *mouse = NULL, *event;
171 while((event = xcb_poll_for_event(globalconf.connection)))
173 /* We will treat mouse events later.
174 * We cannot afford to treat all mouse motion events,
175 * because that would be too much CPU intensive, so we just
176 * take the last we get after a bunch of events. */
177 if(XCB_EVENT_RESPONSE_TYPE(event) == XCB_MOTION_NOTIFY)
179 p_delete(&mouse);
180 mouse = event;
182 else
184 uint8_t type = XCB_EVENT_RESPONSE_TYPE(event);
185 if((type == XCB_ENTER_NOTIFY || type == XCB_LEAVE_NOTIFY) && mouse)
187 /* Make sure enter/motion/leave events are handled in the
188 * correct order */
189 event_handle(mouse);
190 p_delete(&mouse);
191 mouse = NULL;
193 event_handle(event);
194 p_delete(&event);
198 if(mouse)
200 event_handle(mouse);
201 p_delete(&mouse);
205 static gboolean
206 a_xcb_io_cb(GIOChannel *source, GIOCondition cond, gpointer data)
208 /* a_xcb_check() already handled all events */
210 if(xcb_connection_has_error(globalconf.connection))
211 fatal("X server connection broke");
213 return TRUE;
216 static gint
217 a_glib_poll(GPollFD *ufds, guint nfsd, gint timeout)
219 guint res;
220 awesome_refresh();
221 res = g_poll(ufds, nfsd, timeout);
222 a_xcb_check();
223 return res;
226 static void
227 signal_fatal(int signum)
229 buffer_t buf;
230 backtrace_get(&buf);
231 fatal("signal %d, dumping backtrace\n%s", signum, buf.s);
234 /** Function to exit on some signals.
235 * \param data currently unused
237 static gboolean
238 exit_on_signal(gpointer data)
240 g_main_loop_quit(globalconf.loop);
241 return TRUE;
244 void
245 awesome_restart(void)
247 awesome_atexit(true);
248 a_exec(awesome_argv);
251 /** Function to restart awesome on some signals.
252 * \param data currently unused
254 static gboolean
255 restart_on_signal(gpointer data)
257 awesome_restart();
258 return TRUE;
261 /** Print help and exit(2) with given exit_code.
262 * \param exit_code The exit code.
264 static void __attribute__ ((noreturn))
265 exit_help(int exit_code)
267 FILE *outfile = (exit_code == EXIT_SUCCESS) ? stdout : stderr;
268 fprintf(outfile,
269 "Usage: awesome [OPTION]\n\
270 -h, --help show help\n\
271 -v, --version show version\n\
272 -c, --config FILE configuration file to use\n\
273 -k, --check check configuration file syntax\n");
274 exit(exit_code);
277 /** Hello, this is main.
278 * \param argc Who knows.
279 * \param argv Who knows.
280 * \return EXIT_SUCCESS I hope.
283 main(int argc, char **argv)
285 char *confpath = NULL;
286 int xfd, i, opt;
287 ssize_t cmdlen = 1;
288 xdgHandle xdg;
289 bool no_argb = false;
290 xcb_generic_event_t *event;
291 xcb_query_tree_cookie_t tree_c;
292 static struct option long_options[] =
294 { "help", 0, NULL, 'h' },
295 { "version", 0, NULL, 'v' },
296 { "config", 1, NULL, 'c' },
297 { "check", 0, NULL, 'k' },
298 { "no-argb", 0, NULL, 'a' },
299 { NULL, 0, NULL, 0 }
302 /* clear the globalconf structure */
303 p_clear(&globalconf, 1);
304 globalconf.keygrabber = LUA_REFNIL;
305 globalconf.mousegrabber = LUA_REFNIL;
306 buffer_init(&globalconf.startup_errors);
308 /* save argv */
309 for(i = 0; i < argc; i++)
310 cmdlen += a_strlen(argv[i]) + 1;
312 awesome_argv = p_new(char, cmdlen);
313 a_strcpy(awesome_argv, cmdlen, argv[0]);
315 for(i = 1; i < argc; i++)
317 a_strcat(awesome_argv, cmdlen, " ");
318 a_strcat(awesome_argv, cmdlen, argv[i]);
321 /* Text won't be printed correctly otherwise */
322 setlocale(LC_CTYPE, "");
324 /* Get XDG basedir data */
325 xdgInitHandle(&xdg);
327 /* init lua */
328 luaA_init(&xdg);
330 /* check args */
331 while((opt = getopt_long(argc, argv, "vhkc:a",
332 long_options, NULL)) != -1)
333 switch(opt)
335 case 'v':
336 eprint_version();
337 break;
338 case 'h':
339 exit_help(EXIT_SUCCESS);
340 break;
341 case 'k':
342 if(!luaA_parserc(&xdg, confpath, false))
344 fprintf(stderr, "✘ Configuration file syntax error.\n");
345 return EXIT_FAILURE;
347 else
349 fprintf(stderr, "✔ Configuration file syntax OK.\n");
350 return EXIT_SUCCESS;
352 case 'c':
353 if(a_strlen(optarg))
354 confpath = a_strdup(optarg);
355 else
356 fatal("-c option requires a file name");
357 break;
358 case 'a':
359 no_argb = true;
360 break;
363 /* register function for signals */
364 g_unix_signal_add(SIGINT, exit_on_signal, NULL);
365 g_unix_signal_add(SIGTERM, exit_on_signal, NULL);
366 g_unix_signal_add(SIGHUP, restart_on_signal, NULL);
368 struct sigaction sa = { .sa_handler = signal_fatal, .sa_flags = 0 };
369 sigemptyset(&sa.sa_mask);
370 sigaction(SIGSEGV, &sa, 0);
372 /* X stuff */
373 globalconf.display = XOpenDisplay(NULL);
374 if (globalconf.display == NULL) {
375 fatal("cannot open display");
377 XSetEventQueueOwner(globalconf.display, XCBOwnsEventQueue);
378 globalconf.default_screen = XDefaultScreen(globalconf.display);
379 globalconf.connection = XGetXCBConnection(globalconf.display);
380 /* We have no clue where the input focus is right now */
381 globalconf.focus.need_update = true;
383 /* Double checking that connection is good and operatable with xcb */
384 if(xcb_connection_has_error(globalconf.connection))
385 fatal("cannot open display");
387 globalconf.screen = xcb_aux_get_screen(globalconf.connection, globalconf.default_screen);
388 globalconf.default_visual = draw_default_visual(globalconf.screen);
389 if(!no_argb)
390 globalconf.visual = draw_argb_visual(globalconf.screen);
391 if(!globalconf.visual)
392 globalconf.visual = globalconf.default_visual;
393 globalconf.default_depth = draw_visual_depth(globalconf.screen, globalconf.visual->visual_id);
394 globalconf.default_cmap = globalconf.screen->default_colormap;
395 if(globalconf.default_depth != globalconf.screen->root_depth)
397 // We need our own color map if we aren't using the default depth
398 globalconf.default_cmap = xcb_generate_id(globalconf.connection);
399 xcb_create_colormap(globalconf.connection, XCB_COLORMAP_ALLOC_NONE,
400 globalconf.default_cmap, globalconf.screen->root,
401 globalconf.visual->visual_id);
404 /* Prefetch all the extensions we might need */
405 xcb_prefetch_extension_data(globalconf.connection, &xcb_big_requests_id);
406 xcb_prefetch_extension_data(globalconf.connection, &xcb_test_id);
407 xcb_prefetch_extension_data(globalconf.connection, &xcb_randr_id);
408 xcb_prefetch_extension_data(globalconf.connection, &xcb_xinerama_id);
409 xcb_prefetch_extension_data(globalconf.connection, &xcb_shape_id);
411 /* Setup the main context */
412 g_main_context_set_poll_func(g_main_context_default(), &a_glib_poll);
414 /* initialize dbus */
415 a_dbus_init();
417 /* Get the file descriptor corresponding to the X connection */
418 xfd = xcb_get_file_descriptor(globalconf.connection);
419 GIOChannel *channel = g_io_channel_unix_new(xfd);
420 g_io_add_watch(channel, G_IO_IN, a_xcb_io_cb, NULL);
421 g_io_channel_unref(channel);
423 /* Grab server */
424 xcb_grab_server(globalconf.connection);
426 /* Make sure there are no pending events. Since we didn't really do anything
427 * at all yet, we will just discard all events which we received so far.
428 * The above GrabServer should make sure no new events are generated. */
429 xcb_aux_sync(globalconf.connection);
430 while ((event = xcb_poll_for_event(globalconf.connection)) != NULL)
432 /* Make sure errors are printed */
433 uint8_t response_type = XCB_EVENT_RESPONSE_TYPE(event);
434 if(response_type == 0)
435 event_handle(event);
436 p_delete(&event);
440 const uint32_t select_input_val = XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT;
442 /* This causes an error if some other window manager is running */
443 xcb_change_window_attributes(globalconf.connection,
444 globalconf.screen->root,
445 XCB_CW_EVENT_MASK, &select_input_val);
448 /* Need to xcb_flush to validate error handler */
449 xcb_aux_sync(globalconf.connection);
451 /* Process all errors in the queue if any. There can be no events yet, so if
452 * this function returns something, it must be an error. */
453 if (xcb_poll_for_event(globalconf.connection) != NULL)
454 fatal("another window manager is already running");
456 /* Prefetch the maximum request length */
457 xcb_prefetch_maximum_request_length(globalconf.connection);
459 /* check for xtest extension */
460 const xcb_query_extension_reply_t *xtest_query;
461 xtest_query = xcb_get_extension_data(globalconf.connection, &xcb_test_id);
462 globalconf.have_xtest = xtest_query->present;
464 /* Allocate the key symbols */
465 globalconf.keysyms = xcb_key_symbols_alloc(globalconf.connection);
466 xcb_get_modifier_mapping_cookie_t xmapping_cookie =
467 xcb_get_modifier_mapping_unchecked(globalconf.connection);
469 /* init atom cache */
470 atoms_init(globalconf.connection);
472 /* init screens information */
473 screen_scan();
475 xutil_lock_mask_get(globalconf.connection, xmapping_cookie,
476 globalconf.keysyms, &globalconf.numlockmask,
477 &globalconf.shiftlockmask, &globalconf.capslockmask,
478 &globalconf.modeswitchmask);
480 /* do this only for real screen */
481 ewmh_init();
482 systray_init();
484 /* init spawn (sn) */
485 spawn_init();
487 /* The default GC is just a newly created associated with a window with
488 * depth globalconf.default_depth */
489 xcb_window_t tmp_win = xcb_generate_id(globalconf.connection);
490 globalconf.gc = xcb_generate_id(globalconf.connection);
491 xcb_create_window(globalconf.connection, globalconf.default_depth,
492 tmp_win, globalconf.screen->root,
493 -1, -1, 1, 1, 0,
494 XCB_COPY_FROM_PARENT, globalconf.visual->visual_id,
495 XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL | XCB_CW_COLORMAP,
496 (const uint32_t [])
498 globalconf.screen->black_pixel,
499 globalconf.screen->black_pixel,
500 globalconf.default_cmap
502 xcb_create_gc(globalconf.connection, globalconf.gc, tmp_win, XCB_GC_FOREGROUND | XCB_GC_BACKGROUND,
503 (const uint32_t[]) { globalconf.screen->black_pixel, globalconf.screen->white_pixel });
504 xcb_destroy_window(globalconf.connection, tmp_win);
506 /* Get the window tree associated to this screen */
507 tree_c = xcb_query_tree_unchecked(globalconf.connection,
508 globalconf.screen->root);
510 xcb_change_window_attributes(globalconf.connection,
511 globalconf.screen->root,
512 XCB_CW_EVENT_MASK,
513 ROOT_WINDOW_EVENT_MASK);
515 /* we will receive events, stop grabbing server */
516 xcb_ungrab_server(globalconf.connection);
518 /* Parse and run configuration file */
519 if (!luaA_parserc(&xdg, confpath, true))
520 fatal("couldn't find any rc file");
522 p_delete(&confpath);
524 xdgWipeHandle(&xdg);
526 /* scan existing windows */
527 scan(tree_c);
529 xcb_flush(globalconf.connection);
531 /* main event loop */
532 globalconf.loop = g_main_loop_new(NULL, FALSE);
533 g_main_loop_run(globalconf.loop);
534 g_main_loop_unref(globalconf.loop);
535 globalconf.loop = NULL;
537 awesome_atexit(false);
539 return EXIT_SUCCESS;
542 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80