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