blob: 0ef109812ab3ed209325cdfb82432dcfda477ec8 (
plain)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
(define-module (Alpha Core)
#:use-module ((ice-9 format))
#:use-module ((system vm program))
#:use-module ((ice-9 rdelim) #:select (read-line))
#:use-module (srfi srfi-1)
#:export (fmt printf pr prn rest last butlast
true? false? some? empty?
-> ->> fn /. curry comp
repeat for seq
inc dec member? contains?
comment get-source* get-source source))
(define (flip f) (lambda (x y) (f y x)))
(define (curry f a) (lambda (b) (apply f (cons a (list b)))))
(define pos?
(curry < 0))
(define neg?
(curry > 0))
(define (foldr f end lst)
(if (null? lst)
end
(f (car lst) (foldr f end (cdr lst)))))
(define (foldl f acc lst)
(if (null? lst)
acc
(foldl f (f acc (car lst)) (cdr lst))))
(define (sum lst) (fold + 0 lst))
(define (product lst) (fold * 1 lst))
(define count length)
(define (pr . a)
"Print"
(for-each display a))
(define (prn . a)
"Print, followed by a newline"
(apply pr a)
(newline))
(define (false? x)
(not (eq? #t x)))
(define (true? x)
(eq? #t x))
(define (some? a)
(not (null? a)))
(define (empty? a)
(equal? a '()))
(define (ffirst a)
(first (first a)))
(define (rest a)
"Returns a list of the items after the first."
(cdr a))
(define (last coll)
"Return the last time in coll, in linear time."
(if (second coll)
(last (rest coll))
(first coll)))
(define (butlast ls)
"Return everthing execpt the last element in ls."
(let ((len (length ls)))
(list-head ls (- len 1))))
;; Ignores body, returns '().
(define-syntax comment
(syntax-rules ()
((_ ...) '())))
(define (some pred coll)
(or (pred (first coll))
(some pred (second coll))))
(define comp compose)
(define (not-any? pred coll)
(comp not some))
(define (printf . args)
(display (apply format args)))
(define-syntax fmt
(syntax-rules ()
((_ s args ...)
(format #f s args ...))))
(define-syntax fn
(syntax-rules ()
((_ args body ...)
(lambda args body ...))))
(define-syntax ->
(syntax-rules ()
[(_ a) a]
[(_ a (b c ...))
(b a c ...)]
[(_ a b)
(-> a (b))]
[(_ a b c ...)
(-> (-> a b) c ...)]))
(define-syntax ->>
(syntax-rules ()
[(_ a) a]
[(_ a (b ...))
(b ... a)]
[(_ a b)
(b a)]
[(_ a b c ...)
(->> (->> a b) c ...)]))
;; Shen-like lambda
(define-syntax /.
(syntax-rules ()
[(/. a b)
(lambda (a) b)]
[(/. a ... b)
(lambda (a ...) b)]
[(/. a ... (b ...))
(lambda (a ...) (b ...))]))
(define (inc a) (+ a 1))
(define (dec a) (- a 1))
(define* (repeat a #:optional (n 10))
(do ((i 1 (inc i)))
((> i n))
a))
(define-syntax if-let
(syntax-rules ()
[(_ (binding value) then else)
(let ([binding value])
(if binding then else))]))
(define-syntax when-let
(syntax-rules ()
[(_ (binding value) body ...)
(when binding body ...)]))
;; source utils
(define (skip-lines port n)
(cond
((zero? n) port)
(else (read-line port) (skip-lines port (1- n)))))
(define (get-source* source pname)
(let* ([file (source:file source)]
[filename (any (fn (x)
(let ((f (string-append x "/" file)))
(if (file-exists? f) f #f)))
%load-path)]
[re (make-regexp (format #f "\\(define (~a|\\(~a.*\\))" pname pname))]
[read-between (lambda (in start end)
(seek in 0 SEEK_SET)
(skip-lines in (1- start))
(call-with-output-string
(lambda (out)
(let self ((line (read-line in))
(cur start))
(cond
[(or (eof-object? line) (> cur end))
(close in)]
[else
(format out "~a~%" line)
(self (read-line in) (inc cur))])))))])
(call-with-input-file filename
(lambda (in)
(let self ((line (read-line in)))
(cond
[(eof-object? line) #f]
[(regexp-exec re line)
(unread-string line in)
(let* ((start (port-line in))
(end (begin (read in) (port-line in))))
(read-between in start (inc end)))]
[else
(self (read-line in))]))))))
(define (get-source p)
"Get the source of a procedure as a string."
(let ((psrc (program-source p 0)))
(cond
[(not psrc) (fmt "<~a: compiled C procedure>\n" p)]
[(not (source:file psrc)) #f]
[else (get-source* psrc (symbol->string (procedure-name p)))])))
(define (source p)
"Print the source of a procedure."
(pr (get-source p)))
(define member? member)
(define (contains? ls x)
(member? x ls))
(define (turn ls f)
(map f ls))
(define (seq x)
(if (list? x)
x
(list x)))
|