From a6ecd9e29d6abbf53ef51ef58585216f64fb37ec Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Thu, 7 Nov 1991 16:58:48 +0000 Subject: [PATCH] CLX R5 changes. --- clx/CHANGES | 281 +++++- clx/README | 6 +- clx/attributes.lisp | 33 - clx/buffer.lisp | 389 ++++++-- clx/bufmac.lisp | 16 +- clx/clx.lisp | 300 +----- clx/defsystem.lisp | 637 +++++------- clx/depdefs.lisp | 371 ++++--- clx/dependent.lisp | 2302 +++++++++++++++++++++++-------------------- clx/display.lisp | 62 +- clx/doc.lisp | 39 +- clx/exclMakefile | 157 +-- clx/exclREADME | 7 +- clx/exclcmac.lisp | 177 ++-- clx/excldep.lisp | 283 ++---- clx/fonts.lisp | 11 +- clx/gcontext.lisp | 101 +- clx/graphics.lisp | 13 - clx/image.lisp | 741 +++++++------- clx/input.lisp | 453 ++++----- clx/macros.lisp | 25 +- clx/manager.lisp | 333 +++---- clx/package.lisp | 384 ++++++++ clx/provide.lisp | 55 +- clx/requests.lisp | 173 +--- clx/resource.lisp | 157 ++- clx/socket.c | 19 +- clx/text.lisp | 147 ++- clx/translate.lisp | 70 +- 29 files changed, 3982 insertions(+), 3760 deletions(-) create mode 100644 clx/package.lisp diff --git a/clx/CHANGES b/clx/CHANGES index def193673..e6468aeb7 100644 --- a/clx/CHANGES +++ b/clx/CHANGES @@ -1,13 +1,19 @@ -R4 changes: +R5 changes: (see below for details) o Numerous bug fixes +o Continued gradual conversion towards ANSI Common Lisp + +o Performance improvements to image code + o Multiprocess locking and error reporting made more robust o Event queue consing reduced o ICCCM support +Details of changes since R4: + R4.1 changes: o Fix reported bugs and to include the vendor-specific @@ -49,3 +55,276 @@ o Some ansi common lisp stuff. If you have :ansi-common-lisp on *features*, o Code compiled with the R4 and R4.1 CLX will work with the R4.2 CLX, provided you don't have :ansi-common-lisp on your features list. Code compiled with the R4.2 CLX will NOT work with the R4 CLX. + +R4.3 changes: + +o Changed the ansi-common-lisp feature to clx-ansi-common-lisp. + +o A new package.l file has been introduced. All the package operations that + were in the other files have been moved to package.l. Because of this, + the compile-clx and load-clx functions which are defined in the defsystem.l + file have been moved to the user package from the xlib package, since the xlib + package isn't defined when the defsystem.l file is loaded. + +o excldefsys.l has been merged into defsystem.l. You don't have to rename + excldefsys.l to defsystem.l anymore. + +o User-specified-size/position-p hints are now set correctly. + These hints were being ignored if the size-hints structure did not + define the corresponding geometry slots. But ICCCM declares these + slots to be obsolete. + +o (setf wm-command) has been changed to use PRIN1 inside the ANSI Common Lisp + form WITH-STANDARD-IO-SYNTAX (or the equivalent defined in dependent.l), with + elements of command separated by NULL characters. This enables + (with-standard-io-syntax (mapcar #'read-from-string (wm-command window))) + to recover a lisp command. + +o A typo in X-TYPE-ERROR has been fixed. + +o The WITH-GCONTEXT macro has been changed so that if you supply nil for a + property value, WITH-GCONTEXT is will leave the property unchanged. It used + to always change the property without regard for whether the supplied value + was nil. This change to how the macro expands, so user code has to be + recompiled for the change to take effect. + +o Since ANSI Common Lisp doesn't have CHAR-BIT, the implementation of + DEFAULT-KEYSYM-TRANSLATE is now implementation dependent in ANSI Common Lisp + implementations, with the default doing nothing to character objects. In + non-ANSI Common Lisps and lispms, it still uses CHAR-BIT. The definition of + DEFAULT-KEYSYM-TRANSLATE has been moved to dependent.l. + +o The image putting, getting, and copying code has been sped up a bit for lispm, + lcl3.0, and excl. + +o The lcl3.0 io code has been sped up a bit by using read-array instead of + fast-read-byte. + +o READ-RESOURCES now handles any lines that start with # and don't start with + #include as comments. + +R4.4 changes: + +o Fixed typo in DEFAULT-KEYSYM-TRANSLATE. + +o In events, CurrentTime (encoded as 0 in the protocol) decodes to NIL instead + of 0. + +o NIL now translates to and from the atom-id of 0. + +o A new variable *OUTPUT-BUFFER-SIZE* has been introduced, with value 8192. + Now, instead of the buffer creating code always creating output buffers of + length 8192 bytes, they create output buffers of length *OUTPUT-BUFFER-SIZE* + bytes. + +o GCONTEXT-CACHE-P, COLORMAP-PLIST and CURSOR-PLIST have been exported. + +o If CREATE-GCONTEXT is given a rect-seq as a clip-mask, then a + SetClipRectangles request must be sent to initialize the clip-mask. The logic + to do this is located in FORCE-GCONTEXT-CHANGES-INTERNAL, but this wasn't + being called because create-gcontext always forces local/server-state + timestamps equal. Same problem for dash lists. CREATE-GCONTEXT has been + fixed so that in these cases it makes the timestamps unequal so that + FORCE-GCONTEXT-CHANGES-INTERNAL is called. + +o ANGLEP type check sped up for excl. Arc drawing should be lots faster. + +o RATIONAL type definition for kcl now takes the correct optional args. + +o (SETF FONT-PATH) changed to return the value + +o Fixed typo in the hex parsing in READ-BITMAP-FILE + +o Made READ-RESOURCES more robust about weird resource files. + +o New variable *DEF-CLX-CLASS-USE-DEFCLASS*, which controls whether DEF-CLX-CLASS + uses DEFCLASS. If it is a list, it is interpreted by DEF-CLX-CLASS to be a list + of type names for which DEFCLASS should be used. If it is not a list, DEFCLASS + is always used. IF it is NIL, DEFCLASS is never used, since NIL is the empty + list. By default, it's T in Genera, NIL otherwise. + +o Fixed typo in DEFINE-CONDITION for #-(or lispm clx-ansi-common-lisp excl lcl3.0). + +o Fixed typo in MERGE-RESOURCES + +o In Lucid lisp, the functions aref-card8, aref-int8, aset-card8, aset-int8, + aref-card16, aref-int16, aref-card32, aref-int32, aref-card29, aset-card16, + aset-int16, aset-card32, aset-int32, and aset-card29 Have been fixed so that + they can be used inline with the development compiler. + +o The default value of the BYTE-LSB-FIRST-P argument to CREATE-IMAGE has been + changed from always T to T on LSBFirst machines and NIL on MSBFirst machines. + +o The order of the color values returned by ALLOC-COLOR when a color name is supplied + as an argument is fixed so that the screen color correctly is returned as the second + value and the exact color is correctly returned as the third value. The order was + backwards. + +o The internal WITH-BUFFER-INPUT and WITH-BUFFER-OUTPUT macros have been + changed to wrap macrolet around body only when necessary. This simplifies the + compiler's job for non lisp machines. + +o All uses of DEFINE-CONDITION have been changed to include a slots argument, + even if that argument is NIL -- the argument is not optional. + +o DEFINE-CONDITION is no longer exported from the XLIB package. + +o New functionality has been added to make-pixmap and make-window. They may + now take a :PIXMAP or :WINDOW argument (respectively). If non-NIL (default is + nil), they will use that argument as the pixmap or window object to be set. + Otherwise they will create a new pixmap/window object. This whole schmeel is + necessary because creation of window and pixmap objects in CLX doesn't go + through the CLOS initialize-instance mechanism. + +o The DESCRIBE-WINDOW debug utility has been fixed to not use strange + lisp machine format codes. + +o Numerous Allegro specific changes in support of Allegro CL version 4.0. + +R4.5 changes: + +o Fixed READ-VECTOR-CARD8 and WRITE-VECTOR-CARD8 to work with arbitrary vectors. + +o Changed COMPILE-CLX and LOAD-CLX to use the verbose mode of COMPILE-FILE and LOAD. + +o Added a conditional for HPUX to COMPILE-CLX. + +o Changed DISPLAY-CONNECT to save the default colormap ID in the ID database. + +o Added new keyword arguments :PROGRAM-SPECIFIED-POSITION-P and :PROGRAM-SPECIFIED-SIZE-P + to SET-WM-PROPERTIES and corresponsing slots in the WM-SIZE-HINTS structure. + These control the appropriate flags in the size hints. The old way of controlling these + flags, with the :X, :Y, :WIDTH, and :HEIGHT arguments, is now obsolete due to changes + in the ICCCM. + +o Removed bogus declarations from the SETF expander for WM-NAME. + +o Defined a proper SETF function for CUT-BUFFER when in ANSI Lisp. + +o Fix the encoding of the revert-to argument to SET-INPUT-FOCUS. + +o Fix a fencepost error in STORE-COLORS. + +o Fix TEXT-EXTENTS and TEXT-WIDTH to handle font changes properly. + +o Fix TEXT-EXTENTS-LOCAL to handle negative ascents and descents properly. + +o Fix DRAW-IMAGE-GLYPHS to not try to write more than 255 glyphs. + +o Added conditionalizations for Minima, a new operating system under development at Symbolics. + +o Some gratuitous changes in the Symbolics-specific code. + +o Removed *EVENT-LOOP-VERSION* and support for pre-R4.1 compiled code. + +o In Lucid, fixed HOLDING-LOCK to clean up on timeout. + +o Gcontexts and fonts without associated displays now print correctly. + +Requests that send "strings" of two byte font indices can *not* assume that +the two byte objects are being written on two byte boundaries. The simplest +fix was just to modify the write-*-card16 functions to use a new macro that +writes one half of the object at a time. The only undesirable affect of +this is that CLIENT-MESSAGE and CHANGE-PROPERTY are slightly slower for +card16 data than they were before. + NEW macro + -- write-card16-by-bytes bufmac.l + CHANGED functions: + -- write-list-card16 buffer.l + -- write-list-card16-with-transform "" + -- write-simple-array-card16 "" + -- write-simple-array-card16-with-transform "" + -- write-vector-card16 "" + -- write-vector-card16-with-transform "" + +Print functions changed to use write-string instead of princ where +possible. This allows for much cleaner printing when *print-circle* is +true -- princ is required to use *print-circle*, even for strings! +Write-string is, of course, not so burdened. + -- print-color clx.l + -- print-display "" + -- print-drawable "" + -- print-visual-info "" + -- print-colormap "" + -- print-cursor "" + -- print-gcontext "" + -- print-screen "" + -- print-font "" + -- print-resource-database resource.l + -- print-image image.l + +Changes to display tracing: In a multiprocessing system is it very helpful +to know what process wrote or read certain requests. Thus I have modified +the format of the trace-history list. It is now an alist of: ((id . +more-info) . byte-vector). (more-info is a list returned by the +trace-more-info function). Also added the ability to suspend and resume +tracing without destroying the trace history. Renamed 'display-trace' to +'show-trace' to avoid confusion. (Having both 'trace-display and +'display-trace wasn't such a hot idea). + -- lots-o-stuff debug/trace.l + +Image-glyph functions had a different argument order than non-image glyph +functions. Image-glyph functions changed to be compatible with others. +Declarations in draw-glyphs* functions were wrong. + -- draw-image-glyphs text.l + -- draw-image-glyphs8 text.l + -- draw-image-glyphs16 text.l + -- draw-glyphs8 text.l + -- draw-glyphs16 text.l + +Quote #.'ed arrays to accomodate CLTL1 lisps + -- empty-data constants image.l + +Set-input-focus fix wasn't finished + -- set-input-focus requests.l + +Standardized strange integer type specifier in keysym macro + -- keysym translate.l + +=============================================================================== +Franz specific changes, applicable to Allegro and Extended Common Lisps: +(note that all these changes are #+excl or #+allegro, so if you're not + using our product these changes are "commented" out) +----------------------------------------------------------------------- +Atom-cache hash table type changed to #'equal. Resource-id-map has table +type changed to #'equal. + NEW macro + -- atom-cache-map-test depdefs.l + CHANGED def-clx-class + -- display clx.l + CHANGED macro + -- resource-id-map-test depdefs.l + +Don't bother to import require, provide, since we're using the CLTL1 +package. Also put the requires and provides inside eval-when to make the +compiler happy. Don't redefine typep, instead push our customizations onto +the typep handling list. + -- toplevel forms excldep.l + +Old code removed from file + -- removed some cmacros exclcmac.l + +Allegro >=4.0 now does support with-standard-io-syntax and +print-unreadable-object. + -- with-standard-io-syntax{,-function} dependent.l + -- print-unreadable-object{,-function} depdefs.l + +Conditionalizations in Makefile cleaned up. + -- exclMakefile + +Descriptive comment added to holding-lock + -- holding-lock dependent.l + +Added typep transformers for all CLX types. + -- excldep.cl + +R5.0 changes: + +o Changed occurrances STRING-CHAR to BASE-CHAR. + +o Fixed some type declarations to use type NULL instead of NIL. + +o Various fixes to vendor-specific code. + +o Detect attempts to use images an incorrect depth. + diff --git a/clx/README b/clx/README index 61696276c..7f4aa19a8 100644 --- a/clx/README +++ b/clx/README @@ -29,8 +29,8 @@ compiled with (make-system "CLX" :compile :noconfirm) and loaded with For Lucid systems, you should rename all the .l files to .lisp too (This might not be possible on SysV systems). After loading the defsystem.l file, CLX can -be compiled with the (xlib:compile-clx) function and loaded with the -(xlib:load-clx) form. +be compiled with the (compile-clx) function and loaded with the +(load-clx) form. The ms-patch.uu file is a patch to Lucid version 2 systems. You probably don't need it, as you are probably running Lucid version 3 or later, but if @@ -40,7 +40,7 @@ uudecode it to produce the binary. For kcl systems, after loading the defsystem.l file, CLX can be compiled with -the (xlib:compile-clx) function and loaded with the (xlib:load-clx) form. +the (compile-clx) function and loaded with the (load-clx) form. diff --git a/clx/attributes.lisp b/clx/attributes.lisp index 59be1388c..43d298c41 100644 --- a/clx/attributes.lisp +++ b/clx/attributes.lisp @@ -42,39 +42,6 @@ (in-package :xlib) -(export '( - with-state - window-visual-info - window-visual - window-class - window-background ;; setf only - window-border - window-bit-gravity - window-gravity - window-backing-store - window-backing-planes - window-backing-pixel - window-save-under - window-override-redirect - window-event-mask - window-do-not-propagate-mask - window-colormap - window-cursor - window-colormap-installed-p - window-all-event-masks - window-map-state - - drawable-root - drawable-x - drawable-y - drawable-width - drawable-height - drawable-depth - drawable-border-width - - window-priority - )) - (eval-when (compile load eval) ;needed by Franz Lisp (defconstant *attribute-size* 44) (defconstant *geometry-size* 24) diff --git a/clx/buffer.lisp b/clx/buffer.lisp index f77b310ad..bc1b12a00 100644 --- a/clx/buffer.lisp +++ b/clx/buffer.lisp @@ -68,7 +68,7 @@ ,@body))) ,(if (and (null inline) (macroexpand '(use-closures) env)) `(flet ((.with-buffer-body. () ,@body)) - #+ansi-common-lisp + #+clx-ansi-common-lisp (declare (dynamic-extent #'.with-buffer-body.)) (with-buffer-function ,buffer ,timeout #'.with-buffer-body.)) (let ((buf (if (or (symbolp buffer) (constantp buffer)) @@ -87,7 +87,10 @@ (declare (type display buffer) (type (or null number) timeout) (type function function) - (downward-funarg function)) + #+clx-ansi-common-lisp + (dynamic-extent function) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg function)) (with-buffer (buffer :timeout timeout :inline t) (funcall function))) @@ -193,8 +196,11 @@ (when (member 8 sizes) '(buffer-bbuf)) (when (member 16 sizes) '(buffer-woffset buffer-wbuf)) (when (member 32 sizes) '(buffer-loffset buffer-lbuf))) + #+clx-overlapping-arrays (macrolet ((%buffer-sizes () ',sizes)) - ,@body)))) + ,@body) + #-clx-overlapping-arrays + ,@body))) (defun make-buffer (output-size constructor &rest options) (declare (dynamic-extent options)) @@ -280,7 +286,10 @@ (declare (type display display) (type (or null gcontext) gc-force)) (declare (type function request-function) - (downward-funarg request-function)) + #+clx-ansi-common-lisp + (dynamic-extent request-function) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg request-function)) (with-buffer (display :inline t) (multiple-value-prog1 (progn @@ -292,7 +301,10 @@ (declare (type display display) (type (or null gcontext) gc-force)) (declare (type function request-function) - (downward-funarg request-function)) + #+clx-ansi-common-lisp + (dynamic-extent request-function) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg request-function)) (multiple-value-prog1 (progn (when gc-force (force-gcontext-changes-internal gc-force)) @@ -310,7 +322,10 @@ (declare (type display display) (type boolean multiple-reply)) (declare (type function request-function reply-function) - (downward-funarg request-function reply-function)) + #+clx-ansi-common-lisp + (dynamic-extent request-function reply-function) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg request-function reply-function)) (let ((pending-command nil) (reply-buffer nil)) (declare (type (or null pending-command) pending-command) @@ -479,12 +494,15 @@ (type array-index nitems start index) (type (or null sequence) data)) (declare (type (or null (function (character) t)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (if transform (flet ((card8->char->transform (v) (declare (type card8 v)) (funcall transform (card8->char v)))) - #+ansi-common-lisp + #+clx-ansi-common-lisp (declare (dynamic-extent #'card8->char->transform)) (read-sequence-card8 reply-buffer result-type nitems #'card8->char->transform @@ -513,7 +531,10 @@ (type array-index nitems start index) (type list data)) (declare (type (function (card8) t) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-buffer-input (reply-buffer :sizes (8) :index index) (do* ((j nitems (index- j 1)) (lst (nthcdr start data) (cdr lst)) @@ -538,14 +559,17 @@ (type array-index nitems start index) (type (simple-array card8 (*)) data)) (declare (type (function (card8) card8) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data (simple-array card8 (*))) (with-buffer-input (reply-buffer :sizes (8) :index index) (do* ((j start (index+ j 1)) (end (index+ start nitems)) (index 0 (index+ index 1))) ((index>= j end)) - (declare (type array-index j index)) + (declare (type array-index j end index)) (setf (aref data j) (the card8 (funcall transform (read-card8 index)))))))) (defun read-vector-card8 (reply-buffer nitems data start index) @@ -553,22 +577,30 @@ (type array-index nitems start index) (type vector data)) (with-vector (data vector) - (with-buffer-input (reply-buffer :sizes (8)) - (buffer-replace data buffer-bbuf start (index+ start nitems) index)))) + (with-buffer-input (reply-buffer :sizes (8) :index index) + (do* ((j start (index+ j 1)) + (end (index+ start nitems)) + (index 0 (index+ index 1))) + ((index>= j end)) + (declare (type array-index j end index)) + (setf (aref data j) (read-card8 index)))))) (defun read-vector-card8-with-transform (reply-buffer nitems data transform start index) (declare (type reply-buffer reply-buffer) (type array-index nitems start index) (type vector data)) (declare (type (function (card8) t) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data vector) (with-buffer-input (reply-buffer :sizes (8) :index index) (do* ((j start (index+ j 1)) (end (index+ start nitems)) (index 0 (index+ index 1))) ((index>= j end)) - (declare (type array-index j index)) + (declare (type array-index j end index)) (setf (aref data j) (funcall transform (read-card8 index))))))) (defun read-sequence-card8 (reply-buffer result-type nitems &optional transform data @@ -578,7 +610,10 @@ (type array-index nitems start index) (type (or null sequence) data)) (declare (type (or null (function (card8) t)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (let ((result (or data (make-sequence result-type nitems)))) (typecase result (list @@ -608,12 +643,15 @@ (type array-index nitems start index) (type (or null sequence) data)) (declare (type (or null (function (int8) t)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (if transform (flet ((card8->int8->transform (v) (declare (type card8 v)) (funcall transform (card8->int8 v)))) - #+ansi-common-lisp + #+clx-ansi-common-lisp (declare (dynamic-extent #'card8->int8->transform)) (read-sequence-card8 reply-buffer result-type nitems #'card8->int8->transform @@ -642,7 +680,10 @@ (type array-index nitems start index) (type list data)) (declare (type (function (card16) t) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-buffer-input (reply-buffer :sizes (16) :index index) (do* ((j nitems (index- j 1)) (lst (nthcdr start data) (cdr lst)) @@ -664,7 +705,7 @@ (end (index+ start nitems)) (index 0 (index+ index 2))) ((index>= j end)) - (declare (type array-index j index)) + (declare (type array-index j end index)) (setf (aref data j) (the card16 (read-card16 index)))) #+clx-overlapping-arrays (buffer-replace data buffer-wbuf start (index+ start nitems) (index-floor index 2))))) @@ -675,14 +716,17 @@ (type array-index nitems start index) (type (simple-array card16 (*)) data)) (declare (type (function (card16) card16) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data (simple-array card16 (*))) (with-buffer-input (reply-buffer :sizes (16) :index index) (do* ((j start (index+ j 1)) (end (index+ start nitems)) (index 0 (index+ index 2))) ((index>= j end)) - (declare (type array-index j index)) + (declare (type array-index j end index)) (setf (aref data j) (the card16 (funcall transform (read-card16 index)))))))) (defun read-vector-card16 (reply-buffer nitems data start index) @@ -696,7 +740,7 @@ (end (index+ start nitems)) (index 0 (index+ index 2))) ((index>= j end)) - (declare (type array-index j index)) + (declare (type array-index j end index)) (setf (aref data j) (read-card16 index))) #+clx-overlapping-arrays (buffer-replace data buffer-wbuf start (index+ start nitems) (index-floor index 2))))) @@ -706,14 +750,17 @@ (type array-index nitems start index) (type vector data)) (declare (type (function (card16) t) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data vector) (with-buffer-input (reply-buffer :sizes (16) :index index) (do* ((j start (index+ j 1)) (end (index+ start nitems)) (index 0 (index+ index 2))) ((index>= j end)) - (declare (type array-index j index)) + (declare (type array-index j end index)) (setf (aref data j) (funcall transform (read-card16 index))))))) (defun read-sequence-card16 (reply-buffer result-type nitems &optional transform data @@ -723,7 +770,10 @@ (type array-index nitems start index) (type (or null sequence) data)) (declare (type (or null (function (card16) t)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (let ((result (or data (make-sequence result-type nitems)))) (typecase result (list @@ -752,12 +802,15 @@ (type array-index nitems start index) (type (or null sequence) data)) (declare (type (or null (function (int16) t)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (if transform (flet ((card16->int16->transform (v) (declare (type card16 v)) (funcall transform (card16->int16 v)))) - #+ansi-common-lisp + #+clx-ansi-common-lisp (declare (dynamic-extent #'card16->int16->transform)) (read-sequence-card16 reply-buffer result-type nitems #'card16->int16->transform @@ -786,7 +839,10 @@ (type array-index nitems start index) (type list data)) (declare (type (function (card32) t) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-buffer-input (reply-buffer :sizes (32) :index index) (do* ((j nitems (index- j 1)) (lst (nthcdr start data) (cdr lst)) @@ -808,7 +864,7 @@ (end (index+ start nitems)) (index 0 (index+ index 4))) ((index>= j end)) - (declare (type array-index j index)) + (declare (type array-index j end index)) (setf (aref data j) (the card32 (read-card32 index)))) #+clx-overlapping-arrays (buffer-replace data buffer-lbuf start (index+ start nitems) (index-floor index 4))))) @@ -819,14 +875,17 @@ (type array-index nitems start index) (type (simple-array card32 (*)) data)) (declare (type (function (card32) card32) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data (simple-array card32 (*))) (with-buffer-input (reply-buffer :sizes (32) :index index) (do* ((j start (index+ j 1)) (end (index+ start nitems)) (index 0 (index+ index 4))) ((index>= j end)) - (declare (type array-index j index)) + (declare (type array-index j end index)) (setf (aref data j) (the card32 (funcall transform (read-card32 index)))))))) (defun read-vector-card32 (reply-buffer nitems data start index) @@ -840,7 +899,7 @@ (end (index+ start nitems)) (index 0 (index+ index 4))) ((index>= j end)) - (declare (type array-index j index)) + (declare (type array-index j end index)) (setf (aref data j) (read-card32 index))) #+clx-overlapping-arrays (buffer-replace data buffer-lbuf start (index+ start nitems) (index-floor index 4))))) @@ -850,14 +909,17 @@ (type array-index nitems start index) (type vector data)) (declare (type (function (card32) t) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data vector) (with-buffer-input (reply-buffer :sizes (32) :index index) (do* ((j start (index+ j 1)) (end (index+ start nitems)) (index 0 (index+ index 4))) ((index>= j end)) - (declare (type array-index j index)) + (declare (type array-index j end index)) (setf (aref data j) (funcall transform (read-card32 index))))))) (defun read-sequence-card32 (reply-buffer result-type nitems &optional transform data @@ -867,7 +929,10 @@ (type array-index nitems start index) (type (or null sequence) data)) (declare (type (or null (function (card32) t)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (let ((result (or data (make-sequence result-type nitems)))) (typecase result (list @@ -896,12 +961,15 @@ (type array-index nitems start index) (type (or null sequence) data)) (declare (type (or null (function (int32) t)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (if transform (flet ((card32->int32->transform (v) (declare (type card32 v)) (funcall transform (card32->int32 v)))) - #+ansi-common-lisp + #+clx-ansi-common-lisp (declare (dynamic-extent #'card32->int32->transform)) (read-sequence-card32 reply-buffer result-type nitems #'card32->int32->transform @@ -918,11 +986,14 @@ (type sequence data) (type array-index boffset start end)) (declare (type (or null (function (t) character)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (if transform (flet ((transform->char->card8 (x) (char->card8 (the character (funcall transform x))))) - #+ansi-common-lisp + #+clx-ansi-common-lisp (declare (dynamic-extent #'transform->char->card8)) (write-sequence-card8 buffer boffset data start end #'transform->char->card8)) @@ -949,7 +1020,10 @@ (type list data) (type array-index boffset start end)) (declare (type (function (t) card8) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (writing-buffer-chunks card8 ((lst (nthcdr start data))) ((type list lst)) @@ -980,7 +1054,10 @@ (type (simple-array card8 (*)) data) (type array-index boffset start end)) (declare (type (function (card8) card8) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data (simple-array card8 (*))) (writing-buffer-chunks card8 ((index start)) @@ -997,12 +1074,12 @@ (type array-index boffset start end)) (with-vector (data vector) (writing-buffer-chunks card8 - ((index start (index+ index chunk))) + ((index start)) ((type array-index index)) - (buffer-replace buffer-bbuf data - buffer-boffset - (index+ buffer-boffset chunk) - index))) + (dotimes (j chunk) + (declare (type array-index j)) + (write-card8 j (aref data index)) + (setq index (index+ index 1))))) nil) (defun write-vector-card8-with-transform (buffer boffset data start end transform) @@ -1010,7 +1087,10 @@ (type vector data) (type array-index boffset start end)) (declare (type (function (t) card8) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data vector) (writing-buffer-chunks card8 ((index start)) @@ -1027,7 +1107,10 @@ (type sequence data) (type array-index boffset start end)) (declare (type (or null (function (t) card8)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (typecase data (list (if transform @@ -1051,11 +1134,14 @@ (type sequence data) (type array-index boffset start end)) (declare (type (or null (function (t) int8)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (if transform (flet ((transform->int8->card8 (x) (int8->card8 (the int8 (funcall transform x))))) - #+ansi-common-lisp + #+clx-ansi-common-lisp (declare (dynamic-extent #'transform->int8->card8)) (write-sequence-card8 buffer boffset data start end #'transform->int8->card8)) @@ -1082,7 +1168,10 @@ (type list data) (type array-index boffset start end)) (declare (type (function (t) card16) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (writing-buffer-chunks card16 ((lst (nthcdr start data))) ((type list lst)) @@ -1123,7 +1212,10 @@ (type (simple-array card16 (*)) data) (type array-index boffset start end)) (declare (type (function (card16) card16) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data (simple-array card16 (*))) (writing-buffer-chunks card16 ((index start)) @@ -1164,7 +1256,10 @@ (type vector data) (type array-index boffset start end)) (declare (type (function (t) card16) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data vector) (writing-buffer-chunks card16 ((index start)) @@ -1183,7 +1278,10 @@ (type sequence data) (type array-index boffset start end)) (declare (type (or null (function (t) card16)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (typecase data (list (if transform @@ -1220,7 +1318,10 @@ (type list data) (type array-index boffset start end)) (declare (type (function (t) int16) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (writing-buffer-chunks int16 ((lst (nthcdr start data))) ((type list lst)) @@ -1261,7 +1362,10 @@ (type (simple-array int16 (*)) data) (type array-index boffset start end)) (declare (type (function (int16) int16) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data (simple-array int16 (*))) (writing-buffer-chunks int16 ((index start)) @@ -1302,7 +1406,10 @@ (type vector data) (type array-index boffset start end)) (declare (type (function (t) int16) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data vector) (writing-buffer-chunks int16 ((index start)) @@ -1321,7 +1428,10 @@ (type sequence data) (type array-index boffset start end)) (declare (type (or null (function (t) int16)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (typecase data (list (if transform @@ -1358,7 +1468,10 @@ (type list data) (type array-index boffset start end)) (declare (type (function (t) card32) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (writing-buffer-chunks card32 ((lst (nthcdr start data))) ((type list lst)) @@ -1399,7 +1512,10 @@ (type (simple-array card32 (*)) data) (type array-index boffset start end)) (declare (type (function (card32) card32) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data (simple-array card32 (*))) (writing-buffer-chunks card32 ((index start)) @@ -1440,7 +1556,10 @@ (type vector data) (type array-index boffset start end)) (declare (type (function (t) card32) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (with-vector (data vector) (writing-buffer-chunks card32 ((index start)) @@ -1459,7 +1578,10 @@ (type sequence data) (type array-index boffset start end)) (declare (type (or null (function (t) card32)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (typecase data (list (if transform @@ -1483,11 +1605,14 @@ (type sequence data) (type array-index boffset start end)) (declare (type (or null (function (t) int32)) transform) - (downward-funarg transform)) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) (if transform (flet ((transform->int32->card32 (x) (int32->card32 (the int32 (funcall transform x))))) - #+ansi-common-lisp + #+clx-ansi-common-lisp (declare (dynamic-extent #'transform->int32->card32)) (write-sequence-card32 buffer boffset data start end #'transform->int32->card32)) @@ -1509,7 +1634,8 @@ ((zerop byte) (when data ;; Clear uninitialized bits in data (do ((end (index+ j 8))) - ((= k end)) + ((index= k end)) + (declare (type array-index end)) (setf (aref result k) 0) (index-incf k)))) (declare (type array-index k) @@ -1533,3 +1659,134 @@ (declare (type array-index bit) (type card8 byte)) (setq byte (the card8 (logior (the card8 (ash byte 1)) (aref map bit)))))))) + +;;; Writing sequences of char2b's + +(defun write-list-char2b (buffer boffset data start end) + (declare (type buffer buffer) + (type list data) + (type array-index boffset start end)) + (writing-buffer-chunks card16 + ((lst (nthcdr start data))) + ((type list lst)) + (do ((j 0 (index+ j 2))) + ((index>= j (1- chunk)) (setf chunk j)) + (declare (type array-index j)) + (write-char2b j (pop lst)))) + nil) + +(defun write-list-char2b-with-transform (buffer boffset data start end transform) + (declare (type buffer buffer) + (type list data) + (type array-index boffset start end)) + (declare (type (function (t) card16) transform) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) + (writing-buffer-chunks card16 + ((lst (nthcdr start data))) + ((type list lst)) + (do ((j 0 (index+ j 2))) + ((index>= j (1- chunk)) (setf chunk j)) + (declare (type array-index j)) + (write-char2b j (funcall transform (pop lst))))) + nil) + +#-lispm +(defun write-simple-array-char2b (buffer boffset data start end) + (declare (type buffer buffer) + (type (simple-array card16 (*)) data) + (type array-index boffset start end)) + (with-vector (data (simple-array card16 (*))) + (writing-buffer-chunks card16 + ((index start)) + ((type array-index index)) + (do ((j 0 (index+ j 2))) + ((index>= j (1- chunk)) (setf chunk j)) + (declare (type array-index j)) + (write-char2b j (aref data index)) + (setq index (index+ index 1))))) + nil) + +#-lispm +(defun write-simple-array-char2b-with-transform (buffer boffset data start end transform) + (declare (type buffer buffer) + (type (simple-array card16 (*)) data) + (type array-index boffset start end)) + (declare (type (function (card16) card16) transform) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) + (with-vector (data (simple-array card16 (*))) + (writing-buffer-chunks card16 + ((index start)) + ((type array-index index)) + (do ((j 0 (index+ j 2))) + ((index>= j (1- chunk)) (setf chunk j)) + (declare (type array-index j)) + (write-char2b j (funcall transform (aref data index))) + (setq index (index+ index 1))))) + nil) + +(defun write-vector-char2b (buffer boffset data start end) + (declare (type buffer buffer) + (type vector data) + (type array-index boffset start end)) + (with-vector (data vector) + (writing-buffer-chunks card16 + ((index start)) + ((type array-index index)) + (do ((j 0 (index+ j 2))) + ((index>= j (1- chunk)) (setf chunk j)) + (declare (type array-index j)) + (write-char2b j (aref data index)) + (setq index (index+ index 1))))) + nil) + +(defun write-vector-char2b-with-transform (buffer boffset data start end transform) + (declare (type buffer buffer) + (type vector data) + (type array-index boffset start end)) + (declare (type (function (t) card16) transform) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) + (with-vector (data vector) + (writing-buffer-chunks card16 + ((index start)) + ((type array-index index)) + (do ((j 0 (index+ j 2))) + ((index>= j (1- chunk)) (setf chunk j)) + (declare (type array-index j)) + (write-char2b j (funcall transform (aref data index))) + (setq index (index+ index 1))))) + nil) + +(defun write-sequence-char2b + (buffer boffset data &optional (start 0) (end (length data)) transform) + (declare (type buffer buffer) + (type sequence data) + (type array-index boffset start end)) + (declare (type (or null (function (t) card16)) transform) + #+clx-ansi-common-lisp + (dynamic-extent transform) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg transform)) + (typecase data + (list + (if transform + (write-list-char2b-with-transform buffer boffset data start end transform) + (write-list-char2b buffer boffset data start end))) + #-lispm + ((simple-array card16 (*)) + (if transform + (write-simple-array-char2b-with-transform buffer boffset data start end transform) + (write-simple-array-char2b buffer boffset data start end))) + (t + (if transform + (write-vector-char2b-with-transform buffer boffset data start end transform) + (write-vector-char2b buffer boffset data start end))))) + diff --git a/clx/bufmac.lisp b/clx/bufmac.lisp index bb811edf7..00df94462 100644 --- a/clx/bufmac.lisp +++ b/clx/bufmac.lisp @@ -68,6 +68,17 @@ #-clx-overlapping-arrays `(aset-card29 (the card29 ,item) buffer-bbuf (index+ buffer-boffset ,byte-index))) + +;; This is used for 2-byte characters, which may not be aligned on 2-byte boundaries +;; and always are written high-order byte first. +(defmacro write-char2b (byte-index item) + ;; It is impossible to do an overlapping write, so only nonoverlapping here. + `(let ((%item ,item) + (%byte-index (index+ buffer-boffset ,byte-index))) + (declare (type card16 %item) + (type array-index %byte-index)) + (aset-card8 (the card8 (ldb (byte 8 8) %item)) buffer-bbuf %byte-index) + (aset-card8 (the card8 (ldb (byte 8 0) %item)) buffer-bbuf (index+ %byte-index 1)))) (defmacro set-buffer-offset (value &environment env) env @@ -132,8 +143,11 @@ (when (member 8 sizes) '(buffer-bbuf)) (when (member 16 sizes) '(buffer-woffset buffer-wbuf)) (when (member 32 sizes) '(buffer-loffset buffer-lbuf))) + #+clx-overlapping-arrays (macrolet ((%buffer-sizes () ',sizes)) - ,@body)))) + ,@body) + #-clx-overlapping-arrays + ,@body))) ;;; This macro is just used internally in buffer diff --git a/clx/clx.lisp b/clx/clx.lisp index c560354ea..6f345e6d0 100644 --- a/clx/clx.lisp +++ b/clx/clx.lisp @@ -80,212 +80,12 @@ (in-package :xlib) -(export '( - *version* - card32 - card29 - int32 - card16 - int16 - card8 - int8 - rgb-val - angle - mask32 - mask16 - array-index - pixel - image-depth - display - display-p - display-host - display-display - display-after-function - display-protocol-major-version - display-protocol-minor-version - display-vendor-name - display-resource-id-base - display-resource-id-mask - display-xid - display-byte-order - display-release-number - display-max-request-length - display-default-screen - display-nscreens - display-roots - display-motion-buffer-size - display-xdefaults - display-image-lsb-first-p - display-bitmap-format - display-pixmap-formats - display-min-keycode - display-max-keycode - display-error-handler - display-authorization-name - display-authorization-data - display-plist - display-report-asynchronous-errors - color - color-p - color-red - color-green - color-blue - make-color - color-rgb - resource-id - drawable - drawable-p - drawable-equal - drawable-id - drawable-display - drawable-plist - window - window-p - window-equal - window-id - window-display - window-plist - pixmap - pixmap-p - pixmap-equal - pixmap-id - pixmap-display - pixmap-plist - colormap - colormap-p - colormap-equal - colormap-id - colormap-display - colormap-visual-info - cursor - cursor-p - cursor-equal - cursor-id - cursor-display - xatom - stringable - fontable - timestamp - bit-gravity - win-gravity - grab-status - boolean - alist - repeat-seq - point-seq - seg-seq - rect-seq - arc-seq - gcontext - gcontext-p - gcontext-equal - gcontext-id - gcontext-display - gcontext-plist - event-mask-class - event-mask - pointer-event-mask-class - pointer-event-mask - device-event-mask-class - device-event-mask - modifier-key - modifier-mask - state-mask-key - gcontext-key - event-key - error-key - draw-direction - boole-constant - bitmap-format - bitmap-format-p - bitmap-format-unit - bitmap-format-pad - bitmap-format-lsb-first-p - pixmap-format - pixmap-format-p - pixmap-format-depth - pixmap-format-bits-per-pixel - pixmap-format-scanline-pad - visual-info - visual-info-p - visual-info-id - visual-info-display - visual-info-class - visual-info-red-mask - visual-info-green-mask - visual-info-blue-mask - visual-info-bits-per-rgb - visual-info-colormap-entries - visual-info-plist - screen - screen-p - screen-root - screen-width - screen-height - screen-width-in-millimeters - screen-height-in-millimeters - screen-depths - screen-root-depth - screen-root-visual-info - screen-root-visual - screen-default-colormap - screen-white-pixel - screen-black-pixel - screen-min-installed-maps - screen-max-installed-maps - screen-backing-stores - screen-save-unders-p - screen-event-mask-at-open - screen-plist - font - font-p - font-equal - font-id - font-display - font-name - font-direction - font-min-char - font-max-char - font-min-byte1 - font-max-byte1 - font-min-byte2 - font-max-byte2 - font-all-chars-exist-p - font-default-char - font-ascent - font-descent - font-properties - font-property - font-plist - char-left-bearing - max-char-left-bearing - min-char-left-bearing - char-right-bearing - max-char-right-bearing - min-char-right-bearing - char-width - max-char-width - min-char-width - char-ascent - max-char-ascent - min-char-ascent - char-descent - max-char-descent - min-char-descent - char-attributes - max-char-attributes - min-char-attributes - make-event-mask - make-event-keys - make-state-mask - make-state-keys - )) - (pushnew :clx *features*) (pushnew :xlib *features*) -(defparameter *version* "MIT R4.2") +(defparameter *version* "MIT R5.0") (pushnew :clx-mit-r4 *features*) +(pushnew :clx-mit-r5 *features*) (defparameter *protocol-major-version* 11.) (defparameter *protocol-minor-version* 0) @@ -361,6 +161,7 @@ (deftype card4 () '(unsigned-byte 4)) +#-clx-ansi-common-lisp (deftype real (&optional (min '*) (max '*)) (labels ((convert (limit floatp) (typecase limit @@ -370,6 +171,10 @@ `(or (float ,(convert min t) ,(convert max t)) (rational ,(convert min nil) ,(convert max nil))))) +#-clx-ansi-common-lisp +(deftype base-char () + 'string-char) + ; Note that we are explicitly using a different rgb representation than what ; is actually transmitted in the protocol. @@ -408,9 +213,9 @@ (ignore depth)) (print-unreadable-object (color stream :type t) (prin1 (color-red color) stream) - (princ " " stream) + (write-string " " stream) (prin1 (color-green color) stream) - (princ " " stream) + (write-string " " stream) (prin1 (color-blue color) stream))) (defun make-color (&key (red 1.0) (green 1.0) (blue 1.0) &allow-other-keys) @@ -451,7 +256,7 @@ nil :type (or null reply-buffer)) (event-queue-head ; Threaded queue of events nil :type (or null reply-buffer)) - (atom-cache (make-hash-table :test #'eq :size *atom-cache-size*) + (atom-cache (make-hash-table :test (atom-cache-map-test) :size *atom-cache-size*) :type hash-table) ; Hash table relating atoms keywords ; to atom id's (font-cache nil) ; list of font @@ -524,18 +329,27 @@ :type hash-table) ) +(defun print-display-name (display stream) + (declare (type (or null display) display)) + (cond (display + #-allegro (princ (display-host display) stream) + #+allegro (write-string (string (display-host display)) stream) + (write-string ":" stream) + (princ (display-display display) stream)) + (t + (write-string "(no display)" stream))) + display) + (defun print-display (display stream depth) (declare (type display display) (ignore depth)) (print-unreadable-object (display stream :type t) - (princ (display-host display) stream) - (princ ":" stream) - (princ (display-display display) stream) - (princ " (" stream) - (princ (display-vendor-name display) stream) - (princ " R" stream) + (print-display-name display stream) + (write-string " (" stream) + (write-string (display-vendor-name display) stream) + (write-string " R" stream) (prin1 (display-release-number display) stream) - (princ ")" stream))) + (write-string ")" stream))) ;;(deftype drawable () '(or window pixmap)) @@ -549,10 +363,8 @@ (declare (type drawable drawable) (ignore depth)) (print-unreadable-object (drawable stream :type t) - (princ (display-host (drawable-display drawable)) stream) - (princ ":" stream) - (princ (display-display (drawable-display drawable)) stream) - (princ " " stream) + (print-display-name (drawable-display drawable) stream) + (write-string " " stream) (prin1 (drawable-id drawable) stream))) (def-clx-class (window (:include drawable) (:copier nil) @@ -581,13 +393,11 @@ (ignore depth)) (print-unreadable-object (visual-info stream :type t) (prin1 (visual-info-bits-per-rgb visual-info) stream) - (princ "-bit " stream) + (write-string "-bit " stream) (princ (visual-info-class visual-info) stream) - (princ " " stream) - (princ (display-host (visual-info-display visual-info)) stream) - (princ ":" stream) - (princ (display-display (visual-info-display visual-info)) stream) - (princ " " stream) + (write-string " " stream) + (print-display-name (visual-info-display visual-info) stream) + (write-string " " stream) (prin1 (visual-info-id visual-info) stream))) (def-clx-class (colormap (:copier nil) (:print-function print-colormap)) @@ -602,11 +412,9 @@ (print-unreadable-object (colormap stream :type t) (when (colormap-visual-info colormap) (princ (visual-info-class (colormap-visual-info colormap)) stream) - (princ " " stream)) - (princ (display-host (colormap-display colormap)) stream) - (princ ":" stream) - (princ (display-display (colormap-display colormap)) stream) - (princ " " stream) + (write-string " " stream)) + (print-display-name (colormap-display colormap) stream) + (write-string " " stream) (prin1 (colormap-id colormap) stream))) (def-clx-class (cursor (:copier nil) (:print-function print-cursor)) @@ -618,10 +426,8 @@ (declare (type cursor cursor) (ignore depth)) (print-unreadable-object (cursor stream :type t) - (princ (display-host (cursor-display cursor)) stream) - (princ ":" stream) - (princ (display-display (cursor-display cursor)) stream) - (princ " " stream) + (print-display-name (cursor-display cursor) stream) + (write-string " " stream) (prin1 (cursor-id cursor) stream))) ; Atoms are accepted as strings or symbols, and are always returned as keywords. @@ -719,10 +525,8 @@ (declare (type gcontext gcontext) (ignore depth)) (print-unreadable-object (gcontext stream :type t) - (princ (display-host (gcontext-display gcontext)) stream) - (princ ":" stream) - (princ (display-display (gcontext-display gcontext)) stream) - (princ " " stream) + (print-display-name (gcontext-display gcontext) stream) + (write-string " " stream) (prin1 (gcontext-id gcontext) stream))) (defconstant *event-mask-vector* @@ -853,19 +657,17 @@ (ignore depth)) (print-unreadable-object (screen stream :type t) (let ((display (drawable-display (screen-root screen)))) - (princ (display-host display) stream) - (princ ":" stream) - (princ (display-display display) stream) - (princ "." stream) + (print-display-name display stream) + (write-string "." stream) (princ (position screen (display-roots display)) stream)) - (princ " " stream) + (write-string " " stream) (prin1 (screen-width screen) stream) - (princ "x" stream) + (write-string "x" stream) (prin1 (screen-height screen) stream) - (princ "x" stream) + (write-string "x" stream) (prin1 (screen-root-depth screen) stream) (when (screen-root-visual-info screen) - (princ " " stream) + (write-string " " stream) (princ (visual-info-class (screen-root-visual-info screen)) stream)))) (defun screen-root-visual (screen) @@ -910,13 +712,11 @@ (print-unreadable-object (font stream :type t) (if (font-name font) (princ (font-name font) stream) - (princ "(gcontext)" stream)) - (princ " " stream) - (princ (display-host (font-display font)) stream) - (princ ":" stream) - (princ (display-display (font-display font)) stream) + (write-string "(gcontext)" stream)) + (write-string " " stream) + (print-display-name (font-display font) stream) (when (font-id-internal font) - (princ " " stream) + (write-string " " stream) (prin1 (font-id font) stream)))) (defun font-id (font) @@ -1021,7 +821,7 @@ ;; Returns NIL when KEY-LIST is not a list or mask. (declare (type (simple-array keyword (*)) key-vector) (type (or mask32 list) key-list)) - (declare (values (or mask32 nil))) + (declare (values (or mask32 null))) (typecase key-list (mask32 key-list) (list (let ((mask 0)) diff --git a/clx/defsystem.lisp b/clx/defsystem.lisp index ecf12f059..f9c6448be 100644 --- a/clx/defsystem.lisp +++ b/clx/defsystem.lisp @@ -1,11 +1,12 @@ -;;; -*- Mode: Lisp; Package: Xlib; Log: clx.log -*- +;;; -*- Mode: LISP; Syntax: Common-lisp; Base: 10; Lowercase: T; -*- ;;; ;;; TEXAS INSTRUMENTS INCORPORATED ;;; P.O. BOX 2909 ;;; AUSTIN, TEXAS 78769 ;;; -;;; Copyright (C) 1987 Texas Instruments Incorporated. +;;; Portions Copyright (C) 1987 Texas Instruments Incorporated. +;;; Portions Copyright (C) 1988, 1989 Franz Inc, Berkeley, Ca. ;;; ;;; Permission is granted to any individual or institution to use, copy, modify, ;;; and distribute this software, provided that this complete copyright and @@ -15,203 +16,45 @@ ;;; Texas Instruments Incorporated provides this software "as is" without ;;; express or implied warranty. ;;; +;;; Franz Incorporated provides this software "as is" without express or +;;; implied warranty. ;;; #+ features used in this file -;;; ansi-common-lisp +;;; clx-ansi-common-lisp ;;; lispm ;;; genera +;;; minima ;;; lucid ;;; lcl3.0 ;;; apollo ;;; kcl ;;; ibcl ;;; excl -;;; CMU -;;; -#-ansi-common-lisp -(lisp:in-package :xlib :use '(:lisp)) +#+(or Genera Minima) +(eval-when (:compile-toplevel :load-toplevel :execute) + (common-lisp:pushnew :clx-ansi-common-lisp common-lisp:*features*)) -#+ansi-common-lisp -(common-lisp:in-package :common-lisp-user) +#+(and Genera clx-ansi-common-lisp) +(eval-when (:compile-toplevel :load-toplevel :execute) + (setf *readtable* si:*ansi-common-lisp-readtable*)) -#+ansi-common-lisp -(common-lisp:defpackage xlib - (:use common-lisp) - (:size 3000) - #+Genera - (:import-from - (system - arglist downward-funarg array-register) - (zwei - indentation)) - (:export - *version* access-control access-error access-hosts - activate-screen-saver add-access-host add-resource add-to-save-set - alist alloc-color alloc-color-cells alloc-color-planes alloc-error - allow-events angle arc-seq array-index atom-error atom-name - bell bit-gravity bitmap bitmap-format bitmap-format-lsb-first-p - bitmap-format-p bitmap-format-pad bitmap-format-unit bitmap-image - boole-constant boolean card16 card29 card32 card8 - card8->char change-active-pointer-grab change-keyboard-control - change-keyboard-mapping change-pointer-control change-property - char->card8 char-ascent char-attributes char-descent - char-left-bearing char-right-bearing char-width character->keysyms - character-in-map-p circulate-window-down circulate-window-up clear-area - close-display close-down-mode close-font closed-display color - color-blue color-green color-p color-red color-rgb colormap - colormap-display colormap-equal colormap-error colormap-id - colormap-p colormap-visual-info connection-failure convert-selection - copy-area copy-colormap-and-free copy-gcontext copy-gcontext-components - copy-image copy-plane create-colormap create-cursor - create-gcontext create-glyph-cursor create-image create-pixmap - create-window cursor cursor-display cursor-equal cursor-error - cursor-id cursor-p cut-buffer declare-event decode-core-error - default-error-handler default-keysym-index default-keysym-translate - define-error define-extension define-gcontext-accessor - define-keysym define-keysym-set delete-property delete-resource - destroy-subwindows destroy-window device-busy device-event-mask - device-event-mask-class discard-current-event discard-font-info display - display-after-function display-authorization-data display-authorization-name - display-bitmap-format display-byte-order display-default-screen - display-display display-error-handler display-finish-output - display-force-output display-host display-image-lsb-first-p - display-invoke-after-function display-keycode-range display-max-keycode - display-max-request-length display-min-keycode display-motion-buffer-size - display-nscreens display-p display-pixmap-formats display-plist - display-protocol-major-version display-protocol-minor-version - display-protocol-version display-release-number - display-report-asynchronous-errors display-resource-id-base - display-resource-id-mask display-roots display-vendor - display-vendor-name display-xdefaults display-xid draw-arc - draw-arcs draw-direction draw-glyph draw-glyphs draw-image-glyph - draw-image-glyphs draw-line draw-lines draw-point draw-points - draw-rectangle draw-rectangles draw-segments drawable - drawable-border-width drawable-depth drawable-display drawable-equal - drawable-error drawable-height drawable-id drawable-p - drawable-plist drawable-root drawable-width drawable-x drawable-y - error-key event-case event-cond event-handler event-key - event-listen event-mask event-mask-class extension-opcode - find-atom font font-all-chars-exist-p font-ascent - font-default-char font-descent font-direction font-display - font-equal font-error font-id font-max-byte1 font-max-byte2 - font-max-char font-min-byte1 font-min-byte2 font-min-char - font-name font-p font-path font-plist font-properties - font-property fontable force-gcontext-changes free-colormap - free-colors free-cursor free-gcontext free-pixmap gcontext - gcontext-arc-mode gcontext-background gcontext-cap-style - gcontext-clip-mask gcontext-clip-ordering gcontext-clip-x - gcontext-clip-y gcontext-dash-offset gcontext-dashes gcontext-display - gcontext-equal gcontext-error gcontext-exposures gcontext-fill-rule - gcontext-fill-style gcontext-font gcontext-foreground gcontext-function - gcontext-id gcontext-join-style gcontext-key gcontext-line-style - gcontext-line-width gcontext-p gcontext-plane-mask gcontext-plist - gcontext-stipple gcontext-subwindow-mode gcontext-tile gcontext-ts-x - gcontext-ts-y get-external-event-code get-image get-property - get-raw-image get-resource get-search-resource get-search-table - get-standard-colormap get-wm-class global-pointer-position grab-button - grab-key grab-keyboard grab-pointer grab-server grab-status - icon-sizes iconify-window id-choice-error illegal-request-error - image image-blue-mask image-depth image-green-mask image-height - image-name image-pixmap image-plist image-red-mask image-width - image-x image-x-hot image-x-p image-xy image-xy-bitmap-list - image-xy-p image-y-hot image-z image-z-bits-per-pixel image-z-p - image-z-pixarray implementation-error input-focus install-colormap - installed-colormaps int16 int32 int8 intern-atom invalid-font - keyboard-control keyboard-mapping keycode->character keycode->keysym - keysym keysym->character keysym->keycodes keysym-in-map-p - keysym-set kill-client kill-temporary-clients length-error - list-extensions list-font-names list-fonts list-properties - lookup-color lookup-error make-color make-event-handlers - make-event-keys make-event-mask make-resource-database make-state-keys - make-state-mask make-wm-hints make-wm-size-hints map-resource - map-subwindows map-window mapping-notify mask16 mask32 - match-error max-char-ascent max-char-attributes max-char-descent - max-char-left-bearing max-char-right-bearing max-char-width - merge-resources min-char-ascent min-char-attributes min-char-descent - min-char-left-bearing min-char-right-bearing min-char-width - missing-parameter modifier-key modifier-mapping modifier-mask - motion-events name-error no-operation open-display open-font - pixarray pixel pixmap pixmap-display pixmap-equal - pixmap-error pixmap-format pixmap-format-bits-per-pixel - pixmap-format-depth pixmap-format-p pixmap-format-scanline-pad - pixmap-id pixmap-p pixmap-plist point-seq pointer-control - pointer-event-mask pointer-event-mask-class pointer-mapping - pointer-position process-event put-image put-raw-image - query-best-cursor query-best-stipple query-best-tile query-colors - query-extension query-keymap query-pointer query-tree queue-event - read-bitmap-file read-resources recolor-cursor rect-seq - remove-access-host remove-from-save-set reparent-window repeat-seq - reply-length-error reply-timeout request-error reset-screen-saver - resource-database resource-database-timestamp resource-error - resource-id resource-key rgb-colormaps rgb-val root-resources - rotate-cut-buffers rotate-properties screen screen-backing-stores - screen-black-pixel screen-default-colormap screen-depths - screen-event-mask-at-open screen-height screen-height-in-millimeters - screen-max-installed-maps screen-min-installed-maps screen-p - screen-plist screen-root screen-root-depth screen-root-visual - screen-root-visual-info screen-save-unders-p screen-saver - screen-white-pixel screen-width screen-width-in-millimeters seg-seq - selection-owner send-event sequence-error set-access-control - set-close-down-mode set-input-focus set-modifier-mapping - set-pointer-mapping set-screen-saver set-selection-owner - set-standard-colormap set-standard-properties set-wm-class - set-wm-properties set-wm-resources state-keysym-p state-mask-key - store-color store-colors stringable text-extents text-width - timestamp transient-for translate-coordinates translate-default - translation-function undefine-keysym unexpected-reply - ungrab-button ungrab-key ungrab-keyboard ungrab-pointer - ungrab-server uninstall-colormap unknown-error unmap-subwindows - unmap-window value-error visual-info visual-info-bits-per-rgb - visual-info-blue-mask visual-info-class visual-info-colormap-entries - visual-info-display visual-info-green-mask visual-info-id visual-info-p - visual-info-plist visual-info-red-mask warp-pointer - warp-pointer-if-inside warp-pointer-relative warp-pointer-relative-if-inside - win-gravity window window-all-event-masks window-background - window-backing-pixel window-backing-planes window-backing-store - window-bit-gravity window-border window-class window-colormap - window-colormap-installed-p window-cursor window-display - window-do-not-propagate-mask window-equal window-error - window-event-mask window-gravity window-id window-map-state - window-override-redirect window-p window-plist window-priority - window-save-under window-visual window-visual-info with-display - with-event-queue with-gcontext with-server-grabbed with-state - withdraw-window wm-client-machine wm-colormap-windows wm-command - wm-hints wm-hints-flags wm-hints-icon-mask wm-hints-icon-pixmap - wm-hints-icon-window wm-hints-icon-x wm-hints-icon-y - wm-hints-initial-state wm-hints-input wm-hints-p wm-hints-window-group - wm-icon-name wm-name wm-normal-hints wm-protocols wm-resources - wm-size-hints wm-size-hints-base-height wm-size-hints-base-width - wm-size-hints-height wm-size-hints-height-inc wm-size-hints-max-aspect - wm-size-hints-max-height wm-size-hints-max-width wm-size-hints-min-aspect - wm-size-hints-min-height wm-size-hints-min-width wm-size-hints-p - wm-size-hints-user-specified-position-p wm-size-hints-user-specified-size-p - wm-size-hints-width wm-size-hints-width-inc wm-size-hints-win-gravity - wm-size-hints-x wm-size-hints-y wm-zoom-hints write-bitmap-file - write-resources xatom)) - -#+ansi-common-lisp -(common-lisp:in-package :xlib) - -#-lispm -(export '( - compile-clx - load-clx)) - -#+excl (error "Use excldefsys") +#-clx-ansi-common-lisp +(lisp:in-package :user) + +#+clx-ansi-common-lisp +(common-lisp:in-package :common-lisp-user) ;;;; Lisp Machines -;;; Lisp machines have their own defsystems, so we use them to define -;;; the CLX load. - #+(and lispm (not genera)) (global:defsystem CLX (:pathname-default "clx:clx;") (:patchable "clx:patch;" clx-ti) (:initial-status :experimental) + (:module package "package") (:module depdefs "depdefs") (:module clx "clx") (:module dependent "dependent") @@ -233,53 +76,59 @@ (:module resource "resource") (:module doc "doc") - (:compile-load depdefs) + (:compile-load package) + (:compile-load depdefs + (:fasload package)) (:compile-load clx - (:fasload depdefs)) + (:fasload package depdefs)) (:compile-load dependent - (:fasload depdefs clx)) + (:fasload package depdefs clx)) ;; Macros only needed for compilation (:skip :compile-load macros - (:fasload depdefs clx dependent)) + (:fasload package depdefs clx dependent)) ;; Bufmac only needed for compilation (:skip :compile-load bufmac - (:fasload depdefs clx dependent macros)) + (:fasload package depdefs clx dependent macros)) (:compile-load buffer - (:fasload depdefs clx dependent macros bufmac)) + (:fasload package depdefs clx dependent macros bufmac)) (:compile-load display - (:fasload depdefs clx dependent macros bufmac buffer)) + (:fasload package depdefs clx dependent macros bufmac buffer)) (:compile-load gcontext - (:fasload depdefs clx dependent macros bufmac buffer display)) + (:fasload package depdefs clx dependent macros bufmac buffer display)) (:compile-load input - (:fasload depdefs clx dependent macros bufmac buffer display)) + (:fasload package depdefs clx dependent macros bufmac buffer display)) (:compile-load requests - (:fasload depdefs clx dependent macros bufmac buffer display input)) + (:fasload package depdefs clx dependent macros bufmac buffer display input)) (:compile-load fonts - (:fasload depdefs clx dependent macros bufmac buffer display)) + (:fasload package depdefs clx dependent macros bufmac buffer display)) (:compile-load graphics - (:fasload depdefs clx dependent macros fonts bufmac buffer display fonts)) + (:fasload package depdefs clx dependent macros fonts bufmac buffer display + fonts)) (:compile-load text - (:fasload depdefs clx dependent macros fonts bufmac buffer display gcontext fonts)) + (:fasload package depdefs clx dependent macros fonts bufmac buffer display + gcontext fonts)) (:compile-load-init attributes - (dependent) ;<- There may be other modules needed here. - (:fasload depdefs clx dependent macros bufmac buffer display)) + (dependent) + (:fasload package depdefs clx dependent macros bufmac buffer display)) (:compile-load translate - (:fasload depdefs clx dependent macros bufmac buffer display)) + (:fasload package depdefs clx dependent macros bufmac buffer display)) (:compile-load keysyms - (:fasload depdefs clx dependent macros bufmac buffer display translate)) + (:fasload package depdefs clx dependent macros bufmac buffer display + translate)) (:compile-load manager - (:fasload depdefs clx dependent macros bufmac buffer display)) + (:fasload package depdefs clx dependent macros bufmac buffer display)) (:compile-load image - (:fasload depdefs clx dependent macros bufmac buffer display)) - (:compile-load resource) + (:fasload package depdefs clx dependent macros bufmac buffer display)) + (:compile-load resource + (:fasload package depdefs clx dependent macros bufmac buffer display)) (:auxiliary doc) ) - + +;;; Symbolics Lisp Machines #+Genera (scl:defsystem CLX (:default-pathname "SYS:X11;CLX;" - :default-package "XLIB" :pretty-name "CLX" :maintaining-sites (:scrc) :distribute-sources t @@ -287,105 +136,130 @@ :source-category :basic) (:module doc ("doc") (:type :lisp-example)) - (:module depdefs ("depdefs" "generalock")) - (:module clx ("clx") - (:uses-definitions-from depdefs)) - (:module dependent ("dependent") - (:uses-definitions-from clx)) - (:module macros ("macros") - (:uses-definitions-from dependent)) - (:module bufmac ("bufmac") - (:uses-definitions-from dependent macros)) - (:module buffer ("buffer") - (:uses-definitions-from dependent macros bufmac)) - (:module display ("display") - (:uses-definitions-from dependent macros bufmac buffer)) - (:module gcontext ("gcontext") - (:uses-definitions-from dependent macros bufmac display)) - (:module input ("input") - (:uses-definitions-from dependent macros bufmac display)) - (:module requests ("requests") - (:uses-definitions-from dependent macros bufmac display input)) - (:module fonts ("fonts") - (:uses-definitions-from dependent macros bufmac display)) - (:module graphics ("graphics") - (:uses-definitions-from dependent macros bufmac fonts)) - (:module text ("text") - (:uses-definitions-from dependent macros bufmac gcontext fonts)) - (:module attributes ("attributes") - (:uses-definitions-from dependent macros bufmac display)) - (:module translate ("translate") - (:uses-definitions-from dependent macros bufmac display)) - (:module keysyms ("keysyms") - (:uses-definitions-from translate)) - (:module manager ("manager") - (:uses-definitions-from dependent macros bufmac display)) - (:module image ("image") - (:uses-definitions-from dependent macros bufmac display)) - (:module resource ("resource")) - ) + (:serial + "package" "depdefs" "generalock" "clx" "dependent" "macros" "bufmac" + "buffer" "display" "gcontext" "input" "requests" "fonts" "graphics" + "text" "attributes" "translate" "keysyms" "manager" "image" "resource")) -;;;; Non Lisp Machines +;;; Franz -#+lucid -(defvar *foreign-libraries* '("-lc")) ; '("-lresolv" "-lc") for some sites - -#+lucid -(defun clx-foreign-files (binary-path) - - ;; apply a patch to 2.0 systems - #+(and (not lcl3.0) (or mc68000 mc68020)) - (load (merge-pathnames "make-sequence-patch" binary-path)) - - ;; Link lisp to the C function connect_to_server - #+(and apollo (not lcl3.0)) - (lucid::define-foreign-function '(xlib::connect-to-server "connect_to_server") - '((:val host :string) - (:val display :integer32)) - :integer32) - #+(and (not apollo) (not lcl3.0)) - (lucid::define-c-function xlib::connect-to-server - (host display) - :result-type :integer) - #+lcl3.0 - (lucid::def-foreign-function (xlib::connect-to-server - (:language :c) - (:return-type :signed-32bit)) - (host :simple-string) (display :signed-32bit)) - (unintern 'display) - - ;; Load the definition of connect_to_server - #+apollo - (lucid::load-foreign-file (merge-pathnames "socket" binary-path) - :preserve-pathname t) - #-apollo - (lucid::load-foreign-files (list (merge-pathnames "socket.o" binary-path)) - *foreign-libraries*)) - - -;;; This loads the C foreign function used to make an IPC connection -;;; to the X11 server. It also defines the necessary types and things -;;; to actually make the foreign call. See the OPEN-X-STREAM function -;;; in the dependent.lisp file. -;;; -#+:CMU -(defun clx-foreign-files () - (ext:def-c-routine ("connect_to_server" xlib::connect-to-server) (ext:int) - (host system:null-terminated-string) - (port ext:int))) +;; +;; The following is a suggestion. If you comment out this form be +;; prepared for possible deadlock, since no interrupts will be recognized +;; while reading from the X socket if the scheduler is not running. +;; +#+excl +(setq compiler::generate-interrupt-checks-switch + (compile nil + '(lambda (safety size speed &optional debug) + (declare (ignore size debug)) + (or (< speed 3) (> safety 0))))) + +;;; Allegro + +#+allegro +(excl:defsystem :clx + () + |package| + (|excldep| + :load-before-compile (|package|) + :recompile-on (|package|)) + (|depdefs| + :load-before-compile (|package| |excldep|) + :recompile-on (|excldep|)) + (|clx| + :load-before-compile (|package| |excldep| |depdefs|) + :recompile-on (|package| |excldep| |depdefs|)) + (|dependent| + :load-before-compile (|package| |excldep| |depdefs| |clx|) + :recompile-on (|clx|)) + (|exclcmac| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent|) + :recompile-on (|dependent|)) + (|macros| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac|) + :recompile-on (|exclcmac|)) + (|bufmac| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros|) + :recompile-on (|macros|)) + (|buffer| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac|) + :recompile-on (|bufmac|)) + (|display| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer|) + :recompile-on (|buffer|)) + (|gcontext| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display|) + :recompile-on (|display|)) + (|input| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display|) + :recompile-on (|display|)) + (|requests| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display| + |input|) + :recompile-on (|display|)) + (|fonts| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display|) + :recompile-on (|display|)) + (|graphics| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display| + |fonts|) + :recompile-on (|fonts|)) + (|text| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display| + |gcontext| |fonts|) + :recompile-on (|gcontext| |fonts|) + :load-after (|translate|)) + ;; The above line gets around a compiler macro expansion bug. + + (|attributes| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display|) + :recompile-on (|display|)) + (|translate| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display| + |text|) + :recompile-on (|display|)) + (|keysyms| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display| + |translate|) + :recompile-on (|translate|)) + (|manager| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display|) + :recompile-on (|display|)) + (|image| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display|) + :recompile-on (|display|)) + + ;; Don't know if l-b-c list is correct. XX + (|resource| + :load-before-compile (|package| |excldep| |depdefs| |clx| |dependent| + |exclcmac| |macros| |bufmac| |buffer| |display|) + :recompile-on (|display|)) + ) -;; socket interface for kcl and ibcl -;; defines the function (open-socket-stream host display) -;; -;; You must first compile file socket.c -#+(or kcl ibcl) -(defun kcl-socket-init (binary-path) - (let ((sockcl (namestring (merge-pathnames "sockcl.o" binary-path))) - (socket (namestring (merge-pathnames "socket.o" binary-path)))) - (si:faslink sockcl (format nil "~a -lc" socket)) - )) +#+allegro +(excl:defsystem :clx-debug + (:default-pathname "debug/" + :needed-systems (:clx) + :load-before-compile (:clx)) + |describe| |keytrans| |trace| |util|) ;;;; Compile CLX @@ -416,10 +290,39 @@ ;;; to prevent the compilation. ;;; compilation notes -;;; lucid2.0/hp9000 +;;; lucid2.0/hp9000s300 ;;; must uudecode the file make-sequence-patch.uu -#-lispm +#+(or lucid kcl ibcl) +(defun clx-foreign-files (binary-path) + + #+(and lucid (not lcl3.0) (or mc68000 mc68020)) + (load (merge-pathnames "make-sequence-patch" binary-path)) + + #+(and lucid apollo) + (lucid::load-foreign-file + (namestring (merge-pathnames "socket" binary-path)) + :preserve-pathname t) + + #+(and lucid (not apollo)) + (lucid::load-foreign-files + (list (namestring (merge-pathnames "socket.o" binary-path))) + '("-lc")) + + #+(or kcl ibcl) + (progn + (let ((pathname (merge-pathnames "sockcl.o" binary-path)) + (options + (concatenate + 'string + (namestring (merge-pathnames "socket.o" binary-path)) + " -lc"))) + (format t "~&Faslinking ~A with ~A.~%" pathname options) + (si:faslink (namestring pathname) options) + (format t "~&Finished faslinking ~A.~%" pathname))) + ) + +#-(or lispm allegro) (defun compile-clx (&optional (source-pathname-defaults "") (binary-pathname-defaults "") @@ -439,7 +342,9 @@ :type nil :version (pathname-version source-path))) (binary-path (merge-pathnames binary-pathname-defaults - path))) + path)) + #+clx-ansi-common-lisp (*compile-verbose* t) + (*load-verbose* t)) ;; Make sure source-path and binary-path file types are distinct so ;; we don't accidently overwrite the source files. NIL should be an @@ -450,88 +355,78 @@ (error "Source and binary pathname defaults have same type ~s ~s" source-path binary-path)) - (format t ";;; Default paths: ~s ~s~%" source-path binary-path) + (format t "~&;;; Default paths: ~s ~s~%" source-path binary-path) ;; In lucid make sure we're using the compiler in production mode. #+lcl3.0 (progn - #-pqc - (cerror "Go ahead anyway." - "Lucid's production mode compiler must be loaded to compile CLX.") + (unless (member :pqc *features*) + (cerror + "Go ahead anyway." + "Lucid's production mode compiler must be loaded to compile CLX.")) (proclaim '(optimize (speed 3) (safety 1) (space 0) (compilation-speed 0)))) - (flet ((compile-and-load (filename) - (let ((source (merge-pathnames filename source-path)) - (binary (merge-pathnames filename binary-path))) - ;; If the source and binary pathnames are the same, - ;; then don't supply an output file just to be sure - ;; compile-file defaults correctly. - #+(or kcl ibcl) (load source) - (if (equal source binary) - (compile-file source #+CMU :error-file #+CMU nil) - (compile-file source :output-file binary - #+CMU :error-file #+CMU nil)) - (load binary)))) + (labels ((compile-lisp (filename) + (let ((source (merge-pathnames filename source-path)) + (binary (merge-pathnames filename binary-path))) + ;; If the source and binary pathnames are the same, + ;; then don't supply an output file just to be sure + ;; compile-file defaults correctly. + #+(or kcl ibcl) (load source) + (if (equal source binary) + (compile-file source) + (compile-file source :output-file binary)) + binary)) + (compile-and-load (filename) + (load (compile-lisp filename))) + #+(or lucid kcl ibcl) + (compile-c (filename) + (let* ((c-filename (concatenate 'string filename ".c")) + (o-filename (concatenate 'string filename ".o")) + (src (merge-pathnames c-filename source-path)) + (obj (merge-pathnames o-filename binary-path)) + (args (list "-c" (namestring src) + "-o" (namestring obj) + #+mips "-G 0" + #+(or hp sysv) "-DSYSV" + #+(and mips (not dec)) "-I/usr/include/bsd" + #-(and mips (not dec)) "-DUNIXCONN" + #+(and lucid pa) "-DHPUX -DHPUX7.0" + ))) + (format t ";;; cc~{ ~A~}~%" args) + (unless + (zerop + #+lucid + (multiple-value-bind (iostream estream exitstatus pid) + ;; in 2.0, run-program is exported from system: + ;; in 3.0, run-program is exported from lcl: + ;; system inheirits lcl + (system::run-program "cc" :arguments args) + (declare (ignore iostream estream pid)) + exitstatus) + #+(or kcl ibcl) + (system (format nil "cc~{ ~A~}" args))) + (error "Compile of ~A failed." src))))) ;; Now compile and load all the files. ;; Defer compiler warnings until everything's compiled, if possible. - (#.(if (fboundp 'with-compilation-unit) - 'with-compilation-unit - #+lcl3.0 'lucid::with-deferred-warnings - #-lcl3.0 'progn) + (#+clx-ansi-common-lisp with-compilation-unit + #+lcl3.0 lucid::with-deferred-warnings + #-(or lcl3.0 clx-ansi-common-lisp) progn () - #+lucid - (progn - (when compile-c ; compile the C files - #+(and (not lcl3.0) (or mc68000 mc68020)) - (progn ; sequence patch - (format t "You may need to uudecode ms-patch.uu and copy~%") - (format t "the result to the binary directory.~%") - (format t "You also must rename the file to have the canonical~%") - (format t "binary file type in order for lisp to realize it's a~%") - (format t "binary file.~%")) - ;; compile socket.c - (let* ((src (merge-pathnames "socket.c" source-path)) - (obj (merge-pathnames "socket.o" binary-path)) - (args (list "-c" (namestring src) - "-o" (namestring obj) - "-DUNIXCONN"))) - (format t ";;; cc~{ ~a~}~%" args) - (multiple-value-bind (iostream estream exitstatus pid) - ;; in 2.0, run-program is exported from system: - ;; in 3.0, run-program is exported from lcl: - ;; system inheirits lcl - (system::run-program "cc" :arguments args) - (declare (ignore iostream estream pid)) - (if (/= 0 exitstatus) - (error "Exit status of socket.c compile is ~d" exitstatus))))) - (format t ";;; Loading foreign files~%") - (clx-foreign-files binary-path)) - - #+(or kcl ibcl) - (progn - (when compile-c ; compile the C files - (let* ((src (merge-pathnames "socket.c" source-path)) - (obj (merge-pathnames "socket.o" binary-path)) - (arg (format nil "cc -c ~a -o ~a -DUNIXCONN" - (namestring src) - (namestring obj)))) - (format t ";;; ~a~%" arg) - (if (/= 0 (system arg)) - (error "bad exit status for ~s" src)))) - ;; compile the lisp interface to the c code - (let ((src (merge-pathnames "sockcl" source-path)) - (obj (merge-pathnames "sockcl.o" binary-path))) - (compile-file src :output-file obj)) - (kcl-socket-init binary-path)) - + (compile-and-load "package") + #+(or lucid kcl ibcl) (when compile-c (compile-c "socket")) + #+(or kcl ibcl) (compile-lisp "sockcl") + #+(or lucid kcl ibcl) (clx-foreign-files binary-path) + #+excl (compile-and-load "excldep") (compile-and-load "depdefs") (compile-and-load "clx") (compile-and-load "dependent") + #+excl (compile-and-load "exclcmac") ; these are just macros (compile-and-load "macros") ; these are just macros (compile-and-load "bufmac") ; these are just macros (compile-and-load "buffer") @@ -570,9 +465,9 @@ ;;; (LOAD <clx-defsystem-file>) ;;; (LOAD-CLX <binary-specific-clx-directory>) -#-lispm +#-(or lispm allegro) (defun load-clx (&optional (binary-pathname-defaults "") - &key (macros-p nil)) + &key (macrosp nil)) (let* ((source-path (pathname "")) (path (make-pathname @@ -583,25 +478,21 @@ :type nil :version (pathname-version source-path))) (binary-path (merge-pathnames binary-pathname-defaults - path))) + path)) + (*load-verbose* t)) (flet ((load-binary (filename) (let ((binary (merge-pathnames filename binary-path))) (load binary)))) - #+lucid - (clx-foreign-files binary-path) - - #+CMU - (clx-foreign-files) - - #+(or kcl ibcl) - (kcl-socket-init binary-path) - + (load-binary "package") + #+(or lucid kcl ibcl) (clx-foreign-files binary-path) + #+excl (load-binary "excldep") (load-binary "depdefs") (load-binary "clx") (load-binary "dependent") - (when macros-p + (when macrosp + #+excl (load-binary "exclcmac") (load-binary "macros") (load-binary "bufmac")) (load-binary "buffer") diff --git a/clx/depdefs.lisp b/clx/depdefs.lisp index e70c98a40..527724dd3 100644 --- a/clx/depdefs.lisp +++ b/clx/depdefs.lisp @@ -1,4 +1,4 @@ -;;; -*- Mode: Lisp; Package: Xlib; Log: clx.log -*- +;;; -*- Mode: LISP; Syntax: Common-lisp; Package: XLIB; Base: 10; Lowercase: Yes -*- ;; This file contains some of the system dependent code for CLX @@ -27,20 +27,17 @@ ;;; fix a bug in kcl's RATIONAL... ;;; redefine both the function and the type. -#+(or kcl ibcl) -(shadow 'rational) - #+(or kcl ibcl) (progn (defun rational (x) (if (rationalp x) x (lisp:rational x))) - (deftype rational () 'lisp:rational)) + (deftype rational (&optional l u) `(lisp:rational ,l ,u))) ;;; DECLAIM -#-ansi-common-lisp +#-clx-ansi-common-lisp (defmacro declaim (&rest decl-specs) (if (cdr decl-specs) `(progn @@ -57,52 +54,30 @@ ;;; the documentation that might get generated by the real arglist of the ;;; function. -#+lispm -(import '(sys:arglist)) - -#+lcl3.0 -(import '(lcl:arglist)) - #-(or lispm lcl3.0) (declaim (declaration arglist)) -;;; DOWNWARD-FUNARG name1 name2 ... -- Tells callers of this function that -;;; closures passed in as the argument named by name can be consed on the -;;; stack, as they have dynamic extent. In Genera keyword args can't be named -;;; this way. Instead use * to specify all functional args have dynamic -;;; extent. - -#+lispm -(import '(sys:downward-funarg)) - -#-lispm -(declaim (declaration downward-funarg)) - ;;; DYNAMIC-EXTENT var -- Tells the compiler that the rest arg var has ;;; dynamic extent and therefore can be kept on the stack and not copied to ;;; the heap, even though the value is passed out of the function. -#+lcl3.0 -(import '(lcl:dynamic-extent)) - -#-(or ansi-common-lisp lcl3.0) +#-(or clx-ansi-common-lisp lcl3.0) (declaim (declaration dynamic-extent)) +;;; IGNORABLE var -- Tells the compiler that the variable might or might not be used. + +#-clx-ansi-common-lisp +(declaim (declaration ignorable)) + ;;; ARRAY-REGISTER var1 var2 ... -- The variables mentioned are locals (not ;;; args) that hold vectors. -#+Genera -(import '(sys:array-register)) - #-Genera (declaim (declaration array-register)) ;;; INDENTATION argpos1 arginden1 argpos2 arginden2 --- Tells the lisp editor how to ;;; indent calls to the function or macro containing the declaration. -#+genera -(import '(zwei:indentation)) - #-genera (declaim (declaration indentation)) @@ -157,7 +132,11 @@ (defmacro resource-id-map-test () #+excl '#'equal - #-excl '#'eql) ; (eq fixnum fixnum) is not guaranteed. + #-excl '#'eql) + ; (eq fixnum fixnum) is not guaranteed. +(defmacro atom-cache-map-test () + #+excl '#'equal + #-excl '#'eq) (defmacro keysym->character-map-test () #+excl '#'equal @@ -166,23 +145,16 @@ ;;; You must define this to match the real byte order. It is used by ;;; overlapping array and image code. -#+(or lispm vax little-endian) +#+(or lispm vax little-endian Minima) (eval-when (eval compile load) (pushnew :clx-little-endian *features*)) #+lcl3.0 (eval-when (compile eval load) (ecase lucid::machine-endian - (:big) + (:big nil) (:little (pushnew :clx-little-endian *features*)))) -#+cmu -(eval-when (compile eval load) - (ecase #.(c:backend-byte-order c:*backend*) - (:big-endian) - (:little-endian (pushnew :clx-little-endian *features*)))) - - ;;; Steele's Common-Lisp states: "It is an error if the array specified ;;; as the :displaced-to argument does not have the same :element-type ;;; as the array being created" If this is the case on your lisp, then @@ -313,6 +285,9 @@ (defmacro index-max (&rest numbers) `(max ,@numbers)) (defun positive-power-of-two-p (x) + (when (symbolp x) + (multiple-value-bind (constantp value) (lt:named-constant-p x) + (when constantp (setq x value)))) (and (typep x 'fixnum) (plusp x) (zerop (logand x (1- x))))) (defmacro index-floor (number divisor) @@ -397,151 +372,141 @@ ;; These are here because. -(defparameter *xlib-package* (find-package 'xlib)) +(defparameter *xlib-package* (find-package :xlib)) (defun xintern (&rest parts) (intern (apply #'concatenate 'string (mapcar #'string parts)) *xlib-package*)) -(defparameter *keyword-package* (find-package 'keyword)) +(defparameter *keyword-package* (find-package :keyword)) (defun kintern (name) (intern (string name) *keyword-package*)) ;;; Pseudo-class mechanism. +(eval-when (eval compile load) +(defvar *def-clx-class-use-defclass* #+Genera t #-Genera nil + "Controls whether DEF-CLX-CLASS uses DEFCLASS. + If it is a list, it is interpreted by DEF-CLX-CLASS to be a list of type names + for which DEFCLASS should be used. + If it is not a list, then DEFCLASS is always used. + If it is NIL, then DEFCLASS is never used, since NIL is the empty list.") +) + (defmacro def-clx-class ((name &rest options) &body slots) - (let ((clos-package (or (find-package 'clos) - (find-package 'pcl) - (let ((lisp-pkg (find-package 'lisp))) - (and (find-symbol (string 'defclass) lisp-pkg) - lisp-pkg))))) - (if clos-package - (let ((constructor t) - (constructor-args t) - (include nil) - (print-function nil) - (copier t) - (predicate t)) - (dolist (option options) - (ecase (pop option) - (:constructor - (setf constructor (pop option)) - (setf constructor-args (if (null option) t (pop option)))) - (:include - (setf include (pop option))) - (:print-function - (setf print-function (pop option))) - (:copier - (setf copier (pop option))) - (:predicate - (setf predicate (pop option))))) - (flet ((cintern (&rest symbols) - (intern (apply #'concatenate 'simple-string - (mapcar #'symbol-name symbols)) - *package*)) - (kintern (symbol) - (intern (symbol-name symbol) (find-package 'keyword))) - (closintern (symbol) - (intern (symbol-name symbol) clos-package))) - (when (eq constructor t) - (setf constructor (cintern 'make- name))) - (when (eq copier t) - (setf copier (cintern 'copy- name))) - (when (eq predicate t) - (setf predicate (cintern name '-p))) - (when include - (setf slots (append (get include 'def-clx-class) slots))) - (let* ((n-slots (length slots)) - (slot-names (make-list n-slots)) - (slot-initforms (make-list n-slots)) - (slot-types (make-list n-slots))) - (dotimes (i n-slots) - (let ((slot (elt slots i))) - (setf (elt slot-names i) (pop slot)) - (setf (elt slot-initforms i) (pop slot)) - (setf (elt slot-types i) (getf slot :type t)))) - `(progn - - (eval-when (compile load eval) - (setf (get ',name 'def-clx-class) ',slots)) - - ;; From here down are the system-specific expansions: - - ,(cond (clos-package - `(within-definition (,name def-clx-class) - (,(closintern 'defclass) - ,name ,(and include `(,include)) - (,@(map 'list - #'(lambda (slot-name slot-initform slot-type) - `(,slot-name - :initform ,slot-initform :type ,slot-type - :accessor ,(cintern name '- slot-name) - ,@(when (and constructor - (or (eq constructor-args t) - (member slot-name - constructor-args))) - `(:initarg ,(kintern slot-name))) - )) - slot-names slot-initforms slot-types))) - ,(when constructor - (if (eq constructor-args t) - `(defun ,constructor (&rest args) - (apply #',(closintern 'make-instance) - ',name args)) - `(defun ,constructor ,constructor-args - (,(closintern 'make-instance) ',name - ,@(mapcan #'(lambda (slot-name) - (and (member slot-name slot-names) - `(,(kintern slot-name) ,slot-name))) - constructor-args))))) - ,(when predicate - `(defun ,predicate (object) - (typep object ',name))) - ,(when copier - `(,(closintern 'defmethod) ,copier ((.object. ,name)) - (,(closintern 'with-slots) ,slot-names .object. - (,(closintern 'make-instance) ',name - ,@(mapcan #'(lambda (slot-name) - `(,(kintern slot-name) ,slot-name)) - slot-names))))) - ,(when print-function - `(,(closintern 'defmethod) - ,(closintern 'print-object) - ((object ,name) stream) - (,print-function object stream 0))))) - - #+Genera - (t - `(within-definition (,name def-clx-class) - (flavor:defflavor ,name - (,@(map 'list - #'(lambda (slot-name slot-initform) - `(,slot-name ,slot-initform)) - slot-names slot-initforms)) - ,(and include `(,include)) - :initable-instance-variables - :locatable-instance-variables - :readable-instance-variables - :writable-instance-variables - ,(if constructor - `(:constructor ,constructor - ,(if (eq constructor-args t) - `(&key ,@slot-names) - constructor-args)) - :abstract-flavor)) - ,(when predicate - `(defun ,predicate (object) - (typep object ',name))) - ,(when copier - (error ":COPIER not supported.")) - ,(when print-function - `(flavor:defmethod (sys:print-self ,name) - (stream depth *print-escape*) - (,print-function sys:self stream depth))) - (flavor:compile-flavor-methods ,name)))))))) - `(within-definition (,name def-clx-class) - (defstruct (,name ,@options) - ,@slots))))) + (if (or (not (listp *def-clx-class-use-defclass*)) + (member name *def-clx-class-use-defclass*)) + (let ((clos-package #+clx-ansi-common-lisp + (find-package :common-lisp) + #-clx-ansi-common-lisp + (or (find-package :clos) + (find-package :pcl) + (let ((lisp-pkg (find-package :lisp))) + (and (find-symbol (string 'defclass) lisp-pkg) + lisp-pkg)))) + (constructor t) + (constructor-args t) + (include nil) + (print-function nil) + (copier t) + (predicate t)) + (dolist (option options) + (ecase (pop option) + (:constructor + (setf constructor (pop option)) + (setf constructor-args (if (null option) t (pop option)))) + (:include + (setf include (pop option))) + (:print-function + (setf print-function (pop option))) + (:copier + (setf copier (pop option))) + (:predicate + (setf predicate (pop option))))) + (flet ((cintern (&rest symbols) + (intern (apply #'concatenate 'simple-string + (mapcar #'symbol-name symbols)) + *package*)) + (kintern (symbol) + (intern (symbol-name symbol) (find-package :keyword))) + (closintern (symbol) + (intern (symbol-name symbol) clos-package))) + (when (eq constructor t) + (setf constructor (cintern 'make- name))) + (when (eq copier t) + (setf copier (cintern 'copy- name))) + (when (eq predicate t) + (setf predicate (cintern name '-p))) + (when include + (setf slots (append (get include 'def-clx-class) slots))) + (let* ((n-slots (length slots)) + (slot-names (make-list n-slots)) + (slot-initforms (make-list n-slots)) + (slot-types (make-list n-slots))) + (dotimes (i n-slots) + (let ((slot (elt slots i))) + (setf (elt slot-names i) (pop slot)) + (setf (elt slot-initforms i) (pop slot)) + (setf (elt slot-types i) (getf slot :type t)))) + `(progn + + (eval-when (compile load eval) + (setf (get ',name 'def-clx-class) ',slots)) + + ;; From here down are the system-specific expansions: + + (within-definition (,name def-clx-class) + (,(closintern 'defclass) + ,name ,(and include `(,include)) + (,@(map 'list + #'(lambda (slot-name slot-initform slot-type) + `(,slot-name + :initform ,slot-initform :type ,slot-type + :accessor ,(cintern name '- slot-name) + ,@(when (and constructor + (or (eq constructor-args t) + (member slot-name + constructor-args))) + `(:initarg ,(kintern slot-name))) + )) + slot-names slot-initforms slot-types))) + ,(when constructor + (if (eq constructor-args t) + `(defun ,constructor (&rest args) + (apply #',(closintern 'make-instance) + ',name args)) + `(defun ,constructor ,constructor-args + (,(closintern 'make-instance) ',name + ,@(mapcan #'(lambda (slot-name) + (and (member slot-name slot-names) + `(,(kintern slot-name) ,slot-name))) + constructor-args))))) + ,(when predicate + #+allegro + `(progn + (,(closintern 'defmethod) ,predicate (object) + (declare (ignore object)) + nil) + (,(closintern 'defmethod) ,predicate ((object ,name)) + t)) + #-allegro + `(defun ,predicate (object) + (typep object ',name))) + ,(when copier + `(,(closintern 'defmethod) ,copier ((.object. ,name)) + (,(closintern 'with-slots) ,slot-names .object. + (,(closintern 'make-instance) ',name + ,@(mapcan #'(lambda (slot-name) + `(,(kintern slot-name) ,slot-name)) + slot-names))))) + ,(when print-function + `(,(closintern 'defmethod) + ,(closintern 'print-object) + ((object ,name) stream) + (,print-function object stream 0)))))))) + `(within-definition (,name def-clx-class) + (defstruct (,name ,@options) + ,@slots)))) #+Genera (progn @@ -559,8 +524,8 @@ (def-clx-class (buffer (:constructor nil) (:copier nil) (:predicate nil)) ;; Lock for multi-processing systems (lock (make-process-lock "CLX Buffer Lock")) - #-(or excl) (output-stream nil :type (or null stream)) - #+(or excl) (output-stream nil :type (or null fixnum)) + #-excl (output-stream nil :type (or null stream)) + #+excl (output-stream -1 :type fixnum) ;; Buffer size (size 0 :type array-index) (request-number 0 :type (unsigned-byte 16)) @@ -582,8 +547,8 @@ ;; Holding buffer for 16-bit text (tbuf16 (make-sequence 'buffer-text16 *buffer-text16-size* :initial-element 0)) ;; Probably EQ to Output-Stream - #-(or excl) (input-stream nil :type (or null stream)) - #+(or excl) (input-stream nil :type (or null fixnum)) + #-excl (input-stream nil :type (or null stream)) + #+excl (input-stream -1 :type fixnum) ;; T when the host connection has gotten errors (dead nil :type (or null (not null))) ;; T makes buffer-flush a noop. Manipulated with with-buffer-flush-inhibited. @@ -610,15 +575,14 @@ ;; Printing routines. ;;----------------------------------------------------------------------------- -#+(and (not ansi-common-lisp) Genera) -(import 'future-common-lisp:print-unreadable-object) - -#-(or ansi-common-lisp Genera) +#-(or clx-ansi-common-lisp Genera) (defun print-unreadable-object-function (object stream type identity function) + (declare #+lispm + (sys:downward-funarg function)) (princ "#<" stream) (when type (let ((type (type-of object)) - (pcl-package (find-package 'pcl))) + (pcl-package (find-package :pcl))) ;; Handle pcl type-of lossage (when (and pcl-package (symbolp type) @@ -636,12 +600,14 @@ (princ ">" stream) nil) -#-(or ansi-common-lisp Genera) +#-(or clx-ansi-common-lisp Genera) (defmacro print-unreadable-object ((object stream &key type identity) &body body) - `(print-unreadable-object-function - ,object ,stream ,type ,identity - ,(and body `#'(lambda () ,@body)))) + (if body + `(flet ((.print-unreadable-object-body. () ,@body)) + (print-unreadable-object-function + ,object ,stream ,type ,identity #'.print-unreadable-object-body.)) + `(print-unreadable-object-function ,object ,stream ,type ,identity nil))) ;;----------------------------------------------------------------------------- @@ -659,3 +625,26 @@ (defconstant *image-unit* 32) (defconstant *image-pad* 32) + + +;;----------------------------------------------------------------------------- +;; Foreign Functions +;;----------------------------------------------------------------------------- + +#+(and lucid apollo (not lcl3.0)) +(lucid::define-foreign-function '(connect-to-server "connect_to_server") + '((:val host :string) + (:val display :integer32)) + :integer32) + +#+(and lucid (not apollo) (not lcl3.0)) +(lucid::define-c-function connect-to-server (host display) + :result-type :integer) + +#+lcl3.0 +(lucid::def-foreign-function + (connect-to-server + (:language :c) + (:return-type :signed-32bit)) + (host :simple-string) + (display :signed-32bit)) diff --git a/clx/dependent.lisp b/clx/dependent.lisp index 2142260f1..9d30de02d 100644 --- a/clx/dependent.lisp +++ b/clx/dependent.lisp @@ -1,4 +1,4 @@ -;;; -*- Mode: Lisp; Package: Xlib; Log: clx.log -*- +;;; -*- Mode: LISP; Syntax: Common-lisp; Package: XLIB; Base: 10; Lowercase: Yes -*- ;; This file contains some of the system dependent code for CLX @@ -20,19 +20,8 @@ (in-package :xlib) -#+lcl3.0 -(import '( - lcl:define-condition - lcl:type-error - lucid::type-error-datum - lucid::type-error-expected-type - sys:underlying-simple-vector)) - -(export '( - char->card8 - card8->char - default-error-handler - #-(ansi-common-lisp CMU) define-condition)) +;;; 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)) @@ -78,9 +67,6 @@ ;;; 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 () - #+(and cmu clx-debugging) - '(declare (optimize (speed 1) (safety 1))) - #-(and cmu clx-debugging) `(declare (optimize (speed ,*buffer-speed*) (safety ,*buffer-safety*)))) ) @@ -167,7 +153,7 @@ (declaim (inline aref-card8 aset-card8 aref-int8 aset-int8)) -#-(or Genera lcl3.0) +#-(or Genera lcl3.0 excl) (progn (defun aref-card8 (a i) @@ -217,41 +203,7 @@ ) -#+lcl3.0 ;in lcl2.1 these symbols are in different packages and making too - ;many conditionalizations makes my brain hurt. -(progn - -(defun aref-card8 (a i) - (declare (type buffer-bytes a) - (type array-index i)) - (declare (values card8)) - #.(declare-buffun) - (the card8 (sys: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 (sys:svref-8bit a i) v)) - -(defun aref-int8 (a i) - (declare (type buffer-bytes a) - (type array-index i)) - (declare (values int8)) - #.(declare-buffun) - (the int8 (sys: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 (sys:svref-signed-8bit a i) v)) - -) - -#+clx-overlapping-arrays +#+(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)) @@ -330,153 +282,221 @@ #+excl (progn - (defun aref-card16 (a i) - (declare (type buffer-bytes a) - (type array-index i)) - (declare (values card16)) - #.(declare-buffun) - (the card16 (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i - :unsigned-word))) +(defun aref-card8 (a i) + (declare (type buffer-bytes a) + (type array-index i)) + (declare (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 (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 (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 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 (values int16)) - #.(declare-buffun) - (the int16 (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i - :signed-word))) +(defun aref-int16 (a i) + (declare (type buffer-bytes a) + (type array-index i)) + (declare (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 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 (values card32)) - #.(declare-buffun) - (the card32 (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i - :unsigned-long))) +(defun aref-card32 (a i) + (declare (type buffer-bytes a) + (type array-index i)) + (declare (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 (values int32)) - #.(declare-buffun) - (the int32 (sys:memref a #.(comp::mdparam 'comp::md-svector-data0-adj) i - :signed-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 (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) - ;; Do I need to mask off a few bits here? XXX - (declare (type buffer-bytes a) - (type array-index i)) - (declare (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)) +(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 (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 ;; all these lucid optimizations need to be compiled to work. +(progn + +(defun aref-card8 (a i) + (declare (type buffer-bytes a) + (type array-index i) + (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) + (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) + (values card16)) #.(declare-buffun) - (the card16 (sys:svref-16bit (the buffer-bytes a) - (lucid:ash& (the array-index i) -1)))) + (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 (sys:svref-16bit (the buffer-bytes a) - (lucid:ash& (the array-index i) -1)) - (the card16 v))) + (setf (lucid::%svref-16bit a (index-ash i -1)) v)) (defun aref-int16 (a i) + (declare (type buffer-bytes a) + (type array-index i) + (values int16)) #.(declare-buffun) - (the int16 - (sys:svref-signed-16bit (the buffer-bytes a) - (lucid:ash& (the array-index i) -1)))) + (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 (sys:svref-signed-16bit (the buffer-bytes a) - (lucid:ash& (the array-index i) -1)) - (the int16 v))) + (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) + (values card32)) #.(declare-buffun) - (the card32 - (sys:svref-32bit (the buffer-bytes a) - (lucid:ash& (the array-index i) -2)))) + (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 (sys:svref-32bit (the buffer-bytes a) - (lucid:ash& (the array-index i) -2)) - (the card32 v))) + (setf (lucid::%svref-32bit a (index-ash i -2)) v)) (defun aref-int32 (a i) + (declare (type buffer-bytes a) + (type array-index i) + (values int32)) #.(declare-buffun) - (the int32 - (sys:svref-signed-32bit (the buffer-bytes a) - (lucid:ash& (the array-index i) -2)))) + (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 (sys:svref-signed-32bit (the buffer-bytes a) - (lucid:ash& (the array-index i) -2)) - (the int32 v))) + (setf (lucid::%svref-signed-32bit a (index-ash i -2)) v)) (defun aref-card29 (a i) - ;; Don't need to mask bits here since X protocol guarantees top bits zero + (declare (type buffer-bytes a) + (type array-index i) + (values card29)) #.(declare-buffun) - (the card29 - (sys:svref-32bit (the buffer-bytes a) - (lucid:ash& (the array-index i) -2)))) + (the card29 (lucid::%svref-32bit a (index-ash i -2)))) (defun aset-card29 (v a i) - ;; I also assume here Lisp is passing a number that fits in 29 bits. + (declare (type card29 v) + (type buffer-bytes a) + (type array-index i)) #.(declare-buffun) - (setf (sys:svref-32bit (the buffer-bytes a) - (lucid:ash& (the array-index i) -2)) - (the card29 v))) + (setf (lucid::%svref-32bit a (index-ash i -2)) v)) + ) @@ -750,7 +770,7 @@ #-Genera (progn (defun char->card8 (char) - (declare (type string-char char)) + (declare (type base-char char)) #.(declare-buffun) (the card8 (aref (the (simple-array card8 (*)) *char-to-card8-translation-table*) @@ -758,7 +778,7 @@ (defun card8->char (card8) (declare (type card8 card8)) #.(declare-buffun) - (the string-char + (the base-char (aref (the simple-string *card8-to-char-translation-table*) card8))) ) @@ -789,13 +809,13 @@ (t `(progn (defun char->card8 (char) - (declare (type string-char char)) + (declare (type base-char char)) #.(declare-buffun) (the card8 (char-code char))) (defun card8->char (card8) (declare (type card8 card8)) #.(declare-buffun) - (the string-char (code-char card8))) + (the base-char (code-char card8))) )))))) (char-translators)) @@ -810,7 +830,7 @@ ;;; MAKE-PROCESS-LOCK: Creating a process lock. -#-(or LispM excl) +#-(or LispM excl Minima) (defun make-process-lock (name) (declare (ignore name)) nil) @@ -827,6 +847,10 @@ (defun make-process-lock (name) (process:make-lock name :flavor 'clx-lock)) +#+Minima +(defun make-process-lock (name) + (minima:make-lock name)) + ;;; HOLDING-LOCK: Execute a body of code with a lock held. ;;; The holding-lock macro takes a timeout keyword argument. EVENT-LISTEN @@ -835,28 +859,11 @@ ;; If you're not sharing DISPLAY objects within a multi-processing ;; shared-memory environment, this is sufficient -#-(or lispm excl lcl3.0 CMU) +#-(or lispm excl lcl3.0 Minima) (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 lock out GC's just as a dummy check for our users. -;;; Locking out interrupts has the problem that CLX always waits for replies -;;; within this dynamic scope, so if the server cannot reply for some reason, -;;; we potentially dead-lock without interrupts. -;;; -#+CMU -(defmacro holding-lock ((locator display &optional whostate &key timeout) - &body body) - (declare (ignore locator display whostate timeout)) - `(lisp::without-gcing (system:without-interrupts (progn ,@body)))) - #+Genera (defmacro holding-lock ((locator display &optional whostate &key timeout) &body body) @@ -914,7 +921,11 @@ t) ((lcl:process-wait-with-timeout ,whostate .timeout. #'(lambda () - (conditional-store ,locator nil lcl:*current-process*))))) + (conditional-store ,locator nil lcl:*current-process*)))) + ;; abort the PROCESS-UNLOCK if actually timing out + (t + (setf .have-lock. :abort) + nil)) ,@body) (unless .have-lock. (lcl:process-unlock ,locator)))) @@ -942,6 +953,11 @@ (return-from .hl-doit. nil)) `(mp::process-lock .hl-lock. .hl-curproc. ,@(when whostate `(,whostate)))) + ;; There is an apparent race condition here. However, there is + ;; no actual race condition -- our implementation of mp:process- + ;; lock guarantees that the lock will still be held when it + ;; returns, and no interrupt can happen between that and the + ;; execution of the next form. -- jdi 2/27/91 (setq .hl-obtained-lock. t))) ,@body) (if (and .hl-obtained-lock. @@ -952,6 +968,18 @@ (eq (mp::process-lock-locker .hl-lock.) .hl-curproc.)) (mp::process-unlock .hl-lock. .hl-curproc.))))) +#+Minima +(defmacro holding-lock ((locator display &optional whostate &key timeout) &body body) + `(holding-lock-1 #'(lambda () ,@body) ,locator ,display + ,@(and whostate `(:whostate ,whostate)) + ,@(and timeout `(:timeout ,timeout)))) + +#+Minima +(defun holding-lock-1 (continuation lock display &key (whostate "Lock") timeout) + (declare (dynamic-extent continuation)) + (declare (ignore display whostate timeout)) + (minima:with-lock (lock) + (funcall continuation))) ;;; WITHOUT-ABORTS @@ -981,7 +1009,7 @@ ;;; Caller guarantees that PROCESS-WAKEUP will be called after the predicate's ;;; value changes. -#-(or lispm excl lcl3.0) +#-(or lispm excl lcl3.0 Minima) (defun process-block (whostate predicate &rest predicate-args) (declare (ignore whostate)) (or (apply predicate predicate-args) @@ -990,13 +1018,19 @@ #+Genera (defun process-block (whostate predicate &rest predicate-args) (declare (type function predicate) - (downward-funarg predicate)) + #+clx-ansi-common-lisp + (dynamic-extent predicate) + #-clx-ansi-common-lisp + (sys:downward-funarg predicate)) (apply #'process:block-process whostate predicate predicate-args)) #+(and lispm (not Genera)) (defun process-block (whostate predicate &rest predicate-args) (declare (type function predicate) - (downward-funarg predicate)) + #+clx-ansi-common-lisp + (dynamic-extent predicate) + #-clx-ansi-common-lisp + (sys:downward-funarg predicate)) (apply #'global:process-wait whostate predicate predicate-args)) #+excl @@ -1011,11 +1045,17 @@ (declare (dynamic-extent predicate-args)) (apply #'lcl:process-wait whostate predicate predicate-args)) +#+Minima +(defun process-block (whostate predicate &rest predicate-args) + (declare (type function predicate) + (dynamic-extent predicate)) + (apply #'minima:process-wait whostate predicate predicate-args)) + ;;; PROCESS-WAKEUP: Check some other process' wait function. (declaim (inline process-wakeup)) -#-(or excl Genera) +#-(or excl Genera Minima) (defun process-wakeup (process) (declare (ignore process)) nil) @@ -1035,6 +1075,10 @@ (defun process-wakeup (process) (process:wakeup process)) +#+Minima +(defun process-wakeup (process) + (minima:process-wakeup process)) + ;;; CURRENT-PROCESS: Return the current process object for input locking and ;;; for calling PROCESS-WAKEUP. @@ -1042,7 +1086,7 @@ ;;; Default return NIL, which is acceptable even if there is a scheduler. -#-(or lispm excl lcl3.0) +#-(or lispm excl lcl3.0 Minima) (defun current-process () nil) @@ -1059,9 +1103,13 @@ (defun current-process () lcl:*current-process*) +#+Minima +(defun current-process () + (minima:current-process)) + ;;; WITHOUT-INTERRUPTS -- provide for atomic operations. -#-(or lispm excl lcl3.0) +#-(or lispm excl lcl3.0 Minima) (defmacro without-interrupts (&body body) `(progn ,@body)) @@ -1077,6 +1125,10 @@ (defmacro without-interrupts (&body body) `(lcl:with-scheduling-inhibited ,@body)) +#+Minima +(defmacro without-interrupts (&body body) + `(minima:with-no-other-processes ,@body)) + ;;; CONDITIONAL-STORE: ;; This should use GET-SETF-METHOD to avoid evaluating subforms multiple times. @@ -1149,7 +1201,7 @@ ;;; OPEN-X-STREAM - create a stream for communicating to the appropriate X ;;; server -#-(or explorer Genera lucid kcl ibcl excl CMU) +#-(or explorer Genera lucid kcl ibcl excl Minima) (defun open-x-stream (host display protocol) host display protocol ;; unused (error "OPEN-X-STREAM not implemented yet.")) @@ -1250,20 +1302,12 @@ (error "Failed to connect to server: ~A ~D" host display)) fd)) -;;; OPEN-X-STREAM -- for CMU Common Lisp. -;;; -;;; The file descriptor here just gets tossed into the stream slot of the -;;; display object instead of a stream. -;;; -#+CMU +#+Minima (defun open-x-stream (host display protocol) - (declare (ignore protocol)) - (let ((server-fd (connect-to-server host display))) - (unless (plusp server-fd) - (error "Failed to connect to X11 server: ~A (display ~D)" host display)) - (system:make-fd-stream server-fd :input t :output t - :element-type '(unsigned-byte 8)))) - + (declare (ignore protocol));; unused + (minima:open-tcp-stream (minima:gensym-tcp-port) + (apply #'minima:make-ip-address (cdr (host-address host))) + (+ *x-tcp-port* display) :element-type '(unsigned-byte 8))) ;;; BUFFER-READ-DEFAULT - read data from the X stream @@ -1309,72 +1353,67 @@ #+lcl3.0 -(defmacro extract-underlying-stream (stream display direction) - ;;;Our job is to quickly get at the underlying stream for this display's - ;;;input stream structure. - `(or (getf (display-plist ,display) ,direction) - (setf (getf (display-plist ,display) ,direction) - (lucid::underlying-stream - ,stream (if (eq ,direction 'input) :input :output))))) +(defmacro with-underlying-stream ((variable stream display direction) &body body) + `(let ((,variable + (or (getf (display-plist ,display) ',direction) + (setf (getf (display-plist ,display) ',direction) + (lucid::underlying-stream + ,stream ,(if (eq direction 'input) :input :output)))))) + ,@body)) #+lcl3.0 (defun buffer-read-default (display vector start end timeout) ;;Note that LISTEN must still be done on "slow stream" or the I/O system ;;gets confused. But reading should be done from "fast stream" for speed. - ;;We used to inhibit scheduling because there were races in Lucid's + ;;We used to inhibit scheduling because there were races in Lucid's ;;multitasking system. Empirical evidence suggests they may be gone now. - ;;Should you decide you need to inhibit scheduling, do it around the do*. + ;;Should you decide you need to inhibit scheduling, do it around the + ;;lcl:read-array. (declare (type display display) (type buffer-bytes vector) (type array-index start end) - (type (or null number) timeout) - (optimize (speed 3) - (safety 0))) + (type (or null number) timeout)) + #.(declare-buffun) (let ((stream (display-input-stream display))) (declare (type (or null stream) stream)) (or (cond ((null stream)) ((listen stream) nil) ((eql timeout 0) :timeout) ((buffer-input-wait-default display timeout))) - (let ((stream (extract-underlying-stream stream display 'input))) - (do* ((index start (index1+ index))) - ((index>= index end) nil) - (declare (type array-index index)) - (let ((c (lcl:fast-read-byte stream (unsigned-byte 8) nil nil))) - (declare (type (or null card8) c)) - (if (null c) - (return t) - (setf (aref vector index) (the card8 c))))))))) - - -;;; BUFFER-READ-DEFAULT for CMU Common Lisp. -;;; -;;; If timeout is 0, then we call LISTEN to see if there is any input. -;;; Timeout 0 is the only case where READ-INPUT dives into BUFFER-READ without -;;; first calling BUFFER-INPUT-WAIT-DEFAULT. -;;; -#+CMU + (with-underlying-stream (stream stream display input) + (eq (lcl:read-array stream vector start end nil :eof) :eof))))) + +#+Minima (defun buffer-read-default (display vector start end timeout) + ;; returns non-NIL if EOF encountered + ;; Returns :TIMEOUT when timeout exceeded (declare (type display display) (type buffer-bytes vector) (type array-index start end) - (type (or null fixnum) timeout)) + (type (or null number) timeout)) #.(declare-buffun) - (cond ((and (eql timeout 0) - (not (listen (display-input-stream display)))) - :timeout) - (t - (system:read-n-bytes (display-input-stream display) - vector start (- end start)) - nil))) - + (let ((stream (display-input-stream display))) + (or (cond ((null stream)) + ((listen stream) nil) + ((eql timeout 0) :timeout) + ((buffer-input-wait-default display timeout))) + (loop while (< start end) do + (multiple-value-bind (buffer bstart bend) + (minima:get-input-buffer stream nil) + (when (null buffer) (return t)) + (let ((n (min (- end start) (- bend bstart)))) + (replace vector buffer + :start1 start :end1 (incf start n) + :start2 bstart :end2 (incf bstart n))) + (minima:advance-input-buffer stream bstart))) + nil))) ;;; WARNING: ;;; CLX performance will suffer if your lisp uses read-byte for ;;; receiving all data from the X Window System server. ;;; You are encouraged to write a specialized version of ;;; buffer-read-default that does block transfers. -#-(or Genera explorer excl lcl3.0 CMU) +#-(or Genera explorer excl lcl3.0 Minima) (defun buffer-read-default (display vector start end timeout) (declare (type display display) (type buffer-bytes vector) @@ -1421,20 +1460,37 @@ #+lcl3.0 (defun buffer-write-default (vector display start end) - ;;We inhibit scheduling here because there seem to be races in Lucid's - ;;multitasking implementation. Anyway, when we take it out we get bugs! + ;;We used to inhibit scheduling because there were races in Lucid's + ;;multitasking system. Empirical evidence suggests they may be gone now. + ;;Should you decide you need to inhibit scheduling, do it around the + ;;lcl:write-array. (declare (type display display) (type buffer-bytes vector) - (type array-index start end) - (optimize (:tail-merge nil) - (speed 3) - (safety 0))) + (type array-index start end)) + #.(declare-buffun) (let ((stream (display-output-stream display))) (declare (type (or null stream) stream)) (unless (null stream) - (let ((stream (extract-underlying-stream stream display 'output))) - (lcl:with-scheduling-inhibited - (lcl:write-array stream vector start end)))))) + (with-underlying-stream (stream stream display output) + (lcl:write-array stream vector start end))))) + +#+Minima +(defun buffer-write-default (vector display start end) + ;; The default buffer write function for use with common-lisp streams + (declare (type buffer-bytes vector) + (type display display) + (type array-index start end)) + #.(declare-buffun) + (let ((stream (display-output-stream display))) + (declare (type (or null stream) stream)) + (unless (null stream) + (loop while (< start end) do + (multiple-value-bind (buffer bstart bend) + (minima:get-output-buffer stream) + (let ((n (min (- end start) (- bend bstart)))) + (replace buffer vector + :start1 bstart :end1 (incf bstart n) :start2 start :end2 (incf start n) )) + (minima:advance-output-buffer stream bstart)))))) ;;; WARNING: ;;; CLX performance will be severely degraded if your lisp uses @@ -1442,7 +1498,7 @@ ;;; You are STRONGLY encouraged to write a specialized version ;;; of buffer-write-default that does block transfers. -#-(or Genera explorer excl lcl3.0 CMU) +#-(or Genera explorer excl lcl3.0 Minima) (defun buffer-write-default (vector display start end) ;; The default buffer write function for use with common-lisp streams (declare (type buffer-bytes vector) @@ -1458,15 +1514,6 @@ (declare (type array-index index)) (write-byte (aref vector index) stream)))))) -#+CMU -(defun buffer-write-default (vector display start end) - (declare (type buffer-bytes vector) - (type display display) - (type array-index start end)) - #.(declare-buffun) - (system:output-raw-bytes (display-output-stream display) vector start end) - nil) - ;;; buffer-force-output-default - force output to the X stream #+excl @@ -1474,7 +1521,7 @@ ;; buffer-write-default does the actual writing. (declare (ignore display))) -#-(or excl) +#-excl (defun buffer-force-output-default (display) ;; The default buffer force-output function for use with common-lisp streams (declare (type display display)) @@ -1493,7 +1540,7 @@ #.(declare-buffun) (excl::filesys-checking-close (display-output-stream display))) -#-(or excl) +#-excl (defun buffer-close-default (display &key abort) ;; The default buffer close function for use with common-lisp streams (declare (type display display)) @@ -1511,10 +1558,10 @@ ;;; The default implementation ;; Poll for input every *buffer-read-polling-time* SECONDS. -#-(or Genera explorer excl lcl3.0 CMU) +#-(or Genera explorer excl lcl3.0) (defparameter *buffer-read-polling-time* 0.5) -#-(or Genera explorer excl lcl3.0 CMU) +#-(or Genera explorer excl lcl3.0) (defun buffer-input-wait-default (display timeout) (declare (type display display) (type (or null number) timeout)) @@ -1538,21 +1585,6 @@ (return-from buffer-input-wait-default nil))) :timeout))))) -#+CMU -(defun buffer-input-wait-default (display timeout) - (declare (type display display) - (type (or null number) timeout)) - (let ((stream (display-input-stream display))) - (declare (type (or null stream) stream)) - (cond ((null stream)) - ((listen stream) nil) - ((eql timeout 0) :timeout) - (t - (if (system:wait-until-fd-usable (system:fd-stream-fd stream) - :input timeout) - nil - :timeout))))) - #+Genera (defun buffer-input-wait-default (display timeout) (declare (type display display) @@ -1596,7 +1628,7 @@ ;; This is used so an 'eq' test may be used to find out whether or not we can ;; safely throw this process out of the CLX read loop. ;; -(defparameter *read-whostate* "blocked on read from X server") +(defparameter *read-whostate* "waiting for input from X server") ;; ;; Note that this function returns nil on error if the scheduler is running, @@ -1654,14 +1686,14 @@ (defun buffer-input-wait-default (display timeout) (declare (type display display) (type (or null number) timeout) - (optimize (speed 3) (safety 0))) - (declare (values timeout)) + (values timeout)) + #.(declare-buffun) (let ((stream (display-input-stream display))) (declare (type (or null stream) stream)) (cond ((null stream)) ((listen stream) nil) ((eql timeout 0) :timeout) - ((let ((stream (extract-underlying-stream stream display 'input))) + ((with-underlying-stream (stream stream display input) (lucid::waiting-for-input-from-stream stream (lucid::with-io-unlocked (if (null timeout) @@ -1676,7 +1708,7 @@ ;;; buffer. This should never block, so it can be called from the scheduler. ;;; The default implementation is to just use listen. -#-(or excl) +#-excl (defun buffer-listen-default (display) (declare (type display display)) (let ((stream (display-input-stream display))) @@ -1705,21 +1737,16 @@ ;; consing garbage, you may want to re-write this to allocate and ;; initialize lists from a resource. ;; -#+lispm -(defmacro with-stack-list ((var &rest elements) &body body) - `(sys:with-stack-list (,var ,@elements) ,@body)) - -#+lispm -(defmacro with-stack-list* ((var &rest elements) &body body) - `(sys:with-stack-list* (,var ,@elements) ,@body)) - #-lispm (defmacro with-stack-list ((var &rest elements) &body body) ;; SYNTAX: (WITH-STACK-LIST (var exp1 ... expN) body) ;; Equivalent to (LET ((var (MAPCAR #'EVAL '(exp1 ... expN)))) body) ;; except that the list produced by MAPCAR resides on the stack and ;; therefore DISAPPEARS when WITH-STACK-LIST is exited. - `(let ((,var (list ,@elements))) ,@body)) + `(let ((,var (list ,@elements))) + (declare (type cons ,var) + #+clx-ansi-common-lisp (dynamic-extent ,var)) + ,@body)) #-lispm (defmacro with-stack-list* ((var &rest elements) &body body) @@ -1727,7 +1754,10 @@ ;; Equivalent to (LET ((var (APPLY #'LIST* (MAPCAR #'EVAL '(exp1 ... expN))))) body) ;; except that the list produced by MAPCAR resides on the stack and ;; therefore DISAPPEARS when WITH-STACK-LIST is exited. - `(let ((,var (list* ,@elements))) ,@body)) + `(let ((,var (list* ,@elements))) + (declare (type cons ,var) + #+clx-ansi-common-lisp (dynamic-extent ,var)) + ,@body)) (declaim (inline buffer-replace)) @@ -1747,8 +1777,8 @@ (let ((source-end (length source-sequence))) (declare (type array-index source-end)) - (if* (and (eq target-sequence source-sequence) - (> target-start source-start)) + (excl:if* (and (eq target-sequence source-sequence) + (> target-start source-start)) then (let ((nelts (min (- target-end target-start) (- source-end source-start)))) (do ((target-index (+ target-start nelts -1) (1- target-index)) @@ -1767,18 +1797,6 @@ (setf (aref target-sequence target-index) (aref source-sequence source-index)))))) -#+cmu -(defun buffer-replace (buf1 buf2 start1 end1 &optional (start2 0)) - (declare (type buffer-bytes buf1 buf2) - (type array-index start1 end1 start2)) - #.(declare-buffun) - (kernel:bit-bash-copy - buf2 (+ (* start2 vm:byte-bits) - (* vm:vector-data-offset vm:word-bits)) - buf1 (+ (* start1 vm:byte-bits) - (* vm:vector-data-offset vm:word-bits)) - (* (- end1 start1) vm:byte-bits))) - #+lucid ;;;The compiler is *supposed* to optimize calls to replace, but in actual ;;;fact it does not. @@ -1797,7 +1815,7 @@ (type array-index start1 end1 start2)) (replace buf1 buf2 :start1 start1 :end1 end1 :start2 start2)) -#-(or lispm lucid excl cmu clx-overlapping-arrays) +#-(or lispm lucid excl clx-overlapping-arrays) (defun buffer-replace (buf1 buf2 start1 end1 &optional (start2 0)) (declare (type buffer-bytes buf1 buf2) (type array-index start1 end1 start2)) @@ -1902,7 +1920,7 @@ ;;; This controls macro expansion, and isn't changable at run-time You will ;;; probably want to set this to nil if you want good performance at ;;; production time. -(defconstant *type-check?* #+(or cmu Genera) nil #-(or cmu Genera) t) +(defconstant *type-check?* #+(or Genera Minima) nil #-(or Genera Minima) t) ;; TYPE? is used to allow the code to do error checking at a different level from ;; the declarations. It also does some optimizations for systems that don't have @@ -1910,23 +1928,16 @@ ;; include range checks. You can modify TYPE? to do less extensive checking ;; for these types if you desire. -;; -;; ### This comment is a lie! TYPE? is really also used for run-time type -;; dispatching, not just type checking. -- Ram. - (defmacro type? (object type) - #+cmu - `(typep ,object ,type) - #-cmu (if (not (constantp type)) `(typep ,object ,type) (progn (setq type (eval type)) - #+(or Genera explorer) + #+(or Genera explorer Minima) (if *type-check?* `(locally (declare (optimize safety)) (typep ,object ',type)) `(typep ,object ',type)) - #-(or Genera explorer) + #-(or Genera explorer Minima) (let ((predicate (assoc type '((drawable drawable-p) (window window-p) (pixmap pixmap-p) (cursor cursor-p) @@ -1950,7 +1961,7 @@ (x-error 'x-type-error :datum object :expected-type type - #-CMU :error-string #+CMU :type-string error-string)) + :type-string error-string)) ;;----------------------------------------------------------------------------- @@ -1969,69 +1980,41 @@ (apply #'x-cerror "Ignore" error-key :display display :error-key error-key key-vals) (apply #'x-error error-key :display display :error-key error-key key-vals))) -#+(and lispm (not Genera) (not ansi-common-lisp)) +#+(and lispm (not Genera) (not clx-ansi-common-lisp)) (defun x-error (condition &rest keyargs) (apply #'sys:signal condition keyargs)) -#+(and lispm (not Genera) (not ansi-common-lisp)) +#+(and lispm (not Genera) (not clx-ansi-common-lisp)) (defun x-cerror (proceed-format-string condition &rest keyargs) (sys:signal (apply #'zl:make-condition condition keyargs) :proceed-types proceed-format-string)) -#+(and Genera (not ansi-common-lisp)) +#+(and Genera (not clx-ansi-common-lisp)) (defun x-error (condition &rest keyargs) (declare (dbg:error-reporter)) (apply #'sys:signal condition keyargs)) -#+(and Genera (not ansi-common-lisp)) +#+(and Genera (not clx-ansi-common-lisp)) (defun x-cerror (proceed-format-string condition &rest keyargs) (declare (dbg:error-reporter)) (apply #'sys:signal condition :continue-format-string proceed-format-string keyargs)) -#+(or ansi-common-lisp excl lcl3.0) +#+(or clx-ansi-common-lisp excl lcl3.0) (defun x-error (condition &rest keyargs) (declare (dynamic-extent keyargs)) (apply #'error condition keyargs)) -#+(or ansi-common-lisp excl lcl3.0) +#+(or clx-ansi-common-lisp excl lcl3.0) (defun x-cerror (proceed-format-string condition &rest keyargs) (declare (dynamic-extent keyargs)) (apply #'cerror proceed-format-string condition keyargs)) -;;; X-ERROR for CMU Common Lisp -;;; -;;; We detect a couple condition types for which we disable event handling in -;;; our system. This prevents going into the debugger or returning to a -;;; command prompt with CLX repeatedly seeing the same condition. This occurs -;;; because CMU Common Lisp provides for all events (that is, X, input on file -;;; descriptors, Mach messages, etc.) to come through one routine anyone can -;;; use to wait for input. -;;; -#+CMU -(defun x-error (condition &rest keyargs) - (let ((condx (apply #'make-condition condition keyargs))) - #|This condition no longer exists. - (when (eq condition 'server-disconnect) - (let ((disp (server-disconnect-display condx))) - (warn "Disabled event handling on ~S." disp) - (ext::disable-clx-event-handling disp)))|# - (when (eq condition 'closed-display) - (let ((disp (closed-display-display condx))) - (warn "Disabled event handling on ~S." disp) - (ext::disable-clx-event-handling disp))) - (error condx))) - -#+CMU -(defun x-cerror (proceed-format-string condition &rest keyargs) - (apply #'cerror proceed-format-string condition keyargs)) - - -#-(or lispm ansi-common-lisp excl lcl3.0 CMU) +#-(or lispm clx-ansi-common-lisp excl lcl3.0) (defun x-error (condition &rest keyargs) (error "X-Error: ~a" (princ-to-string (apply #'make-condition condition keyargs)))) -#-(or lispm ansi-common-lisp excl lcl3.0 CMU) +#-(or lispm clx-ansi-common-lisp excl lcl3.0) (defun x-cerror (proceed-format-string condition &rest keyargs) (cerror proceed-format-string "X-Error: ~a" (princ-to-string (apply #'make-condition condition keyargs)))) @@ -2041,9 +2024,27 @@ ;; Where option is one of: (:documentation doc-string) (:conc-name symbol-or-string) ;; or (:report exp) -#+(and lispm (not ansi-common-lisp)) -(defmacro define-condition (name parents &body options) - (let ((slots (pop options)) +#+lcl3.0 +(defmacro define-condition (name parent-types &optional slots &rest args) + `(lcl:define-condition + ,name (,(first parent-types)) + ,(mapcar #'(lambda (slot) (if (consp slot) (car slot) slot)) + slots) + ,@args)) + +#+(and excl (not clx-ansi-common-lisp)) +(defmacro define-condition (name parent-types &optional slots &rest args) + `(excl::define-condition + ,name (,(first parent-types)) + ,(mapcar #'(lambda (slot) (if (consp slot) (car slot) slot)) + slots) + ,@args)) + +#+(and lispm (not clx-ansi-common-lisp)) +(defmacro define-condition (name parent-types &body options) + (let ((slot-names + (mapcar #'(lambda (slot) (if (consp slot) (car slot) slot)) + (pop options))) (documentation nil) (conc-name (concatenate 'string (string name) "-")) (reporter nil)) @@ -2053,16 +2054,16 @@ (:conc-name (setq conc-name (string (second item)))) (:report (setq reporter (second item))))) `(within-definition (,name define-condition) - (zl:defflavor ,name ,slots ,parents + (zl:defflavor ,name ,slot-names ,parent-types :initable-instance-variables #-Genera (:accessor-prefix ,conc-name) #+Genera (:conc-name ,conc-name) #-Genera - (:outside-accessible-instance-variables ,@slots) + (:outside-accessible-instance-variables ,@slot-names) #+Genera - (:readable-instance-variables ,@slots)) + (:readable-instance-variables ,@slot-names)) ,(when reporter ;; when no reporter, parent's is inherited `(zl:defmethod #-Genera (,name :report) #+Genera (dbg:report ,name) (stream) @@ -2075,72 +2076,74 @@ `(setf (documentation name 'type) ,documentation)) ',name))) -#+(and lispm (not Genera) (not ansi-common-lisp)) +#+(and lispm (not Genera) (not clx-ansi-common-lisp)) (zl:defflavor x-error () (global:error)) -#+(and Genera (not ansi-common-lisp)) +#+(and Genera (not clx-ansi-common-lisp)) (scl:defflavor x-error ((dbg:proceed-types '(:continue)) ; continue-format-string) (sys:error) (:initable-instance-variables continue-format-string)) -#+(and Genera (not ansi-common-lisp)) +#+(and Genera (not clx-ansi-common-lisp)) (scl:defmethod (scl:make-instance x-error) (&rest ignore) (when (not (sys:variable-boundp continue-format-string)) (setf dbg:proceed-types (remove :continue dbg:proceed-types)))) -#+(and Genera (not ansi-common-lisp)) +#+(and Genera (not clx-ansi-common-lisp)) (scl:defmethod (dbg:proceed x-error :continue) () :continue) -#+(and Genera (not ansi-common-lisp)) +#+(and Genera (not clx-ansi-common-lisp)) (sys:defmethod (dbg:document-proceed-type x-error :continue) (stream) (format stream continue-format-string)) -#+(or ansi-common-lisp excl lcl3.0 CMU) -(define-condition x-error (error)) +#+(or clx-ansi-common-lisp excl lcl3.0) +(define-condition x-error (error) ()) -#-(or lispm ansi-common-lisp excl lcl3.0 CMU) +#-(or lispm clx-ansi-common-lisp excl lcl3.0) (defstruct x-error report-function) -#-(or lispm ansi-common-lisp excl lcl3.0 CMU) -(defun reporter-for-condition (name) - (xintern "." name '-reporter.)) - -#-(or lispm ansi-common-lisp excl lcl3.0 CMU) -(defmacro define-condition (name parents &body options) +#-(or lispm clx-ansi-common-lisp excl lcl3.0) +(defmacro define-condition (name parent-types &body options) ;; Define a structure that when printed displays an error message - (let ((slots (pop options)) - (documentation nil) - (conc-name (concatenate 'string (string name) "-")) - (reporter nil) - (condition (gensym)) - (stream (gensym)) - (report-function (reporter-for-condition name))) - (dolist (item options) - (ecase (first item) - (:documentation (setq documentation (second item))) - (:conc-name (setq conc-name (string (second item)))) - (:report (setq reporter (second item))))) - (unless reporter (setq report-function (reporter-for-condition (car parents)))) - `(within-definition (,name define-condition) - (defstruct (,name (:conc-name ,(intern conc-name)) - (:print-function condition-print) - (:include ,(car parents) (report-function ',report-function))) - ,@slots) - ,(when documentation - `(setf (documentation name 'type) ,documentation)) - ,(when reporter - `(defun ,report-function (,condition ,stream) - ,(if (stringp reporter) - `(write-string ,reporter ,stream) - `(,reporter ,condition ,stream)) - ,condition)) - ',name))) - -#-(or lispm ansi-common-lisp excl lcl3.0 CMU) + (flet ((reporter-for-condition (name) + (xintern "." name '-reporter.))) + (let ((slot-names + (mapcar #'(lambda (slot) (if (consp slot) (car slot) slot)) + (pop options))) + (documentation nil) + (conc-name (concatenate 'string (string name) "-")) + (reporter nil) + (condition (gensym)) + (stream (gensym)) + (report-function (reporter-for-condition name))) + (dolist (item options) + (ecase (first item) + (:documentation (setq documentation (second item))) + (:conc-name (setq conc-name (string (second item)))) + (:report (setq reporter (second item))))) + (unless reporter + (setq report-function (reporter-for-condition (first parent-types)))) + `(within-definition (,name define-condition) + (defstruct (,name (:conc-name ,(intern conc-name)) + (:print-function condition-print) + (:include ,(first parent-types) + (report-function ',report-function))) + ,@slot-names) + ,(when documentation + `(setf (documentation name 'type) ,documentation)) + ,(when reporter + `(defun ,report-function (,condition ,stream) + ,(if (stringp reporter) + `(write-string ,reporter ,stream) + `(,reporter ,condition ,stream)) + ,condition)) + ',name)))) + +#-(or lispm clx-ansi-common-lisp excl lcl3.0) (defun condition-print (condition stream depth) (declare (type x-error condition) (type stream stream) @@ -2150,28 +2153,29 @@ (funcall (x-error-report-function condition) condition stream)) condition) -#-(or lispm ansi-common-lisp excl lcl3.0 CMU) +#-(or lispm clx-ansi-common-lisp excl lcl3.0) (defun make-condition (type &rest slot-initializations) (declare (dynamic-extent slot-initializations)) (let ((make-function (intern (concatenate 'string (string 'make-) (string type)) (symbol-package type)))) (apply make-function slot-initializations))) -#-(or ansi-common-lisp excl lcl3.0 CMU) +#-(or clx-ansi-common-lisp excl lcl3.0) (define-condition type-error (x-error) - (datum - expected-type) - (:report (lambda (condition stream) - (format stream "~s isn't a ~a" - (type-error-datum condition) - (type-error-expected-type condition))))) + ((datum :reader type-error-datum :initarg :datum) + (expected-type :reader type-error-expected-type :initarg :expected-type)) + (:report + (lambda (condition stream) + (format stream "~s isn't a ~a" + (type-error-datum condition) + (type-error-expected-type condition))))) ;;----------------------------------------------------------------------------- ;; HOST hacking ;;----------------------------------------------------------------------------- -#-(or explorer Genera) +#-(or explorer Genera Minima) (defun host-address (host &optional (family :internet)) ;; Return a list whose car is the family keyword (:internet :DECnet :Chaos) ;; and cdr is a list of network address bytes. @@ -2227,6 +2231,29 @@ ((:chaos :DECnet) (list family (ldb (byte 8 0) address) (ldb (byte 8 8) address)))))))))) +#+Minima +(defun host-address (host &optional (family :internet)) + ;; Return a list whose car is the family keyword (:internet :DECnet :Chaos) + ;; and cdr is a list of network address bytes. + (declare (type (or stringable list) host) + (type (or null (member :internet :decnet :chaos) card8) family)) + (declare (values list)) + (check-type family (member :internet)) + (or (loop with (num delim) + repeat 4 + for idx = 0 then (1+ delim) + when (and delim (or (= delim (length host)) + (char-not-equal (char host delim) #\.))) + return nil + do (multiple-value-setq (num delim) + (parse-integer host :start idx :junk-allowed t)) + when (or (null num) (< num 0) (> num 255)) + return nil + else collect num into nums + finally (return (when (= delim (length host)) + (cons :internet nums)))) + (error "Invalid internet address [~A]." host))) + #+explorer ;; This isn't required, but it helps make sense of the results from access-hosts (defun get-host (host-object) ;; host-object is a list whose car is the family keyword (:internet :DECnet :Chaos) @@ -2281,7 +2308,8 @@ ;;; want to make this expand to T, as it makes the code more compact. (defmacro use-closures () - #+lispm t #-lispm nil) + #+(or lispm Minima) t + #-(or lispm Minima) nil) ;;----------------------------------------------------------------------------- @@ -2293,8 +2321,7 @@ ;;; a resource manager isn't running. (defun default-resources-pathname () - (when #+(or unix mach) t - #-(or unix mach) (search "Unix" (software-type) :test #'char-equal) + (when #+unix t #-unix (search "Unix" (software-type) :test #'char-equal) (merge-pathnames (user-homedir-pathname) (pathname ".Xdefaults")))) @@ -2303,13 +2330,11 @@ ;;; defaults have been loaded. (defun resources-pathname () - (when #+(or unix mach) t - #-(or unix mach) (search "Unix" (software-type) :test #'char-equal) - (or #+(or excl lcl3.0 CMU) - (let ((string #-CMU (#+excl sys:getenv - #+lcl3.0 lcl:environment-variable - "XENVIRONMENT") - #+CMU (cdr (assoc :xenvironment ext:*environment-list*)))) + (when #+unix t #-unix (search "Unix" (software-type) :test #'char-equal) + (or #+(or excl (and lcl3.0 (not vax-vms))) + (let ((string (#+excl sys:getenv + #+lcl3.0 lcl:environment-variable + "XENVIRONMENT"))) (when string (pathname string))) (merge-pathnames @@ -2324,8 +2349,7 @@ ;; GC stuff ;;----------------------------------------------------------------------------- -#+Genera -(si:define-gc-cleanup clx-cleanup ("CLX Cleanup") +(defun gc-cleanup () (declare (special *event-free-list* *pending-command-free-list* *reply-buffer-free-lists* @@ -2333,32 +2357,121 @@ *temp-gcontext-cache*)) (setq *event-free-list* nil) (setq *pending-command-free-list* nil) - (fill *reply-buffer-free-lists* nil) + (when (boundp '*reply-buffer-free-lists*) + (fill *reply-buffer-free-lists* nil)) (setq *gcontext-local-state-cache* nil) - (setq *temp-gcontext-cache* nil)) + (setq *temp-gcontext-cache* nil) + nil) + +#+Genera +(si:define-gc-cleanup clx-cleanup ("CLX Cleanup") + (gc-cleanup)) + + +;;----------------------------------------------------------------------------- +;; WITH-STANDARD-IO-SYNTAX equivalent, used in (SETF WM-COMMAND) +;;----------------------------------------------------------------------------- + +#-(or clx-ansi-common-lisp Genera) +(defun with-standard-io-syntax-function (function) + (declare #+lispm + (sys:downward-funarg function)) + (let ((*package* (find-package :user)) + (*print-array* t) + (*print-base* 10) + (*print-case* :upcase) + (*print-circle* nil) + (*print-escape* t) + (*print-gensym* t) + (*print-length* nil) + (*print-level* nil) + (*print-pretty* nil) + (*print-radix* nil) + (*read-base* 10) + (*read-default-float-format* 'single-float) + (*read-suppress* nil) + #+ticl (ticl:*print-structure* t) + #+lucid (lucid::*print-structure* t)) + (funcall function))) + +#-(or clx-ansi-common-lisp Genera) +(defmacro with-standard-io-syntax (&body body) + `(flet ((.with-standard-io-syntax-body. () ,@body)) + (with-standard-io-syntax-function #'.with-standard-io-syntax-body.))) + + +;;----------------------------------------------------------------------------- +;; DEFAULT-KEYSYM-TRANSLATE +;;----------------------------------------------------------------------------- + +;;; If object is a character, char-bits are set from state. +;;; +;;; [the following isn't implemented (should it be?)] +;;; If object is a list, it is an alist with entries: +;;; (base-char [modifiers] [mask-modifiers]) +;;; When MODIFIERS are specified, this character translation +;;; will only take effect when the specified modifiers are pressed. +;;; MASK-MODIFIERS can be used to specify a set of modifiers to ignore. +;;; When MASK-MODIFIERS is missing, all other modifiers are ignored. +;;; In ambiguous cases, the most specific translation is used. + +#+(or (not clx-ansi-common-lisp) lispm allegro) +(defun default-keysym-translate (display state object) + (declare (type display display) + (type card16 state) + (type t object) + (values t) + (special left-meta-keysym right-meta-keysym + left-super-keysym right-super-keysym + left-hyper-keysym right-hyper-keysym)) + (when (characterp object) + (when (logbitp (position :control *state-mask-vector*) state) + (setf (char-bit object :control) 1)) + (when (or (state-keysymp display state left-meta-keysym) + (state-keysymp display state right-meta-keysym)) + (setf (char-bit object :meta) 1)) + (when (or (state-keysymp display state left-super-keysym) + (state-keysymp display state right-super-keysym)) + (setf (char-bit object :super) 1)) + (when (or (state-keysymp display state left-hyper-keysym) + (state-keysymp display state right-hyper-keysym)) + (setf (char-bit object :hyper) 1))) + object) + +#+(and clx-ansi-common-lisp (not lispm) (not allegro)) +(defun default-keysym-translate (display state object) + (declare (type display display) + (type card16 state) + (type t object) + (ignore display state) + (values t)) + object) ;;----------------------------------------------------------------------------- ;; Image stuff ;;----------------------------------------------------------------------------- +;;; Types + (deftype pixarray-1-element-type () 'bit) (deftype pixarray-4-element-type () - 'card4) + '(unsigned-byte 4)) (deftype pixarray-8-element-type () - 'card8) + '(unsigned-byte 8)) (deftype pixarray-16-element-type () - 'card16) + '(unsigned-byte 16)) (deftype pixarray-24-element-type () - #-Genera 'card24 #+Genera 'int32) + '(unsigned-byte 24)) (deftype pixarray-32-element-type () - #-Genera 'card32 #+Genera 'int32) + #-(or Genera Minima) '(unsigned-byte 32) + #+(or Genera Minima) 'fixnum) (deftype pixarray-1 () '(array pixarray-1-element-type (* *))) @@ -2384,24 +2497,57 @@ (deftype bitmap () 'pixarray-1) +;;; WITH-UNDERLYING-SIMPLE-VECTOR + +#+Genera +(defmacro with-underlying-simple-vector + ((variable element-type pixarray) &body body) + (let ((bits-per-element + (sys:array-bits-per-element + (symbol-value (sys:type-array-element-type element-type))))) + `(scl:stack-let ((,variable + (make-array + (index-ceiling + (index* (array-total-size ,pixarray) + (sys:array-element-size ,pixarray)) + ,bits-per-element) + :element-type ',element-type + :displaced-to ,pixarray))) + (declare (array-register ,variable)) + ,@body))) + +#+lcl3.0 +(defmacro with-underlying-simple-vector + ((variable element-type pixarray) &body body) + `(let ((,variable (sys:underlying-simple-vector ,pixarray))) + (declare (type (simple-array ,element-type (*)) ,variable)) + ,@body)) + +#+excl +(defmacro with-underlying-simple-vector + ((variable element-type pixarray) &body body) + `(let ((,variable (cdr (excl::ah_data ,pixarray)))) + (declare (type (simple-array ,element-type (*)) ,variable)) + ,@body)) ;;; These are used to read and write pixels from and to CARD8s. ;;; READ-IMAGE-LOAD-BYTE is used to extract 1 and 4 bit pixels from CARD8s. (defmacro read-image-load-byte (size position integer) + (unless *image-bit-lsb-first-p* (setq position (- 7 position))) `(the (unsigned-byte ,size) (#-Genera ldb #+Genera sys:%logldb - (byte ,size ,(if *image-bit-lsb-first-p* position (- 7 position))) + (byte ,size ,position) (the card8 ,integer)))) ;;; READ-IMAGE-ASSEMBLE-BYTES is used to build 16, 24 and 32 bit pixels from ;;; the appropriate number of CARD8s. (defmacro read-image-assemble-bytes (&rest bytes) - (let* ((bytes (if *image-byte-lsb-first-p* bytes (reverse bytes))) - (it (first bytes)) - (count 0)) + (unless *image-byte-lsb-first-p* (setq bytes (reverse bytes))) + (let ((it (first bytes)) + (count 0)) (dolist (byte (rest bytes)) (setq it `(#-Genera dpb #+Genera sys:%logdpb @@ -2416,23 +2562,22 @@ (defmacro write-image-load-byte (position integer integer-size) integer-size + (unless *image-byte-lsb-first-p* (setq position (- integer-size 8 position))) `(the card8 (#-Genera ldb #+Genera sys:%logldb - (byte 8 ,(if *image-byte-lsb-first-p* - position - (- integer-size 8 position))) - #-Genera (the (unsigned-byte ,integer-size) ,integer) - #+Genera ,integer - ))) + (byte 8 ,position) + #-Genera (the (unsigned-byte ,integer-size) ,integer) + #+Genera ,integer + ))) ;;; WRITE-IMAGE-ASSEMBLE-BYTES is used to build a CARD8 from 1 or 4 bit ;;; pixels. (defmacro write-image-assemble-bytes (&rest bytes) - (let* ((bytes (if *image-bit-lsb-first-p* bytes (reverse bytes))) - (size (floor 8 (length bytes))) - (it (first bytes)) - (count 0)) + (unless *image-bit-lsb-first-p* (setq bytes (reverse bytes))) + (let ((size (floor 8 (length bytes))) + (it (first bytes)) + (count 0)) (dolist (byte (rest bytes)) (setq it `(#-Genera dpb #+Genera sys:%logdpb (the (unsigned-byte ,size) ,byte) @@ -2440,15 +2585,95 @@ (the (unsigned-byte ,count) ,it)))) `(the card8 ,it))) -#+cmu -(progn - (declaim (inline underlying-simple-vector)) - (defun underlying-simple-vector (x) - (lisp::with-array-data ((res x) - (start) - (end)) - (declare (ignore start end)) - res))) +#+(or Genera lcl3.0 excl) +(defvar *computed-image-byte-lsb-first-p* *image-byte-lsb-first-p*) + +#+(or Genera lcl3.0 excl) +(defvar *computed-image-bit-lsb-first-p* *image-bit-lsb-first-p*) + +;;; The following table gives the bit ordering within bytes (when accessed +;;; sequentially) for a scanline containing 32 bits, with bits numbered 0 to +;;; 31, where bit 0 should be leftmost on the display. For a given byte +;;; labelled A-B, A is for the most significant bit of the byte, and B is +;;; for the least significant bit. +;;; +;;; legend: +;;; 1 scanline-unit = 8 +;;; 2 scanline-unit = 16 +;;; 4 scanline-unit = 32 +;;; M byte-order = MostSignificant +;;; L byte-order = LeastSignificant +;;; m bit-order = MostSignificant +;;; l bit-order = LeastSignificant +;;; +;;; +;;; format ordering +;;; +;;; 1Mm 00-07 08-15 16-23 24-31 +;;; 2Mm 00-07 08-15 16-23 24-31 +;;; 4Mm 00-07 08-15 16-23 24-31 +;;; 1Ml 07-00 15-08 23-16 31-24 +;;; 2Ml 15-08 07-00 31-24 23-16 +;;; 4Ml 31-24 23-16 15-08 07-00 +;;; 1Lm 00-07 08-15 16-23 24-31 +;;; 2Lm 08-15 00-07 24-31 16-23 +;;; 4Lm 24-31 16-23 08-15 00-07 +;;; 1Ll 07-00 15-08 23-16 31-24 +;;; 2Ll 07-00 15-08 23-16 31-24 +;;; 4Ll 07-00 15-08 23-16 31-24 + +#+(or Genera lcl3.0 excl) +(defconstant + *image-bit-ordering-table* + '(((1 (00 07) (08 15) (16 23) (24 31)) (nil nil)) + ((2 (00 07) (08 15) (16 23) (24 31)) (nil nil)) + ((4 (00 07) (08 15) (16 23) (24 31)) (nil nil)) + ((1 (07 00) (15 08) (23 16) (31 24)) (nil t)) + ((2 (15 08) (07 00) (31 24) (23 16)) (nil t)) + ((4 (31 24) (23 16) (15 08) (07 00)) (nil t)) + ((1 (00 07) (08 15) (16 23) (24 31)) (t nil)) + ((2 (08 15) (00 07) (24 31) (16 23)) (t nil)) + ((4 (24 31) (16 23) (08 15) (00 07)) (t nil)) + ((1 (07 00) (15 08) (23 16) (31 24)) (t t)) + ((2 (07 00) (15 08) (23 16) (31 24)) (t t)) + ((4 (07 00) (15 08) (23 16) (31 24)) (t t)))) + +#+(or Genera lcl3.0 excl) +(defun compute-image-byte-and-bit-ordering () + (declare (values image-byte-lsb-first-p image-bit-lsb-first-p)) + ;; First compute the ordering + (let ((ordering nil) + (a (make-array '(1 32) :element-type 'bit :initial-element 0))) + (dotimes (i 4) + (push (flet ((bitpos (a i n) + (declare (optimize (speed 3) (safety 0) (space 0))) + (declare (type (simple-array bit (* *)) a) + (type fixnum i n)) + (with-underlying-simple-vector (v (unsigned-byte 8) a) + (prog2 + (setf (aref v i) n) + (dotimes (i 32) + (unless (zerop (aref a 0 i)) + (return i))) + (setf (aref v i) 0))))) + (list (bitpos a i #b10000000) + (bitpos a i #b00000001))) + ordering)) + (setq ordering (cons (floor *image-unit* 8) (nreverse ordering))) + ;; Now from the ordering, compute byte-lsb-first-p and bit-lsb-first-p + (let ((byte-and-bit-ordering + (second (assoc ordering *image-bit-ordering-table* + :test #'equal)))) + (unless byte-and-bit-ordering + (error "Couldn't determine image byte and bit ordering~@ + measured image ordering = ~A" + ordering)) + (values-list byte-and-bit-ordering)))) + +#+(or Genera lcl3.0 excl) +(multiple-value-setq + (*computed-image-byte-lsb-first-p* *computed-image-bit-lsb-first-p*) + (compute-image-byte-and-bit-ordering)) ;;; If you can write fast routines that can read and write pixarrays out of a ;;; buffer-bytes, do it! It makes the image code a lot faster. The @@ -2457,680 +2682,562 @@ ;;; FAST-READ-PIXARRAY - fill part of a pixarray from a buffer of card8s -#+(or lcl3.0 excl cmu) +#+(or lcl3.0 excl) (defun fast-read-pixarray-1 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-1 array) (type card16 x y width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (start (index+ index - (index* y padded-bytes-per-line) - (index-ceiling x 8)) - (index+ start padded-bytes-per-line)) - (y 0 (index1+ y)) - (left-bits (the array-index (mod (the fixnum (- x)) 8))) - (right-bits (index-mod (index- width left-bits) 8)) - (middle-bits (the fixnum (- (the fixnum (- width left-bits)) - right-bits))) - (middle-bytes (index-floor middle-bits 8))) - ((index>= y height)) - (declare (type (simple-array pixarray-1-element-type (*)) vector) - (fixnum middle-bits) - (type array-index start y - left-bits right-bits middle-bytes)) - (cond ((< middle-bits 0) - (let ((byte (aref buffer-bbuf (index1- start))) - (x (array-row-major-index array y left-bits))) - (declare (type card8 byte) - (type array-index x)) - (when (index> right-bits 6) - (setf (aref vector (index- x 1)) - (read-image-load-byte 1 7 byte))) - (when (and (index> left-bits 1) - (index> right-bits 5)) - (setf (aref vector (index- x 2)) - (read-image-load-byte 1 6 byte))) - (when (and (index> left-bits 2) - (index> right-bits 4)) - (setf (aref vector (index- x 3)) - (read-image-load-byte 1 5 byte))) - (when (and (index> left-bits 3) - (index> right-bits 3)) - (setf (aref vector (index- x 4)) - (read-image-load-byte 1 4 byte))) - (when (and (index> left-bits 4) - (index> right-bits 2)) - (setf (aref vector (index- x 5)) - (read-image-load-byte 1 3 byte))) - (when (and (index> left-bits 5) - (index> right-bits 1)) - (setf (aref vector (index- x 6)) - (read-image-load-byte 1 2 byte))) - (when (index> left-bits 6) - (setf (aref vector (index- x 7)) - (read-image-load-byte 1 1 byte))))) - (t - (unless (index-zerop left-bits) + (with-underlying-simple-vector (vector pixarray-1-element-type array) + (do* ((start (index+ index + (index* y padded-bytes-per-line) + (index-ceiling x 8)) + (index+ start padded-bytes-per-line)) + (y 0 (index1+ y)) + (left-bits (index-mod (index- x) 8)) + (right-bits (index-mod (index- width left-bits) 8)) + (middle-bits (index- width left-bits right-bits)) + (middle-bytes (index-floor middle-bits 8))) + ((index>= y height)) + (declare (type array-index start y + left-bits right-bits middle-bits middle-bytes)) + (cond ((index< middle-bits 0) (let ((byte (aref buffer-bbuf (index1- start))) (x (array-row-major-index array y left-bits))) (declare (type card8 byte) (type array-index x)) - (setf (aref vector (index- x 1)) - (read-image-load-byte 1 7 byte)) - (when (index> left-bits 1) + (when (index> right-bits 6) + (setf (aref vector (index- x 1)) + (read-image-load-byte 1 7 byte))) + (when (and (index> left-bits 1) + (index> right-bits 5)) (setf (aref vector (index- x 2)) + (read-image-load-byte 1 6 byte))) + (when (and (index> left-bits 2) + (index> right-bits 4)) + (setf (aref vector (index- x 3)) + (read-image-load-byte 1 5 byte))) + (when (and (index> left-bits 3) + (index> right-bits 3)) + (setf (aref vector (index- x 4)) + (read-image-load-byte 1 4 byte))) + (when (and (index> left-bits 4) + (index> right-bits 2)) + (setf (aref vector (index- x 5)) + (read-image-load-byte 1 3 byte))) + (when (and (index> left-bits 5) + (index> right-bits 1)) + (setf (aref vector (index- x 6)) + (read-image-load-byte 1 2 byte))) + (when (index> left-bits 6) + (setf (aref vector (index- x 7)) + (read-image-load-byte 1 1 byte))))) + (t + (unless (index-zerop left-bits) + (let ((byte (aref buffer-bbuf (index1- start))) + (x (array-row-major-index array y left-bits))) + (declare (type card8 byte) + (type array-index x)) + (setf (aref vector (index- x 1)) + (read-image-load-byte 1 7 byte)) + (when (index> left-bits 1) + (setf (aref vector (index- x 2)) + (read-image-load-byte 1 6 byte)) + (when (index> left-bits 2) + (setf (aref vector (index- x 3)) + (read-image-load-byte 1 5 byte)) + (when (index> left-bits 3) + (setf (aref vector (index- x 4)) + (read-image-load-byte 1 4 byte)) + (when (index> left-bits 4) + (setf (aref vector (index- x 5)) + (read-image-load-byte 1 3 byte)) + (when (index> left-bits 5) + (setf (aref vector (index- x 6)) + (read-image-load-byte 1 2 byte)) + (when (index> left-bits 6) + (setf (aref vector (index- x 7)) + (read-image-load-byte 1 1 byte)) + )))))))) + (do* ((end (index+ start middle-bytes)) + (i start (index1+ i)) + (x (array-row-major-index array y left-bits) (index+ x 8))) + ((index>= i end) + (unless (index-zerop right-bits) + (let ((byte (aref buffer-bbuf end)) + (x (array-row-major-index + array y (index+ left-bits middle-bits)))) + (declare (type card8 byte) + (type array-index x)) + (setf (aref vector (index+ x 0)) + (read-image-load-byte 1 0 byte)) + (when (index> right-bits 1) + (setf (aref vector (index+ x 1)) + (read-image-load-byte 1 1 byte)) + (when (index> right-bits 2) + (setf (aref vector (index+ x 2)) + (read-image-load-byte 1 2 byte)) + (when (index> right-bits 3) + (setf (aref vector (index+ x 3)) + (read-image-load-byte 1 3 byte)) + (when (index> right-bits 4) + (setf (aref vector (index+ x 4)) + (read-image-load-byte 1 4 byte)) + (when (index> right-bits 5) + (setf (aref vector (index+ x 5)) + (read-image-load-byte 1 5 byte)) + (when (index> right-bits 6) + (setf (aref vector (index+ x 6)) + (read-image-load-byte 1 6 byte)) + ))))))))) + (declare (type array-index end i x)) + (let ((byte (aref buffer-bbuf i))) + (declare (type card8 byte)) + (setf (aref vector (index+ x 0)) + (read-image-load-byte 1 0 byte)) + (setf (aref vector (index+ x 1)) + (read-image-load-byte 1 1 byte)) + (setf (aref vector (index+ x 2)) + (read-image-load-byte 1 2 byte)) + (setf (aref vector (index+ x 3)) + (read-image-load-byte 1 3 byte)) + (setf (aref vector (index+ x 4)) + (read-image-load-byte 1 4 byte)) + (setf (aref vector (index+ x 5)) + (read-image-load-byte 1 5 byte)) + (setf (aref vector (index+ x 6)) (read-image-load-byte 1 6 byte)) - (when (index> left-bits 2) - (setf (aref vector (index- x 3)) - (read-image-load-byte 1 5 byte)) - (when (index> left-bits 3) - (setf (aref vector (index- x 4)) - (read-image-load-byte 1 4 byte)) - (when (index> left-bits 4) - (setf (aref vector (index- x 5)) - (read-image-load-byte 1 3 byte)) - (when (index> left-bits 5) - (setf (aref vector (index- x 6)) - (read-image-load-byte 1 2 byte)) - (when (index> left-bits 6) - (setf (aref vector (index- x 7)) - (read-image-load-byte 1 1 byte)) - )))))))) - (do* ((end (index+ start middle-bytes)) - (i start (index1+ i)) - (x (array-row-major-index array y left-bits) (index+ x 8))) - ((index>= i end) - (unless (index-zerop right-bits) - (let ((byte (aref buffer-bbuf end)) - (x (array-row-major-index - array y (index+ left-bits middle-bits)))) - (declare (type card8 byte) - (type array-index x)) - (setf (aref vector (index+ x 0)) - (read-image-load-byte 1 0 byte)) - (when (index> right-bits 1) - (setf (aref vector (index+ x 1)) - (read-image-load-byte 1 1 byte)) - (when (index> right-bits 2) - (setf (aref vector (index+ x 2)) - (read-image-load-byte 1 2 byte)) - (when (index> right-bits 3) - (setf (aref vector (index+ x 3)) - (read-image-load-byte 1 3 byte)) - (when (index> right-bits 4) - (setf (aref vector (index+ x 4)) - (read-image-load-byte 1 4 byte)) - (when (index> right-bits 5) - (setf (aref vector (index+ x 5)) - (read-image-load-byte 1 5 byte)) - (when (index> right-bits 6) - (setf (aref vector (index+ x 6)) - (read-image-load-byte 1 6 byte)) - ))))))))) - (declare (type array-index end i x)) - (let ((byte (aref buffer-bbuf i))) - (declare (type card8 byte)) - (setf (aref vector (index+ x 0)) - (read-image-load-byte 1 0 byte)) - (setf (aref vector (index+ x 1)) - (read-image-load-byte 1 1 byte)) - (setf (aref vector (index+ x 2)) - (read-image-load-byte 1 2 byte)) - (setf (aref vector (index+ x 3)) - (read-image-load-byte 1 3 byte)) - (setf (aref vector (index+ x 4)) - (read-image-load-byte 1 4 byte)) - (setf (aref vector (index+ x 5)) - (read-image-load-byte 1 5 byte)) - (setf (aref vector (index+ x 6)) - (read-image-load-byte 1 6 byte)) - (setf (aref vector (index+ x 7)) - (read-image-load-byte 1 7 byte)))) - )))) + (setf (aref vector (index+ x 7)) + (read-image-load-byte 1 7 byte)))) + ))))) t) -#+(or lcl3.0 excl cmu) +#+(or lcl3.0 excl) (defun fast-read-pixarray-4 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-4 array) (type card16 x y width height) - (type array-index index padded-bytes-per-line)) - #.(declare-buffun) - (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (start (index+ index - (index* y padded-bytes-per-line) - (index-ceiling x 2)) - (index+ start padded-bytes-per-line)) - (y 0 (index1+ y)) - (left-nibbles (the array-index (mod (the fixnum (- (the fixnum x))) - 2))) - (right-nibbles (index-mod (index- width left-nibbles) 2)) - (middle-nibbles (index- width left-nibbles right-nibbles)) - (middle-bytes (index-floor middle-nibbles 2))) - ((index>= y height)) - (declare (type (simple-array pixarray-4-element-type (*)) vector) - (type array-index start y - left-nibbles right-nibbles middle-nibbles middle-bytes)) - (unless (index-zerop left-nibbles) - (setf (aref array y 0) - (read-image-load-byte - 4 4 (aref buffer-bbuf (index1- start))))) - (do* ((end (index+ start middle-bytes)) - (i start (index1+ i)) - (x (array-row-major-index array y left-nibbles) (index+ x 2))) - ((index>= i end) - (unless (index-zerop right-nibbles) - (setf (aref array y (index+ left-nibbles middle-nibbles)) - (read-image-load-byte 4 0 (aref buffer-bbuf end))))) - (declare (type array-index end i x)) - (let ((byte (aref buffer-bbuf i))) - (declare (type card8 byte)) - (setf (aref vector (index+ x 0)) - (read-image-load-byte 4 0 byte)) - (setf (aref vector (index+ x 1)) - (read-image-load-byte 4 4 byte)))) - )) - t) - -#+(or lcl3.0 excl cmu) -(defun fast-read-pixarray-8 (buffer-bbuf index array x y width height - padded-bytes-per-line) - (declare (type buffer-bytes buffer-bbuf) - (type pixarray-8 array) - (type card16 x y width height) - (type array-index index padded-bytes-per-line)) - #.(declare-buffun) - (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (start (index+ index - (index* y padded-bytes-per-line) - x) - (index+ start padded-bytes-per-line)) - (y 0 (index1+ y))) - ((index>= y height)) - (declare (type (simple-array pixarray-8-element-type (*)) vector) - (type array-index start y)) - (do* ((end (index+ start width)) - (i start (index1+ i)) - (x (array-row-major-index array y 0) (index1+ x))) - ((index>= i end)) - (declare (type array-index end i x)) - (setf (aref vector x) - (the card8 (aref buffer-bbuf i)))))) - t) - -#+(or lcl3.0 excl cmu) -(defun fast-read-pixarray-16 (buffer-bbuf index array x y width height - padded-bytes-per-line) - (declare (type buffer-bytes buffer-bbuf) - (type pixarray-16 array) - (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (start (index+ index - (index* y padded-bytes-per-line) - (index* x 2)) - (index+ start padded-bytes-per-line)) - (y 0 (index1+ y))) - ((index>= y height)) - (declare (type (simple-array pixarray-16-element-type (*)) vector) - (type array-index start y)) - (do* ((end (index+ start (index* width 2))) - (i start (index+ i 2)) - (x (array-row-major-index array y 0) (index1+ x))) - ((index>= i end)) - (declare (type array-index end i x)) - (setf (aref vector x) - (read-image-assemble-bytes - (aref buffer-bbuf (index+ i 0)) - (aref buffer-bbuf (index+ i 1))))))) + (with-underlying-simple-vector (vector pixarray-4-element-type array) + (do* ((start (index+ index + (index* y padded-bytes-per-line) + (index-ceiling x 2)) + (index+ start padded-bytes-per-line)) + (y 0 (index1+ y)) + (left-nibbles (index-mod (index- x) 2)) + (right-nibbles (index-mod (index- width left-nibbles) 2)) + (middle-nibbles (index- width left-nibbles right-nibbles)) + (middle-bytes (index-floor middle-nibbles 2))) + ((index>= y height)) + (declare (type array-index start y + left-nibbles right-nibbles middle-nibbles middle-bytes)) + (unless (index-zerop left-nibbles) + (setf (aref array y 0) + (read-image-load-byte + 4 4 (aref buffer-bbuf (index1- start))))) + (do* ((end (index+ start middle-bytes)) + (i start (index1+ i)) + (x (array-row-major-index array y left-nibbles) (index+ x 2))) + ((index>= i end) + (unless (index-zerop right-nibbles) + (setf (aref array y (index+ left-nibbles middle-nibbles)) + (read-image-load-byte 4 0 (aref buffer-bbuf end))))) + (declare (type array-index end i x)) + (let ((byte (aref buffer-bbuf i))) + (declare (type card8 byte)) + (setf (aref vector (index+ x 0)) + (read-image-load-byte 4 0 byte)) + (setf (aref vector (index+ x 1)) + (read-image-load-byte 4 4 byte)))) + ))) t) -#+Genera +#+(or Genera lcl3.0 excl) (defun fast-read-pixarray-24 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-24 array) (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) - (do* ((array array) - (start (index+ index - (index* y padded-bytes-per-line) - (index* x 3)) - (index+ start padded-bytes-per-line)) - (y 0 (index1+ y))) - ((index>= y height)) - (declare (sys:array-register-1d array) - (type array-index start y)) - (do* ((end (index+ start (index* width 3))) - (i start (index+ i 3)) - (x (array-row-major-index array y 0) (index1+ x))) - ((index>= i end)) - (declare (type array-index end i x)) - (setf (sys:%1d-aref array x) - (read-image-assemble-bytes - (aref buffer-bbuf (index+ i 0)) - (aref buffer-bbuf (index+ i 1)) - (aref buffer-bbuf (index+ i 2))))))) + (with-underlying-simple-vector (vector pixarray-24-element-type array) + (do* ((start (index+ index + (index* y padded-bytes-per-line) + (index* x 3)) + (index+ start padded-bytes-per-line)) + (y 0 (index1+ y))) + ((index>= y height)) + (declare (type array-index start y)) + (do* ((end (index+ start (index* width 3))) + (i start (index+ i 3)) + (x (array-row-major-index array y 0) (index1+ x))) + ((index>= i end)) + (declare (type array-index end i x)) + (setf (aref vector x) + (read-image-assemble-bytes + (aref buffer-bbuf (index+ i 0)) + (aref buffer-bbuf (index+ i 1)) + (aref buffer-bbuf (index+ i 2)))))))) t) -#+(or lcl3.0 excl cmu) -(defun fast-read-pixarray-24 (buffer-bbuf index array x y width height - padded-bytes-per-line) - (declare (type buffer-bytes buffer-bbuf) - (type pixarray-24 array) - (type card16 width height) - (type array-index index padded-bytes-per-line)) - #.(declare-buffun) - (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (start (index+ index - (index* y padded-bytes-per-line) - (index* x 3)) - (index+ start padded-bytes-per-line)) - (y 0 (index1+ y))) - ((index>= y height)) - (declare (type (simple-array pixarray-24-element-type (*)) vector) - (type array-index start y)) - (do* ((end (index+ start (index* width 3))) - (i start (index+ i 3)) - (x (array-row-major-index array y 0) (index1+ x))) - ((index>= i end)) - (declare (type array-index end i x)) - (setf (aref vector x) - (read-image-assemble-bytes - (aref buffer-bbuf (index+ i 0)) - (aref buffer-bbuf (index+ i 1)) - (aref buffer-bbuf (index+ i 2))))))) +#+lispm +(defun fast-read-pixarray-using-bitblt + (bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel) + (#+Genera sys:stack-let* #-Genera let* + ((dimensions (list (+ y height) + (floor (* padded-bytes-per-line 8) bits-per-pixel))) + (a (make-array + dimensions + :element-type (array-element-type pixarray) + :displaced-to bbuf + :displaced-index-offset (floor (* boffset 8) bits-per-pixel)))) + (sys:bitblt boole-1 width height a x y pixarray 0 0)) t) -#+(or lcl3.0 excl cmu) -(defun fast-read-pixarray-32 (buffer-bbuf index array x y width height - padded-bytes-per-line) - (declare (type buffer-bytes buffer-bbuf) - (type pixarray-32 array) - (type card16 width height) - (type array-index index padded-bytes-per-line)) - #.(declare-buffun) - (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (start (index+ index - (index* y padded-bytes-per-line) - (index* x 4)) - (index+ start padded-bytes-per-line)) - (y 0 (index1+ y))) - ((index>= y height)) - (declare (type (simple-array pixarray-32-element-type (*)) vector) - (type array-index start y)) - (do* ((end (index+ start (index* width 4))) - (i start (index+ i 4)) - (x (array-row-major-index array y 0) (index1+ x))) - ((index>= i end)) - (declare (type array-index end i x)) - (setf (aref vector x) - (read-image-assemble-bytes - (aref buffer-bbuf (index+ i 0)) - (aref buffer-bbuf (index+ i 1)) - (aref buffer-bbuf (index+ i 2)) - (aref buffer-bbuf (index+ i 3))))))) - t) +#+(or Genera lcl3.0 excl) +(defun fast-read-pixarray-with-swap + (bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) + (declare (type buffer-bytes bbuf) + (type array-index boffset + padded-bytes-per-line) + (type pixarray pixarray) + (type card16 x y width height) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (type (member 8 16 32) unit) + (type boolean byte-lsb-first-p bit-lsb-first-p)) + (unless (index= bits-per-pixel 24) + (let ((pixarray-padded-bits-per-line + (if (index= height 1) 0 + (index* (index- (array-row-major-index pixarray 1 0) + (array-row-major-index pixarray 0 0)) + bits-per-pixel))) + (x-bits (index* x bits-per-pixel))) + (declare (type array-index pixarray-padded-bits-per-line x-bits)) + (when (if (eq *computed-image-byte-lsb-first-p* *computed-image-bit-lsb-first-p*) + (and (index-zerop (index-mod pixarray-padded-bits-per-line 8)) + (index-zerop (index-mod x-bits 8))) + (and (index-zerop (index-mod pixarray-padded-bits-per-line *image-unit*)) + (index-zerop (index-mod x-bits *image-unit*)))) + (multiple-value-bind (image-swap-function image-swap-lsb-first-p) + (image-swap-function + bits-per-pixel + unit byte-lsb-first-p bit-lsb-first-p + *image-unit* *computed-image-byte-lsb-first-p* + *computed-image-bit-lsb-first-p*) + (declare (type symbol image-swap-function) + (type boolean image-swap-lsb-first-p)) + (with-underlying-simple-vector (dst card8 pixarray) + (funcall + (symbol-function image-swap-function) bbuf dst + (index+ boffset + (index* y padded-bytes-per-line) + (index-floor x-bits 8)) + 0 (index-ceiling (index* width bits-per-pixel) 8) + padded-bytes-per-line + (index-floor pixarray-padded-bits-per-line 8) + height image-swap-lsb-first-p))) + t)))) (defun fast-read-pixarray (bbuf boffset pixarray x y width height padded-bytes-per-line - bits-per-pixel) + bits-per-pixel + unit byte-lsb-first-p bit-lsb-first-p) (declare (type buffer-bytes bbuf) (type array-index boffset padded-bytes-per-line) (type pixarray pixarray) (type card16 x y width height) - (type (member 1 4 8 16 24 32) bits-per-pixel)) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (type (member 8 16 32) unit) + (type boolean byte-lsb-first-p bit-lsb-first-p)) (progn bbuf boffset pixarray x y width height padded-bytes-per-line - bits-per-pixel) + bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) (or - #+lispm - (let* ((padded-bits-per-line (* padded-bytes-per-line 8)) - (padded-pixels-per-line - (floor padded-bits-per-line bits-per-pixel)) - (pixarray-padded-pixels-per-line - #+Genera (sys:array-row-span pixarray) - #-Genera (array-dimension pixarray 1)) - (pixarray-padded-bits-per-line - (* pixarray-padded-pixels-per-line bits-per-pixel))) - (when (and (= (sys:array-element-size pixarray) bits-per-pixel) - (zerop (index-mod padded-bits-per-line 32)) - (zerop (index-mod pixarray-padded-bits-per-line 32))) - (#+Genera sys:stack-let* #-Genera let* - ((dimensions (list height padded-pixels-per-line)) - (a (make-array - dimensions - :element-type (array-element-type pixarray) - :displaced-to bbuf - :displaced-index-offset (floor (* boffset 8) bits-per-pixel)))) - (sys:bitblt boole-1 width height a x y pixarray 0 0)) - t)) - #+Genera - (when (= bits-per-pixel 24) - (fast-read-pixarray-24 - bbuf boffset pixarray x y width height padded-bytes-per-line)) - #+(or lcl3.0 excl cmu) - (funcall - (ecase bits-per-pixel - (1 #'fast-read-pixarray-1) (4 #'fast-read-pixarray-4) - (8 #'fast-read-pixarray-8) (16 #'fast-read-pixarray-16) - (24 #'fast-read-pixarray-24) (32 #'fast-read-pixarray-32)) - bbuf boffset pixarray x y width height padded-bytes-per-line) - )) + #+(or Genera lcl3.0 excl) + (fast-read-pixarray-with-swap + bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) + (let ((function + (or #+lispm + (and (= (sys:array-element-size pixarray) bits-per-pixel) + (zerop (index-mod padded-bytes-per-line 4)) + (zerop (index-mod + (* #+Genera (sys:array-row-span pixarray) + #-Genera (array-dimension pixarray 1) + bits-per-pixel) + 32)) + #'fast-read-pixarray-using-bitblt) + #+(or lcl3.0 excl) + (and (index= bits-per-pixel 1) + #'fast-read-pixarray-1) + #+(or lcl3.0 excl) + (and (index= bits-per-pixel 4) + #'fast-read-pixarray-4) + #+(or Genera lcl3.0 excl) + (and (index= bits-per-pixel 24) + #'fast-read-pixarray-24)))) + (when function + (read-pixarray-internal + bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel function + unit byte-lsb-first-p bit-lsb-first-p + *image-unit* *image-byte-lsb-first-p* *image-bit-lsb-first-p*))))) ;;; FAST-WRITE-PIXARRAY - copy part of a pixarray into an array of CARD8s -#+(or lcl3.0 excl cmu) +#+(or lcl3.0 excl) (defun fast-write-pixarray-1 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-1 array) (type card16 x y width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (h 0 (index1+ h)) - (y y (index1+ y)) - (right-bits (index-mod width 8)) - (middle-bits (index- width right-bits)) - (middle-bytes (index-ceiling middle-bits 8)) - (start index (index+ start padded-bytes-per-line))) - ((index>= h height)) - (declare (type (simple-array pixarray-1-element-type (*)) vector) - (type array-index h y right-bits middle-bits - middle-bytes start)) - (do* ((end (index+ start middle-bytes)) - (i start (index1+ i)) - (start-x x) - (x (array-row-major-index array y start-x) (index+ x 8))) - ((index>= i end) - (unless (index-zerop right-bits) - (let ((x (array-row-major-index - array y (index+ start-x middle-bits)))) - (declare (type array-index x)) - (setf (aref buffer-bbuf end) - (write-image-assemble-bytes - (aref vector (index+ x 0)) - (if (index> right-bits 1) - (aref vector (index+ x 1)) - 0) - (if (index> right-bits 2) - (aref vector (index+ x 2)) - 0) - (if (index> right-bits 3) - (aref vector (index+ x 3)) - 0) - (if (index> right-bits 4) - (aref vector (index+ x 4)) - 0) - (if (index> right-bits 5) - (aref vector (index+ x 5)) - 0) - (if (index> right-bits 6) - (aref vector (index+ x 6)) - 0) - 0))))) - (declare (type array-index end i start-x x)) - (setf (aref buffer-bbuf i) - (write-image-assemble-bytes - (aref vector (index+ x 0)) - (aref vector (index+ x 1)) - (aref vector (index+ x 2)) - (aref vector (index+ x 3)) - (aref vector (index+ x 4)) - (aref vector (index+ x 5)) - (aref vector (index+ x 6)) - (aref vector (index+ x 7))))))) + (with-underlying-simple-vector (vector pixarray-1-element-type array) + (do* ((h 0 (index1+ h)) + (y y (index1+ y)) + (right-bits (index-mod width 8)) + (middle-bits (index- width right-bits)) + (middle-bytes (index-ceiling middle-bits 8)) + (start index (index+ start padded-bytes-per-line))) + ((index>= h height)) + (declare (type array-index h y right-bits middle-bits + middle-bytes start)) + (do* ((end (index+ start middle-bytes)) + (i start (index1+ i)) + (start-x x) + (x (array-row-major-index array y start-x) (index+ x 8))) + ((index>= i end) + (unless (index-zerop right-bits) + (let ((x (array-row-major-index + array y (index+ start-x middle-bits)))) + (declare (type array-index x)) + (setf (aref buffer-bbuf end) + (write-image-assemble-bytes + (aref vector (index+ x 0)) + (if (index> right-bits 1) + (aref vector (index+ x 1)) + 0) + (if (index> right-bits 2) + (aref vector (index+ x 2)) + 0) + (if (index> right-bits 3) + (aref vector (index+ x 3)) + 0) + (if (index> right-bits 4) + (aref vector (index+ x 4)) + 0) + (if (index> right-bits 5) + (aref vector (index+ x 5)) + 0) + (if (index> right-bits 6) + (aref vector (index+ x 6)) + 0) + 0))))) + (declare (type array-index end i start-x x)) + (setf (aref buffer-bbuf i) + (write-image-assemble-bytes + (aref vector (index+ x 0)) + (aref vector (index+ x 1)) + (aref vector (index+ x 2)) + (aref vector (index+ x 3)) + (aref vector (index+ x 4)) + (aref vector (index+ x 5)) + (aref vector (index+ x 6)) + (aref vector (index+ x 7)))))))) t) -#+(or lcl3.0 excl cmu) +#+(or lcl3.0 excl) (defun fast-write-pixarray-4 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-4 array) (type int16 x y) (type card16 width height) - (type array-index index padded-bytes-per-line)) - #.(declare-buffun) - (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (h 0 (index1+ h)) - (y y (index1+ y)) - (right-nibbles (index-mod width 2)) - (middle-nibbles (index- width right-nibbles)) - (middle-bytes (index-ceiling middle-nibbles 2)) - (start index (index+ start padded-bytes-per-line))) - ((index>= h height)) - (declare (type (simple-array pixarray-4-element-type (*)) vector) - (type array-index h y right-nibbles middle-nibbles - middle-bytes start)) - (do* ((end (index+ start middle-bytes)) - (i start (index1+ i)) - (start-x x) - (x (array-row-major-index array y start-x) (index+ x 2))) - ((index>= i end) - (unless (index-zerop right-nibbles) - (setf (aref buffer-bbuf end) - (write-image-assemble-bytes - (aref array y (index+ start-x middle-nibbles)) - 0)))) - (declare (type array-index end i start-x x)) - (setf (aref buffer-bbuf i) - (write-image-assemble-bytes - (aref vector (index+ x 0)) - (aref vector (index+ x 1))))))) - t) - -#+(or lcl3.0 excl cmu) -(defun fast-write-pixarray-8 (buffer-bbuf index array x y width height - padded-bytes-per-line) - (declare (type buffer-bytes buffer-bbuf) - (type pixarray-8 array) - (type int16 x y) - (type card16 width height) - (type array-index index padded-bytes-per-line)) - #.(declare-buffun) - (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (h 0 (index1+ h)) - (y y (index1+ y)) - (start index (index+ start padded-bytes-per-line))) - ((index>= h height)) - (declare (type (simple-array pixarray-8-element-type (*)) vector) - (type array-index h y start)) - (do* ((end (index+ start width)) - (i start (index1+ i)) - (x (array-row-major-index array y x) (index1+ x))) - ((index>= i end)) - (declare (type array-index end i x)) - (setf (aref buffer-bbuf i) (the card8 (aref vector x)))))) - t) - -#+(or lcl3.0 excl cmu) -(defun fast-write-pixarray-16 (buffer-bbuf index array x y width height - padded-bytes-per-line) - (declare (type buffer-bytes buffer-bbuf) - (type pixarray-16 array) - (type int16 x y) - (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (h 0 (index1+ h)) - (y y (index1+ y)) - (start index (index+ start padded-bytes-per-line))) - ((index>= h height)) - (declare (type (simple-array pixarray-16-element-type (*)) vector) - (type array-index h y start)) - (do* ((end (index+ start (index* width 2))) - (i start (index+ i 2)) - (x (array-row-major-index array y x) (index1+ x))) - ((index>= i end)) - (declare (type array-index end i x)) - (let ((pixel (aref vector x))) - (declare (type pixarray-16-element-type pixel)) - (setf (aref buffer-bbuf (index+ i 0)) - (write-image-load-byte 0 pixel 16)) - (setf (aref buffer-bbuf (index+ i 1)) - (write-image-load-byte 8 pixel 16)))))) + (with-underlying-simple-vector (vector pixarray-4-element-type array) + (do* ((h 0 (index1+ h)) + (y y (index1+ y)) + (right-nibbles (index-mod width 2)) + (middle-nibbles (index- width right-nibbles)) + (middle-bytes (index-ceiling middle-nibbles 2)) + (start index (index+ start padded-bytes-per-line))) + ((index>= h height)) + (declare (type array-index h y right-nibbles middle-nibbles + middle-bytes start)) + (do* ((end (index+ start middle-bytes)) + (i start (index1+ i)) + (start-x x) + (x (array-row-major-index array y start-x) (index+ x 2))) + ((index>= i end) + (unless (index-zerop right-nibbles) + (setf (aref buffer-bbuf end) + (write-image-assemble-bytes + (aref array y (index+ start-x middle-nibbles)) + 0)))) + (declare (type array-index end i start-x x)) + (setf (aref buffer-bbuf i) + (write-image-assemble-bytes + (aref vector (index+ x 0)) + (aref vector (index+ x 1)))))))) t) -#+Genera +#+(or Genera lcl3.0 excl) (defun fast-write-pixarray-24 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-24 array) (type int16 x y) (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) - (do* ((array array) - (h 0 (index1+ h)) - (y y (index1+ y)) - (start index (index+ start padded-bytes-per-line))) - ((index>= h height)) - (declare (sys:array-register-1d array) - (type array-index y start)) - (do* ((end (index+ start (index* width 3))) - (i start (index+ i 3)) - (x (array-row-major-index array y x) (index1+ x))) - ((index>= i end)) - (declare (type array-index end i x)) - (let ((pixel (sys:%1d-aref array x))) - (declare (type pixarray-24-element-type pixel)) - (setf (aref buffer-bbuf (index+ i 0)) - (write-image-load-byte 0 pixel 24)) - (setf (aref buffer-bbuf (index+ i 1)) - (write-image-load-byte 8 pixel 24)) - (setf (aref buffer-bbuf (index+ i 2)) - (write-image-load-byte 16 pixel 24)))))) + (with-underlying-simple-vector (vector pixarray-24-element-type array) + (do* ((h 0 (index1+ h)) + (y y (index1+ y)) + (start index (index+ start padded-bytes-per-line))) + ((index>= h height)) + (declare (type array-index y start)) + (do* ((end (index+ start (index* width 3))) + (i start (index+ i 3)) + (x (array-row-major-index array y x) (index1+ x))) + ((index>= i end)) + (declare (type array-index end i x)) + (let ((pixel (aref vector x))) + (declare (type pixarray-24-element-type pixel)) + (setf (aref buffer-bbuf (index+ i 0)) + (write-image-load-byte 0 pixel 24)) + (setf (aref buffer-bbuf (index+ i 1)) + (write-image-load-byte 8 pixel 24)) + (setf (aref buffer-bbuf (index+ i 2)) + (write-image-load-byte 16 pixel 24))))))) t) -#+(or lcl3.0 excl cmu) -(defun fast-write-pixarray-24 (buffer-bbuf index array x y width height - padded-bytes-per-line) - (declare (type buffer-bytes buffer-bbuf) - (type pixarray-24 array) - (type int16 x y) - (type card16 width height) - (type array-index index padded-bytes-per-line)) - #.(declare-buffun) - (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (h 0 (index1+ h)) - (y y (index1+ y)) - (start index (index+ start padded-bytes-per-line))) - ((index>= h height)) - (declare (type (simple-array pixarray-24-element-type (*)) vector) - (type array-index y start)) - (do* ((end (index+ start (index* width 3))) - (i start (index+ i 3)) - (x (array-row-major-index array y x) (index1+ x))) - ((index>= i end)) - (declare (type array-index end i x)) - (let ((pixel (aref vector x))) - (declare (type pixarray-24-element-type pixel)) - (setf (aref buffer-bbuf (index+ i 0)) - (write-image-load-byte 0 pixel 24)) - (setf (aref buffer-bbuf (index+ i 1)) - (write-image-load-byte 8 pixel 24)) - (setf (aref buffer-bbuf (index+ i 2)) - (write-image-load-byte 16 pixel 24)))))) +#+lispm +(defun fast-write-pixarray-using-bitblt + (bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel) + (#+Genera sys:stack-let* #-Genera let* + ((dimensions (list (+ y height) + (floor (* padded-bytes-per-line 8) bits-per-pixel))) + (a (make-array + dimensions + :element-type (array-element-type pixarray) + :displaced-to bbuf + :displaced-index-offset (floor (* boffset 8) bits-per-pixel)))) + (sys:bitblt boole-1 width height pixarray x y a 0 0)) t) -#+(or lcl3.0 excl cmu) -(defun fast-write-pixarray-32 (buffer-bbuf index array x y width height - padded-bytes-per-line) - (declare (type buffer-bytes buffer-bbuf) - (type pixarray-32 array) - (type int16 x y) - (type card16 width height) - (type array-index index padded-bytes-per-line)) - #.(declare-buffun) - (with-vector (buffer-bbuf buffer-bytes) - (do* ((vector (underlying-simple-vector array)) - (h 0 (index1+ h)) - (y y (index1+ y)) - (start index (index+ start padded-bytes-per-line))) - ((index>= h height)) - (declare (type (simple-array pixarray-32-element-type (*)) vector) - (type array-index h y start)) - (do* ((end (index+ start (index* width 4))) - (i start (index+ i 4)) - (x (array-row-major-index array y x) (index1+ x))) - ((index>= i end)) - (declare (type array-index end i x)) - (let ((pixel (aref vector x))) - (declare (type pixarray-32-element-type pixel)) - (setf (aref buffer-bbuf (index+ i 0)) - (write-image-load-byte 0 pixel 32)) - (setf (aref buffer-bbuf (index+ i 1)) - (write-image-load-byte 8 pixel 32)) - (setf (aref buffer-bbuf (index+ i 2)) - (write-image-load-byte 16 pixel 32)) - (setf (aref buffer-bbuf (index+ i 2)) - (write-image-load-byte 24 pixel 32)))))) - t) +#+(or Genera lcl3.0 excl) +(defun fast-write-pixarray-with-swap + (bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) + (declare (type buffer-bytes bbuf) + (type pixarray pixarray) + (type card16 x y width height) + (type array-index boffset padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (type (member 8 16 32) unit) + (type boolean byte-lsb-first-p bit-lsb-first-p)) + (unless (index= bits-per-pixel 24) + (let ((pixarray-padded-bits-per-line + (if (index= height 1) 0 + (index* (index- (array-row-major-index pixarray 1 0) + (array-row-major-index pixarray 0 0)) + bits-per-pixel))) + (pixarray-start-bit-offset + (index* (array-row-major-index pixarray y x) + bits-per-pixel))) + (declare (type array-index pixarray-padded-bits-per-line + pixarray-start-bit-offset)) + (when (if (eq *computed-image-byte-lsb-first-p* *computed-image-bit-lsb-first-p*) + (and (index-zerop (index-mod pixarray-padded-bits-per-line 8)) + (index-zerop (index-mod pixarray-start-bit-offset 8))) + (and (index-zerop (index-mod pixarray-padded-bits-per-line *image-unit*)) + (index-zerop (index-mod pixarray-start-bit-offset *image-unit*)))) + (multiple-value-bind (image-swap-function image-swap-lsb-first-p) + (image-swap-function + bits-per-pixel + *image-unit* *computed-image-byte-lsb-first-p* + *computed-image-bit-lsb-first-p* + unit byte-lsb-first-p bit-lsb-first-p) + (declare (type symbol image-swap-function) + (type boolean image-swap-lsb-first-p)) + (with-underlying-simple-vector (src card8 pixarray) + (funcall + (symbol-function image-swap-function) + src bbuf (index-floor pixarray-start-bit-offset 8) boffset + (index-ceiling (index* width bits-per-pixel) 8) + (index-floor pixarray-padded-bits-per-line 8) + padded-bytes-per-line height image-swap-lsb-first-p)) + t))))) (defun fast-write-pixarray (bbuf boffset pixarray x y width height - padded-bytes-per-line bits-per-pixel) + padded-bytes-per-line bits-per-pixel + unit byte-lsb-first-p bit-lsb-first-p) (declare (type buffer-bytes bbuf) (type pixarray pixarray) (type card16 x y width height) (type array-index boffset padded-bytes-per-line) - (type (member 1 4 8 16 24 32) bits-per-pixel)) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (type (member 8 16 32) unit) + (type boolean byte-lsb-first-p bit-lsb-first-p)) (progn bbuf boffset pixarray x y width height padded-bytes-per-line - bits-per-pixel) + bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) (or - #+lispm - (let* ((padded-bits-per-line (* padded-bytes-per-line 8)) - (padded-pixels-per-line - (floor padded-bits-per-line bits-per-pixel)) - (pixarray-padded-pixels-per-line - #+Genera (sys:array-row-span pixarray) - #-Genera (array-dimension pixarray 1)) - (pixarray-padded-bits-per-line - (* pixarray-padded-pixels-per-line bits-per-pixel))) - (when (and (= (sys:array-element-size pixarray) bits-per-pixel) - (zerop (index-mod padded-bits-per-line 32)) - (zerop (index-mod pixarray-padded-bits-per-line 32))) - (#+Genera sys:stack-let* #-Genera let* - ((dimensions (list height padded-pixels-per-line)) - (a (make-array - dimensions - :element-type (array-element-type pixarray) - :displaced-to bbuf - :displaced-index-offset (floor (* boffset 8) bits-per-pixel)))) - (sys:bitblt boole-1 width height pixarray x y a 0 0)) - t)) - #+Genera - (when (= bits-per-pixel 24) - (fast-write-pixarray-24 - bbuf boffset pixarray x y width height padded-bytes-per-line)) - #+(or lcl3.0 excl cmu) - (funcall - (ecase bits-per-pixel - (1 #'fast-write-pixarray-1) (4 #'fast-write-pixarray-4) - (8 #'fast-write-pixarray-8) (16 #'fast-write-pixarray-16) - (24 #'fast-write-pixarray-24) (32 #'fast-write-pixarray-32)) - bbuf boffset pixarray x y width height padded-bytes-per-line) - )) + #+(or Genera lcl3.0 excl) + (fast-write-pixarray-with-swap + bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) + (let ((function + (or #+lispm + (and (= (sys:array-element-size pixarray) bits-per-pixel) + (zerop (index-mod padded-bytes-per-line 4)) + (zerop (index-mod + (* #+Genera (sys:array-row-span pixarray) + #-Genera (array-dimension pixarray 1) + bits-per-pixel) + 32)) + #'fast-write-pixarray-using-bitblt) + #+(or lcl3.0 excl) + (and (index= bits-per-pixel 1) + #'fast-write-pixarray-1) + #+(or lcl3.0 excl) + (and (index= bits-per-pixel 4) + #'fast-write-pixarray-4) + #+(or Genera lcl3.0 excl) + (and (index= bits-per-pixel 24) + #'fast-write-pixarray-24)))) + (when function + (write-pixarray-internal + bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel function + *image-unit* *image-byte-lsb-first-p* *image-bit-lsb-first-p* + unit byte-lsb-first-p bit-lsb-first-p))))) ;;; FAST-COPY-PIXARRAY - copy part of a pixarray into another @@ -3138,7 +3245,7 @@ (declare (type pixarray pixarray copy) (type card16 x y width height) (type (member 1 4 8 16 24 32) bits-per-pixel)) - (progn pixarray copy x y width height bits-per-pixel) + (progn pixarray copy x y width height bits-per-pixel nil) (or #+lispm (let* ((pixarray-padded-pixels-per-line @@ -3156,47 +3263,62 @@ (zerop (index-mod copy-padded-bits-per-line 32))) (sys:bitblt boole-1 width height pixarray x y copy 0 0) t)) - #+Genera - (let ((src pixarray) - (dest copy)) - (declare (sys:array-register-1d src dest)) - (do* ((dst-y 0 (index1+ dst-y)) - (src-y y (index1+ src-y))) - ((index>= dst-y height)) - (declare (type card16 dst-y src-y)) - (do* ((dst-idx (array-row-major-index copy dst-y 0) - (index1+ dst-idx)) - (dst-end (index+ dst-idx width)) - (src-idx (array-row-major-index pixarray src-y x) - (index1+ src-idx))) - ((index>= dst-idx dst-end)) - (declare (type array-index dst-idx src-idx dst-end)) - (setf (sys:%1d-aref dest dst-idx) - (sys:%1d-aref src src-idx)))) - t) - #+(or lcl3.0 excl cmu) + #+(or lcl3.0 excl) + (unless (index= bits-per-pixel 24) + (let ((pixarray-padded-bits-per-line + (if (index= height 1) 0 + (index* (index- (array-row-major-index pixarray 1 0) + (array-row-major-index pixarray 0 0)) + bits-per-pixel))) + (copy-padded-bits-per-line + (if (index= height 1) 0 + (index* (index- (array-row-major-index copy 1 0) + (array-row-major-index copy 0 0)) + bits-per-pixel))) + (pixarray-start-bit-offset + (index* (array-row-major-index pixarray y x) + bits-per-pixel))) + (declare (type array-index pixarray-padded-bits-per-line + copy-padded-bits-per-line pixarray-start-bit-offset)) + (when (if (eq *computed-image-byte-lsb-first-p* *computed-image-bit-lsb-first-p*) + (and (index-zerop (index-mod pixarray-padded-bits-per-line 8)) + (index-zerop (index-mod copy-padded-bits-per-line 8)) + (index-zerop (index-mod pixarray-start-bit-offset 8))) + (and (index-zerop (index-mod pixarray-padded-bits-per-line *image-unit*)) + (index-zerop (index-mod copy-padded-bits-per-line *image-unit*)) + (index-zerop (index-mod pixarray-start-bit-offset *image-unit*)))) + (with-underlying-simple-vector (src card8 pixarray) + (with-underlying-simple-vector (dst card8 copy) + (image-noswap + src dst + (index-floor pixarray-start-bit-offset 8) 0 + (index-ceiling (index* width bits-per-pixel) 8) + (index-floor pixarray-padded-bits-per-line 8) + (index-floor copy-padded-bits-per-line 8) + height nil))) + t))) + #+(or lcl3.0 excl) (macrolet ((copy (type element-type) - `(let* ((pixarray pixarray) - (copy copy) - (src (underlying-simple-vector pixarray)) - (dst (underlying-simple-vector copy))) - (declare (type ,type pixarray copy) - (type (simple-array ,element-type (*)) src dst)) + `(let ((pixarray pixarray) + (copy copy)) + (declare (type ,type pixarray copy)) #.(declare-buffun) - (do* ((dst-y 0 (index1+ dst-y)) - (src-y y (index1+ src-y))) - ((index>= dst-y height)) - (declare (type card16 dst-y src-y)) - (do* ((dst-idx (array-row-major-index copy dst-y 0) - (index1+ dst-idx)) - (dst-end (index+ dst-idx width)) - (src-idx (array-row-major-index pixarray src-y x) - (index1+ src-idx))) - ((index>= dst-idx dst-end)) - (declare (type array-index dst-idx src-idx dst-end)) - (setf (aref dst dst-idx) - (the ,element-type (aref src src-idx)))))))) + (with-underlying-simple-vector (src ,element-type pixarray) + (with-underlying-simple-vector (dst ,element-type copy) + (do* ((dst-y 0 (index1+ dst-y)) + (src-y y (index1+ src-y))) + ((index>= dst-y height)) + (declare (type card16 dst-y src-y)) + (do* ((dst-idx (array-row-major-index copy dst-y 0) + (index1+ dst-idx)) + (dst-end (index+ dst-idx width)) + (src-idx (array-row-major-index pixarray src-y x) + (index1+ src-idx))) + ((index>= dst-idx dst-end)) + (declare (type array-index dst-idx src-idx dst-end)) + (setf (aref dst dst-idx) + (the ,element-type (aref src src-idx)))))))))) (ecase bits-per-pixel (1 (copy pixarray-1 pixarray-1-element-type)) (4 (copy pixarray-4 pixarray-4-element-type)) diff --git a/clx/display.lisp b/clx/display.lisp index 214b40ea2..fd6ee060c 100644 --- a/clx/display.lisp +++ b/clx/display.lisp @@ -20,22 +20,6 @@ (in-package :xlib) -(export '( - with-display - with-event-queue - open-display - display-force-output - close-display - display-protocol-version - display-vendor - display-roots - display-motion-buffer-size - display-max-request-length - display-error-handler - display-after-function - display-invoke-after-function - display-finish-output)) - ;; ;; Resource id management ;; @@ -61,12 +45,11 @@ (defmacro allocate-resource-id (display object type) ;; Allocate a resource-id for OBJECT in DISPLAY - `(the resource-id - ,(if (member (eval type) *clx-cached-types*) - `(let ((id (funcall (display-xid ,display) ,display))) - (save-id ,display id ,object) - id) - `(funcall (display-xid ,display) ,display)))) + (if (member (eval type) *clx-cached-types*) + `(let ((id (funcall (display-xid ,display) ,display))) + (save-id ,display id ,object) + id) + `(funcall (display-xid ,display) ,display))) (defmacro deallocate-resource-id (display id type) ;; Deallocate a resource-id for OBJECT in DISPLAY @@ -142,9 +125,7 @@ (declare (type xatom atom) (type display display)) (declare (values (or null resource-id))) - (gethash (if (keywordp atom) - atom - (kintern atom)) + (gethash (if (or (null atom) (keywordp atom)) atom (kintern atom)) (display-atom-cache display))) (defun set-atom-id (atom display id) @@ -153,8 +134,7 @@ (type display display) (type resource-id id)) (declare (values resource-id)) - (let ((atom (if (keywordp atom) atom (kintern atom)))) - (declare (type keyword atom)) + (let ((atom (if (or (null atom) (keywordp atom)) atom (kintern atom)))) (setf (gethash id (display-atom-id-map display)) atom) (setf (gethash atom (display-atom-cache display)) id) id)) @@ -162,9 +142,7 @@ (defsetf atom-id set-atom-id) (defun initialize-predefined-atoms (display) - (do ((i 1 (1+ i)) - (end (length *predefined-atoms*))) - ((>= i end)) + (dotimes (i (length *predefined-atoms*)) (declare (type resource-id i)) (setf (atom-id (svref *predefined-atoms* i) display) i))) @@ -214,7 +192,7 @@ ,@body))) ,(if (and (null inline) (macroexpand '(use-closures) env)) `(flet ((.with-event-queue-body. () ,@body)) - #+ansi-common-lisp + #+clx-ansi-common-lisp (declare (dynamic-extent #'.with-event-queue-body.)) (with-event-queue-function ,display ,timeout #'.with-event-queue-body.)) @@ -230,7 +208,10 @@ (declare (type display display) (type (or null number) timeout) (type function function) - (downward-funarg function)) + #+clx-ansi-common-lisp + (dynamic-extent function) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg function)) (with-event-queue (display :timeout timeout :inline t) (funcall function))) @@ -258,7 +239,8 @@ ;; PROTOCOL is the network protocol (something like :TCP :DNA or :CHAOS). See OPEN-X-STREAM. (let* ((stream (open-x-stream host display protocol)) (disp (apply #'make-buffer - #x2000 'make-display-internal + *output-buffer-size* + 'make-display-internal :host host :display display :output-stream stream @@ -358,6 +340,7 @@ (string-get vendor-length 0 :reply-buffer reply-buffer)) ;; Initialize the pixmap formats (dotimes (i num-formats) ;; loop gathering pixmap formats + (declare (ignorable i)) (buffer-input display buffer-bbuf 0 8) (push (make-pixmap-format :depth (card8-get 0) :bits-per-pixel (card8-get 1) @@ -368,12 +351,14 @@ (nreverse (display-pixmap-formats display))) ;; Initialize the screens (dotimes (i num-roots) + (declare (ignorable i)) (buffer-input display buffer-bbuf 0 40) - (let* ((root (make-window :id (card32-get 0) :display display)) + (let* ((root-id (card32-get 0)) + (root (make-window :id root-id :display display)) (root-visual (card32-get 32)) + (default-colormap-id (card32-get 4)) (default-colormap - (make-colormap :id (card32-get 4) - :display display)) + (make-colormap :id default-colormap-id :display display)) (screen (make-screen :root root @@ -393,14 +378,17 @@ (num-depths (card8-get 39)) (depths nil)) ;; Save root window for event reporting - (save-id display (window-id root) root) + (save-id display root-id root) + (save-id display default-colormap-id default-colormap) ;; Create the depth AList for a screen, (depth . visual-infos) (dotimes (j num-depths) + (declare (ignorable j)) (buffer-input display buffer-bbuf 0 8) (let ((depth (card8-get 0)) (num-visuals (card16-get 2)) (visuals nil)) ;; 4 bytes unused (dotimes (k num-visuals) + (declare (ignorable k)) (buffer-input display buffer-bbuf 0 24) (let* ((visual (card32-get 0)) (visual-info (make-visual-info diff --git a/clx/doc.lisp b/clx/doc.lisp index eb38a9363..a1bf83619 100644 --- a/clx/doc.lisp +++ b/clx/doc.lisp @@ -183,9 +183,6 @@ (deftype array-index () `(integer 0 ,array-dimension-limit)) -(deftype real (&optional (min '*) (max '*)) - `(or (real ,min ,max) (rational ,min ,max))) - ;; An association list. (deftype alist (key-type-and-name datum-type-and-name) 'list) @@ -1960,7 +1957,7 @@ (boolean same-screen-p) (int16 x y root-x root-y) (card16 state) - (card32 time) + ((or null card32) time) ;; for key-press and key-release, code is the keycode ;; for button-press and button-release, code is the button number (card8 code)) @@ -1972,7 +1969,7 @@ (boolean same-screen-p) (int16 x y root-x root-y) (card16 state) - (card32 time) + ((or null card32) time) (boolean hint-p)) (declare-event (:enter-notify :leave-notify) @@ -1982,7 +1979,7 @@ (boolean same-screen-p) (int16 x y root-x root-y) (card16 state) - (card32 time) + ((or null card32) time) ((member :normal :grab :ungrab) mode) ((member :ancestor :virtual :inferior :nonlinear :nonlinear-virtual) kind) (boolean focus-p)) @@ -2094,27 +2091,27 @@ (window (window event-window)) (keyword atom) ((member :new-value :deleted) state) - (card32 time)) + ((or null card32) time)) (declare-event :selection-clear (card16 sequence) (window (window event-window)) (keyword selection) - (card32 time)) + ((or null card32) time)) (declare-event :selection-request (card16 sequence) (window (window event-window) requestor) (keyword selection target) ((or null keyword) property) - (card32 time)) + ((or null card32) time)) (declare-event :selection-notify (card16 sequence) (window (window event-window)) (keyword selection target) ((or null keyword) property) - (card32 time)) + ((or null card32) time)) (declare-event :colormap-notify (card16 sequence) @@ -2176,11 +2173,10 @@ (values (list string)))) (defsetf wm-command (window) (command) - ;; Uses PRIN1 to a string-stream with the following bindings: - ;; (*print-length* nil) (*print-level* nil) (*print-radix* nil) - ;; (*print-base* 10.) (*print-array* t) (*package* (find-package 'lisp)) - ;; each element of command is seperated with NULL characters. - ;; This enables (mapcar #'read-from-string (wm-command window)) + ;; Uses PRIN1 inside the ANSI common lisp form WITH-STANDARD-IO-SYNTAX (or + ;; equivalent), with elements of command separated by NULL characters. This + ;; enables + ;; (with-standard-io-syntax (mapcar #'read-from-string (wm-command window))) ;; to recover a lisp command. (declare (type window window) (type (list stringable) command))) @@ -2276,8 +2272,8 @@ name icon-name resource-name resource-class command hints normal-hints ;; the following are used for wm-normal-hints - user-specified-position-p - user-specified-size-p + user-specified-position-p user-specified-size-p + program-specified-position-p program-specified-size-p min-width min-height max-width max-height width-inc height-inc min-aspect max-aspect base-width base-height win-gravity @@ -2290,7 +2286,8 @@ (type (or null list) command) (type (or null wm-hints) hints) (type (or null wm-size-hints) normal-hints) - (type (or null boolean) user-specified-position-p user-specified-size-p) + (type boolean user-specified-position-p user-specified-size-p) + (type boolean program-specified-position-p program-specified-size-p) (type (or null card16) min-width min-height max-width max-height width-inc height-inc base-width base-height win-gravity) (type (or null number) min-aspect max-aspect) (type (or null (member :off :on)) input) @@ -2397,7 +2394,7 @@ ;; when mask and modifiers aren't lists of keysyms] ;; The default is #'default-keysym-translate ;; - (declare (type (or string-char t) object) + (declare (type (or base-char t) object) (type keysym keysym) (type (or null mask16 list) ;; (list (or keysym state-mask-key)) modifiers) @@ -2415,7 +2412,7 @@ (defun undefine-keysym (object keysym &key display modifiers &allow-other-keys) ;; Undefine the keysym-translation translating KEYSYM to OBJECT with MODIFIERS. ;; If DISPLAY is non-nil, undefine the translation for DISPLAY if it exists. - (declare (type (or string-char t) object) + (declare (type (or base-char t) object) (type keysym keysym) (type (or null mask16 list) ;; (list (or keysym state-mask-key)) modifiers) @@ -2424,7 +2421,7 @@ (defun default-keysym-translate (display state object) ;; If object is a character, char-bits are set from state. ;; If object is a list, it is an alist with entries: - ;; (string-char [modifiers] [mask-modifiers) + ;; (base-char [modifiers] [mask-modifiers) ;; When MODIFIERS are specified, this character translation ;; will only take effect when the specified modifiers are pressed. ;; MASK-MODIFIERS can be used to specify a set of modifiers to ignore. diff --git a/clx/exclMakefile b/clx/exclMakefile index 567023432..bd0c93671 100644 --- a/clx/exclMakefile +++ b/clx/exclMakefile @@ -1,6 +1,6 @@ # # Makefile for CLX -# (X11 R4 release, Franz Allegro Common Lisp version) +# (X11 R4.4 release, Franz Allegro Common Lisp version) # # ************************************************************************* @@ -37,69 +37,105 @@ SAFETY = 0 C_SRC = excldep.c socket.c C_OBJS = excldep.o socket.o -L_OBJS = excldep.fasl defsystem.fasl depdefs.fasl clx.fasl dependent.fasl \ - exclcmac.fasl macros.fasl bufmac.fasl buffer.fasl display.fasl \ - gcontext.fasl requests.fasl input.fasl fonts.fasl graphics.fasl \ - text.fasl attributes.fasl translate.fasl keysyms.fasl manager.fasl \ - image.fasl resource.fasl +L_OBJS = defsystem.fasl package.fasl excldep.fasl depdefs.fasl clx.fasl \ + dependent.fasl exclcmac.fasl macros.fasl bufmac.fasl buffer.fasl \ + display.fasl gcontext.fasl requests.fasl input.fasl fonts.fasl \ + graphics.fasl text.fasl attributes.fasl translate.fasl keysyms.fasl \ + manager.fasl image.fasl resource.fasl -L_NOMACROS_OBJS = excldep.fasl depdefs.fasl clx.fasl dependent.fasl \ - buffer.fasl display.fasl gcontext.fasl \ +L_NOMACROS_OBJS = package.fasl excldep.fasl depdefs.fasl clx.fasl \ + dependent.fasl buffer.fasl display.fasl gcontext.fasl \ requests.fasl input.fasl fonts.fasl graphics.fasl text.fasl \ attributes.fasl translate.fasl keysyms.fasl manager.fasl image.fasl \ resource.fasl -L_SRC = defsystem.cl depdefs.cl clx.cl dependent.cl exclcmac.cl \ - macros.cl bufmac.cl buffer.cl display.cl gcontext.cl \ - requests.cl input.cl fonts.cl graphics.cl text.cl \ - attributes.cl translate.cl keysyms.cl manager.cl image.cl \ - resource.cl +L_SRC = defsystem.cl package.cl excldep.cl depdefs.cl clx.cl \ + dependent.cl exclcmac.cl macros.cl bufmac.cl buffer.cl \ + display.cl gcontext.cl requests.cl input.cl fonts.cl \ + graphics.cl text.cl attributes.cl translate.cl keysyms.cl \ + manager.cl image.cl resource.cl +# default and aliases +all: no-clos +# all: partial-clos +compile-CLX-for-CLUE: compile-partial-clos-CLX +clue: partial-clos -all: $(C_OBJS) compile-CLX cat +# +# Three build rules are provided: no-clos, partial-clos, and full-clos. +# The first is no-clos, which results in a CLX whose datastructures are +# all defstructs. partial-clos results in xlib:window, xlib:pixmap, and +# xlib:drawable being CLOS instances, all others defstructs. full-clos +# makes all CLX complex datatypes into CLOS instances. +# +# (note that the :clos feature implies native CLOS *not* PCL). +# -clos: $(C_OBJS) compile-closified-CLX cat +no-clos: $(C_OBJS) compile-no-clos-CLX cat -CLX: $(C_OBJS) compile-CLX load-CLX +# +# This rule is used to compile CLX to be used with XCW version 2, or CLUE. +# +partial-clos: $(C_OBJS) compile-partial-clos-CLX cat +full-clos: $(C_OBJS) compile-full-clos-CLX cat -c: $(C_OBJS) - -lisp: compile-CLX +c: $(C_OBJS) -compile-CLX: $(C_OBJS) +compile-no-clos-CLX: $(C_OBJS) + $(ECHO) " \ + (set-case-mode :case-sensitive-lower) \ + (proclaim '(optimize (speed $(SPEED)) (safety $(SAFETY)))) \ + #+(version>= 4 0) (pushnew :clx-ansi-common-lisp *features*) \ + (load \"defsystem\") \ + #+allegro (compile-system :clx) \ + #-allegro (compile-clx) \ + #+allegro (compile-system :clx-debug)" \ + | $(CL) $(CLOPTS) -batch + +compile-partial-clos-CLX: $(C_OBJS) $(ECHO) " \ - (set-case-mode :case-sensitive-lower) \ - (proclaim '(optimize (speed $(SPEED)) (safety $(SAFETY)))) \ - (compile-file-if-needed \"excldep\") \ - (compile-file-if-needed \"defsystem\") \ - (load \"defsystem\") \ - #+allegro (compile-system :clx) \ - #-allegro (xlib::compile-clx) \ - #+allegro (compile-system :clx-debug)" \ - | $(CL) $(CLOPTS) -batch - - -compile-closified-CLX: $(C_OBJS) + #+clos (set-case-mode :case-sensitive-lower) \ + #-clos (setq excl::*print-nickname* t) \ + (proclaim '(optimize (speed $(SPEED)) (safety $(SAFETY)))) \ + (unless (or (find-package 'clos) (find-package 'pcl)) \ + (let ((spread (sys:gsgc-parameter :generation-spread))) \ + (setf (sys:gsgc-parameter :generation-spread) 1) \ + (require :pcl) \ + (provide :pcl) \ + (gc) (gc) \ + (setf (sys:gsgc-parameter :generation-spread) spread))) \ + #+(version>= 4 0) (pushnew :clx-ansi-common-lisp *features*) \ + (load \"defsystem\") \ + (load \"package\") \ + (setq xlib::*def-clx-class-use-defclass* '(xlib:window xlib:pixmap xlib:drawable)) \ + #+allegro (compile-system :clx) \ + #-allegro (compile-clx \"\" \"\" :for-clue t) \ + #+allegro (compile-system :clx-debug)" \ + | $(CL) $(CLOPTS) -batch + +compile-full-clos-CLX: $(C_OBJS) $(ECHO) " \ - (proclaim '(optimize (speed $(SPEED)) (safety $(SAFETY)))) \ - (setq excl::*print-nickname* t) \ - (unless (or (find-package 'clos) (find-package 'pcl)) \ - (let ((spread (sys:gsgc-parameter :generation-spread))) \ - (setf (sys:gsgc-parameter :generation-spread) 1) \ - (require :pcl) \ - (provide :pcl) \ - (gc) (gc) \ - (setf (sys:gsgc-parameter :generation-spread) spread))) \ - (compile-file-if-needed \"excldep\") \ - (compile-file-if-needed \"defsystem\") \ - (load \"defsystem\") \ - #+allegro (compile-system :clx) \ - #-allegro (xlib::compile-clx) \ - #+allegro (compile-system :clx-debug)" \ - | $(CL) $(CLOPTS) -batch + #+clos (set-case-mode :case-sensitive-lower) \ + #-clos (setq excl::*print-nickname* t) \ + (proclaim '(optimize (speed $(SPEED)) (safety $(SAFETY)))) \ + (unless (or (find-package 'clos) (find-package 'pcl)) \ + (let ((spread (sys:gsgc-parameter :generation-spread))) \ + (setf (sys:gsgc-parameter :generation-spread) 1) \ + (require :pcl) \ + (provide :pcl) \ + (gc) (gc) \ + (setf (sys:gsgc-parameter :generation-spread) spread))) \ + #+(version>= 4 0) (pushnew :clx-ansi-common-lisp *features*) \ + (load \"defsystem\") \ + (load \"package\") \ + (setq xlib::*def-clx-class-use-defclass* t) \ + #+allegro (compile-system :clx) \ + #-allegro (compile-clx \"\" \"\" :for-clue t) \ + #+allegro (compile-system :clx-debug)" \ + | $(CL) $(CLOPTS) -batch cat: @@ -107,21 +143,20 @@ cat: load-CLX: - $(ECHO) '(load "defsystem")' \ - "(let (#+allegro (spread (sys:gsgc-parameter :generation-spread)))" \ - " #+allegro (setf (sys:gsgc-parameter :generation-spread) 1)" \ - " #+allegro (load-system :clx)" \ - " #-allegro (xlib::load-clx)" \ - " #+allegro (gc :tenure)" \ - " #+allegro (setf (sys:gsgc-parameter :generation-spread) spread)" \ - ")" \ - '#+allegro (gc t)' \ - '(dumplisp :name "$(CLX)" #+allegro :checkpoint #+allegro nil)' \ - '(exit)' | $(CL) $(CLOPTS) - + $(ECHO) " \ + (let ((spread (sys:gsgc-parameter :generation-spread))) \ + (setf (sys:gsgc-parameter :generation-spread) 1) \ + (load \"defsystem\") \ + #+allegro (load-system :clx) \ + #-allegro (load-clx) \ + (gc :tenure) \ + (setf (sys:gsgc-parameter :generation-spread) spread)) \ + (gc t)" \ + '(dumplisp :name "$(CLX)" #+allegro :checkpoint #+allegro nil)' \ + "(exit)" | $(CL) $(CLOPTS) clean: - $(RM) -f *.fasl debug/*.fasl $(CLX) core $(C_OBJS) + $(RM) -f *.fasl debug/*.fasl $(CLX) core $(C_OBJS) make.out install: diff --git a/clx/exclREADME b/clx/exclREADME index 02ed020a8..c99e388e0 100644 --- a/clx/exclREADME +++ b/clx/exclREADME @@ -1,8 +1,8 @@ This file contains instructions on how to make CLX work with Franz Common Lisp. CLX should work on any machine that supports Allegro Common Lisp version 3.0.1 or greater. It also works under ExCL version 2.0.10. -However it has been tested extensively with only Allegro CL versions 3.0 -and 3.1. +However it has been tested extensively with only Allegro CL versions 3.0, +3.1, and 4.0. There are three steps to compile and install CLX. The first is simply moving files around. In this directory, execute (assuming you using csh): @@ -10,9 +10,6 @@ moving files around. In this directory, execute (assuming you using csh): % foreach i (*.l */*.l) ? mv $i $i:r.cl ? end -% mkdir MIT -% mv defsystem.cl MIT -% mv excldefsys.cl defsystem.cl % mv exclMakefile Makefile The second is compiling the source files into fasl files. The fasl files diff --git a/clx/exclcmac.lisp b/clx/exclcmac.lisp index 9759e4d00..04fd20af8 100644 --- a/clx/exclcmac.lisp +++ b/clx/exclcmac.lisp @@ -14,40 +14,38 @@ ;;; express or implied warranty. ;;; -(in-package :xlib :use '(:foreign-functions :lisp :excl)) - -(import '(excl::defcmacro)) +(in-package :xlib) ;; ;; Type predicates ;; -(defcmacro card8p (x) +(excl:defcmacro card8p (x) (let ((xx (gensym))) `(let ((,xx ,x)) (declare (optimize (speed 3) (safety 0)) (fixnum ,xx)) - (and (fixnump ,xx) (> #.(expt 2 8) ,xx) (>= ,xx 0))))) + (and (excl:fixnump ,xx) (> #.(expt 2 8) ,xx) (>= ,xx 0))))) -(defcmacro card16p (x) +(excl:defcmacro card16p (x) (let ((xx (gensym))) `(let ((,xx ,x)) (declare (optimize (speed 3) (safety 0)) (fixnum ,xx)) - (and (fixnump ,xx) (> #.(expt 2 16) ,xx) (>= ,xx 0))))) + (and (excl:fixnump ,xx) (> #.(expt 2 16) ,xx) (>= ,xx 0))))) -(defcmacro int8p (x) +(excl:defcmacro int8p (x) (let ((xx (gensym))) `(let ((,xx ,x)) (declare (optimize (speed 3) (safety 0)) (fixnum ,xx)) - (and (fixnump ,xx) (> #.(expt 2 7) ,xx) (>= ,xx #.(expt -2 7)))))) + (and (excl:fixnump ,xx) (> #.(expt 2 7) ,xx) (>= ,xx #.(expt -2 7)))))) -(defcmacro int16p (x) +(excl:defcmacro int16p (x) (let ((xx (gensym))) `(let ((,xx ,x)) (declare (optimize (speed 3) (safety 0)) (fixnum ,xx)) - (and (fixnump ,xx) (> #.(expt 2 15) ,xx) (>= ,xx #.(expt -2 15)))))) + (and (excl:fixnump ,xx) (> #.(expt 2 15) ,xx) (>= ,xx #.(expt -2 15)))))) ;; Card29p, card32p, int32p are too large to expand inline @@ -55,7 +53,7 @@ ;; ;; Type transformers ;; -(defcmacro card8->int8 (x) +(excl:defcmacro card8->int8 (x) (let ((xx (gensym))) `(let ((,xx ,x)) ,(declare-bufmac) @@ -63,11 +61,11 @@ (the int8 (if (logbitp 7 ,xx) (the int8 (- ,xx #x100)) ,xx))))) -(defcmacro int8->card8 (x) +(excl:defcmacro int8->card8 (x) `(locally ,(declare-bufmac) (the card8 (ldb (byte 8 0) (the int8 ,x))))) -(defcmacro card16->int16 (x) +(excl:defcmacro card16->int16 (x) (let ((xx (gensym))) `(let ((,xx ,x)) ,(declare-bufmac) @@ -76,11 +74,11 @@ (the int16 (- ,xx #x10000)) ,xx))))) -(defcmacro int16->card16 (x) +(excl:defcmacro int16->card16 (x) `(locally ,(declare-bufmac) (the card16 (ldb (byte 16 0) (the int16 ,x))))) -(defcmacro card32->int32 (x) +(excl:defcmacro card32->int32 (x) (let ((xx (gensym))) `(let ((,xx ,x)) ,(declare-bufmac) @@ -89,15 +87,15 @@ (the int32 (- ,xx #x100000000)) ,xx))))) -(defcmacro int32->card32 (x) +(excl:defcmacro int32->card32 (x) `(locally ,(declare-bufmac) (the card32 (ldb (byte 32 0) (the int32 ,x))))) -(defcmacro char->card8 (char) +(excl:defcmacro char->card8 (char) `(locally ,(declare-bufmac) (the card8 (char-code (the string-char ,char))))) -(defcmacro card8->char (card8) +(excl:defcmacro card8->char (card8) `(locally ,(declare-bufmac) (the string-char (code-char (the card8 ,card8))))) @@ -105,47 +103,59 @@ ;; ;; Array accessors and setters ;; -(defcmacro aref-card8 (a i) +(excl:defcmacro aref-card8 (a i) `(locally ,(declare-bufmac) - (the card8 (aref (the buffer-bytes ,a) (the array-index ,i))))) - -(defcmacro aset-card8 (v a i) + (the card8 (sys:memref (the buffer-bytes ,a) + #.(comp::mdparam 'comp::md-svector-data0-adj) + (the array-index ,i) + :unsigned-byte)))) + +(excl:defcmacro aset-card8 (v a i) `(locally ,(declare-bufmac) - (setf (aref (the buffer-bytes ,a) (the array-index ,i)) - (the card8 ,v)))) - -(defcmacro aref-int8 (a i) + (setf (sys:memref (the buffer-bytes ,a) + #.(comp::mdparam 'comp::md-svector-data0-adj) + (the array-index ,i) + :unsigned-byte) + (the card8 ,v)))) + +(excl:defcmacro aref-int8 (a i) `(locally ,(declare-bufmac) - (card8->int8 (aref (the buffer-bytes ,a) (the array-index ,i))))) - -(defcmacro aset-int8 (v a i) + (the int8 (sys:memref (the buffer-bytes ,a) + #.(comp::mdparam 'comp::md-svector-data0-adj) + (the array-index ,i) + :signed-byte)))) + +(excl:defcmacro aset-int8 (v a i) `(locally ,(declare-bufmac) - (setf (aref (the buffer-bytes ,a) (the array-index ,i)) - (int8->card8 ,v)))) + (setf (sys:memref (the buffer-bytes ,a) + #.(comp::mdparam 'comp::md-svector-data0-adj) + (the array-index ,i) + :signed-byte) + (the int8 ,v)))) -(defcmacro aref-card16 (a i) +(excl:defcmacro aref-card16 (a i) `(locally ,(declare-bufmac) (the card16 (sys:memref (the buffer-bytes ,a) #.(comp::mdparam 'comp::md-svector-data0-adj) (the array-index ,i) :unsigned-word)))) -(defcmacro aset-card16 (v a i) +(excl:defcmacro aset-card16 (v a i) `(locally ,(declare-bufmac) (setf (sys:memref (the buffer-bytes ,a) - #.(comp::mdparam 'comp::md-svector-data0-adj) - (the array-index ,i) - :unsigned-word) - (the card16 ,v)))) + #.(comp::mdparam 'comp::md-svector-data0-adj) + (the array-index ,i) + :unsigned-word) + (the card16 ,v)))) -(defcmacro aref-int16 (a i) +(excl:defcmacro aref-int16 (a i) `(locally ,(declare-bufmac) (the int16 (sys:memref (the buffer-bytes ,a) #.(comp::mdparam 'comp::md-svector-data0-adj) (the array-index ,i) :signed-word)))) -(defcmacro aset-int16 (v a i) +(excl:defcmacro aset-int16 (v a i) `(locally ,(declare-bufmac) (setf (sys:memref (the buffer-bytes ,a) #.(comp::mdparam 'comp::md-svector-data0-adj) @@ -153,14 +163,14 @@ :signed-word) (the int16 ,v)))) -(defcmacro aref-card32 (a i) +(excl:defcmacro aref-card32 (a i) `(locally ,(declare-bufmac) (the card32 (sys:memref (the buffer-bytes ,a) #.(comp::mdparam 'comp::md-svector-data0-adj) (the array-index ,i) :unsigned-long)))) -(defcmacro aset-card32 (v a i) +(excl:defcmacro aset-card32 (v a i) `(locally ,(declare-bufmac) (setf (sys:memref (the buffer-bytes ,a) #.(comp::mdparam 'comp::md-svector-data0-adj) @@ -168,14 +178,14 @@ :unsigned-long) (the card32 ,v)))) -(defcmacro aref-int32 (a i) +(excl:defcmacro aref-int32 (a i) `(locally ,(declare-bufmac) (the int32 (sys:memref (the buffer-bytes ,a) #.(comp::mdparam 'comp::md-svector-data0-adj) (the array-index ,i) :signed-long)))) -(defcmacro aset-int32 (v a i) +(excl:defcmacro aset-int32 (v a i) `(locally ,(declare-bufmac) (setf (sys:memref (the buffer-bytes ,a) #.(comp::mdparam 'comp::md-svector-data0-adj) @@ -183,7 +193,7 @@ :signed-long) (the int32 ,v)))) -(defcmacro aref-card29 (a i) +(excl:defcmacro aref-card29 (a i) ;; Don't need to mask bits here since X protocol guarantees top bits zero `(locally ,(declare-bufmac) (the card29 (sys:memref (the buffer-bytes ,a) @@ -191,7 +201,7 @@ (the array-index ,i) :unsigned-long)))) -(defcmacro aset-card29 (v a i) +(excl:defcmacro aset-card29 (v a i) ;; I also assume here Lisp is passing a number that fits in 29 bits. `(locally ,(declare-bufmac) (setf (sys:memref (the buffer-bytes ,a) @@ -203,20 +213,20 @@ ;; ;; Font accessors ;; -(defcmacro font-id (font) +(excl:defcmacro font-id (font) ;; Get font-id, opening font if needed (let ((f (gensym))) `(let ((,f ,font)) (or (font-id-internal ,f) (open-font-internal ,f))))) -(defcmacro font-font-info (font) +(excl:defcmacro font-font-info (font) (let ((f (gensym))) `(let ((,f ,font)) (or (font-font-info-internal ,f) (query-font ,f))))) -(defcmacro font-char-infos (font) +(excl:defcmacro font-char-infos (font) (let ((f (gensym))) `(let ((,f ,font)) (or (font-char-infos-internal ,f) @@ -227,11 +237,11 @@ ;; ;; Miscellaneous ;; -(defcmacro current-process () +(excl:defcmacro current-process () `(the (or mp::process null) (and mp::*scheduler-stack-group* mp::*current-process*))) -(defcmacro process-wakeup (process) +(excl:defcmacro process-wakeup (process) (let ((proc (gensym))) `(let ((.pw-curproc. mp::*current-process*) (,proc ,process)) @@ -240,74 +250,11 @@ (mp::process-priority .pw-curproc.)) (mp::process-allow-schedule ,proc)))))) -#+notyet -(defcmacro buffer-replace (target-sequence source-sequence target-start - target-end &optional (source-start 0)) - (let ((tv (gensym)) (sv (gensym)) (ts (gensym)) (te (gensym)) (ss (gensym))) - `(let ((,tv ,target-sequence) (,sv ,source-sequence) - (,ts ,target-start) (,te ,target-end) (,ss ,source-start)) - (declare (type buffer-bytes ,tv ,sv) - (type array-index ,ts ,te ,ss) - (optimize (speed 3) (safety 0))) - - (let ((source-end (length ,sv))) - (declare (type array-index source-end)) - - (if* (and (eq ,tv ,sv) - (> ,ts ,ss)) - then (let ((nelts (min (- ,te ,ts) - (- source-end ,ss)))) - (do ((target-index (+ ,ts nelts -1) (1- target-index)) - (source-index (+ ,ss nelts -1) (1- source-index))) - ((= target-index (1- ,ts)) ,tv) - (declare (type array-index target-index source-index)) - - (setf (aref ,tv target-index) - (aref ,sv source-index)))) - else (do ((target-index ,ts (1+ target-index)) - (source-index ,ss (1+ source-index))) - ((or (= target-index ,te) (= source-index source-end)) - ,tv) - (declare (type array-index target-index source-index)) - - (setf (aref ,tv target-index) - (aref ,sv source-index)))))))) - -(defcmacro buffer-new-request-number (buffer) +(excl:defcmacro buffer-new-request-number (buffer) (let ((buf (gensym))) `(let ((,buf ,buffer)) (declare (type buffer ,buf)) (setf (buffer-request-number ,buf) (ldb (byte 16 0) (1+ (buffer-request-number ,buf))))))) -(defcmacro byte-reverse (byte) - `(aref ,'#.(coerce - '#(0 128 64 192 32 160 96 224 16 144 80 208 48 176 112 240 - 8 136 72 200 40 168 104 232 24 152 88 216 56 184 120 248 - 4 132 68 196 36 164 100 228 20 148 84 212 52 180 116 244 - 12 140 76 204 44 172 108 236 28 156 92 220 60 188 124 252 - 2 130 66 194 34 162 98 226 18 146 82 210 50 178 114 242 - 10 138 74 202 42 170 106 234 26 154 90 218 58 186 122 250 - 6 134 70 198 38 166 102 230 22 150 86 214 54 182 118 246 - 14 142 78 206 46 174 110 238 30 158 94 222 62 190 126 254 - 1 129 65 193 33 161 97 225 17 145 81 209 49 177 113 241 - 9 137 73 201 41 169 105 233 25 153 89 217 57 185 121 249 - 5 133 69 197 37 165 101 229 21 149 85 213 53 181 117 245 - 13 141 77 205 45 173 109 237 29 157 93 221 61 189 125 253 - 3 131 67 195 35 163 99 227 19 147 83 211 51 179 115 243 - 11 139 75 203 43 171 107 235 27 155 91 219 59 187 123 251 - 7 135 71 199 39 167 103 231 23 151 87 215 55 183 119 247 - 15 143 79 207 47 175 111 239 31 159 95 223 63 191 127 255) - '(vector card8)) - ,byte)) - -#| -#+(or allegro-v3.0 allegro-v3.1) -(defcmacro graphic-char-p (char) - `(let* ((cint (char-int ,char))) - (if (and (<= #.(char-code #\space) cint) - (<= cint #.(char-code #\~))) - t - nil))) -|# diff --git a/clx/excldep.lisp b/clx/excldep.lisp index 62c4574dd..e6e59d2da 100644 --- a/clx/excldep.lisp +++ b/clx/excldep.lisp @@ -13,23 +13,18 @@ ;;; express or implied warranty. ;;; -(in-package :xlib :use '(:foreign-functions :lisp :excl)) +(in-package :xlib) -(eval-when (load) - (provide :clxexcldep) - (provide :clx)) - -(require :foreign) -(require :process) ; Needed even if scheduler is not +(eval-when (compile load eval) + (require :foreign) + (require :process) ; Needed even if scheduler is not ; running. (Must be able to make ; a process-lock.) + ) + +(eval-when (load) + (provide :clx)) -(import '(excl::if* - excl::type-error - excl::type-error-datum - excl::type-error-expected-type)) -#+allegro -(import '(excl::without-interrupts)) #-(or little-endian big-endian) (eval-when (eval compile load) @@ -41,10 +36,6 @@ (pushnew :big-endian *features*)))) -(defmacro define-condition (name (parent-type) &optional slots &rest args) - `(excl::define-condition ,name (,parent-type) ,slots ,@args)) - - (defmacro correct-case (string) ;; This macro converts the given string to the ;; current preferred case, or leaves it alone in a case-sensitive mode. @@ -59,102 +50,136 @@ ,str))))) -(defun underlying-simple-vector (array) - (cond ((excl::svectorp array) - array) - ((arrayp array) - (cdr (excl::ah_data array))) - (t - (error "~s is not an array" array)))) - - (defconstant type-pred-alist - '( - (card8 . card8p) - (card16 . card16p) - (card29 . card29p) - (card32 . card32p) - (int8 . int8p) - (int16 . int16p) - (int32 . int32p) - (mask16 . card16p) - (mask32 . card32p) - (pixel . card32p) - (resource-id . card29p) - (keysym . card32p) - )) + '(#-(version>= 4 1 devel 16) + (card8 . card8p) + #-(version>= 4 1 devel 16) + (card16 . card16p) + #-(version>= 4 1 devel 16) + (card29 . card29p) + #-(version>= 4 1 devel 16) + (card32 . card32p) + #-(version>= 4 1 devel 16) + (int8 . int8p) + #-(version>= 4 1 devel 16) + (int16 . int16p) + #-(version>= 4 1 devel 16) + (int32 . int32p) + #-(version>= 4 1 devel 16) + (mask16 . card16p) + #-(version>= 4 1 devel 16) + (mask32 . card32p) + #-(version>= 4 1 devel 16) + (pixel . card32p) + #-(version>= 4 1 devel 16) + (resource-id . card29p) + #-(version>= 4 1 devel 16) + (keysym . card32p) + (angle . anglep) + (color . color-p) + (bitmap-format . bitmap-format-p) + (pixmap-format . pixmap-format-p) + (display . display-p) + (drawable . drawable-p) + (window . window-p) + (pixmap . pixmap-p) + (visual-info . visual-info-p) + (colormap . colormap-p) + (cursor . cursor-p) + (gcontext . gcontext-p) + (screen . screen-p) + (font . font-p) + (image-x . image-x-p) + (image-xy . image-xy-p) + (image-z . image-z-p) + (wm-hints . wm-hints-p) + (wm-size-hints . wm-size-hints-p) + )) ;; This (if (and ...) t nil) stuff has a purpose -- it lets the old ;; sun4 compiler opencode the `and'. +#-(version>= 4 1 devel 16) (defun card8p (x) (declare (optimize (speed 3) (safety 0)) (fixnum x)) - (if (and (fixnump x) (> #.(expt 2 8) x) (>= x 0)) + (if (and (excl:fixnump x) (> #.(expt 2 8) x) (>= x 0)) t nil)) +#-(version>= 4 1 devel 16) (defun card16p (x) (declare (optimize (speed 3) (safety 0)) (fixnum x)) - (if (and (fixnump x) (> #.(expt 2 16) x) (>= x 0)) + (if (and (excl:fixnump x) (> #.(expt 2 16) x) (>= x 0)) t nil)) +#-(version>= 4 1 devel 16) (defun card29p (x) (declare (optimize (speed 3) (safety 0))) - (if (or (and (fixnump x) (>= (the fixnum x) 0)) - (and (bignump x) (> #.(expt 2 29) (the bignum x)) + (if (or (and (excl:fixnump x) (>= (the fixnum x) 0)) + (and (excl:bignump x) (> #.(expt 2 29) (the bignum x)) (>= (the bignum x) 0))) t nil)) +#-(version>= 4 1 devel 16) (defun card32p (x) (declare (optimize (speed 3) (safety 0))) - (if (or (and (fixnump x) (>= (the fixnum x) 0)) - (and (bignump x) (> #.(expt 2 32) (the bignum x)) + (if (or (and (excl:fixnump x) (>= (the fixnum x) 0)) + (and (excl:bignump x) (> #.(expt 2 32) (the bignum x)) (>= (the bignum x) 0))) t nil)) +#-(version>= 4 1 devel 16) (defun int8p (x) (declare (optimize (speed 3) (safety 0)) (fixnum x)) - (if (and (fixnump x) (> #.(expt 2 7) x) (>= x #.(expt -2 7))) + (if (and (excl:fixnump x) (> #.(expt 2 7) x) (>= x #.(expt -2 7))) t nil)) +#-(version>= 4 1 devel 16) (defun int16p (x) (declare (optimize (speed 3) (safety 0)) (fixnum x)) - (if (and (fixnump x) (> #.(expt 2 15) x) (>= x #.(expt -2 15))) + (if (and (excl:fixnump x) (> #.(expt 2 15) x) (>= x #.(expt -2 15))) t nil)) +#-(version>= 4 1 devel 16) (defun int32p (x) (declare (optimize (speed 3) (safety 0))) - (if (or (fixnump x) - (and (bignump x) (> #.(expt 2 31) (the bignum x)) + (if (or (excl:fixnump x) + (and (excl:bignump x) (> #.(expt 2 31) (the bignum x)) (>= (the bignum x) #.(expt -2 31)))) t nil)) -(comp::def-tr comp::new-tr-typep typep (form type) - (let (ent) - (if* (and (consp type) - (eq 'quote (car type)) - (consp (cdr type))) - then (setq ent (franz:assq (cadr type) type-pred-alist))) - (if* ent - then `(,(cdr ent) ,form) - else (if* (and (consp type) - (eq 'quote (car type)) - (consp (cdr type))) - then (setq ent (franz:assq (cadr type) - excl::type-pred-alist))) - (if* ent - then `(,(cdr ent) ,form) - else (comp::no-transform))))) +;; This one can be handled better by knowing a little about what we're +;; testing for. Plus this version can handle (single-float pi), which +;; is otherwise larger than pi! +(defun anglep (x) + (declare (optimize (speed 3) (safety 0))) + (if (or (and (excl::fixnump x) (>= (the fixnum x) #.(truncate (* -2 pi))) + (<= (the fixnum x) #.(truncate (* 2 pi)))) + (and (excl::single-float-p x) + (>= (the single-float x) #.(float (* -2 pi) 0.0s0)) + (<= (the single-float x) #.(float (* 2 pi) 0.0s0))) + (and (excl::double-float-p x) + (>= (the double-float x) #.(float (* -2 pi) 0.0d0)) + (<= (the double-float x) #.(float (* 2 pi) 0.0d0)))) + t + nil)) + +(eval-when (load eval) + #+(version>= 4 1 devel 16) + (mapcar #'(lambda (elt) (excl:add-typep-transformer (car elt) (cdr elt))) + type-pred-alist) + #-(version>= 4 1 devel 16) + (nconc excl::type-pred-alist type-pred-alist)) ;; Return t if there is a character available for reading or on error, @@ -162,7 +187,7 @@ (defun fd-char-avail-p (fd) (multiple-value-bind (available-p errcode) (comp::.primcall-sargs 'sys::filesys excl::fs-char-avail fd) - (if* errcode + (excl:if* errcode then t else available-p))) @@ -184,7 +209,7 @@ (comp::.primcall-sargs 'sys::filesys excl::fs-read-bytes fd vector start-index rest) (declare (fixnum numread)) - (if* errcode + (excl:if* errcode then (if (not (eq errcode excl::*error-code-interrupted-system-call*)) (return t)) @@ -224,105 +249,14 @@ :arguments (fixnum fixnum)))) -#-allegro -(defmacro without-interrupts (&body body) - `(let ((excl::*without-interrupts* t)) ,@body)) - - -(in-package :excl) - -#-allegro -(defun type-array-element-type-to-array (type &aux temp) - ;; type is a type descriptor, return a descriptor which tells - ;; the array code what kind of array to make - - ; convert the given element type to one of the symbols which - ; is in the car of the array-descriptors list - ;(msg "beginning type is " type 'N) - (if* (symbolp type) - then (if* (franz:memq type '(t bit string-char fixnum)) - thenret ; it is ok as it is - else (let ((temp (get type 'deftype-expander))) - (if* temp - then - (return-from type-array-element-type-to-array - (type-array-element-type-to-array - (funcall temp (list type)))) - else - (setq type (case type - (standard-char 'string-char) - ((single-float short-float) 'single-float) - ((double-float long-float) 'double-float) - (t t)))))) - elseif (consp type) - then (setq type - (case (car type) - (mod (if* (integerp (setq temp (cadr type))) - then (cond ((< temp 1) t) - ((<= temp 2) 'bit) - ((<= temp 256) 'ubyte) - ((<= temp 65536) 'uword) - ((<= temp 4294967296) 'ulong) - (t t)) - else t)) - (signed-byte - (if* (integerp (setq temp (cadr type))) - then (cond ((<= temp 0) t) - ((<= temp 8) 'byte) - ((<= temp 16) 'word) - ((<= temp 29) 'fixnum) - ((<= temp 32) 'long) - (t t)) - else t)) - (unsigned-byte - (if* (integerp (setq temp (cadr type))) - then (cond ((<= temp 0) t) - ((<= temp 8) 'ubyte) - ((<= temp 16) 'uword) - ((<= temp 32) 'ulong) - (t t)) - else t)) - (t t))) - else (setq type t)) - ; type is now one of the valid types. We return a descriptor - ; based on that name - ;(msg "resulting type is " type 'N) - (let ((res (franz:assq type array-descriptors))) - ;(msg " resulting decriptor " res 'N) - res)) - -#-allegro -(defun make-sequence (type length &rest rest &key initial-element) - "Returns a sequence of the given Type and Length, with elements initialized - to :Initial-Element." - (declare (fixnum length) - (ignore initial-element)) - (case (type-specifier type) - (list (apply #'make-list length rest)) - ((simple-string string) - (apply #'make-string length rest)) - ((array simple-array vector simple-vector) - (if* (listp type) - then (apply #'make-array length :element-type (cadr type) rest) - else (apply #'make-array length rest))) - ((bit-vector simple-bit-vector) - (apply #'make-array length :element-type 'bit rest)) - (t - ;; Now, we can either have a user-defined type symbol, or an error. - (if* (symbolp type) - then (let ((temp (get type 'excl::deftype-expander))) - (if* temp - then (cond (rest (return-from make-sequence - (make-sequence (funcall temp (list type)) length - :initial-element (cadr rest)))) - (t (return-from make-sequence (make-sequence - (funcall temp (list type)) length))))))) - (error "~s is a bad type specifier for sequences." type )))) - ;; special patch for CLX (various process fixes) ;; patch1000.2 -(in-package 'patch :use '(lisp excl)) +(eval-when (compile load eval) + (unless (find-package :patch) + (make-package :patch :use '(:lisp :excl)))) + +(in-package :patch) (defvar *patches* nil) @@ -331,6 +265,7 @@ (when (and (= excl::cl-major-version-number 3) (or (= excl::cl-minor-version-number 0) (and (= excl::cl-minor-version-number 1) + excl::cl-generation-number (< excl::cl-generation-number 9)))) (push :clx-r4-process-patches *features*))) @@ -362,7 +297,7 @@ (when (>= msecs 1000) (decf msecs 1000) (incf secs)) - (unless (fixnump secs) (setq secs most-positive-fixnum)) + (unless (excl:fixnump secs) (setq secs most-positive-fixnum)) (setf (clock-event-secs clock-event) secs (clock-event-msecs clock-event) msecs (clock-event-function clock-event) fnc @@ -384,7 +319,7 @@ (add-to-clock-queue clock-event) (let ((excl::*without-interrupts* nil)) (multiple-value-list (progn ,@body))))) - (if* (eq ret 'with-timeout-internal) + (excl:if* (eq ret 'with-timeout-internal) then (let ((excl::*without-interrupts* nil)) (setq ret (multiple-value-list (progn ,@timeout-body)))) else (remove-from-clock-queue clock-event))) @@ -398,11 +333,11 @@ (unless (process-lock-p lock) (error "First argument to PROCESS-LOCK must be a process-lock: ~s" lock)) (without-interrupts - (if* (null (process-lock-locker lock)) + (excl:if* (null (process-lock-locker lock)) then (setf (process-lock-locker lock) lock-value) - else (if* timeout - then (if* (or (eq 0 timeout) ;for speed - (zerop timeout)) + else (excl:if* timeout + then (excl:if* (or (eq 0 timeout) ;for speed + (zerop timeout)) then nil else (with-timeout (timeout) (process-lock-1 lock lock-value whostate))) @@ -467,7 +402,7 @@ ;; -- 28Feb90 smh ;; Run the wait function once here both for efficiency and as a ;; first line check for errors in the function. - (if* (apply function args) + (excl:if* (apply function args) then t else (let ((ret (list nil))) (without-interrupts @@ -491,7 +426,7 @@ (stream-or-fd &key (wait-function #'listen) (whostate "waiting for input") timeout) - (let ((fd (if* (fixnump stream-or-fd) then stream-or-fd + (let ((fd (excl:if* (excl:fixnump stream-or-fd) then stream-or-fd elseif (streamp stream-or-fd) then (excl::stream-input-fn stream-or-fd) else (error "wait-for-input-available expects a stream or file descriptor: ~s" stream-or-fd)))) @@ -501,13 +436,13 @@ (unwind-protect (progn (mp::mpwatchfor fd) - (if* timeout + (excl:if* timeout then (mp::process-wait-with-timeout whostate timeout wait-function stream-or-fd) else (mp::process-wait whostate wait-function stream-or-fd) t)) (mp::mpunwatchfor fd)) - (if* timeout + (excl:if* timeout then (mp::process-wait-with-timeout whostate timeout wait-function stream-or-fd) else (mp::process-wait whostate wait-function stream-or-fd) diff --git a/clx/fonts.lisp b/clx/fonts.lisp index b40f98679..8cc20693d 100644 --- a/clx/fonts.lisp +++ b/clx/fonts.lisp @@ -18,14 +18,6 @@ (in-package :xlib) -(export '( - open-font - discard-font-info - close-font - list-font-names - list-fonts - font-path)) - ;; The char-info stuff is here instead of CLX because of uses of int16->card16. ; To allow efficient storage representations, the type char-info is not @@ -368,6 +360,7 @@ (card8-put 0 len) (string-put 1 string :appending t :header-length 1) (incf buffer-boffset (1+ len)))) - (setf (buffer-boffset display) (lround buffer-boffset)))))) + (setf (buffer-boffset display) (lround buffer-boffset))))) + paths) (defsetf font-path set-font-path) diff --git a/clx/gcontext.lisp b/clx/gcontext.lisp index 35c4b73e1..3e1b531a2 100644 --- a/clx/gcontext.lisp +++ b/clx/gcontext.lisp @@ -1,4 +1,4 @@ -;;; -*- Package: XLIB; Log: clx.log -*- +;;; -*- Mode: LISP; Syntax: Common-lisp; Package: XLIB; Base: 10; Lowercase: Yes -*- ;;; GContext @@ -44,41 +44,6 @@ (in-package :xlib) -(export '(force-gcontext-changes - with-gcontext - create-gcontext - copy-gcontext-components - copy-gcontext - free-gcontext - - gcontext-function - gcontext-plane-mask - gcontext-foreground - gcontext-background - gcontext-line-width - gcontext-line-style - gcontext-cap-style - gcontext-join-style - gcontext-fill-style - gcontext-fill-rule - gcontext-tile - gcontext-stipple - gcontext-ts-x - gcontext-ts-y - gcontext-font - gcontext-subwindow-mode - gcontext-exposures - gcontext-clip-x - gcontext-clip-y - gcontext-clip-mask - gcontext-dashes - gcontext-arc-mode - gcontext-dash-offset - gcontext-clip-ordering - - define-gcontext-accessor - )) - ;; GContext state accessors ;; The state vector contains all card32s to speed server updating @@ -86,9 +51,6 @@ (defconstant *gcontext-fast-change-length* #.(length *gcontext-components*)) -;;; CMU Common Lisp's old compiler has a bug in compiling DEFCONSTANT's within -;;; MACROLET's. -#-CMU (macrolet ((def-gc-internals (name &rest extras) (let ((macros nil) (indexes nil) @@ -124,44 +86,6 @@ (def-gc-internals ignore (:clip :clip-mask) (:dash :dashes) (:font-obj :font) (:timestamp))) -#+CMU -(defmacro def-gc-internals (name &rest extras) - (let ((macros nil) - (indexes nil) - (masks nil) - (index 0)) - (dolist (name *gcontext-components*) - (push `(defmacro ,(xintern 'gcontext-internal- name) (state) - `(svref ,state ,,index)) - macros) - (setf (getf indexes name) index) - (push (ash 1 index) masks) - (incf index)) - (dolist (extra extras) - (push `(defmacro ,(xintern 'gcontext-internal- (first extra)) (state) - `(svref ,state ,,index)) - macros) - ;; don't override already correct index entries - (unless (or (getf indexes (second extra)) (getf indexes (first extra))) - (setf (getf indexes (or (second extra) (first extra))) index)) - (push (logior (ash 1 index) - (if (second extra) - (ash 1 (position (second extra) *gcontext-components*)) - 0)) - masks) - (incf index)) - `(within-definition (def-gc-internals ,name) - ,@(nreverse macros) - (eval-when (eval compile load) - (defconstant *gcontext-data-length* ,index) - (defconstant *gcontext-indexes* ',indexes) - (defconstant *gcontext-masks* - ',(coerce (nreverse masks) 'simple-vector)))))) - -#+CMU -(def-gc-internals ignore - (:clip :clip-mask) (:dash :dashes) (:font-obj :font) (:timestamp)) - ) ;; end EVAL-WHEN (deftype gcmask () '(unsigned-byte #.*gcontext-fast-change-length*)) @@ -617,16 +541,14 @@ (temp-var (gensym))) (when value (push `(,temp-var ,value) temp-vars) - (push #-CMU `(setf ,accessor ,temp-var) - #+CMU `(when ,temp-var (setf ,accessor ,temp-var)) - setfs)))) + (push `(when ,temp-var (setf ,accessor ,temp-var)) setfs)))) (if setfs `(multiple-value-bind (,gc ,saved-state ,temp-mask ,temp-gc) (copy-gcontext-local-state ,gcontext ',indexes ,@extension-indexes) (declare (type gcontext ,gc) - (type (or null gcontext) ,temp-gc) (type gcontext-state ,saved-state) - (type xgcmask ,temp-mask)) + (type xgcmask ,temp-mask) + (type (or null resource-id) ,temp-gc)) (with-gcontext-bindings (,gc ,saved-state ,(append indexes extension-indexes) ,ts-index ,temp-mask ,temp-gc) @@ -833,7 +755,15 @@ (when dashes (setf (gcontext-dashes gcontext) dashes)) (setf (gcontext-internal-timestamp server-state) 1) - (setf (gcontext-internal-timestamp local-state) 1) + (setf (gcontext-internal-timestamp local-state) + ;; SetClipRectangles or SetDashes request need to be sent? + (if (or (gcontext-internal-clip local-state) + (gcontext-internal-dash local-state)) + ;; Yes, mark local state "modified" to ensure + ;; force-gcontext-changes will occur. + 0 + ;; No, mark local state "unmodified" + 1)) (with-buffer-request (display *x-creategc*) (resource-id gcontextid) @@ -968,7 +898,10 @@ ;; (,set-function dst-gc value) ;; (error "Can't copy unknown GContext component ~a" ',name))) (declare (type symbol name) - (type t default)) + (type t default) + (type (function (gcontext t) t) set-function) ;; required + (type (or null (function (gcontext gcontext t) t)) + copy-function)) (let* ((gc-name (intern (concatenate 'string (string 'gcontext-) (string name)))) ;; in current package diff --git a/clx/graphics.lisp b/clx/graphics.lisp index 2f560888b..1d354f44e 100644 --- a/clx/graphics.lisp +++ b/clx/graphics.lisp @@ -20,19 +20,6 @@ (in-package :xlib) -(export '( - draw-point - draw-points - draw-line - draw-lines - draw-segments - draw-rectangle - draw-rectangles - draw-arc - draw-arcs - put-raw-image - get-raw-image)) - (defvar *inhibit-appending* nil) (defun draw-point (drawable gcontext x y) diff --git a/clx/image.lisp b/clx/image.lisp index 7da52180e..490233844 100644 --- a/clx/image.lisp +++ b/clx/image.lisp @@ -20,36 +20,16 @@ (in-package :xlib) -(export '(bitmap - pixarray - image - image-width - image-height - image-depth - image-plist - image-name - image-x-hot - image-y-hot - image-red-mask - image-blue-mask - image-green-mask - image-x - image-xy - image-z - image-x-p - image-xy-p - image-z-p - image-xy-bitmap-list - image-z-bits-per-pixel - image-z-pixarray - create-image - get-image - put-image - copy-image - read-bitmap-file - write-bitmap-file - bitmap-image - image-pixmap)) +(defmacro with-image-data-buffer ((buffer size) &body body) + (declare (indentation 0 4 1 1)) + `(let ((.reply-buffer. (allocate-reply-buffer ,size))) + (declare (type reply-buffer .reply-buffer.)) + (unwind-protect + (let ((,buffer (reply-ibuf8 .reply-buffer.))) + (declare (type buffer-bytes ,buffer)) + (with-vector (,buffer buffer-bytes) + ,@body)) + (deallocate-reply-buffer .reply-buffer.)))) (def-clx-class (image (:constructor nil) (:copier nil) (:predicate nil)) ;; Public structure @@ -71,18 +51,18 @@ (ignore depth)) (print-unreadable-object (image stream :type t) (when (image-name image) - (princ (image-name image) stream) - (princ " " stream)) + (write-string (string (image-name image)) stream) + (write-string " " stream)) (prin1 (image-width image) stream) - (princ "x" stream) + (write-string "x" stream) (prin1 (image-height image) stream) - (princ "x" stream) + (write-string "x" stream) (prin1 (image-depth image) stream))) -(defconstant *empty-data-x* #.(make-sequence '(array card8 (*)) 0)) +(defconstant *empty-data-x* '#.(make-sequence '(array card8 (*)) 0)) (defconstant *empty-data-z* - #.(make-array '(0 0) :element-type 'pixarray-1-element-type)) + '#.(make-array '(0 0) :element-type 'pixarray-1-element-type)) (def-clx-class (image-x (:include image) (:copier nil) (:print-function print-image)) @@ -116,8 +96,12 @@ plist name x-hot y-hot red-mask blue-mask green-mask bits-per-pixel format bytes-per-line - (byte-lsb-first-p *image-byte-lsb-first-p*) - (bit-lsb-first-p *image-bit-lsb-first-p*) + (byte-lsb-first-p + #+clx-little-endian t + #-clx-little-endian nil) + (bit-lsb-first-p + #+clx-little-endian t + #-clx-little-endian nil) unit pad left-pad) ;; Returns an image-x image-xy or image-z structure, depending on the ;; type of the :DATA parameter. @@ -416,10 +400,12 @@ (the card8 (aref src (index1+ srcidx))))))))) (defun image-swap-nibbles - (src dest srcoff destoff srclen srcinc destinc height) + (src dest srcoff destoff srclen srcinc destinc height lsb-first-p) (declare (type buffer-bytes src dest) (type array-index srcoff destoff srclen srcinc destinc) - (type card16 height)) + (type card16 height) + (type boolean lsb-first-p) + (ignore lsb-first-p)) #.(declare-buffun) (with-vector (src buffer-bytes) (with-vector (dest buffer-bytes) @@ -443,10 +429,12 @@ (the card4 (ldb (byte 4 4) byte))))))))))) (defun image-swap-nibbles-left - (src dest srcoff destoff srclen srcinc destinc height) + (src dest srcoff destoff srclen srcinc destinc height lsb-first-p) (declare (type buffer-bytes src dest) (type array-index srcoff destoff srclen srcinc destinc) - (type card16 height)) + (type card16 height) + (type boolean lsb-first-p) + (ignore lsb-first-p)) #.(declare-buffun) (with-vector (src buffer-bytes) (with-vector (dest buffer-bytes) @@ -459,7 +447,14 @@ (do ((i srclen (index1- i)) (srcidx srcstart (index1+ srcidx)) (destidx deststart (index1+ destidx))) - ((index-zerop i)) + ((index= i 1) + (setf (aref dest destidx) + (the card8 + (let ((byte1 (aref src srcidx))) + (declare (type card8 byte1)) + (dpb (the card4 (ldb (byte 4 0) byte1)) + (byte 4 4) + 0))))) (declare (type array-index i srcidx destidx)) (setf (aref dest destidx) (the card8 @@ -758,85 +753,53 @@ ))) (defun image-swap-function - (from-bitmap-unit from-bitmap-byte-lsb-first-p - from-bitmap-bit-lsb-first-p to-bitmap-unit - to-bitmap-byte-lsb-first-p to-bitmap-bit-lsb-first-p) - (declare (type (member 8 16 32) from-bitmap-unit to-bitmap-unit) - (type boolean from-bitmap-bit-lsb-first-p - from-bitmap-byte-lsb-first-p to-bitmap-bit-lsb-first-p - to-bitmap-byte-lsb-first-p) - (values function lsb-first-p)) - (let ((from-index - (index+ - (ecase from-bitmap-unit (32 2) (16 1) (8 0)) - (if from-bitmap-bit-lsb-first-p 3 0) - (if from-bitmap-byte-lsb-first-p 6 0)))) - (values - (aref *image-swap-function* from-index - (index+ - (ecase to-bitmap-unit (32 2) (16 1) (8 0)) - (if to-bitmap-bit-lsb-first-p 3 0) - (if to-bitmap-byte-lsb-first-p 6 0))) - (aref *image-swap-lsb-first-p* from-index)))) - -(defun image-swap-xy - (src dest srcoff destoff srclen srcinc destinc height + (bits-per-pixel from-bitmap-unit from-byte-lsb-first-p from-bit-lsb-first-p to-bitmap-unit to-byte-lsb-first-p to-bit-lsb-first-p) - (declare (type buffer-bytes src dest) - (type array-index srcoff destoff srclen srcinc destinc) - (type card16 height) + (declare (type (member 1 4 8 16 24 32) bits-per-pixel) (type (member 8 16 32) from-bitmap-unit to-bitmap-unit) (type boolean from-byte-lsb-first-p from-bit-lsb-first-p - to-byte-lsb-first-p to-bit-lsb-first-p)) - (multiple-value-bind (function lsb-first-p) - (image-swap-function - from-bitmap-unit from-byte-lsb-first-p from-bit-lsb-first-p - to-bitmap-unit to-byte-lsb-first-p to-bit-lsb-first-p) - (declare (type symbol function) - (type boolean lsb-first-p)) - (funcall function src dest srcoff destoff srclen srcinc destinc height - lsb-first-p))) - -(defun image-swap-z - (src dest srcoff destoff srclen srcinc destinc height - bits-per-pixel from-byte-lsb-first-p to-byte-lsb-first-p) - (declare (type buffer-bytes src dest) - (type array-index srcoff destoff srclen srcinc destinc) - (type (member 1 4 8 16 24 32) bits-per-pixel) - (type card16 height) - (type boolean from-byte-lsb-first-p to-byte-lsb-first-p)) - (cond ((or (eq from-byte-lsb-first-p to-byte-lsb-first-p) - (= bits-per-pixel 8)) - (image-noswap - src dest srcoff destoff srclen srcinc destinc height - from-byte-lsb-first-p)) - ((= bits-per-pixel 32) - (image-swap-four-bytes - src dest srcoff destoff srclen srcinc destinc height - from-byte-lsb-first-p)) - ((= bits-per-pixel 24) - (image-swap-three-bytes - src dest srcoff destoff srclen srcinc destinc height - from-byte-lsb-first-p)) - ((= bits-per-pixel 16) - (image-swap-two-bytes - src dest srcoff destoff srclen srcinc destinc height - from-byte-lsb-first-p)) + to-byte-lsb-first-p to-bit-lsb-first-p) + (values function lsb-first-p)) + (cond ((index= bits-per-pixel 1) + (let ((from-index + (index+ + (ecase from-bitmap-unit (32 2) (16 1) (8 0)) + (if from-bit-lsb-first-p 3 0) + (if from-byte-lsb-first-p 6 0)))) + (values + (aref *image-swap-function* from-index + (index+ + (ecase to-bitmap-unit (32 2) (16 1) (8 0)) + (if to-bit-lsb-first-p 3 0) + (if to-byte-lsb-first-p 6 0))) + (aref *image-swap-lsb-first-p* from-index)))) (t - (image-swap-nibbles - src dest srcoff destoff srclen srcinc destinc height)))) + (values + (if (if (index= bits-per-pixel 4) + (eq from-bit-lsb-first-p to-bit-lsb-first-p) + (eq from-byte-lsb-first-p to-byte-lsb-first-p)) + 'image-noswap + (ecase bits-per-pixel + (4 'image-swap-nibbles) + (8 'image-noswap) + (16 'image-swap-two-bytes) + (24 'image-swap-three-bytes) + (32 'image-swap-four-bytes))) + from-byte-lsb-first-p)))) ;;;----------------------------------------------------------------------------- ;;; GET-IMAGE (defun read-pixarray-1 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-1 array) (type card16 x y width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((start (index+ index @@ -844,9 +807,7 @@ (index-ceiling x 8)) (index+ start padded-bytes-per-line)) (y 0 (index1+ y)) - (left-bits (the array-index - (mod (the (integer #x-FFFF 0) (- x)) - 8))) + (left-bits (index-mod (index- x) 8)) (right-bits (index-mod (index- width left-bits) 8)) (middle-bits (index- width left-bits right-bits)) (middle-bytes (index-floor middle-bits 8))) @@ -963,11 +924,13 @@ ))))) (defun read-pixarray-4 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-4 array) (type card16 x y width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((start (index+ index @@ -1003,11 +966,13 @@ ))) (defun read-pixarray-8 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-8 array) (type card16 x y width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((start (index+ index @@ -1026,11 +991,13 @@ (the card8 (aref buffer-bbuf i))))))) (defun read-pixarray-16 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-16 array) (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((start (index+ index @@ -1051,11 +1018,13 @@ (aref buffer-bbuf (index+ i 1)))))))) (defun read-pixarray-24 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-24 array) (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((start (index+ index @@ -1077,11 +1046,13 @@ (aref buffer-bbuf (index+ i 2)))))))) (defun read-pixarray-32 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-32 array) (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((start (index+ index @@ -1103,6 +1074,68 @@ (aref buffer-bbuf (index+ i 2)) (aref buffer-bbuf (index+ i 3)))))))) +(defun read-pixarray-internal + (bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel read-pixarray-function + from-unit from-byte-lsb-first-p from-bit-lsb-first-p + to-unit to-byte-lsb-first-p to-bit-lsb-first-p) + (declare (type buffer-bytes bbuf) + (type array-index boffset padded-bytes-per-line) + (type pixarray pixarray) + (type card16 x y width height) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (type function read-pixarray-function) + (type (member 8 16 32) from-unit to-unit) + (type boolean from-byte-lsb-first-p from-bit-lsb-first-p + to-byte-lsb-first-p to-bit-lsb-first-p)) + (multiple-value-bind (image-swap-function image-swap-lsb-first-p) + (image-swap-function + bits-per-pixel + from-unit from-byte-lsb-first-p from-bit-lsb-first-p + to-unit to-byte-lsb-first-p to-bit-lsb-first-p) + (if (eq image-swap-function 'image-noswap) + (funcall + read-pixarray-function + bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel) + (with-image-data-buffer (buf (index* height padded-bytes-per-line)) + (funcall + (symbol-function image-swap-function) bbuf buf + (index+ boffset (index* y padded-bytes-per-line)) 0 + (index-ceiling (index* (index+ x width) bits-per-pixel) 8) + padded-bytes-per-line padded-bytes-per-line height + image-swap-lsb-first-p) + (funcall + read-pixarray-function + buf 0 pixarray x 0 width height padded-bytes-per-line + bits-per-pixel))))) + +(defun read-pixarray + (bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) + (declare (type buffer-bytes bbuf) + (type array-index boffset padded-bytes-per-line) + (type pixarray pixarray) + (type card16 x y width height) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (type (member 8 16 32) unit) + (type boolean byte-lsb-first-p bit-lsb-first-p)) + (unless (fast-read-pixarray + bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) + (read-pixarray-internal + bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel + (ecase bits-per-pixel + ( 1 #'read-pixarray-1 ) + ( 4 #'read-pixarray-4 ) + ( 8 #'read-pixarray-8 ) + (16 #'read-pixarray-16) + (24 #'read-pixarray-24) + (32 #'read-pixarray-32)) + unit byte-lsb-first-p bit-lsb-first-p + *image-unit* *image-byte-lsb-first-p* *image-bit-lsb-first-p*))) + (defun read-xy-format-image-x (buffer-bbuf index length data width height depth padded-bytes-per-line padded-bytes-per-plane @@ -1137,8 +1170,8 @@ :width width :height height :depth depth :data data :bits-per-pixel 1 :format :xy-pixmap :bytes-per-line padded-bytes-per-line - :unit unit :byte-lsb-first-p byte-lsb-first-p - :bit-lsb-first-p bit-lsb-first-p :unit unit :pad pad))) + :unit unit :pad pad + :byte-lsb-first-p byte-lsb-first-p :bit-lsb-first-p bit-lsb-first-p))) (defun read-z-format-image-x (buffer-bbuf index length data width height depth @@ -1168,53 +1201,8 @@ :width width :height height :depth depth :data data :bits-per-pixel bits-per-pixel :format :z-pixmap :bytes-per-line padded-bytes-per-line - :unit unit :byte-lsb-first-p byte-lsb-first-p - :bit-lsb-first-p bit-lsb-first-p :unit unit :pad pad))) - -(defmacro with-image-data-buffer ((buffer size) &body body) - (declare (indentation 0 4 1 1)) - `(let ((.reply-buffer. (allocate-reply-buffer ,size))) - (declare (type reply-buffer .reply-buffer.)) - (unwind-protect - (let ((,buffer (reply-ibuf8 .reply-buffer.))) - (declare (type buffer-bytes ,buffer)) - (with-vector (,buffer buffer-bytes) - ,@body)) - (deallocate-reply-buffer .reply-buffer.)))) - -(defun read-image-xy-data (bbuf index pixarray x y width height - padded-bytes-per-line - unit byte-lsb-first-p bit-lsb-first-p) - (declare (type buffer-bytes bbuf) - (type array-index index padded-bytes-per-line) - (type pixarray pixarray) - (type card16 x y width height) - (type (member 8 16 32) unit) - (type boolean byte-lsb-first-p bit-lsb-first-p)) - (let* ((x1 (index* (index-floor x unit) unit)) - (x (index- x x1)) - (width1 (index+ width x)) - (padded-bits-per-line1 - (index* (index-ceiling width1 *image-pad*) *image-pad*)) - (padded-bytes-per-line1 (index-ceiling padded-bits-per-line1 8))) - (declare (type card16 x1 x width1) - (type array-index padded-bits-per-line1 padded-bytes-per-line1)) - (with-image-data-buffer (buf (index* height padded-bytes-per-line1)) - (image-swap-xy - bbuf buf - (index+ index - (index* y padded-bytes-per-line) - (index-floor x1 8)) - 0 - (index-ceiling width1 8) - padded-bytes-per-line padded-bytes-per-line1 - height - unit byte-lsb-first-p bit-lsb-first-p - *image-unit* *image-byte-lsb-first-p* *image-bit-lsb-first-p*) - (unless (fast-read-pixarray - buf 0 pixarray x 0 width height padded-bytes-per-line1 1) - (read-pixarray-1 - buf 0 pixarray x 0 width height padded-bytes-per-line1))))) + :unit unit :pad pad + :byte-lsb-first-p byte-lsb-first-p :bit-lsb-first-p bit-lsb-first-p))) (defun read-image-xy (bbuf index length data x y width height depth padded-bytes-per-line padded-bytes-per-plane @@ -1250,64 +1238,12 @@ (make-array dimensions :element-type element-type)))) (declare (type pixarray-1 array)) (push array result) - (read-image-xy-data - bbuf index array x y width height - padded-bytes-per-line + (read-pixarray + bbuf index array x y width height padded-bytes-per-line 1 unit byte-lsb-first-p bit-lsb-first-p))) (create-image :width width :height height :depth depth :data data))) -(defun read-image-z-data (bbuf index pixarray x y width height - padded-bytes-per-line - bits-per-pixel - unit byte-lsb-first-p bit-lsb-first-p) - (declare (type buffer-bytes bbuf) - (type array-index index padded-bytes-per-line) - (type pixarray pixarray) - (type card16 x y width height) - (type (member 1 4 8 16 24 32) bits-per-pixel) - (type (member 8 16 32) unit) - (type boolean byte-lsb-first-p bit-lsb-first-p)) - (if (index= bits-per-pixel 1) - (read-image-xy-data - bbuf index pixarray x y width height - padded-bytes-per-line - unit byte-lsb-first-p bit-lsb-first-p) - (let* ((xbits (index* x bits-per-pixel)) - (xbits1 (index* (index-floor xbits unit) unit)) - (x1 (index-floor xbits1 bits-per-pixel)) - (x (index- x x1)) - (width1 (index+ width x)) - (bits-per-line1 (index* width1 bits-per-pixel)) - (bytes-per-line1 (index-ceiling bits-per-line1 8)) - (padded-bits-per-line1 - (index* (index-ceiling bits-per-line1 *image-pad*) *image-pad*)) - (padded-bytes-per-line1 - (index-ceiling padded-bits-per-line1 8))) - (declare (type array-index xbits xbits1 x1 x - bits-per-line1 bytes-per-line1 - padded-bits-per-line1 padded-bytes-per-line1)) - (with-image-data-buffer (buf (index* height padded-bytes-per-line1)) - (image-swap-z - bbuf buf - (index+ index - (index* y padded-bytes-per-line) - (index-floor xbits1 8)) - 0 - bytes-per-line1 - padded-bytes-per-line padded-bytes-per-line1 - height - bits-per-pixel byte-lsb-first-p *image-byte-lsb-first-p*) - (unless (fast-read-pixarray - buf 0 pixarray x 0 width height padded-bytes-per-line1 - bits-per-pixel) - (funcall - (ecase bits-per-pixel - (1 #'read-pixarray-1) (4 #'read-pixarray-4) - (8 #'read-pixarray-8) (16 #'read-pixarray-16) - (24 #'read-pixarray-24) (32 #'read-pixarray-32)) - buf 0 pixarray x 0 width height padded-bytes-per-line1)))))) - (defun read-image-z (bbuf index length data x y width height depth padded-bytes-per-line bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) @@ -1338,9 +1274,8 @@ (16 'pixarray-16-element-type) (24 'pixarray-24-element-type) (32 'pixarray-32-element-type))))) - (read-image-z-data - bbuf index data x y width height - padded-bytes-per-line bits-per-pixel + (read-pixarray + bbuf index data x y width height padded-bytes-per-line bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) (create-image :width width :height height :depth depth :data data @@ -1469,11 +1404,13 @@ ;;; PUT-IMAGE (defun write-pixarray-1 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-1 array) (type card16 x y width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((h 0 (index1+ h)) @@ -1528,12 +1465,14 @@ (aref array y (index+ x 7)))))))) (defun write-pixarray-4 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-4 array) (type int16 x y) (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((h 0 (index1+ h)) @@ -1562,12 +1501,14 @@ (aref array y (index+ x 1)))))))) (defun write-pixarray-8 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-8 array) (type int16 x y) (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((h 0 (index1+ h)) @@ -1583,12 +1524,14 @@ (setf (aref buffer-bbuf i) (the card8 (aref array y x))))))) (defun write-pixarray-16 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-16 array) (type int16 x y) (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((h 0 (index1+ h)) @@ -1609,12 +1552,14 @@ (write-image-load-byte 8 pixel 16))))))) (defun write-pixarray-24 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-24 array) (type int16 x y) (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((h 0 (index1+ h)) @@ -1637,12 +1582,14 @@ (write-image-load-byte 16 pixel 24))))))) (defun write-pixarray-32 (buffer-bbuf index array x y width height - padded-bytes-per-line) + padded-bytes-per-line bits-per-pixel) (declare (type buffer-bytes buffer-bbuf) (type pixarray-32 array) (type int16 x y) (type card16 width height) - (type array-index index padded-bytes-per-line)) + (type array-index index padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (ignore bits-per-pixel)) #.(declare-buffun) (with-vector (buffer-bbuf buffer-bytes) (do* ((h 0 (index1+ h)) @@ -1666,6 +1613,69 @@ (setf (aref buffer-bbuf (index+ i 2)) (write-image-load-byte 24 pixel 32))))))) +(defun write-pixarray-internal + (bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel write-pixarray-function + from-unit from-byte-lsb-first-p from-bit-lsb-first-p + to-unit to-byte-lsb-first-p to-bit-lsb-first-p) + (declare (type buffer-bytes bbuf) + (type pixarray pixarray) + (type card16 x y width height) + (type array-index boffset padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (type function write-pixarray-function) + (type (member 8 16 32) from-unit to-unit) + (type boolean from-byte-lsb-first-p from-bit-lsb-first-p + to-byte-lsb-first-p to-bit-lsb-first-p)) + (multiple-value-bind (image-swap-function image-swap-lsb-first-p) + (image-swap-function + bits-per-pixel + from-unit from-byte-lsb-first-p from-bit-lsb-first-p + to-unit to-byte-lsb-first-p to-bit-lsb-first-p) + (declare (type symbol image-swap-function) + (type boolean image-swap-lsb-first-p)) + (if (eq image-swap-function 'image-noswap) + (funcall + write-pixarray-function + bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel) + (with-image-data-buffer (buf (index* height padded-bytes-per-line)) + (funcall + write-pixarray-function + buf 0 pixarray x y width height padded-bytes-per-line + bits-per-pixel) + (funcall + (symbol-function image-swap-function) buf bbuf 0 boffset + (index-ceiling (index* width bits-per-pixel) 8) + padded-bytes-per-line padded-bytes-per-line height + image-swap-lsb-first-p))))) + +(defun write-pixarray + (bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) + (declare (type buffer-bytes bbuf) + (type pixarray pixarray) + (type card16 x y width height) + (type array-index boffset padded-bytes-per-line) + (type (member 1 4 8 16 24 32) bits-per-pixel) + (type (member 8 16 32) unit) + (type boolean byte-lsb-first-p bit-lsb-first-p)) + (unless (fast-write-pixarray + bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel unit byte-lsb-first-p bit-lsb-first-p) + (write-pixarray-internal + bbuf boffset pixarray x y width height padded-bytes-per-line + bits-per-pixel + (ecase bits-per-pixel + ( 1 #'write-pixarray-1 ) + ( 4 #'write-pixarray-4 ) + ( 8 #'write-pixarray-8 ) + (16 #'write-pixarray-16) + (24 #'write-pixarray-24) + (32 #'write-pixarray-32)) + *image-unit* *image-byte-lsb-first-p* *image-bit-lsb-first-p* + unit byte-lsb-first-p bit-lsb-first-p))) + (defun write-xy-format-image-x-data (data obuf data-start obuf-start x y width height from-padded-bytes-per-line to-padded-bytes-per-line @@ -1679,48 +1689,47 @@ (type boolean from-byte-lsb-first-p from-bit-lsb-first-p to-byte-lsb-first-p to-bit-lsb-first-p)) (assert (index-zerop (index-mod x 8))) - (let ((x-mod-unit (index-mod x from-bitmap-unit))) - (declare (type card16 x-mod-unit)) - (if (and (index-plusp x-mod-unit) - (not (eq from-byte-lsb-first-p from-bit-lsb-first-p))) - (let* ((temp-width (index+ width x-mod-unit)) - (temp-bytes-per-line (index-ceiling temp-width 8)) - (temp-padded-bits-per-line - (index* (index-ceiling temp-width from-bitmap-unit) - from-bitmap-unit)) - (temp-padded-bytes-per-line - (index-ceiling temp-padded-bits-per-line 8))) - (declare (type card16 temp-width temp-bytes-per-line - temp-padded-bits-per-line temp-padded-bytes-per-line)) - (with-image-data-buffer (buf (index* height - temp-padded-bytes-per-line)) - (image-swap-xy - data buf - (index+ data-start - (index* y from-padded-bytes-per-line) - (index-floor (index- x x-mod-unit) 8)) - 0 - temp-bytes-per-line - from-padded-bytes-per-line temp-padded-bytes-per-line - height - from-bitmap-unit from-byte-lsb-first-p from-bit-lsb-first-p - from-bitmap-unit to-byte-lsb-first-p to-byte-lsb-first-p) - (write-xy-format-image-x-data - buf obuf 0 obuf-start x-mod-unit 0 width height - temp-padded-bytes-per-line to-padded-bytes-per-line - from-bitmap-unit to-byte-lsb-first-p to-byte-lsb-first-p - to-bitmap-unit to-byte-lsb-first-p to-bit-lsb-first-p))) - (image-swap-xy - data obuf - (index+ data-start - (index* y from-padded-bytes-per-line) - (index-floor x 8)) - obuf-start - (index-ceiling width 8) - from-padded-bytes-per-line to-padded-bytes-per-line - height + (multiple-value-bind (image-swap-function image-swap-lsb-first-p) + (image-swap-function + 1 from-bitmap-unit from-byte-lsb-first-p from-bit-lsb-first-p - to-bitmap-unit to-byte-lsb-first-p to-bit-lsb-first-p)))) + to-bitmap-unit to-byte-lsb-first-p to-bit-lsb-first-p) + (declare (type symbol image-swap-function) + (type boolean image-swap-lsb-first-p)) + (let ((x-mod-unit (index-mod x from-bitmap-unit))) + (declare (type card16 x-mod-unit)) + (if (and (index-plusp x-mod-unit) + (not (eq from-byte-lsb-first-p from-bit-lsb-first-p))) + (let* ((temp-width (index+ width x-mod-unit)) + (temp-bytes-per-line (index-ceiling temp-width 8)) + (temp-padded-bits-per-line + (index* (index-ceiling temp-width from-bitmap-unit) + from-bitmap-unit)) + (temp-padded-bytes-per-line + (index-ceiling temp-padded-bits-per-line 8))) + (declare (type card16 temp-width temp-bytes-per-line + temp-padded-bits-per-line temp-padded-bytes-per-line)) + (with-image-data-buffer + (buf (index* height temp-padded-bytes-per-line)) + (funcall + (symbol-function image-swap-function) data buf + (index+ data-start + (index* y from-padded-bytes-per-line) + (index-floor (index- x x-mod-unit) 8)) + 0 temp-bytes-per-line from-padded-bytes-per-line + temp-padded-bytes-per-line height image-swap-lsb-first-p) + (write-xy-format-image-x-data + buf obuf 0 obuf-start x-mod-unit 0 width height + temp-padded-bytes-per-line to-padded-bytes-per-line + from-bitmap-unit to-byte-lsb-first-p to-byte-lsb-first-p + to-bitmap-unit to-byte-lsb-first-p to-bit-lsb-first-p))) + (funcall + (symbol-function image-swap-function) data obuf + (index+ data-start + (index* y from-padded-bytes-per-line) + (index-floor x 8)) + obuf-start (index-ceiling width 8) from-padded-bytes-per-line + to-padded-bytes-per-line height image-swap-lsb-first-p))))) (defun write-xy-format-image-x (display image src-x src-y width height @@ -1794,17 +1803,24 @@ (with-image-data-buffer (buf (index* height to-padded-bytes-per-line)) (image-swap-nibbles-left data buf srcoff 0 srclen - from-padded-bytes-per-line to-padded-bytes-per-line height) + from-padded-bytes-per-line to-padded-bytes-per-line height nil) (write-z-format-image-x-data buf obuf 0 obuf-start 0 0 width height to-padded-bytes-per-line to-padded-bytes-per-line bits-per-pixel from-bitmap-unit from-byte-lsb-first-p from-bit-lsb-first-p to-bitmap-unit to-byte-lsb-first-p to-bit-lsb-first-p)) - (image-swap-z - data obuf srcoff obuf-start srclen - from-padded-bytes-per-line to-padded-bytes-per-line height - bits-per-pixel from-byte-lsb-first-p to-byte-lsb-first-p))))) + (multiple-value-bind (image-swap-function image-swap-lsb-first-p) + (image-swap-function + bits-per-pixel + from-bitmap-unit from-byte-lsb-first-p from-bit-lsb-first-p + to-bitmap-unit to-byte-lsb-first-p to-bit-lsb-first-p) + (declare (type symbol image-swap-function) + (type boolean image-swap-lsb-first-p)) + (funcall + (symbol-function image-swap-function) data obuf srcoff obuf-start + srclen from-padded-bytes-per-line to-padded-bytes-per-line height + image-swap-lsb-first-p)))))) (defun write-z-format-image-x (display image src-x src-y width height padded-bytes-per-line @@ -1838,26 +1854,6 @@ (when (index-zerop (index-decf height nlines)) (return)))) (buffer-flush display))) -(defun write-image-xy-data (obuf boffset pixarray x y width height - padded-bytes-per-line - unit byte-lsb-first-p bit-lsb-first-p) - (declare (type buffer-bytes obuf) - (type array-index boffset padded-bytes-per-line) - (type pixarray-1 pixarray) - (type card16 x y width height) - (type (member 8 16 32) unit) - (type boolean byte-lsb-first-p bit-lsb-first-p)) - (with-image-data-buffer (buf (index* height padded-bytes-per-line)) - (unless (fast-write-pixarray - buf 0 pixarray x y width height padded-bytes-per-line 1) - (write-pixarray-1 - buf 0 pixarray x y width height padded-bytes-per-line)) - (image-swap-xy - buf obuf 0 boffset (index-ceiling width 8) - padded-bytes-per-line padded-bytes-per-line height - *image-unit* *image-byte-lsb-first-p* *image-bit-lsb-first-p* - unit byte-lsb-first-p bit-lsb-first-p))) - (defun write-image-xy (display image src-x src-y width height padded-bytes-per-line unit byte-lsb-first-p bit-lsb-first-p) @@ -1882,10 +1878,10 @@ height))) (declare (type array-index nlines)) (when (index-plusp nlines) - (write-image-xy-data + (write-pixarray (buffer-obuf8 display) (buffer-boffset display) bitmap src-x src-y width nlines - padded-bytes-per-line + padded-bytes-per-line 1 unit byte-lsb-first-p bit-lsb-first-p) (index-incf (buffer-boffset display) (index* nlines padded-bytes-per-line)) @@ -1893,37 +1889,6 @@ (when (index-zerop (index-decf height nlines)) (return)))) (buffer-flush display))))) -(defun write-image-z-data (obuf boffset pixarray x y width height - padded-bytes-per-line bits-per-pixel - unit byte-lsb-first-p bit-lsb-first-p) - (declare (type buffer-bytes obuf) - (type array-index boffset padded-bytes-per-line) - (type pixarray-1 pixarray) - (type card16 x y width height) - (type (member 1 4 8 16 24 32) bits-per-pixel) - (type (member 8 16 32) unit) - (type boolean byte-lsb-first-p bit-lsb-first-p)) - (if (index= bits-per-pixel 1) - (write-image-xy-data - obuf boffset pixarray x y width height padded-bytes-per-line - unit byte-lsb-first-p bit-lsb-first-p) - (with-image-data-buffer (buf (index* height padded-bytes-per-line)) - (unless (fast-write-pixarray - buf 0 pixarray x y width height - padded-bytes-per-line bits-per-pixel) - (funcall - (ecase bits-per-pixel - (1 #'write-pixarray-1) (4 #'write-pixarray-4) - (8 #'write-pixarray-8) (16 #'write-pixarray-16) - (24 #'write-pixarray-24) (32 #'write-pixarray-32)) - buf 0 pixarray x y width height padded-bytes-per-line)) - (image-swap-z - buf obuf 0 boffset - (index-ceiling (index* width bits-per-pixel) 8) - padded-bytes-per-line padded-bytes-per-line - height bits-per-pixel - *image-byte-lsb-first-p* byte-lsb-first-p)))) - (defun write-image-z (display image src-x src-y width height padded-bytes-per-line unit byte-lsb-first-p bit-lsb-first-p) @@ -1944,7 +1909,7 @@ (declare (type (member 1 4 8 16 24 32) bits-per-pixel) (type array-index nlines)) (when (index-plusp nlines) - (write-image-z-data + (write-pixarray (buffer-obuf8 display) (buffer-boffset display) (image-z-pixarray image) src-x src-y width nlines padded-bytes-per-line bits-per-pixel @@ -2019,7 +1984,18 @@ (let ((pixmap-format (find depth (display-pixmap-formats display) :key #'pixmap-format-depth))) - (declare (type pixmap-format pixmap-format)) + (declare (type (or null pixmap-format) pixmap-format)) + (if (null pixmap-format) + (error "The depth of the image ~s does not match any server pixmap format." image)) + (if (not (= (typecase image + (image-z (image-z-bits-per-pixel image)) + (image-x (image-x-bits-per-pixel image))) + (pixmap-format-bits-per-pixel pixmap-format))) + ;; We could try to use the "/* XXX slow, but works */" + ;; code in XPutImage from X11R4 here. However, that + ;; would require considerable support code + ;; (see XImUtil.c, etc). + (error "The bits-per-pixel of the image ~s does not match any server pixmap format." image)) (values (pixmap-format-scanline-pad pixmap-format) (pixmap-format-bits-per-pixel pixmap-format)))))) (declare (type (member 8 16 32) pad) @@ -2160,8 +2136,8 @@ :width width :height height :depth (image-depth image) :data obuf :format (image-x-format image) :bits-per-pixel 1 :bytes-per-line padded-bytes-per-line - :unit unit :byte-lsb-first-p byte-lsb-first-p - :bit-lsb-first-p bit-lsb-first-p :pad pad :left-pad left-pad))) + :unit unit :pad pad :left-pad left-pad + :byte-lsb-first-p byte-lsb-first-p :bit-lsb-first-p bit-lsb-first-p))) (defun z-format-image-x->image-x (image x y width height) (declare (type image-x image) @@ -2201,8 +2177,8 @@ :width width :height height :depth (image-depth image) :data obuf :format :z-pixmap :bits-per-pixel bits-per-pixel :bytes-per-line padded-bytes-per-line - :unit unit :byte-lsb-first-p byte-lsb-first-p - :bit-lsb-first-p bit-lsb-first-p :pad pad :left-pad left-pad))) + :unit unit :pad pad :left-pad left-pad + :byte-lsb-first-p byte-lsb-first-p :bit-lsb-first-p bit-lsb-first-p))) (defun image-x->image-x (image x y width height) (declare (type image-x image) @@ -2306,19 +2282,17 @@ (declare (type array-index index)) (dolist (bitmap (image-xy-bitmap-list image)) (declare (type pixarray-1 bitmap)) - (unless (fast-write-pixarray - data index bitmap x y width height - padded-bytes-per-line 1) - (write-pixarray-1 - data index bitmap x y width height - padded-bytes-per-line)) + (write-pixarray + data index bitmap x y width height padded-bytes-per-line 1 + *image-unit* *image-byte-lsb-first-p* *image-bit-lsb-first-p*) (index-incf index padded-bytes-per-plane))) (create-image :width width :height height :depth (image-depth image) :data data :format :xy-pixmap :bits-per-pixel 1 :bytes-per-line padded-bytes-per-line - :unit *image-unit* :byte-lsb-first-p *image-byte-lsb-first-p* - :bit-lsb-first-p *image-bit-lsb-first-p* :pad *image-pad*))) + :unit *image-unit* :pad *image-pad* + :byte-lsb-first-p *image-byte-lsb-first-p* + :bit-lsb-first-p *image-bit-lsb-first-p*))) (defun image-xy->image-xy (image x y width height) (declare (type image-xy image) @@ -2349,28 +2323,24 @@ (padded-bytes-per-line (index-ceiling padded-bits-per-line 8)) (bytes-total (index* padded-bytes-per-line height (image-depth image))) - (data (make-array bytes-total :element-type 'card8))) + (data (make-array bytes-total :element-type 'card8)) + (bits-per-pixel (image-z-bits-per-pixel image))) (declare (type array-index bits-per-line padded-bits-per-line padded-bytes-per-line bytes-total) - (type buffer-bytes data)) - (unless (fast-write-pixarray - data 0 (image-z-pixarray image) x y width height - padded-bytes-per-line - (image-z-bits-per-pixel image)) - (funcall - (ecase (image-z-bits-per-pixel image) - (1 #'write-pixarray-1) (4 #'write-pixarray-4) - (8 #'write-pixarray-8) (16 #'write-pixarray-16) - (24 #'write-pixarray-24) (32 #'write-pixarray-32)) - data 0 (image-z-pixarray image) x y width height - padded-bytes-per-line)) + (type buffer-bytes data) + (type (member 1 4 8 16 24 32) bits-per-pixel)) + (write-pixarray + data 0 (image-z-pixarray image) x y width height padded-bytes-per-line + (image-z-bits-per-pixel image) + *image-unit* *image-byte-lsb-first-p* *image-bit-lsb-first-p*) (create-image :width width :height height :depth (image-depth image) :data data :format :z-pixmap - :bits-per-pixel (image-z-bits-per-pixel image) + :bits-per-pixel bits-per-pixel :bytes-per-line padded-bytes-per-line - :unit *image-unit* :byte-lsb-first-p *image-byte-lsb-first-p* - :bit-lsb-first-p *image-bit-lsb-first-p* :pad *image-pad*))) + :unit *image-unit* :pad *image-pad* + :byte-lsb-first-p *image-byte-lsb-first-p* + :bit-lsb-first-p *image-bit-lsb-first-p*))) (defun image-z->image-xy (image x y width height) (declare (type image-z image) @@ -2444,9 +2414,7 @@ (let ((line "") (properties nil) (name nil) - (name-end nil) - (*package* (find-package 'keyword)) - (*read-base* 10)) + (name-end nil)) (declare (type string line) (type stringable name) (type list properties)) @@ -2514,9 +2482,10 @@ (assoc char '((#\0 0) (#\1 1) (#\2 2) (#\3 3) (#\4 4) (#\5 5) (#\6 6) (#\7 7) - (#\8 8) (#\9 6) (#\a 10) (#\b 11) + (#\8 8) (#\9 9) (#\a 10) (#\b 11) (#\c 12) (#\d 13) (#\e 14) (#\f 15)) :test #'char-equal)))) + (declare (inline parse-hex)) ;; Read data ;; Note: using read-line instead of read-char would be 20% faster, ;; but would cons a lot of garbage... @@ -2538,8 +2507,8 @@ :depth depth :bits-per-pixel bits-per-pixel :data data :plist properties :format :z-pixmap :bytes-per-line padded-bytes-per-line - :unit 32 :byte-lsb-first-p t :bit-lsb-first-p t - :pad 32 :left-pad left-pad)))))) + :unit 32 :pad 32 :left-pad left-pad + :byte-lsb-first-p t :bit-lsb-first-p t)))))) (defun write-bitmap-file (pathname image &optional name) ;; Writes an image to a C include file in standard X11 format @@ -2577,19 +2546,17 @@ (setq plist (copy-list plist)) (index-incf (getf plist :x-hot) left-pad)) (with-image-data-buffer (data last) - (if (index> bits-per-pixel 1) - (image-swap-z - (image-x-data image) data 0 0 bytes-per-line - (image-x-bytes-per-line image) bytes-per-line - height bits-per-pixel - (image-x-byte-lsb-first-p image) t) - (image-swap-xy - (image-x-data image) data 0 0 bytes-per-line - (image-x-bytes-per-line image) bytes-per-line - height - (image-x-unit image) (image-x-byte-lsb-first-p image) - (image-x-bit-lsb-first-p image) - 32 t t)) + (multiple-value-bind (image-swap-function image-swap-lsb-first-p) + (image-swap-function + bits-per-pixel + (image-x-unit image) (image-x-byte-lsb-first-p image) + (image-x-bit-lsb-first-p image) 32 t t) + (declare (type symbol image-swap-function) + (type boolean image-swap-lsb-first-p)) + (funcall + (symbol-function image-swap-function) (image-x-data image) + data 0 0 bytes-per-line (image-x-bytes-per-line image) + bytes-per-line height image-swap-lsb-first-p)) (with-vector (data buffer-bytes) (setq name (string-downcase (string name))) (with-open-file (fstream pathname :direction :output) diff --git a/clx/input.lisp b/clx/input.lisp index 0b62eed48..d0b72c33b 100644 --- a/clx/input.lisp +++ b/clx/input.lisp @@ -1,4 +1,4 @@ -;;; -*- Mode: Lisp; Package: Xlib; Log: clx.log -*- +;;; -*- Mode: LISP; Syntax: Common-lisp; Package: XLIB; Base: 10; Lowercase: Yes -*- ;;; This file contains definitions for the DISPLAY object for Common-Lisp X windows version 11 @@ -27,71 +27,6 @@ (in-package :xlib) -(export '( - event-listen - queue-event - process-event - make-event-handlers - event-handler - event-case - event-cond - discard-current-event - request-error - value-error - window-error - pixmap-error - atom-error - cursor-error - font-error - match-error - drawable-error - access-error - alloc-error - colormap-error - gcontext-error - id-choice-error - name-error - length-error - implementation-error - request-error - resource-error - unknown-error - access-error - alloc-error - atom-error - colormap-error - cursor-error - drawable-error - font-error - gcontext-error - id-choice-error - illegal-request-error - length-error - match-error - name-error - pixmap-error - value-error - window-error - implementation-error - #-(or ansi-common-lisp CMU) type-error - closed-display - lookup-error - connection-failure - reply-length-error - reply-timeout - sequence-error - unexpected-reply - missing-parameter - invalid-font - device-busy - get-external-event-code - define-extension - extension-opcode - define-error - decode-core-error - declare-event - )) - ;; Event Resource (defvar *event-free-list* nil) ;; List of unused (processed) events @@ -199,7 +134,7 @@ ;; Returns NIL when the event-code is for an extension that isn't handled. (declare (type display display) (type card8 code)) - (declare (values (or nil card8))) + (declare (values (or null card8))) (setq code (logand #x7f code)) (if (< code *first-extension-event-code*) code @@ -232,9 +167,6 @@ ;; This is a macro to enable NAME to be interned for fast run-time ;; retrieval. ;; Note: The case of NAME is important. - (declare (type display display) - (type stringable name)) - (declare (values card8)) (let ((name-symbol (kintern name))) ;; Intern name in the keyword package `(or (second (assoc ',name-symbol (display-extension-alist ,display))) (x-error 'absent-extension :name ',name-symbol :display ,display)))) @@ -315,6 +247,8 @@ (if reply-buffer (deallocate-reply-buffer reply-buffer) (return nil))))) + ;; Clear pointers to help the Garbage Collector + (setf (pending-command-process pending-command) nil) ;; Deallocate this pending-command (threaded-atomic-push pending-command *pending-command-free-list* pending-command-next pending-command) @@ -451,7 +385,10 @@ (type boolean force-output-p) (dynamic-extent predicate-args)) (declare (type function predicate) - (downward-funarg predicate)) + #+clx-ansi-common-lisp + (dynamic-extent predicate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg predicate)) (let ((reply-buffer nil) (token (or (current-process) (cons nil nil)))) (declare (type (or null reply-buffer) reply-buffer)) @@ -479,7 +416,10 @@ (declare (type display display) (dynamic-extent predicate-args) (type function predicate) - (downward-funarg predicate)) + #+clx-ansi-common-lisp + (dynamic-extent predicate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg predicate)) (or (apply predicate predicate-args) (null (display-input-in-progress display)) (not (null (display-dead display))))) @@ -625,24 +565,15 @@ (let* ((current-event-symbol (car (display-current-event-symbol display))) (current-event (and (boundp current-event-symbol) (symbol-value current-event-symbol))) - ;; #+CMU Change how we bind queue here: - ;; Old line: - ;; (queue (or current-event (display-event-queue-head display)))) - ;; New binding causes this routine to correctly count pending events - ;; when called from within an EVENT-CASE branch. This previously - ;; was counting one more than it should, but calling EVENT-CASE - ;; recursively would wedge waiting for an event because that one - ;; event really wasn't available for handling. (queue (if current-event (reply-next (the reply-buffer current-event)) - (display-event-queue-head display)))) + (display-event-queue-head display)))) (declare (type symbol current-event-symbol) (type (or null reply-buffer) current-event queue)) (if queue (values (with-event-queue-internal (display :timeout timeout) - (threaded-length (or current-event (display-event-queue-head display)) - reply-next reply-buffer)) + (threaded-length queue reply-next reply-buffer)) nil) (with-event-queue (display :timeout timeout :inline t) (let ((eof-or-timeout (wait-for-event display timeout nil))) @@ -650,7 +581,7 @@ (values nil eof-or-timeout) (values (with-event-queue-internal (display :timeout timeout) - (threaded-length (display-event-queue-head display) + (threaded-length (display-new-events display) reply-next reply-buffer)) nil))))))) @@ -826,7 +757,10 @@ (declare (type display display) (type reply-buffer event)) (declare (type function handler) - (downward-funarg handler)) + #+clx-ansi-common-lisp + (dynamic-extent handler) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg handler)) (reading-event (event :display display :sizes (8 16 ,@get-sizes)) (funcall handler :display display @@ -874,7 +808,7 @@ ;; for button-press and button-release, code is the button number (data code) (card16 sequence) - (card32 time) + ((or null card32) time) (window root (window event-window)) ((or null window) child) (int16 root-x root-y x y) @@ -885,7 +819,7 @@ (declare-event :motion-notify ((data boolean) hint-p) (card16 sequence) - (card32 time) + ((or null card32) time) (window root (window event-window)) ((or null window) child) (int16 root-x root-y x y) @@ -895,7 +829,7 @@ (declare-event (:enter-notify :leave-notify) ((data (member8 :ancestor :virtual :inferior :nonlinear :nonlinear-virtual)) kind) (card16 sequence) - (card32 time) + ((or null card32) time) (window root (window event-window)) ((or null window) child) (int16 root-x root-y x y) @@ -1011,19 +945,19 @@ (card16 sequence) (window (window event-window)) (keyword atom) ;; keyword - (card32 time) + ((or null card32) time) ((member16 :new-value :deleted) state)) (declare-event :selection-clear (card16 sequence) - (card32 time) + ((or null card32) time) (window (window event-window)) (keyword selection) ;; keyword ) (declare-event :selection-request (card16 sequence) - (card32 time) + ((or null card32) time) (window (window event-window) requestor) (keyword selection target) ((or null keyword) property) @@ -1031,7 +965,7 @@ (declare-event :selection-notify (card16 sequence) - (card32 time) + ((or null card32) time) (window (window event-window)) (keyword selection target) ((or null keyword) property) @@ -1103,8 +1037,6 @@ (setf (display-new-events display) (reply-next event)))) (values event nil))) -(defvar *event-loop-version* 0) - (defun dequeue-event (display event) (declare (type display display) (type reply-buffer event) @@ -1149,19 +1081,14 @@ (declare (type (or null reply-buffer) next)) (when (symbol-value current-event-discarded-p-symbol) (setf (symbol-value current-event-discarded-p-symbol) nil) - (ecase *event-loop-version* - ;; in version 0 discard-current-event dequeues the event. - (0 ) - ;; in version 1 event-loop-step-after dequeues the event. - (1 (setq next (dequeue-event display event)))) + (setq next (dequeue-event display event)) (deallocate-event event)) (setf (symbol-value current-event-symbol) next))) (defmacro event-loop ((display event timeout force-output-p discard-p) &body body) ;; Bind EVENT to the events for DISPLAY. ;; This is the "GUTS" of process-event and event-case. - `(let ((*event-loop-version* 1) - (.display. ,display) + `(let ((.display. ,display) (.timeout. ,timeout) (.force-output-p. ,force-output-p) (.discard-p. ,discard-p)) @@ -1212,12 +1139,6 @@ (declare (type list symbols) (type (or null reply-buffer) event)) (unless (null event) - (ecase *event-loop-version* - ;; in version 0 discard-current-event dequeues the event. - (0 (setf (reply-next (the reply-buffer event)) - (dequeue-event display event))) - ;; in version 1 event-loop-step-after dequeues the event. - (1 )) ;; Set the discarded-p flag (let ((current-event-discarded-p-symbol (second symbols))) (declare (type symbol current-event-discarded-p-symbol)) @@ -1250,7 +1171,10 @@ (type (or null number) timeout) (type boolean peek-p discard-p force-output-p)) (declare (type t handler) - (downward-funarg #+Genera * #-Genera handler)) + #+clx-ansi-common-lisp + (dynamic-extent handler) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg #+Genera * #-Genera handler)) (event-loop (display event timeout force-output-p discard-p) (let* ((event-code (event-code event)) ;; Event decoder defined by DECLARE-EVENT (event-decoder (and (index< event-code (length *event-handler-vector*)) @@ -1603,15 +1527,15 @@ (when (= code (second extension)) (return (first extension)))))) -#-(or ansi-common-lisp excl lcl3.0 CMU) +#-(or clx-ansi-common-lisp excl lcl3.0) (define-condition request-error (x-error) - (display - error-key - major - minor - sequence - current-sequence - asynchronous) + ((display :reader request-error-display) + (error-key :reader request-error-error-key) + (major :reader request-error-major) + (minor :reader request-error-minor) + (sequence :reader request-error-sequence) + (current-sequence :reader request-error-current-sequence) + (asynchronous :reader request-error-asynchronous)) (:report report-request-error)) (defun report-request-error (condition stream) @@ -1628,201 +1552,224 @@ ;; Since the :report arg is evaluated as (function report-request-error) the ;; define-condition must come after the function definition. -#+(or ansi-common-lisp excl lcl3.0 CMU) +#+(or clx-ansi-common-lisp excl lcl3.0) (define-condition request-error (x-error) - (display - error-key - major - minor - sequence - current-sequence - asynchronous) + ((display :reader request-error-display :initarg :display) + (error-key :reader request-error-error-key :initarg :error-key) + (major :reader request-error-major :initarg :major) + (minor :reader request-error-minor :initarg :minor) + (sequence :reader request-error-sequence :initarg :sequence) + (current-sequence :reader request-error-current-sequence :initarg :current-sequence) + (asynchronous :reader request-error-asynchronous :initarg :asynchronous)) (:report report-request-error)) (define-condition resource-error (request-error) - (resource-id) - (:report (lambda (condition stream) - (report-request-error condition stream) - (format stream " ID #x~x" (resource-error-resource-id condition))))) + ((resource-id :reader resource-error-resource-id :initarg :resource-id)) + (:report + (lambda (condition stream) + (report-request-error condition stream) + (format stream " ID #x~x" (resource-error-resource-id condition))))) (define-condition unknown-error (request-error) - (error-code) - (:report (lambda (condition stream) - (report-request-error condition stream) - (format stream " Error Code ~d." (unknown-error-error-code condition))))) + ((error-code :reader unknown-error-error-code :initarg :error-code)) + (:report + (lambda (condition stream) + (report-request-error condition stream) + (format stream " Error Code ~d." (unknown-error-error-code condition))))) -(define-condition access-error (request-error)) +(define-condition access-error (request-error) ()) -(define-condition alloc-error (request-error)) +(define-condition alloc-error (request-error) ()) (define-condition atom-error (request-error) - (atom-id) - (:report (lambda (condition stream) - (report-request-error condition stream) - (format stream " Atom-ID #x~x" (atom-error-atom-id condition))))) + ((atom-id :reader atom-error-atom-id :initarg :atom-id)) + (:report + (lambda (condition stream) + (report-request-error condition stream) + (format stream " Atom-ID #x~x" (atom-error-atom-id condition))))) -(define-condition colormap-error (resource-error)) +(define-condition colormap-error (resource-error) ()) -(define-condition cursor-error (resource-error)) +(define-condition cursor-error (resource-error) ()) -(define-condition drawable-error (resource-error)) +(define-condition drawable-error (resource-error) ()) -(define-condition font-error (resource-error)) +(define-condition font-error (resource-error) ()) -(define-condition gcontext-error (resource-error)) +(define-condition gcontext-error (resource-error) ()) -(define-condition id-choice-error (resource-error)) +(define-condition id-choice-error (resource-error) ()) -(define-condition illegal-request-error (request-error)) +(define-condition illegal-request-error (request-error) ()) -(define-condition length-error (request-error)) +(define-condition length-error (request-error) ()) -(define-condition match-error (request-error)) +(define-condition match-error (request-error) ()) -(define-condition name-error (request-error)) +(define-condition name-error (request-error) ()) -(define-condition pixmap-error (resource-error)) +(define-condition pixmap-error (resource-error) ()) (define-condition value-error (request-error) - (value) - (:report (lambda (condition stream) - (report-request-error condition stream) - (format stream " Value ~d." (value-error-value condition))))) + ((value :reader value-error-value :initarg :value)) + (:report + (lambda (condition stream) + (report-request-error condition stream) + (format stream " Value ~d." (value-error-value condition))))) -(define-condition window-error (resource-error)) +(define-condition window-error (resource-error)()) -(define-condition implementation-error (request-error)) +(define-condition implementation-error (request-error) ()) ;;----------------------------------------------------------------------------- ;; Internal error conditions signaled by CLX -(define-condition x-type-error (type-error) - (type-string) - (:report (lambda (condition stream) - (format stream "~s isn't a ~a" - (type-error-datum condition) - (or (x-type-error-type-string condition) - (type-error-expected-type condition)))))) +(define-condition x-type-error (type-error x-error) + ((type-string :reader x-type-error-type-string :initarg :type-string)) + (:report + (lambda (condition stream) + (format stream "~s isn't a ~a" + (type-error-datum condition) + (or (x-type-error-type-string condition) + (type-error-expected-type condition)))))) (define-condition closed-display (x-error) - (display) - (:report (lambda (condition stream) - (format stream "Attempt to use closed display ~s" - (closed-display-display condition))))) + ((display :reader closed-display-display :initarg :display)) + (:report + (lambda (condition stream) + (format stream "Attempt to use closed display ~s" + (closed-display-display condition))))) (define-condition lookup-error (x-error) - (id display type object) - (:report (lambda (condition stream) - (format stream "ID ~d from display ~s should have been a ~s, but was ~s" - (lookup-error-id condition) - (lookup-error-display condition) - (lookup-error-type condition) - (lookup-error-object condition))))) + ((id :reader lookup-error-id :initarg :id) + (display :reader lookup-error-display :initarg :display) + (type :reader lookup-error-type :initarg :type) + (object :reader lookup-error-object :initarg :object)) + (:report + (lambda (condition stream) + (format stream "ID ~d from display ~s should have been a ~s, but was ~s" + (lookup-error-id condition) + (lookup-error-display condition) + (lookup-error-type condition) + (lookup-error-object condition))))) (define-condition connection-failure (x-error) - (major-version - minor-version - host - display - reason) - (:report (lambda (condition stream) - (format stream "Connection failure to X~d.~d server ~a display ~d: ~a" - (connection-failure-major-version condition) - (connection-failure-minor-version condition) - (connection-failure-host condition) - (connection-failure-display condition) - (connection-failure-reason condition))))) + ((major-version :reader connection-failure-major-version :initarg :major-version) + (minor-version :reader connection-failure-minor-version :initarg :minor-version) + (host :reader connection-failure-host :initarg :host) + (display :reader connection-failure-display :initarg :display) + (reason :reader connection-failure-reason :initarg :reason)) + (:report + (lambda (condition stream) + (format stream "Connection failure to X~d.~d server ~a display ~d: ~a" + (connection-failure-major-version condition) + (connection-failure-minor-version condition) + (connection-failure-host condition) + (connection-failure-display condition) + (connection-failure-reason condition))))) (define-condition reply-length-error (x-error) - (reply-length - expected-length - display) - (:report (lambda (condition stream) - (format stream "Reply length was ~d when ~d words were expected for display ~s" - (reply-length-error-reply-length condition) - (reply-length-error-expected-length condition) - (reply-length-error-display condition))))) + ((reply-length :reader reply-length-error-reply-length :initarg :reply-length) + (expected-length :reader reply-length-error-expected-length :initarg :expected-length) + (display :reader reply-length-error-display :initarg :display)) + (:report + (lambda (condition stream) + (format stream "Reply length was ~d when ~d words were expected for display ~s" + (reply-length-error-reply-length condition) + (reply-length-error-expected-length condition) + (reply-length-error-display condition))))) (define-condition reply-timeout (x-error) - (timeout - display) - (:report (lambda (condition stream) - (format stream "Timeout after waiting ~d seconds for a reply for display ~s" - (reply-timeout-timeout condition) - (reply-timeout-display condition))))) + ((timeout :reader reply-timeout-timeout :initarg :timeout) + (display :reader reply-timeout-display :initarg :display)) + (:report + (lambda (condition stream) + (format stream "Timeout after waiting ~d seconds for a reply for display ~s" + (reply-timeout-timeout condition) + (reply-timeout-display condition))))) (define-condition sequence-error (x-error) - (display - req-sequence - msg-sequence) - (:report (lambda (condition stream) - (format stream "Reply out of sequence for display ~s.~% Expected ~d, Got ~d" - (sequence-error-display condition) - (sequence-error-req-sequence condition) - (sequence-error-msg-sequence condition))))) + ((display :reader sequence-error-display :initarg :display) + (req-sequence :reader sequence-error-req-sequence :initarg :req-sequence) + (msg-sequence :reader sequence-error-msg-sequence :initarg :msg-sequence)) + (:report + (lambda (condition stream) + (format stream "Reply out of sequence for display ~s.~% Expected ~d, Got ~d" + (sequence-error-display condition) + (sequence-error-req-sequence condition) + (sequence-error-msg-sequence condition))))) (define-condition unexpected-reply (x-error) - (display - msg-sequence - req-sequence - length) - (:report (lambda (condition stream) - (format stream "Display ~s received a server reply when none was expected.~@ - Last request sequence ~d Reply Sequence ~d Reply Length ~d bytes." - (unexpected-reply-display condition) - (unexpected-reply-req-sequence condition) - (unexpected-reply-msg-sequence condition) - (unexpected-reply-length condition))))) + ((display :reader unexpected-reply-display :initarg :display) + (msg-sequence :reader unexpected-reply-msg-sequence :initarg :msg-sequence) + (req-sequence :reader unexpected-reply-req-sequence :initarg :req-sequence) + (length :reader unexpected-reply-length :initarg :length)) + (:report + (lambda (condition stream) + (format stream "Display ~s received a server reply when none was expected.~@ + Last request sequence ~d Reply Sequence ~d Reply Length ~d bytes." + (unexpected-reply-display condition) + (unexpected-reply-req-sequence condition) + (unexpected-reply-msg-sequence condition) + (unexpected-reply-length condition))))) (define-condition missing-parameter (x-error) - (parameter) - (:report (lambda (condition stream) - (let ((parm (missing-parameter-parameter condition))) - (if (consp parm) - (format stream "One or more of the required parameters ~a is missing." - parm) - (format stream "Required parameter ~a is missing or null." parm)))))) + ((parameter :reader missing-parameter-parameter :initarg :parameter)) + (:report + (lambda (condition stream) + (let ((parm (missing-parameter-parameter condition))) + (if (consp parm) + (format stream "One or more of the required parameters ~a is missing." + parm) + (format stream "Required parameter ~a is missing or null." parm)))))) ;; This can be signalled anywhere a pseudo font access fails. (define-condition invalid-font (x-error) - (font) - (:report (lambda (condition stream) - (format stream "Can't access font ~s" (invalid-font-font condition))))) + ((font :reader invalid-font-font :initarg :font)) + (:report + (lambda (condition stream) + (format stream "Can't access font ~s" (invalid-font-font condition))))) (define-condition device-busy (x-error) - (display) - (:report (lambda (condition stream) - (format stream "Device busy for display ~s" - (device-busy-display condition))))) + ((display :reader device-busy-display :initarg :display)) + (:report + (lambda (condition stream) + (format stream "Device busy for display ~s" + (device-busy-display condition))))) (define-condition unimplemented-event (x-error) - (display - event-code) - (:report (lambda (condition stream) - (format stream "Event code ~d not implemented for display ~s" - (unimplemented-event-event-code condition) - (unimplemented-event-display condition))))) + ((display :reader unimplemented-event-display :initarg :display) + (event-code :reader unimplemented-event-event-code :initarg :event-code)) + (:report + (lambda (condition stream) + (format stream "Event code ~d not implemented for display ~s" + (unimplemented-event-event-code condition) + (unimplemented-event-display condition))))) (define-condition undefined-event (x-error) - (display - event-name) - (:report (lambda (condition stream) - (format stream "Event code ~d undefined for display ~s" - (undefined-event-event-name condition) - (undefined-event-display condition))))) + ((display :reader undefined-event-display :initarg :display) + (event-name :reader undefined-event-event-name :initarg :event-name)) + (:report + (lambda (condition stream) + (format stream "Event code ~d undefined for display ~s" + (undefined-event-event-name condition) + (undefined-event-display condition))))) (define-condition absent-extension (x-error) - (name display) - (:report (lambda (condition stream) - (format stream "Extension ~a isn't defined for display ~s" - (absent-extension-name condition) - (absent-extension-display condition))))) + ((name :reader absent-extension-name :initarg :name) + (display :reader absent-extension-display :initarg :display)) + (:report + (lambda (condition stream) + (format stream "Extension ~a isn't defined for display ~s" + (absent-extension-name condition) + (absent-extension-display condition))))) (define-condition inconsistent-parameters (x-error) - (parameters) - (:report (lambda (condition stream) - (format stream "inconsistent-parameters:~{ ~s~}" - (inconsistent-parameters-parameters condition))))) + ((parameters :reader inconsistent-parameters-parameters :initarg :parameters)) + (:report + (lambda (condition stream) + (format stream "inconsistent-parameters:~{ ~s~}" + (inconsistent-parameters-parameters condition))))) (defun get-error-key (display error-code) (declare (type display display) diff --git a/clx/macros.lisp b/clx/macros.lisp index fa829cdb2..6b60265f5 100644 --- a/clx/macros.lisp +++ b/clx/macros.lisp @@ -56,7 +56,7 @@ (increment (get name 'byte-width :not-found))) (when (eq increment :not-found) ;; Check for TYPE in a different package - (when (not (eq (symbol-package name) (find-package 'xlib))) + (when (not (eq (symbol-package name) *xlib-package*)) (setq name (xintern name)) (setq increment (get name 'byte-width :not-found))) (when (eq increment :not-found) @@ -381,7 +381,7 @@ (ecase format ((card8 int8) (maker 4)) - ((card16 int16) + ((card16 int16 char2b) (maker 2)) ((card32 int32) (maker 1))))))) @@ -529,7 +529,10 @@ (defun mask-get (index type-values body-function) (declare (type function body-function) - (downward-funarg body-function)) + #+clx-ansi-common-lisp + (dynamic-extent body-function) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg body-function)) ;; This is a function, because it must return more than one form (called by get-put-items) ;; Functions that use this must have a binding for %MASK (let* ((bit 0) @@ -560,7 +563,10 @@ (defun mask-put (index type-values body-function) (declare (type function body-function) - (downward-funarg body-function)) + #+clx-ansi-common-lisp + (dynamic-extent body-function) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg body-function)) ;; The MASK type writes a 32 bit mask with 1 bits for each non-nil value in TYPE-VALUES ;; A 32 bit value follows for each non-nil value. `((let ((%mask 0) @@ -621,7 +627,10 @@ (defun get-put-items (index type-args putp &optional body-function) (declare (type (or null function) body-function) - (downward-funarg body-function)) + #+clx-ansi-common-lisp + (dynamic-extent body-function) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg body-function)) ;; Given a lists of the form (type item item ... item) ;; Calls body-function with four arguments, a function name, ;; index, item name, and optional arguments. @@ -669,7 +678,6 @@ (defmacro with-buffer-request-internal ((buffer opcode &key length sizes &allow-other-keys) &body type-args) - (declare (values request-number)) (multiple-value-bind (code index item-sizes) (get-put-items 4 type-args t) (let ((length (if length `(index+ ,length *requestsize*) '*requestsize*)) @@ -687,13 +695,12 @@ (defmacro with-buffer-request ((buffer opcode &rest options &key inline gc-force &allow-other-keys) &body type-args &environment env) - (declare (values request-number)) (if (and (null inline) (macroexpand '(use-closures) env)) `(flet ((.request-body. (.display.) (declare (type display .display.)) (with-buffer-request-internal (.display. ,opcode ,@options) ,@type-args))) - #+ansi-common-lisp + #+clx-ansi-common-lisp (declare (dynamic-extent #'.request-body.)) (,(if (eq (car (macroexpand '(with-buffer (buffer)) env)) 'progn) 'with-buffer-request-function-nolock @@ -733,7 +740,7 @@ (type reply-buffer .reply-buffer.)) (progn .display. .reply-buffer. nil) ,reply-body)) - #+ansi-common-lisp + #+clx-ansi-common-lisp (declare (dynamic-extent #'.request-body. #'.reply-body.)) (with-buffer-request-and-reply-function ,buffer ,multiple-reply #'.request-body. #'.reply-body.)) diff --git a/clx/manager.lisp b/clx/manager.lisp index dfead101a..a8e99e748 100644 --- a/clx/manager.lisp +++ b/clx/manager.lisp @@ -20,70 +20,6 @@ (in-package :xlib) -(export '(wm-name ;These are all setf'able accessor functions - wm-icon-name - wm-client-machine - wm-command - wm-hints - wm-normal-hints - icon-sizes - wm-protocols - wm-colormap-windows - - wm-size-hints - wm-size-hints-p - make-wm-size-hints - wm-size-hints-user-specified-position-p - wm-size-hints-user-specified-size-p - wm-size-hints-min-width - wm-size-hints-min-height - wm-size-hints-max-width - wm-size-hints-max-height - wm-size-hints-width-inc - wm-size-hints-height-inc - wm-size-hints-min-aspect - wm-size-hints-max-aspect - wm-size-hints-base-width - wm-size-hints-base-height - wm-size-hints-win-gravity - - wm-hints - wm-hints-p - make-wm-hints - wm-hints-input - wm-hints-initial-state - wm-hints-icon-pixmap - wm-hints-icon-window - wm-hints-icon-x - wm-hints-icon-y - wm-hints-icon-mask - wm-hints-window-group - wm-hints-flags - - transient-for - - set-wm-properties - iconify-window - withdraw-window - - get-wm-class - set-wm-class - rgb-colormaps - - cut-buffer ;; Setf'able - rotate-cut-buffers - - ;; Obsolete - wm-zoom-hints - wm-size-hints-x - wm-size-hints-y - wm-size-hints-width - wm-size-hints-height - set-standard-properties - get-standard-colormap - set-standard-colormap - )) - (defun wm-name (window) (declare (type window window)) (declare (values string)) @@ -158,26 +94,20 @@ (defsetf wm-command set-wm-command) (defun set-wm-command (window command) - ;; Uses PRIN1 to a string-stream with the following bindings: - ;; (*print-length* nil) (*print-level* nil) (*print-radix* nil) - ;; (*print-base* 10.) (*print-array* t) (*package* (find-package 'lisp)) - ;; each element of command is seperated with NULL characters. - ;; This enables (mapcar #'read-from-string (wm-command window)) + ;; Uses PRIN1 inside the ANSI common lisp form WITH-STANDARD-IO-SYNTAX (or + ;; equivalent), with elements of command separated by NULL characters. This + ;; enables + ;; (with-standard-io-syntax (mapcar #'read-from-string (wm-command window))) ;; to recover a lisp command. (declare (type window window) (type list command)) - (set-string-property window :WM_COMMAND - (with-output-to-string (stream) - (let ((*print-length* nil) - (*print-level* nil) - (*print-radix* nil) - (*print-base* 10.) - (*print-array* t) - (*package* (find-package 'lisp)) - #+ti (ticl:*print-structure* t)) - (dolist (c command) - (prin1 c stream) - (write-char #.(card8->char 0) stream))))) + (set-string-property + window :WM_COMMAND + (with-output-to-string (stream) + (with-standard-io-syntax + (dolist (c command) + (prin1 c stream) + (write-char #.(card8->char 0) stream))))) command) ;;----------------------------------------------------------------------------- @@ -295,7 +225,6 @@ ;; WM_SIZE_HINTS (def-clx-class (wm-size-hints) - ;; Defaulted T to put the burden of remembering these on widget programmers. (user-specified-position-p nil :type boolean) ;; True when user specified x y (user-specified-size-p nil :type boolean) ;; True when user specified width height (x nil :type (or null int16)) ;; Obsolete @@ -312,7 +241,10 @@ (max-aspect nil :type (or null number)) (base-width nil :type (or null card16)) (base-height nil :type (or null card16)) - (win-gravity nil :type (or null win-gravity))) + (win-gravity nil :type (or null win-gravity)) + (program-specified-position-p nil :type boolean) ;; True when program specified x y + (program-specified-size-p nil :type boolean) ;; True when program specified width height + ) (defun wm-normal-hints (window) @@ -348,115 +280,104 @@ (declare (type (or null (simple-vector *)) vector)) (declare (values (or null wm-size-hints))) (when vector - (let ((usposition 0) ;User Specified position - (ussize 1) ;User Specified size - (pposition 2) ;Program specified position - (psize 3) ;Program specified size - (pminsize 4) ;Program specified minimum size - (pmaxsize 5) ;Program specified maximum size - (presizeinc 6) ;Program specified resize increments - (paspect 7) ;Program specfied min and max aspect ratios - (pbasesize 8) ;Program specified base size - (pwingravity 9) ;Program specified window gravity - ) - (let ((flags (aref vector 0)) - (hints (make-wm-size-hints))) - (declare (type card16 flags) - (type wm-size-hints hints)) - (when (or (logbitp usposition flags) - (logbitp pposition flags)) - (setf (wm-size-hints-user-specified-position-p hints) (logbitp usposition flags) - (wm-size-hints-x hints) (aref vector 1) - (wm-size-hints-y hints) (aref vector 2))) - (when (or (logbitp ussize flags) - (logbitp psize flags)) - (setf (wm-size-hints-user-specified-size-p hints) (logbitp usposition flags) - (wm-size-hints-width hints) (aref vector 3) - (wm-size-hints-height hints) (aref vector 4))) - (when (logbitp pminsize flags) - (setf (wm-size-hints-min-width hints) (aref vector 5) - (wm-size-hints-min-height hints) (aref vector 6))) - (when (logbitp pmaxsize flags) - (setf (wm-size-hints-max-width hints) (aref vector 7) - (wm-size-hints-max-height hints) (aref vector 8))) - (when (logbitp presizeinc flags) - (setf (wm-size-hints-width-inc hints) (aref vector 9) - (wm-size-hints-height-inc hints) (aref vector 10))) - (when (logbitp paspect flags) - (setf (wm-size-hints-min-aspect hints) (/ (aref vector 11) (aref vector 12)) - (wm-size-hints-max-aspect hints) (/ (aref vector 13) (aref vector 14)))) - (when (> (length vector) 15) - ;; This test is for backwards compatibility since old Xlib programs - ;; can set a size-hints structure that is too small. See ICCCM. - (when (logbitp pbasesize flags) - (setf (wm-size-hints-base-width hints) (aref vector 15) - (wm-size-hints-base-height hints) (aref vector 16))) - (when (logbitp pwingravity flags) - (setf (wm-size-hints-win-gravity hints) - (decode-type (member-vector *win-gravity-vector*) (aref vector 17))))) - hints)))) + (let ((flags (aref vector 0)) + (hints (make-wm-size-hints))) + (declare (type card16 flags) + (type wm-size-hints hints)) + (setf (wm-size-hints-user-specified-position-p hints) (logbitp 0 flags)) + (setf (wm-size-hints-user-specified-size-p hints) (logbitp 1 flags)) + (setf (wm-size-hints-program-specified-position-p hints) (logbitp 2 flags)) + (setf (wm-size-hints-program-specified-size-p hints) (logbitp 3 flags)) + (when (logbitp 4 flags) + (setf (wm-size-hints-min-width hints) (aref vector 5) + (wm-size-hints-min-height hints) (aref vector 6))) + (when (logbitp 5 flags) + (setf (wm-size-hints-max-width hints) (aref vector 7) + (wm-size-hints-max-height hints) (aref vector 8))) + (when (logbitp 6 flags) + (setf (wm-size-hints-width-inc hints) (aref vector 9) + (wm-size-hints-height-inc hints) (aref vector 10))) + (when (logbitp 7 flags) + (setf (wm-size-hints-min-aspect hints) (/ (aref vector 11) (aref vector 12)) + (wm-size-hints-max-aspect hints) (/ (aref vector 13) (aref vector 14)))) + (when (> (length vector) 15) + ;; This test is for backwards compatibility since old Xlib programs + ;; can set a size-hints structure that is too small. See ICCCM. + (when (logbitp 8 flags) + (setf (wm-size-hints-base-width hints) (aref vector 15) + (wm-size-hints-base-height hints) (aref vector 16))) + (when (logbitp 9 flags) + (setf (wm-size-hints-win-gravity hints) + (decode-type (member-vector *win-gravity-vector*) (aref vector 17))))) + ;; Obsolete fields + (when (or (logbitp 0 flags) (logbitp 2 flags)) + (setf (wm-size-hints-x hints) (aref vector 1) + (wm-size-hints-y hints) (aref vector 2))) + (when (or (logbitp 1 flags) (logbitp 3 flags)) + (setf (wm-size-hints-width hints) (aref vector 3) + (wm-size-hints-height hints) (aref vector 4))) + hints))) (defun encode-wm-size-hints (hints) (declare (type wm-size-hints hints)) (declare (values simple-vector)) - (let ((usposition #b1) ;User Specified position - (ussize #b10) ;User Specified size - (pposition #b100) ;Program specified position - (psize #b1000) ;Program specified size - (pminsize #b10000) ;Program specified minimum size - (pmaxsize #b100000) ;Program specified maximum size - (presizeinc #b1000000) ;Program specified resize increments - (paspect #b10000000) ;Program specfied min and max aspect ratios - (pbasesize #b100000000) ;Program specfied base size - (pwingravity #b1000000000) ;Program specfied window gravity - ) - (let ((vector (make-array 18 :initial-element 0)) - (flags 0)) - (declare (type (simple-vector 18) vector) - (type card16 flags)) - (when (and (wm-size-hints-x hints) (wm-size-hints-y hints)) - (setq flags (if (wm-size-hints-user-specified-position-p hints) usposition pposition)) - (setf (aref vector 1) (wm-size-hints-x hints) - (aref vector 2) (wm-size-hints-y hints))) - (when (and (wm-size-hints-width hints) (wm-size-hints-height hints)) - (setf flags (logior flags (if (wm-size-hints-user-specified-position-p hints) ussize psize)) - (aref vector 3) (wm-size-hints-width hints) - (aref vector 4) (wm-size-hints-height hints))) - - (when (and (wm-size-hints-min-width hints) (wm-size-hints-min-height hints)) - (setf flags (logior flags pminsize) - (aref vector 5) (wm-size-hints-min-width hints) - (aref vector 6) (wm-size-hints-min-height hints))) - (when (and (wm-size-hints-max-width hints) (wm-size-hints-max-height hints)) - (setf flags (logior flags pmaxsize) - (aref vector 7) (wm-size-hints-max-width hints) - (aref vector 8) (wm-size-hints-max-height hints))) - (when (and (wm-size-hints-width-inc hints) (wm-size-hints-height-inc hints)) - (setf flags (logior flags presizeinc) - (aref vector 9) (wm-size-hints-width-inc hints) - (aref vector 10) (wm-size-hints-height-inc hints))) - (let ((min-aspect (wm-size-hints-min-aspect hints)) - (max-aspect (wm-size-hints-max-aspect hints))) - (when (and min-aspect max-aspect) - (setf flags (logior flags paspect) - min-aspect (rationalize min-aspect) - max-aspect (rationalize max-aspect) - (aref vector 11) (numerator min-aspect) - (aref vector 12) (denominator min-aspect) - (aref vector 13) (numerator max-aspect) - (aref vector 14) (denominator max-aspect)))) - (when (and (wm-size-hints-base-width hints) - (wm-size-hints-base-height hints)) - (setf flags (logior flags pbasesize) - (aref vector 15) (wm-size-hints-base-width hints) - (aref vector 16) (wm-size-hints-base-height hints))) - (when (wm-size-hints-win-gravity hints) - (setf flags (logior flags pwingravity) - (aref vector 17) (encode-type - (member-vector *win-gravity-vector*) - (wm-size-hints-win-gravity hints)))) - (setf (aref vector 0) flags) - vector))) + (let ((vector (make-array 18 :initial-element 0)) + (flags 0)) + (declare (type (simple-vector 18) vector) + (type card16 flags)) + (when (wm-size-hints-user-specified-position-p hints) + (setf (ldb (byte 1 0) flags) 1)) + (when (wm-size-hints-user-specified-size-p hints) + (setf (ldb (byte 1 1) flags) 1)) + (when (wm-size-hints-program-specified-position-p hints) + (setf (ldb (byte 1 2) flags) 1)) + (when (wm-size-hints-program-specified-size-p hints) + (setf (ldb (byte 1 3) flags) 1)) + (when (and (wm-size-hints-min-width hints) (wm-size-hints-min-height hints)) + (setf (ldb (byte 1 4) flags) 1 + (aref vector 5) (wm-size-hints-min-width hints) + (aref vector 6) (wm-size-hints-min-height hints))) + (when (and (wm-size-hints-max-width hints) (wm-size-hints-max-height hints)) + (setf (ldb (byte 1 5) flags) 1 + (aref vector 7) (wm-size-hints-max-width hints) + (aref vector 8) (wm-size-hints-max-height hints))) + (when (and (wm-size-hints-width-inc hints) (wm-size-hints-height-inc hints)) + (setf (ldb (byte 1 6) flags) 1 + (aref vector 9) (wm-size-hints-width-inc hints) + (aref vector 10) (wm-size-hints-height-inc hints))) + (let ((min-aspect (wm-size-hints-min-aspect hints)) + (max-aspect (wm-size-hints-max-aspect hints))) + (when (and min-aspect max-aspect) + (setf (ldb (byte 1 7) flags) 1 + min-aspect (rationalize min-aspect) + max-aspect (rationalize max-aspect) + (aref vector 11) (numerator min-aspect) + (aref vector 12) (denominator min-aspect) + (aref vector 13) (numerator max-aspect) + (aref vector 14) (denominator max-aspect)))) + (when (and (wm-size-hints-base-width hints) + (wm-size-hints-base-height hints)) + (setf (ldb (byte 1 8) flags) 1 + (aref vector 15) (wm-size-hints-base-width hints) + (aref vector 16) (wm-size-hints-base-height hints))) + (when (wm-size-hints-win-gravity hints) + (setf (ldb (byte 1 9) flags) 1 + (aref vector 17) (encode-type + (member-vector *win-gravity-vector*) + (wm-size-hints-win-gravity hints)))) + ;; Obsolete fields + (when (and (wm-size-hints-x hints) (wm-size-hints-y hints)) + (unless (wm-size-hints-user-specified-position-p hints) + (setf (ldb (byte 1 2) flags) 1)) + (setf (aref vector 1) (wm-size-hints-x hints) + (aref vector 2) (wm-size-hints-y hints))) + (when (and (wm-size-hints-width hints) (wm-size-hints-height hints)) + (unless (wm-size-hints-user-specified-size-p hints) + (setf (ldb (byte 1 3) flags) 1)) + (setf (aref vector 3) (wm-size-hints-width hints) + (aref vector 4) (wm-size-hints-height hints))) + (setf (aref vector 0) flags) + vector)) ;;----------------------------------------------------------------------------- ;; Icon_Size @@ -539,8 +460,10 @@ name icon-name resource-name resource-class command client-machine hints normal-hints zoom-hints ;; the following are used for wm-normal-hints - user-specified-position-p - user-specified-size-p + (user-specified-position-p nil usppp) + (user-specified-size-p nil usspp) + (program-specified-position-p nil psppp) + (program-specified-size-p nil psspp) x y width height min-width min-height max-width max-height width-inc height-inc min-aspect max-aspect base-width base-height win-gravity @@ -553,6 +476,7 @@ client-machine hints normal-hints ;; the following are used for wm-normal-hints user-specified-position-p user-specified-size-p + program-specified-position-p program-specified-size-p min-width min-height max-width max-height width-inc height-inc min-aspect max-aspect base-width base-height win-gravity @@ -564,7 +488,8 @@ (type (or null list) command) (type (or null wm-hints) hints) (type (or null wm-size-hints) normal-hints zoom-hints) - (type (or null boolean) user-specified-position-p user-specified-size-p) + (type boolean user-specified-position-p user-specified-size-p) + (type boolean program-specified-position-p program-specified-size-p) (type (or null int16) x y) (type (or null card16) width height min-width min-height max-width max-height width-inc height-inc base-width base-height) (type (or null win-gravity) win-gravity) @@ -594,14 +519,14 @@ (when icon-x (setf (wm-hints-icon-x wm-hints) icon-x)) (when icon-y (setf (wm-hints-icon-y wm-hints) icon-y)) (when icon-mask (setf (wm-hints-icon-mask wm-hints) icon-mask)) - (when window-group - (setf (wm-hints-window-group wm-hints) window-group)) + (when window-group (setf (wm-hints-input wm-hints) window-group)) (setf (wm-hints window) wm-hints)) (when hints (setf (wm-hints window) hints))) ;; WM-NORMAL-HINTS (if (dolist (arg '(:x :y :width :height :min-width :min-height :max-width :max-height :width-inc :height-inc :min-aspect :max-aspect :user-specified-position-p :user-specified-size-p + :program-specified-position-p :program-specified-size-p :base-width :base-height :win-gravity)) (when (getf options arg) (return t))) (let ((size (if normal-hints (copy-wm-size-hints normal-hints) (make-wm-size-hints)))) @@ -620,10 +545,14 @@ (when base-width (setf (wm-size-hints-base-width size) base-width)) (when base-height (setf (wm-size-hints-base-height size) base-height)) (when win-gravity (setf (wm-size-hints-win-gravity size) win-gravity)) - (when user-specified-position-p (setf (wm-size-hints-user-specified-position-p size) - user-specified-position-p)) - (when user-specified-size-p (setf (wm-size-hints-user-specified-size-p size) - user-specified-size-p)) + (when usppp + (setf (wm-size-hints-user-specified-position-p size) user-specified-position-p)) + (when usspp + (setf (wm-size-hints-user-specified-size-p size) user-specified-size-p)) + (when psppp + (setf (wm-size-hints-program-specified-position-p size) program-specified-position-p)) + (when psspp + (setf (wm-size-hints-program-specified-size-p size) program-specified-size-p)) (setf (wm-normal-hints window) size)) (when normal-hints (setf (wm-normal-hints window) normal-hints))) (when zoom-hints (setf (wm-zoom-hints window) zoom-hints)) @@ -794,6 +723,7 @@ ;; (transform #'char->card8) (start 0) end) (data) ;; In order to avoid having to pass positional parameters to set-cut-buffer, ;; We've got to do the following. WHAT A PAIN... +#-clx-ansi-common-lisp (define-setf-method cut-buffer (display &rest option-list) (declare (dynamic-extent option-list)) (do* ((options (copy-list option-list)) @@ -815,8 +745,11 @@ (push (cadr option) values) (setf (cadr option) x)))) -(defun set-cut-buffer (data display &key (buffer 0) (type :STRING) (format 8) - (start 0) end (transform #'char->card8)) +(defun + #+clx-ansi-common-lisp (setf cut-buffer) + #-clx-ansi-common-lisp set-cut-buffer + (data display &key (buffer 0) (type :STRING) (format 8) + (start 0) end (transform #'char->card8)) (declare (type sequence data) (type display display) (type (integer 0 7) buffer) @@ -827,7 +760,7 @@ (type (or null (function (integer) t)) transform)) (let* ((root (screen-root (first (display-roots display)))) (property (aref '#(:CUT_BUFFER0 :CUT_BUFFER1 :CUT_BUFFER2 :CUT_BUFFER3 - :CUT_BUFFER4 :CUT_BUFFER5 :CUT_BUFFER6 :CUT_BUFFER7) + :CUT_BUFFER4 :CUT_BUFFER5 :CUT_BUFFER6 :CUT_BUFFER7) buffer))) (change-property root property data type format :transform transform :start start :end end) data)) diff --git a/clx/package.lisp b/clx/package.lisp new file mode 100644 index 000000000..aae50abc7 --- /dev/null +++ b/clx/package.lisp @@ -0,0 +1,384 @@ +;;; -*- Mode: LISP; Syntax: Common-lisp; Base: 10; Lowercase: Yes; -*- + +;;; Copyright 1990 Massachusetts Institute of Technology, Cambridge, +;;; Massachusetts. All Rights Reserved. +;;; +;;; Permission to use, copy, modify, and distribute this software and its +;;; documentation for any purpose and without fee is hereby granted, provided +;;; that the above copyright notice appear in all copies and that both that +;;; copyright notice and this permission notice appear in supporting +;;; documentation, and that the name MIT not be used in advertising or +;;; publicity pertaining to distribution of the software without specific, +;;; written prior permission. + +;;; The CLtL way + +#-clx-ansi-common-lisp +(lisp:in-package :xlib :use '(:lisp)) + +#+(and (or kcl ibcl) (not clx-ansi-common-lisp)) +(shadow + '( + rational + )) + +#+(and lispm (not clx-ansi-common-lisp)) +(import + '( + sys:arglist + sys:with-stack-list + sys:with-stack-list* + )) + +#+(and Genera (not clx-ansi-common-lisp)) +(import + '( + future-common-lisp:print-unreadable-object + future-common-lisp:with-standard-io-syntax + sys:array-register + zwei:indentation + )) + +#+(and lcl3.0 (not clx-ansi-common-lisp)) +(import + '( + lcl:arglist + lcl:dynamic-extent + lcl:type-error + lucid::type-error-datum + lucid::type-error-expected-type + )) + +#+(and excl (not clx-ansi-common-lisp)) +(import + '( + excl::arglist + excl::dynamic-extent + excl::type-error + excl::type-error-datum + excl::type-error-expected-type + )) + +#+(and allegro (not clx-ansi-common-lisp)) +(import + '( + excl::without-interrupts + )) + +#-clx-ansi-common-lisp +(export + '( + *version* access-control access-error access-hosts + activate-screen-saver add-access-host add-resource add-to-save-set + alist alloc-color alloc-color-cells alloc-color-planes alloc-error + allow-events angle arc-seq array-index atom-error atom-name + bell bit-gravity bitmap bitmap-format bitmap-format-lsb-first-p + bitmap-format-p bitmap-format-pad bitmap-format-unit bitmap-image + boole-constant boolean card16 card29 card32 card8 + card8->char change-active-pointer-grab change-keyboard-control + change-keyboard-mapping change-pointer-control change-property + char->card8 char-ascent char-attributes char-descent + char-left-bearing char-right-bearing char-width character->keysyms + character-in-map-p circulate-window-down circulate-window-up clear-area + close-display close-down-mode close-font closed-display color + color-blue color-green color-p color-red color-rgb colormap + colormap-display colormap-equal colormap-error colormap-id colormap-p + colormap-plist colormap-visual-info connection-failure convert-selection + copy-area copy-colormap-and-free copy-gcontext copy-gcontext-components + copy-image copy-plane create-colormap create-cursor + create-gcontext create-glyph-cursor create-image create-pixmap + create-window cursor cursor-display cursor-equal cursor-error + cursor-id cursor-p cursor-plist cut-buffer declare-event decode-core-error + default-error-handler default-keysym-index default-keysym-translate + define-error define-extension define-gcontext-accessor + define-keysym define-keysym-set delete-property delete-resource + destroy-subwindows destroy-window device-busy device-event-mask + device-event-mask-class discard-current-event discard-font-info display + display-after-function display-authorization-data display-authorization-name + display-bitmap-format display-byte-order display-default-screen + display-display display-error-handler display-finish-output + display-force-output display-host display-image-lsb-first-p + display-invoke-after-function display-keycode-range display-max-keycode + display-max-request-length display-min-keycode display-motion-buffer-size + display-nscreens display-p display-pixmap-formats display-plist + display-protocol-major-version display-protocol-minor-version + display-protocol-version display-release-number + display-report-asynchronous-errors display-resource-id-base + display-resource-id-mask display-roots display-vendor + display-vendor-name display-xdefaults display-xid draw-arc + draw-arcs draw-direction draw-glyph draw-glyphs draw-image-glyph + draw-image-glyphs draw-line draw-lines draw-point draw-points + draw-rectangle draw-rectangles draw-segments drawable + drawable-border-width drawable-depth drawable-display drawable-equal + drawable-error drawable-height drawable-id drawable-p + drawable-plist drawable-root drawable-width drawable-x drawable-y + error-key event-case event-cond event-handler event-key + event-listen event-mask event-mask-class extension-opcode + find-atom font font-all-chars-exist-p font-ascent + font-default-char font-descent font-direction font-display + font-equal font-error font-id font-max-byte1 font-max-byte2 + font-max-char font-min-byte1 font-min-byte2 font-min-char + font-name font-p font-path font-plist font-properties + font-property fontable force-gcontext-changes free-colormap + free-colors free-cursor free-gcontext free-pixmap gcontext + gcontext-arc-mode gcontext-background + gcontext-cache-p gcontext-cap-style + gcontext-clip-mask gcontext-clip-ordering gcontext-clip-x + gcontext-clip-y gcontext-dash-offset gcontext-dashes gcontext-display + gcontext-equal gcontext-error gcontext-exposures gcontext-fill-rule + gcontext-fill-style gcontext-font gcontext-foreground gcontext-function + gcontext-id gcontext-join-style gcontext-key gcontext-line-style + gcontext-line-width gcontext-p gcontext-plane-mask gcontext-plist + gcontext-stipple gcontext-subwindow-mode gcontext-tile gcontext-ts-x + gcontext-ts-y get-external-event-code get-image get-property + get-raw-image get-resource get-search-resource get-search-table + get-standard-colormap get-wm-class global-pointer-position grab-button + grab-key grab-keyboard grab-pointer grab-server grab-status + icon-sizes iconify-window id-choice-error illegal-request-error + image image-blue-mask image-depth image-green-mask image-height + image-name image-pixmap image-plist image-red-mask image-width + image-x image-x-hot image-x-p image-xy image-xy-bitmap-list + image-xy-p image-y-hot image-z image-z-bits-per-pixel image-z-p + image-z-pixarray implementation-error input-focus install-colormap + installed-colormaps int16 int32 int8 intern-atom invalid-font + keyboard-control keyboard-mapping keycode->character keycode->keysym + keysym keysym->character keysym->keycodes keysym-in-map-p + keysym-set kill-client kill-temporary-clients length-error + list-extensions list-font-names list-fonts list-properties + lookup-color lookup-error make-color make-event-handlers + make-event-keys make-event-mask make-resource-database make-state-keys + make-state-mask make-wm-hints make-wm-size-hints map-resource + map-subwindows map-window mapping-notify mask16 mask32 + match-error max-char-ascent max-char-attributes max-char-descent + max-char-left-bearing max-char-right-bearing max-char-width + merge-resources min-char-ascent min-char-attributes min-char-descent + min-char-left-bearing min-char-right-bearing min-char-width + missing-parameter modifier-key modifier-mapping modifier-mask + motion-events name-error no-operation open-display open-font + pixarray pixel pixmap pixmap-display pixmap-equal + pixmap-error pixmap-format pixmap-format-bits-per-pixel + pixmap-format-depth pixmap-format-p pixmap-format-scanline-pad + pixmap-id pixmap-p pixmap-plist point-seq pointer-control + pointer-event-mask pointer-event-mask-class pointer-mapping + pointer-position process-event put-image put-raw-image + query-best-cursor query-best-stipple query-best-tile query-colors + query-extension query-keymap query-pointer query-tree queue-event + read-bitmap-file read-resources recolor-cursor rect-seq + remove-access-host remove-from-save-set reparent-window repeat-seq + reply-length-error reply-timeout request-error reset-screen-saver + resource-database resource-database-timestamp resource-error + resource-id resource-key rgb-colormaps rgb-val root-resources + rotate-cut-buffers rotate-properties screen screen-backing-stores + screen-black-pixel screen-default-colormap screen-depths + screen-event-mask-at-open screen-height screen-height-in-millimeters + screen-max-installed-maps screen-min-installed-maps screen-p + screen-plist screen-root screen-root-depth screen-root-visual + screen-root-visual-info screen-save-unders-p screen-saver + screen-white-pixel screen-width screen-width-in-millimeters seg-seq + selection-owner send-event sequence-error set-access-control + set-close-down-mode set-input-focus set-modifier-mapping + set-pointer-mapping set-screen-saver set-selection-owner + set-standard-colormap set-standard-properties set-wm-class + set-wm-properties set-wm-resources state-keysym-p state-mask-key + store-color store-colors stringable text-extents text-width + timestamp transient-for translate-coordinates translate-default + translation-function type-error undefine-keysym unexpected-reply + ungrab-button ungrab-key ungrab-keyboard ungrab-pointer + ungrab-server uninstall-colormap unknown-error unmap-subwindows + unmap-window value-error visual-info visual-info-bits-per-rgb + visual-info-blue-mask visual-info-class visual-info-colormap-entries + visual-info-display visual-info-green-mask visual-info-id visual-info-p + visual-info-plist visual-info-red-mask warp-pointer + warp-pointer-if-inside warp-pointer-relative warp-pointer-relative-if-inside + win-gravity window window-all-event-masks window-background + window-backing-pixel window-backing-planes window-backing-store + window-bit-gravity window-border window-class window-colormap + window-colormap-installed-p window-cursor window-display + window-do-not-propagate-mask window-equal window-error + window-event-mask window-gravity window-id window-map-state + window-override-redirect window-p window-plist window-priority + window-save-under window-visual window-visual-info with-display + with-event-queue with-gcontext with-server-grabbed with-state + withdraw-window wm-client-machine wm-colormap-windows wm-command + wm-hints wm-hints-flags wm-hints-icon-mask wm-hints-icon-pixmap + wm-hints-icon-window wm-hints-icon-x wm-hints-icon-y + wm-hints-initial-state wm-hints-input wm-hints-p wm-hints-window-group + wm-icon-name wm-name wm-normal-hints wm-protocols wm-resources + wm-size-hints wm-size-hints-base-height wm-size-hints-base-width + wm-size-hints-height wm-size-hints-height-inc wm-size-hints-max-aspect + wm-size-hints-max-height wm-size-hints-max-width wm-size-hints-min-aspect + wm-size-hints-min-height wm-size-hints-min-width wm-size-hints-p + wm-size-hints-user-specified-position-p wm-size-hints-user-specified-size-p + wm-size-hints-width wm-size-hints-width-inc wm-size-hints-win-gravity + wm-size-hints-x wm-size-hints-y wm-zoom-hints write-bitmap-file + write-resources xatom + )) + + +;;; The ANSI Common Lisp way + +#+(and Genera clx-ansi-common-lisp) +(eval-when (:compile-toplevel :load-toplevel :execute) + (setf *readtable* si:*ansi-common-lisp-readtable*)) + +#+clx-ansi-common-lisp +(common-lisp:in-package :common-lisp-user) + +#+clx-ansi-common-lisp +(defpackage xlib + (:use common-lisp) + (:size 3000) + #+(or kcl ibcl) (:shadow rational) + #+allegro (:use cltl1) + #+allegro (:import-from excl without-interrupts) + #+excl (:import-from excl arglist) + #+Genera (:import-from sys array-register) + #+Genera (:import-from zwei indentation) + #+lcl3.0 (:import-from lcl arglist) + #+lispm (:import-from lisp char-bit) + #+lispm (:import-from sys arglist with-stack-list with-stack-list*) + (:export + *version* access-control access-error access-hosts + activate-screen-saver add-access-host add-resource add-to-save-set + alist alloc-color alloc-color-cells alloc-color-planes alloc-error + allow-events angle arc-seq array-index atom-error atom-name + bell bit-gravity bitmap bitmap-format bitmap-format-lsb-first-p + bitmap-format-p bitmap-format-pad bitmap-format-unit bitmap-image + boole-constant boolean card16 card29 card32 card8 + card8->char change-active-pointer-grab change-keyboard-control + change-keyboard-mapping change-pointer-control change-property + char->card8 char-ascent char-attributes char-descent + char-left-bearing char-right-bearing char-width character->keysyms + character-in-map-p circulate-window-down circulate-window-up clear-area + close-display close-down-mode close-font closed-display color + color-blue color-green color-p color-red color-rgb colormap + colormap-display colormap-equal colormap-error colormap-id colormap-p + colormap-plist colormap-visual-info connection-failure convert-selection + copy-area copy-colormap-and-free copy-gcontext copy-gcontext-components + copy-image copy-plane create-colormap create-cursor + create-gcontext create-glyph-cursor create-image create-pixmap + create-window cursor cursor-display cursor-equal cursor-error + cursor-id cursor-p cursor-plist cut-buffer declare-event decode-core-error + default-error-handler default-keysym-index default-keysym-translate + define-error define-extension define-gcontext-accessor + define-keysym define-keysym-set delete-property delete-resource + destroy-subwindows destroy-window device-busy device-event-mask + device-event-mask-class discard-current-event discard-font-info display + display-after-function display-authorization-data display-authorization-name + display-bitmap-format display-byte-order display-default-screen + display-display display-error-handler display-finish-output + display-force-output display-host display-image-lsb-first-p + display-invoke-after-function display-keycode-range display-max-keycode + display-max-request-length display-min-keycode display-motion-buffer-size + display-nscreens display-p display-pixmap-formats display-plist + display-protocol-major-version display-protocol-minor-version + display-protocol-version display-release-number + display-report-asynchronous-errors display-resource-id-base + display-resource-id-mask display-roots display-vendor + display-vendor-name display-xdefaults display-xid draw-arc + draw-arcs draw-direction draw-glyph draw-glyphs draw-image-glyph + draw-image-glyphs draw-line draw-lines draw-point draw-points + draw-rectangle draw-rectangles draw-segments drawable + drawable-border-width drawable-depth drawable-display drawable-equal + drawable-error drawable-height drawable-id drawable-p + drawable-plist drawable-root drawable-width drawable-x drawable-y + error-key event-case event-cond event-handler event-key + event-listen event-mask event-mask-class extension-opcode + find-atom font font-all-chars-exist-p font-ascent + font-default-char font-descent font-direction font-display + font-equal font-error font-id font-max-byte1 font-max-byte2 + font-max-char font-min-byte1 font-min-byte2 font-min-char + font-name font-p font-path font-plist font-properties + font-property fontable force-gcontext-changes free-colormap + free-colors free-cursor free-gcontext free-pixmap gcontext + gcontext-arc-mode gcontext-background + gcontext-cache-p gcontext-cap-style + gcontext-clip-mask gcontext-clip-ordering gcontext-clip-x + gcontext-clip-y gcontext-dash-offset gcontext-dashes gcontext-display + gcontext-equal gcontext-error gcontext-exposures gcontext-fill-rule + gcontext-fill-style gcontext-font gcontext-foreground gcontext-function + gcontext-id gcontext-join-style gcontext-key gcontext-line-style + gcontext-line-width gcontext-p gcontext-plane-mask gcontext-plist + gcontext-stipple gcontext-subwindow-mode gcontext-tile gcontext-ts-x + gcontext-ts-y get-external-event-code get-image get-property + get-raw-image get-resource get-search-resource get-search-table + get-standard-colormap get-wm-class global-pointer-position grab-button + grab-key grab-keyboard grab-pointer grab-server grab-status + icon-sizes iconify-window id-choice-error illegal-request-error + image image-blue-mask image-depth image-green-mask image-height + image-name image-pixmap image-plist image-red-mask image-width + image-x image-x-hot image-x-p image-xy image-xy-bitmap-list + image-xy-p image-y-hot image-z image-z-bits-per-pixel image-z-p + image-z-pixarray implementation-error input-focus install-colormap + installed-colormaps int16 int32 int8 intern-atom invalid-font + keyboard-control keyboard-mapping keycode->character keycode->keysym + keysym keysym->character keysym->keycodes keysym-in-map-p + keysym-set kill-client kill-temporary-clients length-error + list-extensions list-font-names list-fonts list-properties + lookup-color lookup-error make-color make-event-handlers + make-event-keys make-event-mask make-resource-database make-state-keys + make-state-mask make-wm-hints make-wm-size-hints map-resource + map-subwindows map-window mapping-notify mask16 mask32 + match-error max-char-ascent max-char-attributes max-char-descent + max-char-left-bearing max-char-right-bearing max-char-width + merge-resources min-char-ascent min-char-attributes min-char-descent + min-char-left-bearing min-char-right-bearing min-char-width + missing-parameter modifier-key modifier-mapping modifier-mask + motion-events name-error no-operation open-display open-font + pixarray pixel pixmap pixmap-display pixmap-equal + pixmap-error pixmap-format pixmap-format-bits-per-pixel + pixmap-format-depth pixmap-format-p pixmap-format-scanline-pad + pixmap-id pixmap-p pixmap-plist point-seq pointer-control + pointer-event-mask pointer-event-mask-class pointer-mapping + pointer-position process-event put-image put-raw-image + query-best-cursor query-best-stipple query-best-tile query-colors + query-extension query-keymap query-pointer query-tree queue-event + read-bitmap-file read-resources recolor-cursor rect-seq + remove-access-host remove-from-save-set reparent-window repeat-seq + reply-length-error reply-timeout request-error reset-screen-saver + resource-database resource-database-timestamp resource-error + resource-id resource-key rgb-colormaps rgb-val root-resources + rotate-cut-buffers rotate-properties screen screen-backing-stores + screen-black-pixel screen-default-colormap screen-depths + screen-event-mask-at-open screen-height screen-height-in-millimeters + screen-max-installed-maps screen-min-installed-maps screen-p + screen-plist screen-root screen-root-depth screen-root-visual + screen-root-visual-info screen-save-unders-p screen-saver + screen-white-pixel screen-width screen-width-in-millimeters seg-seq + selection-owner send-event sequence-error set-access-control + set-close-down-mode set-input-focus set-modifier-mapping + set-pointer-mapping set-screen-saver set-selection-owner + set-standard-colormap set-standard-properties set-wm-class + set-wm-properties set-wm-resources state-keysym-p state-mask-key + store-color store-colors stringable text-extents text-width + timestamp transient-for translate-coordinates translate-default + translation-function undefine-keysym unexpected-reply + ungrab-button ungrab-key ungrab-keyboard ungrab-pointer + ungrab-server uninstall-colormap unknown-error unmap-subwindows + unmap-window value-error visual-info visual-info-bits-per-rgb + visual-info-blue-mask visual-info-class visual-info-colormap-entries + visual-info-display visual-info-green-mask visual-info-id visual-info-p + visual-info-plist visual-info-red-mask warp-pointer + warp-pointer-if-inside warp-pointer-relative warp-pointer-relative-if-inside + win-gravity window window-all-event-masks window-background + window-backing-pixel window-backing-planes window-backing-store + window-bit-gravity window-border window-class window-colormap + window-colormap-installed-p window-cursor window-display + window-do-not-propagate-mask window-equal window-error + window-event-mask window-gravity window-id window-map-state + window-override-redirect window-p window-plist window-priority + window-save-under window-visual window-visual-info with-display + with-event-queue with-gcontext with-server-grabbed with-state + withdraw-window wm-client-machine wm-colormap-windows wm-command + wm-hints wm-hints-flags wm-hints-icon-mask wm-hints-icon-pixmap + wm-hints-icon-window wm-hints-icon-x wm-hints-icon-y + wm-hints-initial-state wm-hints-input wm-hints-p wm-hints-window-group + wm-icon-name wm-name wm-normal-hints wm-protocols wm-resources + wm-size-hints wm-size-hints-base-height wm-size-hints-base-width + wm-size-hints-height wm-size-hints-height-inc wm-size-hints-max-aspect + wm-size-hints-max-height wm-size-hints-max-width wm-size-hints-min-aspect + wm-size-hints-min-height wm-size-hints-min-width wm-size-hints-p + wm-size-hints-user-specified-position-p wm-size-hints-user-specified-size-p + wm-size-hints-width wm-size-hints-width-inc wm-size-hints-win-gravity + wm-size-hints-x wm-size-hints-y wm-zoom-hints write-bitmap-file + write-resources xatom)) diff --git a/clx/provide.lisp b/clx/provide.lisp index d6c9066c7..bf6f3c7a4 100644 --- a/clx/provide.lisp +++ b/clx/provide.lisp @@ -14,28 +14,43 @@ ;;; (require :clx <pathname-of-this-file>) ;;; +#-clx-ansi-common-lisp (in-package :user) +#+clx-ansi-common-lisp +(in-package :common-lisp-user) + +#-clx-ansi-common-lisp (provide :clx) -;;; Load the defsystem file from the source directory. You may -;;; want to include an explicit extension (such as ".l" or ".lisp"). -;;; -(load "/src/local/clx/defsystem.l") +(defvar *clx-source-pathname* + (pathname "/src/local/clx/*.l")) -;;; The binary files for a particular lisp implementation and architecture. -;;; -(let ((lisp - (or #+lucid "lucid" - #+excl "franz" - #+akcl "akcl" - #+kcl "kcl" - #+ibcl "ibcl" - (error "Can't figure out what lisp vendor this lisp is from."))) - (computer - (or #+(or sun3 (and sun (or mc68000 mc68020))) "sun3" - #+(or sun4 sparc) "sparc" - #+(and hp (or mc68000 mc68020)) "hp9000-300" - #+vax "vax" - (error "Can't figure out what computer vendor this computer is from.")))) - (xlib:load-clx (format nil "/src/local/clx/~A.~A/" lisp computer))) +(defvar *clx-binary-pathname* + (let ((lisp + (or #+lucid "lucid" + #+akcl "akcl" + #+kcl "kcl" + #+ibcl "ibcl" + (error "Can't provide CLX for this lisp."))) + (architecture + (or #+(or sun3 (and sun (or mc68000 mc68020))) "sun3" + #+(or sun4 sparc) "sparc" + #+(and hp (or mc68000 mc68020)) "hp9000s300" + #+vax "vax" + #+prime "prime" + #+sunrise "sunrise" + #+ibm-rt-pc "ibm-rt-pc" + #+mips "mips" + #+prism "prism" + (error "Can't provide CLX for this architecture.")))) + (pathname (format nil "/src/local/clx/~A.~A/" lisp architecture)))) + +(defvar *compile-clx* + nil) + +(load (merge-pathnames "defsystem" *clx-source-pathname*)) + +(if *compile-clx* + (compile-clx *clx-source-pathname* *clx-binary-pathname*) + (load-clx *clx-binary-pathname*)) diff --git a/clx/requests.lisp b/clx/requests.lisp index 5f6ce462d..5b9557998 100644 --- a/clx/requests.lisp +++ b/clx/requests.lisp @@ -18,111 +18,8 @@ (in-package :xlib) -(export '(create-window - destroy-window - destroy-subwindows - add-to-save-set - remove-from-save-set - reparent-window - map-window - map-subwindows - unmap-window - unmap-subwindows - circulate-window-up - circulate-window-down - query-tree - intern-atom - find-atom - atom-name - change-property - delete-property - get-property - rotate-properties - list-properties - set-selection-owner - selection-owner - selection-owner - convert-selection - send-event - grab-pointer - ungrab-pointer - grab-button - ungrab-button - change-active-pointer-grab - grab-keyboard - ungrab-keyboard - grab-key - ungrab-key - allow-events - grab-server - ungrab-server - with-server-grabbed - query-pointer - pointer-position - global-pointer-position - motion-events - translate-coordinates - warp-pointer - warp-pointer-relative - warp-pointer-if-inside - warp-pointer-relative-if-inside - set-input-focus - input-focus - query-keymap - create-pixmap - free-pixmap - clear-area - copy-area - copy-plane - create-colormap - free-colormap - copy-colormap-and-free - install-colormap - uninstall-colormap - installed-colormaps - alloc-color - alloc-color-cells - alloc-color-planes - free-colors - store-color - store-colors - query-colors - lookup-color - create-cursor - create-glyph-cursor - free-cursor - recolor-cursor - query-best-cursor - query-best-tile - query-best-stipple - query-extension - list-extensions - change-keyboard-control - keyboard-control - bell - pointer-mapping - set-pointer-mapping - pointer-mapping - change-pointer-control - pointer-control - set-screen-saver - screen-saver - activate-screen-saver - reset-screen-saver - add-access-host - remove-access-host - access-hosts - access-control - set-access-control - access-control - close-down-mode - set-close-down-mode - kill-client - kill-temporary-clients - no-operation - )) - (defun create-window (&key + window (parent (required-arg parent)) (x (required-arg x)) (y (required-arg y)) @@ -138,7 +35,8 @@ ;; Display is obtained from parent. Only non-nil attributes are passed on in ;; the request: the function makes no assumptions about what the actual protocol ;; defaults are. Width and height are the inside size, excluding border. - (declare (type window parent) ; required + (declare (type (or null window) window) + (type window parent) ; required (type int16 x y) ;required (type card16 width height) ;required (type card16 depth border-width) @@ -157,7 +55,7 @@ (type (or null (member :none) cursor) cursor)) (declare (values window)) (let* ((display (window-display parent)) - (window (make-window :display display)) + (window (or window (make-window :display display))) (wid (allocate-resource-id display window 'window)) back-pixmap back-pixel border-pixmap border-pixel) @@ -304,10 +202,12 @@ (declare (type display display) (type xatom name)) (declare (values resource-id)) - (let ((keyword (if (keywordp name) name (kintern (string name))))) - (declare (type keyword keyword)) - (or (atom-id keyword display) - (let ((string (symbol-name keyword))) + (let ((name (if (or (null name) (keywordp name)) + name + (kintern (string name))))) + (declare (type symbol name)) + (or (atom-id name display) + (let ((string (symbol-name name))) (declare (type string string)) (multiple-value-bind (id) (with-buffer-request-and-reply (display *x-internatom* 12 :sizes 32) @@ -318,7 +218,7 @@ (values (resource-id-get 8))) (declare (type resource-id id)) - (setf (atom-id keyword display) id) + (setf (atom-id name display) id) id))))) (defun find-atom (display name) @@ -326,10 +226,12 @@ (declare (type display display) (type xatom name)) (declare (values (or null resource-id))) - (let ((keyword (if (keywordp name) name (kintern (string name))))) - (declare (type keyword keyword)) - (or (atom-id keyword display) - (let ((string (symbol-name keyword))) + (let ((name (if (or (null name) (keywordp name)) + name + (kintern (string name))))) + (declare (type symbol name)) + (or (atom-id name display) + (let ((string (symbol-name name))) (declare (type string string)) (multiple-value-bind (id) (with-buffer-request-and-reply (display *x-internatom* 12 :sizes 32) @@ -341,23 +243,26 @@ (or-get 8 null resource-id))) (declare (type (or null resource-id) id)) (when id - (setf (atom-id keyword display) id)) + (setf (atom-id name display) id)) id))))) (defun atom-name (display atom-id) (declare (type display display) (type resource-id atom-id)) (declare (values keyword)) + (if (zerop atom-id) + nil (or (id-atom atom-id display) (let ((keyword (kintern - (with-buffer-request-and-reply (display *x-getatomname* nil :sizes (16)) + (with-buffer-request-and-reply + (display *x-getatomname* nil :sizes (16)) ((resource-id atom-id)) (values (string-get (card16-get 8) *replysize*)))))) (declare (type keyword keyword)) (setf (atom-id keyword display) atom-id) - keyword))) + keyword)))) ;;; For binary compatibility with older code (defun lookup-xatom (display atom-id) @@ -845,10 +750,10 @@ (defun set-input-focus (display focus revert-to &optional time) (declare (type display display) (type (or (member :none :pointer-root) window) focus) - (type (member :none :parent :pointer-root) revert-to) + (type (member :none :pointer-root :parent) revert-to) (type timestamp time)) (with-buffer-request (display *x-setinputfocus*) - ((data (member :none :parent :pointer-root)) revert-to) + ((data (member :none :pointer-root :parent)) revert-to) ((or window (member :none :pointer-root)) focus) ((or null card32) time))) @@ -871,16 +776,18 @@ (bit-vector256-get 8 8 bit-vector)))) (defun create-pixmap (&key + pixmap (width (required-arg width)) (height (required-arg height)) (depth (required-arg depth)) (drawable (required-arg drawable))) - (declare (type card8 depth) ;; required + (declare (type (or null pixmap) pixmap) + (type card8 depth) ;; required (type card16 width height) ;; required (type drawable drawable)) ;; required (declare (values pixmap)) (let* ((display (drawable-display drawable)) - (pixmap (make-pixmap :display display)) + (pixmap (or pixmap (make-pixmap :display display))) (pid (allocate-resource-id display pixmap 'pixmap))) (setf (pixmap-id pixmap) pid) (with-buffer-request (display *x-createpixmap*) @@ -1025,12 +932,12 @@ (string string)) (values (card32-get 8) - (make-color :red (rgb-val-get 12) - :green (rgb-val-get 14) - :blue (rgb-val-get 16)) (make-color :red (rgb-val-get 18) :green (rgb-val-get 20) - :blue (rgb-val-get 22))))))))) + :blue (rgb-val-get 22)) + (make-color :red (rgb-val-get 12) + :green (rgb-val-get 14) + :blue (rgb-val-get 16))))))))) (defun alloc-color-cells (colormap colors &key (planes 0) contiguous-p (result-type 'list)) (declare (type colormap colormap) @@ -1121,18 +1028,14 @@ (type boolean red-p green-p blue-p)) (etypecase specs (list - (do* ((spec specs (cddr spec)) - (pixel (car spec) (car spec)) - (color (cadr spec) (cadr spec))) + (do ((spec specs (cddr spec))) ((endp spec)) - (store-color colormap pixel color :red-p red-p :green-p green-p :blue-p blue-p))) + (store-color colormap (car spec) (cadr spec) :red-p red-p :green-p green-p :blue-p blue-p))) (vector - (do* ((i 0 (+ i 2)) - (len (length specs)) - (pixel (aref specs i) (aref specs i)) - (color (aref specs (1+ i)) (aref specs (1+ i)))) + (do ((i 0 (+ i 2)) + (len (length specs))) ((>= i len)) - (store-color colormap pixel color :red-p red-p :green-p green-p :blue-p blue-p))))) + (store-color colormap (aref specs i) (aref specs (1+ i)) :red-p red-p :green-p green-p :blue-p blue-p))))) (defun query-colors (colormap pixels &key (result-type 'list)) (declare (type colormap colormap) diff --git a/clx/resource.lisp b/clx/resource.lisp index 6795bc9d4..9cc052ece 100644 --- a/clx/resource.lisp +++ b/clx/resource.lisp @@ -20,27 +20,6 @@ (in-package :xlib) -(export '(resource-database - resource-database-timestamp - make-resource-database - resource-key - get-resource - get-search-table - get-search-resource - add-resource - delete-resource - map-resource - merge-resources - read-resources - write-resources - wm-resources - set-wm-resources - root-resources)) - -#+clue ;; for CLUE only -(defparameter *resource-subclassp* nil - "When non-nil and no match found, search superclasses.") - ;; The C version of this uses a 64 entry hash table at each entry. ;; Small hash tables lose in Lisp, so we do linear searches on lists. @@ -59,9 +38,9 @@ (declare (type resource-database database) (ignore depth)) (print-unreadable-object (database stream :type t) - (princ (resource-database-name database) stream) + (write-string (string (resource-database-name database)) stream) (when (resource-database-value database) - (princ " " stream) + (write-string " " stream) (prin1 (resource-database-value database) stream)))) ;; The value slot of the top-level resource-database structure is used for a @@ -113,33 +92,53 @@ (format t " duplicate at ~s" db)))) ))) +;; +;; If this is true, resource symbols will be compared in a case-insensitive +;; manner, and converting a resource string to a keyword will uppercaseify it. +;; +(defparameter *uppercase-resource-symbols* nil) + (defun resource-key (stringable) ;; Ensure STRINGABLE is a keyword. (declare (type stringable stringable)) - (if (symbolp stringable) + (etypecase stringable + (symbol (if (keywordp (the symbol stringable)) stringable - (kintern (symbol-name (the symbol stringable)))) - (kintern (#-excl string-upcase - #+excl correct-case - (the string stringable))))) + (kintern (symbol-name (the symbol stringable))))) + (string + (if *uppercase-resource-symbols* + (setq stringable (#-allegro string-upcase #+allegro correct-case + (the string stringable)))) + (kintern (the string stringable))))) (defun stringable-equal (a b) ;; Compare two stringables. ;; Ignore case when comparing to a symbol. (declare (type stringable a b)) (declare (values boolean)) - (if (symbolp a) - (if (symbolp b) + (etypecase a + (string + (etypecase b + (string + (string= (the string a) (the string b))) + (symbol + (if *uppercase-resource-symbols* + (string-equal (the string a) + (the string (symbol-name (the symbol b)))) + (string= (the string a) + (the string (symbol-name (the symbol b)))))))) + (symbol + (etypecase b + (string + (if *uppercase-resource-symbols* + (string-equal (the string (symbol-name (the symbol a))) + (the string b)) + (string= (the string (symbol-name (the symbol a))) + (the string b)))) + (symbol (string= (the string (symbol-name (the symbol a))) - (the string (symbol-name (the symbol b)))) - (string-equal (the string (symbol-name (the symbol a))) - (the string b))) - (if (symbolp b) - (string-equal (the string a) - (the string (symbol-name (the symbol b)))) - (string= (the string a) - (the string b))))) + (the string (symbol-name (the symbol b))))))))) ;;;----------------------------------------------------------------------------- @@ -273,19 +272,7 @@ (get-entry-lookup tight class names classes))) ((and loose (not (stringable-equal name class)) - (get-entry-lookup loose class names classes))) - #+clue ;; for CLUE only - ((and *resource-subclassp* - (or loose tight) - (dolist (class (cluei::class-all-superclasses class)) - (when tight - (when (setq result - (get-entry-lookup tight class names classes)) - (return result))) - (when loose - (when (setq result - (get-entry-lookup loose class names classes)) - (return result)))))) + (get-entry-lookup loose class names classes))) (loose (loop (pop names) (pop classes) @@ -298,12 +285,6 @@ (setq result (get-entry-lookup loose class names classes))) (return result)) - #+clue ;; for CLUE only - (when *resource-subclassp* - (dolist (class (cluei::class-all-superclasses class)) - (when (setq result - (get-entry-lookup loose class names classes)) - (return-from get-entry result)))) ))))) @@ -405,15 +386,6 @@ (get-tables-lookup tight class names classes)) (when (and loose (not (stringable-equal name class))) (get-tables-lookup loose class names classes)) - #+clue ;; for CLUE only - (when *resource-subclassp* - (dolist (class (cluei::class-all-superclasses class)) - (declare (type symbol class)) - (setq class class) - (when tight - (get-tables-lookup tight class names classes)) - (when loose - (get-tables-lookup loose class names classes)))) (when loose (loop (pop names) (pop classes) @@ -423,10 +395,6 @@ (get-tables-lookup loose name names classes) (unless (stringable-equal name class) (get-tables-lookup loose class names classes)) - #+clue ;; for CLUE only - (when *resource-subclassp* - (dolist (class (cluei::class-all-superclasses class)) - (get-tables-lookup loose class names classes))) )))) @@ -438,14 +406,20 @@ ;; FUNCTION is called with arguments (name-list value . args) (declare (type resource-database database) (type (function (list t &rest t) t) function) - (downward-funarg function) + #+clx-ansi-common-lisp + (dynamic-extent function) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg function) (dynamic-extent args)) (declare (values nil)) (labels ((map-resource-internal (database function args name) (declare (type resource-database database) (type (function (list t &rest t) t) function) (type list name) - (downward-funarg function)) + #+clx-ansi-common-lisp + (dynamic-extent function) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg function)) (let ((tight (resource-database-tight database)) (loose (resource-database-loose database))) (declare (type list tight loose)) @@ -472,12 +446,16 @@ (defun merge-resources (database with-database) (declare (type resource-database database with-database)) (declare (values resource-database)) - (map-resource database #'add-resource with-database) + (map-resource + database + #'(lambda (name value database) + (add-resource database name value)) + with-database) with-database) (defun char-memq (key char) ;; Used as a test function for POSITION - (declare (type string-char char)) + (declare (type base-char char)) (member char key)) (defmacro resource-with-open-file ((stream pathname &rest options) &body body) @@ -489,8 +467,8 @@ (,streamp (streamp pathname)) (,stream (if ,streamp pathname (open ,pathname ,@options)))) (unwind-protect - (progn - ,@body + (multiple-value-prog1 + (progn ,@body) (setq ,abortp nil)) (unless ,streamp (close stream :abort ,abortp)))))) @@ -510,7 +488,7 @@ (resource-with-open-file (stream pathname) (loop (let ((string (read-line stream nil :eof))) - (declare (type string string)) + (declare (type (or string keyword) string)) (when (eq string :eof) (return database)) (let* ((end (length string)) (i (position '(#\tab #\space) string @@ -525,8 +503,7 @@ (#\# ;; Include (setq term (position '(#\tab #\space) string :test #'char-memq :start i :end end)) - (if (not (string-equal string "#INCLUDE" :start1 i :end1 term)) - (format t "~%Resource File error. Ignoring: ~a" string) + (when (string-equal string "#INCLUDE" :start1 i :end1 term) (let ((path (merge-pathnames (subseq string (1+ term)) (truename stream)))) (read-resources database path @@ -534,12 +511,13 @@ (otherwise (multiple-value-bind (name-list value) (parse-resource string i end) - (when key (setq value (funcall key value))) - (when - (cond (test (funcall test name-list value)) - (test-not (not (funcall test-not name-list value))) - (t t)) - (add-resource database name-list value))))))))))) + (when name-list + (when key (setq value (funcall key value))) + (when + (cond (test (funcall test name-list value)) + (test-not (not (funcall test-not name-list value))) + (t t)) + (add-resource database name-list value)))))))))))) (defun parse-resource (string &optional (start 0) end) ;; Parse a resource specfication string into a list of names and a value @@ -571,7 +549,12 @@ (return (values (nreverse name-list) - (string-trim '(#\tab #\space) (subseq string (1+ term))))))) + (string-trim '(#\tab #\space) (subseq string (1+ term)))))) + (otherwise + (return + (values + (nreverse name-list) + (subseq string i term))))) (setq i (1+ term)))) (defun write-resources (database pathname &key write test test-not) @@ -669,7 +652,7 @@ (wm-resources database window :key key :test test :test-not test-not) database)) -(defun set-root-resources (screen &key test test-not (write #'princ) database) +(defun set-root-resources (screen &key test test-not (write 'princ) database) "Changes the contents of the root window RESOURCE_MANAGER property for the given SCREEN. If SCREEN is a display, then its default screen is used. diff --git a/clx/socket.c b/clx/socket.c index f8c843ebc..b2eaf39d5 100644 --- a/clx/socket.c +++ b/clx/socket.c @@ -34,7 +34,10 @@ extern int errno; /* Certain (broken) OS's don't have this */ #endif /* hpux */ #endif /* X_UNIX_PATH */ #endif /* UNIXCONN */ + +#ifndef hpux void bcopy(); +#endif /* hpux */ /* * Attempts to connect to server, given host and display. Returns file @@ -61,7 +64,7 @@ int connect_to_server (host, display) /* Connect locally using Unix domain. */ unaddr.sun_family = AF_UNIX; (void) strcpy(unaddr.sun_path, X_UNIX_PATH); - sprintf(&unaddr.sun_path[strlen(unaddr.sun_path)], "%d", display); + (void) sprintf(&unaddr.sun_path[strlen(unaddr.sun_path)], "%d", display); addr = (struct sockaddr *) &unaddr; addrlen = strlen(unaddr.sun_path) + 2; /* @@ -70,7 +73,7 @@ int connect_to_server (host, display) if ((fd = socket((int) addr->sa_family, SOCK_STREAM, 0)) < 0) { #ifdef hpux /* this is disgusting */ /* cribbed from X11R4 xlib source */ if (errno == ENOENT) { /* No such file or directory */ - sprintf(unaddr.sun_path, "%s%d", OLD_UNIX_PATH, display); + (void) sprintf(unaddr.sun_path, "%s%d", OLD_UNIX_PATH, display); addrlen = strlen(unaddr.sun_path) + 2; if ((fd = socket ((int) addr->sa_family, SOCK_STREAM, 0)) < 0) return(-1); /* errno set by most recent system call. */ @@ -99,9 +102,15 @@ int connect_to_server (host, display) } /* Set up the socket data. */ inaddr.sin_family = host_ptr->h_addrtype; - bcopy((char *)host_ptr->h_addr, - (char *)&inaddr.sin_addr, - sizeof(inaddr.sin_addr)); +#ifdef hpux + (void) memcpy((char *)&inaddr.sin_addr, + (char *)host_ptr->h_addr, + sizeof(inaddr.sin_addr)); +#else /* hpux */ + (void) bcopy((char *)host_ptr->h_addr, + (char *)&inaddr.sin_addr, + sizeof(inaddr.sin_addr)); +#endif /* hpux */ } else { diff --git a/clx/text.lisp b/clx/text.lisp index 0182b8e39..c02ac22e5 100644 --- a/clx/text.lisp +++ b/clx/text.lisp @@ -20,24 +20,6 @@ (in-package :xlib) -(export '( - translation-function - translate-default - text-extents - text-width - draw-glyph - draw-glyphs - draw-image-glyph - draw-image-glyphs - display-keycode-range - set-modifier-mapping - modifier-mapping - keysym - change-keyboard-mapping - keyboard-mapping - keyboard-mapping - )) - ;; Strings are broken up into chunks of this size (defparameter *max-string-size* 254) @@ -128,7 +110,10 @@ (declare (type sequence sequence) (type (or font gcontext) font)) (declare (type (or null translation-function) translate) - (downward-funarg #+Genera * #-Genera translate)) + #+clx-ansi-common-lisp + (dynamic-extent translate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg #+Genera * #-Genera translate)) (declare (values width ascent descent left right font-ascent font-descent direction (or null array-index))) @@ -154,7 +139,7 @@ (with-display (display) (do* ((wbuf (display-tbuf16 display)) (src-end (or end (length sequence))) - (src-start start end) + (src-start start (index+ src-start buf-end)) (end (index-min src-end (index+ src-start *buffer-text16-size*)) (index-min src-end (index+ src-start *buffer-text16-size*))) (buf-end 0) @@ -176,8 +161,7 @@ sequence src-start end font wbuf 0)) (setq buf-end (- buf-end src-start)) (cond ((null new-font) (setq stop-p t)) - ((integerp new-font) (incf width (the int32 new-font))) - ((type? new-font 'font) (setq font new-font))) + ((integerp new-font) (incf width (the int32 new-font)))) (let (w a d l r) (if (or (font-char-infos-internal font) (font-local-only-p font)) @@ -203,7 +187,10 @@ (setq right-bearing (the int32 (max right-bearing (the int32 r)))) (setq ascent (the int16 (max ascent (the int16 a)))) (setq descent (the int16 (max descent (the int16 d))))))) - + + (when (type? new-font 'font) + (setq font new-font)) + (setq overall-ascent (the int16 (max overall-ascent font-ascent))) (setq overall-descent (the int16 (max overall-descent font-descent))) (case overall-direction @@ -230,7 +217,10 @@ (type array-index start) (type (or null array-index) end)) (declare (type (or null translation-function) translate) - (downward-funarg #+Genera * #-Genera translate)) + #+clx-ansi-common-lisp + (dynamic-extent translate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg #+Genera * #-Genera translate)) (declare (values integer (or null integer))) (when (type? font 'gcontext) (force-gcontext-changes font) @@ -245,7 +235,7 @@ (with-display (display) (do* ((wbuf (display-tbuf16 display)) (src-end (or end (length sequence))) - (src-start start end) + (src-start start (index+ src-start buf-end)) (end (index-min src-end (index+ src-start *buffer-text16-size*)) (index-min src-end (index+ src-start *buffer-text16-size*))) (buf-end 0) @@ -263,21 +253,16 @@ sequence src-start end font wbuf 0)) (setq buf-end (- buf-end src-start)) (cond ((null new-font) (setq stop-p t)) - ((integerp new-font) (incf width (the int32 new-font))) - ((type? new-font 'font) (setq font new-font))) + ((integerp new-font) (incf width (the int32 new-font)))) (incf width (if (or (font-char-infos-internal font) (font-local-only-p font)) (text-extents-local font wbuf 0 buf-end :width-only) - (text-width-server font wbuf 0 buf-end))))) + (text-width-server font wbuf 0 buf-end))) + (when (type? new-font 'font) + (setq font new-font)))) (values width next-start))) -#+clx-little-endian -(defun byte-swap-card16 (card16) - (declare (type card16 card16)) - (declare (values card16)) - (dpb card16 (byte 8 8) (ash card16 -8))) - (defun text-extents-server (font string start end) (declare (type font font) (type string string) @@ -293,10 +278,7 @@ (((data boolean) (oddp length)) (length (index+ (index-ceiling length 2) 2)) (resource-id font-id) - ((sequence :format card16 :start start :end end :appending t - #+clx-little-endian :transform - #+clx-little-endian ;; Byte swap for little-endian - #'byte-swap-card16) + ((sequence :format char2b :start start :end end :appending t) string)) (values (integer-get 16) @@ -323,10 +305,7 @@ (((data boolean) (oddp length)) (length (index+ (index-ceiling length 2) 2)) (resource-id font-id) - ((sequence :format card16 :start start :end end :appending t - #+clx-little-endian :transform - #+clx-little-endian ;; Byte swap for little-endian - #'byte-swap-card16) + ((sequence :format char2b :start start :end end :appending t) string)) (values (integer-get 16))))) @@ -390,10 +369,10 @@ ;; extents (do ((i start (index1+ i)) (width 0) - (ascent 0) - (descent 0) + (ascent #x-7fff) + (descent #x-7fff) (left #x7fff) - (right 0)) + (right #x-7fff)) ((index>= i end) (values width ascent descent left right)) (declare (type array-index i) @@ -429,10 +408,10 @@ ;; extents (do ((i start (index1+ i)) (width 0) - (ascent 0) - (descent 0) + (ascent #x-7fff) + (descent #x-7fff) (left #x7fff) - (right 0)) + (right #x-7fff)) ((index>= i end) (values width ascent descent left right)) (declare (type array-index i) @@ -483,7 +462,10 @@ (type (or null int32) width) (type index-size size)) (declare (type (or null translation-function) translate) - (downward-funarg #+Genera * #-Genera translate)) + #+clx-ansi-common-lisp + (dynamic-extent translate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg #+Genera * #-Genera translate)) (declare (values boolean (or null int32))) (let* ((display (gcontext-display gcontext)) (result t) @@ -531,7 +513,10 @@ (type (or null int32) width) (type index-size size)) (declare (type (or null translation-function) translate) - (downward-funarg #+Genera * #-Genera translate)) + #+clx-ansi-common-lisp + (dynamic-extent translate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg #+Genera * #-Genera translate)) (declare (values (or null array-index) (or null int32))) (unless end (setq end (length sequence))) (ecase size @@ -545,14 +530,17 @@ ;; overall width, if known. (declare (type drawable drawable) (type gcontext gcontext) - (type int32 x y) + (type int16 x y) (type array-index start) - (type (or array-index null) end) (type sequence sequence) - (type (or int32 null) width)) + (type (or null array-index) end) + (type (or null int32) width)) (declare (values (or null array-index) (or null int32))) (declare (type translation-function translate) - (downward-funarg translate)) + #+clx-ansi-common-lisp + (dynamic-extent translate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg translate)) (let* ((src-start start) (src-end (or end (length sequence))) (next-start nil) @@ -647,12 +635,15 @@ (type gcontext gcontext) (type int16 x y) (type array-index start) - (type (or array-index null) end) - (type (or null int32) width) - (type sequence sequence)) + (type sequence sequence) + (type (or null array-index) end) + (type (or null int32) width)) (declare (values (or null array-index) (or null int32))) (declare (type translation-function translate) - (downward-funarg translate)) + #+clx-ansi-common-lisp + (dynamic-extent translate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg translate)) (let* ((src-start start) (src-end (or end (length sequence))) (next-start nil) @@ -702,9 +693,7 @@ (setq dst-chunk (index- new-start src-start) length (index- length dst-chunk) src-start new-start) - (write-sequence-card16 display (index+ boffset 2) buffer 0 dst-chunk - #+clx-little-endian ;; Byte swap for little-endian - #'byte-swap-card16) + (write-sequence-char2b display (index+ boffset 2) buffer 0 dst-chunk) (if translated-width (when overall-width (incf overall-width translated-width)) (setq overall-width nil)) @@ -754,7 +743,10 @@ (type (or null int32) width) (type index-size size)) (declare (type (or null translation-function) translate) - (downward-funarg #+Genera * #-Genera translate)) + #+clx-ansi-common-lisp + (dynamic-extent translate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg #+Genera * #-Genera translate)) (declare (values boolean (or null int32))) (let* ((display (gcontext-display gcontext)) (result t) @@ -790,7 +782,7 @@ (values t width)))) (defun draw-image-glyphs (drawable gcontext x y sequence - &key (start 0) end width translate (size :default)) + &key (start 0) end translate width (size :default)) ;; An initial font change is allowed from translate, but any subsequent font ;; change or horizontal motion will cause termination (because the protocol ;; doesn't support chaining). [Alternatively, font changes could be accepted @@ -807,16 +799,19 @@ (type (or null int32) width) (type index-size size)) (declare (type (or null translation-function) translate) - (downward-funarg #+Genera * #-Genera translate)) + #+clx-ansi-common-lisp + (dynamic-extent translate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg #+Genera * #-Genera translate)) (declare (values (or null array-index) (or null int32))) - (unless end (setq end (length sequence))) + (setf end (index-min (index+ start 255) (or end (length sequence)))) (ecase size ((:default 8) - (draw-image-glyphs8 drawable gcontext x y sequence start end width translate)) + (draw-image-glyphs8 drawable gcontext x y sequence start end translate width)) (16 - (draw-image-glyphs16 drawable gcontext x y sequence start end width translate)))) + (draw-image-glyphs16 drawable gcontext x y sequence start end translate width)))) -(defun draw-image-glyphs8 (drawable gcontext x y sequence start end width translate) +(defun draw-image-glyphs8 (drawable gcontext x y sequence start end translate width) ;; An initial font change is allowed from translate, but any subsequent font ;; change or horizontal motion will cause termination (because the protocol ;; doesn't support chaining). [Alternatively, font changes could be accepted @@ -832,7 +827,10 @@ (type (or null array-index) end) (type (or null int32) width)) (declare (type (or null translation-function) translate) - (downward-funarg translate)) + #+clx-ansi-common-lisp + (dynamic-extent translate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg translate)) (declare (values (or null array-index) (or null int32))) (do* ((display (gcontext-display gcontext)) (length (index- end start)) @@ -879,7 +877,7 @@ (values (if (index= chunk length) nil new-start) (or translated-width width)))))) -(defun draw-image-glyphs16 (drawable gcontext x y sequence start end width translate) +(defun draw-image-glyphs16 (drawable gcontext x y sequence start end translate width) ;; An initial font change is allowed from translate, but any subsequent font ;; change or horizontal motion will cause termination (because the protocol ;; doesn't support chaining). [Alternatively, font changes could be accepted @@ -895,7 +893,10 @@ (type (or null array-index) end) (type (or null int32) width)) (declare (type (or null translation-function) translate) - (downward-funarg translate)) + #+clx-ansi-common-lisp + (dynamic-extent translate) + #+(and lispm (not clx-ansi-common-lisp)) + (sys:downward-funarg translate)) (declare (values (or null array-index) (or null int32))) (do* ((display (gcontext-display gcontext)) (length (index- end start)) @@ -935,9 +936,7 @@ ;; Quit when nothing translated (when (index-zerop chunk) (return-from draw-image-glyphs16 new-start)) - (write-sequence-card16 display (index+ buffer-boffset 16) buffer 0 chunk - #+clx-little-endian ;; Byte swap for little-endian - #'byte-swap-card16) + (write-sequence-char2b display (index+ buffer-boffset 16) buffer 0 chunk) ;; Update buffer pointers (data-put 1 chunk) (let ((blen (lround (index+ 16 (index-ash chunk 1))))) diff --git a/clx/translate.lisp b/clx/translate.lisp index 4f70cadb2..9ec5768c0 100644 --- a/clx/translate.lisp +++ b/clx/translate.lisp @@ -18,24 +18,6 @@ (in-package :xlib) -(export '(define-keysym-set - keysym-set - define-keysym - undefine-keysym - default-keysym-translate - keysym - character->keysyms - keycode->keysym - keysym->character - default-keysym-index - keycode->character - state-keysym-p - mapping-notify - keysym-in-map-p - character-in-map-p - keysym->keycodes - )) - (defvar *keysym-sets* nil) ;; Alist of (name first-keysym last-keysym) (defun define-keysym-set (set first-keysym last-keysym) @@ -80,7 +62,7 @@ (type list bytes) (values keysym)) (typecase keysym - ((integer 0) + ((integer 0 *) (dolist (b bytes keysym) (setq keysym (+ (ash keysym 8) b)))) (otherwise (or (car (character->keysyms keysym)) @@ -155,7 +137,7 @@ ;; when mask and modifiers aren't lists of keysyms] ;; The default is #'default-keysym-translate ;; - (declare (type (or string-char t) object) + (declare (type (or base-char t) object) (type keysym keysym) (type (or null mask16 list) ;; (list (or keysym state-mask-key)) modifiers) @@ -163,7 +145,7 @@ mask) (type (or null display) display) (type (or null keysym) lowercase) - (type (or null (function (display card16 t) t)) translate)) + (type (function (display card16 t) t) translate)) (flet ((merge-keysym-mappings (new old) ;; Merge new keysym-mapping with list of old mappings. ;; Ensure that the mapping with no modifiers or mask comes first. @@ -205,7 +187,7 @@ (defun undefine-keysym (object keysym &key display modifiers &allow-other-keys) ;; Undefine the keysym-translation translating KEYSYM to OBJECT with MODIFIERS. ;; If DISPLAY is non-nil, undefine the translation for DISPLAY if it exists. - (declare (type (or string-char t) object) + (declare (type (or base-char t) object) (type keysym keysym) (type (or null mask16 list) ;; (list (or keysym state-mask-key)) modifiers) @@ -313,11 +295,7 @@ (defun keysym->character (display keysym &optional (state 0)) ;; Find the character associated with a keysym. - ;; STATE is used for adding char-bits to character as follows: - ;; control -> char-control-bit - ;; mod-1 -> char-meta-bit - ;; mod-2 -> char-super-bit - ;; mod-3 -> char-hyper-bit + ;; STATE can be used to set character attributes. ;; Implementation dependent function. (declare (type display display) (type keysym keysym) @@ -380,36 +358,6 @@ (declare (type mask16 modifiers mask)) (= (logand state mask) modifiers)))) -(defun default-keysym-translate (display state object) - ;; If object is a character, char-bits are set from state. - ;; - ;; [the following isn't implemented (should it be?)] - ;; If object is a list, it is an alist with entries: - ;; (string-char [modifiers] [mask-modifiers]) - ;; When MODIFIERS are specified, this character translation - ;; will only take effect when the specified modifiers are pressed. - ;; MASK-MODIFIERS can be used to specify a set of modifiers to ignore. - ;; When MASK-MODIFIERS is missing, all other modifiers are ignored. - ;; In ambiguous cases, the most specific translation is used. - (declare (type display display) - (type card16 state) - (type t object)) - (declare (values t)) ;; Object returned by keycode->character - (macrolet ((keystate-p (state keyword) - `(the boolean - (logbitp ,(position keyword *state-mask-vector*) - ,state)))) - (when (characterp object) - (when (keystate-p state :control) - (setf (char-bit object :control) 1)) - (when (state-keysymp display state left-meta-keysym) - (setf (char-bit object :meta) 1)) - (when (state-keysymp display state left-super-keysym) - (setf (char-bit object :super) 1)) - (when (state-keysymp display state left-hyper-keysym) - (setf (char-bit object :hyper) 1)))) - object) - (defun default-keysym-index (display keycode state) ;; Returns a keysym-index for use with keycode->character (declare (values card8)) @@ -494,17 +442,13 @@ ;; where char0 is the "character" object associated with keysym-index 0 and ;; caps-lock-p is non-nil when the keysym associated with the lock ;; modifier is for caps-lock. - ;; STATE is also used for setting char-bits: - ;; control -> char-control-bit - ;; mod-1 -> char-meta-bit - ;; mod-2 -> char-super-bit - ;; mod-3 -> char-hyper-bit + ;; STATE can also used for setting character attributes. ;; Implementation dependent function. (declare (type display display) (type card8 keycode) (type card16 state) (type (or null card8) keysym-index) - (type (or null (function (string-char card16 boolean card8) card8)) + (type (or null (function (base-char card16 boolean card8) card8)) keysym-index-function)) (declare (values (or null character))) (let* ((index (or keysym-index -- GitLab