-
Notifications
You must be signed in to change notification settings - Fork 5
/
utils.lisp
64 lines (55 loc) · 2.42 KB
/
utils.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
;;;; qbase64.lisp
(in-package #:qbase64)
(deftype positive-fixnum ()
`(integer 0 ,most-positive-fixnum))
(defmacro define-constant (name value &optional doc)
`(defconstant ,name (if (boundp ',name) (symbol-value ',name) ,value)
,@(when doc (list doc))))
(defun bytes (&rest contents)
(make-array (length contents)
:element-type '(unsigned-byte 8)
:initial-contents contents))
(defun make-byte-vector (size)
(make-array size :element-type '(unsigned-byte 8)))
(bind::defbinding-form (:symbol-macrolet :use-values-p nil)
`(symbol-macrolet ((,(first bind::variables) ,bind::values))))
(declaim (ftype (function (positive-fixnum positive-fixnum) positive-fixnum) least-multiple-upfrom))
(defun least-multiple-upfrom (multiple-of upfrom)
(* multiple-of (ceiling upfrom multiple-of)))
;; Copied from ALEXANDRIA
(defun parse-body (body &key documentation whole)
"Parses BODY into (values remaining-forms declarations doc-string).
Documentation strings are recognized only if DOCUMENTATION is true.
Syntax errors in body are signalled and WHOLE is used in the signal
arguments when given."
(let ((doc nil)
(decls nil)
(current nil))
(tagbody
:declarations
(setf current (car body))
(when (and documentation (stringp current) (cdr body))
(if doc
(error "Too many documentation strings in ~S." (or whole body))
(setf doc (pop body)))
(go :declarations))
(when (and (listp current) (eql (first current) 'declare))
(push (pop body) decls)
(go :declarations)))
(values body (nreverse decls) doc)))
(defmacro defun/td (&whole whole name lambda-list type-decls-list &body body)
(multiple-value-bind (body decls doc-string)
(parse-body body :documentation t :whole whole)
`(defun ,name ,lambda-list
,@(when doc-string (list doc-string))
(cond
,@(mapcar (lambda (type-decls)
`((and ,@(loop for (name type) in type-decls
collect `(typep ,name ',type)))
(locally
(declare ,@(loop for (name type) in type-decls
collect `(type ,type ,name)))
,@decls
,@body)))
type-decls-list)
(t (error "Arguments don't satisfy any of these type declarations: ~A" ',type-decls-list))))))