-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutil.lisp
101 lines (86 loc) · 2.64 KB
/
util.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
(in-package :easyweb)
;;in order to get around the issue with "describe" function,
;;strings must be enclosed with double-quotes.
(defun enclose-string (str)
(format nil "\"~A\"" str))
(defun null-value-check (argument default-value)
(if (null argument)
default-value
argument))
(defun macroexpand-tree (tree)
(setq tree (macroexpand tree))
(if (atom tree)
tree
(mapcar #'macroexpand-tree tree)))
(defun create-appender (initial-list)
(let ((acc-list initial-list)
(tail (nthcdr (1- (length initial-list)) initial-list)))
(lambda (&rest lists)
(dolist (al lists acc-list)
(setf (cdr tail) al)
(setf tail (nthcdr (1- (length al)) al))))))
#| - LET OVER LAMBDA UTILITIES - |#
(defun mkstr (&rest args)
(with-output-to-string (s)
(dolist (a args) (princ a s))))
(defun symb (&rest args)
(values (intern (apply #'mkstr args))))
(defun group (source n)
(if (zerop n) (error "zero length"))
(labels ((rec (source acc)
(let ((rest (nthcdr n source)))
(if (consp rest)
(rec rest (cons
(subseq source 0 n)
acc))
(nreverse
(cons source acc))))))
(if source (rec source nil) nil)))
(defun flatten (x)
(labels ((rec (x acc)
(cond ((null x) acc)
((atom x) (cons x acc))
(t (rec
(car x)
(rec (cdr x) acc))))))
(rec x nil)))
(defun g!-symbol-p (s)
(and (symbolp s)
(> (length (symbol-name s)) 2)
(string= (symbol-name s)
"G!"
:start1 0
:end1 2)))
(defmacro defmacro/g! (name args &rest body)
(let ((syms (remove-duplicates
(remove-if-not #'g!-symbol-p
(flatten body)))))
`(defmacro ,name ,args
(let ,(mapcar
(lambda (s)
`(,s (gensym ,(subseq
(symbol-name s)
2))))
syms)
,@body))))
(defun o!-symbol-p (s)
(and (symbolp s)
(> (length (symbol-name s)) 2)
(string= (symbol-name s)
"O!"
:start1 0
:end1 2)))
(defun o!-symbol-to-g!-symbol (s)
(symb "G!"
(subseq (symbol-name s) 2)))
(defmacro defmacro! (name args &rest body)
(let* ((os (remove-if-not #'o!-symbol-p args))
(gs (mapcar #'o!-symbol-to-g!-symbol os)))
`(defmacro/g! ,name ,args
`(let ,(mapcar #'list (list ,@gs) (list ,@os))
,(progn ,@body)))))
;;EXAMPLE#1
;(defmacro! square (o!x)
; `(progn
; (format t "[~A gave ~A]~%" ',o!x ,g!x)
; (* ,g!x ,g!x)))