]> code.delx.au - gnu-emacs/blob - lisp/emacs-lisp/cl-macs.el
Merge from emacs-24 branch; up to 2012-05-01T10:20:43Z!rgm@gnu.org
[gnu-emacs] / lisp / emacs-lisp / cl-macs.el
1 ;;; cl-macs.el --- Common Lisp macros -*- lexical-binding: t; coding: utf-8 -*-
2
3 ;; Copyright (C) 1993, 2001-2012 Free Software Foundation, Inc.
4
5 ;; Author: Dave Gillespie <daveg@synaptics.com>
6 ;; Version: 2.02
7 ;; Keywords: extensions
8 ;; Package: emacs
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs 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 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;; These are extensions to Emacs Lisp that provide a degree of
28 ;; Common Lisp compatibility, beyond what is already built-in
29 ;; in Emacs Lisp.
30 ;;
31 ;; This package was written by Dave Gillespie; it is a complete
32 ;; rewrite of Cesar Quiroz's original cl.el package of December 1986.
33 ;;
34 ;; Bug reports, comments, and suggestions are welcome!
35
36 ;; This file contains the portions of the Common Lisp extensions
37 ;; package which should be autoloaded, but need only be present
38 ;; if the compiler or interpreter is used---this file is not
39 ;; necessary for executing compiled code.
40
41 ;; See cl.el for Change Log.
42
43
44 ;;; Code:
45
46 (require 'cl-lib)
47 (require 'macroexp)
48 ;; `gv' is required here because cl-macs can be loaded before loaddefs.el.
49 (require 'gv)
50
51 (defmacro cl-pop2 (place)
52 (declare (debug edebug-sexps))
53 `(prog1 (car (cdr ,place))
54 (setq ,place (cdr (cdr ,place)))))
55
56 (defvar cl-optimize-safety)
57 (defvar cl-optimize-speed)
58
59 ;;; Initialization.
60
61 ;;; Some predicates for analyzing Lisp forms.
62 ;; These are used by various
63 ;; macro expanders to optimize the results in certain common cases.
64
65 (defconst cl--simple-funcs '(car cdr nth aref elt if and or + - 1+ 1- min max
66 car-safe cdr-safe progn prog1 prog2))
67 (defconst cl--safe-funcs '(* / % length memq list vector vectorp
68 < > <= >= = error))
69
70 (defun cl--simple-expr-p (x &optional size)
71 "Check if no side effects, and executes quickly."
72 (or size (setq size 10))
73 (if (and (consp x) (not (memq (car x) '(quote function cl-function))))
74 (and (symbolp (car x))
75 (or (memq (car x) cl--simple-funcs)
76 (get (car x) 'side-effect-free))
77 (progn
78 (setq size (1- size))
79 (while (and (setq x (cdr x))
80 (setq size (cl--simple-expr-p (car x) size))))
81 (and (null x) (>= size 0) size)))
82 (and (> size 0) (1- size))))
83
84 (defun cl--simple-exprs-p (xs)
85 (while (and xs (cl--simple-expr-p (car xs)))
86 (setq xs (cdr xs)))
87 (not xs))
88
89 (defun cl--safe-expr-p (x)
90 "Check if no side effects."
91 (or (not (and (consp x) (not (memq (car x) '(quote function cl-function)))))
92 (and (symbolp (car x))
93 (or (memq (car x) cl--simple-funcs)
94 (memq (car x) cl--safe-funcs)
95 (get (car x) 'side-effect-free))
96 (progn
97 (while (and (setq x (cdr x)) (cl--safe-expr-p (car x))))
98 (null x)))))
99
100 ;;; Check if constant (i.e., no side effects or dependencies).
101 (defun cl--const-expr-p (x)
102 (cond ((consp x)
103 (or (eq (car x) 'quote)
104 (and (memq (car x) '(function cl-function))
105 (or (symbolp (nth 1 x))
106 (and (eq (car-safe (nth 1 x)) 'lambda) 'func)))))
107 ((symbolp x) (and (memq x '(nil t)) t))
108 (t t)))
109
110 (defun cl--const-expr-val (x)
111 (and (macroexp-const-p x) (if (consp x) (nth 1 x) x)))
112
113 (defun cl--expr-contains (x y)
114 "Count number of times X refers to Y. Return nil for 0 times."
115 ;; FIXME: This is naive, and it will cl-count Y as referred twice in
116 ;; (let ((Y 1)) Y) even though it should be 0. Also it is often called on
117 ;; non-macroexpanded code, so it may also miss some occurrences that would
118 ;; only appear in the expanded code.
119 (cond ((equal y x) 1)
120 ((and (consp x) (not (memq (car x) '(quote function cl-function))))
121 (let ((sum 0))
122 (while (consp x)
123 (setq sum (+ sum (or (cl--expr-contains (pop x) y) 0))))
124 (setq sum (+ sum (or (cl--expr-contains x y) 0)))
125 (and (> sum 0) sum)))
126 (t nil)))
127
128 (defun cl--expr-contains-any (x y)
129 (while (and y (not (cl--expr-contains x (car y)))) (pop y))
130 y)
131
132 (defun cl--expr-depends-p (x y)
133 "Check whether X may depend on any of the symbols in Y."
134 (and (not (macroexp-const-p x))
135 (or (not (cl--safe-expr-p x)) (cl--expr-contains-any x y))))
136
137 ;;; Symbols.
138
139 (defvar cl--gensym-counter)
140 ;;;###autoload
141 (defun cl-gensym (&optional prefix)
142 "Generate a new uninterned symbol.
143 The name is made by appending a number to PREFIX, default \"G\"."
144 (let ((pfix (if (stringp prefix) prefix "G"))
145 (num (if (integerp prefix) prefix
146 (prog1 cl--gensym-counter
147 (setq cl--gensym-counter (1+ cl--gensym-counter))))))
148 (make-symbol (format "%s%d" pfix num))))
149
150 ;;;###autoload
151 (defun cl-gentemp (&optional prefix)
152 "Generate a new interned symbol with a unique name.
153 The name is made by appending a number to PREFIX, default \"G\"."
154 (let ((pfix (if (stringp prefix) prefix "G"))
155 name)
156 (while (intern-soft (setq name (format "%s%d" pfix cl--gensym-counter)))
157 (setq cl--gensym-counter (1+ cl--gensym-counter)))
158 (intern name)))
159
160
161 ;;; Program structure.
162
163 (def-edebug-spec cl-declarations
164 (&rest ("cl-declare" &rest sexp)))
165
166 (def-edebug-spec cl-declarations-or-string
167 (&or stringp cl-declarations))
168
169 (def-edebug-spec cl-lambda-list
170 (([&rest arg]
171 [&optional ["&optional" cl-&optional-arg &rest cl-&optional-arg]]
172 [&optional ["&rest" arg]]
173 [&optional ["&key" [cl-&key-arg &rest cl-&key-arg]
174 &optional "&allow-other-keys"]]
175 [&optional ["&aux" &rest
176 &or (symbolp &optional def-form) symbolp]]
177 )))
178
179 (def-edebug-spec cl-&optional-arg
180 (&or (arg &optional def-form arg) arg))
181
182 (def-edebug-spec cl-&key-arg
183 (&or ([&or (symbolp arg) arg] &optional def-form arg) arg))
184
185 (defconst cl--lambda-list-keywords
186 '(&optional &rest &key &allow-other-keys &aux &whole &body &environment))
187
188 (defvar cl--bind-block) (defvar cl--bind-defs) (defvar cl--bind-enquote)
189 (defvar cl--bind-inits) (defvar cl--bind-lets) (defvar cl--bind-forms)
190
191 (defun cl--transform-lambda (form bind-block)
192 (let* ((args (car form)) (body (cdr form)) (orig-args args)
193 (cl--bind-block bind-block) (cl--bind-defs nil) (cl--bind-enquote nil)
194 (cl--bind-inits nil) (cl--bind-lets nil) (cl--bind-forms nil)
195 (header nil) (simple-args nil))
196 (while (or (stringp (car body))
197 (memq (car-safe (car body)) '(interactive cl-declare)))
198 (push (pop body) header))
199 (setq args (if (listp args) (cl-copy-list args) (list '&rest args)))
200 (let ((p (last args))) (if (cdr p) (setcdr p (list '&rest (cdr p)))))
201 (if (setq cl--bind-defs (cadr (memq '&cl-defs args)))
202 (setq args (delq '&cl-defs (delq cl--bind-defs args))
203 cl--bind-defs (cadr cl--bind-defs)))
204 (if (setq cl--bind-enquote (memq '&cl-quote args))
205 (setq args (delq '&cl-quote args)))
206 (if (memq '&whole args) (error "&whole not currently implemented"))
207 (let* ((p (memq '&environment args)) (v (cadr p))
208 (env-exp 'macroexpand-all-environment))
209 (if p (setq args (nconc (delq (car p) (delq v args))
210 (list '&aux (list v env-exp))))))
211 (while (and args (symbolp (car args))
212 (not (memq (car args) '(nil &rest &body &key &aux)))
213 (not (and (eq (car args) '&optional)
214 (or cl--bind-defs (consp (cadr args))))))
215 (push (pop args) simple-args))
216 (or (eq cl--bind-block 'cl-none)
217 (setq body (list `(cl-block ,cl--bind-block ,@body))))
218 (if (null args)
219 (cl-list* nil (nreverse simple-args) (nconc (nreverse header) body))
220 (if (memq '&optional simple-args) (push '&optional args))
221 (cl--do-arglist args nil (- (length simple-args)
222 (if (memq '&optional simple-args) 1 0)))
223 (setq cl--bind-lets (nreverse cl--bind-lets))
224 (cl-list* (and cl--bind-inits `(cl-eval-when (compile load eval)
225 ,@(nreverse cl--bind-inits)))
226 (nconc (nreverse simple-args)
227 (list '&rest (car (pop cl--bind-lets))))
228 (nconc (let ((hdr (nreverse header)))
229 ;; Macro expansion can take place in the middle of
230 ;; apparently harmless computation, so it should not
231 ;; touch the match-data.
232 (save-match-data
233 (require 'help-fns)
234 (cons (help-add-fundoc-usage
235 (if (stringp (car hdr)) (pop hdr))
236 (format "%S"
237 (cons 'fn
238 (cl--make-usage-args orig-args))))
239 hdr)))
240 (list `(let* ,cl--bind-lets
241 ,@(nreverse cl--bind-forms)
242 ,@body)))))))
243
244 ;;;###autoload
245 (defmacro cl-defun (name args &rest body)
246 "Define NAME as a function.
247 Like normal `defun', except ARGLIST allows full Common Lisp conventions,
248 and BODY is implicitly surrounded by (cl-block NAME ...).
249
250 \(fn NAME ARGLIST [DOCSTRING] BODY...)"
251 (declare (debug
252 ;; Same as defun but use cl-lambda-list.
253 (&define [&or name ("setf" :name setf name)]
254 cl-lambda-list
255 cl-declarations-or-string
256 [&optional ("interactive" interactive)]
257 def-body))
258 (doc-string 3)
259 (indent 2))
260 (let* ((res (cl--transform-lambda (cons args body) name))
261 (form `(defun ,name ,@(cdr res))))
262 (if (car res) `(progn ,(car res) ,form) form)))
263
264 ;; The lambda list for macros is different from that of normal lambdas.
265 ;; Note that &environment is only allowed as first or last items in the
266 ;; top level list.
267
268 (def-edebug-spec cl-macro-list
269 (([&optional "&environment" arg]
270 [&rest cl-macro-arg]
271 [&optional ["&optional" &rest
272 &or (cl-macro-arg &optional def-form cl-macro-arg) arg]]
273 [&optional [[&or "&rest" "&body"] cl-macro-arg]]
274 [&optional ["&key" [&rest
275 [&or ([&or (symbolp cl-macro-arg) arg]
276 &optional def-form cl-macro-arg)
277 arg]]
278 &optional "&allow-other-keys"]]
279 [&optional ["&aux" &rest
280 &or (symbolp &optional def-form) symbolp]]
281 [&optional "&environment" arg]
282 )))
283
284 (def-edebug-spec cl-macro-arg
285 (&or arg cl-macro-list1))
286
287 (def-edebug-spec cl-macro-list1
288 (([&optional "&whole" arg] ;; only allowed at lower levels
289 [&rest cl-macro-arg]
290 [&optional ["&optional" &rest
291 &or (cl-macro-arg &optional def-form cl-macro-arg) arg]]
292 [&optional [[&or "&rest" "&body"] cl-macro-arg]]
293 [&optional ["&key" [&rest
294 [&or ([&or (symbolp cl-macro-arg) arg]
295 &optional def-form cl-macro-arg)
296 arg]]
297 &optional "&allow-other-keys"]]
298 [&optional ["&aux" &rest
299 &or (symbolp &optional def-form) symbolp]]
300 . [&or arg nil])))
301
302 ;;;###autoload
303 (defmacro cl-defmacro (name args &rest body)
304 "Define NAME as a macro.
305 Like normal `defmacro', except ARGLIST allows full Common Lisp conventions,
306 and BODY is implicitly surrounded by (cl-block NAME ...).
307
308 \(fn NAME ARGLIST [DOCSTRING] BODY...)"
309 (declare (debug
310 (&define name cl-macro-list cl-declarations-or-string def-body))
311 (doc-string 3)
312 (indent 2))
313 (let* ((res (cl--transform-lambda (cons args body) name))
314 (form `(defmacro ,name ,@(cdr res))))
315 (if (car res) `(progn ,(car res) ,form) form)))
316
317 (def-edebug-spec cl-lambda-expr
318 (&define ("lambda" cl-lambda-list
319 ;;cl-declarations-or-string
320 ;;[&optional ("interactive" interactive)]
321 def-body)))
322
323 ;; Redefine function-form to also match cl-function
324 (def-edebug-spec function-form
325 ;; form at the end could also handle "function",
326 ;; but recognize it specially to avoid wrapping function forms.
327 (&or ([&or "quote" "function"] &or symbolp lambda-expr)
328 ("cl-function" cl-function)
329 form))
330
331 ;;;###autoload
332 (defmacro cl-function (func)
333 "Introduce a function.
334 Like normal `function', except that if argument is a lambda form,
335 its argument list allows full Common Lisp conventions."
336 (declare (debug (&or symbolp cl-lambda-expr)))
337 (if (eq (car-safe func) 'lambda)
338 (let* ((res (cl--transform-lambda (cdr func) 'cl-none))
339 (form `(function (lambda . ,(cdr res)))))
340 (if (car res) `(progn ,(car res) ,form) form))
341 `(function ,func)))
342
343 (declare-function help-add-fundoc-usage "help-fns" (docstring arglist))
344
345 (defun cl--make-usage-var (x)
346 "X can be a var or a (destructuring) lambda-list."
347 (cond
348 ((symbolp x) (make-symbol (upcase (symbol-name x))))
349 ((consp x) (cl--make-usage-args x))
350 (t x)))
351
352 (defun cl--make-usage-args (arglist)
353 (if (cdr-safe (last arglist)) ;Not a proper list.
354 (let* ((last (last arglist))
355 (tail (cdr last)))
356 (unwind-protect
357 (progn
358 (setcdr last nil)
359 (nconc (cl--make-usage-args arglist) (cl--make-usage-var tail)))
360 (setcdr last tail)))
361 ;; `orig-args' can contain &cl-defs (an internal
362 ;; CL thingy I don't understand), so remove it.
363 (let ((x (memq '&cl-defs arglist)))
364 (when x (setq arglist (delq (car x) (remq (cadr x) arglist)))))
365 (let ((state nil))
366 (mapcar (lambda (x)
367 (cond
368 ((symbolp x)
369 (if (eq ?\& (aref (symbol-name x) 0))
370 (setq state x)
371 (make-symbol (upcase (symbol-name x)))))
372 ((not (consp x)) x)
373 ((memq state '(nil &rest)) (cl--make-usage-args x))
374 (t ;(VAR INITFORM SVAR) or ((KEYWORD VAR) INITFORM SVAR).
375 (cl-list*
376 (if (and (consp (car x)) (eq state '&key))
377 (list (caar x) (cl--make-usage-var (nth 1 (car x))))
378 (cl--make-usage-var (car x)))
379 (nth 1 x) ;INITFORM.
380 (cl--make-usage-args (nthcdr 2 x)) ;SVAR.
381 ))))
382 arglist))))
383
384 (defun cl--do-arglist (args expr &optional num) ; uses bind-*
385 (if (nlistp args)
386 (if (or (memq args cl--lambda-list-keywords) (not (symbolp args)))
387 (error "Invalid argument name: %s" args)
388 (push (list args expr) cl--bind-lets))
389 (setq args (cl-copy-list args))
390 (let ((p (last args))) (if (cdr p) (setcdr p (list '&rest (cdr p)))))
391 (let ((p (memq '&body args))) (if p (setcar p '&rest)))
392 (if (memq '&environment args) (error "&environment used incorrectly"))
393 (let ((save-args args)
394 (restarg (memq '&rest args))
395 (safety (if (cl--compiling-file) cl-optimize-safety 3))
396 (keys nil)
397 (laterarg nil) (exactarg nil) minarg)
398 (or num (setq num 0))
399 (if (listp (cadr restarg))
400 (setq restarg (make-symbol "--cl-rest--"))
401 (setq restarg (cadr restarg)))
402 (push (list restarg expr) cl--bind-lets)
403 (if (eq (car args) '&whole)
404 (push (list (cl-pop2 args) restarg) cl--bind-lets))
405 (let ((p args))
406 (setq minarg restarg)
407 (while (and p (not (memq (car p) cl--lambda-list-keywords)))
408 (or (eq p args) (setq minarg (list 'cdr minarg)))
409 (setq p (cdr p)))
410 (if (memq (car p) '(nil &aux))
411 (setq minarg `(= (length ,restarg)
412 ,(length (cl-ldiff args p)))
413 exactarg (not (eq args p)))))
414 (while (and args (not (memq (car args) cl--lambda-list-keywords)))
415 (let ((poparg (list (if (or (cdr args) (not exactarg)) 'pop 'car)
416 restarg)))
417 (cl--do-arglist
418 (pop args)
419 (if (or laterarg (= safety 0)) poparg
420 `(if ,minarg ,poparg
421 (signal 'wrong-number-of-arguments
422 (list ,(and (not (eq cl--bind-block 'cl-none))
423 `',cl--bind-block)
424 (length ,restarg)))))))
425 (setq num (1+ num) laterarg t))
426 (while (and (eq (car args) '&optional) (pop args))
427 (while (and args (not (memq (car args) cl--lambda-list-keywords)))
428 (let ((arg (pop args)))
429 (or (consp arg) (setq arg (list arg)))
430 (if (cddr arg) (cl--do-arglist (nth 2 arg) `(and ,restarg t)))
431 (let ((def (if (cdr arg) (nth 1 arg)
432 (or (car cl--bind-defs)
433 (nth 1 (assq (car arg) cl--bind-defs)))))
434 (poparg `(pop ,restarg)))
435 (and def cl--bind-enquote (setq def `',def))
436 (cl--do-arglist (car arg)
437 (if def `(if ,restarg ,poparg ,def) poparg))
438 (setq num (1+ num))))))
439 (if (eq (car args) '&rest)
440 (let ((arg (cl-pop2 args)))
441 (if (consp arg) (cl--do-arglist arg restarg)))
442 (or (eq (car args) '&key) (= safety 0) exactarg
443 (push `(if ,restarg
444 (signal 'wrong-number-of-arguments
445 (list
446 ,(and (not (eq cl--bind-block 'cl-none))
447 `',cl--bind-block)
448 (+ ,num (length ,restarg)))))
449 cl--bind-forms)))
450 (while (and (eq (car args) '&key) (pop args))
451 (while (and args (not (memq (car args) cl--lambda-list-keywords)))
452 (let ((arg (pop args)))
453 (or (consp arg) (setq arg (list arg)))
454 (let* ((karg (if (consp (car arg)) (caar arg)
455 (intern (format ":%s" (car arg)))))
456 (varg (if (consp (car arg)) (cl-cadar arg) (car arg)))
457 (def (if (cdr arg) (cadr arg)
458 (or (car cl--bind-defs) (cadr (assq varg cl--bind-defs)))))
459 (look `(memq ',karg ,restarg)))
460 (and def cl--bind-enquote (setq def `',def))
461 (if (cddr arg)
462 (let* ((temp (or (nth 2 arg) (make-symbol "--cl-var--")))
463 (val `(car (cdr ,temp))))
464 (cl--do-arglist temp look)
465 (cl--do-arglist varg
466 `(if ,temp
467 (prog1 ,val (setq ,temp t))
468 ,def)))
469 (cl--do-arglist
470 varg
471 `(car (cdr ,(if (null def)
472 look
473 `(or ,look
474 ,(if (eq (cl--const-expr-p def) t)
475 `'(nil ,(cl--const-expr-val def))
476 `(list nil ,def))))))))
477 (push karg keys)))))
478 (setq keys (nreverse keys))
479 (or (and (eq (car args) '&allow-other-keys) (pop args))
480 (null keys) (= safety 0)
481 (let* ((var (make-symbol "--cl-keys--"))
482 (allow '(:allow-other-keys))
483 (check `(while ,var
484 (cond
485 ((memq (car ,var) ',(append keys allow))
486 (setq ,var (cdr (cdr ,var))))
487 ((car (cdr (memq (quote ,@allow) ,restarg)))
488 (setq ,var nil))
489 (t
490 (error
491 ,(format "Keyword argument %%s not one of %s"
492 keys)
493 (car ,var)))))))
494 (push `(let ((,var ,restarg)) ,check) cl--bind-forms)))
495 (while (and (eq (car args) '&aux) (pop args))
496 (while (and args (not (memq (car args) cl--lambda-list-keywords)))
497 (if (consp (car args))
498 (if (and cl--bind-enquote (cl-cadar args))
499 (cl--do-arglist (caar args)
500 `',(cadr (pop args)))
501 (cl--do-arglist (caar args) (cadr (pop args))))
502 (cl--do-arglist (pop args) nil))))
503 (if args (error "Malformed argument list %s" save-args)))))
504
505 (defun cl--arglist-args (args)
506 (if (nlistp args) (list args)
507 (let ((res nil) (kind nil) arg)
508 (while (consp args)
509 (setq arg (pop args))
510 (if (memq arg cl--lambda-list-keywords) (setq kind arg)
511 (if (eq arg '&cl-defs) (pop args)
512 (and (consp arg) kind (setq arg (car arg)))
513 (and (consp arg) (cdr arg) (eq kind '&key) (setq arg (cadr arg)))
514 (setq res (nconc res (cl--arglist-args arg))))))
515 (nconc res (and args (list args))))))
516
517 ;;;###autoload
518 (defmacro cl-destructuring-bind (args expr &rest body)
519 (declare (indent 2)
520 (debug (&define cl-macro-list def-form cl-declarations def-body)))
521 (let* ((cl--bind-lets nil) (cl--bind-forms nil) (cl--bind-inits nil)
522 (cl--bind-defs nil) (cl--bind-block 'cl-none) (cl--bind-enquote nil))
523 (cl--do-arglist (or args '(&aux)) expr)
524 (append '(progn) cl--bind-inits
525 (list `(let* ,(nreverse cl--bind-lets)
526 ,@(nreverse cl--bind-forms) ,@body)))))
527
528
529 ;;; The `cl-eval-when' form.
530
531 (defvar cl-not-toplevel nil)
532
533 ;;;###autoload
534 (defmacro cl-eval-when (when &rest body)
535 "Control when BODY is evaluated.
536 If `compile' is in WHEN, BODY is evaluated when compiled at top-level.
537 If `load' is in WHEN, BODY is evaluated when loaded after top-level compile.
538 If `eval' is in WHEN, BODY is evaluated when interpreted or at non-top-level.
539
540 \(fn (WHEN...) BODY...)"
541 (declare (indent 1) (debug ((&rest &or "compile" "load" "eval") body)))
542 (if (and (fboundp 'cl--compiling-file) (cl--compiling-file)
543 (not cl-not-toplevel) (not (boundp 'for-effect))) ; horrible kludge
544 (let ((comp (or (memq 'compile when) (memq :compile-toplevel when)))
545 (cl-not-toplevel t))
546 (if (or (memq 'load when) (memq :load-toplevel when))
547 (if comp (cons 'progn (mapcar 'cl--compile-time-too body))
548 `(if nil nil ,@body))
549 (progn (if comp (eval (cons 'progn body))) nil)))
550 (and (or (memq 'eval when) (memq :execute when))
551 (cons 'progn body))))
552
553 (defun cl--compile-time-too (form)
554 (or (and (symbolp (car-safe form)) (get (car-safe form) 'byte-hunk-handler))
555 (setq form (macroexpand
556 form (cons '(cl-eval-when) byte-compile-macro-environment))))
557 (cond ((eq (car-safe form) 'progn)
558 (cons 'progn (mapcar 'cl--compile-time-too (cdr form))))
559 ((eq (car-safe form) 'cl-eval-when)
560 (let ((when (nth 1 form)))
561 (if (or (memq 'eval when) (memq :execute when))
562 `(cl-eval-when (compile ,@when) ,@(cddr form))
563 form)))
564 (t (eval form) form)))
565
566 ;;;###autoload
567 (defmacro cl-load-time-value (form &optional _read-only)
568 "Like `progn', but evaluates the body at load time.
569 The result of the body appears to the compiler as a quoted constant."
570 (declare (debug (form &optional sexp)))
571 (if (cl--compiling-file)
572 (let* ((temp (cl-gentemp "--cl-load-time--"))
573 (set `(set ',temp ,form)))
574 (if (and (fboundp 'byte-compile-file-form-defmumble)
575 (boundp 'this-kind) (boundp 'that-one))
576 (fset 'byte-compile-file-form
577 `(lambda (form)
578 (fset 'byte-compile-file-form
579 ',(symbol-function 'byte-compile-file-form))
580 (byte-compile-file-form ',set)
581 (byte-compile-file-form form)))
582 (print set (symbol-value 'byte-compile--outbuffer)))
583 `(symbol-value ',temp))
584 `',(eval form)))
585
586
587 ;;; Conditional control structures.
588
589 ;;;###autoload
590 (defmacro cl-case (expr &rest clauses)
591 "Eval EXPR and choose among clauses on that value.
592 Each clause looks like (KEYLIST BODY...). EXPR is evaluated and compared
593 against each key in each KEYLIST; the corresponding BODY is evaluated.
594 If no clause succeeds, cl-case returns nil. A single atom may be used in
595 place of a KEYLIST of one atom. A KEYLIST of t or `otherwise' is
596 allowed only in the final clause, and matches if no other keys match.
597 Key values are compared by `eql'.
598 \n(fn EXPR (KEYLIST BODY...)...)"
599 (declare (indent 1) (debug (form &rest (sexp body))))
600 (let* ((temp (if (cl--simple-expr-p expr 3) expr (make-symbol "--cl-var--")))
601 (head-list nil)
602 (body (cons
603 'cond
604 (mapcar
605 (function
606 (lambda (c)
607 (cons (cond ((memq (car c) '(t otherwise)) t)
608 ((eq (car c) 'cl--ecase-error-flag)
609 `(error "cl-ecase failed: %s, %s"
610 ,temp ',(reverse head-list)))
611 ((listp (car c))
612 (setq head-list (append (car c) head-list))
613 `(cl-member ,temp ',(car c)))
614 (t
615 (if (memq (car c) head-list)
616 (error "Duplicate key in case: %s"
617 (car c)))
618 (push (car c) head-list)
619 `(eql ,temp ',(car c))))
620 (or (cdr c) '(nil)))))
621 clauses))))
622 (if (eq temp expr) body
623 `(let ((,temp ,expr)) ,body))))
624
625 ;;;###autoload
626 (defmacro cl-ecase (expr &rest clauses)
627 "Like `cl-case', but error if no case fits.
628 `otherwise'-clauses are not allowed.
629 \n(fn EXPR (KEYLIST BODY...)...)"
630 (declare (indent 1) (debug cl-case))
631 `(cl-case ,expr ,@clauses (cl--ecase-error-flag)))
632
633 ;;;###autoload
634 (defmacro cl-typecase (expr &rest clauses)
635 "Evals EXPR, chooses among clauses on that value.
636 Each clause looks like (TYPE BODY...). EXPR is evaluated and, if it
637 satisfies TYPE, the corresponding BODY is evaluated. If no clause succeeds,
638 cl-typecase returns nil. A TYPE of t or `otherwise' is allowed only in the
639 final clause, and matches if no other keys match.
640 \n(fn EXPR (TYPE BODY...)...)"
641 (declare (indent 1)
642 (debug (form &rest ([&or cl-type-spec "otherwise"] body))))
643 (let* ((temp (if (cl--simple-expr-p expr 3) expr (make-symbol "--cl-var--")))
644 (type-list nil)
645 (body (cons
646 'cond
647 (mapcar
648 (function
649 (lambda (c)
650 (cons (cond ((eq (car c) 'otherwise) t)
651 ((eq (car c) 'cl--ecase-error-flag)
652 `(error "cl-etypecase failed: %s, %s"
653 ,temp ',(reverse type-list)))
654 (t
655 (push (car c) type-list)
656 (cl--make-type-test temp (car c))))
657 (or (cdr c) '(nil)))))
658 clauses))))
659 (if (eq temp expr) body
660 `(let ((,temp ,expr)) ,body))))
661
662 ;;;###autoload
663 (defmacro cl-etypecase (expr &rest clauses)
664 "Like `cl-typecase', but error if no case fits.
665 `otherwise'-clauses are not allowed.
666 \n(fn EXPR (TYPE BODY...)...)"
667 (declare (indent 1) (debug cl-typecase))
668 `(cl-typecase ,expr ,@clauses (cl--ecase-error-flag)))
669
670
671 ;;; Blocks and exits.
672
673 ;;;###autoload
674 (defmacro cl-block (name &rest body)
675 "Define a lexically-scoped block named NAME.
676 NAME may be any symbol. Code inside the BODY forms can call `cl-return-from'
677 to jump prematurely out of the block. This differs from `catch' and `throw'
678 in two respects: First, the NAME is an unevaluated symbol rather than a
679 quoted symbol or other form; and second, NAME is lexically rather than
680 dynamically scoped: Only references to it within BODY will work. These
681 references may appear inside macro expansions, but not inside functions
682 called from BODY."
683 (declare (indent 1) (debug (symbolp body)))
684 (if (cl--safe-expr-p `(progn ,@body)) `(progn ,@body)
685 `(cl--block-wrapper
686 (catch ',(intern (format "--cl-block-%s--" name))
687 ,@body))))
688
689 ;;;###autoload
690 (defmacro cl-return (&optional result)
691 "Return from the block named nil.
692 This is equivalent to `(cl-return-from nil RESULT)'."
693 (declare (debug (&optional form)))
694 `(cl-return-from nil ,result))
695
696 ;;;###autoload
697 (defmacro cl-return-from (name &optional result)
698 "Return from the block named NAME.
699 This jumps out to the innermost enclosing `(cl-block NAME ...)' form,
700 returning RESULT from that form (or nil if RESULT is omitted).
701 This is compatible with Common Lisp, but note that `defun' and
702 `defmacro' do not create implicit blocks as they do in Common Lisp."
703 (declare (indent 1) (debug (symbolp &optional form)))
704 (let ((name2 (intern (format "--cl-block-%s--" name))))
705 `(cl--block-throw ',name2 ,result)))
706
707
708 ;;; The "cl-loop" macro.
709
710 (defvar cl--loop-args) (defvar cl--loop-accum-var) (defvar cl--loop-accum-vars)
711 (defvar cl--loop-bindings) (defvar cl--loop-body) (defvar cl--loop-destr-temps)
712 (defvar cl--loop-finally) (defvar cl--loop-finish-flag)
713 (defvar cl--loop-first-flag)
714 (defvar cl--loop-initially) (defvar cl--loop-map-form) (defvar cl--loop-name)
715 (defvar cl--loop-result) (defvar cl--loop-result-explicit)
716 (defvar cl--loop-result-var) (defvar cl--loop-steps) (defvar cl--loop-symbol-macs)
717
718 ;;;###autoload
719 (defmacro cl-loop (&rest loop-args)
720 "The Common Lisp `cl-loop' macro.
721 Valid clauses are:
722 for VAR from/upfrom/downfrom NUM to/upto/downto/above/below NUM by NUM,
723 for VAR in LIST by FUNC, for VAR on LIST by FUNC, for VAR = INIT then EXPR,
724 for VAR across ARRAY, repeat NUM, with VAR = INIT, while COND, until COND,
725 always COND, never COND, thereis COND, collect EXPR into VAR,
726 append EXPR into VAR, nconc EXPR into VAR, sum EXPR into VAR,
727 count EXPR into VAR, maximize EXPR into VAR, minimize EXPR into VAR,
728 if COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
729 unless COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
730 do EXPRS..., initially EXPRS..., finally EXPRS..., return EXPR,
731 finally return EXPR, named NAME.
732
733 \(fn CLAUSE...)"
734 (declare (debug (&rest &or symbolp form)))
735 (if (not (memq t (mapcar 'symbolp (delq nil (delq t (cl-copy-list loop-args))))))
736 `(cl-block nil (while t ,@loop-args))
737 (let ((cl--loop-args loop-args) (cl--loop-name nil) (cl--loop-bindings nil)
738 (cl--loop-body nil) (cl--loop-steps nil)
739 (cl--loop-result nil) (cl--loop-result-explicit nil)
740 (cl--loop-result-var nil) (cl--loop-finish-flag nil)
741 (cl--loop-accum-var nil) (cl--loop-accum-vars nil)
742 (cl--loop-initially nil) (cl--loop-finally nil)
743 (cl--loop-map-form nil) (cl--loop-first-flag nil)
744 (cl--loop-destr-temps nil) (cl--loop-symbol-macs nil))
745 (setq cl--loop-args (append cl--loop-args '(cl-end-loop)))
746 (while (not (eq (car cl--loop-args) 'cl-end-loop)) (cl-parse-loop-clause))
747 (if cl--loop-finish-flag
748 (push `((,cl--loop-finish-flag t)) cl--loop-bindings))
749 (if cl--loop-first-flag
750 (progn (push `((,cl--loop-first-flag t)) cl--loop-bindings)
751 (push `(setq ,cl--loop-first-flag nil) cl--loop-steps)))
752 (let* ((epilogue (nconc (nreverse cl--loop-finally)
753 (list (or cl--loop-result-explicit cl--loop-result))))
754 (ands (cl--loop-build-ands (nreverse cl--loop-body)))
755 (while-body (nconc (cadr ands) (nreverse cl--loop-steps)))
756 (body (append
757 (nreverse cl--loop-initially)
758 (list (if cl--loop-map-form
759 `(cl-block --cl-finish--
760 ,(cl-subst
761 (if (eq (car ands) t) while-body
762 (cons `(or ,(car ands)
763 (cl-return-from --cl-finish--
764 nil))
765 while-body))
766 '--cl-map cl--loop-map-form))
767 `(while ,(car ands) ,@while-body)))
768 (if cl--loop-finish-flag
769 (if (equal epilogue '(nil)) (list cl--loop-result-var)
770 `((if ,cl--loop-finish-flag
771 (progn ,@epilogue) ,cl--loop-result-var)))
772 epilogue))))
773 (if cl--loop-result-var (push (list cl--loop-result-var) cl--loop-bindings))
774 (while cl--loop-bindings
775 (if (cdar cl--loop-bindings)
776 (setq body (list (cl--loop-let (pop cl--loop-bindings) body t)))
777 (let ((lets nil))
778 (while (and cl--loop-bindings
779 (not (cdar cl--loop-bindings)))
780 (push (car (pop cl--loop-bindings)) lets))
781 (setq body (list (cl--loop-let lets body nil))))))
782 (if cl--loop-symbol-macs
783 (setq body (list `(cl-symbol-macrolet ,cl--loop-symbol-macs ,@body))))
784 `(cl-block ,cl--loop-name ,@body)))))
785
786 ;; Below is a complete spec for cl-loop, in several parts that correspond
787 ;; to the syntax given in CLtL2. The specs do more than specify where
788 ;; the forms are; it also specifies, as much as Edebug allows, all the
789 ;; syntactically valid cl-loop clauses. The disadvantage of this
790 ;; completeness is rigidity, but the "for ... being" clause allows
791 ;; arbitrary extensions of the form: [symbolp &rest &or symbolp form].
792
793 ;; (def-edebug-spec cl-loop
794 ;; ([&optional ["named" symbolp]]
795 ;; [&rest
796 ;; &or
797 ;; ["repeat" form]
798 ;; loop-for-as
799 ;; loop-with
800 ;; loop-initial-final]
801 ;; [&rest loop-clause]
802 ;; ))
803
804 ;; (def-edebug-spec loop-with
805 ;; ("with" loop-var
806 ;; loop-type-spec
807 ;; [&optional ["=" form]]
808 ;; &rest ["and" loop-var
809 ;; loop-type-spec
810 ;; [&optional ["=" form]]]))
811
812 ;; (def-edebug-spec loop-for-as
813 ;; ([&or "for" "as"] loop-for-as-subclause
814 ;; &rest ["and" loop-for-as-subclause]))
815
816 ;; (def-edebug-spec loop-for-as-subclause
817 ;; (loop-var
818 ;; loop-type-spec
819 ;; &or
820 ;; [[&or "in" "on" "in-ref" "across-ref"]
821 ;; form &optional ["by" function-form]]
822
823 ;; ["=" form &optional ["then" form]]
824 ;; ["across" form]
825 ;; ["being"
826 ;; [&or "the" "each"]
827 ;; &or
828 ;; [[&or "element" "elements"]
829 ;; [&or "of" "in" "of-ref"] form
830 ;; &optional "using" ["index" symbolp]];; is this right?
831 ;; [[&or "hash-key" "hash-keys"
832 ;; "hash-value" "hash-values"]
833 ;; [&or "of" "in"]
834 ;; hash-table-p &optional ["using" ([&or "hash-value" "hash-values"
835 ;; "hash-key" "hash-keys"] sexp)]]
836
837 ;; [[&or "symbol" "present-symbol" "external-symbol"
838 ;; "symbols" "present-symbols" "external-symbols"]
839 ;; [&or "in" "of"] package-p]
840
841 ;; ;; Extensions for Emacs Lisp, including Lucid Emacs.
842 ;; [[&or "frame" "frames"
843 ;; "screen" "screens"
844 ;; "buffer" "buffers"]]
845
846 ;; [[&or "window" "windows"]
847 ;; [&or "of" "in"] form]
848
849 ;; [[&or "overlay" "overlays"
850 ;; "extent" "extents"]
851 ;; [&or "of" "in"] form
852 ;; &optional [[&or "from" "to"] form]]
853
854 ;; [[&or "interval" "intervals"]
855 ;; [&or "in" "of"] form
856 ;; &optional [[&or "from" "to"] form]
857 ;; ["property" form]]
858
859 ;; [[&or "key-code" "key-codes"
860 ;; "key-seq" "key-seqs"
861 ;; "key-binding" "key-bindings"]
862 ;; [&or "in" "of"] form
863 ;; &optional ["using" ([&or "key-code" "key-codes"
864 ;; "key-seq" "key-seqs"
865 ;; "key-binding" "key-bindings"]
866 ;; sexp)]]
867 ;; ;; For arbitrary extensions, recognize anything else.
868 ;; [symbolp &rest &or symbolp form]
869 ;; ]
870
871 ;; ;; arithmetic - must be last since all parts are optional.
872 ;; [[&optional [[&or "from" "downfrom" "upfrom"] form]]
873 ;; [&optional [[&or "to" "downto" "upto" "below" "above"] form]]
874 ;; [&optional ["by" form]]
875 ;; ]))
876
877 ;; (def-edebug-spec loop-initial-final
878 ;; (&or ["initially"
879 ;; ;; [&optional &or "do" "doing"] ;; CLtL2 doesn't allow this.
880 ;; &rest loop-non-atomic-expr]
881 ;; ["finally" &or
882 ;; [[&optional &or "do" "doing"] &rest loop-non-atomic-expr]
883 ;; ["return" form]]))
884
885 ;; (def-edebug-spec loop-and-clause
886 ;; (loop-clause &rest ["and" loop-clause]))
887
888 ;; (def-edebug-spec loop-clause
889 ;; (&or
890 ;; [[&or "while" "until" "always" "never" "thereis"] form]
891
892 ;; [[&or "collect" "collecting"
893 ;; "append" "appending"
894 ;; "nconc" "nconcing"
895 ;; "concat" "vconcat"] form
896 ;; [&optional ["into" loop-var]]]
897
898 ;; [[&or "count" "counting"
899 ;; "sum" "summing"
900 ;; "maximize" "maximizing"
901 ;; "minimize" "minimizing"] form
902 ;; [&optional ["into" loop-var]]
903 ;; loop-type-spec]
904
905 ;; [[&or "if" "when" "unless"]
906 ;; form loop-and-clause
907 ;; [&optional ["else" loop-and-clause]]
908 ;; [&optional "end"]]
909
910 ;; [[&or "do" "doing"] &rest loop-non-atomic-expr]
911
912 ;; ["return" form]
913 ;; loop-initial-final
914 ;; ))
915
916 ;; (def-edebug-spec loop-non-atomic-expr
917 ;; ([&not atom] form))
918
919 ;; (def-edebug-spec loop-var
920 ;; ;; The symbolp must be last alternative to recognize e.g. (a b . c)
921 ;; ;; loop-var =>
922 ;; ;; (loop-var . [&or nil loop-var])
923 ;; ;; (symbolp . [&or nil loop-var])
924 ;; ;; (symbolp . loop-var)
925 ;; ;; (symbolp . (symbolp . [&or nil loop-var]))
926 ;; ;; (symbolp . (symbolp . loop-var))
927 ;; ;; (symbolp . (symbolp . symbolp)) == (symbolp symbolp . symbolp)
928 ;; (&or (loop-var . [&or nil loop-var]) [gate symbolp]))
929
930 ;; (def-edebug-spec loop-type-spec
931 ;; (&optional ["of-type" loop-d-type-spec]))
932
933 ;; (def-edebug-spec loop-d-type-spec
934 ;; (&or (loop-d-type-spec . [&or nil loop-d-type-spec]) cl-type-spec))
935
936
937
938 (defun cl-parse-loop-clause () ; uses loop-*
939 (let ((word (pop cl--loop-args))
940 (hash-types '(hash-key hash-keys hash-value hash-values))
941 (key-types '(key-code key-codes key-seq key-seqs
942 key-binding key-bindings)))
943 (cond
944
945 ((null cl--loop-args)
946 (error "Malformed `cl-loop' macro"))
947
948 ((eq word 'named)
949 (setq cl--loop-name (pop cl--loop-args)))
950
951 ((eq word 'initially)
952 (if (memq (car cl--loop-args) '(do doing)) (pop cl--loop-args))
953 (or (consp (car cl--loop-args)) (error "Syntax error on `initially' clause"))
954 (while (consp (car cl--loop-args))
955 (push (pop cl--loop-args) cl--loop-initially)))
956
957 ((eq word 'finally)
958 (if (eq (car cl--loop-args) 'return)
959 (setq cl--loop-result-explicit (or (cl-pop2 cl--loop-args) '(quote nil)))
960 (if (memq (car cl--loop-args) '(do doing)) (pop cl--loop-args))
961 (or (consp (car cl--loop-args)) (error "Syntax error on `finally' clause"))
962 (if (and (eq (caar cl--loop-args) 'return) (null cl--loop-name))
963 (setq cl--loop-result-explicit (or (nth 1 (pop cl--loop-args)) '(quote nil)))
964 (while (consp (car cl--loop-args))
965 (push (pop cl--loop-args) cl--loop-finally)))))
966
967 ((memq word '(for as))
968 (let ((loop-for-bindings nil) (loop-for-sets nil) (loop-for-steps nil)
969 (ands nil))
970 (while
971 ;; Use `cl-gensym' rather than `make-symbol'. It's important that
972 ;; (not (eq (symbol-name var1) (symbol-name var2))) because
973 ;; these vars get added to the macro-environment.
974 (let ((var (or (pop cl--loop-args) (cl-gensym "--cl-var--"))))
975 (setq word (pop cl--loop-args))
976 (if (eq word 'being) (setq word (pop cl--loop-args)))
977 (if (memq word '(the each)) (setq word (pop cl--loop-args)))
978 (if (memq word '(buffer buffers))
979 (setq word 'in cl--loop-args (cons '(buffer-list) cl--loop-args)))
980 (cond
981
982 ((memq word '(from downfrom upfrom to downto upto
983 above below by))
984 (push word cl--loop-args)
985 (if (memq (car cl--loop-args) '(downto above))
986 (error "Must specify `from' value for downward cl-loop"))
987 (let* ((down (or (eq (car cl--loop-args) 'downfrom)
988 (memq (cl-caddr cl--loop-args) '(downto above))))
989 (excl (or (memq (car cl--loop-args) '(above below))
990 (memq (cl-caddr cl--loop-args) '(above below))))
991 (start (and (memq (car cl--loop-args) '(from upfrom downfrom))
992 (cl-pop2 cl--loop-args)))
993 (end (and (memq (car cl--loop-args)
994 '(to upto downto above below))
995 (cl-pop2 cl--loop-args)))
996 (step (and (eq (car cl--loop-args) 'by) (cl-pop2 cl--loop-args)))
997 (end-var (and (not (macroexp-const-p end))
998 (make-symbol "--cl-var--")))
999 (step-var (and (not (macroexp-const-p step))
1000 (make-symbol "--cl-var--"))))
1001 (and step (numberp step) (<= step 0)
1002 (error "Loop `by' value is not positive: %s" step))
1003 (push (list var (or start 0)) loop-for-bindings)
1004 (if end-var (push (list end-var end) loop-for-bindings))
1005 (if step-var (push (list step-var step)
1006 loop-for-bindings))
1007 (if end
1008 (push (list
1009 (if down (if excl '> '>=) (if excl '< '<=))
1010 var (or end-var end)) cl--loop-body))
1011 (push (list var (list (if down '- '+) var
1012 (or step-var step 1)))
1013 loop-for-steps)))
1014
1015 ((memq word '(in in-ref on))
1016 (let* ((on (eq word 'on))
1017 (temp (if (and on (symbolp var))
1018 var (make-symbol "--cl-var--"))))
1019 (push (list temp (pop cl--loop-args)) loop-for-bindings)
1020 (push `(consp ,temp) cl--loop-body)
1021 (if (eq word 'in-ref)
1022 (push (list var `(car ,temp)) cl--loop-symbol-macs)
1023 (or (eq temp var)
1024 (progn
1025 (push (list var nil) loop-for-bindings)
1026 (push (list var (if on temp `(car ,temp)))
1027 loop-for-sets))))
1028 (push (list temp
1029 (if (eq (car cl--loop-args) 'by)
1030 (let ((step (cl-pop2 cl--loop-args)))
1031 (if (and (memq (car-safe step)
1032 '(quote function
1033 cl-function))
1034 (symbolp (nth 1 step)))
1035 (list (nth 1 step) temp)
1036 `(funcall ,step ,temp)))
1037 `(cdr ,temp)))
1038 loop-for-steps)))
1039
1040 ((eq word '=)
1041 (let* ((start (pop cl--loop-args))
1042 (then (if (eq (car cl--loop-args) 'then) (cl-pop2 cl--loop-args) start)))
1043 (push (list var nil) loop-for-bindings)
1044 (if (or ands (eq (car cl--loop-args) 'and))
1045 (progn
1046 (push `(,var
1047 (if ,(or cl--loop-first-flag
1048 (setq cl--loop-first-flag
1049 (make-symbol "--cl-var--")))
1050 ,start ,var))
1051 loop-for-sets)
1052 (push (list var then) loop-for-steps))
1053 (push (list var
1054 (if (eq start then) start
1055 `(if ,(or cl--loop-first-flag
1056 (setq cl--loop-first-flag
1057 (make-symbol "--cl-var--")))
1058 ,start ,then)))
1059 loop-for-sets))))
1060
1061 ((memq word '(across across-ref))
1062 (let ((temp-vec (make-symbol "--cl-vec--"))
1063 (temp-idx (make-symbol "--cl-idx--")))
1064 (push (list temp-vec (pop cl--loop-args)) loop-for-bindings)
1065 (push (list temp-idx -1) loop-for-bindings)
1066 (push `(< (setq ,temp-idx (1+ ,temp-idx))
1067 (length ,temp-vec)) cl--loop-body)
1068 (if (eq word 'across-ref)
1069 (push (list var `(aref ,temp-vec ,temp-idx))
1070 cl--loop-symbol-macs)
1071 (push (list var nil) loop-for-bindings)
1072 (push (list var `(aref ,temp-vec ,temp-idx))
1073 loop-for-sets))))
1074
1075 ((memq word '(element elements))
1076 (let ((ref (or (memq (car cl--loop-args) '(in-ref of-ref))
1077 (and (not (memq (car cl--loop-args) '(in of)))
1078 (error "Expected `of'"))))
1079 (seq (cl-pop2 cl--loop-args))
1080 (temp-seq (make-symbol "--cl-seq--"))
1081 (temp-idx (if (eq (car cl--loop-args) 'using)
1082 (if (and (= (length (cadr cl--loop-args)) 2)
1083 (eq (cl-caadr cl--loop-args) 'index))
1084 (cadr (cl-pop2 cl--loop-args))
1085 (error "Bad `using' clause"))
1086 (make-symbol "--cl-idx--"))))
1087 (push (list temp-seq seq) loop-for-bindings)
1088 (push (list temp-idx 0) loop-for-bindings)
1089 (if ref
1090 (let ((temp-len (make-symbol "--cl-len--")))
1091 (push (list temp-len `(length ,temp-seq))
1092 loop-for-bindings)
1093 (push (list var `(elt ,temp-seq ,temp-idx))
1094 cl--loop-symbol-macs)
1095 (push `(< ,temp-idx ,temp-len) cl--loop-body))
1096 (push (list var nil) loop-for-bindings)
1097 (push `(and ,temp-seq
1098 (or (consp ,temp-seq)
1099 (< ,temp-idx (length ,temp-seq))))
1100 cl--loop-body)
1101 (push (list var `(if (consp ,temp-seq)
1102 (pop ,temp-seq)
1103 (aref ,temp-seq ,temp-idx)))
1104 loop-for-sets))
1105 (push (list temp-idx `(1+ ,temp-idx))
1106 loop-for-steps)))
1107
1108 ((memq word hash-types)
1109 (or (memq (car cl--loop-args) '(in of)) (error "Expected `of'"))
1110 (let* ((table (cl-pop2 cl--loop-args))
1111 (other (if (eq (car cl--loop-args) 'using)
1112 (if (and (= (length (cadr cl--loop-args)) 2)
1113 (memq (cl-caadr cl--loop-args) hash-types)
1114 (not (eq (cl-caadr cl--loop-args) word)))
1115 (cadr (cl-pop2 cl--loop-args))
1116 (error "Bad `using' clause"))
1117 (make-symbol "--cl-var--"))))
1118 (if (memq word '(hash-value hash-values))
1119 (setq var (prog1 other (setq other var))))
1120 (setq cl--loop-map-form
1121 `(maphash (lambda (,var ,other) . --cl-map) ,table))))
1122
1123 ((memq word '(symbol present-symbol external-symbol
1124 symbols present-symbols external-symbols))
1125 (let ((ob (and (memq (car cl--loop-args) '(in of)) (cl-pop2 cl--loop-args))))
1126 (setq cl--loop-map-form
1127 `(mapatoms (lambda (,var) . --cl-map) ,ob))))
1128
1129 ((memq word '(overlay overlays extent extents))
1130 (let ((buf nil) (from nil) (to nil))
1131 (while (memq (car cl--loop-args) '(in of from to))
1132 (cond ((eq (car cl--loop-args) 'from) (setq from (cl-pop2 cl--loop-args)))
1133 ((eq (car cl--loop-args) 'to) (setq to (cl-pop2 cl--loop-args)))
1134 (t (setq buf (cl-pop2 cl--loop-args)))))
1135 (setq cl--loop-map-form
1136 `(cl--map-overlays
1137 (lambda (,var ,(make-symbol "--cl-var--"))
1138 (progn . --cl-map) nil)
1139 ,buf ,from ,to))))
1140
1141 ((memq word '(interval intervals))
1142 (let ((buf nil) (prop nil) (from nil) (to nil)
1143 (var1 (make-symbol "--cl-var1--"))
1144 (var2 (make-symbol "--cl-var2--")))
1145 (while (memq (car cl--loop-args) '(in of property from to))
1146 (cond ((eq (car cl--loop-args) 'from) (setq from (cl-pop2 cl--loop-args)))
1147 ((eq (car cl--loop-args) 'to) (setq to (cl-pop2 cl--loop-args)))
1148 ((eq (car cl--loop-args) 'property)
1149 (setq prop (cl-pop2 cl--loop-args)))
1150 (t (setq buf (cl-pop2 cl--loop-args)))))
1151 (if (and (consp var) (symbolp (car var)) (symbolp (cdr var)))
1152 (setq var1 (car var) var2 (cdr var))
1153 (push (list var `(cons ,var1 ,var2)) loop-for-sets))
1154 (setq cl--loop-map-form
1155 `(cl--map-intervals
1156 (lambda (,var1 ,var2) . --cl-map)
1157 ,buf ,prop ,from ,to))))
1158
1159 ((memq word key-types)
1160 (or (memq (car cl--loop-args) '(in of)) (error "Expected `of'"))
1161 (let ((cl-map (cl-pop2 cl--loop-args))
1162 (other (if (eq (car cl--loop-args) 'using)
1163 (if (and (= (length (cadr cl--loop-args)) 2)
1164 (memq (cl-caadr cl--loop-args) key-types)
1165 (not (eq (cl-caadr cl--loop-args) word)))
1166 (cadr (cl-pop2 cl--loop-args))
1167 (error "Bad `using' clause"))
1168 (make-symbol "--cl-var--"))))
1169 (if (memq word '(key-binding key-bindings))
1170 (setq var (prog1 other (setq other var))))
1171 (setq cl--loop-map-form
1172 `(,(if (memq word '(key-seq key-seqs))
1173 'cl--map-keymap-recursively 'map-keymap)
1174 (lambda (,var ,other) . --cl-map) ,cl-map))))
1175
1176 ((memq word '(frame frames screen screens))
1177 (let ((temp (make-symbol "--cl-var--")))
1178 (push (list var '(selected-frame))
1179 loop-for-bindings)
1180 (push (list temp nil) loop-for-bindings)
1181 (push `(prog1 (not (eq ,var ,temp))
1182 (or ,temp (setq ,temp ,var)))
1183 cl--loop-body)
1184 (push (list var `(next-frame ,var))
1185 loop-for-steps)))
1186
1187 ((memq word '(window windows))
1188 (let ((scr (and (memq (car cl--loop-args) '(in of)) (cl-pop2 cl--loop-args)))
1189 (temp (make-symbol "--cl-var--"))
1190 (minip (make-symbol "--cl-minip--")))
1191 (push (list var (if scr
1192 `(frame-selected-window ,scr)
1193 '(selected-window)))
1194 loop-for-bindings)
1195 ;; If we started in the minibuffer, we need to
1196 ;; ensure that next-window will bring us back there
1197 ;; at some point. (Bug#7492).
1198 ;; (Consider using walk-windows instead of cl-loop if
1199 ;; you care about such things.)
1200 (push (list minip `(minibufferp (window-buffer ,var)))
1201 loop-for-bindings)
1202 (push (list temp nil) loop-for-bindings)
1203 (push `(prog1 (not (eq ,var ,temp))
1204 (or ,temp (setq ,temp ,var)))
1205 cl--loop-body)
1206 (push (list var `(next-window ,var ,minip))
1207 loop-for-steps)))
1208
1209 (t
1210 (let ((handler (and (symbolp word)
1211 (get word 'cl--loop-for-handler))))
1212 (if handler
1213 (funcall handler var)
1214 (error "Expected a `for' preposition, found %s" word)))))
1215 (eq (car cl--loop-args) 'and))
1216 (setq ands t)
1217 (pop cl--loop-args))
1218 (if (and ands loop-for-bindings)
1219 (push (nreverse loop-for-bindings) cl--loop-bindings)
1220 (setq cl--loop-bindings (nconc (mapcar 'list loop-for-bindings)
1221 cl--loop-bindings)))
1222 (if loop-for-sets
1223 (push `(progn
1224 ,(cl--loop-let (nreverse loop-for-sets) 'setq ands)
1225 t) cl--loop-body))
1226 (if loop-for-steps
1227 (push (cons (if ands 'cl-psetq 'setq)
1228 (apply 'append (nreverse loop-for-steps)))
1229 cl--loop-steps))))
1230
1231 ((eq word 'repeat)
1232 (let ((temp (make-symbol "--cl-var--")))
1233 (push (list (list temp (pop cl--loop-args))) cl--loop-bindings)
1234 (push `(>= (setq ,temp (1- ,temp)) 0) cl--loop-body)))
1235
1236 ((memq word '(collect collecting))
1237 (let ((what (pop cl--loop-args))
1238 (var (cl--loop-handle-accum nil 'nreverse)))
1239 (if (eq var cl--loop-accum-var)
1240 (push `(progn (push ,what ,var) t) cl--loop-body)
1241 (push `(progn
1242 (setq ,var (nconc ,var (list ,what)))
1243 t) cl--loop-body))))
1244
1245 ((memq word '(nconc nconcing append appending))
1246 (let ((what (pop cl--loop-args))
1247 (var (cl--loop-handle-accum nil 'nreverse)))
1248 (push `(progn
1249 (setq ,var
1250 ,(if (eq var cl--loop-accum-var)
1251 `(nconc
1252 (,(if (memq word '(nconc nconcing))
1253 #'nreverse #'reverse)
1254 ,what)
1255 ,var)
1256 `(,(if (memq word '(nconc nconcing))
1257 #'nconc #'append)
1258 ,var ,what))) t) cl--loop-body)))
1259
1260 ((memq word '(concat concating))
1261 (let ((what (pop cl--loop-args))
1262 (var (cl--loop-handle-accum "")))
1263 (push `(progn (cl-callf concat ,var ,what) t) cl--loop-body)))
1264
1265 ((memq word '(vconcat vconcating))
1266 (let ((what (pop cl--loop-args))
1267 (var (cl--loop-handle-accum [])))
1268 (push `(progn (cl-callf vconcat ,var ,what) t) cl--loop-body)))
1269
1270 ((memq word '(sum summing))
1271 (let ((what (pop cl--loop-args))
1272 (var (cl--loop-handle-accum 0)))
1273 (push `(progn (cl-incf ,var ,what) t) cl--loop-body)))
1274
1275 ((memq word '(count counting))
1276 (let ((what (pop cl--loop-args))
1277 (var (cl--loop-handle-accum 0)))
1278 (push `(progn (if ,what (cl-incf ,var)) t) cl--loop-body)))
1279
1280 ((memq word '(minimize minimizing maximize maximizing))
1281 (let* ((what (pop cl--loop-args))
1282 (temp (if (cl--simple-expr-p what) what (make-symbol "--cl-var--")))
1283 (var (cl--loop-handle-accum nil))
1284 (func (intern (substring (symbol-name word) 0 3)))
1285 (set `(setq ,var (if ,var (,func ,var ,temp) ,temp))))
1286 (push `(progn ,(if (eq temp what) set
1287 `(let ((,temp ,what)) ,set))
1288 t) cl--loop-body)))
1289
1290 ((eq word 'with)
1291 (let ((bindings nil))
1292 (while (progn (push (list (pop cl--loop-args)
1293 (and (eq (car cl--loop-args) '=) (cl-pop2 cl--loop-args)))
1294 bindings)
1295 (eq (car cl--loop-args) 'and))
1296 (pop cl--loop-args))
1297 (push (nreverse bindings) cl--loop-bindings)))
1298
1299 ((eq word 'while)
1300 (push (pop cl--loop-args) cl--loop-body))
1301
1302 ((eq word 'until)
1303 (push `(not ,(pop cl--loop-args)) cl--loop-body))
1304
1305 ((eq word 'always)
1306 (or cl--loop-finish-flag (setq cl--loop-finish-flag (make-symbol "--cl-flag--")))
1307 (push `(setq ,cl--loop-finish-flag ,(pop cl--loop-args)) cl--loop-body)
1308 (setq cl--loop-result t))
1309
1310 ((eq word 'never)
1311 (or cl--loop-finish-flag (setq cl--loop-finish-flag (make-symbol "--cl-flag--")))
1312 (push `(setq ,cl--loop-finish-flag (not ,(pop cl--loop-args)))
1313 cl--loop-body)
1314 (setq cl--loop-result t))
1315
1316 ((eq word 'thereis)
1317 (or cl--loop-finish-flag (setq cl--loop-finish-flag (make-symbol "--cl-flag--")))
1318 (or cl--loop-result-var (setq cl--loop-result-var (make-symbol "--cl-var--")))
1319 (push `(setq ,cl--loop-finish-flag
1320 (not (setq ,cl--loop-result-var ,(pop cl--loop-args))))
1321 cl--loop-body))
1322
1323 ((memq word '(if when unless))
1324 (let* ((cond (pop cl--loop-args))
1325 (then (let ((cl--loop-body nil))
1326 (cl-parse-loop-clause)
1327 (cl--loop-build-ands (nreverse cl--loop-body))))
1328 (else (let ((cl--loop-body nil))
1329 (if (eq (car cl--loop-args) 'else)
1330 (progn (pop cl--loop-args) (cl-parse-loop-clause)))
1331 (cl--loop-build-ands (nreverse cl--loop-body))))
1332 (simple (and (eq (car then) t) (eq (car else) t))))
1333 (if (eq (car cl--loop-args) 'end) (pop cl--loop-args))
1334 (if (eq word 'unless) (setq then (prog1 else (setq else then))))
1335 (let ((form (cons (if simple (cons 'progn (nth 1 then)) (nth 2 then))
1336 (if simple (nth 1 else) (list (nth 2 else))))))
1337 (if (cl--expr-contains form 'it)
1338 (let ((temp (make-symbol "--cl-var--")))
1339 (push (list temp) cl--loop-bindings)
1340 (setq form `(if (setq ,temp ,cond)
1341 ,@(cl-subst temp 'it form))))
1342 (setq form `(if ,cond ,@form)))
1343 (push (if simple `(progn ,form t) form) cl--loop-body))))
1344
1345 ((memq word '(do doing))
1346 (let ((body nil))
1347 (or (consp (car cl--loop-args)) (error "Syntax error on `do' clause"))
1348 (while (consp (car cl--loop-args)) (push (pop cl--loop-args) body))
1349 (push (cons 'progn (nreverse (cons t body))) cl--loop-body)))
1350
1351 ((eq word 'return)
1352 (or cl--loop-finish-flag (setq cl--loop-finish-flag (make-symbol "--cl-var--")))
1353 (or cl--loop-result-var (setq cl--loop-result-var (make-symbol "--cl-var--")))
1354 (push `(setq ,cl--loop-result-var ,(pop cl--loop-args)
1355 ,cl--loop-finish-flag nil) cl--loop-body))
1356
1357 (t
1358 (let ((handler (and (symbolp word) (get word 'cl--loop-handler))))
1359 (or handler (error "Expected a cl-loop keyword, found %s" word))
1360 (funcall handler))))
1361 (if (eq (car cl--loop-args) 'and)
1362 (progn (pop cl--loop-args) (cl-parse-loop-clause)))))
1363
1364 (defun cl--loop-let (specs body par) ; uses loop-*
1365 (let ((p specs) (temps nil) (new nil))
1366 (while (and p (or (symbolp (car-safe (car p))) (null (cl-cadar p))))
1367 (setq p (cdr p)))
1368 (and par p
1369 (progn
1370 (setq par nil p specs)
1371 (while p
1372 (or (macroexp-const-p (cl-cadar p))
1373 (let ((temp (make-symbol "--cl-var--")))
1374 (push (list temp (cl-cadar p)) temps)
1375 (setcar (cdar p) temp)))
1376 (setq p (cdr p)))))
1377 (while specs
1378 (if (and (consp (car specs)) (listp (caar specs)))
1379 (let* ((spec (caar specs)) (nspecs nil)
1380 (expr (cadr (pop specs)))
1381 (temp (cdr (or (assq spec cl--loop-destr-temps)
1382 (car (push (cons spec (or (last spec 0)
1383 (make-symbol "--cl-var--")))
1384 cl--loop-destr-temps))))))
1385 (push (list temp expr) new)
1386 (while (consp spec)
1387 (push (list (pop spec)
1388 (and expr (list (if spec 'pop 'car) temp)))
1389 nspecs))
1390 (setq specs (nconc (nreverse nspecs) specs)))
1391 (push (pop specs) new)))
1392 (if (eq body 'setq)
1393 (let ((set (cons (if par 'cl-psetq 'setq) (apply 'nconc (nreverse new)))))
1394 (if temps `(let* ,(nreverse temps) ,set) set))
1395 `(,(if par 'let 'let*)
1396 ,(nconc (nreverse temps) (nreverse new)) ,@body))))
1397
1398 (defun cl--loop-handle-accum (def &optional func) ; uses loop-*
1399 (if (eq (car cl--loop-args) 'into)
1400 (let ((var (cl-pop2 cl--loop-args)))
1401 (or (memq var cl--loop-accum-vars)
1402 (progn (push (list (list var def)) cl--loop-bindings)
1403 (push var cl--loop-accum-vars)))
1404 var)
1405 (or cl--loop-accum-var
1406 (progn
1407 (push (list (list (setq cl--loop-accum-var (make-symbol "--cl-var--")) def))
1408 cl--loop-bindings)
1409 (setq cl--loop-result (if func (list func cl--loop-accum-var)
1410 cl--loop-accum-var))
1411 cl--loop-accum-var))))
1412
1413 (defun cl--loop-build-ands (clauses)
1414 (let ((ands nil)
1415 (body nil))
1416 (while clauses
1417 (if (and (eq (car-safe (car clauses)) 'progn)
1418 (eq (car (last (car clauses))) t))
1419 (if (cdr clauses)
1420 (setq clauses (cons (nconc (butlast (car clauses))
1421 (if (eq (car-safe (cadr clauses))
1422 'progn)
1423 (cl-cdadr clauses)
1424 (list (cadr clauses))))
1425 (cddr clauses)))
1426 (setq body (cdr (butlast (pop clauses)))))
1427 (push (pop clauses) ands)))
1428 (setq ands (or (nreverse ands) (list t)))
1429 (list (if (cdr ands) (cons 'and ands) (car ands))
1430 body
1431 (let ((full (if body
1432 (append ands (list (cons 'progn (append body '(t)))))
1433 ands)))
1434 (if (cdr full) (cons 'and full) (car full))))))
1435
1436
1437 ;;; Other iteration control structures.
1438
1439 ;;;###autoload
1440 (defmacro cl-do (steps endtest &rest body)
1441 "The Common Lisp `cl-do' loop.
1442
1443 \(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)"
1444 (declare (indent 2)
1445 (debug
1446 ((&rest &or symbolp (symbolp &optional form form))
1447 (form body)
1448 cl-declarations body)))
1449 (cl-expand-do-loop steps endtest body nil))
1450
1451 ;;;###autoload
1452 (defmacro cl-do* (steps endtest &rest body)
1453 "The Common Lisp `cl-do*' loop.
1454
1455 \(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)"
1456 (declare (indent 2) (debug cl-do))
1457 (cl-expand-do-loop steps endtest body t))
1458
1459 (defun cl-expand-do-loop (steps endtest body star)
1460 `(cl-block nil
1461 (,(if star 'let* 'let)
1462 ,(mapcar (lambda (c) (if (consp c) (list (car c) (nth 1 c)) c))
1463 steps)
1464 (while (not ,(car endtest))
1465 ,@body
1466 ,@(let ((sets (mapcar (lambda (c)
1467 (and (consp c) (cdr (cdr c))
1468 (list (car c) (nth 2 c))))
1469 steps)))
1470 (setq sets (delq nil sets))
1471 (and sets
1472 (list (cons (if (or star (not (cdr sets)))
1473 'setq 'cl-psetq)
1474 (apply 'append sets))))))
1475 ,@(or (cdr endtest) '(nil)))))
1476
1477 ;;;###autoload
1478 (defmacro cl-dolist (spec &rest body)
1479 "Loop over a list.
1480 Evaluate BODY with VAR bound to each `car' from LIST, in turn.
1481 Then evaluate RESULT to get return value, default nil.
1482 An implicit nil block is established around the loop.
1483
1484 \(fn (VAR LIST [RESULT]) BODY...)"
1485 (declare (debug ((symbolp form &optional form) cl-declarations body))
1486 (indent 1))
1487 `(cl-block nil
1488 (,(if (eq 'cl-dolist (symbol-function 'dolist)) 'cl--dolist 'dolist)
1489 ,spec ,@body)))
1490
1491 ;;;###autoload
1492 (defmacro cl-dotimes (spec &rest body)
1493 "Loop a certain number of times.
1494 Evaluate BODY with VAR bound to successive integers from 0, inclusive,
1495 to COUNT, exclusive. Then evaluate RESULT to get return value, default
1496 nil.
1497
1498 \(fn (VAR COUNT [RESULT]) BODY...)"
1499 (declare (debug cl-dolist) (indent 1))
1500 `(cl-block nil
1501 (,(if (eq 'cl-dotimes (symbol-function 'dotimes)) 'cl--dotimes 'dotimes)
1502 ,spec ,@body)))
1503
1504 ;;;###autoload
1505 (defmacro cl-do-symbols (spec &rest body)
1506 "Loop over all symbols.
1507 Evaluate BODY with VAR bound to each interned symbol, or to each symbol
1508 from OBARRAY.
1509
1510 \(fn (VAR [OBARRAY [RESULT]]) BODY...)"
1511 (declare (indent 1)
1512 (debug ((symbolp &optional form form) cl-declarations body)))
1513 ;; Apparently this doesn't have an implicit block.
1514 `(cl-block nil
1515 (let (,(car spec))
1516 (mapatoms #'(lambda (,(car spec)) ,@body)
1517 ,@(and (cadr spec) (list (cadr spec))))
1518 ,(cl-caddr spec))))
1519
1520 ;;;###autoload
1521 (defmacro cl-do-all-symbols (spec &rest body)
1522 (declare (indent 1) (debug ((symbolp &optional form) cl-declarations body)))
1523 `(cl-do-symbols (,(car spec) nil ,(cadr spec)) ,@body))
1524
1525
1526 ;;; Assignments.
1527
1528 ;;;###autoload
1529 (defmacro cl-psetq (&rest args)
1530 "Set SYMs to the values VALs in parallel.
1531 This is like `setq', except that all VAL forms are evaluated (in order)
1532 before assigning any symbols SYM to the corresponding values.
1533
1534 \(fn SYM VAL SYM VAL ...)"
1535 (declare (debug setq))
1536 (cons 'cl-psetf args))
1537
1538
1539 ;;; Binding control structures.
1540
1541 ;;;###autoload
1542 (defmacro cl-progv (symbols values &rest body)
1543 "Bind SYMBOLS to VALUES dynamically in BODY.
1544 The forms SYMBOLS and VALUES are evaluated, and must evaluate to lists.
1545 Each symbol in the first list is bound to the corresponding value in the
1546 second list (or made unbound if VALUES is shorter than SYMBOLS); then the
1547 BODY forms are executed and their result is returned. This is much like
1548 a `let' form, except that the list of symbols can be computed at run-time."
1549 (declare (indent 2) (debug (form form body)))
1550 (let ((bodyfun (make-symbol "cl--progv-body"))
1551 (binds (make-symbol "binds"))
1552 (syms (make-symbol "syms"))
1553 (vals (make-symbol "vals")))
1554 `(progn
1555 (defvar ,bodyfun)
1556 (let* ((,syms ,symbols)
1557 (,vals ,values)
1558 (,bodyfun (lambda () ,@body))
1559 (,binds ()))
1560 (while ,syms
1561 (push (list (pop ,syms) (list 'quote (pop ,vals))) ,binds))
1562 (eval (list 'let ,binds '(funcall ,bodyfun)))))))
1563
1564 (defvar cl--labels-convert-cache nil)
1565
1566 (defun cl--labels-convert (f)
1567 "Special macro-expander to rename (function F) references in `cl-labels'."
1568 (cond
1569 ;; ¡¡Big Ugly Hack!! We can't use a compiler-macro because those are checked
1570 ;; *after* handling `function', but we want to stop macroexpansion from
1571 ;; being applied infinitely, so we use a cache to return the exact `form'
1572 ;; being expanded even though we don't receive it.
1573 ((eq f (car cl--labels-convert-cache)) (cdr cl--labels-convert-cache))
1574 (t
1575 (let ((found (assq f macroexpand-all-environment)))
1576 (if (and found (ignore-errors
1577 (eq (cadr (cl-caddr found)) 'cl-labels-args)))
1578 (cadr (cl-caddr (cl-cadddr found)))
1579 (let ((res `(function ,f)))
1580 (setq cl--labels-convert-cache (cons f res))
1581 res))))))
1582
1583 ;;;###autoload
1584 (defmacro cl-flet (bindings &rest body)
1585 "Make temporary function definitions.
1586 Like `cl-labels' but the definitions are not recursive.
1587
1588 \(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
1589 (declare (indent 1) (debug ((&rest (cl-defun)) cl-declarations body)))
1590 (let ((binds ()) (newenv macroexpand-all-environment))
1591 (dolist (binding bindings)
1592 (let ((var (make-symbol (format "--cl-%s--" (car binding)))))
1593 (push (list var `(cl-function (lambda . ,(cdr binding)))) binds)
1594 (push (cons (car binding)
1595 `(lambda (&rest cl-labels-args)
1596 (cl-list* 'funcall ',var
1597 cl-labels-args)))
1598 newenv)))
1599 `(let ,(nreverse binds)
1600 ,@(macroexp-unprogn
1601 (macroexpand-all
1602 `(progn ,@body)
1603 ;; Don't override lexical-let's macro-expander.
1604 (if (assq 'function newenv) newenv
1605 (cons (cons 'function #'cl--labels-convert) newenv)))))))
1606
1607 ;;;###autoload
1608 (defmacro cl-flet* (bindings &rest body)
1609 "Make temporary function definitions.
1610 Like `cl-flet' but the definitions can refer to previous ones.
1611
1612 \(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
1613 (declare (indent 1) (debug cl-flet))
1614 (cond
1615 ((null bindings) (macroexp-progn body))
1616 ((null (cdr bindings)) `(cl-flet ,bindings ,@body))
1617 (t `(cl-flet (,(pop bindings)) (cl-flet* ,bindings ,@body)))))
1618
1619 ;;;###autoload
1620 (defmacro cl-labels (bindings &rest body)
1621 "Make temporary function bindings.
1622 The bindings can be recursive and the scoping is lexical, but capturing them
1623 in closures will only work if `lexical-binding' is in use.
1624
1625 \(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
1626 (declare (indent 1) (debug cl-flet))
1627 (let ((binds ()) (newenv macroexpand-all-environment))
1628 (dolist (binding bindings)
1629 (let ((var (make-symbol (format "--cl-%s--" (car binding)))))
1630 (push (list var `(cl-function (lambda . ,(cdr binding)))) binds)
1631 (push (cons (car binding)
1632 `(lambda (&rest cl-labels-args)
1633 (cl-list* 'funcall ',var
1634 cl-labels-args)))
1635 newenv)))
1636 (macroexpand-all `(letrec ,(nreverse binds) ,@body)
1637 ;; Don't override lexical-let's macro-expander.
1638 (if (assq 'function newenv) newenv
1639 (cons (cons 'function #'cl--labels-convert) newenv)))))
1640
1641 ;; The following ought to have a better definition for use with newer
1642 ;; byte compilers.
1643 ;;;###autoload
1644 (defmacro cl-macrolet (bindings &rest body)
1645 "Make temporary macro definitions.
1646 This is like `cl-flet', but for macros instead of functions.
1647
1648 \(fn ((NAME ARGLIST BODY...) ...) FORM...)"
1649 (declare (indent 1)
1650 (debug
1651 ((&rest (&define name (&rest arg) cl-declarations-or-string
1652 def-body))
1653 cl-declarations body)))
1654 (if (cdr bindings)
1655 `(cl-macrolet (,(car bindings)) (cl-macrolet ,(cdr bindings) ,@body))
1656 (if (null bindings) (cons 'progn body)
1657 (let* ((name (caar bindings))
1658 (res (cl--transform-lambda (cdar bindings) name)))
1659 (eval (car res))
1660 (macroexpand-all (cons 'progn body)
1661 (cons (cons name `(lambda ,@(cdr res)))
1662 macroexpand-all-environment))))))
1663
1664 (defconst cl--old-macroexpand
1665 (if (and (boundp 'cl--old-macroexpand)
1666 (eq (symbol-function 'macroexpand)
1667 #'cl--sm-macroexpand))
1668 cl--old-macroexpand
1669 (symbol-function 'macroexpand)))
1670
1671 (defun cl--sm-macroexpand (cl-macro &optional cl-env)
1672 "Special macro expander used inside `cl-symbol-macrolet'.
1673 This function replaces `macroexpand' during macro expansion
1674 of `cl-symbol-macrolet', and does the same thing as `macroexpand'
1675 except that it additionally expands symbol macros."
1676 (let ((macroexpand-all-environment cl-env))
1677 (while
1678 (progn
1679 (setq cl-macro (funcall cl--old-macroexpand cl-macro cl-env))
1680 (cond
1681 ((symbolp cl-macro)
1682 ;; Perform symbol-macro expansion.
1683 (when (cdr (assq (symbol-name cl-macro) cl-env))
1684 (setq cl-macro (cadr (assq (symbol-name cl-macro) cl-env)))))
1685 ((eq 'setq (car-safe cl-macro))
1686 ;; Convert setq to setf if required by symbol-macro expansion.
1687 (let* ((args (mapcar (lambda (f) (cl--sm-macroexpand f cl-env))
1688 (cdr cl-macro)))
1689 (p args))
1690 (while (and p (symbolp (car p))) (setq p (cddr p)))
1691 (if p (setq cl-macro (cons 'setf args))
1692 (setq cl-macro (cons 'setq args))
1693 ;; Don't loop further.
1694 nil))))))
1695 cl-macro))
1696
1697 ;;;###autoload
1698 (defmacro cl-symbol-macrolet (bindings &rest body)
1699 "Make symbol macro definitions.
1700 Within the body FORMs, references to the variable NAME will be replaced
1701 by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...).
1702
1703 \(fn ((NAME EXPANSION) ...) FORM...)"
1704 (declare (indent 1) (debug ((&rest (symbol sexp)) cl-declarations body)))
1705 (cond
1706 ((cdr bindings)
1707 `(cl-symbol-macrolet (,(car bindings))
1708 (cl-symbol-macrolet ,(cdr bindings) ,@body)))
1709 ((null bindings) (macroexp-progn body))
1710 (t
1711 (let ((previous-macroexpand (symbol-function 'macroexpand)))
1712 (unwind-protect
1713 (progn
1714 (fset 'macroexpand #'cl--sm-macroexpand)
1715 ;; FIXME: For N bindings, this will traverse `body' N times!
1716 (macroexpand-all (cons 'progn body)
1717 (cons (list (symbol-name (caar bindings))
1718 (cl-cadar bindings))
1719 macroexpand-all-environment)))
1720 (fset 'macroexpand previous-macroexpand))))))
1721
1722 ;;; Multiple values.
1723
1724 ;;;###autoload
1725 (defmacro cl-multiple-value-bind (vars form &rest body)
1726 "Collect multiple return values.
1727 FORM must return a list; the BODY is then executed with the first N elements
1728 of this list bound (`let'-style) to each of the symbols SYM in turn. This
1729 is analogous to the Common Lisp `cl-multiple-value-bind' macro, using lists to
1730 simulate true multiple return values. For compatibility, (cl-values A B C) is
1731 a synonym for (list A B C).
1732
1733 \(fn (SYM...) FORM BODY)"
1734 (declare (indent 2) (debug ((&rest symbolp) form body)))
1735 (let ((temp (make-symbol "--cl-var--")) (n -1))
1736 `(let* ((,temp ,form)
1737 ,@(mapcar (lambda (v)
1738 (list v `(nth ,(setq n (1+ n)) ,temp)))
1739 vars))
1740 ,@body)))
1741
1742 ;;;###autoload
1743 (defmacro cl-multiple-value-setq (vars form)
1744 "Collect multiple return values.
1745 FORM must return a list; the first N elements of this list are stored in
1746 each of the symbols SYM in turn. This is analogous to the Common Lisp
1747 `cl-multiple-value-setq' macro, using lists to simulate true multiple return
1748 values. For compatibility, (cl-values A B C) is a synonym for (list A B C).
1749
1750 \(fn (SYM...) FORM)"
1751 (declare (indent 1) (debug ((&rest symbolp) form)))
1752 (cond ((null vars) `(progn ,form nil))
1753 ((null (cdr vars)) `(setq ,(car vars) (car ,form)))
1754 (t
1755 (let* ((temp (make-symbol "--cl-var--")) (n 0))
1756 `(let ((,temp ,form))
1757 (prog1 (setq ,(pop vars) (car ,temp))
1758 (setq ,@(apply #'nconc
1759 (mapcar (lambda (v)
1760 (list v `(nth ,(setq n (1+ n))
1761 ,temp)))
1762 vars)))))))))
1763
1764
1765 ;;; Declarations.
1766
1767 ;;;###autoload
1768 (defmacro cl-locally (&rest body)
1769 (declare (debug t))
1770 (cons 'progn body))
1771 ;;;###autoload
1772 (defmacro cl-the (_type form)
1773 (declare (indent 1) (debug (cl-type-spec form)))
1774 form)
1775
1776 (defvar cl-proclaim-history t) ; for future compilers
1777 (defvar cl-declare-stack t) ; for future compilers
1778
1779 (defun cl-do-proclaim (spec hist)
1780 (and hist (listp cl-proclaim-history) (push spec cl-proclaim-history))
1781 (cond ((eq (car-safe spec) 'special)
1782 (if (boundp 'byte-compile-bound-variables)
1783 (setq byte-compile-bound-variables
1784 (append (cdr spec) byte-compile-bound-variables))))
1785
1786 ((eq (car-safe spec) 'inline)
1787 (while (setq spec (cdr spec))
1788 (or (memq (get (car spec) 'byte-optimizer)
1789 '(nil byte-compile-inline-expand))
1790 (error "%s already has a byte-optimizer, can't make it inline"
1791 (car spec)))
1792 (put (car spec) 'byte-optimizer 'byte-compile-inline-expand)))
1793
1794 ((eq (car-safe spec) 'notinline)
1795 (while (setq spec (cdr spec))
1796 (if (eq (get (car spec) 'byte-optimizer)
1797 'byte-compile-inline-expand)
1798 (put (car spec) 'byte-optimizer nil))))
1799
1800 ((eq (car-safe spec) 'optimize)
1801 (let ((speed (assq (nth 1 (assq 'speed (cdr spec)))
1802 '((0 nil) (1 t) (2 t) (3 t))))
1803 (safety (assq (nth 1 (assq 'safety (cdr spec)))
1804 '((0 t) (1 t) (2 t) (3 nil)))))
1805 (if speed (setq cl-optimize-speed (car speed)
1806 byte-optimize (nth 1 speed)))
1807 (if safety (setq cl-optimize-safety (car safety)
1808 byte-compile-delete-errors (nth 1 safety)))))
1809
1810 ((and (eq (car-safe spec) 'warn) (boundp 'byte-compile-warnings))
1811 (while (setq spec (cdr spec))
1812 (if (consp (car spec))
1813 (if (eq (cl-cadar spec) 0)
1814 (byte-compile-disable-warning (caar spec))
1815 (byte-compile-enable-warning (caar spec)))))))
1816 nil)
1817
1818 ;;; Process any proclamations made before cl-macs was loaded.
1819 (defvar cl-proclaims-deferred)
1820 (let ((p (reverse cl-proclaims-deferred)))
1821 (while p (cl-do-proclaim (pop p) t))
1822 (setq cl-proclaims-deferred nil))
1823
1824 ;;;###autoload
1825 (defmacro cl-declare (&rest specs)
1826 "Declare SPECS about the current function while compiling.
1827 For instance
1828
1829 \(cl-declare (warn 0))
1830
1831 will turn off byte-compile warnings in the function.
1832 See Info node `(cl)Declarations' for details."
1833 (if (cl--compiling-file)
1834 (while specs
1835 (if (listp cl-declare-stack) (push (car specs) cl-declare-stack))
1836 (cl-do-proclaim (pop specs) nil)))
1837 nil)
1838
1839
1840
1841 ;;; The standard modify macros.
1842
1843 ;; `setf' is now part of core Elisp, defined in gv.el.
1844
1845 ;;;###autoload
1846 (defmacro cl-psetf (&rest args)
1847 "Set PLACEs to the values VALs in parallel.
1848 This is like `setf', except that all VAL forms are evaluated (in order)
1849 before assigning any PLACEs to the corresponding values.
1850
1851 \(fn PLACE VAL PLACE VAL ...)"
1852 (declare (debug setf))
1853 (let ((p args) (simple t) (vars nil))
1854 (while p
1855 (if (or (not (symbolp (car p))) (cl--expr-depends-p (nth 1 p) vars))
1856 (setq simple nil))
1857 (if (memq (car p) vars)
1858 (error "Destination duplicated in psetf: %s" (car p)))
1859 (push (pop p) vars)
1860 (or p (error "Odd number of arguments to cl-psetf"))
1861 (pop p))
1862 (if simple
1863 `(progn (setf ,@args) nil)
1864 (setq args (reverse args))
1865 (let ((expr `(setf ,(cadr args) ,(car args))))
1866 (while (setq args (cddr args))
1867 (setq expr `(setf ,(cadr args) (prog1 ,(car args) ,expr))))
1868 `(progn ,expr nil)))))
1869
1870 ;;;###autoload
1871 (defmacro cl-remf (place tag)
1872 "Remove TAG from property list PLACE.
1873 PLACE may be a symbol, or any generalized variable allowed by `setf'.
1874 The form returns true if TAG was found and removed, nil otherwise."
1875 (declare (debug (place form)))
1876 (gv-letplace (tval setter) place
1877 (macroexp-let2 macroexp-copyable-p ttag tag
1878 `(if (eq ,ttag (car ,tval))
1879 (progn ,(funcall setter `(cddr ,tval))
1880 t)
1881 (cl--do-remf ,tval ,ttag)))))
1882
1883 ;;;###autoload
1884 (defmacro cl-shiftf (place &rest args)
1885 "Shift left among PLACEs.
1886 Example: (cl-shiftf A B C) sets A to B, B to C, and returns the old A.
1887 Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
1888
1889 \(fn PLACE... VAL)"
1890 (declare (debug (&rest place)))
1891 (cond
1892 ((null args) place)
1893 ((symbolp place) `(prog1 ,place (setq ,place (cl-shiftf ,@args))))
1894 (t
1895 (gv-letplace (getter setter) place
1896 `(prog1 ,getter
1897 ,(funcall setter `(cl-shiftf ,@args)))))))
1898
1899 ;;;###autoload
1900 (defmacro cl-rotatef (&rest args)
1901 "Rotate left among PLACEs.
1902 Example: (cl-rotatef A B C) sets A to B, B to C, and C to A. It returns nil.
1903 Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
1904
1905 \(fn PLACE...)"
1906 (declare (debug (&rest place)))
1907 (if (not (memq nil (mapcar 'symbolp args)))
1908 (and (cdr args)
1909 (let ((sets nil)
1910 (first (car args)))
1911 (while (cdr args)
1912 (setq sets (nconc sets (list (pop args) (car args)))))
1913 `(cl-psetf ,@sets ,(car args) ,first)))
1914 (let* ((places (reverse args))
1915 (temp (make-symbol "--cl-rotatef--"))
1916 (form temp))
1917 (while (cdr places)
1918 (setq form
1919 (gv-letplace (getter setter) (pop places)
1920 `(prog1 ,getter ,(funcall setter form)))))
1921 (gv-letplace (getter setter) (car places)
1922 (macroexp-let* `((,temp ,getter))
1923 `(progn ,(funcall setter form) nil))))))
1924
1925 ;; FIXME: `letf' is unsatisfactory because it does not really "restore" the
1926 ;; previous state. If the getter/setter loses information, that info is
1927 ;; not recovered.
1928
1929 (defun cl--letf (bindings simplebinds binds body)
1930 ;; It's not quite clear what the semantics of cl-letf should be.
1931 ;; E.g. in (cl-letf ((PLACE1 VAL1) (PLACE2 VAL2)) BODY), while it's clear
1932 ;; that the actual assignments ("bindings") should only happen after
1933 ;; evaluating VAL1 and VAL2, it's not clear when the sub-expressions of
1934 ;; PLACE1 and PLACE2 should be evaluated. Should we have
1935 ;; PLACE1; VAL1; PLACE2; VAL2; bind1; bind2
1936 ;; or
1937 ;; VAL1; VAL2; PLACE1; PLACE2; bind1; bind2
1938 ;; or
1939 ;; VAL1; VAL2; PLACE1; bind1; PLACE2; bind2
1940 ;; Common-Lisp's `psetf' does the first, so we'll do the same.
1941 (if (null bindings)
1942 (if (and (null binds) (null simplebinds)) (macroexp-progn body)
1943 `(let* (,@(mapcar (lambda (x)
1944 (pcase-let ((`(,vold ,getter ,_setter ,_vnew) x))
1945 (list vold getter)))
1946 binds)
1947 ,@simplebinds)
1948 (unwind-protect
1949 ,(macroexp-progn
1950 (append
1951 (delq nil
1952 (mapcar (lambda (x)
1953 (pcase x
1954 ;; If there's no vnew, do nothing.
1955 (`(,_vold ,_getter ,setter ,vnew)
1956 (funcall setter vnew))))
1957 binds))
1958 body))
1959 ,@(mapcar (lambda (x)
1960 (pcase-let ((`(,vold ,_getter ,setter ,_vnew) x))
1961 (funcall setter vold)))
1962 binds))))
1963 (let ((binding (car bindings)))
1964 (gv-letplace (getter setter) (car binding)
1965 (macroexp-let2 nil vnew (cadr binding)
1966 (if (symbolp (car binding))
1967 ;; Special-case for simple variables.
1968 (cl--letf (cdr bindings)
1969 (cons `(,getter ,(if (cdr binding) vnew getter))
1970 simplebinds)
1971 binds body)
1972 (cl--letf (cdr bindings) simplebinds
1973 (cons `(,(make-symbol "old") ,getter ,setter
1974 ,@(if (cdr binding) (list vnew)))
1975 binds)
1976 body)))))))
1977
1978 ;;;###autoload
1979 (defmacro cl-letf (bindings &rest body)
1980 "Temporarily bind to PLACEs.
1981 This is the analogue of `let', but with generalized variables (in the
1982 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
1983 VALUE, then the BODY forms are executed. On exit, either normally or
1984 because of a `throw' or error, the PLACEs are set back to their original
1985 values. Note that this macro is *not* available in Common Lisp.
1986 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
1987 the PLACE is not modified before executing BODY.
1988
1989 \(fn ((PLACE VALUE) ...) BODY...)"
1990 (declare (indent 1) (debug ((&rest (gate gv-place &optional form)) body)))
1991 (if (and (not (cdr bindings)) (cdar bindings) (symbolp (caar bindings)))
1992 `(let ,bindings ,@body)
1993 (cl--letf bindings () () body)))
1994
1995 ;;;###autoload
1996 (defmacro cl-letf* (bindings &rest body)
1997 "Temporarily bind to PLACEs.
1998 Like `cl-letf' but where the bindings are performed one at a time,
1999 rather than all at the end (i.e. like `let*' rather than like `let')."
2000 (declare (indent 1) (debug cl-letf))
2001 (dolist (binding (reverse bindings))
2002 (setq body (list `(cl-letf (,binding) ,@body))))
2003 (macroexp-progn body))
2004
2005 ;;;###autoload
2006 (defmacro cl-callf (func place &rest args)
2007 "Set PLACE to (FUNC PLACE ARGS...).
2008 FUNC should be an unquoted function name. PLACE may be a symbol,
2009 or any generalized variable allowed by `setf'."
2010 (declare (indent 2) (debug (cl-function place &rest form)))
2011 (gv-letplace (getter setter) place
2012 (let* ((rargs (cons getter args)))
2013 (funcall setter
2014 (if (symbolp func) (cons func rargs)
2015 `(funcall #',func ,@rargs))))))
2016
2017 ;;;###autoload
2018 (defmacro cl-callf2 (func arg1 place &rest args)
2019 "Set PLACE to (FUNC ARG1 PLACE ARGS...).
2020 Like `cl-callf', but PLACE is the second argument of FUNC, not the first.
2021
2022 \(fn FUNC ARG1 PLACE ARGS...)"
2023 (declare (indent 3) (debug (cl-function form place &rest form)))
2024 (if (and (cl--safe-expr-p arg1) (cl--simple-expr-p place) (symbolp func))
2025 `(setf ,place (,func ,arg1 ,place ,@args))
2026 (macroexp-let2 nil a1 arg1
2027 (gv-letplace (getter setter) place
2028 (let* ((rargs (cl-list* a1 getter args)))
2029 (funcall setter
2030 (if (symbolp func) (cons func rargs)
2031 `(funcall #',func ,@rargs))))))))
2032
2033 ;;; Structures.
2034
2035 ;;;###autoload
2036 (defmacro cl-defstruct (struct &rest descs)
2037 "Define a struct type.
2038 This macro defines a new data type called NAME that stores data
2039 in SLOTs. It defines a `make-NAME' constructor, a `copy-NAME'
2040 copier, a `NAME-p' predicate, and slot accessors named `NAME-SLOT'.
2041 You can use the accessors to set the corresponding slots, via `setf'.
2042
2043 NAME may instead take the form (NAME OPTIONS...), where each
2044 OPTION is either a single keyword or (KEYWORD VALUE).
2045 See Info node `(cl)Structures' for a list of valid keywords.
2046
2047 Each SLOT may instead take the form (SLOT SLOT-OPTS...), where
2048 SLOT-OPTS are keyword-value pairs for that slot. Currently, only
2049 one keyword is supported, `:read-only'. If this has a non-nil
2050 value, that slot cannot be set via `setf'.
2051
2052 \(fn NAME SLOTS...)"
2053 (declare (doc-string 2)
2054 (debug
2055 (&define ;Makes top-level form not be wrapped.
2056 [&or symbolp
2057 (gate
2058 symbolp &rest
2059 (&or [":conc-name" symbolp]
2060 [":constructor" symbolp &optional cl-lambda-list]
2061 [":copier" symbolp]
2062 [":predicate" symbolp]
2063 [":include" symbolp &rest sexp] ;; Not finished.
2064 ;; The following are not supported.
2065 ;; [":print-function" ...]
2066 ;; [":type" ...]
2067 ;; [":initial-offset" ...]
2068 ))]
2069 [&optional stringp]
2070 ;; All the above is for the following def-form.
2071 &rest &or symbolp (symbolp def-form
2072 &optional ":read-only" sexp))))
2073 (let* ((name (if (consp struct) (car struct) struct))
2074 (opts (cdr-safe struct))
2075 (slots nil)
2076 (defaults nil)
2077 (conc-name (concat (symbol-name name) "-"))
2078 (constructor (intern (format "make-%s" name)))
2079 (constrs nil)
2080 (copier (intern (format "copy-%s" name)))
2081 (predicate (intern (format "%s-p" name)))
2082 (print-func nil) (print-auto nil)
2083 (safety (if (cl--compiling-file) cl-optimize-safety 3))
2084 (include nil)
2085 (tag (intern (format "cl-struct-%s" name)))
2086 (tag-symbol (intern (format "cl-struct-%s-tags" name)))
2087 (include-descs nil)
2088 (side-eff nil)
2089 (type nil)
2090 (named nil)
2091 (forms nil)
2092 pred-form pred-check)
2093 (if (stringp (car descs))
2094 (push `(put ',name 'structure-documentation
2095 ,(pop descs)) forms))
2096 (setq descs (cons '(cl-tag-slot)
2097 (mapcar (function (lambda (x) (if (consp x) x (list x))))
2098 descs)))
2099 (while opts
2100 (let ((opt (if (consp (car opts)) (caar opts) (car opts)))
2101 (args (cdr-safe (pop opts))))
2102 (cond ((eq opt :conc-name)
2103 (if args
2104 (setq conc-name (if (car args)
2105 (symbol-name (car args)) ""))))
2106 ((eq opt :constructor)
2107 (if (cdr args)
2108 (progn
2109 ;; If this defines a constructor of the same name as
2110 ;; the default one, don't define the default.
2111 (if (eq (car args) constructor)
2112 (setq constructor nil))
2113 (push args constrs))
2114 (if args (setq constructor (car args)))))
2115 ((eq opt :copier)
2116 (if args (setq copier (car args))))
2117 ((eq opt :predicate)
2118 (if args (setq predicate (car args))))
2119 ((eq opt :include)
2120 (setq include (car args)
2121 include-descs (mapcar (function
2122 (lambda (x)
2123 (if (consp x) x (list x))))
2124 (cdr args))))
2125 ((eq opt :print-function)
2126 (setq print-func (car args)))
2127 ((eq opt :type)
2128 (setq type (car args)))
2129 ((eq opt :named)
2130 (setq named t))
2131 ((eq opt :initial-offset)
2132 (setq descs (nconc (make-list (car args) '(cl-skip-slot))
2133 descs)))
2134 (t
2135 (error "Slot option %s unrecognized" opt)))))
2136 (if print-func
2137 (setq print-func
2138 `(progn (funcall #',print-func cl-x cl-s cl-n) t))
2139 (or type (and include (not (get include 'cl-struct-print)))
2140 (setq print-auto t
2141 print-func (and (or (not (or include type)) (null print-func))
2142 `(progn
2143 (princ ,(format "#S(%s" name) cl-s))))))
2144 (if include
2145 (let ((inc-type (get include 'cl-struct-type))
2146 (old-descs (get include 'cl-struct-slots)))
2147 (or inc-type (error "%s is not a struct name" include))
2148 (and type (not (eq (car inc-type) type))
2149 (error ":type disagrees with :include for %s" name))
2150 (while include-descs
2151 (setcar (memq (or (assq (caar include-descs) old-descs)
2152 (error "No slot %s in included struct %s"
2153 (caar include-descs) include))
2154 old-descs)
2155 (pop include-descs)))
2156 (setq descs (append old-descs (delq (assq 'cl-tag-slot descs) descs))
2157 type (car inc-type)
2158 named (assq 'cl-tag-slot descs))
2159 (if (cadr inc-type) (setq tag name named t))
2160 (let ((incl include))
2161 (while incl
2162 (push `(cl-pushnew ',tag
2163 ,(intern (format "cl-struct-%s-tags" incl)))
2164 forms)
2165 (setq incl (get incl 'cl-struct-include)))))
2166 (if type
2167 (progn
2168 (or (memq type '(vector list))
2169 (error "Invalid :type specifier: %s" type))
2170 (if named (setq tag name)))
2171 (setq type 'vector named 'true)))
2172 (or named (setq descs (delq (assq 'cl-tag-slot descs) descs)))
2173 (push `(defvar ,tag-symbol) forms)
2174 (setq pred-form (and named
2175 (let ((pos (- (length descs)
2176 (length (memq (assq 'cl-tag-slot descs)
2177 descs)))))
2178 (if (eq type 'vector)
2179 `(and (vectorp cl-x)
2180 (>= (length cl-x) ,(length descs))
2181 (memq (aref cl-x ,pos) ,tag-symbol))
2182 (if (= pos 0)
2183 `(memq (car-safe cl-x) ,tag-symbol)
2184 `(and (consp cl-x)
2185 (memq (nth ,pos cl-x) ,tag-symbol))))))
2186 pred-check (and pred-form (> safety 0)
2187 (if (and (eq (cl-caadr pred-form) 'vectorp)
2188 (= safety 1))
2189 (cons 'and (cl-cdddr pred-form)) pred-form)))
2190 (let ((pos 0) (descp descs))
2191 (while descp
2192 (let* ((desc (pop descp))
2193 (slot (car desc)))
2194 (if (memq slot '(cl-tag-slot cl-skip-slot))
2195 (progn
2196 (push nil slots)
2197 (push (and (eq slot 'cl-tag-slot) `',tag)
2198 defaults))
2199 (if (assq slot descp)
2200 (error "Duplicate slots named %s in %s" slot name))
2201 (let ((accessor (intern (format "%s%s" conc-name slot))))
2202 (push slot slots)
2203 (push (nth 1 desc) defaults)
2204 (push `(cl-defsubst ,accessor (cl-x)
2205 ,@(and pred-check
2206 (list `(or ,pred-check
2207 (error "%s accessing a non-%s"
2208 ',accessor ',name))))
2209 ,(if (eq type 'vector) `(aref cl-x ,pos)
2210 (if (= pos 0) '(car cl-x)
2211 `(nth ,pos cl-x)))) forms)
2212 (push (cons accessor t) side-eff)
2213 ;; Don't bother defining a setf-expander, since gv-get can use
2214 ;; the compiler macro to get the same result.
2215 ;;(push `(gv-define-setter ,accessor (cl-val cl-x)
2216 ;; ,(if (cadr (memq :read-only (cddr desc)))
2217 ;; `(progn (ignore cl-x cl-val)
2218 ;; (error "%s is a read-only slot"
2219 ;; ',accessor))
2220 ;; ;; If cl is loaded only for compilation,
2221 ;; ;; the call to cl--struct-setf-expander would
2222 ;; ;; cause a warning because it may not be
2223 ;; ;; defined at run time. Suppress that warning.
2224 ;; `(progn
2225 ;; (declare-function
2226 ;; cl--struct-setf-expander "cl-macs"
2227 ;; (x name accessor pred-form pos))
2228 ;; (cl--struct-setf-expander
2229 ;; cl-val cl-x ',name ',accessor
2230 ;; ,(and pred-check `',pred-check)
2231 ;; ,pos))))
2232 ;; forms)
2233 (if print-auto
2234 (nconc print-func
2235 (list `(princ ,(format " %s" slot) cl-s)
2236 `(prin1 (,accessor cl-x) cl-s)))))))
2237 (setq pos (1+ pos))))
2238 (setq slots (nreverse slots)
2239 defaults (nreverse defaults))
2240 (and predicate pred-form
2241 (progn (push `(cl-defsubst ,predicate (cl-x)
2242 ,(if (eq (car pred-form) 'and)
2243 (append pred-form '(t))
2244 `(and ,pred-form t))) forms)
2245 (push (cons predicate 'error-free) side-eff)))
2246 (and copier
2247 (progn (push `(defun ,copier (x) (copy-sequence x)) forms)
2248 (push (cons copier t) side-eff)))
2249 (if constructor
2250 (push (list constructor
2251 (cons '&key (delq nil (copy-sequence slots))))
2252 constrs))
2253 (while constrs
2254 (let* ((name (caar constrs))
2255 (args (cadr (pop constrs)))
2256 (anames (cl--arglist-args args))
2257 (make (cl-mapcar (function (lambda (s d) (if (memq s anames) s d)))
2258 slots defaults)))
2259 (push `(cl-defsubst ,name
2260 (&cl-defs '(nil ,@descs) ,@args)
2261 (,type ,@make)) forms)
2262 (if (cl--safe-expr-p `(progn ,@(mapcar #'cl-second descs)))
2263 (push (cons name t) side-eff))))
2264 (if print-auto (nconc print-func (list '(princ ")" cl-s) t)))
2265 ;; Don't bother adding to cl-custom-print-functions since it's not used
2266 ;; by anything anyway!
2267 ;;(if print-func
2268 ;; (push `(if (boundp 'cl-custom-print-functions)
2269 ;; (push
2270 ;; ;; The auto-generated function does not pay attention to
2271 ;; ;; the depth argument cl-n.
2272 ;; (lambda (cl-x cl-s ,(if print-auto '_cl-n 'cl-n))
2273 ;; (and ,pred-form ,print-func))
2274 ;; cl-custom-print-functions))
2275 ;; forms))
2276 (push `(setq ,tag-symbol (list ',tag)) forms)
2277 (push `(cl-eval-when (compile load eval)
2278 (put ',name 'cl-struct-slots ',descs)
2279 (put ',name 'cl-struct-type ',(list type (eq named t)))
2280 (put ',name 'cl-struct-include ',include)
2281 (put ',name 'cl-struct-print ,print-auto)
2282 ,@(mapcar (lambda (x)
2283 `(put ',(car x) 'side-effect-free ',(cdr x)))
2284 side-eff))
2285 forms)
2286 `(progn ,@(nreverse (cons `',name forms)))))
2287
2288 ;;; Types and assertions.
2289
2290 ;;;###autoload
2291 (defmacro cl-deftype (name arglist &rest body)
2292 "Define NAME as a new data type.
2293 The type name can then be used in `cl-typecase', `cl-check-type', etc."
2294 (declare (debug cl-defmacro) (doc-string 3))
2295 `(cl-eval-when (compile load eval)
2296 (put ',name 'cl-deftype-handler
2297 (cl-function (lambda (&cl-defs '('*) ,@arglist) ,@body)))))
2298
2299 (defun cl--make-type-test (val type)
2300 (if (symbolp type)
2301 (cond ((get type 'cl-deftype-handler)
2302 (cl--make-type-test val (funcall (get type 'cl-deftype-handler))))
2303 ((memq type '(nil t)) type)
2304 ((eq type 'null) `(null ,val))
2305 ((eq type 'atom) `(atom ,val))
2306 ((eq type 'float) `(cl-floatp-safe ,val))
2307 ((eq type 'real) `(numberp ,val))
2308 ((eq type 'fixnum) `(integerp ,val))
2309 ;; FIXME: Should `character' accept things like ?\C-\M-a ? --Stef
2310 ((memq type '(character string-char)) `(characterp ,val))
2311 (t
2312 (let* ((name (symbol-name type))
2313 (namep (intern (concat name "p"))))
2314 (if (fboundp namep) (list namep val)
2315 (list (intern (concat name "-p")) val)))))
2316 (cond ((get (car type) 'cl-deftype-handler)
2317 (cl--make-type-test val (apply (get (car type) 'cl-deftype-handler)
2318 (cdr type))))
2319 ((memq (car type) '(integer float real number))
2320 (delq t `(and ,(cl--make-type-test val (car type))
2321 ,(if (memq (cadr type) '(* nil)) t
2322 (if (consp (cadr type)) `(> ,val ,(cl-caadr type))
2323 `(>= ,val ,(cadr type))))
2324 ,(if (memq (cl-caddr type) '(* nil)) t
2325 (if (consp (cl-caddr type)) `(< ,val ,(cl-caaddr type))
2326 `(<= ,val ,(cl-caddr type)))))))
2327 ((memq (car type) '(and or not))
2328 (cons (car type)
2329 (mapcar (function (lambda (x) (cl--make-type-test val x)))
2330 (cdr type))))
2331 ((memq (car type) '(member cl-member))
2332 `(and (cl-member ,val ',(cdr type)) t))
2333 ((eq (car type) 'satisfies) (list (cadr type) val))
2334 (t (error "Bad type spec: %s" type)))))
2335
2336 (defvar cl--object)
2337 ;;;###autoload
2338 (defun cl-typep (object type) ; See compiler macro below.
2339 "Check that OBJECT is of type TYPE.
2340 TYPE is a Common Lisp-style type specifier."
2341 (let ((cl--object object)) ;; Yuck!!
2342 (eval (cl--make-type-test 'cl--object type))))
2343
2344 ;;;###autoload
2345 (defmacro cl-check-type (form type &optional string)
2346 "Verify that FORM is of type TYPE; signal an error if not.
2347 STRING is an optional description of the desired type."
2348 (declare (debug (place cl-type-spec &optional stringp)))
2349 (and (or (not (cl--compiling-file))
2350 (< cl-optimize-speed 3) (= cl-optimize-safety 3))
2351 (let* ((temp (if (cl--simple-expr-p form 3)
2352 form (make-symbol "--cl-var--")))
2353 (body `(or ,(cl--make-type-test temp type)
2354 (signal 'wrong-type-argument
2355 (list ,(or string `',type)
2356 ,temp ',form)))))
2357 (if (eq temp form) `(progn ,body nil)
2358 `(let ((,temp ,form)) ,body nil)))))
2359
2360 ;;;###autoload
2361 (defmacro cl-assert (form &optional show-args string &rest args)
2362 ;; FIXME: This is actually not compatible with Common-Lisp's `assert'.
2363 "Verify that FORM returns non-nil; signal an error if not.
2364 Second arg SHOW-ARGS means to include arguments of FORM in message.
2365 Other args STRING and ARGS... are arguments to be passed to `error'.
2366 They are not evaluated unless the assertion fails. If STRING is
2367 omitted, a default message listing FORM itself is used."
2368 (declare (debug (form &rest form)))
2369 (and (or (not (cl--compiling-file))
2370 (< cl-optimize-speed 3) (= cl-optimize-safety 3))
2371 (let ((sargs (and show-args
2372 (delq nil (mapcar (lambda (x)
2373 (unless (macroexp-const-p x)
2374 x))
2375 (cdr form))))))
2376 `(progn
2377 (or ,form
2378 ,(if string
2379 `(error ,string ,@sargs ,@args)
2380 `(signal 'cl-assertion-failed
2381 (list ',form ,@sargs))))
2382 nil))))
2383
2384 ;;; Compiler macros.
2385
2386 ;;;###autoload
2387 (defmacro cl-define-compiler-macro (func args &rest body)
2388 "Define a compiler-only macro.
2389 This is like `defmacro', but macro expansion occurs only if the call to
2390 FUNC is compiled (i.e., not interpreted). Compiler macros should be used
2391 for optimizing the way calls to FUNC are compiled; the form returned by
2392 BODY should do the same thing as a call to the normal function called
2393 FUNC, though possibly more efficiently. Note that, like regular macros,
2394 compiler macros are expanded repeatedly until no further expansions are
2395 possible. Unlike regular macros, BODY can decide to \"punt\" and leave the
2396 original function call alone by declaring an initial `&whole foo' parameter
2397 and then returning foo."
2398 (declare (debug cl-defmacro))
2399 (let ((p args) (res nil))
2400 (while (consp p) (push (pop p) res))
2401 (setq args (nconc (nreverse res) (and p (list '&rest p)))))
2402 `(cl-eval-when (compile load eval)
2403 (put ',func 'compiler-macro
2404 (cl-function (lambda ,(if (memq '&whole args) (delq '&whole args)
2405 (cons '_cl-whole-arg args))
2406 ,@body)))
2407 ;; This is so that describe-function can locate
2408 ;; the macro definition.
2409 (let ((file ,(or buffer-file-name
2410 (and (boundp 'byte-compile-current-file)
2411 (stringp byte-compile-current-file)
2412 byte-compile-current-file))))
2413 (if file (put ',func 'compiler-macro-file
2414 (purecopy (file-name-nondirectory file)))))))
2415
2416 ;;;###autoload
2417 (defun cl-compiler-macroexpand (form)
2418 (while
2419 (let ((func (car-safe form)) (handler nil))
2420 (while (and (symbolp func)
2421 (not (setq handler (get func 'compiler-macro)))
2422 (fboundp func)
2423 (or (not (eq (car-safe (symbol-function func)) 'autoload))
2424 (load (nth 1 (symbol-function func)))))
2425 (setq func (symbol-function func)))
2426 (and handler
2427 (not (eq form (setq form (apply handler form (cdr form))))))))
2428 form)
2429
2430 ;; Optimize away unused block-wrappers.
2431
2432 (defvar cl--active-block-names nil)
2433
2434 (cl-define-compiler-macro cl--block-wrapper (cl-form)
2435 (let* ((cl-entry (cons (nth 1 (nth 1 cl-form)) nil))
2436 (cl--active-block-names (cons cl-entry cl--active-block-names))
2437 (cl-body (macroexpand-all ;Performs compiler-macro expansions.
2438 (cons 'progn (cddr cl-form))
2439 macroexpand-all-environment)))
2440 ;; FIXME: To avoid re-applying macroexpand-all, we'd like to be able
2441 ;; to indicate that this return value is already fully expanded.
2442 (if (cdr cl-entry)
2443 `(catch ,(nth 1 cl-form) ,@(cdr cl-body))
2444 cl-body)))
2445
2446 (cl-define-compiler-macro cl--block-throw (cl-tag cl-value)
2447 (let ((cl-found (assq (nth 1 cl-tag) cl--active-block-names)))
2448 (if cl-found (setcdr cl-found t)))
2449 `(throw ,cl-tag ,cl-value))
2450
2451 ;;;###autoload
2452 (defmacro cl-defsubst (name args &rest body)
2453 "Define NAME as a function.
2454 Like `defun', except the function is automatically declared `inline',
2455 ARGLIST allows full Common Lisp conventions, and BODY is implicitly
2456 surrounded by (cl-block NAME ...).
2457
2458 \(fn NAME ARGLIST [DOCSTRING] BODY...)"
2459 (declare (debug cl-defun) (indent 2))
2460 (let* ((argns (cl--arglist-args args)) (p argns)
2461 (pbody (cons 'progn body))
2462 (unsafe (not (cl--safe-expr-p pbody))))
2463 (while (and p (eq (cl--expr-contains args (car p)) 1)) (pop p))
2464 `(progn
2465 ,(if p nil ; give up if defaults refer to earlier args
2466 `(cl-define-compiler-macro ,name
2467 ,(if (memq '&key args)
2468 `(&whole cl-whole &cl-quote ,@args)
2469 (cons '&cl-quote args))
2470 (cl--defsubst-expand
2471 ',argns '(cl-block ,name ,@body)
2472 ;; We used to pass `simple' as
2473 ;; (not (or unsafe (cl-expr-access-order pbody argns)))
2474 ;; But this is much too simplistic since it
2475 ;; does not pay attention to the argvs (and
2476 ;; cl-expr-access-order itself is also too naive).
2477 nil
2478 ,(and (memq '&key args) 'cl-whole) ,unsafe ,@argns)))
2479 (cl-defun ,name ,args ,@body))))
2480
2481 (defun cl--defsubst-expand (argns body simple whole unsafe &rest argvs)
2482 (if (and whole (not (cl--safe-expr-p (cons 'progn argvs)))) whole
2483 (if (cl--simple-exprs-p argvs) (setq simple t))
2484 (let* ((substs ())
2485 (lets (delq nil
2486 (cl-mapcar (lambda (argn argv)
2487 (if (or simple (macroexp-const-p argv))
2488 (progn (push (cons argn argv) substs)
2489 (and unsafe (list argn argv)))
2490 (list argn argv)))
2491 argns argvs))))
2492 ;; FIXME: `sublis/subst' will happily substitute the symbol
2493 ;; `argn' in places where it's not used as a reference
2494 ;; to a variable.
2495 ;; FIXME: `sublis/subst' will happily copy `argv' to a different
2496 ;; scope, leading to name capture.
2497 (setq body (cond ((null substs) body)
2498 ((null (cdr substs))
2499 (cl-subst (cdar substs) (caar substs) body))
2500 (t (cl-sublis substs body))))
2501 (if lets `(let ,lets ,body) body))))
2502
2503
2504 ;; Compile-time optimizations for some functions defined in this package.
2505
2506 (defun cl--compiler-macro-member (form a list &rest keys)
2507 (let ((test (and (= (length keys) 2) (eq (car keys) :test)
2508 (cl--const-expr-val (nth 1 keys)))))
2509 (cond ((eq test 'eq) `(memq ,a ,list))
2510 ((eq test 'equal) `(member ,a ,list))
2511 ((or (null keys) (eq test 'eql)) `(memql ,a ,list))
2512 (t form))))
2513
2514 (defun cl--compiler-macro-assoc (form a list &rest keys)
2515 (let ((test (and (= (length keys) 2) (eq (car keys) :test)
2516 (cl--const-expr-val (nth 1 keys)))))
2517 (cond ((eq test 'eq) `(assq ,a ,list))
2518 ((eq test 'equal) `(assoc ,a ,list))
2519 ((and (macroexp-const-p a) (or (null keys) (eq test 'eql)))
2520 (if (cl-floatp-safe (cl--const-expr-val a))
2521 `(assoc ,a ,list) `(assq ,a ,list)))
2522 (t form))))
2523
2524 ;;;###autoload
2525 (defun cl--compiler-macro-adjoin (form a list &rest keys)
2526 (if (and (cl--simple-expr-p a) (cl--simple-expr-p list)
2527 (not (memq :key keys)))
2528 `(if (cl-member ,a ,list ,@keys) ,list (cons ,a ,list))
2529 form))
2530
2531 ;;;###autoload
2532 (defun cl--compiler-macro-list* (_form arg &rest others)
2533 (let* ((args (reverse (cons arg others)))
2534 (form (car args)))
2535 (while (setq args (cdr args))
2536 (setq form `(cons ,(car args) ,form)))
2537 form))
2538
2539 (defun cl--compiler-macro-get (_form sym prop &optional def)
2540 (if def
2541 `(cl-getf (symbol-plist ,sym) ,prop ,def)
2542 `(get ,sym ,prop)))
2543
2544 (cl-define-compiler-macro cl-typep (&whole form val type)
2545 (if (macroexp-const-p type)
2546 (macroexp-let2 macroexp-copyable-p temp val
2547 (cl--make-type-test temp (cl--const-expr-val type)))
2548 form))
2549
2550 ;;;###autoload
2551 (defun cl--compiler-macro-cXXr (form x)
2552 (let* ((head (car form))
2553 (n (symbol-name (car form)))
2554 (i (- (length n) 2)))
2555 (if (not (string-match "c[ad]+r\\'" n))
2556 (if (and (fboundp head) (symbolp (symbol-function head)))
2557 (cl--compiler-macro-cXXr (cons (symbol-function head) (cdr form))
2558 x)
2559 (error "Compiler macro for cXXr applied to non-cXXr form"))
2560 (while (> i (match-beginning 0))
2561 (setq x (list (if (eq (aref n i) ?a) 'car 'cdr) x))
2562 (setq i (1- i)))
2563 x)))
2564
2565 (dolist (y '(cl-first cl-second cl-third cl-fourth
2566 cl-fifth cl-sixth cl-seventh
2567 cl-eighth cl-ninth cl-tenth
2568 cl-rest cl-endp cl-plusp cl-minusp
2569 cl-caaar cl-caadr cl-cadar
2570 cl-caddr cl-cdaar cl-cdadr
2571 cl-cddar cl-cdddr cl-caaaar
2572 cl-caaadr cl-caadar cl-caaddr
2573 cl-cadaar cl-cadadr cl-caddar
2574 cl-cadddr cl-cdaaar cl-cdaadr
2575 cl-cdadar cl-cdaddr cl-cddaar
2576 cl-cddadr cl-cdddar cl-cddddr))
2577 (put y 'side-effect-free t))
2578
2579 ;;; Things that are inline.
2580 (cl-proclaim '(inline cl-floatp-safe cl-acons cl-map cl-concatenate cl-notany
2581 cl-notevery cl--set-elt cl-revappend cl-nreconc gethash))
2582
2583 ;;; Things that are side-effect-free.
2584 (mapc (lambda (x) (put x 'side-effect-free t))
2585 '(cl-oddp cl-evenp cl-signum last butlast cl-ldiff cl-pairlis cl-gcd cl-lcm
2586 cl-isqrt cl-floor cl-ceiling cl-truncate cl-round cl-mod cl-rem cl-subseq
2587 cl-list-length cl-get cl-getf))
2588
2589 ;;; Things that are side-effect-and-error-free.
2590 (mapc (lambda (x) (put x 'side-effect-free 'error-free))
2591 '(eql cl-floatp-safe cl-list* cl-subst cl-acons cl-equalp cl-random-state-p
2592 copy-tree cl-sublis))
2593
2594
2595 (run-hooks 'cl-macs-load-hook)
2596
2597 ;; Local variables:
2598 ;; byte-compile-dynamic: t
2599 ;; byte-compile-warnings: (not cl-functions)
2600 ;; generated-autoload-file: "cl-loaddefs.el"
2601 ;; End:
2602
2603 (provide 'cl-macs)
2604
2605 ;;; cl-macs.el ends here