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
|
use std
pkg escfmt =
type escurl = byte[:]
const url : (s : byte[:] -> escurl)
;;
const __init__ = {
var s = ("" : escurl)
std.fmtinstall(std.typeof(s), urlfmt, [][:])
}
const url = {s
-> (s : escurl)
}
const urlfmt = {sb, ap, args
var s : byte[:]
s = std.vanext(ap)
for b in s
match (b : char)
| ':': std.sbfmt(sb, "%{x}", b)
| '/': std.sbfmt(sb, "%{x}", b)
| '?': std.sbfmt(sb, "%{x}", b)
| '#': std.sbfmt(sb, "%{x}", b)
| '[': std.sbfmt(sb, "%{x}", b)
| ']': std.sbfmt(sb, "%{x}", b)
| '@': std.sbfmt(sb, "%{x}", b)
| '!': std.sbfmt(sb, "%{x}", b)
| '$': std.sbfmt(sb, "%{x}", b)
| '&': std.sbfmt(sb, "%{x}", b)
| '\'': std.sbfmt(sb, "%{x}", b)
| '(': std.sbfmt(sb, "%{x}", b)
| ')': std.sbfmt(sb, "%{x}", b)
| '*': std.sbfmt(sb, "%{x}", b)
| '+': std.sbfmt(sb, "%{x}", b)
| ',': std.sbfmt(sb, "%{x}", b)
| ';': std.sbfmt(sb, "%{x}", b)
| '=': std.sbfmt(sb, "%{x}", b)
| '%': std.sbfmt(sb, "%{x}", b)
| c:
if b >= 0x80
std.sbfmt(sb, "%{x}", b)
else
std.sbfmt(sb, "{}", c)
;;
;;
;;
}
|