Small, fast, and complete interceptor library for Clojure/Script with built-in support for common async libraries.
Noun Siepata (Intercept)
sieppari, someone or something that intercepts
Interceptors, like in Pedestal, but with minimal implementation and optimal performance.
The core Sieppari depends on Clojure and nothing else.
If you are new to interceptors, check the
Pedestal Interceptors documentation.
If you are familiar with interceptors you might want to jump to Differences to Pedestal
below.
(ns example.simple
(:require [sieppari.core :as sieppari]))
;; interceptor, in enter update value in `[:request :x]` with `inc`
(def inc-x-interceptor
{:enter (fn [ctx]
(update-in ctx [:request :x] inc))})
;; handler, take `:x` from request, apply `inc`, and return an map with `:y`
(defn handler [request]
{:y (inc (:x request))})
(sieppari/execute
[inc-x-interceptor handler]
{:x 40})
;=> {:y 42}
Any step in the execution pipeline (:enter
, :leave
, :error
) can return either a context map (synchronous execution) or an instance of AsyncContext
- indicating asynchronous execution.
By default, clojure deferrables satisfy the AsyncContext
protocol.
Using sieppari.core/execute
with async steps will block:
;; async interceptor, in enter double value of `[:response :y]`:
(def multiply-y-interceptor
{:leave (fn [ctx]
(future
(Thread/sleep 1000)
(update-in ctx [:response :y] * 2)))})
(sieppari/execute
[inc-x-interceptor multiply-y-interceptor handler]
{:x 40})
; ... 1 second later:
;=> {:y 84}
There is also a non-blocking version of execute
:
(let [respond (promise)
raise (promise)]
(sieppari/execute
[inc-x-interceptor multiply-y-interceptor handler]
{:x 40}
respond
raise) ; returns nil immediately
(deref respond 2000 :timeout))
; ... 1 second later:
;=> {:y 84}
To add a support for one of the supported external async libraries, just add a dependency to them and require
the
respective Sieppari namespace. Currently supported async libraries are:
sieppari.async.core-async
, clj & cljssieppari.async.manifold
cljsieppari.async.promesa
clj & cljsTo extend Sieppari async support to other libraries, just extend the AsyncContext
protocol.
Requires dependency to [org.clojure/core.async "0.4.474"]
or higher.
(require '[clojure.core.async :as a])
(defn multiply-x-interceptor [n]
{:enter (fn [ctx]
(a/go (update-in ctx [:request :x] * n)))})
(sieppari/execute
[inc-x-interceptor (multiply-x-interceptor 10) handler]
{:x 40})
;=> {:y 411}
Requires dependency to [manifold "0.1.8"]
or higher.
(require '[manifold.deferred :as d])
(defn minus-x-interceptor [n]
{:enter (fn [ctx]
(d/success-deferred (update-in ctx [:request :x] - n)))})
(sieppari/execute
[inc-x-interceptor (minus-x-interceptor 10) handler]
{:x 40})
;=> {:y 31}
Requires dependency to [funcool/promesa "2.0.0-SNAPSHOT"]
or higher.
(require '[promesa.core :as p])
(defn divide-x-interceptor [n]
{:enter (fn [ctx]
(p/promise (update-in ctx [:request :x] / n)))})
(sieppari/execute
[inc-x-interceptor (divide-x-interceptor 10) handler]
{:x 40})
;=> {:y 41/10}
Sieppari aims for minimal functionality and can therefore be quite fast. Complete example to test performance is included.
The example creates a chain of 100 interceptors that have
clojure.core/identity
as :enter
and :leave
functions and then
executes the chain. The async tests also have 100 interceptors, but
in async case they all return core.async
channels on enter and leave.
Executor | Execution time lower quantile |
---|---|
Pedestal sync | 64 µs |
Sieppari sync | 9 µs |
Pedestal async | 410 µs |
Sieppari async | 396 µs |
io.pedestal.interceptor.chain/execute
executes Contextssieppari.core/execute
executes Requests (which are internally wrapped inside a Context for interceptors)error
handler takes two arguments, the ctx
and the exception.error
handlers takes just one argument, the ctx
, and the exception is in the ctx
under the key :error
.error
handler resolves the exception by returning the ctx
, and continues the error stage by re-throwing the exception.error
handler resolves the exception by returning the ctx
with the :error
removed. To continue in the error stage, just return the ctx
with the exception still at :error
.java.lang.Throwable
for error processing. Sieppari catches java.lang.Exception
. This means that things like out of memory or class loader failures are not captured by Sieppari.In order to start a node figwheel REPL for local development use:
clojure -A:fig:test-cljs:nrepl
Then in the REPL:
user=> (require 'figwheel.main.api)
nil
user=> (figwheel.main.api/start "dev")
...
Copyright © 2018-2019 Metosin Oy
Distributed under the Eclipse Public License 2.0.
Can you improve this documentation? These fine people already did:
Jarppe, Tommi Reiman, Miikka Koskinen, Pauli Jaakkola & Andrea RichiardiEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close