src/middleware/core.lisp @ ca726222b6f1
Use quickutil to save some code
author |
Steve Losh <steve@stevelosh.com> |
date |
Sun, 20 Nov 2016 17:35:34 +0000 |
parents |
919ebd924aac |
children |
(none) |
(in-package :nrepl)
(defvar *middleware* (fset:empty-map))
(defmacro handle-op (message op fallback &rest body)
`(if (equal ,op (fset:lookup ,message "op"))
(progn ,@body)
(funcall ,fallback ,message)))
(defmacro define-middleware (name op message-binding &body body)
"Define a middleware at the symbol `name` to handle `op`.
As the body is executing `message-binding` will be bound to the message map.
"
(with-gensyms (fallback)
`(defun ,name (,fallback)
(lambda (,message-binding)
(handle-op ,message-binding ,op ,fallback
,@body)))))