So... I'm new to scheme r6rs, and am learning macros. Can somebody explain to me what is meant by 'hygiene'?
Thanks in advance.
|
|
Hygiene is often used in the context of macros. A hygienic macro doesn't use variable names that can risk interfering with the code under expansion. Here is an example. Let's say we want to define the
Now, if the name
Using our intuitive expansion, this would become
The Now, if the macro was hygienic (and in Scheme, it's automatically the case when using Paul Graham's On Lisp has advanced material on macros. |
||||
|
|
If you imagine that a macro is simply expanded into the place where it is used, then you can also imagine that if you use a variable This is not the A macro system in which something like this cannot happen, is called hygienic. There are several ways to deal with this problem. One way is simply to use very long, very cryptic, very unpredictable variable names in your macros. A slightly more refined version of this is the And like I said, in a hygienic macro system, such collisions cannot happen in the first place. How to make a macro system hygienic is an interesting question in itself, and the Scheme community has spent several decades on this question, and they keep coming up with better and better ways to do it. |
|||||||||
|
|
I'm so glad to know that this language is still being used! Hygienic code is code that when injected (via a macro) does not cause conflicts with existing variables. There is lots of good information on Wikipedia about this: http://en.wikipedia.org/wiki/Hygienic_macro |
|||
|
|
|
Here's what I found. Explaining what it means is another matter altogether! http://www.r6rs.org/final/html/r6rs-lib/r6rs-lib-Z-H-1.html#node_toc_node_sec_12.1 |
|||||||||
|
|
Macros transform code: they take one bit of code and transform it into something else. As part of that transformation, they may surround that code with more code. If the original code references a variable
is the original code, which expects
Then the macro will work fine for
but
which won't work because A hygienic macro avoids this problem of the wrong variable getting accessed (and a similar problem the other way round), by ensuring that the names used are unique. Wikipedia has a good explanation of hygienic macros. |
|||
|
|
|
Apart from all the things mentioned, there is one important other thing to Scheme's hygienic macros, which follow from the lexical scope. Say we have:
As part of a macro, surely it will insert the +, it will also insert it when there's a + already there, but then another symbol which has the same meaning as
The writer, or user of the macro thus needn't be occupied with ensuring its use goes well. |
|||||
|