api-macros.texi 51 KB

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