programming language.[73] And as you'll see in a moment, Lisp's version of global variables, dynamic variables, are both more useful and more manageable.
Common Lisp provides two ways to create global variables: DEFVAR
and DEFPARAMETER
. Both forms take a variable name, an initial value, and an optional documentation string. After it has been DEFVAR
ed or DEFPARAMETER
ed, the name can be used anywhere to refer to the current binding of the global variable. As you've seen in previous chapters, global variables are conventionally named with names that start and end with *
. You'll see later in this section why it's quite important to follow that naming convention. Examples of DEFVAR
and DEFPARAMETER
look like this:
(defvar *count* 0
'Count of widgets made so far.')
(defparameter *gap-tolerance* 0.001
'Tolerance to be allowed in widget gaps.')
The difference between the two forms is that DEFPARAMETER
always assigns the initial value to the named variable while DEFVAR
does so only if the variable is undefined. A DEFVAR
form can also be used with no initial value to define a global variable without giving it a value. Such a variable is said to be
Practically speaking, you should use DEFVAR
to define variables that will contain data you'd want to keep even if you made a change to the source code that uses the variable. For instance, suppose the two variables defined previously are part of an application for controlling a widget factory. It's appropriate to define the *count*
variable with DEFVAR
because the number of widgets made so far isn't invalidated just because you make some changes to the widget-making code.[74]
On the other hand, the variable *gap-tolerance*
presumably has some effect on the behavior of the widget-making code itself. If you decide you need a tighter or looser tolerance and change the value in the DEFPARAMETER
form, you'd like the change to take effect when you recompile and reload the file.
After defining a variable with DEFVAR
or DEFPARAMETER
, you can refer to it from anywhere. For instance, you might define this function to increment the count of widgets made:
(defun increment-widget-count () (incf *count*))
The advantage of global variables is that you don't have to pass them around. Most languages store the standard input and output streams in global variables for exactly this reason—you never know when you're going to want to print something to standard out, and you don't want every function to have to accept and pass on arguments containing those streams just in case someone further down the line needs them.
However, once a value, such as the standard output stream, is stored in a global variable and you have written code that references that global variable, it's tempting to try to temporarily modify the behavior of that code by changing the variable's value.
For instance, suppose you're working on a program that contains some low-level logging functions that print to the stream in the global variable *standard-output*
. Now suppose that in part of the program you want to capture all the output generated by those functions into a file. You might open a file and assign the resulting stream to *standard-output*
. Now the low-level functions will send their output to the file.
This works fine until you forget to set *standard-output*
back to the original stream when you're done. If you forget to reset *standard-output*
, all the other code in the program that uses *standard-output*
will also send its output to the file.[75]
What you really want, it seems, is a way to wrap a piece of code in something that says, 'All code below here—all the functions it calls, all the functions they call, and so on, down to the lowest-level functions—should use *standard-output*
.' Then when the high-level function returns, the old value of *standard-output*
should be automatically restored.
It turns out that that's exactly what Common Lisp's other kind of variable—dynamic variables—let you do. When you bind a dynamic variable—for example, with a LET
variable or a function parameter—the binding that's created on entry to the binding form replaces the global binding for the duration of the binding form. Unlike a lexical binding, which can be referenced by code only within the lexical scope of the binding form, a dynamic binding can be referenced by any code that's invoked during the execution of the binding form.[76] And it turns out that all global variables are, in fact, dynamic variables.
Thus, if you want to temporarily redefine *standard-output*
, the way to do it is simply to rebind it, say, with a LET
.
(let ((*standard-output* *some-other-stream*))
(stuff))
In any code that runs as a result of the call to stuff
, references to *standard- output*
will use the binding established by the LET
. And when stuff
returns and control leaves the LET
, the new binding of *standard-output*
will go away and subsequent references to *standard-output*
will see the binding that was current before the LET
. At any given time, the most recently established binding shadows all other bindings. Conceptually, each new binding for a given dynamic variable is pushed onto a stack of bindings for that variable, and references to the variable always use the most recent binding. As binding forms return, the bindings they created are popped off the stack, exposing previous bindings.[77]
A simple example shows how this works.
(defvar *x* 10)
(defun foo () (format t 'X: ~d~%' *x*))
The DEFVAR
creates a global binding for the variable *x*
with the value 10. The reference to *x*
in foo
will look up the current binding dynamically. If you call foo
from the top level, the global binding created by the DEFVAR
is the only binding available, so it prints 10.
CL-USER> (foo)
X: 10
NIL
But you can use LET
to create a new binding that temporarily shadows the global binding, and foo
will print a different value.
CL-USER> (let ((*x* 20)) (foo))
X: 20
NIL
Now call foo
again, with no LET
, and it again sees the global binding.
CL-USER> (foo)
X: 10
NIL
Now define another function.
(defun bar ()
(foo)
(let ((*x* 20)) (foo))