-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathbase64.jl
137 lines (118 loc) · 3.35 KB
/
base64.jl
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
module Base64
import Base: read, write, close
export Base64Pipe, base64
# Base64Pipe is a pipe-like IO object, which converts writes (and
# someday reads?) into base64 encoded (decoded) data send to a stream.
# (You must close the pipe to complete the encode, separate from
# closing the target stream). We also have a function base64(f,
# args...) which works like sprint except that it produces
# base64-encoded data, along with base64(args...) which is equivalent
# to base64(write, args...), to return base64 strings.
#############################################################################
type Base64Pipe <: IO
io::IO
# writing works in groups of 3, so we need to cache last two bytes written
b0::Uint8
b1::Uint8
nb::Uint8 # number of bytes in cache: 0, 1, or 2
function Base64Pipe(io::IO)
b = new(io,0,0,0)
finalizer(b, close)
return b
end
end
#############################################################################
# Based on code by Stefan Karpinski from https://github.com/hackerschool/WebSockets.jl (distributed under the same MIT license as Julia)
const b64chars = ['A':'Z','a':'z','0':'9','+','/']
function b64(x::Uint8, y::Uint8, z::Uint8)
n = int(x)<<16 | int(y)<<8 | int(z)
b64chars[(n >> 18) + 1],
b64chars[(n >> 12) & 0b111111 + 1],
b64chars[(n >> 6) & 0b111111 + 1],
b64chars[(n ) & 0b111111 + 1]
end
function b64(x::Uint8, y::Uint8)
a, b, c = b64(x, y, 0x0)
a, b, c, '='
end
function b64(x::Uint8)
a, b = b64(x, 0x0, 0x0)
a, b, '=', '='
end
#############################################################################
function write(b::Base64Pipe, x::AbstractVector{Uint8})
n = length(x)
s = 1 # starting index
# finish any cached data to write:
if b.nb == 1
if n >= 2
write(b.io, b64(b.b0, x[1], x[2])...)
s = 3
elseif n == 1
b.b1 = x[1]
b.nb = 2
return
else
return
end
elseif b.nb == 2
if n >= 1
write(b.io, b64(b.b0, b.b1, x[1])...)
s = 2
else
return
end
end
# write all groups of three bytes:
while s + 2 <= n
write(b.io, b64(x[s], x[s+1], x[s+2])...)
s += 3
end
# cache any leftover bytes:
if s + 1 == n
b.b0 = x[s]
b.b1 = x[s+1]
b.nb = 2
elseif s == n
b.b0 = x[s]
b.nb = 1
else
b.nb = 0
end
end
function write(b::Base64Pipe, x::Uint8)
if b.nb == 0
b.b0 = x
b.nb = 1
elseif b.nb == 1
b.b1 = x
b.nb = 2
else
write(b.io, b64(b.b0,b.b1,x)...)
b.nb = 0
end
end
function close(b::Base64Pipe)
if b.nb > 0
# write leftover bytes + padding
if b.nb == 1
write(b.io, b64(b.b0)...)
else # b.nb == 2
write(b.io, b64(b.b0, b.b1)...)
end
b.nb = 0
end
end
# like sprint, but returns base64 string
function base64(f::Function, args...)
s = IOBuffer()
b = Base64Pipe(s)
f(b, args...)
close(b)
takebuf_string(s)
end
base64(x...) = base64(write, x...)
#############################################################################
# read(b::Base64Pipe, ::Type{Uint8}) = # TODO: decode base64
#############################################################################
end # module