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.
32 #include <xcb/xcb_event.h>
43 #include "common/version.h"
44 #include "common/atoms.h"
52 xcb_query_tree_cookie_t tree_cookie
;
55 /** Call before exiting.
67 /* reparent systray windows, otherwise they may die with their master */
68 for(em
= globalconf
.embedded
; em
; em
= em
->next
)
70 xcb_screen_t
*s
= xutil_screen_get(globalconf
.connection
, em
->phys_screen
);
71 xembed_window_unembed(globalconf
.connection
, em
->win
, s
->root
);
74 /* do this only for real screen */
76 screen_nbr
< xcb_setup_roots_length(xcb_get_setup(globalconf
.connection
));
78 systray_cleanup(screen_nbr
);
80 /* remap all clients since some WM won't handle them otherwise */
81 for(c
= globalconf
.clients
; c
; c
= c
->next
)
84 xcb_flush(globalconf
.connection
);
86 xcb_disconnect(globalconf
.connection
);
89 /** Scan X to find windows to manage.
94 int i
, screen
, phys_screen
, tree_c_len
;
95 const int screen_max
= xcb_setup_roots_length(xcb_get_setup(globalconf
.connection
));
96 root_win_t root_wins
[screen_max
];
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
;
103 for(phys_screen
= 0; phys_screen
< screen_max
; phys_screen
++)
105 /* Get the root window ID associated to this screen */
106 root_wins
[phys_screen
].id
= xutil_screen_get(globalconf
.connection
, phys_screen
)->root
;
108 /* Get the window tree associated to this screen */
109 root_wins
[phys_screen
].tree_cookie
= xcb_query_tree_unchecked(globalconf
.connection
,
110 root_wins
[phys_screen
].id
);
113 for(phys_screen
= 0; phys_screen
< screen_max
; phys_screen
++)
115 tree_r
= xcb_query_tree_reply(globalconf
.connection
,
116 root_wins
[phys_screen
].tree_cookie
,
122 /* Get the tree of the children windows of the current root window */
123 if(!(wins
= xcb_query_tree_children(tree_r
)))
124 fatal("E: cannot get tree children");
126 tree_c_len
= xcb_query_tree_children_length(tree_r
);
127 xcb_get_window_attributes_cookie_t attr_wins
[tree_c_len
];
128 xcb_get_property_cookie_t state_wins
[tree_c_len
];
130 for(i
= 0; i
< tree_c_len
; i
++)
132 attr_wins
[i
] = xcb_get_window_attributes_unchecked(globalconf
.connection
,
135 state_wins
[i
] = window_state_get_unchecked(wins
[i
]);
138 xcb_get_geometry_cookie_t
*geom_wins
[tree_c_len
];
140 for(i
= 0; i
< tree_c_len
; i
++)
142 bool has_awesome_prop
;
144 attr_r
= xcb_get_window_attributes_reply(globalconf
.connection
,
148 state
= window_state_get_reply(state_wins
[i
]);
150 has_awesome_prop
= xutil_text_prop_get(globalconf
.connection
, wins
[i
],
151 _AWESOME_TAGS
, NULL
, NULL
);
153 if(!attr_r
|| attr_r
->override_redirect
154 || (attr_r
->map_state
!= XCB_MAP_STATE_VIEWABLE
&& !has_awesome_prop
)
155 || (state
== XCB_WM_STATE_WITHDRAWN
&& !has_awesome_prop
))
164 /* Get the geometry of the current window */
165 geom_wins
[i
] = p_alloca(xcb_get_geometry_cookie_t
, 1);
166 *(geom_wins
[i
]) = xcb_get_geometry_unchecked(globalconf
.connection
, wins
[i
]);
169 for(i
= 0; i
< tree_c_len
; i
++)
171 if(!geom_wins
[i
] || !(geom_r
= xcb_get_geometry_reply(globalconf
.connection
,
172 *(geom_wins
[i
]), NULL
)))
175 screen
= screen_getbycoord(phys_screen
, geom_r
->x
, geom_r
->y
);
177 client_manage(wins
[i
], geom_r
, phys_screen
, screen
);
187 a_xcb_check_cb(EV_P_ ev_check
*w
, int revents
)
189 xcb_event_poll_for_event_loop(&globalconf
.evenths
);
190 awesome_refresh(globalconf
.connection
);
194 a_xcb_io_cb(EV_P_ ev_io
*w
, int revents
)
199 /** Startup Error handler to check if another window manager
200 * is already running.
201 * \param data Additional optional parameters data.
202 * \param c X connection.
203 * \param error Error event.
205 static int __attribute__ ((noreturn
))
206 xerrorstart(void * data
__attribute__ ((unused
)),
207 xcb_connection_t
* c
__attribute__ ((unused
)),
208 xcb_generic_error_t
* error
__attribute__ ((unused
)))
210 fatal("another window manager is already running");
213 /** Function to exit on some signals.
214 * \param sig the signal received, unused
217 exit_on_signal(EV_P_ ev_signal
*w
, int revents
)
223 awesome_restart(void)
226 a_exec(globalconf
.argv
);
229 /** Function to restart aweome on some signals.
230 * \param sig the signam received, unused
233 restart_on_signal(EV_P_ ev_signal
*w
, int revents
)
238 /** \brief awesome xerror function.
239 * There's no way to check accesses to destroyed windows, thus those cases are
240 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
241 * default error handler, which may call exit.
242 * \param data Currently unused.
243 * \param c The connectiont to the X server.
244 * \param e The error event.
245 * \return 0 if no error, or xerror's xlib return status.
248 xerror(void *data
__attribute__ ((unused
)),
249 xcb_connection_t
*c
__attribute__ ((unused
)),
250 xcb_generic_error_t
*e
)
254 if(!xutil_error_init(e
, &err
))
258 if(e
->error_code
== XUTIL_BAD_WINDOW
259 || (e
->error_code
== XUTIL_BAD_MATCH
&& err
.request_code
== XCB_SET_INPUT_FOCUS
)
260 || (e
->error_code
== XUTIL_BAD_VALUE
&& err
.request_code
== XCB_KILL_CLIENT
)
261 || (err
.request_code
== XCB_CONFIGURE_WINDOW
&& e
->error_code
== XUTIL_BAD_MATCH
))
264 warn("X error: request=%s, error=%s", err
.request_label
, err
.error_label
);
267 * Xlib code was using default X error handler, namely
268 * '_XDefaultError()', which displays more informations about the
269 * error and also exit if 'error_code'' equals to
270 * 'BadImplementation'
272 * \todo display more informations about the error (like the Xlib default error handler)
274 if(e
->error_code
== XUTIL_BAD_IMPLEMENTATION
)
275 fatal("X error: request=%s, error=%s", err
.request_label
, err
.error_label
);
278 xutil_error_wipe(&err
);
282 /** Print help and exit(2) with given exit_code.
283 * \param exit_code The exit code.
285 static void __attribute__ ((noreturn
))
286 exit_help(int exit_code
)
288 FILE *outfile
= (exit_code
== EXIT_SUCCESS
) ? stdout
: stderr
;
290 "Usage: awesome [OPTION]\n\
291 -h, --help show help\n\
292 -v, --version show version\n\
293 -c, --config FILE configuration file to use\n\
294 -k, --check check configuration file syntax\n");
298 /** Hello, this is main.
299 * \param argc Who knows.
300 * \param argv Who knows.
301 * \return EXIT_SUCCESS I hope.
304 main(int argc
, char **argv
)
306 const char *confpath
= NULL
;
307 int xfd
, i
, screen_nbr
, opt
, colors_nbr
;
308 xcolor_init_request_t colors_reqs
[2];
309 xcb_get_modifier_mapping_cookie_t xmapping_cookie
;
311 static struct option long_options
[] =
313 { "help", 0, NULL
, 'h' },
314 { "version", 0, NULL
, 'v' },
315 { "config", 1, NULL
, 'c' },
316 { "check", 0, NULL
, 'k' },
320 /* event loop watchers */
321 ev_io xio
= { .fd
= -1 };
327 /* clear the globalconf structure */
328 p_clear(&globalconf
, 1);
329 globalconf
.keygrabber
= LUA_REFNIL
;
332 for(i
= 0; i
< argc
; i
++)
333 cmdlen
+= a_strlen(argv
[i
]) + 1;
335 globalconf
.argv
= p_new(char, cmdlen
);
336 a_strcpy(globalconf
.argv
, cmdlen
, argv
[0]);
338 for(i
= 1; i
< argc
; i
++)
340 a_strcat(globalconf
.argv
, cmdlen
, " ");
341 a_strcat(globalconf
.argv
, cmdlen
, argv
[i
]);
344 /* Text won't be printed correctly otherwise */
345 setlocale(LC_CTYPE
, "");
351 while((opt
= getopt_long(argc
, argv
, "vhkc:",
352 long_options
, NULL
)) != -1)
356 eprint_version("awesome");
359 exit_help(EXIT_SUCCESS
);
362 if(!luaA_parserc(confpath
, false))
364 fprintf(stderr
, "✘ Configuration file error.\n");
369 fprintf(stderr
, "✔ Configuration file OK.\n");
374 confpath
= a_strdup(optarg
);
376 fatal("-c option requires a file name");
380 globalconf
.loop
= ev_default_loop(0);
381 ev_timer_init(&globalconf
.timer
, &luaA_on_timer
, 0., 0.);
383 /* register function for signals */
384 ev_signal_init(&sigint
, exit_on_signal
, SIGINT
);
385 ev_signal_init(&sigterm
, exit_on_signal
, SIGTERM
);
386 ev_signal_init(&sighup
, restart_on_signal
, SIGHUP
);
387 ev_signal_start(globalconf
.loop
, &sigint
);
388 ev_signal_start(globalconf
.loop
, &sigterm
);
389 ev_signal_start(globalconf
.loop
, &sighup
);
390 ev_unref(globalconf
.loop
);
391 ev_unref(globalconf
.loop
);
392 ev_unref(globalconf
.loop
);
395 globalconf
.connection
= xcb_connect(NULL
, &globalconf
.default_screen
);
396 if(xcb_connection_has_error(globalconf
.connection
))
397 fatal("cannot open display");
400 xcb_grab_server(globalconf
.connection
);
401 xcb_flush(globalconf
.connection
);
403 /* Get the file descriptor corresponding to the X connection */
404 xfd
= xcb_get_file_descriptor(globalconf
.connection
);
405 ev_io_init(&xio
, &a_xcb_io_cb
, xfd
, EV_READ
);
406 ev_io_start(globalconf
.loop
, &xio
);
407 ev_check_init(&xcheck
, &a_xcb_check_cb
);
408 ev_check_start(globalconf
.loop
, &xcheck
);
409 ev_unref(globalconf
.loop
);
411 /* Allocate a handler which will holds all errors and events */
412 xcb_event_handlers_init(globalconf
.connection
, &globalconf
.evenths
);
413 xutil_error_handler_catch_all_set(&globalconf
.evenths
, xerrorstart
, NULL
);
416 screen_nbr
< xcb_setup_roots_length(xcb_get_setup(globalconf
.connection
));
419 const uint32_t select_input_val
= XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT
;
421 /* This causes an error if some other window manager is running */
422 xcb_change_window_attributes(globalconf
.connection
,
423 xutil_screen_get(globalconf
.connection
, screen_nbr
)->root
,
424 XCB_CW_EVENT_MASK
, &select_input_val
);
427 /* Need to xcb_flush to validate error handler */
428 xcb_aux_sync(globalconf
.connection
);
430 /* Process all errors in the queue if any */
431 xcb_event_poll_for_event_loop(&globalconf
.evenths
);
433 /* Set the default xerror handler */
434 xutil_error_handler_catch_all_set(&globalconf
.evenths
, xerror
, NULL
);
436 /* Allocate the key symbols */
437 globalconf
.keysyms
= xcb_key_symbols_alloc(globalconf
.connection
);
439 /* Send the request to get the NumLock, ShiftLock and CapsLock
441 xmapping_cookie
= xcb_get_modifier_mapping_unchecked(globalconf
.connection
);
443 /* init atom cache */
444 atoms_init(globalconf
.connection
);
446 /* init screens information */
449 /* init default font and colors */
450 colors_reqs
[0] = xcolor_init_unchecked(&globalconf
.colors
.fg
,
451 "black", sizeof("black") - 1);
453 colors_reqs
[1] = xcolor_init_unchecked(&globalconf
.colors
.bg
,
454 "white", sizeof("white") - 1);
456 globalconf
.font
= draw_font_new(globalconf
.default_screen
, "sans 8");
459 globalconf
.cursor
[CurNormal
] = xutil_cursor_new(globalconf
.connection
, XUTIL_CURSOR_LEFT_PTR
);
460 globalconf
.cursor
[CurResize
] = xutil_cursor_new(globalconf
.connection
, XUTIL_CURSOR_SIZING
);
461 globalconf
.cursor
[CurResizeH
] = xutil_cursor_new(globalconf
.connection
, XUTIL_CURSOR_DOUBLE_ARROW_HORIZ
);
462 globalconf
.cursor
[CurResizeV
] = xutil_cursor_new(globalconf
.connection
, XUTIL_CURSOR_DOUBLE_ARROW_VERT
);
463 globalconf
.cursor
[CurMove
] = xutil_cursor_new(globalconf
.connection
, XUTIL_CURSOR_FLEUR
);
464 globalconf
.cursor
[CurTopRight
] = xutil_cursor_new(globalconf
.connection
, XUTIL_CURSOR_TOP_RIGHT_CORNER
);
465 globalconf
.cursor
[CurTopLeft
] = xutil_cursor_new(globalconf
.connection
, XUTIL_CURSOR_TOP_LEFT_CORNER
);
466 globalconf
.cursor
[CurBotRight
] = xutil_cursor_new(globalconf
.connection
, XUTIL_CURSOR_BOTTOM_RIGHT_CORNER
);
467 globalconf
.cursor
[CurBotLeft
] = xutil_cursor_new(globalconf
.connection
, XUTIL_CURSOR_BOTTOM_LEFT_CORNER
);
469 for(colors_nbr
= 0; colors_nbr
< 2; colors_nbr
++)
470 xcolor_init_reply(colors_reqs
[colors_nbr
]);
472 /* Process the reply of previously sent mapping request */
473 xutil_lock_mask_get(globalconf
.connection
, xmapping_cookie
,
474 globalconf
.keysyms
, &globalconf
.numlockmask
,
475 &globalconf
.shiftlockmask
, &globalconf
.capslockmask
);
477 /* do this only for real screen */
479 screen_nbr
< xcb_setup_roots_length(xcb_get_setup(globalconf
.connection
));
482 /* select for events */
483 const uint32_t change_win_vals
[] =
485 XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT
| XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY
486 | XCB_EVENT_MASK_ENTER_WINDOW
| XCB_EVENT_MASK_LEAVE_WINDOW
487 | XCB_EVENT_MASK_STRUCTURE_NOTIFY
488 | XCB_EVENT_MASK_PROPERTY_CHANGE
,
489 globalconf
.cursor
[CurNormal
]
492 xcb_change_window_attributes(globalconf
.connection
,
493 xutil_screen_get(globalconf
.connection
, screen_nbr
)->root
,
494 XCB_CW_EVENT_MASK
| XCB_CW_CURSOR
,
496 ewmh_init(screen_nbr
);
497 systray_init(screen_nbr
);
500 /* Parse and run configuration file */
501 luaA_parserc(confpath
, true);
503 /* scan existing windows */
506 /* process all errors in the queue if any */
507 xcb_event_poll_for_event_loop(&globalconf
.evenths
);
508 a_xcb_set_event_handlers();
509 a_xcb_set_property_handlers();
512 xcb_ungrab_server(globalconf
.connection
);
514 xcb_aux_sync(globalconf
.connection
);
519 /* refresh everything before waiting events */
520 awesome_refresh(globalconf
.connection
);
522 /* main event loop */
523 ev_loop(globalconf
.loop
, 0);
525 /* cleanup event loop */
526 ev_ref(globalconf
.loop
);
527 ev_check_stop(globalconf
.loop
, &xcheck
);
528 ev_ref(globalconf
.loop
);
529 ev_io_stop(globalconf
.loop
, &xio
);
536 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80