-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.arc
More file actions
162 lines (140 loc) · 4.99 KB
/
strings.arc
File metadata and controls
162 lines (140 loc) · 4.99 KB
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
; Matching. Spun off 29 Jul 06.
; arc> (tostring (writec (coerce 133 'char)))
;
;> (define ss (open-output-string))
;> (write-char (integer->char 133) ss)
;> (get-output-string ss)
;"\u0085"
(def tokens (s (o sep whitec))
(let test (if (isa sep 'fn) sep (fn (c) (is c sep)))
(let rec (afn (cs toks tok)
(if (no cs) (consif tok toks)
(test (car cs)) (self (cdr cs) (consif tok toks) nil)
(self (cdr cs) toks (cons (car cs) tok))))
(rev (map [coerce _ 'string]
(map rev (rec (coerce s 'cons) nil nil)))))))
; > (require (lib "uri-codec.ss" "net"))
;> (form-urlencoded-decode "x%ce%bbx")
;"xλx"
; first byte: 0-7F, 1 char; c2-df 2; e0-ef 3, f0-f4 4.
; Fixed for utf8 by pc.
(def urldecode (s)
(tostring
(forlen i s
(caselet c (s i)
#\+ (writec #\space)
#\% (do (when (> (- (len s) i) 2)
(let code (coerce (cut s (+ i 1) (+ i 3))
'int 16)
(writeb code)))
(++ i 2))
(writec c)))))
(mac litmatch (pat string (o start 0))
(w/uniq (gstring gstart)
`(with (,gstring ,string ,gstart ,start)
(unless (> (+ ,gstart ,(len pat)) (len ,gstring))
(and ,@(let acc nil
(forlen i pat
(push `(is ,(pat i) (,gstring (+ ,gstart ,i)))
acc))
(rev acc)))))))
; litmatch would be cleaner if map worked for string and integer args:
; ,@(map (fn (n c)
; `(is ,c (,gstring (+ ,gstart ,n))))
; (len pat)
; pat)
(mac endmatch (pat string)
(w/uniq (gstring glen)
`(withs (,gstring ,string ,glen (len ,gstring))
(unless (> ,(len pat) (len ,gstring))
(and ,@(let acc nil
(forlen i pat
(push `(is ,(pat (- (len pat) 1 i))
(,gstring (- ,glen 1 ,i)))
acc))
(rev acc)))))))
(def posmatch (pat seq (o start 0))
(catch
(if (isa pat 'fn)
(for i start (- (len seq) 1)
(when (pat (seq i)) (throw i)))
(for i start (- (len seq) (- (len pat) 2))
(when (headmatch pat seq i) (throw i))))
nil))
(def headmatch (pat seq (o start 0))
(let p (len pat)
((afn (i)
(or (is i p)
(and (is (pat i) (seq (+ i start)))
(self (+ i 1)))))
0)))
(def begins (seq pat (o start 0))
(unless (len> pat (- (len seq) start))
(headmatch pat seq start)))
(def subst (new old seq)
(let boundary (+ (- (len seq) (len old)) 1)
(tostring
(forlen i seq
(if (and (< i boundary) (headmatch old seq i))
(do (++ i (- (len old) 1))
(pr new))
(pr (seq i)))))))
(def multisubst (pairs seq)
(tostring
(forlen i seq
(iflet (old new) (find [begins seq (car _) i] pairs)
(do (++ i (- (len old) 1))
(pr new))
(pr (seq i))))))
; not a good name
(def findsubseq (pat seq (o start 0))
(if (< (- (len seq) start) (len pat))
nil
(if (headmatch pat seq start)
start
(findsubseq pat seq (+ start 1)))))
(def blank (s) (~find ~whitec s))
(def trim (s where (o test whitec))
(withs (f (testify test)
p1 (pos ~f s))
(if p1
(cut s
(if (in where 'front 'both) p1 0)
(when (in where 'end 'both)
(let i (- (len s) 1)
(while (and (> i p1) (f (s i)))
(-- i))
(+ i 1))))
"")))
(def num (m (o digits 2) (o trail-zeros nil) (o init-zero nil))
(let comma
(fn (i)
(tostring
(map [apply pr (rev _)]
(rev (intersperse '(#\,)
(tuples (rev (coerce (string i) 'cons))
3))))))
(if (< digits 1)
(comma (roundup m))
(exact m)
(string (comma m)
(when (and trail-zeros (> digits 0))
(string "." (newstring digits #\0))))
(withs (d (expt 10 digits)
n (/ (roundup (* m d)) d)
i (trunc n))
(+ (if (is i 0) (if init-zero "0" "") (comma i))
(withs (rest (string (abs (trunc (- (* n d) (* i d)))))
padded (+ (newstring (- digits (len rest)) #\0)
rest)
final (if trail-zeros
padded
(trim padded 'end [is _ #\0])))
(string (unless (empty final) ".")
final)))))))
; http://www.eki.ee/letter/chardata.cgi?HTML4=1
; http://jrgraphix.net/research/unicode_blocks.php?block=1
; http://home.tiscali.nl/t876506/utf8tbl.html
; http://www.fileformat.info/info/unicode/block/latin_supplement/utf8test.htm
; http://en.wikipedia.org/wiki/Utf-8
; http://unicode.org/charts/charindex2.html