-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathformat.ss
311 lines (270 loc) · 9.2 KB
/
format.ss
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
;;; -*- Gerbil -*-
;;; (C) vyzo at hackzen.org
;;; format and friends
(export format printf fprintf eprintf)
(import :gerbil/gambit
(only-in :std/misc/repr
print-representation)
:std/error)
(def (format fmt . args)
(unless (string? fmt)
(raise-bad-argument format "string" fmt))
(let (out (open-output-string))
(dofmt out fmt args)
(get-output-string out)))
(def (printf fmt . args)
(apply fprintf (current-output-port) fmt args))
(def (fprintf port fmt . args)
(unless (output-port? port)
(raise-bad-argument fprintf "output port" port))
(unless (string? fmt)
(raise-bad-argument fprintf "string" fmt))
(dofmt port fmt args))
(def (eprintf fmt . args)
(apply fprintf (current-error-port) fmt args)
(force-output (current-error-port)))
;;; implementation
;; mostly srfi-48-style format strings, except the brain damage.
;; departures:
;; lower-case synonyms for all format specifiers
;; ~u/~U for unicode hex char print (for #\uXXXX)
;; ~f/~F means "float" and does non-exp fp (C-style %f more or less)
;; ~r/~R means "repr" and works with `:std/misc/repr` and the `:pr` method
;; ~w{spec} does generic fixed width
;; ~! does force-output (inspired by OCaml)
;; not implemented: ~& ~H wtfs
;; TODO: ~g/~e for C-style %g/%e
;; format dispatch loop
(def (dofmt port fmt args)
(def len (##string-length fmt))
(parameterize ((current-output-port port)
(current-format-string fmt)
(current-format-args args))
(let K ((xi 0) (rest args))
(if (##fx< xi len)
(let ((next (##string-ref fmt xi))
(xi (##fx+ xi 1)))
(if (eq? next #\~)
(if (##fx< xi len)
(let ((next (##string-ref fmt xi))
(xi (##fx+ xi 1)))
(cond
((hash-get dispatch-table next)
=> (cut <> next K xi rest))
(else
(raise-bad-argument format "format specifier" fmt next))))
(raise-bad-argument format "format string" fmt))
(begin
(write-char next)
(K xi rest))))
(unless (null? rest)
(raise-bad-argument format "format string -- too many arguments" fmt args))))))
;; format parameters
(def current-format-string
(make-parameter #f))
(def current-format-args
(make-parameter #f))
;; format methods
(def dispatch-table
(make-hash-table-immediate))
(defrules with-args ()
((_ rest (arg . rest-args) body ...)
(match rest
([arg . rest-args]
body ...)
(else
(raise-bad-argument format "format string -- missing argument"
(current-format-string) (current-format-args))))))
(defrules defdispatch ()
((_ (char ...) proc)
(begin (hash-put! dispatch-table char proc) ...)))
(defrules defdispatch-e ()
((_ (char ...) dispatch-e)
(defdispatch (char ...)
(lambda (_ K xi rest)
(with-args rest (arg . rest)
(dispatch-e arg)
(K xi rest))))))
(defrules defdispatch-q ()
((_ (char ...) expr)
(defdispatch (char ...)
(lambda (_ K xi rest)
expr
(K xi rest)))))
(defdispatch-e (#\a #\A)
display)
(defdispatch-e (#\s #\S)
write)
(defdispatch-e (#\c #\C)
write-char)
(defdispatch-e (#\u #\U)
(lambda (arg)
(let (i (char->integer arg))
(cond
((##fx< i #xf) (display "000"))
((##fx< i #xff) (display "00"))
((##fx< i #xfff) (display "0")))
(display (number->string i 16)))))
(defdispatch-e (#\b #\B)
(lambda (arg)
(display (number->string arg 2))))
(defdispatch-e (#\o #\O)
(lambda (arg)
(display (number->string arg 8))))
(defdispatch-e (#\d #\D)
(lambda (arg)
(display (number->string arg 10))))
(defdispatch-e (#\x #\X)
(lambda (arg)
(let ((str (number->string arg 16))
(nbytes (ceiling (/ (integer-length arg) 8))))
(if (zero? nbytes)
(display "00")
(display (pad-string str (* 2 nbytes) #\0))))))
(defdispatch-e (#\y #\Y)
pretty-print)
(defdispatch-e (#\r #\R)
print-representation)
(defdispatch-q (#\% #\n)
(newline))
(defdispatch-q (#\~)
(write-char #\~))
(defdispatch-q (#\t #\T)
(write-char #\tab))
(defdispatch-q (#\_)
(write-char #\space))
(defdispatch-q (#\!)
(force-output))
;; recursive format
(defdispatch (#\? #\k #\K)
(lambda (_ K xi rest)
(with-args rest (re-fmt re-args . rest)
(display (apply format re-fmt re-args))
(K xi rest))))
;; fixed width specifiers
(defdispatch (#\f #\F)
(lambda (_ K xi rest)
(format-fixed-float #f #f K xi rest)))
(defdispatch (#\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9)
(lambda (char K xi rest)
(let* ((str (current-format-string))
(len (##string-length str)))
(defrules bad-format-string ()
((_)
(raise-bad-argument format "format string -- malformed fixed width specifier"
str (current-format-args))))
(let lp ((xi xi) (width [char]))
(if (##fx< xi len)
(let ((next (##string-ref str xi))
(xi (##fx+ xi 1)))
(case next
((#\f #\F)
(format-fixed-float (chars->number (reverse width))
#f K xi rest))
((#\,)
(let lp2 ((xi xi) (digits []))
(if (##fx< xi len)
(let ((next (##string-ref str xi))
(xi (##fx+ xi 1)))
(cond
((char-numeric? next)
(lp2 xi (cons next digits)))
((and (memq next '(#\f #\F))
(not (null? digits)))
(format-fixed-float (chars->number (reverse width))
(chars->number (reverse digits))
K xi rest))
(else
(bad-format-string))))
(bad-format-string))))
(else
(cond
((char-numeric? next)
(lp xi (cons next width)))
((hash-get dispatch-table next)
=> (lambda (f)
(format-fixed-generic (chars->number (reverse width))
f next xi rest K)))
(else
(raise-bad-argument "format string -- unknown format specifier" str next))))))
(bad-format-string))))))
(def (format-fixed-generic width f next xi rest K)
(let* ((xi* #f)
(rest* #f)
(K*
(lambda (xi rest)
(set! xi* xi)
(set! rest* rest)))
(str
(with-output-to-string []
(lambda () (f next K* xi rest)))))
(display (pad-string str width))
(K xi* rest*)))
(def (format-fixed-float width digits K xi rest)
(def (format-fixed arg digits)
(cond
((number? arg)
(let ((real (real-part arg))
(imag (imag-part arg)))
(cond
((not (zero? imag))
(string-append
(format-fixed real digits)
(if (and (finite? imag) (positive? imag)) "+" "")
(format-fixed imag digits)
"i"))
((not (finite? real))
(number->string real))
(digits
(let* ((shift (expt 10 digits))
(num (round (* (inexact->exact real) shift)))
(absnum (abs num))
(pre-str (number->string (quotient absnum shift)))
(pre-str
(if (negative? num)
(string-append "-" pre-str)
pre-str))
(frac-str (number->string (remainder absnum shift))))
(compose-float digits pre-str frac-str)))
(else
(pad-zeros (number->string (exact->inexact arg)))))))
(else
(raise-bad-argument format "number -- float format specifier"
(current-format-string) (current-format-args) arg))))
(def (compose-float digits pre-str frac-str)
(let (frac-len (string-length frac-str))
(cond
((##fx< frac-len digits)
(string-append pre-str "." (make-string (##fx- digits frac-len) #\0)
frac-str))
((##fx= frac-len digits)
(string-append pre-str "." frac-str))
((##fx= digits 0)
(if (equal? pre-str "-0") "0" pre-str))
(else
(BUG 'format "compose-float" digits pre-str frac-str)))))
;; ensure there is a leading zero for sub-1 magnitude floats
;; ensure there is a fractional part
(def (pad-zeros str)
(let ((dot (string-index str #\.))
(len (string-length str)))
(cond
((not dot) str)
((##fxzero? dot)
(string-append "0" str))
((and (##fx= dot 1) (eq? (##string-ref str 0) #\-))
(string-append "-0" (substring str 1 len)))
((##fx= (##fx+ dot 1) len)
(string-append str "0"))
(else str))))
(let (width (or width 0))
(with-args rest (arg . rest)
(display (pad-string (format-fixed arg digits) width))
(K xi rest))))
(def (chars->number chars)
(string->number (apply string chars)))
(def (pad-string str width (char #\space))
(let (len (string-length str))
(if (##fx< len width)
(string-append (make-string (##fx- width len) char) str)
str)))