-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesiswm.lisp
392 lines (348 loc) · 15.5 KB
/
thesiswm.lisp
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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
;; Copyright (C) 2003-2008 Shawn Betts
;;
;; This file is part of thesiswm.
;;
;; thesiswm 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.
;; thesiswm 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 :thesiswm)
(export '(cancel-timer
run-with-timer
*toplevel-io*
thesiswm
timer-p))
;;; Main
(defun load-rc-file (&optional (catch-errors t))
"Load the user's .thesiswmrc 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* ((xdg-config-dir
(let ((dir (getenv "XDG_CONFIG_HOME")))
(if (or (not dir) (string= dir ""))
(merge-pathnames #p".config/" (user-homedir-pathname))
dir)))
(user-rc
(probe-file (merge-pathnames #p".thesiswmrc" (user-homedir-pathname))))
(dir-rc
(probe-file (merge-pathnames #p".thesiswm.d/init.lisp" (user-homedir-pathname))))
(conf-rc
(probe-file (merge-pathnames #p"thesiswm/config" xdg-config-dir)))
(etc-rc (probe-file #p"/etc/thesiswmrc"))
(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))))
;;; Timers
(defvar *toplevel-io* nil
"Top-level I/O loop")
(defvar *timer-list* nil
"List of active timers.")
(defvar *timer-list-lock* (sb-thread:make-mutex)
"Lock that should be held whenever *TIMER-LIST* is modified.")
(defvar *in-main-thread* nil
"Dynamically bound to T during the execution of the main thesiswm function.")
(defstruct timer
time repeat function args)
(defun run-with-timer (secs repeat function &rest args)
"Perform an action after a delay of SECS seconds.
Repeat the action every REPEAT seconds, if repeat is non-nil.
SECS and REPEAT may be reals.
The action is to call FUNCTION with arguments ARGS."
(check-type secs (real 0 *))
(check-type repeat (or null (real 0 *)))
(check-type function (or function symbol))
(let ((timer (make-timer
:repeat repeat
:function function
:args args)))
(schedule-timer timer secs)
(labels ((append-to-list ()
(sb-thread:with-mutex (*timer-list-lock*)
(setf *timer-list* (merge 'list *timer-list* (list timer) #'< :key #'timer-time)))))
(call-in-main-thread #'append-to-list)
timer)))
(defun cancel-timer (timer)
"Remove TIMER from the list of active timers."
(check-type timer timer)
(sb-thread:with-mutex (*timer-list-lock*)
(setf *timer-list* (remove timer *timer-list*))))
(defun schedule-timer (timer when)
(setf (timer-time timer) (+ (get-internal-real-time)
(* when internal-time-units-per-second))))
(defun sort-timers (timers)
(let ((now (get-internal-real-time))
(pending ())
(remaining ()))
(dolist (timer timers)
(if (<= (timer-time timer) now)
(progn (push timer pending)
(when (timer-repeat timer)
(schedule-timer timer (timer-repeat timer))
(push timer remaining)))
(push timer remaining)))
(values pending remaining)))
(defun update-timer-list (timers)
"Update the timer list, sorting the timers by which is closer expiry."
(setf *timer-list*
(sort timers #'< :key #'timer-time)))
(defun execute-timers (timers)
(map nil #'execute-timer timers))
(defun execute-timer (timer)
(apply (timer-function timer) (timer-args timer)))
(defun run-expired-timers ()
(let ((expired (sb-thread:with-mutex (*timer-list-lock*)
(multiple-value-bind (pending remaining)
(sort-timers *timer-list*)
(update-timer-list remaining)
pending))))
;; Call the timers after the lock has been released
(execute-timers expired)))
(defun get-next-timeout (timers)
"Return the number of seconds until the next timeout or nil if there are no timers."
(when timers
(max (/ (- (timer-time (car timers)) (get-internal-real-time))
internal-time-units-per-second)
0)))
(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 thesiswm-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 (invoke-debugger c))
(:abort
(throw :top-level (list c (backtrace-string))))))
(defclass thesiswm-timer-channel () ())
(defmethod io-channel-ioport (io-loop (channel thesiswm-timer-channel))
(declare (ignore io-loop))
nil)
(defmethod io-channel-events ((channel thesiswm-timer-channel))
(sb-thread:with-mutex (*timer-list-lock*)
(if *timer-list*
`((:timeout ,(timer-time (car *timer-list*))))
'(:loop))))
(defmethod io-channel-handle ((channel thesiswm-timer-channel) (event (eql :timeout)) &key)
(run-expired-timers))
(defmethod io-channel-handle ((channel thesiswm-timer-channel) (event (eql :loop)) &key)
(run-expired-timers))
(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 call-in-main-thread (fn)
(cond (*in-main-thread*
(funcall fn))
(t
(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)))))
(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 thesiswm-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 'thesiswm-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 thesiswm-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-thesiswm "Quit Stumpwm")
;; In the event of an error, we always need to close the display
(unwind-protect
(progn
(let ((*initializing* t))
;; 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))))
;; Let's manage.
(let ((*package* (find-package *default-package*)))
(run-hook *start-hook*)
(thesiswm-internal-loop)))
(xlib:close-display *display*))))
;; what should the top level loop do?
:quit)
;; Usage: (thesiswm)
(defun thesiswm (&optional (display-str (or (getenv "DISPLAY") ":0")))
"Start the thesis window manager."
(let ((*in-main-thread* t))
(setf *data-dir*
(make-pathname :directory (append (pathname-directory (user-homedir-pathname))
(list ".thesiswm.d"))))
(init-load-path *module-dir*)
(loop
(let ((ret (catch :top-level
(thesiswm-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*)
(apply 'execv (first sb-ext:*posix-argv*) sb-ext:*posix-argv*))
((eq ret :restart)
(run-hook *restart-hook*))
(t
(run-hook *quit-hook*)
;; the number is the unix return code
(return-from thesiswm 0)))))))