-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
decode.jl
218 lines (193 loc) · 5.28 KB
/
decode.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
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
# This file is a part of Julia. License is MIT: https://julialang.org/license
# Generate decode table.
const BASE64_CODE_END = 0x40
const BASE64_CODE_PAD = 0x41
const BASE64_CODE_IGN = 0x42
const BASE64_DECODE = fill(BASE64_CODE_IGN, 256)
for (i, c) in enumerate(BASE64_ENCODE)
BASE64_DECODE[Int(c)+1] = UInt8(i - 1)
end
BASE64_DECODE[Int(encodepadding())+1] = BASE64_CODE_PAD
decode(x::UInt8) = @inbounds return BASE64_DECODE[x + 1]
"""
Base64DecodePipe(istream)
Return a new read-only I/O stream, which decodes base64-encoded data read from
`istream`.
# Examples
```jldoctest
julia> io = IOBuffer();
julia> iob64_decode = Base64DecodePipe(io);
julia> write(io, "SGVsbG8h")
8
julia> seekstart(io);
julia> String(read(iob64_decode))
"Hello!"
```
"""
struct Base64DecodePipe <: IO
io::IO
buffer::Buffer
rest::Vector{UInt8}
function Base64DecodePipe(io::IO)
buffer = Buffer(512)
return new(io, buffer, UInt8[])
end
end
function Base.unsafe_read(pipe::Base64DecodePipe, ptr::Ptr{UInt8}, n::UInt)
p = read_until_end(pipe, ptr, n)
if p < ptr + n
throw(EOFError())
end
return nothing
end
# Read and decode as much data as possible.
function read_until_end(pipe::Base64DecodePipe, ptr::Ptr{UInt8}, n::UInt)
p = ptr
p_end = ptr + n
while !isempty(pipe.rest) && p < p_end
unsafe_store!(p, popfirst!(pipe.rest))
p += 1
end
buffer = pipe.buffer
i = 0
b1 = b2 = b3 = b4 = BASE64_CODE_IGN
while true
if b1 < 0x40 && b2 < 0x40 && b3 < 0x40 && b4 < 0x40 && p + 2 < p_end
# fast path to decode
unsafe_store!(p , b1 << 2 | b2 >> 4)
unsafe_store!(p + 1, b2 << 4 | b3 >> 2)
unsafe_store!(p + 2, b3 << 6 | b4 )
p += 3
else
i, p, ended = decode_slow(b1, b2, b3, b4, buffer, i, pipe.io, p, p_end - p, pipe.rest)
if ended
break
end
end
if p < p_end
if i + 4 ≤ lastindex(buffer)
b1 = decode(buffer[i+1])
b2 = decode(buffer[i+2])
b3 = decode(buffer[i+3])
b4 = decode(buffer[i+4])
i += 4
else
consumed!(buffer, i)
read_to_buffer(pipe.io, buffer)
i = 0
b1 = b2 = b3 = b4 = BASE64_CODE_IGN
end
else
break
end
end
consumed!(buffer, i)
return p
end
function Base.read(pipe::Base64DecodePipe, ::Type{UInt8})
if isempty(pipe.rest)
unsafe_read(pipe, convert(Ptr{UInt8}, C_NULL), 0)
if isempty(pipe.rest)
throw(EOFError())
end
end
return popfirst!(pipe.rest)
end
function Base.readbytes!(pipe::Base64DecodePipe, data::AbstractVector{UInt8}, nb::Integer=length(data))
require_one_based_indexing(data)
filled::Int = 0
while filled < nb && !eof(pipe)
if length(data) == filled
resize!(data, min(length(data) * 2, nb))
end
p = pointer(data, filled + 1)
p_end = read_until_end(pipe, p, UInt(min(length(data), nb) - filled))
filled += p_end - p
end
resize!(data, filled)
return filled
end
Base.eof(pipe::Base64DecodePipe) = isempty(pipe.rest) && eof(pipe.io)
Base.close(pipe::Base64DecodePipe) = nothing
# Decode data from (b1, b2, b3, b5, buffer, input) into (ptr, rest).
function decode_slow(b1, b2, b3, b4, buffer, i, input, ptr, n, rest)
# Skip ignore code.
while true
if b1 == BASE64_CODE_IGN
b1, b2, b3 = b2, b3, b4
elseif b2 == BASE64_CODE_IGN
b2, b3 = b3, b4
elseif b3 == BASE64_CODE_IGN
b3 = b4
elseif b4 == BASE64_CODE_IGN
# pass
else
break
end
if i + 1 ≤ lastindex(buffer)
b4 = decode(buffer[i+=1])
elseif !eof(input)
b4 = decode(read(input, UInt8))
else
b4 = BASE64_CODE_END
break
end
end
# Check the decoded quadruplet.
k = 0
if b1 < 0x40 && b2 < 0x40 && b3 < 0x40 && b4 < 0x40
k = 3
elseif b1 < 0x40 && b2 < 0x40 && b3 < 0x40 && b4 == BASE64_CODE_PAD
b4 = 0x00
k = 2
elseif b1 < 0x40 && b2 < 0x40 && b3 == b4 == BASE64_CODE_PAD
b3 = b4 = 0x00
k = 1
elseif b1 == b2 == b3 == BASE64_CODE_IGN && b4 == BASE64_CODE_END
b1 = b2 = b3 = b4 = 0x00
else
throw(ArgumentError("malformed base64 sequence"))
end
# Write output.
p::Ptr{UInt8} = ptr
p_end = ptr + n
function output(b)
if p < p_end
unsafe_store!(p, b)
p += 1
else
push!(rest, b)
end
end
k ≥ 1 && output(b1 << 2 | b2 >> 4)
k ≥ 2 && output(b2 << 4 | b3 >> 2)
k ≥ 3 && output(b3 << 6 | b4 )
return i, p, k == 0
end
"""
base64decode(string)
Decode the base64-encoded `string` and returns a `Vector{UInt8}` of the decoded
bytes.
See also [`base64encode`](@ref).
# Examples
```jldoctest
julia> b = base64decode("SGVsbG8h")
6-element Array{UInt8,1}:
0x48
0x65
0x6c
0x6c
0x6f
0x21
julia> String(b)
"Hello!"
```
"""
function base64decode(s)
b = IOBuffer(s)
try
return read(Base64DecodePipe(b))
finally
close(b)
end
end