chiark / gitweb /
49ac335e6579652b1e238cc2548e9cf6ebf1fb7c
[sod] / src / utilities.lisp
1 ;;; -*-lisp-*-
2 ;;;
3 ;;; Various handy utilities
4 ;;;
5 ;;; (c) 2009 Straylight/Edgeware
6 ;;;
7
8 ;;;----- Licensing notice ---------------------------------------------------
9 ;;;
10 ;;; This file is part of the Sensible Object Design, an object system for C.
11 ;;;
12 ;;; SOD is free software; you can redistribute it and/or modify
13 ;;; it under the terms of the GNU General Public License as published by
14 ;;; the Free Software Foundation; either version 2 of the License, or
15 ;;; (at your option) any later version.
16 ;;;
17 ;;; SOD is distributed in the hope that it will be useful,
18 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;;; GNU General Public License for more details.
21 ;;;
22 ;;; You should have received a copy of the GNU General Public License
23 ;;; along with SOD; if not, write to the Free Software Foundation,
24 ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 (cl:defpackage #:sod-utilities
27   (:use #:common-lisp
28
29         ;; MOP from somewhere.
30         #+sbcl #:sb-mop
31         #+(or cmu clisp) #:mop
32         #+ecl #:clos))
33
34 (cl:in-package #:sod-utilities)
35
36 ;;;--------------------------------------------------------------------------
37 ;;; Macro hacks.
38
39 (export 'with-gensyms)
40 (defmacro with-gensyms ((&rest binds) &body body)
41   "Evaluate BODY with variables bound to fresh symbols.
42
43    The BINDS are a list of entries (VAR [NAME]), and a singleton list can be
44    replaced by just a symbol; each VAR is bound to a fresh symbol generated
45    by (gensym NAME), where NAME defaults to the symbol-name of VAR."
46   `(let (,@(mapcar (lambda (bind)
47                      (multiple-value-bind (var name)
48                          (if (atom bind)
49                              (values bind (concatenate 'string
50                                            (symbol-name bind) "-"))
51                              (destructuring-bind
52                                  (var &optional
53                                       (name (concatenate 'string
54                                              (symbol-name var) "-")))
55                                  bind
56                                (values var name)))
57                        `(,var (gensym ,name))))
58                    binds))
59      ,@body))
60
61 (eval-when (:compile-toplevel :load-toplevel :execute)
62   (defun strip-quote (form)
63     "If FORM looks like (quote FOO) for self-evaluating FOO, return FOO.
64
65    If FORM is a symbol whose constant value is `nil' then return `nil'.
66    Otherwise return FORM unchanged.  This makes it easier to inspect constant
67    things.  This is a utility for `once-only'."
68
69     (cond ((and (consp form)
70                 (eq (car form) 'quote)
71                 (cdr form)
72                 (null (cddr form)))
73            (let ((body (cadr form)))
74              (if (or (not (or (consp body) (symbolp body)))
75                      (member body '(t nil))
76                      (keywordp body))
77                  body
78                  form)))
79           ((and (symbolp form) (boundp form) (null (symbol-value form)))
80            nil)
81           (t
82            form))))
83
84 (export 'once-only)
85 (defmacro once-only (binds &body body)
86   "Macro helper for preventing repeated evaluation.
87
88    The syntax is actually hairier than shown:
89
90         once-only ( [[ :environment ENV ]] { VAR | (VAR [VALUE-FORM]) }* )
91           { FORM }*
92
93    So, the BINDS are a list of entries (VAR [VALUE-FORM]); a singleton list
94    can be replaced by just a symbol VAR, and the VALUE-FORM defaults to VAR.
95    But before them you can have keyword arguments.  Only one is defined so
96    far.  See below for the crazy things that does.
97
98    The result of evaluating a ONCE-ONLY form is a form with the structure
99
100         (let ((#:GS1 VALUE-FORM1)
101               ...
102               (#:GSn VALUE-FORMn))
103           STUFF)
104
105    where STUFF is the value of the BODY forms, as an implicit progn, in an
106    environment with the VARs bound to the corresponding gensyms.
107
108    As additional magic, if any of the VALUE-FORMs is actually constant (as
109    determined by inspection, and aided by `constantp' if an :environment is
110    supplied, then no gensym is constructed for it, and the VAR is bound
111    directly to the constant form.  Moreover, if the constant form looks like
112    (quote FOO) for a self-evaluating FOO then the outer layer of quoting is
113    stripped away."
114
115   ;; We need an extra layer of gensyms in our expansion: we'll want the
116   ;; expansion to examine the various VALUE-FORMs to find out whether they're
117   ;; constant without evaluating them repeatedly.  This also helps with
118   ;; another problem: we explicitly encourage the rebinding of a VAR
119   ;; (probably a macro argument) to a gensym which will be bound to the value
120   ;; of the form previously held in VAR itself -- so the gensym and value
121   ;; form must exist at the same time and we need two distinct variables.
122
123   (with-gensyms ((envvar "ENV-") lets sym (bodyfunc "BODY-"))
124     (let ((env nil))
125
126       ;; First things first: let's pick up the keywords.
127       (loop
128         (unless (and binds (keywordp (car binds)))
129           (return))
130         (ecase (pop binds)
131           (:environment (setf env (pop binds)))))
132
133       ;; Now we'll investigate the bindings.  Turn each one into a list (VAR
134       ;; VALUE-FORM TEMP) where TEMP is an appropriate gensym -- see the note
135       ;; above.
136       (let ((canon (mapcar (lambda (bind)
137                              (multiple-value-bind (var form)
138                                  (if (atom bind)
139                                      (values bind bind)
140                                      (destructuring-bind
141                                          (var &optional (form var)) bind
142                                        (values var form)))
143                                (list var form
144                                      (gensym (format nil "T-~A-"
145                                                      (symbol-name var))))))
146                            binds)))
147
148         `(let* (,@(and env `((,envvar ,env)))
149                 (,lets nil)
150                 ,@(mapcar (lambda (bind)
151                             (destructuring-bind (var form temp) bind
152                               (declare (ignore var))
153                               `(,temp ,form)))
154                           canon)
155                 ,@(mapcar (lambda (bind)
156                             (destructuring-bind (var form temp) bind
157                               (declare (ignore form))
158                               `(,var
159                                 (cond ((constantp ,temp
160                                                   ,@(and env `(,envvar)))
161                                        (strip-quote ,temp))
162                                       ((symbolp ,temp)
163                                        ,temp)
164                                       (t
165                                        (let ((,sym (gensym
166                                                     ,(concatenate 'string
167                                                       (symbol-name var)
168                                                       "-"))))
169                                          (push (list ,sym ,temp) ,lets)
170                                          ,sym))))))
171                           canon))
172            (flet ((,bodyfunc () ,@body))
173              (if ,lets
174                  `(let (,@(nreverse ,lets)) ,(,bodyfunc))
175                  (,bodyfunc))))))))
176
177 (export 'parse-body)
178 (defun parse-body (body &key (docp t) (declp t))
179   "Parse the BODY into a docstring, declarations and the body forms.
180
181    These are returned as three lists, so that they can be spliced into a
182    macro expansion easily.  The declarations are consolidated into a single
183    `declare' form.  If DOCP is nil then a docstring is not permitted; if
184    DECLP is nil, then declarations are not permitted."
185   (let ((decls nil)
186         (doc nil))
187     (loop
188       (cond ((null body) (return))
189             ((and declp (consp (car body)) (eq (caar body) 'declare))
190              (setf decls (append decls (cdr (pop body)))))
191             ((and docp (stringp (car body)) (not doc) (cdr body))
192              (setf doc (pop body)))
193             (t (return))))
194     (values (and doc (list doc))
195             (and decls (list (cons 'declare decls)))
196             body)))
197
198 ;;;--------------------------------------------------------------------------
199 ;;; Locatives.
200
201 (export '(loc locp))
202 (defstruct (loc (:predicate locp) (:constructor make-loc (reader writer)))
203   "Locative data type.  See `locf' and `ref'."
204   (reader nil :type function)
205   (writer nil :type function))
206
207 (export 'locf)
208 (defmacro locf (place &environment env)
209   "Slightly cheesy locatives.
210
211    (locf PLACE) returns an object which, using the `ref' function, can be
212    used to read or set the value of PLACE.  It's cheesy because it uses
213    closures rather than actually taking the address of something.  Also,
214    unlike Zetalisp, we don't overload `car' to do our dirty work."
215   (multiple-value-bind
216       (valtmps valforms newtmps setform getform)
217       (get-setf-expansion place env)
218     `(let* (,@(mapcar #'list valtmps valforms))
219        (make-loc (lambda () ,getform)
220                  (lambda (,@newtmps) ,setform)))))
221
222 (export 'ref)
223 (declaim (inline ref (setf ref)))
224 (defun ref (loc)
225   "Fetch the value referred to by a locative."
226   (funcall (loc-reader loc)))
227 (defun (setf ref) (new loc)
228   "Store a new value in the place referred to by a locative."
229   (funcall (loc-writer loc) new))
230
231 (export 'with-locatives)
232 (defmacro with-locatives (locs &body body)
233   "Evaluate BODY with implicit locatives.
234
235    LOCS is a list of items of the form (SYM [LOC-EXPR]), where SYM is a
236    symbol and LOC-EXPR evaluates to a locative.  If LOC-EXPR is omitted, it
237    defaults to SYM.  As an abbreviation for a common case, LOCS may be a
238    symbol instead of a list.
239
240    The BODY is evaluated in an environment where each SYM is a symbol macro
241    which expands to (ref LOC-EXPR) -- or, in fact, something similar which
242    doesn't break if LOC-EXPR has side-effects.  Thus, references, including
243    `setf' forms, fetch or modify the thing referred to by the LOC-EXPR.
244    Useful for covering over where something uses a locative."
245   (setf locs (mapcar (lambda (item)
246                        (cond ((atom item) (list item item))
247                              ((null (cdr item)) (list (car item) (car item)))
248                              (t item)))
249                      (if (listp locs) locs (list locs))))
250   (let ((tt (mapcar (lambda (l) (declare (ignore l)) (gensym)) locs))
251         (ll (mapcar #'cadr locs))
252         (ss (mapcar #'car locs)))
253     `(let (,@(mapcar (lambda (tmp loc) `(,tmp ,loc)) tt ll))
254        (symbol-macrolet (,@(mapcar (lambda (sym tmp)
255                                      `(,sym (ref ,tmp))) ss tt))
256          ,@body))))
257
258 ;;;--------------------------------------------------------------------------
259 ;;; Anaphorics.
260
261 (export 'it)
262
263 (export 'aif)
264 (defmacro aif (cond cons &optional (alt nil altp))
265   "If COND is not nil, evaluate CONS with `it' bound to the value of COND.
266
267    Otherwise, if given, evaluate ALT; `it' isn't bound in ALT."
268   (once-only (cond)
269     `(if ,cond (let ((it ,cond)) ,cons) ,@(and altp `(,alt)))))
270
271 (export 'awhen)
272 (defmacro awhen (cond &body body)
273   "If COND, evaluate BODY as a progn with `it' bound to the value of COND."
274   `(let ((it ,cond)) (when it ,@body)))
275
276 (export 'aand)
277 (defmacro aand (&rest forms)
278   "Like `and', but anaphoric.
279
280    Each FORM except the first is evaluated with `it' bound to the value of
281    the previous one.  If there are no forms, then the result it `t'; if there
282    is exactly one, then wrapping it in `aand' is pointless."
283   (labels ((doit (first rest)
284              (if (null rest)
285                  first
286                  `(let ((it ,first))
287                     (if it ,(doit (car rest) (cdr rest)) nil)))))
288     (if (null forms)
289         't
290         (doit (car forms) (cdr forms)))))
291
292 (export 'acond)
293 (defmacro acond (&body clauses &environment env)
294   "Like COND, but with `it' bound to the value of the condition.
295
296    Each of the CLAUSES has the form (CONDITION FORM*); if a CONDITION is
297    non-nil then evaluate the FORMs with `it' bound to the non-nil value, and
298    return the value of the last FORM; if there are no FORMs, then return `it'
299    itself.  If the CONDITION is nil then continue with the next clause; if
300    all clauses evaluate to nil then the result is nil."
301   (labels ((walk (clauses)
302              (if (null clauses)
303                  `nil
304                  (once-only (:environment env (cond (caar clauses)))
305                    (if (and (constantp cond)
306                             (if (and (consp cond) (eq (car cond) 'quote))
307                                 (cadr cond) cond))
308                        (if (cdar clauses)
309                            `(let ((it ,cond))
310                               (declare (ignorable it))
311                               ,@(cdar clauses))
312                            cond)
313                        `(if ,cond
314                             ,(if (cdar clauses)
315                                  `(let ((it ,cond))
316                                     (declare (ignorable it))
317                                     ,@(cdar clauses))
318                                  cond)
319                             ,(walk (cdr clauses))))))))
320     (walk clauses)))
321
322 (export '(acase aecase atypecase aetypecase))
323 (defmacro acase (value &body clauses)
324   `(let ((it ,value)) (case it ,@clauses)))
325 (defmacro aecase (value &body clauses)
326   `(let ((it ,value)) (ecase it ,@clauses)))
327 (defmacro atypecase (value &body clauses)
328   `(let ((it ,value)) (typecase it ,@clauses)))
329 (defmacro aetypecase (value &body clauses)
330   `(let ((it ,value)) (etypecase it ,@clauses)))
331
332 (export 'asetf)
333 (defmacro asetf (&rest places-and-values &environment env)
334   "Anaphoric update of places.
335
336    The PLACES-AND-VALUES are alternating PLACEs and VALUEs.  Each VALUE is
337    evaluated with IT bound to the current value stored in the corresponding
338    PLACE."
339   `(progn ,@(loop for (place value) on places-and-values by #'cddr
340                   collect (multiple-value-bind
341                               (temps inits newtemps setform getform)
342                               (get-setf-expansion place env)
343                             `(let* (,@(mapcar #'list temps inits)
344                                     (it ,getform))
345                                (multiple-value-bind ,newtemps ,value
346                                  ,setform))))))
347
348 ;;;--------------------------------------------------------------------------
349 ;;; MOP hacks (not terribly demanding).
350
351 (export 'instance-initargs)
352 (defgeneric instance-initargs (instance)
353   (:documentation
354    "Return a plausble list of initargs for INSTANCE.
355
356    The idea is that you can make a copy of INSTANCE by invoking
357
358         (apply #'make-instance (class-of INSTANCE)
359                (instance-initargs INSTANCE))
360
361    The default implementation works by inspecting the slot definitions and
362    extracting suitable initargs, so this will only succeed if enough slots
363    actually have initargs specified that `initialize-instance' can fill in
364    the rest correctly.
365
366    The list returned is freshly consed, and you can destroy it if you like.")
367   (:method ((instance standard-object))
368     (mapcan (lambda (slot)
369               (aif (slot-definition-initargs slot)
370                    (list (car it)
371                          (slot-value instance (slot-definition-name slot)))
372                    nil))
373             (class-slots (class-of instance)))))
374
375 (export '(copy-instance copy-instance-using-class))
376 (defgeneric copy-instance-using-class (class instance &rest initargs)
377   (:documentation
378    "Metaobject protocol hook for `copy-instance'.")
379   (:method ((class standard-class) instance &rest initargs)
380     (let ((copy (allocate-instance class)))
381       (dolist (slot (class-slots class))
382         (let ((name (slot-definition-name slot)))
383           (when (slot-boundp instance name)
384             (setf (slot-value copy name) (slot-value instance name)))))
385       (apply #'shared-initialize copy nil initargs))))
386 (defun copy-instance (object &rest initargs)
387   "Construct and return a copy of OBJECT.
388
389    The new object has the same class as OBJECT, and the same slot values
390    except where overridden by INITARGS."
391   (apply #'copy-instance-using-class (class-of object) object initargs))
392
393 (export '(generic-function-methods method-specializers
394           eql-specializer eql-specializer-object))
395
396 ;;;--------------------------------------------------------------------------
397 ;;; List utilities.
398
399 (export 'make-list-builder)
400 (defun make-list-builder (&optional initial)
401   "Return a simple list builder."
402
403   ;; The `builder' is just a cons cell whose cdr will be the list that's
404   ;; wanted.  Effectively, then, we have a list that's one item longer than
405   ;; we actually want.  The car of this extra initial cons cell is always the
406   ;; last cons in the list -- which is now well defined because there's
407   ;; always at least one.
408
409   (let ((builder (cons nil initial)))
410     (setf (car builder) (last builder))
411     builder))
412
413 (export 'lbuild-add)
414 (defun lbuild-add (builder item)
415   "Add an ITEM to the end of a list BUILDER."
416   (let ((new (cons item nil)))
417     (setf (cdar builder) new
418           (car builder) new))
419   builder)
420
421 (export 'lbuild-add-list)
422 (defun lbuild-add-list (builder list)
423   "Add a LIST to the end of a list BUILDER.  The LIST will be clobbered."
424   (when list
425     (setf (cdar builder) list
426           (car builder) (last list)))
427   builder)
428
429 (export 'lbuild-list)
430 (defun lbuild-list (builder)
431   "Return the constructed list."
432   (cdr builder))
433
434 (export 'mappend)
435 (defun mappend (function list &rest more-lists)
436   "Like a nondestructive MAPCAN.
437
438    Map FUNCTION over the the corresponding elements of LIST and MORE-LISTS,
439    and return the result of appending all of the resulting lists."
440   (reduce #'append (apply #'mapcar function list more-lists) :from-end t))
441
442 (export '(inconsistent-merge-error merge-error-candidates))
443 (define-condition inconsistent-merge-error (error)
444   ((candidates :initarg :candidates
445                :reader merge-error-candidates))
446   (:documentation
447    "Reports an inconsistency in the arguments passed to `merge-lists'.")
448   (:report (lambda (condition stream)
449              (format stream "Merge inconsistency: failed to decide among ~A"
450                      (merge-error-candidates condition)))))
451
452 (export 'merge-lists)
453 (defun merge-lists (lists &key pick (test #'eql))
454   "Return a merge of the given LISTS.
455
456    The resulting list contains the items of the given LISTS, with duplicates
457    removed.  The order of the resulting list is consistent with the orders of
458    the input LISTS in the sense that if A precedes B in some input list then
459    A will also precede B in the output list.  If the lists aren't consistent
460    (e.g., some list contains A followed by B, and another contains B followed
461    by A) then an error of type `inconsistent-merge-error' is signalled.
462
463    Item equality is determined by TEST.
464
465    If there is an ambiguity at any point -- i.e., a choice between two or
466    more possible next items to emit -- then PICK is called to arbitrate.
467    PICK is called with two arguments: the list of candidate next items, and
468    the current output list.  It should return one of the candidate items.
469    The order of the candidates in the list given to the PICK function
470    reflects their order in the input LISTS: item A will precede item B in the
471    candidates list if and only if an occurrence of A appears in an earlier
472    input list than any occurrence of item B.  (This completely determines the
473    order of the candidates: it is not possible that two candidates appear in
474    the same input list would resolve the ambiguity between them.)  If PICK is
475    omitted then the item chosen is the one appearing in the earliest of the
476    input lists: i.e., effectively, the default PICK function is
477
478         (lambda (candidates output-so-far)
479           (declare (ignore output-so-far))
480           (car candidates))
481
482    The primary use of this function is in computing class precedence lists.
483    By building the input lists and selecting the PICK function appropriately,
484    a variety of different CPL algorithms can be implemented."
485
486   (do ((lb (make-list-builder)))
487       ((null lists) (lbuild-list lb))
488
489     ;; The candidate items are the ones at the front of the input lists.
490     ;; Gather them up, removing duplicates.  If a candidate is somewhere in
491     ;; one of the other lists other than at the front then we reject it.  If
492     ;; we've just rejected everything, then we can make no more progress and
493     ;; the input lists were inconsistent.
494     (let* ((candidates (delete-duplicates (mapcar #'car lists)
495                                           :test test :from-end t))
496            (leasts (remove-if (lambda (item)
497                                 (some (lambda (list)
498                                         (member item (cdr list) :test test))
499                                       lists))
500                               candidates))
501            (winner (cond ((null leasts)
502                           (error 'inconsistent-merge-error
503                                  :candidates candidates))
504                          ((null (cdr leasts))
505                           (car leasts))
506                          (pick
507                           (funcall pick leasts (lbuild-list lb)))
508                          (t (car leasts)))))
509
510       ;; Check that the PICK function isn't conning us.
511       (assert (member winner leasts :test test))
512
513       ;; Update the output list and remove the winning item from the input
514       ;; lists.  We know that it must be at the front of each input list
515       ;; containing it.  At this point, we discard input lists entirely when
516       ;; they run out of entries.  The loop ends when there are no more input
517       ;; lists left, i.e., when we've munched all of the input items.
518       (lbuild-add lb winner)
519       (setf lists (delete nil (mapcar (lambda (list)
520                                         (if (funcall test winner (car list))
521                                             (cdr list)
522                                             list))
523                                       lists))))))
524
525 (export 'categorize)
526 (defmacro categorize ((itemvar items &key bind) categories &body body)
527   "Categorize ITEMS into lists and invoke BODY.
528
529    The ITEMVAR is a symbol; as the macro iterates over the ITEMS, ITEMVAR
530    will contain the current item.  The BIND argument is a list of LET*-like
531    clauses.  The CATEGORIES are a list of clauses of the form (SYMBOL
532    PREDICATE).
533
534    The behaviour of the macro is as follows.  ITEMVAR is assigned (not
535    bound), in turn, each item in the list ITEMS.  The PREDICATEs in the
536    CATEGORIES list are evaluated in turn, in an environment containing
537    ITEMVAR and the BINDings, until one of them evaluates to a non-nil value.
538    At this point, the item is assigned to the category named by the
539    corresponding SYMBOL.  If none of the PREDICATEs returns non-nil then an
540    error is signalled; a PREDICATE consisting only of T will (of course)
541    match anything; it is detected specially so as to avoid compiler warnings.
542
543    Once all of the ITEMS have been categorized in this fashion, the BODY is
544    evaluated as an implicit PROGN.  For each SYMBOL naming a category, a
545    variable named after that symbol will be bound in the BODY's environment
546    to a list of the items in that category, in the same order in which they
547    were found in the list ITEMS.  The final values of the macro are the final
548    values of the BODY."
549
550   (let* ((cat-names (mapcar #'car categories))
551          (cat-match-forms (mapcar #'cadr categories))
552          (cat-vars (mapcar (lambda (name) (gensym (concatenate 'string
553                                                    (symbol-name name) "-")))
554                            cat-names))
555          (items-var (gensym "ITEMS-")))
556     `(let ((,items-var ,items)
557            ,@(mapcar (lambda (cat-var) (list cat-var nil)) cat-vars))
558        (dolist (,itemvar ,items-var)
559          (let* ,bind
560            (cond ,@(mapcar (lambda (cat-match-form cat-var)
561                              `(,cat-match-form
562                                (push ,itemvar ,cat-var)))
563                            cat-match-forms cat-vars)
564                  ,@(and (not (member t cat-match-forms))
565                         `((t (error "Failed to categorize ~A" ,itemvar)))))))
566        (let ,(mapcar (lambda (name var)
567                        `(,name (nreverse ,var)))
568                      cat-names cat-vars)
569          ,@body))))
570
571 ;;;--------------------------------------------------------------------------
572 ;;; Strings and characters.
573
574 (export 'frob-identifier)
575 (defun frob-identifier (string &key (swap-case t) (swap-hyphen t))
576   "Twiddles the case of STRING.
577
578    If all the letters in STRING are uppercase, and SWAP-CASE is true, then
579    switch them to lowercase; if they're all lowercase then switch them to
580    uppercase.  If there's a mix then leave them all alone.  At the same time,
581    if there are underscores but no hyphens, and SWAP-HYPHEN is true, then
582    switch them to hyphens, if there are hyphens and no underscores, switch
583    them underscores, and if there are both then leave them alone.
584
585    This is an invertible transformation, which turns vaguely plausible Lisp
586    names into vaguely plausible C names and vice versa.  Lisp names with
587    `funny characters' like stars and percent signs won't be any use, of
588    course."
589
590   ;; Work out what kind of a job we've got to do.  Gather flags: bit 0 means
591   ;; there are upper-case letters; bit 1 means there are lower-case letters;
592   ;; bit 2 means there are hyphens; bit 3 means there are underscores.
593   ;;
594   ;; Consequently, (logxor flags (ash flags 1)) is interesting: bit 1 is set
595   ;; if we have to frob case; bit 3 is set if we have to swap hyphens and
596   ;; underscores.  So use this to select functions which do bits of the
597   ;; mapping, and then compose them together.
598   (let* ((flags (reduce (lambda (state ch)
599                           (logior state
600                                   (cond ((upper-case-p ch) 1)
601                                         ((lower-case-p ch) 2)
602                                         ((char= ch #\-) 4)
603                                         ((char= ch #\_) 8)
604                                         (t 0))))
605                         string
606                         :initial-value 0))
607          (mask (logxor flags (ash flags 1)))
608          (letter (cond ((or (not swap-case) (not (logbitp 1 mask)))
609                         (constantly nil))
610                        ((logbitp 0 flags)
611                         (lambda (ch)
612                           (and (alpha-char-p ch) (char-downcase ch))))
613                        (t
614                         (lambda (ch)
615                           (and (alpha-char-p ch) (char-upcase ch))))))
616          (uscore-hyphen (cond ((or (not (logbitp 3 mask)) (not swap-hyphen))
617                                (constantly nil))
618                               ((logbitp 2 flags)
619                                (lambda (ch) (and (char= ch #\-) #\_)))
620                               (t
621                                (lambda (ch) (and (char= ch #\_) #\-))))))
622
623     (if (logbitp 3 (logior mask (ash mask 2)))
624         (map 'string (lambda (ch)
625                        (or (funcall letter ch)
626                            (funcall uscore-hyphen ch)
627                            ch))
628              string)
629         string)))
630
631 (export 'whitespace-char-p)
632 (declaim (inline whitespace-char-p))
633 (defun whitespace-char-p (char)
634   "Returns whether CHAR is a whitespace character.
635
636    Whitespaceness is determined relative to the compile-time readtable, which
637    is probably good enough for most purposes."
638   (case char
639     (#.(loop for i below char-code-limit
640              for ch = (code-char i)
641              unless (with-input-from-string (in (string ch))
642                       (peek-char t in nil))
643              collect ch) t)
644     (t nil)))
645
646 (export 'update-position)
647 (declaim (inline update-position))
648 (defun update-position (char line column)
649   "Updates LINE and COLUMN appropriately for having read the character CHAR.
650
651    Returns the new LINE and COLUMN numbers."
652   (case char
653     ((#\newline #\vt #\page)
654      (values (1+ line) 0))
655     ((#\tab)
656      (values line (logandc2 (+ column 8) 7)))
657     (t
658      (values line (1+ column)))))
659
660 (export 'backtrack-position)
661 (declaim (inline backtrack-position))
662 (defun backtrack-position (char line column)
663   "Updates LINE and COLUMN appropriately for having unread CHAR.
664
665    Well, actually an approximation for it; it will likely be wrong if the
666    last character was a tab.  But when the character is read again, it will
667    be correct."
668
669   ;; This isn't perfect: if the character doesn't actually match what was
670   ;; really read then it might not actually be possible: for example, if we
671   ;; push back a newline while in the middle of a line, or a tab while not at
672   ;; a tab stop.  In that case, we'll just lose, but hopefully not too badly.
673   (case char
674
675     ;; In the absence of better ideas, I'll set the column number to zero.
676     ;; This is almost certainly wrong, but with a little luck nobody will ask
677     ;; and it'll be all right soon.
678     ((#\newline #\vt #\page) (values (1- line) 0))
679
680     ;; Winding back a single space is sufficient.  If the position is
681     ;; currently on a tab stop then it'll advance back here next time.  If
682     ;; not, we're going to lose anyway because the previous character
683     ;; certainly couldn't have been a tab.
684     (#\tab (values line (1- column)))
685
686     ;; Anything else: just decrement the column and cross fingers.
687     (t (values line (1- column)))))
688
689 ;;;--------------------------------------------------------------------------
690 ;;; Functions.
691
692 (export 'compose)
693 (defun compose (function &rest more-functions)
694   "Composition of functions.  Functions are applied left-to-right.
695
696    This is the reverse order of the usual mathematical notation, but I find
697    it easier to read.  It's also slightly easier to work with in programs.
698    That is, (compose F1 F2 ... Fn) is what a category theorist might write as
699    F1 ; F2 ; ... ; Fn, rather than F1 o F2 o ... o Fn."
700
701   (labels ((compose1 (func-a func-b)
702              (lambda (&rest args)
703                (multiple-value-call func-b (apply func-a args)))))
704     (reduce #'compose1 more-functions :initial-value function)))
705
706 ;;;--------------------------------------------------------------------------
707 ;;; Symbols.
708
709 (export 'symbolicate)
710 (defun symbolicate (&rest symbols)
711   "Return a symbol named after the concatenation of the names of the SYMBOLS.
712
713    The symbol is interned in the current `*package*'.  Trad."
714   (intern (apply #'concatenate 'string (mapcar #'symbol-name symbols))))
715
716 ;;;--------------------------------------------------------------------------
717 ;;; Object printing.
718
719 (export 'maybe-print-unreadable-object)
720 (defmacro maybe-print-unreadable-object
721     ((object stream &rest args) &body body)
722   "Print helper for usually-unreadable objects.
723
724    If `*print-escape*' is set then print OBJECT unreadably using BODY.
725    Otherwise just print using BODY."
726   (with-gensyms (print)
727     `(flet ((,print () ,@body))
728        (if *print-escape*
729            (print-unreadable-object (,object ,stream ,@args)
730              (,print))
731            (,print)))))
732
733 (export 'print-ugly-stuff)
734 (defun print-ugly-stuff (stream func)
735   "Print not-pretty things to the stream underlying STREAM.
736
737    The Lisp pretty-printing machinery, notably `pprint-logical-block', may
738    interpose additional streams between its body and the original target
739    stream.  This makes it difficult to make use of the underlying stream's
740    special features, whatever they might be."
741
742   ;; This is unpleasant.  Hacky hacky.
743   #.(or #+sbcl '(if (typep stream 'sb-pretty:pretty-stream)
744                   (let ((target (sb-pretty::pretty-stream-target stream)))
745                     (pprint-newline :mandatory stream)
746                     (funcall func target))
747                   (funcall func stream))
748         #+cmu '(if (typep stream 'pp:pretty-stream)
749                   (let ((target (pp::pretty-stream-target stream)))
750                     (pprint-newline :mandatory stream)
751                     (funcall func target))
752                   (funcall func stream))
753         '(funcall func stream)))
754
755 ;;;--------------------------------------------------------------------------
756 ;;; Iteration macros.
757
758 (export 'dosequence)
759 (defmacro dosequence ((var seq &key (start 0) (end nil) indexvar)
760                       &body body
761                       &environment env)
762   "Macro for iterating over general sequences.
763
764    Iterates over a (sub)sequence SEQ, delimited by START and END (which are
765    evaluated).  For each item of SEQ, BODY is invoked with VAR bound to the
766    item, and INDEXVAR (if requested) bound to the item's index.  (Note that
767    this is different from most iteration constructs in Common Lisp, which
768    work by mutating the variable.)
769
770    The loop is surrounded by an anonymous BLOCK and the loop body forms an
771    implicit TAGBODY, as is usual.  There is no result-form, however."
772
773   (once-only (:environment env seq start end)
774     (with-gensyms ((ivar "INDEX-") (endvar "END-") (bodyfunc "BODY-"))
775       (multiple-value-bind (docs decls body) (parse-body body :docp nil)
776         (declare (ignore docs))
777
778         (flet ((loopguts (indexp listp endvar)
779                  ;; Build a DO-loop to do what we want.
780                  (let* ((do-vars nil)
781                         (end-condition (if endvar
782                                            `(>= ,ivar ,endvar)
783                                            `(endp ,seq)))
784                         (item (if listp
785                                   `(car ,seq)
786                                   `(aref ,seq ,ivar)))
787                         (body-call `(,bodyfunc ,item)))
788                    (when listp
789                      (push `(,seq (nthcdr ,start ,seq) (cdr ,seq))
790                            do-vars))
791                    (when indexp
792                      (push `(,ivar ,start (1+ ,ivar)) do-vars))
793                    (when indexvar
794                      (setf body-call (append body-call (list ivar))))
795                    `(do ,do-vars (,end-condition) ,body-call))))
796
797           `(block nil
798              (flet ((,bodyfunc (,var ,@(and indexvar `(,indexvar)))
799                       ,@decls
800                       (tagbody ,@body)))
801                (etypecase ,seq
802                  (vector
803                   (let ((,endvar (or ,end (length ,seq))))
804                     ,(loopguts t nil endvar)))
805                  (list
806                   (if ,end
807                       ,(loopguts t t end)
808                       ,(loopguts indexvar t nil)))))))))))
809
810 ;;;--------------------------------------------------------------------------
811 ;;; Structure accessor hacks.
812
813 (export 'define-access-wrapper)
814 (defmacro define-access-wrapper (from to &key read-only)
815   "Make (FROM THING) work like (TO THING).
816
817    If not READ-ONLY, then also make (setf (FROM THING) VALUE) work like
818    (setf (TO THING) VALUE).
819
820    This is mostly useful for structure slot accessors where the slot has to
821    be given an unpleasant name to avoid it being an external symbol."
822   `(progn
823      (declaim (inline ,from ,@(and (not read-only) `((setf ,from)))))
824      (defun ,from (object)
825        (,to object))
826      ,@(and (not read-only)
827             `((defun (setf ,from) (value object)
828                 (setf (,to object) value))))))
829
830 ;;;--------------------------------------------------------------------------
831 ;;; CLOS hacking.
832
833 (export 'default-slot)
834 (defmacro default-slot ((instance slot &optional (slot-names t))
835                           &body value
836                           &environment env)
837   "If INSTANCE's slot named SLOT is unbound, set it to VALUE.
838
839    Only set SLOT if it's listed in SLOT-NAMES, or SLOT-NAMES is `t' (i.e., we
840    obey the `shared-initialize' protocol).  SLOT-NAMES defaults to `t', so
841    you can use it in `initialize-instance' or similar without ill effects.
842    Both INSTANCE and SLOT are evaluated; VALUE is an implicit progn and only
843    evaluated if it's needed."
844
845   (once-only (:environment env instance slot slot-names)
846     `(when ,(if (eq slot-names t)
847                   `(not (slot-boundp ,instance ,slot))
848                   `(and (not (slot-boundp ,instance ,slot))
849                         (or (eq ,slot-names t)
850                             (member ,slot ,slot-names))))
851        (setf (slot-value ,instance ,slot)
852              (progn ,@value)))))
853
854 (export 'define-on-demand-slot)
855 (defmacro define-on-demand-slot (class slot (instance) &body body)
856   "Defines a slot which computes its initial value on demand.
857
858    Sets up the named SLOT of CLASS to establish its value as the implicit
859    progn BODY, by defining an appropriate method on `slot-unbound'."
860   (multiple-value-bind (docs decls body) (parse-body body)
861     (with-gensyms (classvar slotvar)
862       `(defmethod slot-unbound
863            (,classvar (,instance ,class) (,slotvar (eql ',slot)))
864          ,@docs ,@decls
865          (declare (ignore ,classvar))
866          (setf (slot-value ,instance ',slot) (block ,slot ,@body))))))
867
868 ;;;----- That's all, folks --------------------------------------------------