2014-07-10 02:28:06 +00:00
|
|
|
(defmacro monad (name)
|
2014-07-10 02:37:16 +00:00
|
|
|
(case name
|
|
|
|
;; Provide the state monad in terms of the state transformer
|
|
|
|
(''state `(transformer 'state 'identity))
|
|
|
|
(_
|
2015-05-22 00:14:39 +00:00
|
|
|
`(list_to_atom (lists:flatten `("calrissian-"
|
|
|
|
,(atom_to_list ,name)
|
|
|
|
"-monad"))))))
|
2014-07-10 02:28:06 +00:00
|
|
|
|
|
|
|
(defmacro transformer (name inner-monad)
|
2015-05-22 00:14:39 +00:00
|
|
|
`(tuple (list_to_atom (lists:flatten `("calrissian-"
|
|
|
|
,(atom_to_list ,name)
|
|
|
|
"-transformer")))
|
2014-07-10 02:28:06 +00:00
|
|
|
(monad ,inner-monad)))
|
|
|
|
|
2014-04-25 05:11:04 +00:00
|
|
|
(defmacro do-m args
|
2014-04-24 19:33:28 +00:00
|
|
|
(let ((monad (car args))
|
|
|
|
(statements (cdr args)))
|
2014-07-10 01:19:14 +00:00
|
|
|
(calrissian-monad:do-transform monad statements)))
|
2014-04-24 19:33:28 +00:00
|
|
|
|
|
|
|
(defmacro >>= (monad m f)
|
2014-05-13 23:30:46 +00:00
|
|
|
`(call ,monad '>>= ,m ,f))
|
2014-04-24 19:33:28 +00:00
|
|
|
|
|
|
|
(defmacro >> (monad m1 m2)
|
2014-05-13 23:30:46 +00:00
|
|
|
`(call ,monad '>>= ,m1 (lambda (_) , m2)))
|
2014-04-24 19:33:28 +00:00
|
|
|
|
|
|
|
(defmacro return (monad expr)
|
2014-05-13 23:30:46 +00:00
|
|
|
`(call ,monad 'return ,expr))
|
2014-04-25 05:06:19 +00:00
|
|
|
|
2014-04-25 05:27:13 +00:00
|
|
|
(defmacro fail (monad expr)
|
2014-05-13 23:30:46 +00:00
|
|
|
`(call ,monad 'fail ,expr))
|
2014-04-25 05:27:13 +00:00
|
|
|
|
2014-04-25 05:06:19 +00:00
|
|
|
(defmacro sequence (monad list)
|
2015-05-22 00:14:39 +00:00
|
|
|
`(lists:foldr
|
2014-04-25 05:06:19 +00:00
|
|
|
(lambda (m acc) (mcons ,monad m acc))
|
|
|
|
(return ,monad [])
|
|
|
|
,list))
|
|
|
|
|
|
|
|
(defmacro mcons (monad m mlist)
|
2014-04-25 05:11:04 +00:00
|
|
|
`(do-m ,monad
|
|
|
|
(x <- ,m)
|
|
|
|
(rest <- ,mlist)
|
|
|
|
(return ,monad (cons x rest))))
|