Fix default ARRAY-INDEX and ARRAY-LENGTH.
[alexandria.git] / control-flow.lisp
blobf2624436c3e44d86c7e1f8983ac96a67403bea51
1 (in-package :alexandria)
3 (defun extract-function-name (spec)
4 "Useful for macros that want to mimic the functional interface for functions
5 like #'eq and 'eq."
6 (if (and (consp spec)
7 (member (first spec) '(quote function)))
8 (second spec)
9 spec))
11 (defun generate-switch-body (whole object clauses test key &optional default)
12 (with-gensyms (value)
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."
18 ,value ',test)))
19 `(let ((,value (,key ,object)))
20 (cond ,@(mapcar (lambda (clause)
21 (if (member (first clause) '(t otherwise))
22 (progn
23 (when default
24 (error "Multiple default clauses or illegal use of a default clause in ~S."
25 whole))
26 (setf default `(progn ,@(rest clause)))
27 '(()))
28 (destructuring-bind (key-form &body forms) clause
29 `((,test ,value ,key-form)
30 ,@forms))))
31 clauses)
32 (t ,default)))))
34 (defmacro switch (&whole whole (object &key (test 'eql) (key 'identity))
35 &body clauses)
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))
41 &body clauses)
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))
46 &body clauses)
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))
57 (car 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
77 value."
78 (with-gensyms (xor tmp true)
79 `(let (,tmp ,true)
80 (block ,xor
81 ,@(mapcar (lambda (datum)
82 `(if (setf ,tmp ,datum)
83 (if ,true
84 (return-from ,xor (values nil nil))
85 (setf ,true ,tmp))))
86 datums)
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
93 NIL."
94 (once-only (nth-value)
95 (with-gensyms (values)
96 `(let ((,values (multiple-value-list ,(first forms))))
97 (if (nth ,nth-value ,values)
98 (values-list ,values)
99 ,(if (rest forms)
100 `(nth-value-or ,nth-value ,@(rest forms))
101 nil))))))
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)))