]> git.lizzy.rs Git - bspwm.git/blob - bspwm.c
Reinstate the motion recorder for FFP
[bspwm.git] / bspwm.c
1 /* Copyright (c) 2012, Bastien Dejean
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice, this
8  *    list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright notice,
10  *    this list of conditions and the following disclaimer in the documentation
11  *    and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sys/select.h>
29 #ifdef __OpenBSD__
30 #include <sys/types.h>
31 #endif
32 #include <sys/wait.h>
33 #include <sys/socket.h>
34 #include <sys/un.h>
35 #include <signal.h>
36 #include <unistd.h>
37 #include <xcb/xinerama.h>
38 #include "types.h"
39 #include "desktop.h"
40 #include "monitor.h"
41 #include "settings.h"
42 #include "messages.h"
43 #include "subscribe.h"
44 #include "events.h"
45 #include "common.h"
46 #include "window.h"
47 #include "history.h"
48 #include "stack.h"
49 #include "ewmh.h"
50 #include "rule.h"
51 #include "bspwm.h"
52
53 int main(int argc, char *argv[])
54 {
55         fd_set descriptors;
56         char socket_path[MAXLEN];
57         config_path[0] = '\0';
58         int sock_fd, cli_fd, dpy_fd, max_fd, n;
59         struct sockaddr_un sock_address;
60         char msg[BUFSIZ] = {0};
61         xcb_generic_event_t *event;
62         char opt;
63
64         while ((opt = getopt(argc, argv, "hvc:")) != (char)-1) {
65                 switch (opt) {
66                         case 'h':
67                                 printf(WM_NAME " [-h|-v|-c CONFIG_PATH]\n");
68                                 exit(EXIT_SUCCESS);
69                                 break;
70                         case 'v':
71                                 printf("%s\n", VERSION);
72                                 exit(EXIT_SUCCESS);
73                                 break;
74                         case 'c':
75                                 snprintf(config_path, sizeof(config_path), "%s", optarg);
76                                 break;
77                 }
78         }
79
80         if (config_path[0] == '\0') {
81                 char *config_home = getenv(CONFIG_HOME_ENV);
82                 if (config_home != NULL)
83                         snprintf(config_path, sizeof(config_path), "%s/%s/%s", config_home, WM_NAME, CONFIG_NAME);
84                 else
85                         snprintf(config_path, sizeof(config_path), "%s/%s/%s/%s", getenv("HOME"), ".config", WM_NAME, CONFIG_NAME);
86         }
87
88         dpy = xcb_connect(NULL, &default_screen);
89
90         if (!check_connection(dpy))
91                 exit(EXIT_FAILURE);
92
93         load_settings();
94         setup();
95
96         dpy_fd = xcb_get_file_descriptor(dpy);
97
98         char *sp = getenv(SOCKET_ENV_VAR);
99         if (sp != NULL) {
100                 snprintf(socket_path, sizeof(socket_path), "%s", sp);
101         } else {
102                 char *host = NULL;
103                 int dn = 0, sn = 0;
104                 if (xcb_parse_display(NULL, &host, &dn, &sn) != 0)
105                         snprintf(socket_path, sizeof(socket_path), SOCKET_PATH_TPL, host, dn, sn);
106                 free(host);
107         }
108
109         sock_address.sun_family = AF_UNIX;
110         snprintf(sock_address.sun_path, sizeof(sock_address.sun_path), "%s", socket_path);
111
112         sock_fd = socket(AF_UNIX, SOCK_STREAM, 0);
113
114         if (sock_fd == -1)
115                 err("Couldn't create the socket.\n");
116
117         if (bind(sock_fd, (struct sockaddr *) &sock_address, sizeof(sock_address)) == -1)
118                 err("Couldn't bind a name to the socket.\n");
119
120         if (listen(sock_fd, SOMAXCONN) == -1)
121                 err("Couldn't listen to the socket.\n");
122
123         signal(SIGINT, sig_handler);
124         signal(SIGHUP, sig_handler);
125         signal(SIGTERM, sig_handler);
126         signal(SIGCHLD, sig_handler);
127         signal(SIGPIPE, SIG_IGN);
128         run_config();
129         running = true;
130
131         while (running) {
132
133                 xcb_flush(dpy);
134
135                 FD_ZERO(&descriptors);
136                 FD_SET(sock_fd, &descriptors);
137                 FD_SET(dpy_fd, &descriptors);
138                 max_fd = MAX(sock_fd, dpy_fd);
139                 for (pending_rule_t *pr = pending_rule_head; pr != NULL; pr = pr->next) {
140                         FD_SET(pr->fd, &descriptors);
141                         if (pr->fd > max_fd)
142                                 max_fd = pr->fd;
143                 }
144
145                 if (select(max_fd + 1, &descriptors, NULL, NULL, NULL) > 0) {
146
147                         pending_rule_t *pr = pending_rule_head;
148                         while (pr != NULL) {
149                                 pending_rule_t *next = pr->next;
150                                 if (FD_ISSET(pr->fd, &descriptors)) {
151                                         manage_window(pr->win, pr->csq, pr->fd);
152                                         remove_pending_rule(pr);
153                                 }
154                                 pr = next;
155                         }
156
157                         if (FD_ISSET(sock_fd, &descriptors)) {
158                                 cli_fd = accept(sock_fd, NULL, 0);
159                                 if (cli_fd > 0 && (n = recv(cli_fd, msg, sizeof(msg), 0)) > 0) {
160                                         msg[n] = '\0';
161                                         FILE *rsp = fdopen(cli_fd, "w");
162                                         if (rsp != NULL) {
163                                                 int ret = handle_message(msg, n, rsp);
164                                                 if (ret != MSG_SUBSCRIBE) {
165                                                         if (ret != MSG_SUCCESS)
166                                                                 fprintf(rsp, "%c", ret);
167                                                         fflush(rsp);
168                                                         fclose(rsp);
169                                                 }
170                                         } else {
171                                                 warn("Can't open the client socket as file.\n");
172                                                 close(cli_fd);
173                                         }
174                                 }
175                         }
176
177                         if (FD_ISSET(dpy_fd, &descriptors)) {
178                                 while ((event = xcb_poll_for_event(dpy)) != NULL) {
179                                         handle_event(event);
180                                         free(event);
181                                 }
182                         }
183                 }
184
185                 if (!check_connection(dpy))
186                         running = false;
187         }
188
189         cleanup();
190         close(sock_fd);
191         unlink(socket_path);
192         xcb_ewmh_connection_wipe(ewmh);
193         xcb_destroy_window(dpy, meta_window);
194         xcb_destroy_window(dpy, motion_recorder);
195         free(ewmh);
196         xcb_flush(dpy);
197         xcb_disconnect(dpy);
198         return exit_status;
199 }
200
201 void init(void)
202 {
203         num_monitors = num_desktops = num_clients = 0;
204         monitor_uid = desktop_uid = 0;
205         mon = mon_head = mon_tail = pri_mon = NULL;
206         history_head = history_tail = history_needle = NULL;
207         rule_head = rule_tail = NULL;
208         stack_head = stack_tail = NULL;
209         subscribe_head = subscribe_tail = NULL;
210         pending_rule_head = pending_rule_tail = NULL;
211         last_motion_time = last_motion_x = last_motion_y = 0;
212         visible = auto_raise = sticky_still = record_history = true;
213         randr_base = 0;
214         exit_status = 0;
215 }
216
217 void setup(void)
218 {
219         init();
220         ewmh_init();
221         screen = xcb_setup_roots_iterator(xcb_get_setup(dpy)).data;
222         if (screen == NULL)
223                 err("Can't acquire the default screen.\n");
224         root = screen->root;
225         register_events();
226
227         screen_width = screen->width_in_pixels;
228         screen_height = screen->height_in_pixels;
229         root_depth = screen->root_depth;
230
231         meta_window = xcb_generate_id(dpy);
232         xcb_create_window(dpy, XCB_COPY_FROM_PARENT, meta_window, root, -1, -1, 1, 1, 0, XCB_WINDOW_CLASS_INPUT_ONLY, XCB_COPY_FROM_PARENT, XCB_NONE, NULL);
233
234         motion_recorder = xcb_generate_id(dpy);
235         uint32_t values[] = {XCB_EVENT_MASK_POINTER_MOTION};
236         xcb_create_window(dpy, XCB_COPY_FROM_PARENT, motion_recorder, root, 0, 0, screen_width, screen_height, 0, XCB_WINDOW_CLASS_INPUT_ONLY, XCB_COPY_FROM_PARENT, XCB_CW_EVENT_MASK, values);
237
238
239         xcb_atom_t net_atoms[] = {ewmh->_NET_SUPPORTED,
240                                   ewmh->_NET_SUPPORTING_WM_CHECK,
241                                   ewmh->_NET_DESKTOP_NAMES,
242                                   ewmh->_NET_NUMBER_OF_DESKTOPS,
243                                   ewmh->_NET_CURRENT_DESKTOP,
244                                   ewmh->_NET_CLIENT_LIST,
245                                   ewmh->_NET_ACTIVE_WINDOW,
246                                   ewmh->_NET_CLOSE_WINDOW,
247                                   ewmh->_NET_WM_DESKTOP,
248                                   ewmh->_NET_WM_STATE,
249                                   ewmh->_NET_WM_STATE_FULLSCREEN,
250                                   ewmh->_NET_WM_STATE_STICKY,
251                                   ewmh->_NET_WM_STATE_DEMANDS_ATTENTION,
252                                   ewmh->_NET_WM_WINDOW_TYPE,
253                                   ewmh->_NET_WM_WINDOW_TYPE_DOCK,
254                                   ewmh->_NET_WM_WINDOW_TYPE_DESKTOP,
255                                   ewmh->_NET_WM_WINDOW_TYPE_NOTIFICATION,
256                                   ewmh->_NET_WM_WINDOW_TYPE_DIALOG,
257                                   ewmh->_NET_WM_WINDOW_TYPE_UTILITY,
258                                   ewmh->_NET_WM_WINDOW_TYPE_TOOLBAR};
259
260         xcb_ewmh_set_supported(ewmh, default_screen, LENGTH(net_atoms), net_atoms);
261         ewmh_set_supporting(meta_window);
262
263 #define GETATOM(a) \
264         get_atom(#a, &a);
265         GETATOM(WM_DELETE_WINDOW)
266         GETATOM(WM_TAKE_FOCUS)
267         GETATOM(_BSPWM_FLOATING_WINDOW)
268 #undef GETATOM
269
270         const xcb_query_extension_reply_t *qep = xcb_get_extension_data(dpy, &xcb_randr_id);
271         if (qep->present && update_monitors()) {
272                 randr = true;
273                 randr_base = qep->first_event;
274                 xcb_randr_select_input(dpy, root, XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE);
275         } else {
276                 randr = false;
277                 warn("Couldn't retrieve monitors via RandR.\n");
278                 bool xinerama_is_active = false;
279                 if (xcb_get_extension_data(dpy, &xcb_xinerama_id)->present) {
280                         xcb_xinerama_is_active_reply_t *xia = xcb_xinerama_is_active_reply(dpy, xcb_xinerama_is_active(dpy), NULL);
281                         if (xia != NULL) {
282                                 xinerama_is_active = xia->state;
283                                 free(xia);
284                         }
285                 }
286
287                 if (xinerama_is_active) {
288                         xcb_xinerama_query_screens_reply_t *xsq = xcb_xinerama_query_screens_reply(dpy, xcb_xinerama_query_screens(dpy), NULL);
289                         xcb_xinerama_screen_info_t *xsi = xcb_xinerama_query_screens_screen_info(xsq);
290                         int n = xcb_xinerama_query_screens_screen_info_length(xsq);
291                         for (int i = 0; i < n; i++) {
292                                 xcb_xinerama_screen_info_t info = xsi[i];
293                                 xcb_rectangle_t rect = (xcb_rectangle_t) {info.x_org, info.y_org, info.width, info.height};
294                                 monitor_t *m = add_monitor(rect);
295                                 add_desktop(m, make_desktop(NULL));
296                         }
297                         free(xsq);
298                 } else {
299                         warn("Xinerama is inactive.\n");
300                         xcb_rectangle_t rect = (xcb_rectangle_t) {0, 0, screen_width, screen_height};
301                         monitor_t *m = add_monitor(rect);
302                         add_desktop(m, make_desktop(NULL));
303                 }
304         }
305
306         ewmh_update_number_of_desktops();
307         ewmh_update_desktop_names();
308         ewmh_update_current_desktop();
309         frozen_pointer = make_pointer_state();
310         xcb_get_input_focus_reply_t *ifo = xcb_get_input_focus_reply(dpy, xcb_get_input_focus(dpy), NULL);
311         if (ifo != NULL && (ifo->focus == XCB_INPUT_FOCUS_POINTER_ROOT || ifo->focus == XCB_NONE))
312                 clear_input_focus();
313         free(ifo);
314 }
315
316 void register_events(void)
317 {
318         uint32_t values[] = {ROOT_EVENT_MASK};
319         xcb_generic_error_t *e = xcb_request_check(dpy, xcb_change_window_attributes_checked(dpy, root, XCB_CW_EVENT_MASK, values));
320         if (e != NULL) {
321                 xcb_disconnect(dpy);
322                 err("Another window manager is already running.\n");
323         }
324 }
325
326 void cleanup(void)
327 {
328         while (mon_head != NULL)
329                 remove_monitor(mon_head);
330         while (rule_head != NULL)
331                 remove_rule(rule_head);
332         while (stack_head != NULL)
333                 remove_stack(stack_head);
334         while (subscribe_head != NULL)
335                 remove_subscriber(subscribe_head);
336         while (pending_rule_head != NULL)
337                 remove_pending_rule(pending_rule_head);
338         empty_history();
339         free(frozen_pointer);
340 }
341
342 bool check_connection (xcb_connection_t *dpy)
343 {
344         int xerr;
345         if ((xerr = xcb_connection_has_error(dpy)) != 0) {
346                 warn("The server closed the connection: ");
347                 switch (xerr) {
348                         case XCB_CONN_ERROR:
349                                 warn("socket, pipe or stream error.\n");
350                                 break;
351                         case XCB_CONN_CLOSED_EXT_NOTSUPPORTED:
352                                 warn("unsupported extension.\n");
353                                 break;
354                         case XCB_CONN_CLOSED_MEM_INSUFFICIENT:
355                                 warn("not enough memory.\n");
356                                 break;
357                         case XCB_CONN_CLOSED_REQ_LEN_EXCEED:
358                                 warn("request length exceeded.\n");
359                                 break;
360                         case XCB_CONN_CLOSED_PARSE_ERR:
361                                 warn("can't parse display string.\n");
362                                 break;
363                         case XCB_CONN_CLOSED_INVALID_SCREEN:
364                                 warn("invalid screen.\n");
365                                 break;
366                         case XCB_CONN_CLOSED_FDPASSING_FAILED:
367                                 warn("failed to pass FD.\n");
368                                 break;
369                         default:
370                                 warn("unknown error.\n");
371                                 break;
372                 }
373                 return false;
374         } else {
375                 return true;
376         }
377 }
378
379 void sig_handler(int sig)
380 {
381         if (sig == SIGCHLD) {
382                 signal(sig, sig_handler);
383                 while (waitpid(-1, 0, WNOHANG) > 0)
384                         ;
385         } else if (sig == SIGINT || sig == SIGHUP || sig == SIGTERM) {
386                 running = false;
387         }
388 }