-
Notifications
You must be signed in to change notification settings - Fork 5
/
xcb.el
883 lines (802 loc) · 38.5 KB
/
xcb.el
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
;;; xcb.el --- X protocol Emacs Lisp Binding (XELB) -*- lexical-binding: t -*-
;; Copyright (C) 2015-2024 Free Software Foundation, Inc.
;; Author: Chris Feng <[email protected]>
;; This file is part of GNU Emacs.
;; GNU Emacs 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 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; This library mainly provides methods for `xcb:connection', a opaque class
;; encapsulating all information concerning an X connection. The most
;; frequently used methods are:
;; + Open/Close connection
;; - `xcb:connect'
;; - `xcb:disconnect'
;; + Request/Reply/Error (asynchronous)
;; - `xcb:+request'
;; - `xcb:+request-checked'
;; - `xcb:+request-unchecked'
;; - `xcb:+reply'
;; - `xcb:request-check'
;; + Request/Reply/Error (synchronous)
;; - `xcb:+request+reply'
;; - `xcb:+request-checked+request-check'
;; - `xcb:+request-unchecked+reply'
;; + Event handling
;; - `xcb:+event'
;; + Misc.
;; - `xcb:flush'
;; - `xcb:generate-id'
;; Please refer to their documentations for more details.
;; Todo:
;; + Use XC-MISC extension for `xcb:generate-id' when IDs are used up.
;; References:
;; + X protocol (http://www.x.org/releases/X11R7.7/doc/xproto/x11protocol.txt)
;;; Code:
(require 'cl-lib)
(require 'xcb-xproto)
(defvar xcb:connection-timeout 3 "Connection timeout.")
;;;; X connection related
(defclass xcb:connection (xcb:--struct)
((process :initarg :process :initform nil)
(connected :initform nil) ;non-nil indicates connected to X server
(display :initarg :display :initform nil)
(auth-info :initarg :auth-info :initform nil)
(socket :initarg :socket :initform nil)
(lock :initform nil)
(setup-data :initform nil) ;X connection setup data
(request-cache :initform []) ;cache for outgoing requests
(message-cache :initform []) ;cache for incoming messages
(event-lock :initform 0)
(event-queue :initform nil)
(error-plist :initform nil)
(reply-plist :initform nil)
(event-plist :initform nil)
(extension-plist :initform nil)
(extension-opcode-plist :initform nil)
(extension-first-error-alist :initform nil)
(extension-first-event-alist :initform nil)
(request-sequence :initform 0)
(last-seen-sequence :initform 0)
(xid :initform 0) ;last used X resource ID
(extra-plist :initform nil)) ;for storing extra data (e.g. by extensions)
:documentation "X connection.")
(defclass xcb:auth-info (xcb:--struct)
((name :initarg :name :initform "" :type string)
(data :initarg :data :initform "" :type string))
:documentation "X connection authentication info.")
(cl-defmethod xcb:-get-extra-plist ((conn xcb:connection) module prop)
"Get the value of PROP from the extra plist for module MODULE."
(plist-get (plist-get (slot-value conn 'extra-plist) module) prop))
(cl-defmethod xcb:-set-extra-plist ((conn xcb:connection) module prop val)
"Set the value of PROP in the extra plist for module MODULE to VAL."
(with-slots (extra-plist) conn
(setf extra-plist
(plist-put extra-plist module
(plist-put (plist-get extra-plist module) prop val)))))
(defun xcb:connect (&optional display _screen)
"Connect to X server with display DISPLAY."
(declare (advertised-calling-convention (&optional display) "25.1"))
(unless display (setq display (frame-parameter nil 'display)))
(unless display (error "[XELB] No X display available"))
(let ((socket (xcb:display->socket display)))
(if (file-exists-p socket)
(xcb:connect-to-socket socket)
(xcb:connect-to-display-with-auth-info display))))
(defun xcb:display->socket (display)
"Convert X11 display DISPLAY to its corresponding socket."
(concat "/tmp/.X11-unix/X"
(replace-regexp-in-string ".*:\\([^\\.]+\\).*" "\\1" display)))
(defun xcb:connect-to-display-with-auth-info (&optional display auth _screen)
"Connect to X server with display DISPLAY, auth info AUTH."
(declare (advertised-calling-convention (&optional display auth) "25.1"))
(unless display (setq display (frame-parameter nil 'display)))
(unless display (error "[XELB] No X display available"))
(let* ((tmp (xcb:parse-display display))
(host (cdr (assoc 'host tmp)))
(host (if (string= "" host) 'local host))
(dpy (cdr (assoc 'display tmp)))
(process (make-network-process :name "XELB"
:host host
:service (+ 6000 dpy)))
(auth-info (if auth auth (xcb:create-auth-info)))
(connection (make-instance 'xcb:connection
:process process
:display display :auth-info auth-info)))
(xcb:-connect connection)
connection))
(defun xcb:parse-display (name)
"Parse X Display name NAME."
(let ((host (replace-regexp-in-string "\\(.*\\):.*" "\\1" name))
(display (replace-regexp-in-string ".*:\\([^\\.]+\\).*" "\\1" name))
(screen
(replace-regexp-in-string ".*:[^\\.]+\\.?\\(.*\\)" "\\1" name)))
(setq display (string-to-number display))
(setq screen (if (string= "" screen) 0 (string-to-number screen)))
`((host . ,host) (display . ,display) (screen . ,screen))))
(defun xcb:create-auth-info ()
"Create the default `auth-info'."
(let ((xauth-output (shell-command-to-string
(concat
"xauth list "
(replace-regexp-in-string "^localhost" ""
(getenv "DISPLAY"))
" 2>/dev/null")))
(name "MIT-MAGIC-COOKIE-1") ;only support MIT-MAGIC-COOKIE-1 protocol.
(data ""))
(if (string= "" xauth-output)
;; No xauth entry available.
(setq name "")
(setq xauth-output (split-string xauth-output))
(if (string= name (car (last xauth-output 2)))
;; The auth data is a 128-bit hex string.
(setq data (car (last xauth-output))
data
(concat
(cl-loop for i in (number-sequence 0 30 2)
collect (string-to-number
(substring data
i (+ i 2))
16))))
;; No xauth entry available.
(setq name "")))
(make-instance 'xcb:auth-info :name name :data data)))
(defun xcb:connect-to-socket (&optional socket auth-info)
"Connect to X server with socket SOCKET and authentication info AUTH-INFO."
(unless (or socket (frame-parameter nil 'display))
(error "[XELB] No X display available"))
(let (display)
(if socket
;; As there is no general way to deduce the display name from an X11
;; socket, we assume a standard SOCKET name and hope for the best.
(setq display
(concat ":" ;local
(replace-regexp-in-string "^.*?\\([0-9.]+\\)$" "\\1"
socket)))
(setq display (frame-parameter nil 'display)
socket (xcb:display->socket display)))
(let* ((process (make-network-process :name "XELB" :family 'local
:service socket))
(auth (if auth-info auth-info (xcb:create-auth-info)))
(connection (make-instance 'xcb:connection
:process process :display display
:auth-info auth :socket socket)))
(xcb:-connect connection)
connection)))
(cl-defmethod xcb:-connect ((obj xcb:connection))
"Connect to X server."
(let* ((process (slot-value obj 'process))
(auth-info (slot-value obj 'auth-info))
(aname (slot-value auth-info 'name))
(adata (slot-value auth-info 'data)))
(set-process-plist process
(plist-put (process-plist process) 'connection obj))
(set-process-coding-system process 'binary 'binary)
(set-process-filter process #'xcb:-connection-setup-filter)
(set-process-sentinel process #'xcb:-connection-sentinel)
(process-send-string ;send setup packet
process
(apply #'unibyte-string
(append ;convert vector to string
(xcb:marshal
(make-instance 'xcb:SetupRequest
:byte-order (if xcb:lsb #x6c #x42)
:protocol-major-version 11
:protocol-minor-version 0
:authorization-protocol-name-len (length aname)
:authorization-protocol-data-len (length adata)
:authorization-protocol-name aname
:authorization-protocol-data adata))
nil)))
;; Wait for setup data ready
(with-timeout (xcb:connection-timeout (xcb:disconnect obj)
(error "[XELB] Connection timeout"))
(while (not (slot-value obj 'setup-data))
(accept-process-output process 1 nil 1)))))
(defconst xcb:-SEQUENCE-SEGMENT-MASK (lognot #xFFFF))
(defun xcb:-connection-setup-filter (process message)
"Process filter used during connection setup."
(let* ((connection (plist-get (process-plist process) 'connection))
(cache (vconcat (slot-value connection 'message-cache) message)))
(setf (slot-value connection 'message-cache) cache)
(unless (or (slot-value connection 'lock)
;; Shorter than the setup header.
(> 8 (length cache)))
(setf (slot-value connection 'lock) t)
(let ((data-len (+ 8 (* 4 (if xcb:lsb
(xcb:-unpack-u2-lsb cache 6)
(xcb:-unpack-u2 cache 6)))))
obj)
(when (>= (length cache) data-len)
(xcb:-log "Setup response: %s" cache)
(pcase (aref cache 0)
(0
;; Connection failed.
(setq obj (make-instance 'xcb:SetupFailed))
(xcb:unmarshal obj cache)
(setq cache (substring cache data-len))
(error "[XELB] Connection failed: %s" (slot-value obj 'reason)))
(1
;; Connection established.
(setf (slot-value connection 'message-cache) [])
(set-process-filter process #'xcb:-connection-filter)
(setq obj (make-instance 'xcb:Setup))
(xcb:unmarshal obj cache)
(setq cache (substring cache data-len))
(setf (slot-value connection 'setup-data) obj)
(setf (slot-value connection 'connected) t))
(2
;; Authentication required.
(setq obj (make-instance 'xcb:SetupAuthenticate))
(xcb:unmarshal obj cache)
(setq cache (substring cache data-len))
(error "[XELB] Authentication not supported: %s"
(slot-value obj 'reason)))
(x (error "Unrecognized setup status: %d" x)))))
(setf (slot-value connection 'lock) nil))))
(defun xcb:-connection-sentinel (process _event)
"Process sentinel used to teardown the connection on disconnect."
(unless (process-live-p process)
(xcb:disconnect (plist-get (process-plist process) 'connection))))
(cl-defmethod xcb:-convert-sequence ((obj xcb:connection) sequence16)
"Convert 16-bit sequence number SEQUENCE16 (read from a packet).
The result would be 29 or 61 bits, depending on the machine."
(with-slots (request-sequence) obj
;; Assume there are no more than #xFFFF requests sent since the
;; request corresponding to this packet was made. Because errors
;; and replies are always read out in the process filter, this
;; assumption is quite safe.
(let ((sequence (logior (logand request-sequence
xcb:-SEQUENCE-SEGMENT-MASK)
sequence16)))
;; `xcb:-cache-request' ensures sequence number never wraps.
(when (> sequence request-sequence)
(cl-decf sequence #x10000))
sequence)))
(defun xcb:-connection-filter (process message)
"Filter function for an X connection.
Concurrency is disabled as it breaks the orders of errors, replies and events."
(let* ((connection (plist-get (process-plist process) 'connection))
;; Temporarily disable GC here as typically it's about to do
;; lots of marshaling/unmarshaling.
(gc-cons-threshold most-positive-fixnum)
(cache (vconcat (slot-value connection 'message-cache) message))
(cache-length (length cache)))
(setf (slot-value connection 'message-cache) cache)
(unless (slot-value connection 'lock)
;; Start parsing message
(setf (slot-value connection 'lock) t)
;; Process error/reply/event
(catch 'break
(while (<= 32 (length cache))
(pcase (aref cache 0)
(0 ;error
(xcb:-log "Error received: %s" (substring cache 0 32))
(let ((sequence (funcall (if xcb:lsb #'xcb:-unpack-u2-lsb
#'xcb:-unpack-u2)
cache 2))
(plist (slot-value connection 'error-plist))
struct)
(setq sequence (xcb:-convert-sequence connection sequence))
(when (plist-member plist sequence)
(setq struct (plist-get plist sequence))
(setf (slot-value connection 'error-plist)
(plist-put plist sequence
(push `(,(aref cache 1) .
,(substring cache 0 32))
struct))))
(setq cache (substring cache 32))
(setf (slot-value connection 'last-seen-sequence) sequence)))
(1 ;reply
(let* ((reply-words (funcall (if xcb:lsb #'xcb:-unpack-u4-lsb
#'xcb:-unpack-u4)
cache 4))
(reply-length (+ 32 (* 4 reply-words)))
struct sequence plist)
(when (< (length cache) reply-length) ;too short, do next time
(throw 'break nil))
(xcb:-log "Reply received: %s" (substring cache 0 reply-length))
(setq sequence (funcall (if xcb:lsb #'xcb:-unpack-u2-lsb
#'xcb:-unpack-u2)
cache 2)
sequence (xcb:-convert-sequence connection sequence))
(setq plist (slot-value connection 'reply-plist))
(setq struct (plist-get plist sequence))
(when struct
(setf (slot-value connection 'reply-plist)
(plist-put plist sequence
(if (symbolp struct)
;; Single reply or
;; first reply for multiple replies
(list struct
(substring cache 0 reply-length))
;; Multiple replies
`(,(car struct) ,@(cdr struct)
,(substring cache 0 reply-length))))))
(setq cache (substring cache reply-length))
(setf (slot-value connection 'last-seen-sequence) sequence)))
(x ;event
(let (synthetic listener event-length)
(when (/= 0 (logand x #x80)) ;synthetic event
(setq synthetic t
x (logand x #x7f))) ;low 7 bits is the event number
(setq listener
(plist-get (slot-value connection 'event-plist) x))
(pcase listener
(`xge
(setq event-length (funcall (if xcb:lsb
#'xcb:-unpack-u4-lsb
#'xcb:-unpack-u4)
cache 4)
;; event-length indicates additional words to the
;; first 32 bytes.
event-length (+ 32 (* 4 event-length)))
(when (< (length cache) event-length)
;; Too short.
(throw 'break nil))
(setq listener
(compat-call plist-get
(slot-value connection 'event-plist)
(vector (aref cache 1)
(funcall
(if xcb:lsb
#'xcb:-unpack-u2-lsb
#'xcb:-unpack-u2)
cache 8))
#'equal)))
(`xkb
(setq listener
(compat-call plist-get
(slot-value connection 'event-plist)
(vector (aref cache 1))
#'equal))))
;; Conventional events are 32 bytes in size.
(unless event-length
(setq event-length 32))
(when listener
(with-slots (event-queue) connection
(setf event-queue (nconc event-queue
`([,listener
,(substring cache 0
event-length)
,synthetic])))))
(xcb:-log "Event received: %s" (substring cache 0 event-length))
(setq cache (substring cache event-length)))))))
(setf (slot-value connection 'lock) nil))
(unless (slot-value connection 'lock)
(with-slots (message-cache) connection
(let ((current-cache-length (length message-cache)))
(setf message-cache
(substring message-cache (- cache-length (length cache))))
(when (/= current-cache-length cache-length)
(xcb:-connection-filter process []))))
(xcb:-process-events connection))))
(cl-defmethod xcb:-process-events ((conn xcb:connection))
"Process cached events."
(with-slots (event-lock event-queue) conn
(unless (< 0 event-lock)
(cl-incf event-lock)
(unwind-protect
(let (event data synthetic)
(while (setq event (pop event-queue))
(setq data (aref event 1)
synthetic (aref event 2))
(dolist (listener (aref event 0))
(xcb-debug:backtrace-on-error
(funcall listener data synthetic)))))
(cl-decf event-lock)))))
(cl-defmethod xcb:disconnect ((obj xcb:connection))
"Disconnect from X server."
(when (slot-value obj 'connected)
(ignore-errors (xcb:flush obj))
(delete-process (slot-value obj 'process))
;; Reset every slot to its default value
(let ((slots (eieio-class-slots 'xcb:connection)))
(dolist (slot slots)
(setf (slot-value obj (eieio-slot-descriptor-name slot))
(eieio-oref-default obj (eieio-slot-descriptor-name slot)))))))
;;;; Other routines
(cl-defmethod xcb:get-setup ((obj xcb:connection))
"Get the setup info of X connection OBJ."
(slot-value obj 'setup-data))
(cl-defmethod xcb:get-socket ((obj xcb:connection))
"Get the socket of X connection OBJ."
(slot-value obj 'socket))
(cl-defmethod xcb:get-maximum-request-length ((obj xcb:connection))
"Get maximum request length from setup data."
(slot-value (xcb:get-setup obj) 'maximum-request-length))
(cl-defmethod xcb:+event ((obj xcb:connection) event listener)
"Attach function LISTENER to event EVENT.
Note that event listeners attached this way are shared with the super- and sub-
classes of EVENT (since they have the same event number)."
(let* ((event-number (xcb:-error-or-event-class->number obj event))
(plist (slot-value obj 'event-plist))
key listeners)
(when (consp event-number)
(setq key (car event-number)
event-number (cdr event-number)
listeners (plist-get plist key))
;; Add a placeholder.
(setf (slot-value obj 'event-plist)
(plist-put plist key
(if (child-of-class-p event 'xcb:-generic-event)
'xge 'xkb))))
(setq listeners (compat-call plist-get plist event-number #'equal))
(setf (slot-value obj 'event-plist)
(compat-call plist-put plist event-number
(append listeners (list listener)) #'equal))))
(cl-defmethod xcb:flush ((obj xcb:connection))
"Flush request data to X server."
(let ((cache (slot-value obj 'request-cache)))
(when (< 0 (length cache))
(setf (slot-value obj 'request-cache) []) ;should be cleared ASAP
(cl-incf (slot-value obj 'event-lock))
(unwind-protect
(process-send-string (slot-value obj 'process)
(apply #'unibyte-string (append cache nil)))
(cl-decf (slot-value obj 'event-lock)))
(xcb:-process-events obj))))
(cl-defmethod xcb:get-extension-data ((obj xcb:connection) namespace)
"Fetch the extension data from X server (block until data is retrieved)."
(let* ((plist (slot-value obj 'extension-plist))
(data (plist-get plist namespace)))
(if (eieio-object-p data)
data
(when (not data) ;the request has not been made
(xcb:prefetch-extension-data obj namespace))
(setq data (xcb:-+reply obj (plist-get (slot-value obj 'extension-plist)
namespace)))
(when (cadr data) ;has error
(error "[XELB] %s" (cadr data)))
(setq data (car data))
(setf (slot-value obj 'extension-plist) (plist-put plist namespace data))
;; Cache major opcode, first event and first error if possible
(with-slots (present major-opcode first-event first-error) data
(when (= 1 present)
(setf (slot-value obj 'extension-opcode-plist)
(plist-put (slot-value obj 'extension-opcode-plist)
namespace major-opcode)
(slot-value obj 'extension-first-event-alist)
(nconc (slot-value obj 'extension-first-event-alist)
`((,namespace . ,first-event)))
(slot-value obj 'extension-first-error-alist)
(nconc (slot-value obj 'extension-first-error-alist)
`((,namespace . ,first-error))))))
data)))
(cl-defmethod xcb:prefetch-extension-data ((obj xcb:connection) namespace)
"Prefetch the extension data from X server."
(when (not (plist-get (slot-value obj 'extension-plist) namespace))
(let* ((extension-xname
(symbol-value (intern-soft (concat (symbol-name namespace)
":-extension-xname"))))
(sequence
(xcb:-+request obj
(make-instance 'xcb:QueryExtension
:name-len (length extension-xname)
:name extension-xname))))
(setf (slot-value obj 'extension-plist)
(plist-put (slot-value obj 'extension-plist) namespace sequence))
(xcb:flush obj))))
(cl-defmethod xcb:generate-id ((obj xcb:connection))
"Generate new X ID."
(let* ((setup (xcb:get-setup obj))
(base (slot-value setup 'resource-id-base))
(mask (slot-value setup 'resource-id-mask))
(increment (logand mask (- mask)))
(xid (+ (slot-value obj 'xid) increment)))
(when (> xid mask)
(error "[XELB] Unable to allocate new X resource ID"))
(setf (slot-value obj 'xid) xid)
(logior base xid)))
;;;; Request related
(cl-defmethod xcb:-cache-request ((obj xcb:connection) request)
"Send (or cache) a request and return the sequence number."
(let* ((namespace
(intern (replace-regexp-in-string
":[^:]+$" "" (symbol-name
(eieio-object-class request)))))
(extension-opcode
(plist-get (slot-value obj 'extension-opcode-plist) namespace))
(msg (xcb:marshal request))
(len (+ 2 (length msg)))
(cache (slot-value obj 'request-cache)))
(when extension-opcode
(setq msg (vconcat (vector extension-opcode) msg))
(cl-incf len))
(when (> 2 (length msg)) ;for short message (e.g. GetInputFocus)
(setq msg (vconcat msg [0]))
(cl-incf len))
(setq msg
(vconcat (substring msg 0 2)
(funcall (if (slot-value request '~lsb) #'xcb:-pack-u2-lsb
#'xcb:-pack-u2)
(ceiling len 4))
(substring msg 2)
(make-vector (% (- 4 (% len 4)) 4) 0))) ;required sometimes
(when (< (xcb:get-maximum-request-length obj)
(+ (length msg) (length cache))) ;flush on cache full
(xcb:flush obj)
(setq cache []))
(with-slots (request-cache request-sequence last-seen-sequence) obj
(when (>= request-sequence most-positive-fixnum)
;; Force wrapping the sequence number.
(xcb:aux:sync obj)
(setf request-sequence 0
last-seen-sequence 0))
(setf request-cache (vconcat cache msg)
request-sequence (1+ request-sequence))
(xcb:-log "Cache request #%d: %s" request-sequence msg)
request-sequence)))
(cl-defmethod xcb:-+request ((obj xcb:connection) request)
(let ((sequence (xcb:-cache-request obj request))
(class (eieio-object-class request)))
(when (fboundp (xcb:-request-class->reply-class class))
;; This request has a reply
(setf (slot-value obj 'reply-plist) ;require reply
(plist-put (slot-value obj 'reply-plist) sequence class))
(setf (slot-value obj 'error-plist) ;require error
(plist-put (slot-value obj 'error-plist) sequence nil)))
sequence))
(defmacro xcb:+request (obj request)
"Make a request.
If the request has a reply, then errors will also be available (if any).
Otherwise no error will ever be reported."
(declare (indent 2))
`(xcb:-+request ,obj ,request))
(cl-defmethod xcb:-+request-checked ((obj xcb:connection) request)
(when (fboundp
(xcb:-request-class->reply-class (eieio-object-class request)))
(error "This method shall not be called with request that has a reply"))
(let ((sequence (xcb:-cache-request obj request)))
(setf (slot-value obj 'error-plist)
(plist-put (slot-value obj 'error-plist) sequence nil))
sequence))
(defmacro xcb:+request-checked (obj request)
"Make a request (which have no reply) and check for errors."
(declare (indent 2))
`(xcb:-+request-checked ,obj ,request))
(cl-defmethod xcb:-+request-unchecked ((obj xcb:connection) request)
(unless (fboundp
(xcb:-request-class->reply-class (eieio-object-class request)))
(error "This method shall not be called with request that has no reply"))
(let ((sequence (xcb:-cache-request obj request)))
(setf (slot-value obj 'reply-plist)
(plist-put (slot-value obj 'reply-plist)
sequence (eieio-object-class request)))
sequence))
(defmacro xcb:+request-unchecked (obj request)
"Make a request (which have at least a reply) and discard any error."
(declare (indent 2))
`(xcb:-+request-unchecked ,obj ,request))
(cl-defmethod xcb:-+reply ((obj xcb:connection) sequence &optional multiple)
(unless (plist-member (slot-value obj 'reply-plist) sequence)
(error "This method is intended for requests with replies"))
(xcb:flush obj) ;or we may have to wait forever
(if multiple
;; Multiple replies
(xcb:aux:sync obj)
;; Single reply
(let ((process (slot-value obj 'process)))
;; Wait until the request processed
(cl-incf (slot-value obj 'event-lock))
(unwind-protect
(with-timeout (xcb:connection-timeout
(warn "[XELB] Retrieve reply timeout"))
(while (and (> sequence (slot-value obj 'last-seen-sequence))
(<= sequence (slot-value obj 'request-sequence)))
(accept-process-output process 1 nil 1)))
(cl-decf (slot-value obj 'event-lock)))
(xcb:-process-events obj)))
(let* ((reply-plist (slot-value obj 'reply-plist))
(reply-data (plist-get reply-plist sequence))
(error-plist (slot-value obj 'error-plist))
(error-data (plist-get error-plist sequence))
class-name reply replies error errors)
(if (symbolp reply-data)
(setq replies nil) ;no reply
(setq class-name (xcb:-request-class->reply-class (car reply-data)))
(if multiple
;; Multiple replies
(dolist (i (cdr reply-data))
(setq reply (make-instance class-name))
(xcb:unmarshal reply i)
(setq replies (nconc replies (list reply))))
;; Single reply
(setq reply-data (cadr reply-data)
replies (make-instance class-name))
(xcb:unmarshal replies reply-data)))
(setq errors
(mapcar (lambda (i)
(setq error (make-instance
(xcb:-error-number->class obj (car i))))
(xcb:unmarshal error (cdr i))
error)
error-data))
(cl-remf (slot-value obj 'reply-plist) sequence)
(cl-remf (slot-value obj 'error-plist) sequence)
(list replies errors)))
(defmacro xcb:+reply (obj sequence &optional multiple)
"Return the reply of a request of which the sequence number is SEQUENCE.
If MULTIPLE is nil, the return value is the only reply, or it returns a list of
all replies.
WARNING: for requests that have multiple replies, you MUST supply a non-nil
MULTIPLE value, or some replies may be lost!"
(declare (indent 2))
`(xcb:-+reply ,obj ,sequence ,multiple))
(cl-defmethod xcb:-request-check ((obj xcb:connection) sequence)
(when (plist-member (slot-value obj 'reply-plist) sequence)
(error "This method is intended for requests with no reply"))
(xcb:flush obj) ;or we may have to wait forever
(let ((error-plist (slot-value obj 'error-plist))
error-obj tmp)
(unless (plist-member error-plist sequence)
(error "This method shall be called after `xcb:+request-checked'"))
(when (> sequence (slot-value obj 'last-seen-sequence))
(xcb:aux:sync obj)) ;wait until the request is processed
(setq error-obj
(mapcar (lambda (i)
(setq tmp (cdr i)
i (make-instance
(xcb:-error-number->class obj (car i))))
(xcb:unmarshal i tmp)
i)
(plist-get error-plist sequence)))
(cl-remf (slot-value obj 'error-plist) sequence)
error-obj))
(defmacro xcb:request-check (obj sequence)
"Return the error of the request of which the sequence number is SEQUENCE.
The sequence number shall be returned by `xcb:+request-checked'."
(declare (indent 2))
`(xcb:-request-check ,obj ,sequence))
(defmacro xcb:+request+reply (obj request &optional multiple)
"Make a request and return its replies and errors.
If MULTIPLE is nil, the return value is a list of which the car is the only
reply and the cadr a list of errors. Otherwise, the car of the result is a
list of replies.
WARNING: for requests that have multiple replies, you MUST supply a non-nil
MULTIPLE value, or some replies may be lost!"
(declare (indent 2))
`(xcb:-+reply ,obj (xcb:-+request ,obj ,request) ,multiple))
(defmacro xcb:+request-checked+request-check (obj request)
"Make a request (which has no reply) and return the errors."
(declare (indent 2))
`(xcb:-request-check ,obj (xcb:-+request-checked ,obj ,request)))
(defmacro xcb:+request-unchecked+reply (obj request &optional multiple)
"Make a request (that has at least one reply) and only return the reply.
If MULTIPLE is nil, the return value is the only reply, or it returns a list of
all replies.
WARNING: for requests that have multiple replies, you MUST supply a non-nil
MULTIPLE value, or some replies may be lost!"
(declare (indent 2))
`(car (xcb:-+reply ,obj (xcb:-+request-unchecked ,obj ,request) ,multiple)))
;;;; Misc.
(cl-defmethod xcb:aux:sync ((obj xcb:connection))
"Force sync with X server.
Sync by sending a GetInputFocus request and waiting until it's processed."
(let ((sequence (xcb:-cache-request obj (make-instance 'xcb:GetInputFocus)))
(process (slot-value obj 'process)))
(xcb:flush obj)
;; Wait until request processed
(cl-incf (slot-value obj 'event-lock))
(unwind-protect
(with-timeout (xcb:connection-timeout (warn "[XELB] Sync timeout"))
(while (and (> sequence (slot-value obj 'last-seen-sequence))
;; In case the sequence number has been wrapped.
(<= sequence (slot-value obj 'request-sequence)))
(accept-process-output process 1 nil 1)))
(cl-decf (slot-value obj 'event-lock)))
(xcb:-process-events obj)
;; Discard any reply or error.
(cl-remf (slot-value obj 'reply-plist) sequence)
(cl-remf (slot-value obj 'error-plist) sequence)))
(cl-defmethod xcb:-error-or-event-class->number ((obj xcb:connection) class)
"Return the error/event number of a error/event class CLASS.
If CLASS is a generic event, return (XGE-CODE . [EXTENSION EVTYPE]);
Or if it's an XKB event, return (XKB-EVENT-CODE [XKB-CODE])."
(unless (symbolp class) (setq class (eieio-class-name class)))
(let ((prefix (replace-regexp-in-string ":[^:]+$" ":" (symbol-name class)))
first-code alist result parents)
(cond
((child-of-class-p class 'xcb:-error)
;; Error.
(if (string= prefix "xcb:")
(setq first-code 0
alist xcb:error-number-class-alist)
(setq first-code
(cdr (assq (intern (substring prefix 0 -1))
(slot-value obj
'extension-first-error-alist)))
alist (symbol-value
(intern-soft (concat prefix
"error-number-class-alist")))))
(setq result (car (rassq class alist)))
(when result
(setq result (+ first-code result))))
((child-of-class-p class 'xcb:-generic-event)
;; Generic event.
(setq alist (symbol-value
(intern-soft (concat prefix "xge-number-class-alist")))
result (plist-get (slot-value obj 'extension-opcode-plist)
(intern-soft (substring prefix 0 -1))))
;; Ensure the extension has been initialized.
(when result
(setq result `(35 . [,result ,(car (rassq class alist))]))))
((string= prefix "xcb:xkb:")
;; XKB event.
(eval-and-compile (require 'xcb-xkb))
;; XKB uses a single event code for all events.
(setq result (cdr (assq 'xcb:xkb
(slot-value obj 'extension-first-event-alist))))
;; Ensure the XKB extension has been initialized.
(when result
(setq alist xcb:xkb:event-number-class-alist
result `(,result . [,(car (rassq class alist))]))))
(t
;; Other event.
(if (string= prefix "xcb:")
(setq first-code 0
alist xcb:event-number-class-alist)
(setq first-code
(cdr (assq (intern (substring prefix 0 -1))
(slot-value obj 'extension-first-event-alist)))
alist (symbol-value
(intern-soft (concat prefix
"event-number-class-alist")))))
(setq result (car (rassq class alist)))
(when result
(setq result (+ first-code result)))))
(unless result
;; Fallback to use the error/event number of one superclass. Thus if the
;; error/event number of a subclass differs from that of its parent, it
;; must be explicitly pointed out.
(setq parents (eieio-class-parents class))
(while (and parents (not result))
(setq result (xcb:-error-or-event-class->number obj (pop parents)))))
result))
(cl-defmethod xcb:-event-number->class ((obj xcb:connection) number)
"Return the event class that has the event number NUMBER.
Note that when multiple events have the same number, only the top-most
superclass will be returned."
(if (or (< number 64) (> number 127))
;; Xproto event
(cdr (assoc number xcb:event-number-class-alist))
;; Extension event
(let ((first-event number)
namespace index alist)
(while (and (not namespace) (>= first-event 64))
(setq namespace
(car (rassoc first-event
(slot-value obj 'extension-first-event-alist)))
first-event (1- first-event)))
(setq index (- number first-event 1))
(setq alist (intern-soft (concat (symbol-name namespace)
":event-number-class-alist")))
(cdr (assoc index (symbol-value alist))))))
(cl-defmethod xcb:-error-number->class ((obj xcb:connection) number)
"Return the error class that has the error number NUMBER.
Note that when multiple errors have the same number, only the top-most
superclass will be returned."
(if (or (< number 128) (> number 255))
;; Xproto error
(cdr (assoc number xcb:error-number-class-alist))
;; Extension error
(let ((first-error number)
namespace index alist)
(while (and (not namespace) (>= first-error 128))
(setq namespace
(car (rassoc first-error
(slot-value obj 'extension-first-error-alist)))
first-error (1- first-error)))
(setq index (- number first-error 1))
(setq alist (intern-soft (concat (symbol-name namespace)
":error-number-class-alist")))
(cdr (assoc index (symbol-value alist))))))
(provide 'xcb)
;;; xcb.el ends here