]> git.lizzy.rs Git - bspwm.git/blob - bspwm.c
83b1bd11de0220e6018cbf0c8cf67f9da66693b7
[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 == NULL)
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     xcb_intern_atom_reply_t *iar = xcb_intern_atom_reply(dpy, xcb_intern_atom(dpy, 0, strlen("_COMPTON_SHADOW"), "_COMPTON_SHADOW"), NULL);
84
85     if (iar != NULL) {
86         compton_shadow = iar->atom;
87         free(iar);
88     }
89
90     monitor_uid = desktop_uid = client_uid = rule_uid = 0;
91     mon = last_mon = mon_head = mon_tail = NULL;
92
93     bool xinerama_is_active = false;
94
95     if (xcb_get_extension_data(dpy, &xcb_xinerama_id)->present) {
96         xcb_xinerama_is_active_reply_t *xia = xcb_xinerama_is_active_reply(dpy, xcb_xinerama_is_active(dpy), NULL);
97         if (xia != NULL) {
98             xinerama_is_active = xia->state;
99             free(xia);
100         }
101     }
102
103     if (xinerama_is_active) {
104         xcb_xinerama_query_screens_reply_t *xsq = xcb_xinerama_query_screens_reply(dpy, xcb_xinerama_query_screens(dpy), NULL);
105         xcb_xinerama_screen_info_t *xsi = xcb_xinerama_query_screens_screen_info(xsq);
106         int n = xcb_xinerama_query_screens_screen_info_length(xsq);
107         for (int i = 0; i < n; i++) {
108             xcb_xinerama_screen_info_t info = xsi[i];
109             xcb_rectangle_t rect = (xcb_rectangle_t) {info.x_org, info.y_org, info.width, info.height};
110             add_monitor(&rect);
111         }
112         free(xsq);
113     } else {
114         warn("Xinerama is inactive.");
115         xcb_rectangle_t rect = (xcb_rectangle_t) {0, 0, screen_width, screen_height};
116         add_monitor(&rect);
117     }
118
119     for (monitor_t *m = mon_head; m != NULL; m = m->next)
120         add_desktop(m, NULL);
121
122     ewmh_update_number_of_desktops();
123     ewmh_update_desktop_names();
124     ewmh_update_current_desktop();
125     rule_head = rule_tail = NULL;
126     frozen_pointer = make_pointer_state();
127     split_mode = MODE_AUTOMATIC;
128     visible = true;
129     exit_status = 0;
130 }
131
132 int main(int argc, char *argv[])
133 {
134     fd_set descriptors;
135     char socket_path[MAXLEN];
136     char *fifo_path = NULL;
137     int sock_fd, ret_fd, dpy_fd, sel, n;
138     struct sockaddr_un sock_address;
139     size_t rsplen = 0;
140     char msg[BUFSIZ] = {0};
141     char rsp[BUFSIZ] = {0};
142     xcb_generic_event_t *event;
143     char opt;
144
145     while ((opt = getopt(argc, argv, "vs:")) != -1) {
146         switch (opt) {
147             case 'v':
148                 printf("%s\n", VERSION);
149                 exit(EXIT_SUCCESS);
150                 break;
151             case 's':
152                 fifo_path = optarg;
153                 break;
154         }
155     }
156
157     running = true;
158     dpy = xcb_connect(NULL, &default_screen);
159
160     if (xcb_connection_has_error(dpy))
161         err("Can't open the default display.\n");
162
163     setup();
164
165     dpy_fd = xcb_get_file_descriptor(dpy);
166
167     char *sp = getenv(SOCKET_ENV_VAR);
168     strncpy(socket_path, (sp == NULL ? DEFAULT_SOCKET_PATH : sp), sizeof(socket_path));
169
170     sock_address.sun_family = AF_UNIX;
171     strncpy(sock_address.sun_path, socket_path, sizeof(sock_address.sun_path));
172     unlink(socket_path);
173
174     sock_fd = socket(AF_UNIX, SOCK_STREAM, 0);
175
176     if (sock_fd == -1)
177         err("Couldn't create the socket.\n");
178
179     if (bind(sock_fd, (struct sockaddr *) &sock_address, sizeof(sock_address)) == -1)
180         err("Couldn't bind a name to the socket.\n");
181
182     if (listen(sock_fd, SOMAXCONN) == -1)
183         err("Couldn't listen to the socket.\n");
184
185     sel = MAX(sock_fd, dpy_fd) + 1;
186
187     if (fifo_path != NULL) {
188         int fifo_fd = open(fifo_path, O_RDWR | O_NONBLOCK);
189         if (fifo_fd != -1)
190             status_fifo = fdopen(fifo_fd, "w");
191         else
192             warn("Couldn't open status fifo.\n");
193     }
194
195     load_settings();
196     run_autostart();
197     ewmh_update_wm_name();
198
199     while (running) {
200
201         xcb_flush(dpy);
202
203         FD_ZERO(&descriptors);
204         FD_SET(sock_fd, &descriptors);
205         FD_SET(dpy_fd, &descriptors);
206
207         if (select(sel, &descriptors, NULL, NULL, NULL) > 0) {
208
209             if (FD_ISSET(sock_fd, &descriptors)) {
210                 ret_fd = accept(sock_fd, NULL, 0);
211                 if (ret_fd > 0 && (n = recv(ret_fd, msg, sizeof(msg), 0)) > 0) {
212                     msg[n] = '\0';
213                     process_message(msg, rsp);
214                     rsplen = strlen(rsp);
215                     if (rsp[rsplen - 1] == '\n')
216                         rsp[--rsplen] = '\0';
217                     send(ret_fd, rsp, rsplen, 0);
218                     close(ret_fd);
219                     rsp[0] = '\0';
220                 }
221             }
222
223             if (FD_ISSET(dpy_fd, &descriptors)) {
224                 while ((event = xcb_poll_for_event(dpy)) != NULL) {
225                     handle_event(event);
226                     free(event);
227                 }
228             }
229
230         }
231
232         if (xcb_connection_has_error(dpy))
233             err("The server has closed the connection.\n");
234     }
235
236     cleanup();
237     close(sock_fd);
238     if (status_fifo != NULL)
239         fclose(status_fifo);
240     xcb_ewmh_connection_wipe(ewmh);
241     free(ewmh);
242     xcb_flush(dpy);
243     xcb_disconnect(dpy);
244     return exit_status;
245 }