]> git.lizzy.rs Git - bspwm.git/blob - bspwm.c
45506740a7f8159cfde9f6c390dd2774dd4b9f43
[bspwm.git] / bspwm.c
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <string.h>
4 #include <unistd.h>
5 #include <signal.h>
6 #include <fcntl.h>
7 #include <sys/socket.h>
8 #include <sys/un.h>
9 #include <sys/select.h>
10 #include <sys/stat.h>
11 #include <sys/wait.h>
12 #include <xcb/xcb.h>
13 #include <xcb/xcb_event.h>
14 #include <xcb/xcb_ewmh.h>
15 #include <xcb/xinerama.h>
16 #include "types.h"
17 #include "settings.h"
18 #include "messages.h"
19 #include "rules.h"
20 #include "events.h"
21 #include "common.h"
22 #include "helpers.h"
23 #include "window.h"
24 #include "bspwm.h"
25 #include "tree.h"
26 #include "ewmh.h"
27
28 void quit(void)
29 {
30     running = false;
31 }
32
33 void cleanup(void)
34 {
35     while (mon_head != NULL)
36         remove_monitor(mon_head);
37     while (rule_head != NULL)
38         remove_rule(rule_head);
39     free(frozen_pointer);
40 }
41
42 void register_events(void)
43 {
44     uint32_t values[] = {ROOT_EVENT_MASK};
45     xcb_generic_error_t *e = xcb_request_check(dpy, xcb_change_window_attributes_checked(dpy, root, XCB_CW_EVENT_MASK, values));
46     if (e != NULL) {
47         xcb_disconnect(dpy);
48         err("Another window manager is already running.\n");
49     }
50 }
51
52 void setup(void)
53 {
54     ewmh_init();
55     screen = xcb_setup_roots_iterator(xcb_get_setup(dpy)).data;
56     if (!screen)
57         err("Can't acquire the default screen.\n");
58     root = screen->root;
59     register_events();
60
61     screen_width = screen->width_in_pixels;
62     screen_height = screen->height_in_pixels;
63     root_depth = screen->root_depth;
64
65     xcb_atom_t net_atoms[] = {ewmh->_NET_SUPPORTED,
66                               ewmh->_NET_DESKTOP_NAMES,
67                               ewmh->_NET_NUMBER_OF_DESKTOPS,
68                               ewmh->_NET_CURRENT_DESKTOP,
69                               ewmh->_NET_CLIENT_LIST,
70                               ewmh->_NET_ACTIVE_WINDOW,
71                               ewmh->_NET_WM_DESKTOP,
72                               ewmh->_NET_WM_STATE,
73                               ewmh->_NET_WM_STATE_FULLSCREEN,
74                               ewmh->_NET_WM_WINDOW_TYPE,
75                               ewmh->_NET_WM_WINDOW_TYPE_DOCK,
76                               ewmh->_NET_WM_WINDOW_TYPE_NOTIFICATION,
77                               ewmh->_NET_WM_WINDOW_TYPE_DIALOG,
78                               ewmh->_NET_WM_WINDOW_TYPE_UTILITY,
79                               ewmh->_NET_WM_WINDOW_TYPE_TOOLBAR};
80
81     xcb_ewmh_set_supported(ewmh, default_screen, LENGTH(net_atoms), net_atoms);
82
83     monitor_uid = desktop_uid = client_uid = rule_uid = 0;
84     mon = last_mon = mon_head = mon_tail = NULL;
85
86     bool xinerama_is_active = false;
87
88     if (xcb_get_extension_data(dpy, &xcb_xinerama_id)->present) {
89         xcb_xinerama_is_active_reply_t *xia = xcb_xinerama_is_active_reply(dpy, xcb_xinerama_is_active(dpy), NULL);
90         if (xia != NULL) {
91             xinerama_is_active = xia->state;
92             free(xia);
93         }
94     }
95
96     if (xinerama_is_active) {
97         xcb_xinerama_query_screens_reply_t *xsq = xcb_xinerama_query_screens_reply(dpy, xcb_xinerama_query_screens(dpy), NULL);
98         xcb_xinerama_screen_info_t *xsi = xcb_xinerama_query_screens_screen_info(xsq);
99         int n = xcb_xinerama_query_screens_screen_info_length(xsq);
100         for (int i = 0; i < n; i++) {
101             xcb_xinerama_screen_info_t info = xsi[i];
102             xcb_rectangle_t rect = (xcb_rectangle_t) {info.x_org, info.y_org, info.width, info.height};
103             add_monitor(&rect);
104         }
105         free(xsq);
106     } else {
107         warn("Xinerama is inactive.");
108         xcb_rectangle_t rect = (xcb_rectangle_t) {0, 0, screen_width, screen_height};
109         add_monitor(&rect);
110     }
111
112     for (monitor_t *m = mon_head; m != NULL; m = m->next)
113         add_desktop(m, NULL);
114
115     ewmh_update_number_of_desktops();
116     ewmh_update_desktop_names();
117     ewmh_update_current_desktop();
118     rule_head = rule_tail = NULL;
119     frozen_pointer = make_pointer_state();
120     update_pointer_position(&pointer_position);
121     last_entered = XCB_NONE;
122     split_mode = MODE_AUTOMATIC;
123     visible = true;
124     exit_status = 0;
125 }
126
127 int main(int argc, char *argv[])
128 {
129     fd_set descriptors;
130     char socket_path[MAXLEN];
131     char *fifo_path = NULL;
132     int sock_fd, ret_fd, dpy_fd, sel, n;
133     struct sockaddr_un sock_address;
134     size_t rsplen = 0;
135     char msg[BUFSIZ] = {0};
136     char rsp[BUFSIZ] = {0};
137     xcb_generic_event_t *event;
138     char opt;
139
140     while ((opt = getopt(argc, argv, "vs:")) != -1) {
141         switch (opt) {
142             case 'v':
143                 printf("%s\n", VERSION);
144                 exit(EXIT_SUCCESS);
145                 break;
146             case 's':
147                 fifo_path = optarg;
148                 break;
149         }
150     }
151
152     running = true;
153     dpy = xcb_connect(NULL, &default_screen);
154
155     if (xcb_connection_has_error(dpy))
156         err("Can't open the default display.\n");
157
158     setup();
159
160     dpy_fd = xcb_get_file_descriptor(dpy);
161
162     char *sp = getenv(SOCKET_ENV_VAR);
163     strncpy(socket_path, (sp == NULL ? DEFAULT_SOCKET_PATH : sp), sizeof(socket_path));
164
165     sock_address.sun_family = AF_UNIX;
166     strncpy(sock_address.sun_path, socket_path, sizeof(sock_address.sun_path));
167     unlink(socket_path);
168
169     sock_fd = socket(AF_UNIX, SOCK_STREAM, 0);
170
171     if (sock_fd == -1)
172         err("Couldn't create the socket.\n");
173
174     if (bind(sock_fd, (struct sockaddr *) &sock_address, sizeof(sock_address)) == -1)
175         err("Couldn't bind a name to the socket.\n");
176
177     if (listen(sock_fd, SOMAXCONN) == -1)
178         err("Couldn't listen to the socket.\n");
179
180     sel = MAX(sock_fd, dpy_fd) + 1;
181
182     if (fifo_path != NULL) {
183         int fifo_fd = open(fifo_path, O_RDWR | O_NONBLOCK);
184         if (fifo_fd != -1)
185             status_fifo = fdopen(fifo_fd, "w");
186         else
187             warn("Couldn't open status fifo.\n");
188     }
189
190     load_settings();
191     run_autostart();
192     ewmh_update_wm_name();
193
194     while (running) {
195
196         xcb_flush(dpy);
197
198         FD_ZERO(&descriptors);
199         FD_SET(sock_fd, &descriptors);
200         FD_SET(dpy_fd, &descriptors);
201
202         if (select(sel, &descriptors, NULL, NULL, NULL) > 0) {
203
204             if (FD_ISSET(sock_fd, &descriptors)) {
205                 ret_fd = accept(sock_fd, NULL, 0);
206                 if (ret_fd > 0 && (n = recv(ret_fd, msg, sizeof(msg), 0)) > 0) {
207                     msg[n] = '\0';
208                     process_message(msg, rsp);
209                     rsplen = strlen(rsp);
210                     if (rsp[rsplen - 1] == '\n')
211                         rsp[--rsplen] = '\0';
212                     send(ret_fd, rsp, rsplen, 0);
213                     close(ret_fd);
214                     rsp[0] = '\0';
215                 }
216             }
217
218             if (FD_ISSET(dpy_fd, &descriptors)) {
219                 while ((event = xcb_poll_for_event(dpy)) != NULL) {
220                     handle_event(event);
221                     free(event);
222                 }
223             }
224
225         }
226
227         if (xcb_connection_has_error(dpy))
228             err("The server has closed the connection.\n");
229     }
230
231     cleanup();
232     close(sock_fd);
233     if (status_fifo != NULL)
234         fclose(status_fifo);
235     xcb_ewmh_connection_wipe(ewmh);
236     free(ewmh);
237     xcb_flush(dpy);
238     xcb_disconnect(dpy);
239     return exit_status;
240 }