parsable, you could write parse-log-entry
to go ahead and parse the slightly defective entries but to signal a condition with WARN
when it did. Then the larger application could choose to let the warning print, to muffle the warning, or to treat the warning like an error, recovering the same way it would from a malformed-log-entry-error
.
A third error-signaling function, CERROR
, provides yet another protocol. Like ERROR
, CERROR
will drop you into the debugger if the condition it signals isn't handled. But like WARN
, it establishes a restart before it signals the condition. The restart, CONTINUE
, causes CERROR
to return normally—if the restart is invoked by a condition handler, it will keep you out of the debugger altogether. Otherwise, you can use the restart once you're in the debugger to resume the computation immediately after the call to CERROR
. The function CONTINUE
finds and invokes the CONTINUE
restart if it's available and returns NIL
otherwise.
You can also build your own protocols on SIGNAL
—whenever low-level code needs to communicate information back up the call stack to higher-level code, the condition mechanism is a reasonable mechanism to use. But for most purposes, one of the standard error or warning protocols should suffice.
You'll use the condition system in future practical chapters, both for regular error handling and, in Chapter 25, to help in handling a tricky corner case of parsing ID3 files. Unfortunately, it's the fate of error handling to always get short shrift in programming texts—proper error handling, or lack thereof, is often the biggest difference between illustrative code and hardened, production-quality code. The trick to writing the latter has more to do with adopting a particularly rigorous way of thinking about software than with the details of any particular programming language constructs. That said, if your goal is to write that kind of software, you'll find the Common Lisp condition system is an excellent tool for writing robust code and one that fits quite nicely into Common Lisp's incremental development style.
Writing Robust Software
For information on writing robust software, you could do worse than to start by finding a copy of
In the next chapter I'll give a quick overview of some of the 25 special operators you haven't had a chance to use yet, at least not directly.
20. The Special Operators
In a way, the most impressive aspect of the condition system covered in the previous chapter is that if it wasn't already part of the language, it could be written entirely as a user-level library. This is possible because Common Lisp's special operators—while none touches directly on signaling or handling conditions—provide enough access to the underlying machinery of the language to be able to do things such as control the unwinding of the stack.
In previous chapters I've discussed the most frequently used special operators, but it's worth being familiar with the others for two reasons. First, some of the infrequently used special operators are used infrequently simply because whatever need they address doesn't arise that often. It's good to be familiar with these special operators so when one of them is called for, you'll at least know it exists. Second, because the 25 special operators—along with the basic rule for evaluating function calls and the built-in data types—provide the foundation for the rest of the language, a passing familiarity with them will help you understand how the language works.
In this chapter, I'll discuss all the special operators, some briefly and some at length, so you can see how they fit together. I'll point out which ones you can expect to use directly in your own code, which ones serve as the basis for other constructs that you use all the time, and which ones you'll rarely use directly but which can be handy in macro-generated code.
The first category of special operators contains the three operators that provide basic control over the evaluation of forms. They're QUOTE
, IF
, and PROGN
, and I've discussed them all already. However, it's worth noting how each of these special operators provides one fundamental kind of control over the evaluation of one or more forms. QUOTE
prevents evaluation altogether and allows you to get at s- expressions as data. IF
provides the fundamental boolean choice operation from which all other conditional execution constructs can be built.[206] And PROGN
provides the ability to sequence a number of forms.
The largest class of special operators contains the operators that manipulate and access the LET
and LET*
, which I've already discussed, are examples of special operators that manipulate the lexical environment since they can introduce new lexical bindings for variables. Any construct, such as a DO
or DOTIMES
, that binds lexical variables will have to expand into a LET
or LET*
.[207] The SETQ
special operator is one that accesses the lexical environment since it can be used to set variables whose bindings were created by LET
and LET*
.
Variables, however, aren't the only thing that can be named within a lexical scope. While most functions are defined globally with DEFUN
, it's also possible to create local functions with the special operators FLET
and LABELS
, local macros with MACROLET
, and a special kind of macro, called a SYMBOL-MACROLET
.
Much like LET
allows you to introduce a lexical variable whose scope is the body of the LET
, FLET
and LABELS
let you define a function that can be referred to only within the scope of the FLET
or LABELS
form. These special operators are handy when you need a local function that's a bit too complex to define inline as a