1 (in-package :alexandria
)
3 (defun extract-function-name (spec)
4 "Useful for macros that want to mimic the functional interface for functions
7 (member (first spec
) '(quote function
)))
11 (defun generate-switch-body (whole object clauses test key
&optional default
)
13 (setf test
(extract-function-name test
))
14 (setf key
(extract-function-name key
))
15 (when (and (consp default
)
16 (member (first default
) '(error cerror
)))
17 (setf default
`(,@default
"No keys match in SWITCH. Testing against ~S with ~S."
19 `(let ((,value
(,key
,object
)))
20 (cond ,@(mapcar (lambda (clause)
21 (if (member (first clause
) '(t otherwise
))
24 (error "Multiple default clauses or illegal use of a default clause in ~S."
26 (setf default
`(progn ,@(rest clause
)))
28 (destructuring-bind (key-form &body forms
) clause
29 `((,test
,value
,key-form
)
34 (defmacro switch
(&whole whole
(object &key
(test 'eql
) (key 'identity
))
36 "Evaluates first matching clause, returning its values, or evaluates and
37 returns the values of DEFAULT if no keys match."
38 (generate-switch-body whole object clauses test key
))
40 (defmacro eswitch
(&whole whole
(object &key
(test 'eql
) (key 'identity
))
42 "Like SWITCH, but signals an error if no key matches."
43 (generate-switch-body whole object clauses test key
'(error)))
45 (defmacro cswitch
(&whole whole
(object &key
(test 'eql
) (key 'identity
))
47 "Like SWITCH, but signals a continuable error if no key matches."
48 (generate-switch-body whole object clauses test key
'(cerror "Return NIL from CSWITCH.")))
50 (defmacro whichever
(&rest possibilities
&environment env
)
51 "Evaluates exactly one of POSSIBILITIES, chosen at random."
52 (setf possibilities
(mapcar (lambda (p) (macroexpand p env
)) possibilities
))
53 (if (every (lambda (p) (constantp p
)) possibilities
)
54 `(svref (load-time-value (vector ,@possibilities
)) (random ,(length possibilities
)))
55 (labels ((expand (possibilities position random-number
)
56 (if (null (cdr possibilities
))
58 (let* ((length (length possibilities
))
59 (half (truncate length
2))
60 (second-half (nthcdr half possibilities
))
61 (first-half (butlast possibilities
(- length half
))))
62 `(if (< ,random-number
,(+ position half
))
63 ,(expand first-half position random-number
)
64 ,(expand second-half
(+ position half
) random-number
))))))
65 (with-gensyms (random-number)
66 (let ((length (length possibilities
)))
67 `(let ((,random-number
(random ,length
)))
68 ,(expand possibilities
0 random-number
)))))))
70 (defmacro xor
(&rest datums
)
71 "Evaluates its arguments one at a time, from left to right. If more then one
72 argument evaluates to a true value no further DATUMS are evaluated, and NIL is
73 returned as both primary and secondary value. If exactly one argument
74 evaluates to true, its value is returned as the primary value after all the
75 arguments have been evaluated, and T is returned as the secondary value. If no
76 arguments evaluate to true NIL is retuned as primary, and T as secondary
78 (with-gensyms (xor tmp true
)
81 ,@(mapcar (lambda (datum)
82 `(if (setf ,tmp
,datum
)
84 (return-from ,xor
(values nil nil
))
87 (return-from ,xor
(values ,true t
))))))
89 (defmacro nth-value-or
(nth-value &body forms
)
90 "Evaluates FORM arguments one at a time, until the NTH-VALUE returned by one
91 of the forms is true. It then returns all the values returned by evaluating
92 that form. If none of the forms return a true nth value, this form returns
94 (once-only (nth-value)
95 (with-gensyms (values)
96 `(let ((,values
(multiple-value-list ,(first forms
))))
97 (if (nth ,nth-value
,values
)
100 `(nth-value-or ,nth-value
,@(rest forms
))
103 (defmacro multiple-value-prog2
(first-form second-form
&body forms
)
104 "Evaluates FIRST-FORM, then SECOND-FORM, and then FORMS. Yields as its value
105 all the value returned by SECOND-FORM."
106 `(progn ,first-form
(multiple-value-prog1 ,second-form
,@forms
)))