slingshot
Enhanced throw and catch for Clojure
Provides try+ and throw+. Each is 100% compatible with Clojure
and Java's native try and throw both in source code and at
runtime. Each also provides additional capabilities intended to
improve ease of use by leveraging Clojure's features like maps,
records, and destructuring.
Clojure's native try and throw behave much like those of Java:
throw can accept objects derived from java.lang.Throwable and try
selects from among catch clauses based on the class of the thrown
object.
In addition to fully supporting those uses (whether they originate
from Clojure code or from Java code via interop), try+ and
throw+ provide these enhanced capabilities:
throw+can throw any Java object, not just those whose class is derived fromjava.lang.Throwable.Clojure maps or records become an easy way to represent custom exceptions without requiring
gen-class.catchclauses withintry+can catch:- any Java object thrown by
throw+, - any map passed to
ex-infoand thrown bythroworthrow+, or - any
Throwablethrown by Clojure'sthrow, or Java'sthrow.
The first catch clause whose selector matches the thrown object will execute.
a selector can be:
a class name: (e.g.,
RuntimeException,my.clojure.record), matches any instance of that class, ora key-values vector: (e.g.,
[key val & kvs]), matches objects where(and (= (get object key) val) ...), ora predicate: (function of one argument like
map?,set?), matches any Object for which the predicate returns a truthy value, ora selector form: a form containing one or more instances of
%to be replaced by the thrown object, matches any object for which the form evaluates to truthy.the class name, key-values, and predicate selectors are shorthand for these selector forms:
`<class name> => (instance? <class name> %)` `[<key> <val> & <kvs>] => (and (= (get % <key>) <val>) ...)` `<predicate> => (<predicate> %)`
- any Java object thrown by
the binding to the caught exception in a catch clause is not required to be a simple symbol. It is subject to destructuring so the body of the catch clause can use the contents of a thrown collection easily.
in a catch clause, the context at the throw site is accessible via the hidden argument
&throw-context.&throw-contextis a map containing:for Throwable caught objects:
:object the caught object; :message the message, from .getMessage; :cause the cause, from .getCause; :stack-trace the stack trace, from .getStackTrace; :throwable the caught object;for non-Throwable caught objects (including maps passed to ex-info)
:object the caught object; :message the message, from throw+ or ex-info; :cause the cause, from throw+ or ex-info, see below; :stack-trace the stack trace, captured by throw+ or ex-info; :wrapper the Throwable wrapper that carried the object; :throwable the outermost Throwable whose cause chain contains the wrapper, see below.To throw a non-
Throwableobject,throw+wraps it in aThrowablewrapper by callingex-info. Every instance ofIExceptionInfo(whether generated by throw+ or by a direct call toex-info) is treated as a wrapper.The wrapper is available via the
:wrapperkey in&throw-context.Between being thrown and caught, a wrapper may be further wrapped by other Exceptions (e.g., instances of
RuntimeExceptionorjava.util.concurrent.ExecutionException).try+sees through all such wrappers to find the thrown object. The outermost wrapper is available within a catch clause a via the:throwablekey in&throw-context.When
throw+throws a non-Throwableobject from within atry+catch clause, the outermost wrapper of the caught object being processed is captured as the cause of the newthrow+. This can be overridden by providing an explicitcauseargument tothrow+.an optional
elseclause may appear after allcatchclauses and before anyfinallyclause. Its contents will be executed (for side effects) immediately after the code in thetry+body completes only if nothing was thrown.
Usage
project.clj
tensor/parse.clj
(ns tensor.parse
(:use [slingshot.slingshot :only [throw+]]))
(defn parse-tree [tree hint]
(if (bad-tree? tree)
(throw+ {:type ::bad-tree :tree tree :hint hint})
(parse-good-tree tree hint)))math/expression.clj
(ns math.expression
(:require [tensor.parse]
[clojure.tools.logging :as log])
(:use [slingshot.slingshot :only [throw+ try+]]))
(defn read-file [file]
(try+
[...]
(tensor.parse/parse-tree tree)
[...]
(catch [:type :tensor.parse/bad-tree] {:keys [tree hint]}
(log/error "failed to parse tensor" tree "with hint" hint)
(throw+))
(catch Object _
(log/error (:throwable &throw-context) "unexpected error")
(throw+))))Credits
Based on clojure.contrib.condition, data-conveying-exception, discussions on the clojure mailing list and wiki and discussions and implementations by Steve Gilardi, Phil Hagelberg, and Kevin Downey.
License
Copyright © 2011-2014 Stephen C. Gilardi, Kevin Downey, and Phil Hagelberg
Distributed under the Eclipse Public License, the same as Clojure.