Add weak-vector-length, weak-vector-ref, weak-vector-set!
[bpt/guile.git] / doc / ref / api-macros.texi
CommitLineData
e4955559
AW
1@c -*-texinfo-*-
2@c This is part of the GNU Guile Reference Manual.
2d6a3144
MW
3@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2009, 2010, 2011,
4@c 2012, 2013, 2014 Free Software Foundation, Inc.
e4955559
AW
5@c See the file guile.texi for copying conditions.
6
e4955559
AW
7@node Macros
8@section Macros
9
10At its best, programming in Lisp is an iterative process of building up a
11language appropriate to the problem at hand, and then solving the problem in
12that language. Defining new procedures is part of that, but Lisp also allows
13the user to extend its syntax, with its famous @dfn{macros}.
14
15@cindex macros
16@cindex transformation
17Macros are syntactic extensions which cause the expression that they appear in
18to be transformed in some way @emph{before} being evaluated. In expressions that
19are intended for macro transformation, the identifier that names the relevant
20macro must appear as the first element, like this:
21
22@lisp
23(@var{macro-name} @var{macro-args} @dots{})
24@end lisp
25
26@cindex macro expansion
cf14f301
LC
27@cindex domain-specific language
28@cindex embedded domain-specific language
29@cindex DSL
30@cindex EDSL
e4955559
AW
31Macro expansion is a separate phase of evaluation, run before code is
32interpreted or compiled. A macro is a program that runs on programs, translating
cf14f301
LC
33an embedded language into core Scheme@footnote{These days such embedded
34languages are often referred to as @dfn{embedded domain-specific
35languages}, or EDSLs.}.
e4955559
AW
36
37@menu
38* Defining Macros:: Binding macros, globally and locally.
39* Syntax Rules:: Pattern-driven macros.
40* Syntax Case:: Procedural, hygienic macros.
9b0975f1 41* Syntax Transformer Helpers:: Helpers for use in procedural macros.
e4955559
AW
42* Defmacros:: Lisp-style macros.
43* Identifier Macros:: Identifier macros.
9b0975f1 44* Syntax Parameters:: Syntax Parameters.
e4955559
AW
45* Eval When:: Affecting the expand-time environment.
46* Internal Macros:: Macros as first-class values.
47@end menu
48
49@node Defining Macros
50@subsection Defining Macros
51
52A macro is a binding between a keyword and a syntax transformer. Since it's
53difficult to discuss @code{define-syntax} without discussing the format of
54transformers, consider the following example macro definition:
55
56@example
57(define-syntax when
58 (syntax-rules ()
59 ((when condition exp ...)
60 (if condition
61 (begin exp ...)))))
62
63(when #t
64 (display "hey ho\n")
65 (display "let's go\n"))
66@print{} hey ho
67@print{} let's go
68@end example
69
70In this example, the @code{when} binding is bound with @code{define-syntax}.
71Syntax transformers are discussed in more depth in @ref{Syntax Rules} and
72@ref{Syntax Case}.
73
74@deffn {Syntax} define-syntax keyword transformer
75Bind @var{keyword} to the syntax transformer obtained by evaluating
76@var{transformer}.
77
78After a macro has been defined, further instances of @var{keyword} in Scheme
79source code will invoke the syntax transformer defined by @var{transformer}.
80@end deffn
81
82One can also establish local syntactic bindings with @code{let-syntax}.
83
df0a1002
BT
84@deffn {Syntax} let-syntax ((keyword transformer) @dots{}) exp1 exp2 @dots{}
85Bind each @var{keyword} to its corresponding @var{transformer} while
86expanding @var{exp1} @var{exp2} @enddots{}.
e4955559
AW
87
88A @code{let-syntax} binding only exists at expansion-time.
89
90@example
91(let-syntax ((unless
92 (syntax-rules ()
93 ((unless condition exp ...)
94 (if (not condition)
95 (begin exp ...))))))
96 (unless #t
97 (primitive-exit 1))
98 "rock rock rock")
99@result{} "rock rock rock"
100@end example
101@end deffn
102
103A @code{define-syntax} form is valid anywhere a definition may appear: at the
104top-level, or locally. Just as a local @code{define} expands out to an instance
105of @code{letrec}, a local @code{define-syntax} expands out to
106@code{letrec-syntax}.
107
df0a1002
BT
108@deffn {Syntax} letrec-syntax ((keyword transformer) @dots{}) exp1 exp2 @dots{}
109Bind each @var{keyword} to its corresponding @var{transformer} while
110expanding @var{exp1} @var{exp2} @enddots{}.
e4955559
AW
111
112In the spirit of @code{letrec} versus @code{let}, an expansion produced by
113@var{transformer} may reference a @var{keyword} bound by the
114same @var{letrec-syntax}.
115
116@example
117(letrec-syntax ((my-or
118 (syntax-rules ()
119 ((my-or)
120 #t)
121 ((my-or exp)
122 exp)
123 ((my-or exp rest ...)
124 (let ((t exp))
e006d87b
MW
125 (if t
126 t
e4955559
AW
127 (my-or rest ...)))))))
128 (my-or #f "rockaway beach"))
129@result{} "rockaway beach"
130@end example
131@end deffn
132
133@node Syntax Rules
134@subsection Syntax-rules Macros
135
136@code{syntax-rules} macros are simple, pattern-driven syntax transformers, with
137a beauty worthy of Scheme.
138
1624e149 139@deffn {Syntax} syntax-rules literals (pattern template) @dots{}
1fc8dcc7
AW
140Create a syntax transformer that will rewrite an expression using the rules
141embodied in the @var{pattern} and @var{template} clauses.
142@end deffn
143
e4955559
AW
144A @code{syntax-rules} macro consists of three parts: the literals (if any), the
145patterns, and as many templates as there are patterns.
146
147When the syntax expander sees the invocation of a @code{syntax-rules} macro, it
148matches the expression against the patterns, in order, and rewrites the
149expression using the template from the first matching pattern. If no pattern
150matches, a syntax error is signalled.
e4955559
AW
151
152@subsubsection Patterns
153
154We have already seen some examples of patterns in the previous section:
155@code{(unless condition exp ...)}, @code{(my-or exp)}, and so on. A pattern is
156structured like the expression that it is to match. It can have nested structure
157as well, like @code{(let ((var val) ...) exp exp* ...)}. Broadly speaking,
158patterns are made of lists, improper lists, vectors, identifiers, and datums.
159Users can match a sequence of patterns using the ellipsis (@code{...}).
160
161Identifiers in a pattern are called @dfn{literals} if they are present in the
162@code{syntax-rules} literals list, and @dfn{pattern variables} otherwise. When
163building up the macro output, the expander replaces instances of a pattern
164variable in the template with the matched subexpression.
165
166@example
167(define-syntax kwote
168 (syntax-rules ()
169 ((kwote exp)
170 (quote exp))))
171(kwote (foo . bar))
172@result{} (foo . bar)
173@end example
174
175An improper list of patterns matches as rest arguments do:
176
177@example
178(define-syntax let1
179 (syntax-rules ()
180 ((_ (var val) . exps)
181 (let ((var val)) . exps))))
182@end example
183
184However this definition of @code{let1} probably isn't what you want, as the tail
185pattern @var{exps} will match non-lists, like @code{(let1 (foo 'bar) . baz)}. So
186often instead of using improper lists as patterns, ellipsized patterns are
187better. Instances of a pattern variable in the template must be followed by an
188ellipsis.
189
190@example
191(define-syntax let1
192 (syntax-rules ()
193 ((_ (var val) exp ...)
194 (let ((var val)) exp ...))))
195@end example
196
197This @code{let1} probably still doesn't do what we want, because the body
198matches sequences of zero expressions, like @code{(let1 (foo 'bar))}. In this
199case we need to assert we have at least one body expression. A common idiom for
200this is to name the ellipsized pattern variable with an asterisk:
201
202@example
203(define-syntax let1
204 (syntax-rules ()
205 ((_ (var val) exp exp* ...)
206 (let ((var val)) exp exp* ...))))
207@end example
208
209A vector of patterns matches a vector whose contents match the patterns,
210including ellipsizing and tail patterns.
211
212@example
213(define-syntax letv
214 (syntax-rules ()
215 ((_ #((var val) ...) exp exp* ...)
216 (let ((var val) ...) exp exp* ...))))
217(letv #((foo 'bar)) foo)
912f5f34 218@result{} bar
e4955559
AW
219@end example
220
221Literals are used to match specific datums in an expression, like the use of
222@code{=>} and @code{else} in @code{cond} expressions.
223
224@example
225(define-syntax cond1
226 (syntax-rules (=> else)
227 ((cond1 test => fun)
228 (let ((exp test))
229 (if exp (fun exp) #f)))
230 ((cond1 test exp exp* ...)
231 (if test (begin exp exp* ...)))
232 ((cond1 else exp exp* ...)
233 (begin exp exp* ...))))
234
235(define (square x) (* x x))
236(cond1 10 => square)
237@result{} 100
238(let ((=> #t))
239 (cond1 10 => square))
240@result{} #<procedure square (x)>
241@end example
242
243A literal matches an input expression if the input expression is an identifier
244with the same name as the literal, and both are unbound@footnote{Language
245lawyers probably see the need here for use of @code{literal-identifier=?} rather
246than @code{free-identifier=?}, and would probably be correct. Patches
247accepted.}.
248
249If a pattern is not a list, vector, or an identifier, it matches as a literal,
250with @code{equal?}.
251
252@example
253(define-syntax define-matcher-macro
254 (syntax-rules ()
255 ((_ name lit)
256 (define-syntax name
257 (syntax-rules ()
258 ((_ lit) #t)
259 ((_ else) #f))))))
260
261(define-matcher-macro is-literal-foo? "foo")
262
263(is-literal-foo? "foo")
264@result{} #t
265(is-literal-foo? "bar")
266@result{} #f
267(let ((foo "foo"))
268 (is-literal-foo? foo))
269@result{} #f
270@end example
271
272The last example indicates that matching happens at expansion-time, not
273at run-time.
274
275Syntax-rules macros are always used as @code{(@var{macro} . @var{args})}, and
276the @var{macro} will always be a symbol. Correspondingly, a @code{syntax-rules}
277pattern must be a list (proper or improper), and the first pattern in that list
278must be an identifier. Incidentally it can be any identifier -- it doesn't have
279to actually be the name of the macro. Thus the following three are equivalent:
280
281@example
282(define-syntax when
283 (syntax-rules ()
284 ((when c e ...)
285 (if c (begin e ...)))))
286
287(define-syntax when
288 (syntax-rules ()
289 ((_ c e ...)
290 (if c (begin e ...)))))
291
292(define-syntax when
293 (syntax-rules ()
294 ((something-else-entirely c e ...)
295 (if c (begin e ...)))))
296@end example
297
298For clarity, use one of the first two variants. Also note that since the pattern
299variable will always match the macro itself (e.g., @code{cond1}), it is actually
300left unbound in the template.
301
302@subsubsection Hygiene
303
304@code{syntax-rules} macros have a magical property: they preserve referential
305transparency. When you read a macro definition, any free bindings in that macro
306are resolved relative to the macro definition; and when you read a macro
307instantiation, all free bindings in that expression are resolved relative to the
308expression.
309
310This property is sometimes known as @dfn{hygiene}, and it does aid in code
311cleanliness. In your macro definitions, you can feel free to introduce temporary
ecb87335 312variables, without worrying about inadvertently introducing bindings into the
e4955559
AW
313macro expansion.
314
315Consider the definition of @code{my-or} from the previous section:
316
317@example
318(define-syntax my-or
319 (syntax-rules ()
320 ((my-or)
321 #t)
322 ((my-or exp)
323 exp)
324 ((my-or exp rest ...)
325 (let ((t exp))
e006d87b
MW
326 (if t
327 t
e4955559
AW
328 (my-or rest ...))))))
329@end example
330
331A naive expansion of @code{(let ((t #t)) (my-or #f t))} would yield:
332
333@example
334(let ((t #t))
335 (let ((t #f))
336 (if t t t)))
337@result{} #f
338@end example
339
340@noindent
341Which clearly is not what we want. Somehow the @code{t} in the definition is
342distinct from the @code{t} at the site of use; and it is indeed this distinction
343that is maintained by the syntax expander, when expanding hygienic macros.
344
345This discussion is mostly relevant in the context of traditional Lisp macros
346(@pxref{Defmacros}), which do not preserve referential transparency. Hygiene
347adds to the expressive power of Scheme.
348
cd4171d0
AW
349@subsubsection Shorthands
350
351One often ends up writing simple one-clause @code{syntax-rules} macros.
352There is a convenient shorthand for this idiom, in the form of
353@code{define-syntax-rule}.
354
355@deffn {Syntax} define-syntax-rule (keyword . pattern) [docstring] template
356Define @var{keyword} as a new @code{syntax-rules} macro with one clause.
357@end deffn
358
359Cast into this form, our @code{when} example is significantly shorter:
360
361@example
362(define-syntax-rule (when c e ...)
363 (if c (begin e ...)))
364@end example
365
0e181633
MW
366@subsubsection Reporting Syntax Errors in Macros
367
368@deffn {Syntax} syntax-error message [arg ...]
369Report an error at macro-expansion time. @var{message} must be a string
370literal, and the optional @var{arg} operands can be arbitrary expressions
371providing additional information.
372@end deffn
373
374@code{syntax-error} is intended to be used within @code{syntax-rules}
375templates. For example:
376
377@example
378(define-syntax simple-let
379 (syntax-rules ()
380 ((_ (head ... ((x . y) val) . tail)
381 body1 body2 ...)
382 (syntax-error
383 "expected an identifier but got"
384 (x . y)))
385 ((_ ((name val) ...) body1 body2 ...)
386 ((lambda (name ...) body1 body2 ...)
387 val ...))))
388@end example
389
1624e149
MW
390@subsubsection Specifying a Custom Ellipsis Identifier
391
392When writing macros that generate macro definitions, it is convenient to
393use a different ellipsis identifier at each level. Guile allows the
394desired ellipsis identifier to be specified as the first operand to
2d6a3144 395@code{syntax-rules}, as specified by SRFI-46 and R7RS. For example:
1624e149
MW
396
397@example
398(define-syntax define-quotation-macros
399 (syntax-rules ()
400 ((_ (macro-name head-symbol) ...)
401 (begin (define-syntax macro-name
402 (syntax-rules ::: ()
403 ((_ x :::)
404 (quote (head-symbol x :::)))))
405 ...))))
406(define-quotation-macros (quote-a a) (quote-b b) (quote-c c))
407(quote-a 1 2 3) @result{} (a 1 2 3)
408@end example
409
e4955559
AW
410@subsubsection Further Information
411
412For a formal definition of @code{syntax-rules} and its pattern language, see
413@xref{Macros, , Macros, r5rs, Revised(5) Report on the Algorithmic Language
414Scheme}.
415
416@code{syntax-rules} macros are simple and clean, but do they have limitations.
417They do not lend themselves to expressive error messages: patterns either match
418or they don't. Their ability to generate code is limited to template-driven
419expansion; often one needs to define a number of helper macros to get real work
420done. Sometimes one wants to introduce a binding into the lexical context of the
421generated code; this is impossible with @code{syntax-rules}. Relatedly, they
422cannot programmatically generate identifiers.
423
424The solution to all of these problems is to use @code{syntax-case} if you need
425its features. But if for some reason you're stuck with @code{syntax-rules}, you
426might enjoy Joe Marshall's
427@uref{http://sites.google.com/site/evalapply/eccentric.txt,@code{syntax-rules}
428Primer for the Merely Eccentric}.
429
430@node Syntax Case
431@subsection Support for the @code{syntax-case} System
432
1fc8dcc7
AW
433@code{syntax-case} macros are procedural syntax transformers, with a power
434worthy of Scheme.
435
1624e149 436@deffn {Syntax} syntax-case syntax literals (pattern [guard] exp) @dots{}
1fc8dcc7
AW
437Match the syntax object @var{syntax} against the given patterns, in order. If a
438@var{pattern} matches, return the result of evaluating the associated @var{exp}.
439@end deffn
440
441Compare the following definitions of @code{when}:
442
443@example
444(define-syntax when
445 (syntax-rules ()
446 ((_ test e e* ...)
447 (if test (begin e e* ...)))))
448
449(define-syntax when
450 (lambda (x)
451 (syntax-case x ()
452 ((_ test e e* ...)
453 #'(if test (begin e e* ...))))))
454@end example
455
456Clearly, the @code{syntax-case} definition is similar to its @code{syntax-rules}
457counterpart, and equally clearly there are some differences. The
458@code{syntax-case} definition is wrapped in a @code{lambda}, a function of one
459argument; that argument is passed to the @code{syntax-case} invocation; and the
460``return value'' of the macro has a @code{#'} prefix.
461
462All of these differences stem from the fact that @code{syntax-case} does not
463define a syntax transformer itself -- instead, @code{syntax-case} expressions
464provide a way to destructure a @dfn{syntax object}, and to rebuild syntax
465objects as output.
466
467So the @code{lambda} wrapper is simply a leaky implementation detail, that
468syntax transformers are just functions that transform syntax to syntax. This
469should not be surprising, given that we have already described macros as
470``programs that write programs''. @code{syntax-case} is simply a way to take
471apart and put together program text, and to be a valid syntax transformer it
472needs to be wrapped in a procedure.
473
474Unlike traditional Lisp macros (@pxref{Defmacros}), @code{syntax-case} macros
475transform syntax objects, not raw Scheme forms. Recall the naive expansion of
476@code{my-or} given in the previous section:
477
478@example
479(let ((t #t))
480 (my-or #f t))
481;; naive expansion:
482(let ((t #t))
483 (let ((t #f))
484 (if t t t)))
485@end example
486
487Raw Scheme forms simply don't have enough information to distinguish the first
488two @code{t} instances in @code{(if t t t)} from the third @code{t}. So instead
489of representing identifiers as symbols, the syntax expander represents
490identifiers as annotated syntax objects, attaching such information to those
491syntax objects as is needed to maintain referential transparency.
492
493@deffn {Syntax} syntax form
494Create a syntax object wrapping @var{form} within the current lexical context.
495@end deffn
496
497Syntax objects are typically created internally to the process of expansion, but
498it is possible to create them outside of syntax expansion:
499
500@example
501(syntax (foo bar baz))
502@result{} #<some representation of that syntax>
503@end example
504
505@noindent
506However it is more common, and useful, to create syntax objects when building
507output from a @code{syntax-case} expression.
508
509@example
510(define-syntax add1
511 (lambda (x)
512 (syntax-case x ()
513 ((_ exp)
514 (syntax (+ exp 1))))))
515@end example
516
517It is not strictly necessary for a @code{syntax-case} expression to return a
518syntax object, because @code{syntax-case} expressions can be used in helper
519functions, or otherwise used outside of syntax expansion itself. However a
7545ddd4 520syntax transformer procedure must return a syntax object, so most uses of
1fc8dcc7
AW
521@code{syntax-case} do end up returning syntax objects.
522
523Here in this case, the form that built the return value was @code{(syntax (+ exp
5241))}. The interesting thing about this is that within a @code{syntax}
7545ddd4 525expression, any appearance of a pattern variable is substituted into the
1fc8dcc7
AW
526resulting syntax object, carrying with it all relevant metadata from the source
527expression, such as lexical identity and source location.
528
529Indeed, a pattern variable may only be referenced from inside a @code{syntax}
530form. The syntax expander would raise an error when defining @code{add1} if it
531found @var{exp} referenced outside a @code{syntax} form.
532
533Since @code{syntax} appears frequently in macro-heavy code, it has a special
534reader macro: @code{#'}. @code{#'foo} is transformed by the reader into
ecb87335 535@code{(syntax foo)}, just as @code{'foo} is transformed into @code{(quote foo)}.
1fc8dcc7
AW
536
537The pattern language used by @code{syntax-case} is conveniently the same
538language used by @code{syntax-rules}. Given this, Guile actually defines
539@code{syntax-rules} in terms of @code{syntax-case}:
540
541@example
542(define-syntax syntax-rules
543 (lambda (x)
544 (syntax-case x ()
545 ((_ (k ...) ((keyword . pattern) template) ...)
546 #'(lambda (x)
547 (syntax-case x (k ...)
548 ((dummy . pattern) #'template)
549 ...))))))
550@end example
551
552And that's that.
553
554@subsubsection Why @code{syntax-case}?
555
556The examples we have shown thus far could just as well have been expressed with
557@code{syntax-rules}, and have just shown that @code{syntax-case} is more
558verbose, which is true. But there is a difference: @code{syntax-case} creates
559@emph{procedural} macros, giving the full power of Scheme to the macro expander.
560This has many practical applications.
561
562A common desire is to be able to match a form only if it is an identifier. This
563is impossible with @code{syntax-rules}, given the datum matching forms. But with
564@code{syntax-case} it is easy:
565
566@deffn {Scheme Procedure} identifier? syntax-object
a4b4fbbd
JE
567Returns @code{#t} if @var{syntax-object} is an identifier, or @code{#f}
568otherwise.
1fc8dcc7
AW
569@end deffn
570
571@example
7545ddd4 572;; relying on previous add1 definition
1fc8dcc7
AW
573(define-syntax add1!
574 (lambda (x)
575 (syntax-case x ()
576 ((_ var) (identifier? #'var)
577 #'(set! var (add1 var))))))
578
579(define foo 0)
580(add1! foo)
581foo @result{} 1
582(add1! "not-an-identifier") @result{} error
583@end example
584
585With @code{syntax-rules}, the error for @code{(add1! "not-an-identifier")} would
586be something like ``invalid @code{set!}''. With @code{syntax-case}, it will say
587something like ``invalid @code{add1!}'', because we attach the @dfn{guard
588clause} to the pattern: @code{(identifier? #'var)}. This becomes more important
589with more complicated macros. It is necessary to use @code{identifier?}, because
590to the expander, an identifier is more than a bare symbol.
591
592Note that even in the guard clause, we reference the @var{var} pattern variable
593within a @code{syntax} form, via @code{#'var}.
594
595Another common desire is to introduce bindings into the lexical context of the
596output expression. One example would be in the so-called ``anaphoric macros'',
597like @code{aif}. Anaphoric macros bind some expression to a well-known
598identifier, often @code{it}, within their bodies. For example, in @code{(aif
599(foo) (bar it))}, @code{it} would be bound to the result of @code{(foo)}.
600
601To begin with, we should mention a solution that doesn't work:
602
603@example
604;; doesn't work
605(define-syntax aif
606 (lambda (x)
607 (syntax-case x ()
608 ((_ test then else)
609 #'(let ((it test))
610 (if it then else))))))
611@end example
612
613The reason that this doesn't work is that, by default, the expander will
614preserve referential transparency; the @var{then} and @var{else} expressions
615won't have access to the binding of @code{it}.
616
617But they can, if we explicitly introduce a binding via @code{datum->syntax}.
618
619@deffn {Scheme Procedure} datum->syntax for-syntax datum
620Create a syntax object that wraps @var{datum}, within the lexical context
621corresponding to the syntax object @var{for-syntax}.
622@end deffn
623
624For completeness, we should mention that it is possible to strip the metadata
625from a syntax object, returning a raw Scheme datum:
626
627@deffn {Scheme Procedure} syntax->datum syntax-object
628Strip the metadata from @var{syntax-object}, returning its contents as a raw
629Scheme datum.
630@end deffn
631
632In this case we want to introduce @code{it} in the context of the whole
633expression, so we can create a syntax object as @code{(datum->syntax x 'it)},
634where @code{x} is the whole expression, as passed to the transformer procedure.
635
636Here's another solution that doesn't work:
637
638@example
639;; doesn't work either
640(define-syntax aif
641 (lambda (x)
642 (syntax-case x ()
643 ((_ test then else)
644 (let ((it (datum->syntax x 'it)))
645 #'(let ((it test))
646 (if it then else)))))))
647@end example
648
09cb3ae2
NL
649The reason that this one doesn't work is that there are really two
650environments at work here -- the environment of pattern variables, as
651bound by @code{syntax-case}, and the environment of lexical variables,
652as bound by normal Scheme. The outer let form establishes a binding in
653the environment of lexical variables, but the inner let form is inside a
654syntax form, where only pattern variables will be substituted. Here we
655need to introduce a piece of the lexical environment into the pattern
656variable environment, and we can do so using @code{syntax-case} itself:
1fc8dcc7
AW
657
658@example
659;; works, but is obtuse
660(define-syntax aif
661 (lambda (x)
662 (syntax-case x ()
663 ((_ test then else)
664 ;; invoking syntax-case on the generated
665 ;; syntax object to expose it to `syntax'
666 (syntax-case (datum->syntax x 'it) ()
667 (it
668 #'(let ((it test))
669 (if it then else))))))))
670
671(aif (getuid) (display it) (display "none")) (newline)
672@print{} 500
673@end example
674
675However there are easier ways to write this. @code{with-syntax} is often
676convenient:
677
1624e149 678@deffn {Syntax} with-syntax ((pat val) @dots{}) exp @dots{}
1fc8dcc7 679Bind patterns @var{pat} from their corresponding values @var{val}, within the
1624e149 680lexical context of @var{exp} @enddots{}.
1fc8dcc7
AW
681
682@example
683;; better
684(define-syntax aif
685 (lambda (x)
686 (syntax-case x ()
687 ((_ test then else)
688 (with-syntax ((it (datum->syntax x 'it)))
689 #'(let ((it test))
690 (if it then else)))))))
691@end example
692@end deffn
693
694As you might imagine, @code{with-syntax} is defined in terms of
695@code{syntax-case}. But even that might be off-putting to you if you are an old
696Lisp macro hacker, used to building macro output with @code{quasiquote}. The
697issue is that @code{with-syntax} creates a separation between the point of
698definition of a value and its point of substitution.
699
700@pindex quasisyntax
701@pindex unsyntax
702@pindex unsyntax-splicing
703So for cases in which a @code{quasiquote} style makes more sense,
704@code{syntax-case} also defines @code{quasisyntax}, and the related
705@code{unsyntax} and @code{unsyntax-splicing}, abbreviated by the reader as
706@code{#`}, @code{#,}, and @code{#,@@}, respectively.
707
708For example, to define a macro that inserts a compile-time timestamp into a
709source file, one may write:
710
711@example
712(define-syntax display-compile-timestamp
713 (lambda (x)
714 (syntax-case x ()
715 ((_)
716 #`(begin
717 (display "The compile timestamp was: ")
718 (display #,(current-time))
719 (newline))))))
720@end example
721
9b0975f1
AW
722Readers interested in further information on @code{syntax-case} macros should
723see R. Kent Dybvig's excellent @cite{The Scheme Programming Language}, either
724edition 3 or 4, in the chapter on syntax. Dybvig was the primary author of the
725@code{syntax-case} system. The book itself is available online at
726@uref{http://scheme.com/tspl4/}.
727
1624e149
MW
728@subsubsection Custom Ellipsis Identifiers for syntax-case Macros
729
730When writing procedural macros that generate macro definitions, it is
731convenient to use a different ellipsis identifier at each level. Guile
732supports this for procedural macros using the @code{with-ellipsis}
733special form:
734
735@deffn {Syntax} with-ellipsis ellipsis body @dots{}
736@var{ellipsis} must be an identifier. Evaluate @var{body} in a special
737lexical environment such that all macro patterns and templates within
738@var{body} will use @var{ellipsis} as the ellipsis identifier instead of
739the usual three dots (@code{...}).
740@end deffn
741
742For example:
743
744@example
745(define-syntax define-quotation-macros
746 (lambda (x)
747 (syntax-case x ()
748 ((_ (macro-name head-symbol) ...)
749 #'(begin (define-syntax macro-name
750 (lambda (x)
751 (with-ellipsis :::
752 (syntax-case x ()
753 ((_ x :::)
754 #'(quote (head-symbol x :::)))))))
755 ...)))))
756(define-quotation-macros (quote-a a) (quote-b b) (quote-c c))
757(quote-a 1 2 3) @result{} (a 1 2 3)
758@end example
759
760Note that @code{with-ellipsis} does not affect the ellipsis identifier
761of the generated code, unless @code{with-ellipsis} is included around
762the generated code.
763
9b0975f1
AW
764@node Syntax Transformer Helpers
765@subsection Syntax Transformer Helpers
766
767As noted in the previous section, Guile's syntax expander operates on
768syntax objects. Procedural macros consume and produce syntax objects.
769This section describes some of the auxiliary helpers that procedural
770macros can use to compare, generate, and query objects of this data
771type.
1fc8dcc7
AW
772
773@deffn {Scheme Procedure} bound-identifier=? a b
a4b4fbbd
JE
774Return @code{#t} if the syntax objects @var{a} and @var{b} refer to the
775same lexically-bound identifier, or @code{#f} otherwise.
1fc8dcc7
AW
776@end deffn
777
778@deffn {Scheme Procedure} free-identifier=? a b
a4b4fbbd
JE
779Return @code{#t} if the syntax objects @var{a} and @var{b} refer to the
780same free identifier, or @code{#f} otherwise.
1fc8dcc7
AW
781@end deffn
782
783@deffn {Scheme Procedure} generate-temporaries ls
784Return a list of temporary identifiers as long as @var{ls} is long.
785@end deffn
786
9b0975f1
AW
787@deffn {Scheme Procedure} syntax-source x
788Return the source properties that correspond to the syntax object
789@var{x}. @xref{Source Properties}, for more information.
790@end deffn
791
68fcf711
AW
792Guile also offers some more experimental interfaces in a separate
793module. As was the case with the Large Hadron Collider, it is unclear
794to our senior macrologists whether adding these interfaces will result
795in awesomeness or in the destruction of Guile via the creation of a
796singularity. We will preserve their functionality through the 2.0
797series, but we reserve the right to modify them in a future stable
798series, to a more than usual degree.
799
800@example
801(use-modules (system syntax))
802@end example
803
1ace4fbf
AW
804@deffn {Scheme Procedure} syntax-module id
805Return the name of the module whose source contains the identifier
806@var{id}.
807@end deffn
808
9b0975f1
AW
809@deffn {Scheme Procedure} syntax-local-binding id
810Resolve the identifer @var{id}, a syntax object, within the current
811lexical environment, and return two values, the binding type and a
812binding value. The binding type is a symbol, which may be one of the
813following:
814
815@table @code
816@item lexical
817A lexically-bound variable. The value is a unique token (in the sense
818of @code{eq?}) identifying this binding.
819@item macro
820A syntax transformer, either local or global. The value is the
821transformer procedure.
822@item pattern-variable
1624e149
MW
823A pattern variable, bound via @code{syntax-case}. The value is an
824opaque object, internal to the expander.
825@item ellipsis
826An internal binding, bound via @code{with-ellipsis}. The value is the
827(anti-marked) local ellipsis identifier.
9b0975f1
AW
828@item displaced-lexical
829A lexical variable that has gone out of scope. This can happen if a
830badly-written procedural macro saves a syntax object, then attempts to
831introduce it in a context in which it is unbound. The value is
832@code{#f}.
833@item global
834A global binding. The value is a pair, whose head is the symbol, and
835whose tail is the name of the module in which to resolve the symbol.
836@item other
837Some other binding, like @code{lambda} or other core bindings. The
838value is @code{#f}.
839@end table
840
841This is a very low-level procedure, with limited uses. One case in
842which it is useful is to build abstractions that associate auxiliary
843information with macros:
844
845@example
846(define aux-property (make-object-property))
847(define-syntax-rule (with-aux aux value)
848 (let ((trans value))
849 (set! (aux-property trans) aux)
3d51e57c 850 trans))
9b0975f1
AW
851(define-syntax retrieve-aux
852 (lambda (x)
853 (syntax-case x ()
854 ((x id)
855 (call-with-values (lambda () (syntax-local-binding #'id))
856 (lambda (type val)
857 (with-syntax ((aux (datum->syntax #'here
858 (and (eq? type 'macro)
859 (aux-property val)))))
860 #''aux)))))))
861(define-syntax foo
862 (with-aux 'bar
863 (syntax-rules () ((_) 'foo))))
864(foo)
865@result{} foo
866(retrieve-aux foo)
867@result{} bar
868@end example
869
870@code{syntax-local-binding} must be called within the dynamic extent of
871a syntax transformer; to call it otherwise will signal an error.
872@end deffn
1fc8dcc7 873
3d51e57c
AW
874@deffn {Scheme Procedure} syntax-locally-bound-identifiers id
875Return a list of identifiers that were visible lexically when the
876identifier @var{id} was created, in order from outermost to innermost.
877
878This procedure is intended to be used in specialized procedural macros,
879to provide a macro with the set of bound identifiers that the macro can
880reference.
881
882As a technical implementation detail, the identifiers returned by
883@code{syntax-locally-bound-identifiers} will be anti-marked, like the
884syntax object that is given as input to a macro. This is to signal to
885the macro expander that these bindings were present in the original
886source, and do not need to be hygienically renamed, as would be the case
887with other introduced identifiers. See the discussion of hygiene in
888section 12.1 of the R6RS, for more information on marks.
889
890@example
891(define (local-lexicals id)
892 (filter (lambda (x)
893 (eq? (syntax-local-binding x) 'lexical))
894 (syntax-locally-bound-identifiers id)))
895(define-syntax lexicals
896 (lambda (x)
897 (syntax-case x ()
898 ((lexicals) #'(lexicals lexicals))
899 ((lexicals scope)
900 (with-syntax (((id ...) (local-lexicals #'scope)))
901 #'(list (cons 'id id) ...))))))
902
903(let* ((x 10) (x 20)) (lexicals))
904@result{} ((x . 10) (x . 20))
905@end example
906@end deffn
907
908
e4955559
AW
909@node Defmacros
910@subsection Lisp-style Macro Definitions
911
1fc8dcc7
AW
912The traditional way to define macros in Lisp is very similar to procedure
913definitions. The key differences are that the macro definition body should
914return a list that describes the transformed expression, and that the definition
915is marked as a macro definition (rather than a procedure definition) by the use
916of a different definition keyword: in Lisp, @code{defmacro} rather than
917@code{defun}, and in Scheme, @code{define-macro} rather than @code{define}.
e4955559
AW
918
919@fnindex defmacro
920@fnindex define-macro
921Guile supports this style of macro definition using both @code{defmacro}
922and @code{define-macro}. The only difference between them is how the
923macro name and arguments are grouped together in the definition:
924
925@lisp
926(defmacro @var{name} (@var{args} @dots{}) @var{body} @dots{})
927@end lisp
928
929@noindent
930is the same as
931
932@lisp
933(define-macro (@var{name} @var{args} @dots{}) @var{body} @dots{})
934@end lisp
935
936@noindent
937The difference is analogous to the corresponding difference between
938Lisp's @code{defun} and Scheme's @code{define}.
939
1fc8dcc7
AW
940Having read the previous section on @code{syntax-case}, it's probably clear that
941Guile actually implements defmacros in terms of @code{syntax-case}, applying the
942transformer on the expression between invocations of @code{syntax->datum} and
943@code{datum->syntax}. This realization leads us to the problem with defmacros,
944that they do not preserve referential transparency. One can be careful to not
945introduce bindings into expanded code, via liberal use of @code{gensym}, but
946there is no getting around the lack of referential transparency for free
947bindings in the macro itself.
e4955559 948
1fc8dcc7 949Even a macro as simple as our @code{when} from before is difficult to get right:
e4955559 950
1fc8dcc7
AW
951@example
952(define-macro (when cond exp . rest)
953 `(if ,cond
954 (begin ,exp . ,rest)))
e4955559 955
1fc8dcc7
AW
956(when #f (display "Launching missiles!\n"))
957@result{} #f
e4955559 958
1fc8dcc7
AW
959(let ((if list))
960 (when #f (display "Launching missiles!\n")))
961@print{} Launching missiles!
962@result{} (#f #<unspecified>)
963@end example
964
965Guile's perspective is that defmacros have had a good run, but that modern
966macros should be written with @code{syntax-rules} or @code{syntax-case}. There
967are still many uses of defmacros within Guile itself, but we will be phasing
968them out over time. Of course we won't take away @code{defmacro} or
969@code{define-macro} themselves, as there is lots of code out there that uses
970them.
e4955559
AW
971
972
973@node Identifier Macros
974@subsection Identifier Macros
975
6ffd4131
AW
976When the syntax expander sees a form in which the first element is a macro, the
977whole form gets passed to the macro's syntax transformer. One may visualize this
978as:
979
980@example
981(define-syntax foo foo-transformer)
982(foo @var{arg}...)
983;; expands via
984(foo-transformer #'(foo @var{arg}...))
985@end example
986
987If, on the other hand, a macro is referenced in some other part of a form, the
988syntax transformer is invoked with only the macro reference, not the whole form.
989
990@example
991(define-syntax foo foo-transformer)
992foo
993;; expands via
994(foo-transformer #'foo)
995@end example
996
997This allows bare identifier references to be replaced programmatically via a
998macro. @code{syntax-rules} provides some syntax to effect this transformation
999more easily.
1000
1001@deffn {Syntax} identifier-syntax exp
ecb87335 1002Returns a macro transformer that will replace occurrences of the macro with
6ffd4131
AW
1003@var{exp}.
1004@end deffn
1005
1006For example, if you are importing external code written in terms of @code{fx+},
1007the fixnum addition operator, but Guile doesn't have @code{fx+}, you may use the
1008following to replace @code{fx+} with @code{+}:
1009
1010@example
1011(define-syntax fx+ (identifier-syntax +))
1012@end example
1013
69724dde
AW
1014There is also special support for recognizing identifiers on the
1015left-hand side of a @code{set!} expression, as in the following:
1016
1017@example
1018(define-syntax foo foo-transformer)
1019(set! foo @var{val})
1020;; expands via
1021(foo-transformer #'(set! foo @var{val}))
a4b4fbbd 1022;; if foo-transformer is a "variable transformer"
69724dde
AW
1023@end example
1024
1025As the example notes, the transformer procedure must be explicitly
1026marked as being a ``variable transformer'', as most macros aren't
7545ddd4 1027written to discriminate on the form in the operator position.
69724dde
AW
1028
1029@deffn {Scheme Procedure} make-variable-transformer transformer
1030Mark the @var{transformer} procedure as being a ``variable
1031transformer''. In practice this means that, when bound to a syntactic
1032keyword, it may detect references to that keyword on the left-hand-side
1033of a @code{set!}.
1034
1035@example
1036(define bar 10)
1037(define-syntax bar-alias
1038 (make-variable-transformer
1039 (lambda (x)
1040 (syntax-case x (set!)
1041 ((set! var val) #'(set! bar val))
1042 ((var arg ...) #'(bar arg ...))
1043 (var (identifier? #'var) #'bar)))))
1044
1045bar-alias @result{} 10
1046(set! bar-alias 20)
1047bar @result{} 20
1048(set! bar 30)
1049bar-alias @result{} 30
1050@end example
1051@end deffn
1052
ecb87335 1053There is an extension to identifier-syntax which allows it to handle the
69724dde
AW
1054@code{set!} case as well:
1055
1056@deffn {Syntax} identifier-syntax (var exp1) ((set! var val) exp2)
1057Create a variable transformer. The first clause is used for references
1058to the variable in operator or operand position, and the second for
1059appearances of the variable on the left-hand-side of an assignment.
1060
1061For example, the previous @code{bar-alias} example could be expressed
1062more succinctly like this:
1063
1064@example
1065(define-syntax bar-alias
1066 (identifier-syntax
1067 (var bar)
1068 ((set! var val) (set! bar val))))
1069@end example
1070
1071@noindent
1072As before, the templates in @code{identifier-syntax} forms do not need
1073wrapping in @code{#'} syntax forms.
1074@end deffn
1075
6ffd4131 1076
729b62bd
IP
1077@node Syntax Parameters
1078@subsection Syntax Parameters
1079
866ecf54
AW
1080Syntax parameters@footnote{Described in the paper @cite{Keeping it Clean
1081with Syntax Parameters} by Barzilay, Culpepper and Flatt.} are a
1082mechanism for rebinding a macro definition within the dynamic extent of
1083a macro expansion. This provides a convenient solution to one of the
1084most common types of unhygienic macro: those that introduce a unhygienic
1085binding each time the macro is used. Examples include a @code{lambda}
1086form with a @code{return} keyword, or class macros that introduce a
1087special @code{self} binding.
729b62bd
IP
1088
1089With syntax parameters, instead of introducing the binding
866ecf54
AW
1090unhygienically each time, we instead create one binding for the keyword,
1091which we can then adjust later when we want the keyword to have a
1092different meaning. As no new bindings are introduced, hygiene is
1093preserved. This is similar to the dynamic binding mechanisms we have at
1094run-time (@pxref{SRFI-39, parameters}), except that the dynamic binding
1095only occurs during macro expansion. The code after macro expansion
1096remains lexically scoped.
729b62bd
IP
1097
1098@deffn {Syntax} define-syntax-parameter keyword transformer
866ecf54
AW
1099Binds @var{keyword} to the value obtained by evaluating
1100@var{transformer}. The @var{transformer} provides the default expansion
1101for the syntax parameter, and in the absence of
1102@code{syntax-parameterize}, is functionally equivalent to
1103@code{define-syntax}. Usually, you will just want to have the
1104@var{transformer} throw a syntax error indicating that the @var{keyword}
1105is supposed to be used in conjunction with another macro, for example:
729b62bd
IP
1106@example
1107(define-syntax-parameter return
1108 (lambda (stx)
1109 (syntax-violation 'return "return used outside of a lambda^" stx)))
1110@end example
1111@end deffn
1112
1113@deffn {Syntax} syntax-parameterize ((keyword transformer) @dots{}) exp @dots{}
1114Adjusts @var{keyword} @dots{} to use the values obtained by evaluating
866ecf54
AW
1115their @var{transformer} @dots{}, in the expansion of the @var{exp}
1116@dots{} forms. Each @var{keyword} must be bound to a syntax-parameter.
1117@code{syntax-parameterize} differs from @code{let-syntax}, in that the
1118binding is not shadowed, but adjusted, and so uses of the keyword in the
1119expansion of @var{exp} @dots{} use the new transformers. This is
1120somewhat similar to how @code{parameterize} adjusts the values of
1121regular parameters, rather than creating new bindings.
729b62bd
IP
1122
1123@example
1124(define-syntax lambda^
1125 (syntax-rules ()
866ecf54 1126 [(lambda^ argument-list body body* ...)
729b62bd
IP
1127 (lambda argument-list
1128 (call-with-current-continuation
1129 (lambda (escape)
866ecf54
AW
1130 ;; In the body we adjust the 'return' keyword so that calls
1131 ;; to 'return' are replaced with calls to the escape
1132 ;; continuation.
729b62bd
IP
1133 (syntax-parameterize ([return (syntax-rules ()
1134 [(return vals (... ...))
1135 (escape vals (... ...))])])
866ecf54 1136 body body* ...))))]))
729b62bd 1137
866ecf54 1138;; Now we can write functions that return early. Here, 'product' will
729b62bd
IP
1139;; return immediately if it sees any 0 element.
1140(define product
1141 (lambda^ (list)
1142 (fold (lambda (n o)
1143 (if (zero? n)
1144 (return 0)
1145 (* n o)))
1146 1
1147 list)))
1148@end example
1149@end deffn
1150
1151
e4955559
AW
1152@node Eval When
1153@subsection Eval-when
1154
6ffd4131
AW
1155As @code{syntax-case} macros have the whole power of Scheme available to them,
1156they present a problem regarding time: when a macro runs, what parts of the
1157program are available for the macro to use?
e4955559 1158
6ffd4131
AW
1159The default answer to this question is that when you import a module (via
1160@code{define-module} or @code{use-modules}), that module will be loaded up at
1161expansion-time, as well as at run-time. Additionally, top-level syntactic
1162definitions within one compilation unit made by @code{define-syntax} are also
1163evaluated at expansion time, in the order that they appear in the compilation
1164unit (file).
1165
1166But if a syntactic definition needs to call out to a normal procedure at
1167expansion-time, it might well need need special declarations to indicate that
1168the procedure should be made available at expansion-time.
1169
1170For example, the following code will work at a REPL, but not in a file:
1171
1172@example
1173;; incorrect
1174(use-modules (srfi srfi-19))
1175(define (date) (date->string (current-date)))
1176(define-syntax %date (identifier-syntax (date)))
1177(define *compilation-date* %date)
1178@end example
e4955559 1179
6ffd4131
AW
1180It works at a REPL because the expressions are evaluated one-by-one, in order,
1181but if placed in a file, the expressions are expanded one-by-one, but not
1182evaluated until the compiled file is loaded.
1183
1184The fix is to use @code{eval-when}.
1185
1186@example
1187;; correct: using eval-when
1188(use-modules (srfi srfi-19))
fc1cb3fa 1189(eval-when (expand load eval)
6ffd4131
AW
1190 (define (date) (date->string (current-date))))
1191(define-syntax %date (identifier-syntax (date)))
1192(define *compilation-date* %date)
1193@end example
1194
1195@deffn {Syntax} eval-when conditions exp...
fc1cb3fa
MW
1196Evaluate @var{exp...} under the given @var{conditions}. Valid
1197conditions include:
1198
1199@table @code
1200@item expand
1201Evaluate during macro expansion, whether compiling or not.
1202
1203@item load
1204Evaluate during the evaluation phase of compiled code, e.g. when loading
1205a compiled module or running compiled code at the REPL.
1206
1207@item eval
1208Evaluate during the evaluation phase of non-compiled code.
1209
1210@item compile
1211Evaluate during macro expansion, but only when compiling.
1212@end table
1213
1214In other words, when using the primitive evaluator, @code{eval-when}
1215expressions with @code{expand} are run during macro expansion, and those
1216with @code{eval} are run during the evaluation phase.
1217
1218When using the compiler, @code{eval-when} expressions with either
1219@code{expand} or @code{compile} are run during macro expansion, and
1220those with @code{load} are run during the evaluation phase.
1221
1222When in doubt, use the three conditions @code{(expand load eval)}, as in
1223the example above. Other uses of @code{eval-when} may void your
1224warranty or poison your cat.
6ffd4131
AW
1225@end deffn
1226
1227@node Internal Macros
1228@subsection Internal Macros
e4955559
AW
1229
1230@deffn {Scheme Procedure} make-syntax-transformer name type binding
6ffd4131
AW
1231Construct a syntax transformer object. This is part of Guile's low-level support
1232for syntax-case.
e4955559
AW
1233@end deffn
1234
1235@deffn {Scheme Procedure} macro? obj
1236@deffnx {C Function} scm_macro_p (obj)
a4b4fbbd
JE
1237Return @code{#t} if @var{obj} is a syntax transformer, or @code{#f}
1238otherwise.
6ffd4131
AW
1239
1240Note that it's a bit difficult to actually get a macro as a first-class object;
1241simply naming it (like @code{case}) will produce a syntax error. But it is
1242possible to get these objects using @code{module-ref}:
1243
1244@example
1245(macro? (module-ref (current-module) 'case))
1246@result{} #t
1247@end example
e4955559
AW
1248@end deffn
1249
1250@deffn {Scheme Procedure} macro-type m
1251@deffnx {C Function} scm_macro_type (m)
6ffd4131
AW
1252Return the @var{type} that was given when @var{m} was constructed, via
1253@code{make-syntax-transformer}.
e4955559
AW
1254@end deffn
1255
1256@deffn {Scheme Procedure} macro-name m
1257@deffnx {C Function} scm_macro_name (m)
1258Return the name of the macro @var{m}.
1259@end deffn
1260
e4955559
AW
1261@deffn {Scheme Procedure} macro-binding m
1262@deffnx {C Function} scm_macro_binding (m)
1263Return the binding of the macro @var{m}.
1264@end deffn
1265
6ffd4131
AW
1266@deffn {Scheme Procedure} macro-transformer m
1267@deffnx {C Function} scm_macro_transformer (m)
1268Return the transformer of the macro @var{m}. This will return a procedure, for
1269which one may ask the docstring. That's the whole reason this section is
1270documented. Actually a part of the result of @code{macro-binding}.
1271@end deffn
1272
e4955559
AW
1273
1274@c Local Variables:
1275@c TeX-master: "guile.texi"
1276@c End: