Newer
Older
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
;;; -*- Mode: Lisp; Package: Xlib; Log: clx.log -*-
;; This file contains some of the system dependent code for CLX
;;;
;;; TEXAS INSTRUMENTS INCORPORATED
;;; P.O. BOX 2909
;;; AUSTIN, TEXAS 78769
;;;
;;; Copyright (C) 1987 Texas Instruments Incorporated.
;;;
;;; Permission is granted to any individual or institution to use, copy, modify,
;;; and distribute this software, provided that this complete copyright and
;;; permission notice is maintained, intact, in all copies and supporting
;;; documentation.
;;;
;;; Texas Instruments Incorporated provides this software "as is" without
;;; express or implied warranty.
;;;
(in-package :xlib)
(proclaim '(declaration array-register))
#+cmu
(setf (getf ext:*herald-items* :xlib)
`(" CLX X Library " ,*version*))
;;; The size of the output buffer. Must be a multiple of 4.
(defparameter *output-buffer-size* 8192)
#+explorer
(zwei:define-indentation event-case (1 1))
;;; Number of seconds to wait for a reply to a server request
(defparameter *reply-timeout* nil)
#-(or clx-overlapping-arrays (not clx-little-endian))
(progn
(defconstant +long-0+ 0)
(defconstant +long-1+ 1)
(defconstant +long-2+ 2)
(defconstant +long-3+ 3))
(defconstant +long-0+ 3)
(defconstant +long-1+ 2)
(defconstant +long-2+ 1)
(defconstant +long-3+ 0))
(eval-when (:compile-toplevel :load-toplevel :execute)
(defconstant +buffer-speed+ #+clx-debugging 1 #-clx-debugging 3
"Speed compiler option for buffer code.")
(defconstant +buffer-safety+ #+clx-debugging 3 #-clx-debugging 0
"Safety compiler option for buffer code.")
(defconstant +buffer-debug+ #+clx-debugging 2 #-clx-debugging 1
"Debug compiler option for buffer code>")
`(declare (optimize
(speed ,+buffer-speed+)
(safety ,+buffer-safety+)
(debug ,+buffer-debug+))))
;; It's my impression that in lucid there's some way to make a
;; declaration called fast-entry or something that causes a function
;; to not do some checking on args. Sadly, we have no lucid manuals
;; here. If such a declaration is available, it would be a good
;; idea to make it here when +buffer-speed+ is 3 and +buffer-safety+
;; is 0.
(defun declare-buffun ()
`(declare (optimize
(speed ,+buffer-speed+)
(safety ,+buffer-safety+)
(debug ,+buffer-debug+)))))
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
(declaim (inline card8->int8 int8->card8
card16->int16 int16->card16
card32->int32 int32->card32))
#-Genera
(progn
(defun card8->int8 (x)
(declare (type card8 x))
(declare (clx-values int8))
#.(declare-buffun)
(the int8 (if (logbitp 7 x)
(the int8 (- x #x100))
x)))
(defun int8->card8 (x)
(declare (type int8 x))
(declare (clx-values card8))
#.(declare-buffun)
(the card8 (ldb (byte 8 0) x)))
(defun card16->int16 (x)
(declare (type card16 x))
(declare (clx-values int16))
#.(declare-buffun)
(the int16 (if (logbitp 15 x)
(the int16 (- x #x10000))
x)))
(defun int16->card16 (x)
(declare (type int16 x))
(declare (clx-values card16))
#.(declare-buffun)
(the card16 (ldb (byte 16 0) x)))
(defun card32->int32 (x)
(declare (type card32 x))
(declare (clx-values int32))
#.(declare-buffun)
(the int32 (if (logbitp 31 x)
(the int32 (- x #x100000000))
x)))
(defun int32->card32 (x)
(declare (type int32 x))
(declare (clx-values card32))
#.(declare-buffun)
(the card32 (ldb (byte 32 0) x)))
)
#+Genera
(progn
(defun card8->int8 (x)
(declare lt:(side-effects simple reducible))
(if (logbitp 7 x) (- x #x100) x))
(defun int8->card8 (x)
(declare lt:(side-effects simple reducible))
(ldb (byte 8 0) x))
(defun card16->int16 (x)
(declare lt:(side-effects simple reducible))
(if (logbitp 15 x) (- x #x10000) x))
(defun int16->card16 (x)
(declare lt:(side-effects simple reducible))
(ldb (byte 16 0) x))
(defun card32->int32 (x)
(declare lt:(side-effects simple reducible))
(sys:%logldb (byte 32 0) x))
(defun int32->card32 (x)
(declare lt:(side-effects simple reducible))
(ldb (byte 32 0) x))
)
(declaim (inline aref-card8 aset-card8 aref-int8 aset-int8))
#-(or Genera lcl3.0 excl)
(progn
(defun aref-card8 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values card8))
#.(declare-buffun)
(the card8 (aref a i)))
(defun aset-card8 (v a i)
(declare (type card8 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (aref a i) v))
(defun aref-int8 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values int8))
#.(declare-buffun)
(card8->int8 (aref a i)))
(defun aset-int8 (v a i)
(declare (type int8 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (aref a i) (int8->card8 v)))
)
#+Genera
(progn
(defun aref-card8 (a i)
(aref a i))
(defun aset-card8 (v a i)
(zl:aset v a i))
(defun aref-int8 (a i)
(card8->int8 (aref a i)))
(defun aset-int8 (v a i)
(zl:aset (int8->card8 v) a i))
)
#+(or excl lcl3.0 clx-overlapping-arrays)
(declaim (inline aref-card16 aref-int16 aref-card32 aref-int32 aref-card29
aset-card16 aset-int16 aset-card32 aset-int32 aset-card29))
#+(and clx-overlapping-arrays Genera)
(progn
(defun aref-card16 (a i)
(aref a i))
(defun aset-card16 (v a i)
(zl:aset v a i))
(defun aref-int16 (a i)
(card16->int16 (aref a i)))
(defun aset-int16 (v a i)
(zl:aset (int16->card16 v) a i)
v)
(defun aref-card32 (a i)
(int32->card32 (aref a i)))
(defun aset-card32 (v a i)
(zl:aset (card32->int32 v) a i))
(defun aref-int32 (a i) (aref a i))
(defun aset-int32 (v a i)
(zl:aset v a i))
(defun aref-card29 (a i)
(aref a i))
(defun aset-card29 (v a i)
(zl:aset v a i))
)
#+(and clx-overlapping-arrays (not Genera))
(progn
(defun aref-card16 (a i)
(aref a i))
(defun aset-card16 (v a i)
(setf (aref a i) v))
(defun aref-int16 (a i)
(card16->int16 (aref a i)))
(defun aset-int16 (v a i)
(setf (aref a i) (int16->card16 v))
v)
(defun aref-card32 (a i)
(aref a i))
(defun aset-card32 (v a i)
(setf (aref a i) v))
(defun aref-int32 (a i)
(card32->int32 (aref a i)))
(defun aset-int32 (v a i)
(setf (aref a i) (int32->card32 v))
v)
(defun aref-card29 (a i)
(aref a i))
(defun aset-card29 (v a i)
(setf (aref a i) v))
)
#+excl
(progn
(defun aref-card8 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values card8))
#.(declare-buffun)
(the card8 (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:unsigned-byte)))
(defun aset-card8 (v a i)
(declare (type card8 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:unsigned-byte) v))
(defun aref-int8 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values int8))
#.(declare-buffun)
(the int8 (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:signed-byte)))
(defun aset-int8 (v a i)
(declare (type int8 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:signed-byte) v))
(defun aref-card16 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values card16))
#.(declare-buffun)
(the card16 (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:unsigned-word)))
(defun aset-card16 (v a i)
(declare (type card16 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:unsigned-word) v))
(defun aref-int16 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values int16))
#.(declare-buffun)
(the int16 (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:signed-word)))
(defun aset-int16 (v a i)
(declare (type int16 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:signed-word) v))
(defun aref-card32 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values card32))
#.(declare-buffun)
(the card32 (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:unsigned-long)))
(defun aset-card32 (v a i)
(declare (type card32 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:unsigned-long) v))
(defun aref-int32 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values int32))
#.(declare-buffun)
(the int32 (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:signed-long)))
(defun aset-int32 (v a i)
(declare (type int32 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:signed-long) v))
(defun aref-card29 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values card29))
#.(declare-buffun)
(the card29 (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:unsigned-long)))
(defun aset-card29 (v a i)
(declare (type card29 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i
:unsigned-long) v))
)
#+lcl3.0
(progn
(defun aref-card8 (a i)
(declare (type buffer-bytes a)
(type array-index i)
(clx-values card8))
#.(declare-buffun)
(the card8 (lucid::%svref-8bit a i)))
(defun aset-card8 (v a i)
(declare (type card8 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (lucid::%svref-8bit a i) v))
(defun aref-int8 (a i)
(declare (type buffer-bytes a)
(type array-index i)
(clx-values int8))
#.(declare-buffun)
(the int8 (lucid::%svref-signed-8bit a i)))
(defun aset-int8 (v a i)
(declare (type int8 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (lucid::%svref-signed-8bit a i) v))
(defun aref-card16 (a i)
(declare (type buffer-bytes a)
(type array-index i)
(clx-values card16))
#.(declare-buffun)
(the card16 (lucid::%svref-16bit a (index-ash i -1))))
(defun aset-card16 (v a i)
(declare (type card16 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (lucid::%svref-16bit a (index-ash i -1)) v))
(defun aref-int16 (a i)
(declare (type buffer-bytes a)
(type array-index i)
(clx-values int16))
#.(declare-buffun)
(the int16 (lucid::%svref-signed-16bit a (index-ash i -1))))
(defun aset-int16 (v a i)
(declare (type int16 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (lucid::%svref-signed-16bit a (index-ash i -1)) v))
(defun aref-card32 (a i)
(declare (type buffer-bytes a)
(type array-index i)
(clx-values card32))
#.(declare-buffun)
(the card32 (lucid::%svref-32bit a (index-ash i -2))))
(defun aset-card32 (v a i)
(declare (type card32 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (lucid::%svref-32bit a (index-ash i -2)) v))
(defun aref-int32 (a i)
(declare (type buffer-bytes a)
(type array-index i)
(clx-values int32))
#.(declare-buffun)
(the int32 (lucid::%svref-signed-32bit a (index-ash i -2))))
(defun aset-int32 (v a i)
(declare (type int32 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (lucid::%svref-signed-32bit a (index-ash i -2)) v))
(defun aref-card29 (a i)
(declare (type buffer-bytes a)
(type array-index i)
(clx-values card29))
#.(declare-buffun)
(the card29 (lucid::%svref-32bit a (index-ash i -2))))
(defun aset-card29 (v a i)
(declare (type card29 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (lucid::%svref-32bit a (index-ash i -2)) v))
)
#-(or excl lcl3.0 clx-overlapping-arrays)
(progn
(defun aref-card16 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values card16))
#.(declare-buffun)
(the card16
(logior (the card16
(defun aset-card16 (v a i)
(declare (type card16 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (aref a (index+ i +word-1+)) (the card8 (ldb (byte 8 8) v))
(aref a (index+ i +word-0+)) (the card8 (ldb (byte 8 0) v)))
v)
(defun aref-int16 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values int16))
#.(declare-buffun)
(the int16
(logior (the int16
(ash (the int8 (aref-int8 a (index+ i +word-1+))) 8))
(defun aset-int16 (v a i)
(declare (type int16 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (aref a (index+ i +word-1+)) (the card8 (ldb (byte 8 8) v))
(aref a (index+ i +word-0+)) (the card8 (ldb (byte 8 0) v)))
v)
(defun aref-card32 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values card32))
#.(declare-buffun)
(the card32
(logior (the card32
(defun aset-card32 (v a i)
(declare (type card32 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (aref a (index+ i +long-3+)) (the card8 (ldb (byte 8 24) v))
(aref a (index+ i +long-2+)) (the card8 (ldb (byte 8 16) v))
(aref a (index+ i +long-1+)) (the card8 (ldb (byte 8 8) v))
(aref a (index+ i +long-0+)) (the card8 (ldb (byte 8 0) v)))
v)
(defun aref-int32 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values int32))
#.(declare-buffun)
(the int32
(logior (the int32
(ash (the int8 (aref-int8 a (index+ i +long-3+))) 24))
(defun aset-int32 (v a i)
(declare (type int32 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (aref a (index+ i +long-3+)) (the card8 (ldb (byte 8 24) v))
(aref a (index+ i +long-2+)) (the card8 (ldb (byte 8 16) v))
(aref a (index+ i +long-1+)) (the card8 (ldb (byte 8 8) v))
(aref a (index+ i +long-0+)) (the card8 (ldb (byte 8 0) v)))
v)
(defun aref-card29 (a i)
(declare (type buffer-bytes a)
(type array-index i))
(declare (clx-values card29))
#.(declare-buffun)
(the card29
(logior (the card29
(defun aset-card29 (v a i)
(declare (type card29 v)
(type buffer-bytes a)
(type array-index i))
#.(declare-buffun)
(setf (aref a (index+ i +long-3+)) (the card8 (ldb (byte 8 24) v))
(aref a (index+ i +long-2+)) (the card8 (ldb (byte 8 16) v))
(aref a (index+ i +long-1+)) (the card8 (ldb (byte 8 8) v))
(aref a (index+ i +long-0+)) (the card8 (ldb (byte 8 0) v)))
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
v)
)
(defsetf aref-card8 (a i) (v)
`(aset-card8 ,v ,a ,i))
(defsetf aref-int8 (a i) (v)
`(aset-int8 ,v ,a ,i))
(defsetf aref-card16 (a i) (v)
`(aset-card16 ,v ,a ,i))
(defsetf aref-int16 (a i) (v)
`(aset-int16 ,v ,a ,i))
(defsetf aref-card32 (a i) (v)
`(aset-card32 ,v ,a ,i))
(defsetf aref-int32 (a i) (v)
`(aset-int32 ,v ,a ,i))
(defsetf aref-card29 (a i) (v)
`(aset-card29 ,v ,a ,i))
;;; Other random conversions
(defun rgb-val->card16 (value)
;; Short floats are good enough
(declare (type rgb-val value))
(declare (clx-values card16))
#.(declare-buffun)
;; Convert VALUE from float to card16
(the card16 (values (round (the rgb-val value) #.(/ 1.0s0 #xffff)))))
(defun card16->rgb-val (value)
;; Short floats are good enough
(declare (type card16 value))
(declare (clx-values short-float))
#.(declare-buffun)
;; Convert VALUE from card16 to float
(the short-float (* (the card16 value) #.(/ 1.0s0 #xffff))))
(defun radians->int16 (value)
;; Short floats are good enough
(declare (type angle value))
(declare (clx-values int16))
#.(declare-buffun)
(the int16 (values (round (the angle value) #.(float (/ pi 180.0s0 64.0s0) 0.0s0)))))
(defun int16->radians (value)
;; Short floats are good enough
(declare (type int16 value))
(declare (clx-values short-float))
#.(declare-buffun)
(the short-float (* (the int16 value) #.(coerce (/ pi 180.0 64.0) 'short-float))))
#+(or cmu sbcl) (progn
;;; This overrides the (probably incorrect) definition in clx.lisp. Since PI
;;; is irrational, there can't be a precise rational representation. In
;;; particular, the different float approximations will always be /=. This
;;; causes problems with type checking, because people might compute an
;;; argument in any precision. What we do is discard all the excess precision
;;; in the value, and see if the protocol encoding falls in the desired range
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
;;; (64'ths of a degree.)
;;;
(deftype angle () '(satisfies anglep))
(defun anglep (x)
(and (typep x 'real)
(<= (* -360 64) (radians->int16 x) (* 360 64))))
)
;;-----------------------------------------------------------------------------
;; Character transformation
;;-----------------------------------------------------------------------------
;;; This stuff transforms chars to ascii codes in card8's and back.
;;; You might have to hack it a little to get it to work for your machine.
(declaim (inline char->card8 card8->char))
(macrolet ((char-translators ()
(let ((alist
`(#-lispm
;; The normal ascii codes for the control characters.
,@`((#\Return . 13)
(#\Linefeed . 10)
(#\Rubout . 127)
(#\Page . 12)
(#\Tab . 9)
(#\Backspace . 8)
(#\Newline . 10)
(#\Space . 32))
;; One the lispm, #\Newline is #\Return, but we'd really like
;; #\Newline to translate to ascii code 10, so we swap the
;; Ascii codes for #\Return and #\Linefeed. We also provide
;; mappings from the counterparts of these control characters
;; so that the character mapping from the lisp machine
;; character set to ascii is invertible.
#+lispm
,@`((#\Return . 10) (,(code-char 10) . ,(char-code #\Return))
(#\Linefeed . 13) (,(code-char 13) . ,(char-code #\Linefeed))
(#\Rubout . 127) (,(code-char 127) . ,(char-code #\Rubout))
(#\Page . 12) (,(code-char 12) . ,(char-code #\Page))
(#\Tab . 9) (,(code-char 9) . ,(char-code #\Tab))
(#\Backspace . 8) (,(code-char 8) . ,(char-code #\Backspace))
(#\Newline . 10) (,(code-char 10) . ,(char-code #\Newline))
(#\Space . 32) (,(code-char 32) . ,(char-code #\Space)))
;; The rest of the common lisp charater set with the normal
;; ascii codes for them.
(#\! . 33) (#\" . 34) (#\# . 35) (#\$ . 36)
(#\% . 37) (#\& . 38) (#\' . 39) (#\( . 40)
(#\) . 41) (#\* . 42) (#\+ . 43) (#\, . 44)
(#\- . 45) (#\. . 46) (#\/ . 47) (#\0 . 48)
(#\1 . 49) (#\2 . 50) (#\3 . 51) (#\4 . 52)
(#\5 . 53) (#\6 . 54) (#\7 . 55) (#\8 . 56)
(#\9 . 57) (#\: . 58) (#\; . 59) (#\< . 60)
(#\= . 61) (#\> . 62) (#\? . 63) (#\@ . 64)
(#\A . 65) (#\B . 66) (#\C . 67) (#\D . 68)
(#\E . 69) (#\F . 70) (#\G . 71) (#\H . 72)
(#\I . 73) (#\J . 74) (#\K . 75) (#\L . 76)
(#\M . 77) (#\N . 78) (#\O . 79) (#\P . 80)
(#\Q . 81) (#\R . 82) (#\S . 83) (#\T . 84)
(#\U . 85) (#\V . 86) (#\W . 87) (#\X . 88)
(#\Y . 89) (#\Z . 90) (#\[ . 91) (#\\ . 92)
(#\] . 93) (#\^ . 94) (#\_ . 95) (#\` . 96)
(#\a . 97) (#\b . 98) (#\c . 99) (#\d . 100)
(#\e . 101) (#\f . 102) (#\g . 103) (#\h . 104)
(#\i . 105) (#\j . 106) (#\k . 107) (#\l . 108)
(#\m . 109) (#\n . 110) (#\o . 111) (#\p . 112)
(#\q . 113) (#\r . 114) (#\s . 115) (#\t . 116)
(#\u . 117) (#\v . 118) (#\w . 119) (#\x . 120)
(#\y . 121) (#\z . 122) (#\{ . 123) (#\| . 124)
(#\} . 125) (#\~ . 126))))
(cond ((dolist (pair alist nil)
(when (not (= (char-code (car pair)) (cdr pair)))
(return t)))
`(progn
(defconstant *char-to-card8-translation-table*
',(let ((array (make-array
(let ((max-char-code 255))
(dolist (pair alist)
(setq max-char-code
(max max-char-code
(char-code (car pair)))))
(1+ max-char-code))
:element-type 'card8)))
(dotimes (i (length array))
(setf (aref array i) (mod i 256)))
(dolist (pair alist)
(setf (aref array (char-code (car pair)))
(cdr pair)))
array))
(defconstant *card8-to-char-translation-table*
',(let ((array (make-array 256)))
(dotimes (i (length array))
(setf (aref array i) (code-char i)))
(dolist (pair alist)
(setf (aref array (cdr pair)) (car pair)))
array))
#-Genera
(progn
(defun char->card8 (char)
(declare (type base-char char))
#.(declare-buffun)
(the card8 (aref (the (simple-array card8 (*))
*char-to-card8-translation-table*)
(the array-index (char-code char)))))
(defun card8->char (card8)
(declare (type card8 card8))
#.(declare-buffun)
(the base-char
(or (aref (the simple-vector *card8-to-char-translation-table*)
card8)
(error "Invalid CHAR code ~D." card8))))
)
#+Genera
(progn
(defun char->card8 (char)
(declare lt:(side-effects reader reducible))
(aref *char-to-card8-translation-table* (char-code char)))
(defun card8->char (card8)
(declare lt:(side-effects reader reducible))
(aref *card8-to-char-translation-table* card8))
)
#-Minima
(dotimes (i 256)
(unless (= i (char->card8 (card8->char i)))
(warn "The card8->char mapping is not invertible through char->card8. Info:~%~S"
(list i
(card8->char i)
(char->card8 (card8->char i))))
(return nil)))
#-Minima
(dotimes (i (length *char-to-card8-translation-table*))
(let ((char (code-char i)))
(unless (eql char (card8->char (char->card8 char)))
(warn "The char->card8 mapping is not invertible through card8->char. Info:~%~S"
(list char
(char->card8 char)
(card8->char (char->card8 char))))
(return nil))))))
(t
`(progn
(defun char->card8 (char)
(declare (type base-char char))
#.(declare-buffun)
(the card8 (char-code char)))
(defun card8->char (card8)
(declare (type card8 card8))
#.(declare-buffun)
(the base-char (code-char card8)))
))))))
(char-translators))
;;-----------------------------------------------------------------------------
;; Process Locking
;;
;; Common-Lisp doesn't provide process locking primitives, so we define
;; our own here, based on Zetalisp primitives. Holding-Lock is very
;; similar to with-lock on The TI Explorer, and a little more efficient
;; than with-process-lock on a Symbolics.
;;-----------------------------------------------------------------------------
;;; MAKE-PROCESS-LOCK: Creating a process lock.
#-(or LispM excl Minima sbcl (and cmu mp))
(defun make-process-lock (name)
(declare (ignore name))
nil)
#+excl
(defun make-process-lock (name)
(mp:make-process-lock :name name))
#+(and LispM (not Genera))
(defun make-process-lock (name)
(vector nil name))
#+Genera
(defun make-process-lock (name)
(process:make-lock name :flavor 'clx-lock))
#+Minima
(defun make-process-lock (name)
(minima:make-lock name :recursive t))
#+(and cmu mp)
(defun make-process-lock (name)
(mp:make-lock name))
#+sbcl
(defun make-process-lock (name)
(sb-thread:make-mutex :name name))
;;; HOLDING-LOCK: Execute a body of code with a lock held.
;;; The holding-lock macro takes a timeout keyword argument. EVENT-LISTEN
;;; passes its timeout to the holding-lock macro, so any timeout you want to
;;; work for event-listen you should do for holding-lock.
;; If you're not sharing DISPLAY objects within a multi-processing
;; shared-memory environment, this is sufficient
#-(or lispm excl lcl3.0 Minima sbcl (and CMU mp) )
(defmacro holding-lock ((locator display &optional whostate &key timeout) &body body)
(declare (ignore locator display whostate timeout))
`(progn ,@body))
;;; HOLDING-LOCK for CMU Common Lisp.
;;;
;;; We are not multi-processing, but we use this macro to try to protect
;;; against re-entering request functions. This can happen if an interrupt
;;; occurs and the handler attempts to use X over the same display connection.
;;; This can happen if the GC hooks are used to notify the user over the same
;;; display connection. We inhibit GC notifications since display of them
;;; could cause recursive entry into CLX.
;;;
(defmacro holding-lock ((locator display &optional whostate &key timeout)
&body body)
`(let #+cmu((ext:*gc-verbose* nil)
(ext:*gc-inhibit-hook* nil)
(ext:*before-gc-hooks* nil)
(ext:*after-gc-hooks* nil))
#+sbcl()
,locator ,display ,whostate ,timeout
(system:without-interrupts (progn ,@body))))
;;; HOLDING-LOCK for CMU Common Lisp with multi-processes.
;;;
#+(and cmu mp)
(defmacro holding-lock ((lock display &optional (whostate "CLX wait")
&key timeout)
&body body)
(declare (ignore display))
`(mp:with-lock-held (,lock ,whostate ,@(and timeout `(:timeout ,timeout)))
,@body))
#+sbcl
(defmacro holding-lock ((lock display &optional (whostate "CLX wait")
&key timeout)
&body body)
;; This macro is used by WITH-DISPLAY, which claims to be callable
;; recursively. So, had better use a recursive lock.
;;
;; FIXME: This is hideously ugly. If WITH-TIMEOUT handled NIL
;; timeouts...
(declare (ignore display whostate))
(if timeout
`(if ,timeout
(handler-case
(sb-ext:with-timeout ,timeout
(sb-thread:with-recursive-lock (,lock)
,@body))
(sb-ext:timeout () nil))
(sb-thread:with-recursive-lock (,lock)
,@body))
`(sb-thread:with-recursive-lock (,lock)
,@body)))
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#+Genera
(defmacro holding-lock ((locator display &optional whostate &key timeout)
&body body)
(declare (ignore whostate))
`(process:with-lock (,locator :timeout ,timeout)
(let ((.debug-io. (buffer-debug-io ,display)))
(scl:let-if .debug-io. ((*debug-io* .debug-io.))
,@body))))
#+(and lispm (not Genera))
(defmacro holding-lock ((locator display &optional whostate &key timeout)
&body body)
(declare (ignore display))
;; This macro is for use in a multi-process environment.
(let ((lock (gensym))
(have-lock (gensym))
(timeo (gensym)))
`(let* ((,lock (zl:locf (svref ,locator 0)))
(,have-lock (eq (car ,lock) sys:current-process))
(,timeo ,timeout))
(unwind-protect
(when (cond (,have-lock)
((#+explorer si:%store-conditional
#-explorer sys:store-conditional
,lock nil sys:current-process))
((null ,timeo)
(sys:process-lock ,lock nil ,(or whostate "CLX Lock")))
((sys:process-wait-with-timeout
,(or whostate "CLX Lock") (round (* ,timeo 60.))
#'(lambda (lock process)
(#+explorer si:%store-conditional
#-explorer sys:store-conditional
lock nil process))
,lock sys:current-process)))
,@body)
(unless ,have-lock
(#+explorer si:%store-conditional
#-explorer sys:store-conditional
,lock sys:current-process nil))))))
;; Lucid has a process locking mechanism as well under release 3.0