forked from stumpwm/stumpwm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstumpwm.lisp
More file actions
345 lines (305 loc) · 13.8 KB
/
stumpwm.lisp
File metadata and controls
345 lines (305 loc) · 13.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
;; Copyright (C) 2003-2008 Shawn Betts
;;
;; This file is part of stumpwm.
;;
;; stumpwm is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; stumpwm is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this software; see the file COPYING. If not, see
;; <http://www.gnu.org/licenses/>.
;; Commentary:
;;
;; Code:
(in-package :stumpwm)
(export '(*toplevel-io*
stumpwm
call-in-main-thread
in-main-thread-p
push-event
close-resources))
(defvar *in-main-thread* nil
"Dynamically bound to T during the execution of the main stumpwm function.")
;;; Main
(defun load-rc-file (&optional (catch-errors t))
"Load the user's .stumpwmrc file or the system wide one if that
doesn't exist. Returns a values list: whether the file loaded (t if no
rc files exist), the error if it didn't, and the rc file that was
loaded. When CATCH-ERRORS is nil, errors are left to be handled
further up. "
(let* ((user-rc
(probe-file (merge-pathnames #p".stumpwmrc" (user-homedir-pathname))))
(dir-rc
(probe-file (merge-pathnames #p".stumpwm.d/init.lisp" (user-homedir-pathname))))
(conf-rc
(probe-file (uiop:xdg-config-home #p"stumpwm/config/")))
(etc-rc (probe-file #p"/etc/stumpwmrc"))
(rc (or user-rc dir-rc conf-rc etc-rc)))
(if rc
(if catch-errors
(handler-case (load rc)
(error (c) (values nil (format nil "~a" c) rc))
(:no-error (&rest args) (declare (ignore args)) (values t nil rc)))
(progn
(load rc)
(values t nil rc)))
(values t nil nil))))
(defun error-handler (display error-key &rest key-vals &key asynchronous &allow-other-keys)
"Handle X errors"
(cond
;; ignore asynchronous window errors
((and asynchronous
(find error-key '(xlib:window-error xlib:drawable-error xlib:match-error)))
(dformat 4 "Ignoring error: ~s~%" error-key))
((eq error-key 'xlib:access-error)
(write-line "Another window manager is running.")
(throw :top-level :quit))
;; all other asynchronous errors are printed.
(asynchronous
(message "Caught Asynchronous X Error: ~s ~s." error-key key-vals))
(t
(apply 'error error-key :display display :error-key error-key key-vals))))
(defgeneric handle-top-level-condition (c))
(defmethod handle-top-level-condition (c)
;; Do nothing by default; there's nothing wrong with signalling
;; arbitrary conditions
)
(defmethod handle-top-level-condition ((c warning))
(muffle-warning))
(defmethod handle-top-level-condition ((c serious-condition))
(when (and (find-restart :remove-channel)
(not (typep *current-io-channel*
'(or stumpwm-timer-channel
display-channel
request-channel))))
(message "Removed channel ~S due to uncaught error '~A'." *current-io-channel* c)
(invoke-restart :remove-channel))
(ecase *top-level-error-action*
(:message
(let ((s (format nil "~&Caught '~a' at the top level. Please report this." c)))
(write-line s)
(print-backtrace)
(message "^1*^B~a" s)))
(:break (restart-case
(invoke-debugger c)
(:abort-debugging ()
:report (lambda (stream) (format stream "abort debugging"))
(throw :top-level (list c (backtrace-string))))))
(:abort
(throw :top-level (list c (backtrace-string))))))
(defclass request-channel ()
((in :initarg :in
:reader request-channel-in)
(out :initarg :out
:reader request-channel-out)
(queue :initform nil
:accessor request-channel-queue)
(lock :initform (sb-thread:make-mutex)
:reader request-channel-lock)))
(defvar *request-channel* nil)
(defmethod io-channel-ioport (io-loop (channel request-channel))
(io-channel-ioport io-loop (request-channel-in channel)))
(defmethod io-channel-events ((channel request-channel))
(list :read))
(defmethod io-channel-handle ((channel request-channel) (event (eql :read)) &key)
;; At this point, we know that there is at least one request written
;; on the pipe. We read all the data off the pipe and then evaluate
;; all the waiting jobs.
(loop
with in = (request-channel-in channel)
do (read-byte in)
while (listen in))
(let ((events (sb-thread:with-mutex ((request-channel-lock channel))
(let ((queue-copy (request-channel-queue channel)))
(setf (request-channel-queue channel) nil)
queue-copy))))
(dolist (event (reverse events))
(funcall event))))
(defun in-main-thread-p ()
*in-main-thread*)
(defun push-event (fn)
(sb-thread:with-mutex ((request-channel-lock *request-channel*))
(push fn (request-channel-queue *request-channel*)))
(let ((out (request-channel-out *request-channel*)))
;; For now, just write a single byte since all we want is for the
;; main thread to process the queue. If we want to handle
;; different types of events, we'll have to change this so that
;; the message sent indicates the event type instead.
(write-byte 0 out)
(finish-output out)))
(defun call-in-main-thread (fn)
(cond ((in-main-thread-p)
(funcall fn))
(t
(push-event fn))))
(defclass display-channel ()
((display :initarg :display)))
(defmethod io-channel-ioport (io-loop (channel display-channel))
(io-channel-ioport io-loop (slot-value channel 'display)))
(defmethod io-channel-events ((channel display-channel))
(list :read :loop))
(flet ((dispatch-all (display)
(block handle
(loop
(xlib:display-finish-output display)
(let ((nevents (xlib:event-listen display 0)))
(unless nevents (return-from handle))
(xlib:with-event-queue (display)
(run-hook *event-processing-hook*)
;; Note: process-event appears to hang for an unknown
;; reason. This is why it is passed a timeout in hopes that
;; this will keep it from hanging.
(xlib:process-event display :handler #'handle-event :timeout 0)))))))
(defmethod io-channel-handle ((channel display-channel) (event (eql :read)) &key)
(dispatch-all (slot-value channel 'display)))
(defmethod io-channel-handle ((channel display-channel) (event (eql :loop)) &key)
(dispatch-all (slot-value channel 'display))))
(defun stumpwm-internal-loop ()
(loop
(with-simple-restart (:new-io-loop "Recreate I/O loop")
(let ((io (make-instance *default-io-loop*)))
(io-loop-add io (make-instance 'stumpwm-timer-channel))
(io-loop-add io (make-instance 'display-channel :display *display*))
;; If we have no implementation for the current CL, then
;; don't register the channel.
(multiple-value-bind (in out)
(open-pipe)
(let ((channel (make-instance 'request-channel :in in :out out)))
(io-loop-add io channel)
(setq *request-channel* channel)))
(setf *toplevel-io* io)
(loop
(handler-bind
((t (lambda (c)
(handle-top-level-condition c))))
(io-loop io :description "StumpWM")))))))
(defun parse-display-string (display)
"Parse an X11 DISPLAY string and return the host and display from it."
(ppcre:register-groups-bind (protocol host ('parse-integer display screen))
("^(?:(.*?)/)?(.*?)?:(\\d+)(?:\\.(\\d+))?" display :sharedp t)
(values
;; clx doesn't like (vector character *)
(coerce (or host "")
'(simple-array character (*)))
display screen
(cond (protocol
(intern1 protocol :keyword))
((or (string= host "")
(string-equal host "unix"))
:local)
(t :internet)))))
(defun ensure-data-dir ()
(ensure-directories-exist (data-dir) :mode #o700))
(defun data-dir ()
(merge-pathnames ".stumpwm.d/" (user-homedir-pathname)))
(defun close-resources ()
(xlib:close-display *display*)
(close-log))
(defun stumpwm-internal (display-str)
(multiple-value-bind (host display screen protocol) (parse-display-string display-str)
(declare (ignore screen))
(setf *display* (xlib:open-display host :display display :protocol protocol)
(xlib:display-error-handler *display*) 'error-handler)
(with-simple-restart (quit-stumpwm "Quit Stumpwm")
;; In the event of an error, we always need to close the display
(unwind-protect
(progn
(let ((*initializing* t))
(ensure-data-dir)
(open-log)
;; we need to do this first because init-screen grabs
;; keys
(update-modifier-map)
;; Initialize all the screens
(setf *screen-list* (loop for i in (xlib:display-roots *display*)
for n from 0
collect (init-screen i n host)))
(xlib:display-finish-output *display*)
;; Load rc file
(let ((*package* (find-package *default-package*)))
(multiple-value-bind (success err rc) (load-rc-file)
(if success
(and *startup-message* (message *startup-message* (print-key *escape-key*)))
(message "^B^1*Error loading ^b~A^B: ^n~A." rc err))))
(when *last-unhandled-error*
(message-no-timeout "^B^1*StumpWM Crashed With An Unhandled Error!~%Copy the error to the clipboard with the 'copy-unhandled-error' command.~%^b~a^B^n~%~%~a."
(first *last-unhandled-error*) (second *last-unhandled-error*)))
(mapc 'process-existing-windows *screen-list*)
;; We need to setup each screen with its current window. Go
;; through them in reverse so the first screen's frame ends up
;; with focus.
(dolist (s (reverse *screen-list*))
;; map the current group's windows
(mapc 'unhide-window (reverse (group-windows (screen-current-group s))))
;; update groups
(dolist (g (reverse (screen-groups s)))
(dformat 3 "Group windows: ~S~%" (group-windows g))
(group-startup g))
;; switch to the (old) current group.
(let ((netwm-id (first (xlib:get-property (screen-root s) :_NET_CURRENT_DESKTOP))))
(when (and netwm-id (< netwm-id (length (screen-groups s))))
(switch-to-group (elt (sort-groups s) netwm-id))))
(redraw-current-message (current-screen))))
(run-hook *pre-thread-hook*)
;; Start hashing the user's PATH so completion is quick
;; the first time they try to run a command.
(sb-thread:make-thread #'rehash)
;; Let's manage.
(let ((*package* (find-package *default-package*)))
(run-hook *start-hook*)
(stumpwm-internal-loop)))
(close-resources))))
;; what should the top level loop do?
:quit)
(defun force-stumpwm-restart (&key (close-display t))
(when close-display
(xlib:close-display *display*))
(apply 'execv (first sb-ext:*posix-argv*) sb-ext:*posix-argv*))
;; based on cffi version of set-signal-handler from Andrew Lyon at https://stackoverflow.com/a/10442062
;; rewritten to use SBCL's Foreign Function Interface directly by Max-Gerd Retzlaff
(defmacro set-signal-handler (signo &body body)
`(sb-alien:alien-funcall
(sb-alien:extern-alien "signal" (function sb-alien:void
sb-alien:int sb-alien:system-area-pointer))
,signo
;; callback function
(sb-alien:alien-sap
(sb-alien::alien-lambda sb-alien:void ((signum sb-alien:int))
(declare (ignore signum))
,@body))))
;; Usage: (stumpwm)
(defun stumpwm (&optional (display-str (or (getenv "DISPLAY") ":0")))
"Start the stump window manager."
(set-signal-handler sb-posix:sighup
(dformat 0 "SIGHUP received: forcing immediate restart of stumpwm~%") ;; debug level 0 to "force" logging
(force-stumpwm-restart))
(let ((*in-main-thread* t))
(setf *data-dir*
(make-pathname :directory (append (pathname-directory (user-homedir-pathname))
(list ".stumpwm.d"))))
(init-load-path *module-dir*)
(loop
(let ((ret (catch :top-level
(stumpwm-internal display-str))))
(setf *last-unhandled-error* nil)
(cond ((and (consp ret)
(typep (first ret) 'condition))
(format t "~&Caught '~a' at the top level. Please report this.~%~a"
(first ret) (second ret))
(setf *last-unhandled-error* ret))
;; we need to jump out of the event loop in order to hup
;; the process because otherwise we get errors.
((eq ret :hup-process)
(run-hook *restart-hook*)
(force-stumpwm-restart :close-display nil))
((eq ret :restart)
(run-hook *restart-hook*))
(t
(run-hook *quit-hook*)
;; the number is the unix return code
(return-from stumpwm 0)))))))