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
|
/* Copyright (C) 1999 Aladdin Enterprises. All rights reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
For more information about licensing, please refer to
http://www.ghostscript.com/licensing/. For information on
commercial licensing, go to http://www.artifex.com/licensing/ or
contact Artifex Software, Inc., 101 Lucas Valley Road #110,
San Rafael, CA 94903, U.S.A., +1(415)492-9861.
*/
/* $Id$ */
/* ASCII85Decode filter */
#include "std.h"
#include "strimpl.h"
#include "sa85d.h"
#include "scanchar.h"
/* ------ ASCII85Decode ------ */
private_st_A85D_state();
/* Initialize the state */
private int
s_A85D_init(stream_state * st)
{
stream_A85D_state *const ss = (stream_A85D_state *) st;
return s_A85D_init_inline(ss);
}
/* Process a buffer */
private int a85d_finish(P3(int, ulong, stream_cursor_write *));
private int
s_A85D_process(stream_state * st, stream_cursor_read * pr,
stream_cursor_write * pw, bool last)
{
stream_A85D_state *const ss = (stream_A85D_state *) st;
register const byte *p = pr->ptr;
register byte *q = pw->ptr;
const byte *rlimit = pr->limit;
byte *wlimit = pw->limit;
int ccount = ss->odd;
ulong word = ss->word;
int status = 0;
while (p < rlimit) {
int ch = *++p;
uint ccode = ch - '!';
if (ccode < 85) { /* catches ch < '!' as well */
if (ccount == 4) {
/*
* We've completed a 32-bit group. Make sure we have
* room for it in the output.
*/
if (wlimit - q < 4) {
p--;
status = 1;
break;
}
word = word * 85 + ccode;
q[1] = (byte) (word >> 24);
q[2] = (byte) (word >> 16);
q[3] = (byte) ((uint) word >> 8);
q[4] = (byte) word;
q += 4;
word = 0;
ccount = 0;
} else {
word = word * 85 + ccode;
++ccount;
}
} else if (ch == 'z' && ccount == 0) {
if (wlimit - q < 4) {
p--;
status = 1;
break;
}
q[1] = q[2] = q[3] = q[4] = 0,
q += 4;
} else if (scan_char_decoder[ch] == ctype_space)
DO_NOTHING;
else if (ch == '~') {
/* Handle odd bytes. */
if (p == rlimit) {
if (last)
status = ERRC;
else
p--;
break;
}
if ((int)(wlimit - q) < ccount - 1) {
status = 1;
p--;
break;
}
if (*++p != '>') {
status = ERRC;
break;
}
pw->ptr = q;
status = a85d_finish(ccount, word, pw);
q = pw->ptr;
break;
} else { /* syntax error or exception */
status = ERRC;
break;
}
}
pw->ptr = q;
if (status == 0 && last) {
if ((int)(wlimit - q) < ccount - 1)
status = 1;
else
status = a85d_finish(ccount, word, pw);
}
pr->ptr = p;
ss->odd = ccount;
ss->word = word;
return status;
}
/* Handle the end of input data. */
private int
a85d_finish(int ccount, ulong word, stream_cursor_write * pw)
{
/* Assume there is enough room in the output buffer! */
byte *q = pw->ptr;
int status = EOFC;
switch (ccount) {
case 0:
break;
case 1: /* syntax error */
status = ERRC;
break;
case 2: /* 1 odd byte */
word = word * (85L * 85 * 85) + 0xffffffL;
goto o1;
case 3: /* 2 odd bytes */
word = word * (85L * 85) + 0xffffL;
goto o2;
case 4: /* 3 odd bytes */
word = word * 85 + 0xffL;
q[3] = (byte) (word >> 8);
o2: q[2] = (byte) (word >> 16);
o1: q[1] = (byte) (word >> 24);
q += ccount - 1;
pw->ptr = q;
}
return status;
}
/* Stream template */
const stream_template s_A85D_template = {
&st_A85D_state, s_A85D_init, s_A85D_process, 2, 4
};
|