Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / emacs-lisp / pcase.el
blob7f5a32c65bb60d29daaf6b74420cd7b5f8e0a932
1 ;;; pcase.el --- ML-style pattern-matching macro for Elisp -*- lexical-binding: t; coding: utf-8 -*-
3 ;; Copyright (C) 2010-2014 Free Software Foundation, Inc.
5 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
6 ;; Keywords:
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; ML-style pattern matching.
26 ;; The entry points are autoloaded.
28 ;; Todo:
30 ;; - (pcase e (`(,x . ,x) foo)) signals an "x unused" warning if `foo' doesn't
31 ;; use x, because x is bound separately for the equality constraint
32 ;; (as well as any pred/guard) and for the body, so uses at one place don't
33 ;; count for the other.
34 ;; - provide ways to extend the set of primitives, with some kind of
35 ;; define-pcase-matcher. We could easily make it so that (guard BOOLEXP)
36 ;; could be defined this way, as a shorthand for (pred (lambda (_) BOOLEXP)).
37 ;; But better would be if we could define new ways to match by having the
38 ;; extension provide its own `pcase--split-<foo>' thingy.
39 ;; - along these lines, provide patterns to match CL structs.
40 ;; - provide something like (setq VAR) so a var can be set rather than
41 ;; let-bound.
42 ;; - provide a way to fallthrough to subsequent cases (not sure what I meant by
43 ;; this :-()
44 ;; - try and be more clever to reduce the size of the decision tree, and
45 ;; to reduce the number of leaves that need to be turned into function:
46 ;; - first, do the tests shared by all remaining branches (it will have
47 ;; to be performed anyway, so better do it first so it's shared).
48 ;; - then choose the test that discriminates more (?).
49 ;; - provide Agda's `with' (along with its `...' companion).
50 ;; - implement (not UPAT). This might require a significant redesign.
51 ;; - ideally we'd want (pcase s ((re RE1) E1) ((re RE2) E2)) to be able to
52 ;; generate a lex-style DFA to decide whether to run E1 or E2.
54 ;;; Code:
56 (require 'macroexp)
58 ;; Macro-expansion of pcase is reasonably fast, so it's not a problem
59 ;; when byte-compiling a file, but when interpreting the code, if the pcase
60 ;; is in a loop, the repeated macro-expansion becomes terribly costly, so we
61 ;; memoize previous macro expansions to try and avoid recomputing them
62 ;; over and over again.
63 ;; FIXME: Now that macroexpansion is also performed when loading an interpreted
64 ;; file, this is not a real problem any more.
65 (defconst pcase--memoize (make-hash-table :weakness 'key :test 'eq))
66 ;; (defconst pcase--memoize-1 (make-hash-table :test 'eq))
67 ;; (defconst pcase--memoize-2 (make-hash-table :weakness 'key :test 'equal))
69 (defconst pcase--dontcare-upats '(t _ pcase--dontcare))
71 (def-edebug-spec
72 pcase-UPAT
73 (&or symbolp
74 ("or" &rest pcase-UPAT)
75 ("and" &rest pcase-UPAT)
76 ("`" pcase-QPAT)
77 ("guard" form)
78 ("let" pcase-UPAT form)
79 ("pred"
80 &or lambda-expr
81 ;; Punt on macros/special forms.
82 (functionp &rest form)
83 sexp)
84 sexp))
86 (def-edebug-spec
87 pcase-QPAT
88 (&or ("," pcase-UPAT)
89 (pcase-QPAT . pcase-QPAT)
90 sexp))
92 ;;;###autoload
93 (defmacro pcase (exp &rest cases)
94 "Perform ML-style pattern matching on EXP.
95 CASES is a list of elements of the form (UPATTERN CODE...).
97 UPatterns can take the following forms:
98 _ matches anything.
99 SELFQUOTING matches itself. This includes keywords, numbers, and strings.
100 SYMBOL matches anything and binds it to SYMBOL.
101 (or UPAT...) matches if any of the patterns matches.
102 (and UPAT...) matches if all the patterns match.
103 `QPAT matches if the QPattern QPAT matches.
104 (pred PRED) matches if PRED applied to the object returns non-nil.
105 (guard BOOLEXP) matches if BOOLEXP evaluates to non-nil.
106 (let UPAT EXP) matches if EXP matches UPAT.
107 If a SYMBOL is used twice in the same pattern (i.e. the pattern is
108 \"non-linear\"), then the second occurrence is turned into an `eq'uality test.
110 QPatterns can take the following forms:
111 (QPAT1 . QPAT2) matches if QPAT1 matches the car and QPAT2 the cdr.
112 ,UPAT matches if the UPattern UPAT matches.
113 STRING matches if the object is `equal' to STRING.
114 ATOM matches if the object is `eq' to ATOM.
115 QPatterns for vectors are not implemented yet.
117 PRED can take the form
118 FUNCTION in which case it gets called with one argument.
119 (FUN ARG1 .. ARGN) in which case it gets called with an N+1'th argument
120 which is the value being matched.
121 A PRED of the form FUNCTION is equivalent to one of the form (FUNCTION).
122 PRED patterns can refer to variables bound earlier in the pattern.
123 E.g. you can match pairs where the cdr is larger than the car with a pattern
124 like `(,a . ,(pred (< a))) or, with more checks:
125 `(,(and a (pred numberp)) . ,(and (pred numberp) (pred (< a))))"
126 (declare (indent 1) (debug (form &rest (pcase-UPAT body))))
127 ;; We want to use a weak hash table as a cache, but the key will unavoidably
128 ;; be based on `exp' and `cases', yet `cases' is a fresh new list each time
129 ;; we're called so it'll be immediately GC'd. So we use (car cases) as key
130 ;; which does come straight from the source code and should hence not be GC'd
131 ;; so easily.
132 (let ((data (gethash (car cases) pcase--memoize)))
133 ;; data = (EXP CASES . EXPANSION)
134 (if (and (equal exp (car data)) (equal cases (cadr data)))
135 ;; We have the right expansion.
136 (cddr data)
137 ;; (when (gethash (car cases) pcase--memoize-1)
138 ;; (message "pcase-memoize failed because of weak key!!"))
139 ;; (when (gethash (car cases) pcase--memoize-2)
140 ;; (message "pcase-memoize failed because of eq test on %S"
141 ;; (car cases)))
142 (when data
143 (message "pcase-memoize: equal first branch, yet different"))
144 (let ((expansion (pcase--expand exp cases)))
145 (puthash (car cases) `(,exp ,cases ,@expansion) pcase--memoize)
146 ;; (puthash (car cases) `(,exp ,cases ,@expansion) pcase--memoize-1)
147 ;; (puthash (car cases) `(,exp ,cases ,@expansion) pcase--memoize-2)
148 expansion))))
150 (defun pcase--let* (bindings body)
151 (cond
152 ((null bindings) (macroexp-progn body))
153 ((pcase--trivial-upat-p (caar bindings))
154 (macroexp-let* `(,(car bindings)) (pcase--let* (cdr bindings) body)))
156 (let ((binding (pop bindings)))
157 (pcase--expand
158 (cadr binding)
159 `((,(car binding) ,(pcase--let* bindings body))
160 ;; We can either signal an error here, or just use `pcase--dontcare'
161 ;; which generates more efficient code. In practice, if we use
162 ;; `pcase--dontcare' we will still often get an error and the few
163 ;; cases where we don't do not matter that much, so
164 ;; it's a better choice.
165 (pcase--dontcare nil)))))))
167 ;;;###autoload
168 (defmacro pcase-let* (bindings &rest body)
169 "Like `let*' but where you can use `pcase' patterns for bindings.
170 BODY should be an expression, and BINDINGS should be a list of bindings
171 of the form (UPAT EXP)."
172 (declare (indent 1)
173 (debug ((&rest (pcase-UPAT &optional form)) body)))
174 (let ((cached (gethash bindings pcase--memoize)))
175 ;; cached = (BODY . EXPANSION)
176 (if (equal (car cached) body)
177 (cdr cached)
178 (let ((expansion (pcase--let* bindings body)))
179 (puthash bindings (cons body expansion) pcase--memoize)
180 expansion))))
182 ;;;###autoload
183 (defmacro pcase-let (bindings &rest body)
184 "Like `let' but where you can use `pcase' patterns for bindings.
185 BODY should be a list of expressions, and BINDINGS should be a list of bindings
186 of the form (UPAT EXP)."
187 (declare (indent 1) (debug pcase-let*))
188 (if (null (cdr bindings))
189 `(pcase-let* ,bindings ,@body)
190 (let ((matches '()))
191 (dolist (binding (prog1 bindings (setq bindings nil)))
192 (cond
193 ((memq (car binding) pcase--dontcare-upats)
194 (push (cons (make-symbol "_") (cdr binding)) bindings))
195 ((pcase--trivial-upat-p (car binding)) (push binding bindings))
197 (let ((tmpvar (make-symbol (format "x%d" (length bindings)))))
198 (push (cons tmpvar (cdr binding)) bindings)
199 (push (list (car binding) tmpvar) matches)))))
200 `(let ,(nreverse bindings) (pcase-let* ,matches ,@body)))))
202 (defmacro pcase-dolist (spec &rest body)
203 (declare (indent 1) (debug ((pcase-UPAT form) body)))
204 (if (pcase--trivial-upat-p (car spec))
205 `(dolist ,spec ,@body)
206 (let ((tmpvar (make-symbol "x")))
207 `(dolist (,tmpvar ,@(cdr spec))
208 (pcase-let* ((,(car spec) ,tmpvar))
209 ,@body)))))
212 (defun pcase--trivial-upat-p (upat)
213 (and (symbolp upat) (not (memq upat pcase--dontcare-upats))))
215 (defun pcase--expand (exp cases)
216 ;; (message "pid=%S (pcase--expand %S ...hash=%S)"
217 ;; (emacs-pid) exp (sxhash cases))
218 (macroexp-let2 macroexp-copyable-p val exp
219 (let* ((defs ())
220 (seen '())
221 (codegen
222 (lambda (code vars)
223 (let ((prev (assq code seen)))
224 (if (not prev)
225 (let ((res (pcase-codegen code vars)))
226 (push (list code vars res) seen)
227 res)
228 ;; Since we use a tree-based pattern matching
229 ;; technique, the leaves (the places that contain the
230 ;; code to run once a pattern is matched) can get
231 ;; copied a very large number of times, so to avoid
232 ;; code explosion, we need to keep track of how many
233 ;; times we've used each leaf and move it
234 ;; to a separate function if that number is too high.
236 ;; We've already used this branch. So it is shared.
237 (let* ((code (car prev)) (cdrprev (cdr prev))
238 (prevvars (car cdrprev)) (cddrprev (cdr cdrprev))
239 (res (car cddrprev)))
240 (unless (symbolp res)
241 ;; This is the first repeat, so we have to move
242 ;; the branch to a separate function.
243 (let ((bsym
244 (make-symbol (format "pcase-%d" (length defs)))))
245 (push `(,bsym (lambda ,(mapcar #'car prevvars) ,@code))
246 defs)
247 (setcar res 'funcall)
248 (setcdr res (cons bsym (mapcar #'cdr prevvars)))
249 (setcar (cddr prev) bsym)
250 (setq res bsym)))
251 (setq vars (copy-sequence vars))
252 (let ((args (mapcar (lambda (pa)
253 (let ((v (assq (car pa) vars)))
254 (setq vars (delq v vars))
255 (cdr v)))
256 prevvars)))
257 ;; If some of `vars' were not found in `prevvars', that's
258 ;; OK it just means those vars aren't present in all
259 ;; branches, so they can be used within the pattern
260 ;; (e.g. by a `guard/let/pred') but not in the branch.
261 ;; FIXME: But if some of `prevvars' are not in `vars' we
262 ;; should remove them from `prevvars'!
263 `(funcall ,res ,@args)))))))
264 (used-cases ())
265 (main
266 (pcase--u
267 (mapcar (lambda (case)
268 `((match ,val . ,(car case))
269 ,(lambda (vars)
270 (unless (memq case used-cases)
271 ;; Keep track of the cases that are used.
272 (push case used-cases))
273 (funcall
274 (if (pcase--small-branch-p (cdr case))
275 ;; Don't bother sharing multiple
276 ;; occurrences of this leaf since it's small.
277 #'pcase-codegen codegen)
278 (cdr case)
279 vars))))
280 cases))))
281 (dolist (case cases)
282 (unless (or (memq case used-cases) (eq (car case) 'pcase--dontcare))
283 (message "Redundant pcase pattern: %S" (car case))))
284 (macroexp-let* defs main))))
286 (defun pcase-codegen (code vars)
287 ;; Don't use let*, otherwise macroexp-let* may merge it with some surrounding
288 ;; let* which might prevent the setcar/setcdr in pcase--expand's fancy
289 ;; codegen from later metamorphosing this let into a funcall.
290 `(let ,(mapcar (lambda (b) (list (car b) (cdr b))) vars)
291 ,@code))
293 (defun pcase--small-branch-p (code)
294 (and (= 1 (length code))
295 (or (not (consp (car code)))
296 (let ((small t))
297 (dolist (e (car code))
298 (if (consp e) (setq small nil)))
299 small))))
301 ;; Try to use `cond' rather than a sequence of `if's, so as to reduce
302 ;; the depth of the generated tree.
303 (defun pcase--if (test then else)
304 (cond
305 ((eq else :pcase--dontcare) then)
306 ((eq then :pcase--dontcare) (debug) else) ;Can/should this ever happen?
307 (t (macroexp-if test then else))))
309 (defun pcase--upat (qpattern)
310 (cond
311 ((eq (car-safe qpattern) '\,) (cadr qpattern))
312 (t (list '\` qpattern))))
314 ;; Note about MATCH:
315 ;; When we have patterns like `(PAT1 . PAT2), after performing the `consp'
316 ;; check, we want to turn all the similar patterns into ones of the form
317 ;; (and (match car PAT1) (match cdr PAT2)), so you naturally need conjunction.
318 ;; Earlier code hence used branches of the form (MATCHES . CODE) where
319 ;; MATCHES was a list (implicitly a conjunction) of (SYM . PAT).
320 ;; But if we have a pattern of the form (or `(PAT1 . PAT2) PAT3), there is
321 ;; no easy way to eliminate the `consp' check in such a representation.
322 ;; So we replaced the MATCHES by the MATCH below which can be made up
323 ;; of conjunctions and disjunctions, so if we know `foo' is a cons, we can
324 ;; turn (match foo . (or `(PAT1 . PAT2) PAT3)) into
325 ;; (or (and (match car . `PAT1) (match cdr . `PAT2)) (match foo . PAT3)).
326 ;; The downside is that we now have `or' and `and' both in MATCH and
327 ;; in PAT, so there are different equivalent representations and we
328 ;; need to handle them all. We do not try to systematically
329 ;; canonicalize them to one form over another, but we do occasionally
330 ;; turn one into the other.
332 (defun pcase--u (branches)
333 "Expand matcher for rules BRANCHES.
334 Each BRANCH has the form (MATCH CODE . VARS) where
335 CODE is the code generator for that branch.
336 VARS is the set of vars already bound by earlier matches.
337 MATCH is the pattern that needs to be matched, of the form:
338 (match VAR . UPAT)
339 (and MATCH ...)
340 (or MATCH ...)"
341 (when (setq branches (delq nil branches))
342 (let* ((carbranch (car branches))
343 (match (car carbranch)) (cdarbranch (cdr carbranch))
344 (code (car cdarbranch))
345 (vars (cdr cdarbranch)))
346 (pcase--u1 (list match) code vars (cdr branches)))))
348 (defun pcase--and (match matches)
349 (if matches `(and ,match ,@matches) match))
351 (defconst pcase-mutually-exclusive-predicates
352 '((symbolp . integerp)
353 (symbolp . numberp)
354 (symbolp . consp)
355 (symbolp . arrayp)
356 (symbolp . vectorp)
357 (symbolp . stringp)
358 (symbolp . byte-code-function-p)
359 (integerp . consp)
360 (integerp . arrayp)
361 (integerp . vectorp)
362 (integerp . stringp)
363 (integerp . byte-code-function-p)
364 (numberp . consp)
365 (numberp . arrayp)
366 (numberp . vectorp)
367 (numberp . stringp)
368 (numberp . byte-code-function-p)
369 (consp . arrayp)
370 (consp . vectorp)
371 (consp . stringp)
372 (consp . byte-code-function-p)
373 (arrayp . byte-code-function-p)
374 (vectorp . byte-code-function-p)
375 (stringp . vectorp)
376 (stringp . byte-code-function-p)))
378 (defun pcase--mutually-exclusive-p (pred1 pred2)
379 (or (member (cons pred1 pred2)
380 pcase-mutually-exclusive-predicates)
381 (member (cons pred2 pred1)
382 pcase-mutually-exclusive-predicates)))
384 (defun pcase--split-match (sym splitter match)
385 (cond
386 ((eq (car match) 'match)
387 (if (not (eq sym (cadr match)))
388 (cons match match)
389 (let ((pat (cddr match)))
390 (cond
391 ;; Hoist `or' and `and' patterns to `or' and `and' matches.
392 ((memq (car-safe pat) '(or and))
393 (pcase--split-match sym splitter
394 (cons (car pat)
395 (mapcar (lambda (alt)
396 `(match ,sym . ,alt))
397 (cdr pat)))))
398 (t (let ((res (funcall splitter (cddr match))))
399 (cons (or (car res) match) (or (cdr res) match))))))))
400 ((memq (car match) '(or and))
401 (let ((then-alts '())
402 (else-alts '())
403 (neutral-elem (if (eq 'or (car match))
404 :pcase--fail :pcase--succeed))
405 (zero-elem (if (eq 'or (car match)) :pcase--succeed :pcase--fail)))
406 (dolist (alt (cdr match))
407 (let ((split (pcase--split-match sym splitter alt)))
408 (unless (eq (car split) neutral-elem)
409 (push (car split) then-alts))
410 (unless (eq (cdr split) neutral-elem)
411 (push (cdr split) else-alts))))
412 (cons (cond ((memq zero-elem then-alts) zero-elem)
413 ((null then-alts) neutral-elem)
414 ((null (cdr then-alts)) (car then-alts))
415 (t (cons (car match) (nreverse then-alts))))
416 (cond ((memq zero-elem else-alts) zero-elem)
417 ((null else-alts) neutral-elem)
418 ((null (cdr else-alts)) (car else-alts))
419 (t (cons (car match) (nreverse else-alts)))))))
420 (t (error "Uknown MATCH %s" match))))
422 (defun pcase--split-rest (sym splitter rest)
423 (let ((then-rest '())
424 (else-rest '()))
425 (dolist (branch rest)
426 (let* ((match (car branch))
427 (code&vars (cdr branch))
428 (split
429 (pcase--split-match sym splitter match)))
430 (unless (eq (car split) :pcase--fail)
431 (push (cons (car split) code&vars) then-rest))
432 (unless (eq (cdr split) :pcase--fail)
433 (push (cons (cdr split) code&vars) else-rest))))
434 (cons (nreverse then-rest) (nreverse else-rest))))
436 (defun pcase--split-consp (syma symd pat)
437 (cond
438 ;; A QPattern for a cons, can only go the `then' side.
439 ((and (eq (car-safe pat) '\`) (consp (cadr pat)))
440 (let ((qpat (cadr pat)))
441 (cons `(and (match ,syma . ,(pcase--upat (car qpat)))
442 (match ,symd . ,(pcase--upat (cdr qpat))))
443 :pcase--fail)))
444 ;; A QPattern but not for a cons, can only go to the `else' side.
445 ((eq (car-safe pat) '\`) '(:pcase--fail . nil))
446 ((and (eq (car-safe pat) 'pred)
447 (pcase--mutually-exclusive-p #'consp (cadr pat)))
448 '(:pcase--fail . nil))))
450 (defun pcase--split-equal (elem pat)
451 (cond
452 ;; The same match will give the same result.
453 ((and (eq (car-safe pat) '\`) (equal (cadr pat) elem))
454 '(:pcase--succeed . :pcase--fail))
455 ;; A different match will fail if this one succeeds.
456 ((and (eq (car-safe pat) '\`)
457 ;; (or (integerp (cadr pat)) (symbolp (cadr pat))
458 ;; (consp (cadr pat)))
460 '(:pcase--fail . nil))
461 ((and (eq (car-safe pat) 'pred)
462 (symbolp (cadr pat))
463 (get (cadr pat) 'side-effect-free))
464 (if (funcall (cadr pat) elem)
465 '(:pcase--succeed . nil)
466 '(:pcase--fail . nil)))))
468 (defun pcase--split-member (elems pat)
469 ;; Based on pcase--split-equal.
470 (cond
471 ;; The same match (or a match of membership in a superset) will
472 ;; give the same result, but we don't know how to check it.
473 ;; (???
474 ;; '(:pcase--succeed . nil))
475 ;; A match for one of the elements may succeed or fail.
476 ((and (eq (car-safe pat) '\`) (member (cadr pat) elems))
477 nil)
478 ;; A different match will fail if this one succeeds.
479 ((and (eq (car-safe pat) '\`)
480 ;; (or (integerp (cadr pat)) (symbolp (cadr pat))
481 ;; (consp (cadr pat)))
483 '(:pcase--fail . nil))
484 ((and (eq (car-safe pat) 'pred)
485 (symbolp (cadr pat))
486 (get (cadr pat) 'side-effect-free)
487 (let ((p (cadr pat)) (all t))
488 (dolist (elem elems)
489 (unless (funcall p elem) (setq all nil)))
490 all))
491 '(:pcase--succeed . nil))))
493 (defun pcase--split-pred (vars upat pat)
494 (let (test)
495 (cond
496 ((and (equal upat pat)
497 ;; For predicates like (pred (> a)), two such predicates may
498 ;; actually refer to different variables `a'.
499 (or (and (eq 'pred (car upat)) (symbolp (cadr upat)))
500 ;; FIXME: `vars' gives us the environment in which `upat' will
501 ;; run, but we don't have the environment in which `pat' will
502 ;; run, so we can't do a reliable verification. But let's try
503 ;; and catch at least the easy cases such as (bug#14773).
504 (not (pcase--fgrep (mapcar #'car vars) (cadr upat)))))
505 '(:pcase--succeed . :pcase--fail))
506 ((and (eq 'pred (car upat))
507 (let ((otherpred
508 (cond ((eq 'pred (car-safe pat)) (cadr pat))
509 ((not (eq '\` (car-safe pat))) nil)
510 ((consp (cadr pat)) #'consp)
511 ((vectorp (cadr pat)) #'vectorp)
512 ((byte-code-function-p (cadr pat))
513 #'byte-code-function-p))))
514 (pcase--mutually-exclusive-p (cadr upat) otherpred)))
515 '(:pcase--fail . nil))
516 ((and (eq 'pred (car upat))
517 (eq '\` (car-safe pat))
518 (symbolp (cadr upat))
519 (or (symbolp (cadr pat)) (stringp (cadr pat)) (numberp (cadr pat)))
520 (get (cadr upat) 'side-effect-free)
521 (ignore-errors
522 (setq test (list (funcall (cadr upat) (cadr pat))))))
523 (if (car test)
524 '(nil . :pcase--fail)
525 '(:pcase--fail . nil))))))
527 (defun pcase--fgrep (vars sexp)
528 "Check which of the symbols VARS appear in SEXP."
529 (let ((res '()))
530 (while (consp sexp)
531 (dolist (var (pcase--fgrep vars (pop sexp)))
532 (unless (memq var res) (push var res))))
533 (and (memq sexp vars) (not (memq sexp res)) (push sexp res))
534 res))
536 (defun pcase--self-quoting-p (upat)
537 (or (keywordp upat) (numberp upat) (stringp upat)))
539 (defsubst pcase--mark-used (sym)
540 ;; Exceptionally, `sym' may be a constant expression rather than a symbol.
541 (if (symbolp sym) (put sym 'pcase-used t)))
543 ;; It's very tempting to use `pcase' below, tho obviously, it'd create
544 ;; bootstrapping problems.
545 (defun pcase--u1 (matches code vars rest)
546 "Return code that runs CODE (with VARS) if MATCHES match.
547 Otherwise, it defers to REST which is a list of branches of the form
548 \(ELSE-MATCH ELSE-CODE . ELSE-VARS)."
549 ;; Depending on the order in which we choose to check each of the MATCHES,
550 ;; the resulting tree may be smaller or bigger. So in general, we'd want
551 ;; to be careful to chose the "optimal" order. But predicate
552 ;; patterns make this harder because they create dependencies
553 ;; between matches. So we don't bother trying to reorder anything.
554 (cond
555 ((null matches) (funcall code vars))
556 ((eq :pcase--fail (car matches)) (pcase--u rest))
557 ((eq :pcase--succeed (car matches))
558 (pcase--u1 (cdr matches) code vars rest))
559 ((eq 'and (caar matches))
560 (pcase--u1 (append (cdar matches) (cdr matches)) code vars rest))
561 ((eq 'or (caar matches))
562 (let* ((alts (cdar matches))
563 (var (if (eq (caar alts) 'match) (cadr (car alts))))
564 (simples '()) (others '()))
565 (when var
566 (dolist (alt alts)
567 (if (and (eq (car alt) 'match) (eq var (cadr alt))
568 (let ((upat (cddr alt)))
569 (and (eq (car-safe upat) '\`)
570 (or (integerp (cadr upat)) (symbolp (cadr upat))
571 (stringp (cadr upat))))))
572 (push (cddr alt) simples)
573 (push alt others))))
574 (cond
575 ((null alts) (error "Please avoid it") (pcase--u rest))
576 ((> (length simples) 1)
577 ;; De-hoist the `or' MATCH into an `or' pattern that will be
578 ;; turned into a `memq' below.
579 (pcase--u1 (cons `(match ,var or . ,(nreverse simples)) (cdr matches))
580 code vars
581 (if (null others) rest
582 (cons (cons
583 (pcase--and (if (cdr others)
584 (cons 'or (nreverse others))
585 (car others))
586 (cdr matches))
587 (cons code vars))
588 rest))))
590 (pcase--u1 (cons (pop alts) (cdr matches)) code vars
591 (if (null alts) (progn (error "Please avoid it") rest)
592 (cons (cons
593 (pcase--and (if (cdr alts)
594 (cons 'or alts) (car alts))
595 (cdr matches))
596 (cons code vars))
597 rest)))))))
598 ((eq 'match (caar matches))
599 (let* ((popmatches (pop matches))
600 (_op (car popmatches)) (cdrpopmatches (cdr popmatches))
601 (sym (car cdrpopmatches))
602 (upat (cdr cdrpopmatches)))
603 (cond
604 ((memq upat '(t _)) (pcase--u1 matches code vars rest))
605 ((eq upat 'pcase--dontcare) :pcase--dontcare)
606 ((memq (car-safe upat) '(guard pred))
607 (if (eq (car upat) 'pred) (pcase--mark-used sym))
608 (let* ((splitrest
609 (pcase--split-rest
610 sym (lambda (pat) (pcase--split-pred vars upat pat)) rest))
611 (then-rest (car splitrest))
612 (else-rest (cdr splitrest)))
613 (pcase--if (if (and (eq (car upat) 'pred) (symbolp (cadr upat)))
614 `(,(cadr upat) ,sym)
615 (let* ((exp (cadr upat))
616 ;; `vs' is an upper bound on the vars we need.
617 (vs (pcase--fgrep (mapcar #'car vars) exp))
618 (env (mapcar (lambda (var)
619 (list var (cdr (assq var vars))))
620 vs))
621 (call (if (eq 'guard (car upat))
623 (when (memq sym vs)
624 ;; `sym' is shadowed by `env'.
625 (let ((newsym (make-symbol "x")))
626 (push (list newsym sym) env)
627 (setq sym newsym)))
628 (if (functionp exp)
629 `(funcall #',exp ,sym)
630 `(,@exp ,sym)))))
631 (if (null vs)
632 call
633 ;; Let's not replace `vars' in `exp' since it's
634 ;; too difficult to do it right, instead just
635 ;; let-bind `vars' around `exp'.
636 `(let* ,env ,call))))
637 (pcase--u1 matches code vars then-rest)
638 (pcase--u else-rest))))
639 ((pcase--self-quoting-p upat)
640 (pcase--mark-used sym)
641 (pcase--q1 sym upat matches code vars rest))
642 ((symbolp upat)
643 (pcase--mark-used sym)
644 (if (not (assq upat vars))
645 (pcase--u1 matches code (cons (cons upat sym) vars) rest)
646 ;; Non-linear pattern. Turn it into an `eq' test.
647 (pcase--u1 (cons `(match ,sym . (pred (eq ,(cdr (assq upat vars)))))
648 matches)
649 code vars rest)))
650 ((eq (car-safe upat) 'let)
651 ;; A upat of the form (let VAR EXP).
652 ;; (pcase--u1 matches code
653 ;; (cons (cons (nth 1 upat) (nth 2 upat)) vars) rest)
654 (macroexp-let2
655 macroexp-copyable-p sym
656 (let* ((exp (nth 2 upat))
657 (found (assq exp vars)))
658 (if found (cdr found)
659 (let* ((vs (pcase--fgrep (mapcar #'car vars) exp))
660 (env (mapcar (lambda (v) (list v (cdr (assq v vars))))
661 vs)))
662 (if env (macroexp-let* env exp) exp))))
663 (pcase--u1 (cons `(match ,sym . ,(nth 1 upat)) matches)
664 code vars rest)))
665 ((eq (car-safe upat) '\`)
666 (pcase--mark-used sym)
667 (pcase--q1 sym (cadr upat) matches code vars rest))
668 ((eq (car-safe upat) 'or)
669 (let ((all (> (length (cdr upat)) 1))
670 (memq-fine t))
671 (when all
672 (dolist (alt (cdr upat))
673 (unless (if (pcase--self-quoting-p alt)
674 (progn
675 (unless (or (symbolp alt) (integerp alt))
676 (setq memq-fine nil))
678 (and (eq (car-safe alt) '\`)
679 (or (symbolp (cadr alt)) (integerp (cadr alt))
680 (setq memq-fine nil)
681 (stringp (cadr alt)))))
682 (setq all nil))))
683 (if all
684 ;; Use memq for (or `a `b `c `d) rather than a big tree.
685 (let* ((elems (mapcar (lambda (x) (if (consp x) (cadr x) x))
686 (cdr upat)))
687 (splitrest
688 (pcase--split-rest
689 sym (lambda (pat) (pcase--split-member elems pat)) rest))
690 (then-rest (car splitrest))
691 (else-rest (cdr splitrest)))
692 (pcase--mark-used sym)
693 (pcase--if `(,(if memq-fine #'memq #'member) ,sym ',elems)
694 (pcase--u1 matches code vars then-rest)
695 (pcase--u else-rest)))
696 (pcase--u1 (cons `(match ,sym ,@(cadr upat)) matches) code vars
697 (append (mapcar (lambda (upat)
698 `((and (match ,sym . ,upat) ,@matches)
699 ,code ,@vars))
700 (cddr upat))
701 rest)))))
702 ((eq (car-safe upat) 'and)
703 (pcase--u1 (append (mapcar (lambda (upat) `(match ,sym ,@upat))
704 (cdr upat))
705 matches)
706 code vars rest))
707 ((eq (car-safe upat) 'not)
708 ;; FIXME: The implementation below is naive and results in
709 ;; inefficient code.
710 ;; To make it work right, we would need to turn pcase--u1's
711 ;; `code' and `vars' into a single argument of the same form as
712 ;; `rest'. We would also need to split this new `then-rest' argument
713 ;; for every test (currently we don't bother to do it since
714 ;; it's only useful for odd patterns like (and `(PAT1 . PAT2)
715 ;; `(PAT3 . PAT4)) which the programmer can easily rewrite
716 ;; to the more efficient `(,(and PAT1 PAT3) . ,(and PAT2 PAT4))).
717 (pcase--u1 `((match ,sym . ,(cadr upat)))
718 ;; FIXME: This codegen is not careful to share its
719 ;; code if used several times: code blow up is likely.
720 (lambda (_vars)
721 ;; `vars' will likely contain bindings which are
722 ;; not always available in other paths to
723 ;; `rest', so there' no point trying to pass
724 ;; them down.
725 (pcase--u rest))
726 vars
727 (list `((and . ,matches) ,code . ,vars))))
728 (t (error "Unknown upattern `%s'" upat)))))
729 (t (error "Incorrect MATCH %s" (car matches)))))
731 (defun pcase--q1 (sym qpat matches code vars rest)
732 "Return code that runs CODE if SYM matches QPAT and if MATCHES match.
733 Otherwise, it defers to REST which is a list of branches of the form
734 \(OTHER_MATCH OTHER-CODE . OTHER-VARS)."
735 (cond
736 ((eq (car-safe qpat) '\,) (error "Can't use `,UPATTERN"))
737 ((floatp qpat) (error "Floating point patterns not supported"))
738 ((vectorp qpat)
739 ;; FIXME.
740 (error "Vector QPatterns not implemented yet"))
741 ((consp qpat)
742 (let* ((syma (make-symbol "xcar"))
743 (symd (make-symbol "xcdr"))
744 (splitrest (pcase--split-rest
746 (lambda (pat) (pcase--split-consp syma symd pat))
747 rest))
748 (then-rest (car splitrest))
749 (else-rest (cdr splitrest))
750 (then-body (pcase--u1 `((match ,syma . ,(pcase--upat (car qpat)))
751 (match ,symd . ,(pcase--upat (cdr qpat)))
752 ,@matches)
753 code vars then-rest)))
754 (pcase--if
755 `(consp ,sym)
756 ;; We want to be careful to only add bindings that are used.
757 ;; The byte-compiler could do that for us, but it would have to pay
758 ;; attention to the `consp' test in order to figure out that car/cdr
759 ;; can't signal errors and our byte-compiler is not that clever.
760 ;; FIXME: Some of those let bindings occur too early (they are used in
761 ;; `then-body', but only within some sub-branch).
762 (macroexp-let*
763 `(,@(if (get syma 'pcase-used) `((,syma (car ,sym))))
764 ,@(if (get symd 'pcase-used) `((,symd (cdr ,sym)))))
765 then-body)
766 (pcase--u else-rest))))
767 ((or (integerp qpat) (symbolp qpat) (stringp qpat))
768 (let* ((splitrest (pcase--split-rest
769 sym (lambda (pat) (pcase--split-equal qpat pat)) rest))
770 (then-rest (car splitrest))
771 (else-rest (cdr splitrest)))
772 (pcase--if (cond
773 ((stringp qpat) `(equal ,sym ,qpat))
774 ((null qpat) `(null ,sym))
775 (t `(eq ,sym ',qpat)))
776 (pcase--u1 matches code vars then-rest)
777 (pcase--u else-rest))))
778 (t (error "Unknown QPattern %s" qpat))))
781 (provide 'pcase)
782 ;;; pcase.el ends here