@@ -68,12 +68,7 @@ public class Base16 extends BaseNCodec {
68
68
* This array is a lookup table that translates 4-bit positive integer index values into their "Base16 Alphabet" equivalents as specified in Table 5 of RFC
69
69
* 4648.
70
70
*/
71
- // @formatter:off
72
- private static final byte [] UPPER_CASE_ENCODE_TABLE = {
73
- '0' , '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' ,
74
- 'A' , 'B' , 'C' , 'D' , 'E' , 'F'
75
- };
76
- // @formatter:on
71
+ private static final byte [] UPPER_CASE_ENCODE_TABLE = { '0' , '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' , 'A' , 'B' , 'C' , 'D' , 'E' , 'F' };
77
72
78
73
/**
79
74
* This array is a lookup table that translates Unicode characters drawn from the a lower-case "Base16 Alphabet" into their 4-bit positive integer
@@ -95,12 +90,7 @@ public class Base16 extends BaseNCodec {
95
90
/**
96
91
* This array is a lookup table that translates 4-bit positive integer index values into their "Base16 Alphabet" lower-case equivalents.
97
92
*/
98
- // @formatter:off
99
- private static final byte [] LOWER_CASE_ENCODE_TABLE = {
100
- '0' , '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' ,
101
- 'a' , 'b' , 'c' , 'd' , 'e' , 'f'
102
- };
103
- // @formatter:on
93
+ private static final byte [] LOWER_CASE_ENCODE_TABLE = { '0' , '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' , 'a' , 'b' , 'c' , 'd' , 'e' , 'f' };
104
94
105
95
/** Mask used to extract 4 bits, used when decoding character. */
106
96
private static final int MASK_4BITS = 0x0f ;
@@ -164,42 +154,33 @@ void decode(final byte[] data, int offset, final int length, final Context conte
164
154
}
165
155
return ;
166
156
}
167
-
168
157
final int dataLen = Math .min (data .length - offset , length );
169
158
final int availableChars = (context .ibitWorkArea != 0 ? 1 : 0 ) + dataLen ;
170
-
171
159
// small optimization to short-cut the rest of this method when it is fed byte-by-byte
172
160
if (availableChars == 1 && availableChars == dataLen ) {
173
161
// store 1/2 byte for next invocation of decode, we offset by +1 as empty-value is 0
174
162
context .ibitWorkArea = decodeOctet (data [offset ]) + 1 ;
175
163
return ;
176
164
}
177
-
178
165
// we must have an even number of chars to decode
179
166
final int charsToProcess = availableChars % BYTES_PER_ENCODED_BLOCK == 0 ? availableChars : availableChars - 1 ;
180
167
final int end = offset + dataLen ;
181
-
182
168
final byte [] buffer = ensureBufferSize (charsToProcess / BYTES_PER_ENCODED_BLOCK , context );
183
-
184
169
int result ;
185
170
if (dataLen < availableChars ) {
186
171
// we have 1/2 byte from previous invocation to decode
187
172
result = context .ibitWorkArea - 1 << BITS_PER_ENCODED_BYTE ;
188
173
result |= decodeOctet (data [offset ++]);
189
-
190
174
buffer [context .pos ++] = (byte ) result ;
191
-
192
175
// reset to empty-value for next invocation!
193
176
context .ibitWorkArea = 0 ;
194
177
}
195
-
196
178
final int loopEnd = end - 1 ;
197
179
while (offset < loopEnd ) {
198
180
result = decodeOctet (data [offset ++]) << BITS_PER_ENCODED_BYTE ;
199
181
result |= decodeOctet (data [offset ++]);
200
182
buffer [context .pos ++] = (byte ) result ;
201
183
}
202
-
203
184
// we have one char of a hex-pair left over
204
185
if (offset < end ) {
205
186
// store 1/2 byte for next invocation of decode, we offset by +1 as empty-value is 0
@@ -212,11 +193,9 @@ private int decodeOctet(final byte octet) {
212
193
if ((octet & 0xff ) < decodeTable .length ) {
213
194
decoded = decodeTable [octet ];
214
195
}
215
-
216
196
if (decoded == -1 ) {
217
197
throw new IllegalArgumentException ("Invalid octet in encoded value: " + (int ) octet );
218
198
}
219
-
220
199
return decoded ;
221
200
}
222
201
@@ -225,19 +204,15 @@ void encode(final byte[] data, final int offset, final int length, final Context
225
204
if (context .eof ) {
226
205
return ;
227
206
}
228
-
229
207
if (length < 0 ) {
230
208
context .eof = true ;
231
209
return ;
232
210
}
233
-
234
211
final int size = length * BYTES_PER_ENCODED_BLOCK ;
235
212
if (size < 0 ) {
236
213
throw new IllegalArgumentException ("Input length exceeds maximum size for encoded data: " + length );
237
214
}
238
-
239
215
final byte [] buffer = ensureBufferSize (size , context );
240
-
241
216
final int end = offset + length ;
242
217
for (int i = offset ; i < end ; i ++) {
243
218
final int value = data [i ];
0 commit comments