Outdated egg!

This is an egg for CHICKEN 4, the unsupported old release. You're almost certainly looking for the CHICKEN 5 version of this egg, if it exists.

If it does not exist, there may be equivalent functionality provided by another egg; have a look at the egg index. Otherwise, please consider porting this egg to the current version of CHICKEN.

SRFI-34

Description

SRFI-34 Exception Handling for Programs

Examples

Examples are in examples/srfi-34-examples.scm.

;;; 
;;; (raise OBJ)
;;;

(require-extension srfi-34)

(raise 'heck)

;;; The default exception handler calls error aborting the script.
;;;
;;; (guard (VAR CLAUSE1 CLAUSE2 ...) BODY)
;;;

;;; Use guard to wrap code that might raise an exception so that the default
;;; handler doesn't abort the program

(require-extension srfi-34)

;;; This will print:
;;;   Doing some stuff
;;;   Caught an unidentified flying exception: bizarre-exception
;;; and then it will return the 'bizarre-exception
(guard ( e 
       [(eq? e 'weird-exception)
        (display "Caught a weird-exception")(newline)]
       [(eq? e 'odd-exception)
        (display "Caught an odd-exception")(newline)]
       [else 
	(display "Caught an unidentified flying exception: ")
	(write e)(newline)
	e])
       (display "Doing some stuff")(newline)
       (raise 'bizarre-exception)
       (display "Won't get here")(newline) )
;;;
;;; The => syntax for guard: Example 1
;;;
(require-extension srfi-34)

;;; This will return: 42
(guard (condition
         ((assq 'a condition) => cdr)
         ((assq 'b condition)))
  (raise (list (cons 'a 42))))
;;;
;;; The => syntax for guard: Example 2 
;;;
(require-extension srfi-34)

;;; This will return: (b . 23)
(guard (condition
         ((assq 'a condition) => cdr)
         ((assq 'b condition)))
  (raise (list (cons 'b 23))))
;;;
;;; ( with-exception-handler HANDLER THUNK )
;;;

;;; This example demonstrates a lower level procedure that I don't think would 
;;; ordinarily be used.  The guard macro takes care of the continuation 
;;; plumbing you see here for you, ultimately doing something like this.
;;; There is also a similar 'with-exception-handlers' documented in the srfi.

(require-extension srfi-34)

(call-with-current-continuation
  ;;; We want control to resume at k if an exception is raised, not
  ;;; to continue normally at the next line after the call to raise.
  ;;; ( raise is smart enough call error if it finds that the exception
  ;;; handler returns control to it instead of to another continuation as
  ;;; it should )
  (lambda (k)
    (with-exception-handler
      ;;; This is the exception handler that gets stored in 
      ;;; in the dynamic environment. Ultimately, it passes control to 
      ;;; k because returning is an error
      (lambda (e)
        (display "I handled an exception: ")(write e)(newline)
        (display "Passing it to previous continuation")(newline)
        (k e))
      ;;; This is the thunk that may throw an exception
      (lambda ()
        (display "Doing more stuff")(newline)
        (raise 'yet-another-exception)
        (display "Won't get here")(newline)))) )

Author

SRFI-34 Reference Implementation Authors: Richard Kelsey, Michael Sperber.

Packaged as an egg by Ben Clark.

License

Derived (almost verbatim) from the reference implementation of srfi-34. The copyright on that code is:

<blockquote> Copyright (C) Richard Kelsey, Michael Sperber (2002). All Rights Reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ASIS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. </blockquote>

Modifications are copyright Ben Clark (2007), governed by the same conditions. Any errors are mine.

Documentation

NOTE: Chicken implements SFRI-12, a withdrawn SRFI that is nonetheless a more featureful exception system than the one implemented in SRFI-34. If you don't need SFRI-34 for portablility to some other scheme, there is no reason to use this egg over the SFRI-12 functionality chicken provides out of the box.

NOTE: This egg has been updated to use Chicken's native handlers, so it should work as expected now. What this boils down to: all this egg does is define a guard macro. The exceptions system is provided by Chicken itself, and raise is provided by srfi-18. This eggdoc is entirely OUT OF DATE.

srfi-34.egg contains the reference implementation of srfi-34 packaged as a chicken egg.

See http://srfi.schemers.org/srfi-34/srfi-34.html for additional documentation

The module maintains a list of exception handlers using dynamic-wind. This list begins it's life defined thusly:

(define *current-exception-handlers*
  (list (lambda (condition)
          (error "unhandled exception" condition))))

A naked call to raise would end up calling the default handler procedure contained in the *current-exception-handlers* list, aborting the program.


procedure: (raise OBJ)

Raise an exception. OBJ can be any scheme object. Invokes the 'current exception handler' thunk, which is the car of the *current-exception-handlers* list. This handler thunk handles the exception OBJ.

The handler thunk should then either call error to stop program execution, or it should have stored the continuation at which to resume execution of the program after handling the exception, and pass it's result to that continuation where the program's flow of execution will resume.

Installing an exception handler that returns will cause the raise procedure to abort the program by call error, alerting that the exception handler thunk erroneously returned control to the raise procedure instead of to a different continuation as it should.


macro: (guard (VAR CLAUSE1 CLAUSE2 ...) BODY )

Syntax: Each clause should have the same form as a cond clause.

Semantics: Whereas raise is analogous to the throw commonly found in other languages, guard is analogous to the try/catch syntax often implemented. VAR gets bound to the exception thrown by BODY, and then the CLAUSEs which have access to VAR, are evaluated until one of the tests succeeds, and the corresponding code gets run. As with cond, the else test always succeeds and so can be used to handle general exceptions.

Notes: guard also supports => in the clauses. If the test returns a useful value, then => can be used to specify a procedure to apply to that value in that case. See the examples section and the srfi for clarification on this.


procedure: (with-exception-handler HANDLER THUNK)

Returns the result(s) of invoking thunk. Handler must be a procedure that accepts one argument. It is installed as the current exception handler for the dynamic extent (as determined by dynamic-wind) of the invocation of thunk.


Version