author | yhuang |
Sat, 16 Feb 2013 21:22:11 -0800 | |
changeset 16003 | 3d878358e182 |
parent 15533 | 47318ecea33b |
child 16727 | 1d83fd280379 |
permissions | -rw-r--r-- |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1 |
/* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
2 |
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
4 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. Oracle designates this |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
8 |
* particular file as subject to the "Classpath" exception as provided |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
10 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
15 |
* accompanied this code). |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
16 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
17 |
* You should have received a copy of the GNU General Public License version |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
20 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
22 |
* or visit www.oracle.com if you need additional information or have any |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
23 |
* questions. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
24 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
25 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
26 |
package java.util; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
27 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
28 |
import java.io.FilterOutputStream; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
29 |
import java.io.InputStream; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
30 |
import java.io.IOException; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
31 |
import java.io.OutputStream; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
32 |
import java.nio.ByteBuffer; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
33 |
import java.nio.charset.StandardCharsets; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
34 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
35 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
36 |
* This class consists exclusively of static methods for obtaining |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
37 |
* encoders and decoders for the Base64 encoding scheme. The |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
38 |
* implementation of this class supports the following types of Base64 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
39 |
* as specified in |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
40 |
* <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a> and |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
41 |
* <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
42 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
43 |
* <p> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
44 |
* <ul> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
45 |
* <a name="basic"> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
46 |
* <li><b>Basic</b> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
47 |
* <p> Uses "The Base64 Alphabet" as specified in Table 1 of |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
48 |
* RFC 4648 and RFC 2045 for encoding and decoding operation. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
49 |
* The encoder does not add any line feed (line separator) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
50 |
* character. The decoder rejects data that contains characters |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
51 |
* outside the base64 alphabet.</p></li> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
52 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
53 |
* <a name="url"> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
54 |
* <li><b>URL and Filename safe</b> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
55 |
* <p> Uses the "URL and Filename safe Base64 Alphabet" as specified |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
56 |
* in Table 2 of RFC 4648 for encoding and decoding. The |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
57 |
* encoder does not add any line feed (line separator) character. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
58 |
* The decoder rejects data that contains characters outside the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
59 |
* base64 alphabet.</p></li> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
60 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
61 |
* <a name="mime"> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
62 |
* <li><b>MIME</b> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
63 |
* <p> Uses the "The Base64 Alphabet" as specified in Table 1 of |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
64 |
* RFC 2045 for encoding and decoding operation. The encoded output |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
65 |
* must be represented in lines of no more than 76 characters each |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
66 |
* and uses a carriage return {@code '\r'} followed immediately by |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
67 |
* a linefeed {@code '\n'} as the line separator. No line separator |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
68 |
* is added to the end of the encoded output. All line separators |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
69 |
* or other characters not found in the base64 alphabet table are |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
70 |
* ignored in decoding operation.</p></li> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
71 |
* </ul> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
72 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
73 |
* <p> Unless otherwise noted, passing a {@code null} argument to a |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
74 |
* method of this class will cause a {@link java.lang.NullPointerException |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
75 |
* NullPointerException} to be thrown. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
76 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
77 |
* @author Xueming Shen |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
78 |
* @since 1.8 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
79 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
80 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
81 |
public class Base64 { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
82 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
83 |
private Base64() {} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
84 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
85 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
86 |
* Returns a {@link Encoder} that encodes using the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
87 |
* <a href="#basic">Basic</a> type base64 encoding scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
88 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
89 |
* @return A Base64 encoder. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
90 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
91 |
public static Encoder getEncoder() { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
92 |
return Encoder.RFC4648; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
93 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
94 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
95 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
96 |
* Returns a {@link Encoder} that encodes using the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
97 |
* <a href="#url">URL and Filename safe</a> type base64 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
98 |
* encoding scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
99 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
100 |
* @return A Base64 encoder. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
101 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
102 |
public static Encoder getUrlEncoder() { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
103 |
return Encoder.RFC4648_URLSAFE; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
104 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
105 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
106 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
107 |
* Returns a {@link Encoder} that encodes using the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
108 |
* <a href="#mime">MIME</a> type base64 encoding scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
109 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
110 |
* @return A Base64 encoder. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
111 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
112 |
public static Encoder getMimeEncoder() { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
113 |
return Encoder.RFC2045; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
114 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
115 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
116 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
117 |
* Returns a {@link Encoder} that encodes using the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
118 |
* <a href="#mime">MIME</a> type base64 encoding scheme |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
119 |
* with specified line length and line separators. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
120 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
121 |
* @param lineLength |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
122 |
* the length of each output line (rounded down to nearest multiple |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
123 |
* of 4). If {@code lineLength <= 0} the output will not be separated |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
124 |
* in lines |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
125 |
* @param lineSeparator |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
126 |
* the line separator for each output line |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
127 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
128 |
* @return A Base64 encoder. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
129 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
130 |
* @throws IllegalArgumentException if {@code lineSeparator} includes any |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
131 |
* character of "The Base64 Alphabet" as specified in Table 1 of |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
132 |
* RFC 2045. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
133 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
134 |
public static Encoder getEncoder(int lineLength, byte[] lineSeparator) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
135 |
Objects.requireNonNull(lineSeparator); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
136 |
int[] base64 = Decoder.fromBase64; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
137 |
for (byte b : lineSeparator) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
138 |
if (base64[b & 0xff] != -1) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
139 |
throw new IllegalArgumentException( |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
140 |
"Illegal base64 line separator character 0x" + Integer.toString(b, 16)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
141 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
142 |
return new Encoder(false, lineSeparator, lineLength >> 2 << 2); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
143 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
144 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
145 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
146 |
* Returns a {@link Decoder} that decodes using the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
147 |
* <a href="#basic">Basic</a> type base64 encoding scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
148 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
149 |
* @return A Base64 decoder. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
150 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
151 |
public static Decoder getDecoder() { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
152 |
return Decoder.RFC4648; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
153 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
154 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
155 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
156 |
* Returns a {@link Decoder} that decodes using the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
157 |
* <a href="#url">URL and Filename safe</a> type base64 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
158 |
* encoding scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
159 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
160 |
* @return A Base64 decoder. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
161 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
162 |
public static Decoder getUrlDecoder() { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
163 |
return Decoder.RFC4648_URLSAFE; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
164 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
165 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
166 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
167 |
* Returns a {@link Decoder} that decodes using the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
168 |
* <a href="#mime">MIME</a> type base64 decoding scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
169 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
170 |
* @return A Base64 decoder. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
171 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
172 |
public static Decoder getMimeDecoder() { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
173 |
return Decoder.RFC2045; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
174 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
175 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
176 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
177 |
* This class implements an encoder for encoding byte data using |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
178 |
* the Base64 encoding scheme as specified in RFC 4648 and RFC 2045. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
179 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
180 |
* <p> Instances of {@link Encoder} class are safe for use by |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
181 |
* multiple concurrent threads. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
182 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
183 |
* <p> Unless otherwise noted, passing a {@code null} argument to |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
184 |
* a method of this class will cause a |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
185 |
* {@link java.lang.NullPointerException NullPointerException} to |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
186 |
* be thrown. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
187 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
188 |
* @see Decoder |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
189 |
* @since 1.8 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
190 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
191 |
public static class Encoder { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
192 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
193 |
private final byte[] newline; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
194 |
private final int linemax; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
195 |
private final boolean isURL; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
196 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
197 |
private Encoder(boolean isURL, byte[] newline, int linemax) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
198 |
this.isURL = isURL; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
199 |
this.newline = newline; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
200 |
this.linemax = linemax; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
201 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
202 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
203 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
204 |
* This array is a lookup table that translates 6-bit positive integer |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
205 |
* index values into their "Base64 Alphabet" equivalents as specified |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
206 |
* in "Table 1: The Base64 Alphabet" of RFC 2045 (and RFC 4648). |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
207 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
208 |
private static final char[] toBase64 = { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
209 |
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
210 |
'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
211 |
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
212 |
'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
213 |
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/' |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
214 |
}; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
215 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
216 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
217 |
* It's the lookup table for "URL and Filename safe Base64" as specified |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
218 |
* in Table 2 of the RFC 4648, with the '+' and '/' changed to '-' and |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
219 |
* '_'. This table is used when BASE64_URL is specified. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
220 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
221 |
private static final char[] toBase64URL = { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
222 |
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
223 |
'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
224 |
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
225 |
'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
226 |
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_' |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
227 |
}; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
228 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
229 |
private static final int MIMELINEMAX = 76; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
230 |
private static final byte[] CRLF = new byte[] {'\r', '\n'}; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
231 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
232 |
static final Encoder RFC4648 = new Encoder(false, null, -1); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
233 |
static final Encoder RFC4648_URLSAFE = new Encoder(true, null, -1); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
234 |
static final Encoder RFC2045 = new Encoder(false, CRLF, MIMELINEMAX); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
235 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
236 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
237 |
* Encodes all bytes from the specified byte array into a newly-allocated |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
238 |
* byte array using the {@link Base64} encoding scheme. The returned byte |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
239 |
* array is of the length of the resulting bytes. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
240 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
241 |
* @param src |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
242 |
* the byte array to encode |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
243 |
* @return A newly-allocated byte array containing the resulting |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
244 |
* encoded bytes. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
245 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
246 |
public byte[] encode(byte[] src) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
247 |
int len = 4 * ((src.length + 2) / 3); // dst array size |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
248 |
if (linemax > 0) // line separators |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
249 |
len += (len - 1) / linemax * newline.length; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
250 |
byte[] dst = new byte[len]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
251 |
int ret = encode0(src, 0, src.length, dst); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
252 |
if (ret != dst.length) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
253 |
return Arrays.copyOf(dst, ret); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
254 |
return dst; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
255 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
256 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
257 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
258 |
* Encodes all bytes from the specified byte array using the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
259 |
* {@link Base64} encoding scheme, writing the resulting bytes to the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
260 |
* given output byte array, starting at offset 0. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
261 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
262 |
* <p> It is the responsibility of the invoker of this method to make |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
263 |
* sure the output byte array {@code dst} has enough space for encoding |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
264 |
* all bytes from the input byte array. No bytes will be written to the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
265 |
* output byte array if the output byte array is not big enough. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
266 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
267 |
* @param src |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
268 |
* the byte array to encode |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
269 |
* @param dst |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
270 |
* the output byte array |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
271 |
* @return The number of bytes written to the output byte array |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
272 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
273 |
* @throws IllegalArgumentException if {@code dst} does not have enough |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
274 |
* space for encoding all input bytes. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
275 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
276 |
public int encode(byte[] src, byte[] dst) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
277 |
int len = 4 * ((src.length + 2) / 3); // dst array size |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
278 |
if (linemax > 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
279 |
len += (len - 1) / linemax * newline.length; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
280 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
281 |
if (dst.length < len) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
282 |
throw new IllegalArgumentException( |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
283 |
"Output byte array is too small for encoding all input bytes"); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
284 |
return encode0(src, 0, src.length, dst); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
285 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
286 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
287 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
288 |
* Encodes the specified byte array into a String using the {@link Base64} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
289 |
* encoding scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
290 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
291 |
* <p> This method first encodes all input bytes into a base64 encoded |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
292 |
* byte array and then constructs a new String by using the encoded byte |
14773 | 293 |
* array and the {@link java.nio.charset.StandardCharsets#ISO_8859_1 |
294 |
* ISO-8859-1} charset. |
|
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
295 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
296 |
* <p> In other words, an invocation of this method has exactly the same |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
297 |
* effect as invoking |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
298 |
* {@code new String(encode(src), StandardCharsets.ISO_8859_1)}. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
299 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
300 |
* @param src |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
301 |
* the byte array to encode |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
302 |
* @return A String containing the resulting Base64 encoded characters |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
303 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
304 |
@SuppressWarnings("deprecation") |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
305 |
public String encodeToString(byte[] src) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
306 |
byte[] encoded = encode(src); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
307 |
return new String(encoded, 0, 0, encoded.length); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
308 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
309 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
310 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
311 |
* Encodes all remaining bytes from the specified byte buffer into |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
312 |
* a newly-allocated ByteBuffer using the {@link Base64} encoding |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
313 |
* scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
314 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
315 |
* Upon return, the source buffer's position will be updated to |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
316 |
* its limit; its limit will not have been changed. The returned |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
317 |
* output buffer's position will be zero and its limit will be the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
318 |
* number of resulting encoded bytes. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
319 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
320 |
* @param buffer |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
321 |
* the source ByteBuffer to encode |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
322 |
* @return A newly-allocated byte buffer containing the encoded bytes. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
323 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
324 |
public ByteBuffer encode(ByteBuffer buffer) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
325 |
int len = 4 * ((buffer.remaining() + 2) / 3); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
326 |
if (linemax > 0) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
327 |
len += (len - 1) / linemax * newline.length; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
328 |
byte[] dst = new byte[len]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
329 |
int ret = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
330 |
if (buffer.hasArray()) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
331 |
ret = encode0(buffer.array(), |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
332 |
buffer.arrayOffset() + buffer.position(), |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
333 |
buffer.arrayOffset() + buffer.limit(), |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
334 |
dst); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
335 |
buffer.position(buffer.limit()); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
336 |
} else { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
337 |
byte[] src = new byte[buffer.remaining()]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
338 |
buffer.get(src); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
339 |
ret = encode0(src, 0, src.length, dst); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
340 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
341 |
if (ret != dst.length) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
342 |
dst = Arrays.copyOf(dst, ret); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
343 |
return ByteBuffer.wrap(dst); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
344 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
345 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
346 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
347 |
* Encodes as many bytes as possible from the input byte buffer |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
348 |
* using the {@link Base64} encoding scheme, writing the resulting |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
349 |
* bytes to the given output byte buffer. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
350 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
351 |
* <p>The buffers are read from, and written to, starting at their |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
352 |
* current positions. Upon return, the input and output buffers' |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
353 |
* positions will be advanced to reflect the bytes read and written, |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
354 |
* but their limits will not be modified. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
355 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
356 |
* <p>The encoding operation will stop and return if either all |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
357 |
* remaining bytes in the input buffer have been encoded and written |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
358 |
* to the output buffer, or the output buffer has insufficient space |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
359 |
* to encode any more input bytes. The encoding operation can be |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
360 |
* continued, if there is more bytes in input buffer to be encoded, |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
361 |
* by invoking this method again with an output buffer that has more |
14773 | 362 |
* {@linkplain java.nio.Buffer#remaining remaining} bytes. This is |
363 |
* typically done by draining any encoded bytes from the output buffer. |
|
364 |
* The value returned from last invocation needs to be passed in as the |
|
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
365 |
* third parameter {@code bytesOut} if it is to continue an unfinished |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
366 |
* encoding, 0 otherwise. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
367 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
368 |
* <p><b>Recommended Usage Example</b> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
369 |
* <pre> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
370 |
* ByteBuffer src = ...; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
371 |
* ByteBuffer dst = ...; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
372 |
* Base64.Encoder enc = Base64.getMimeDecoder(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
373 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
374 |
* int bytesOut = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
375 |
* while (src.hasRemaining()) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
376 |
* // clear output buffer for decoding |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
377 |
* dst.clear(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
378 |
* bytesOut = enc.encode(src, dst, bytesOut); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
379 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
380 |
* // read encoded bytes out of "dst" |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
381 |
* dst.flip(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
382 |
* ... |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
383 |
* } |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
384 |
* </pre> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
385 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
386 |
* @param src |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
387 |
* the input byte buffer to encode |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
388 |
* @param dst |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
389 |
* the output byte buffer |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
390 |
* @param bytesOut |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
391 |
* the return value of last invocation if this is to continue |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
392 |
* an unfinished encoding operation, 0 otherwise |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
393 |
* @return The sum total of {@code bytesOut} and the number of bytes |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
394 |
* written to the output ByteBuffer during this invocation. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
395 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
396 |
public int encode(ByteBuffer src, ByteBuffer dst, int bytesOut) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
397 |
if (src.hasArray() && dst.hasArray()) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
398 |
return encodeArray(src, dst, bytesOut); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
399 |
return encodeBuffer(src, dst, bytesOut); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
400 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
401 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
402 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
403 |
* Wraps an output stream for encoding byte data using the {@link Base64} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
404 |
* encoding scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
405 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
406 |
* <p> It is recommended to promptly close the returned output stream after |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
407 |
* use, during which it will flush all possible leftover bytes to the underlying |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
408 |
* output stream. Closing the returned output stream will close the underlying |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
409 |
* output stream. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
410 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
411 |
* @param os |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
412 |
* the output stream. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
413 |
* @return the output stream for encoding the byte data into the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
414 |
* specified Base64 encoded format |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
415 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
416 |
public OutputStream wrap(OutputStream os) { |
15513
64b67b85e2a2
8005394: Base64.Decoder/Encoder.wrap(XStream) don't throw NPE for null args passed
sherman
parents:
14773
diff
changeset
|
417 |
Objects.requireNonNull(os); |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
418 |
return new EncOutputStream(os, isURL ? toBase64URL : toBase64, |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
419 |
newline, linemax); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
420 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
421 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
422 |
private int encodeArray(ByteBuffer src, ByteBuffer dst, int bytesOut) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
423 |
char[] base64 = isURL? toBase64URL : toBase64; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
424 |
byte[] sa = src.array(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
425 |
int sp = src.arrayOffset() + src.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
426 |
int sl = src.arrayOffset() + src.limit(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
427 |
byte[] da = dst.array(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
428 |
int dp = dst.arrayOffset() + dst.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
429 |
int dl = dst.arrayOffset() + dst.limit(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
430 |
int dp00 = dp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
431 |
int dpos = 0; // dp of each line |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
432 |
if (linemax > 0 && bytesOut > 0) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
433 |
dpos = bytesOut % (linemax + newline.length); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
434 |
try { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
435 |
if (dpos == linemax && sp < src.limit()) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
436 |
if (dp + newline.length > dl) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
437 |
return dp - dp00 + bytesOut; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
438 |
for (byte b : newline){ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
439 |
dst.put(dp++, b); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
440 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
441 |
dpos = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
442 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
443 |
sl = sp + (sl - sp) / 3 * 3; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
444 |
while (sp < sl) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
445 |
int slen = (linemax > 0) ? (linemax - dpos) / 4 * 3 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
446 |
: sl - sp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
447 |
int sl0 = Math.min(sp + slen, sl); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
448 |
for (int sp0 = sp, dp0 = dp ; sp0 < sl0; ) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
449 |
if (dp0 + 4 > dl) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
450 |
sp = sp0; dp = dp0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
451 |
return dp0 - dp00 + bytesOut; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
452 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
453 |
int bits = (sa[sp0++] & 0xff) << 16 | |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
454 |
(sa[sp0++] & 0xff) << 8 | |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
455 |
(sa[sp0++] & 0xff); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
456 |
da[dp0++] = (byte)base64[(bits >>> 18) & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
457 |
da[dp0++] = (byte)base64[(bits >>> 12) & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
458 |
da[dp0++] = (byte)base64[(bits >>> 6) & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
459 |
da[dp0++] = (byte)base64[bits & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
460 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
461 |
int n = (sl0 - sp) / 3 * 4; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
462 |
dpos += n; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
463 |
dp += n; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
464 |
sp = sl0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
465 |
if (dpos == linemax && sp < src.limit()) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
466 |
if (dp + newline.length > dl) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
467 |
return dp - dp00 + bytesOut; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
468 |
for (byte b : newline){ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
469 |
da[dp++] = b; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
470 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
471 |
dpos = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
472 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
473 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
474 |
sl = src.arrayOffset() + src.limit(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
475 |
if (sp < sl && dl >= dp + 4) { // 1 or 2 leftover bytes |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
476 |
int b0 = sa[sp++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
477 |
da[dp++] = (byte)base64[b0 >> 2]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
478 |
if (sp == sl) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
479 |
da[dp++] = (byte)base64[(b0 << 4) & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
480 |
da[dp++] = '='; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
481 |
da[dp++] = '='; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
482 |
} else { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
483 |
int b1 = sa[sp++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
484 |
da[dp++] = (byte)base64[(b0 << 4) & 0x3f | (b1 >> 4)]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
485 |
da[dp++] = (byte)base64[(b1 << 2) & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
486 |
da[dp++] = '='; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
487 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
488 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
489 |
return dp - dp00 + bytesOut; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
490 |
} finally { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
491 |
src.position(sp - src.arrayOffset()); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
492 |
dst.position(dp - dst.arrayOffset()); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
493 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
494 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
495 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
496 |
private int encodeBuffer(ByteBuffer src, ByteBuffer dst, int bytesOut) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
497 |
char[] base64 = isURL? toBase64URL : toBase64; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
498 |
int sp = src.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
499 |
int sl = src.limit(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
500 |
int dp = dst.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
501 |
int dl = dst.limit(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
502 |
int dp00 = dp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
503 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
504 |
int dpos = 0; // dp of each line |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
505 |
if (linemax > 0 && bytesOut > 0) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
506 |
dpos = bytesOut % (linemax + newline.length); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
507 |
try { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
508 |
if (dpos == linemax && sp < src.limit()) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
509 |
if (dp + newline.length > dl) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
510 |
return dp - dp00 + bytesOut; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
511 |
for (byte b : newline){ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
512 |
dst.put(dp++, b); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
513 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
514 |
dpos = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
515 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
516 |
sl = sp + (sl - sp) / 3 * 3; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
517 |
while (sp < sl) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
518 |
int slen = (linemax > 0) ? (linemax - dpos) / 4 * 3 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
519 |
: sl - sp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
520 |
int sl0 = Math.min(sp + slen, sl); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
521 |
for (int sp0 = sp, dp0 = dp ; sp0 < sl0; ) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
522 |
if (dp0 + 4 > dl) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
523 |
sp = sp0; dp = dp0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
524 |
return dp0 - dp00 + bytesOut; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
525 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
526 |
int bits = (src.get(sp0++) & 0xff) << 16 | |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
527 |
(src.get(sp0++) & 0xff) << 8 | |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
528 |
(src.get(sp0++) & 0xff); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
529 |
dst.put(dp0++, (byte)base64[(bits >>> 18) & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
530 |
dst.put(dp0++, (byte)base64[(bits >>> 12) & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
531 |
dst.put(dp0++, (byte)base64[(bits >>> 6) & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
532 |
dst.put(dp0++, (byte)base64[bits & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
533 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
534 |
int n = (sl0 - sp) / 3 * 4; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
535 |
dpos += n; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
536 |
dp += n; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
537 |
sp = sl0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
538 |
if (dpos == linemax && sp < src.limit()) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
539 |
if (dp + newline.length > dl) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
540 |
return dp - dp00 + bytesOut; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
541 |
for (byte b : newline){ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
542 |
dst.put(dp++, b); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
543 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
544 |
dpos = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
545 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
546 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
547 |
if (sp < src.limit() && dl >= dp + 4) { // 1 or 2 leftover bytes |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
548 |
int b0 = src.get(sp++) & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
549 |
dst.put(dp++, (byte)base64[b0 >> 2]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
550 |
if (sp == src.limit()) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
551 |
dst.put(dp++, (byte)base64[(b0 << 4) & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
552 |
dst.put(dp++, (byte)'='); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
553 |
dst.put(dp++, (byte)'='); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
554 |
} else { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
555 |
int b1 = src.get(sp++) & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
556 |
dst.put(dp++, (byte)base64[(b0 << 4) & 0x3f | (b1 >> 4)]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
557 |
dst.put(dp++, (byte)base64[(b1 << 2) & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
558 |
dst.put(dp++, (byte)'='); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
559 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
560 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
561 |
return dp - dp00 + bytesOut; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
562 |
} finally { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
563 |
src.position(sp); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
564 |
dst.position(dp); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
565 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
566 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
567 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
568 |
private int encode0(byte[] src, int off, int end, byte[] dst) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
569 |
char[] base64 = isURL ? toBase64URL : toBase64; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
570 |
int sp = off; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
571 |
int slen = (end - off) / 3 * 3; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
572 |
int sl = off + slen; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
573 |
if (linemax > 0 && slen > linemax / 4 * 3) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
574 |
slen = linemax / 4 * 3; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
575 |
int dp = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
576 |
while (sp < sl) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
577 |
int sl0 = Math.min(sp + slen, sl); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
578 |
for (int sp0 = sp, dp0 = dp ; sp0 < sl0; ) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
579 |
int bits = (src[sp0++] & 0xff) << 16 | |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
580 |
(src[sp0++] & 0xff) << 8 | |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
581 |
(src[sp0++] & 0xff); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
582 |
dst[dp0++] = (byte)base64[(bits >>> 18) & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
583 |
dst[dp0++] = (byte)base64[(bits >>> 12) & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
584 |
dst[dp0++] = (byte)base64[(bits >>> 6) & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
585 |
dst[dp0++] = (byte)base64[bits & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
586 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
587 |
int dlen = (sl0 - sp) / 3 * 4; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
588 |
dp += dlen; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
589 |
sp = sl0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
590 |
if (dlen == linemax && sp < end) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
591 |
for (byte b : newline){ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
592 |
dst[dp++] = b; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
593 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
594 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
595 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
596 |
if (sp < end) { // 1 or 2 leftover bytes |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
597 |
int b0 = src[sp++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
598 |
dst[dp++] = (byte)base64[b0 >> 2]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
599 |
if (sp == end) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
600 |
dst[dp++] = (byte)base64[(b0 << 4) & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
601 |
dst[dp++] = '='; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
602 |
dst[dp++] = '='; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
603 |
} else { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
604 |
int b1 = src[sp++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
605 |
dst[dp++] = (byte)base64[(b0 << 4) & 0x3f | (b1 >> 4)]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
606 |
dst[dp++] = (byte)base64[(b1 << 2) & 0x3f]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
607 |
dst[dp++] = '='; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
608 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
609 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
610 |
return dp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
611 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
612 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
613 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
614 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
615 |
* This class implements a decoder for decoding byte data using the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
616 |
* Base64 encoding scheme as specified in RFC 4648 and RFC 2045. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
617 |
* |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
618 |
* <p> The Base64 padding character {@code '='} is accepted and |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
619 |
* interpreted as the end of the encoded byte data, but is not |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
620 |
* required. So if the final unit of the encoded byte data only has |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
621 |
* two or three Base64 characters (without the corresponding padding |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
622 |
* character(s) padded), they are decoded as if followed by padding |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
623 |
* character(s). |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
624 |
* |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
625 |
* <p> Instances of {@link Decoder} class are safe for use by |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
626 |
* multiple concurrent threads. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
627 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
628 |
* <p> Unless otherwise noted, passing a {@code null} argument to |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
629 |
* a method of this class will cause a |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
630 |
* {@link java.lang.NullPointerException NullPointerException} to |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
631 |
* be thrown. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
632 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
633 |
* @see Encoder |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
634 |
* @since 1.8 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
635 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
636 |
public static class Decoder { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
637 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
638 |
private final boolean isURL; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
639 |
private final boolean isMIME; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
640 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
641 |
private Decoder(boolean isURL, boolean isMIME) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
642 |
this.isURL = isURL; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
643 |
this.isMIME = isMIME; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
644 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
645 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
646 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
647 |
* Lookup table for decoding unicode characters drawn from the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
648 |
* "Base64 Alphabet" (as specified in Table 1 of RFC 2045) into |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
649 |
* their 6-bit positive integer equivalents. Characters that |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
650 |
* are not in the Base64 alphabet but fall within the bounds of |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
651 |
* the array are encoded to -1. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
652 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
653 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
654 |
private static final int[] fromBase64 = new int[256]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
655 |
static { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
656 |
Arrays.fill(fromBase64, -1); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
657 |
for (int i = 0; i < Encoder.toBase64.length; i++) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
658 |
fromBase64[Encoder.toBase64[i]] = i; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
659 |
fromBase64['='] = -2; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
660 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
661 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
662 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
663 |
* Lookup table for decoding "URL and Filename safe Base64 Alphabet" |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
664 |
* as specified in Table2 of the RFC 4648. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
665 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
666 |
private static final int[] fromBase64URL = new int[256]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
667 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
668 |
static { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
669 |
Arrays.fill(fromBase64URL, -1); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
670 |
for (int i = 0; i < Encoder.toBase64URL.length; i++) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
671 |
fromBase64URL[Encoder.toBase64URL[i]] = i; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
672 |
fromBase64URL['='] = -2; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
673 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
674 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
675 |
static final Decoder RFC4648 = new Decoder(false, false); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
676 |
static final Decoder RFC4648_URLSAFE = new Decoder(true, false); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
677 |
static final Decoder RFC2045 = new Decoder(false, true); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
678 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
679 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
680 |
* Decodes all bytes from the input byte array using the {@link Base64} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
681 |
* encoding scheme, writing the results into a newly-allocated output |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
682 |
* byte array. The returned byte array is of the length of the resulting |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
683 |
* bytes. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
684 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
685 |
* @param src |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
686 |
* the byte array to decode |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
687 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
688 |
* @return A newly-allocated byte array containing the decoded bytes. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
689 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
690 |
* @throws IllegalArgumentException |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
691 |
* if {@code src} is not in valid Base64 scheme |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
692 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
693 |
public byte[] decode(byte[] src) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
694 |
byte[] dst = new byte[outLength(src, 0, src.length)]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
695 |
int ret = decode0(src, 0, src.length, dst); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
696 |
if (ret != dst.length) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
697 |
dst = Arrays.copyOf(dst, ret); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
698 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
699 |
return dst; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
700 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
701 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
702 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
703 |
* Decodes a Base64 encoded String into a newly-allocated byte array |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
704 |
* using the {@link Base64} encoding scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
705 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
706 |
* <p> An invocation of this method has exactly the same effect as invoking |
15516
c2241c14b970
8007298: Base64.getMimeDecoder().decode() throws IAE for a single non-base64 character
sherman
parents:
15513
diff
changeset
|
707 |
* {@code decode(src.getBytes(StandardCharsets.ISO_8859_1))} |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
708 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
709 |
* @param src |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
710 |
* the string to decode |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
711 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
712 |
* @return A newly-allocated byte array containing the decoded bytes. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
713 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
714 |
* @throws IllegalArgumentException |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
715 |
* if {@code src} is not in valid Base64 scheme |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
716 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
717 |
public byte[] decode(String src) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
718 |
return decode(src.getBytes(StandardCharsets.ISO_8859_1)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
719 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
720 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
721 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
722 |
* Decodes all bytes from the input byte array using the {@link Base64} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
723 |
* encoding scheme, writing the results into the given output byte array, |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
724 |
* starting at offset 0. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
725 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
726 |
* <p> It is the responsibility of the invoker of this method to make |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
727 |
* sure the output byte array {@code dst} has enough space for decoding |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
728 |
* all bytes from the input byte array. No bytes will be be written to |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
729 |
* the output byte array if the output byte array is not big enough. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
730 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
731 |
* <p> If the input byte array is not in valid Base64 encoding scheme |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
732 |
* then some bytes may have been written to the output byte array before |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
733 |
* IllegalargumentException is thrown. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
734 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
735 |
* @param src |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
736 |
* the byte array to decode |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
737 |
* @param dst |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
738 |
* the output byte array |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
739 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
740 |
* @return The number of bytes written to the output byte array |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
741 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
742 |
* @throws IllegalArgumentException |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
743 |
* if {@code src} is not in valid Base64 scheme, or {@code dst} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
744 |
* does not have enough space for decoding all input bytes. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
745 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
746 |
public int decode(byte[] src, byte[] dst) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
747 |
int len = outLength(src, 0, src.length); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
748 |
if (dst.length < len) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
749 |
throw new IllegalArgumentException( |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
750 |
"Output byte array is too small for decoding all input bytes"); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
751 |
return decode0(src, 0, src.length, dst); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
752 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
753 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
754 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
755 |
* Decodes all bytes from the input byte buffer using the {@link Base64} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
756 |
* encoding scheme, writing the results into a newly-allocated ByteBuffer. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
757 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
758 |
* <p> Upon return, the source buffer's position will be updated to |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
759 |
* its limit; its limit will not have been changed. The returned |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
760 |
* output buffer's position will be zero and its limit will be the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
761 |
* number of resulting decoded bytes |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
762 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
763 |
* @param buffer |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
764 |
* the ByteBuffer to decode |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
765 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
766 |
* @return A newly-allocated byte buffer containing the decoded bytes |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
767 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
768 |
* @throws IllegalArgumentException |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
769 |
* if {@code src} is not in valid Base64 scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
770 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
771 |
public ByteBuffer decode(ByteBuffer buffer) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
772 |
int pos0 = buffer.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
773 |
try { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
774 |
byte[] src; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
775 |
int sp, sl; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
776 |
if (buffer.hasArray()) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
777 |
src = buffer.array(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
778 |
sp = buffer.arrayOffset() + buffer.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
779 |
sl = buffer.arrayOffset() + buffer.limit(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
780 |
buffer.position(buffer.limit()); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
781 |
} else { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
782 |
src = new byte[buffer.remaining()]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
783 |
buffer.get(src); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
784 |
sp = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
785 |
sl = src.length; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
786 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
787 |
byte[] dst = new byte[outLength(src, sp, sl)]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
788 |
return ByteBuffer.wrap(dst, 0, decode0(src, sp, sl, dst)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
789 |
} catch (IllegalArgumentException iae) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
790 |
buffer.position(pos0); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
791 |
throw iae; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
792 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
793 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
794 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
795 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
796 |
* Decodes as many bytes as possible from the input byte buffer |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
797 |
* using the {@link Base64} encoding scheme, writing the resulting |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
798 |
* bytes to the given output byte buffer. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
799 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
800 |
* <p>The buffers are read from, and written to, starting at their |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
801 |
* current positions. Upon return, the input and output buffers' |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
802 |
* positions will be advanced to reflect the bytes read and written, |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
803 |
* but their limits will not be modified. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
804 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
805 |
* <p> If the input buffer is not in valid Base64 encoding scheme |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
806 |
* then some bytes may have been written to the output buffer |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
807 |
* before IllegalArgumentException is thrown. The positions of |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
808 |
* both input and output buffer will not be advanced in this case. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
809 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
810 |
* <p>The decoding operation will end and return if all remaining |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
811 |
* bytes in the input buffer have been decoded and written to the |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
812 |
* output buffer. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
813 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
814 |
* <p> The decoding operation will stop and return if the output |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
815 |
* buffer has insufficient space to decode any more input bytes. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
816 |
* The decoding operation can be continued, if there is more bytes |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
817 |
* in input buffer to be decoded, by invoking this method again with |
14773 | 818 |
* an output buffer that has more {@linkplain java.nio.Buffer#remaining |
819 |
* remaining} bytes. This is typically done by draining any decoded |
|
820 |
* bytes from the output buffer. |
|
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
821 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
822 |
* <p><b>Recommended Usage Example</b> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
823 |
* <pre> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
824 |
* ByteBuffer src = ...; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
825 |
* ByteBuffer dst = ...; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
826 |
* Base64.Decoder dec = Base64.getDecoder(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
827 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
828 |
* while (src.hasRemaining()) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
829 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
830 |
* // prepare the output byte buffer |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
831 |
* dst.clear(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
832 |
* dec.decode(src, dst); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
833 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
834 |
* // read bytes from the output buffer |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
835 |
* dst.flip(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
836 |
* ... |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
837 |
* } |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
838 |
* </pre> |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
839 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
840 |
* @param src |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
841 |
* the input byte buffer to decode |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
842 |
* @param dst |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
843 |
* the output byte buffer |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
844 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
845 |
* @return The number of bytes written to the output byte buffer during |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
846 |
* this decoding invocation |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
847 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
848 |
* @throws IllegalArgumentException |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
849 |
* if {@code src} is not in valid Base64 scheme. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
850 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
851 |
public int decode(ByteBuffer src, ByteBuffer dst) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
852 |
int sp0 = src.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
853 |
int dp0 = dst.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
854 |
try { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
855 |
if (src.hasArray() && dst.hasArray()) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
856 |
return decodeArray(src, dst); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
857 |
return decodeBuffer(src, dst); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
858 |
} catch (IllegalArgumentException iae) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
859 |
src.position(sp0); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
860 |
dst.position(dp0); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
861 |
throw iae; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
862 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
863 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
864 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
865 |
/** |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
866 |
* Returns an input stream for decoding {@link Base64} encoded byte stream. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
867 |
* |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
868 |
* <p> The {@code read} methods of the returned {@code InputStream} will |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
869 |
* throw {@code IOException} when reading bytes that cannot be decoded. |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
870 |
* |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
871 |
* <p> Closing the returned input stream will close the underlying |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
872 |
* input stream. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
873 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
874 |
* @param is |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
875 |
* the input stream |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
876 |
* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
877 |
* @return the input stream for decoding the specified Base64 encoded |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
878 |
* byte stream |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
879 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
880 |
public InputStream wrap(InputStream is) { |
15513
64b67b85e2a2
8005394: Base64.Decoder/Encoder.wrap(XStream) don't throw NPE for null args passed
sherman
parents:
14773
diff
changeset
|
881 |
Objects.requireNonNull(is); |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
882 |
return new DecInputStream(is, isURL ? fromBase64URL : fromBase64, isMIME); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
883 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
884 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
885 |
private int decodeArray(ByteBuffer src, ByteBuffer dst) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
886 |
int[] base64 = isURL ? fromBase64URL : fromBase64; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
887 |
int bits = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
888 |
int shiftto = 18; // pos of first byte of 4-byte atom |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
889 |
byte[] sa = src.array(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
890 |
int sp = src.arrayOffset() + src.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
891 |
int sl = src.arrayOffset() + src.limit(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
892 |
byte[] da = dst.array(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
893 |
int dp = dst.arrayOffset() + dst.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
894 |
int dl = dst.arrayOffset() + dst.limit(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
895 |
int dp0 = dp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
896 |
int mark = sp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
897 |
try { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
898 |
while (sp < sl) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
899 |
int b = sa[sp++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
900 |
if ((b = base64[b]) < 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
901 |
if (b == -2) { // padding byte |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
902 |
if (shiftto == 6 && (sp == sl || sa[sp++] != '=') || |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
903 |
shiftto == 18) { |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
904 |
throw new IllegalArgumentException( |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
905 |
"Input byte array has wrong 4-byte ending unit"); |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
906 |
} |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
907 |
break; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
908 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
909 |
if (isMIME) // skip if for rfc2045 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
910 |
continue; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
911 |
else |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
912 |
throw new IllegalArgumentException( |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
913 |
"Illegal base64 character " + |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
914 |
Integer.toString(sa[sp - 1], 16)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
915 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
916 |
bits |= (b << shiftto); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
917 |
shiftto -= 6; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
918 |
if (shiftto < 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
919 |
if (dl < dp + 3) |
14696
c1fd8cfb31ea
8004212: java.util.Base64 methods decodeArray and decodeBuffer should return the number of bytes written
sherman
parents:
14674
diff
changeset
|
920 |
return dp - dp0; |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
921 |
da[dp++] = (byte)(bits >> 16); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
922 |
da[dp++] = (byte)(bits >> 8); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
923 |
da[dp++] = (byte)(bits); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
924 |
shiftto = 18; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
925 |
bits = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
926 |
mark = sp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
927 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
928 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
929 |
if (shiftto == 6) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
930 |
if (dl - dp < 1) |
14696
c1fd8cfb31ea
8004212: java.util.Base64 methods decodeArray and decodeBuffer should return the number of bytes written
sherman
parents:
14674
diff
changeset
|
931 |
return dp - dp0; |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
932 |
da[dp++] = (byte)(bits >> 16); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
933 |
} else if (shiftto == 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
934 |
if (dl - dp < 2) |
14696
c1fd8cfb31ea
8004212: java.util.Base64 methods decodeArray and decodeBuffer should return the number of bytes written
sherman
parents:
14674
diff
changeset
|
935 |
return dp - dp0; |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
936 |
da[dp++] = (byte)(bits >> 16); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
937 |
da[dp++] = (byte)(bits >> 8); |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
938 |
} else if (shiftto == 12) { |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
939 |
throw new IllegalArgumentException( |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
940 |
"Last unit does not have enough valid bits"); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
941 |
} |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
942 |
while (sp < sl) { |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
943 |
if (isMIME && base64[sa[sp++]] < 0) |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
944 |
continue; |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
945 |
throw new IllegalArgumentException( |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
946 |
"Input byte array has incorrect ending byte at " + sp); |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
947 |
} |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
948 |
mark = sp; |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
949 |
return dp - dp0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
950 |
} finally { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
951 |
src.position(mark); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
952 |
dst.position(dp); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
953 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
954 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
955 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
956 |
private int decodeBuffer(ByteBuffer src, ByteBuffer dst) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
957 |
int[] base64 = isURL ? fromBase64URL : fromBase64; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
958 |
int bits = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
959 |
int shiftto = 18; // pos of first byte of 4-byte atom |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
960 |
int sp = src.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
961 |
int sl = src.limit(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
962 |
int dp = dst.position(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
963 |
int dl = dst.limit(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
964 |
int dp0 = dp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
965 |
int mark = sp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
966 |
try { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
967 |
while (sp < sl) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
968 |
int b = src.get(sp++) & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
969 |
if ((b = base64[b]) < 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
970 |
if (b == -2) { // padding byte |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
971 |
if (shiftto == 6 && (sp == sl || src.get(sp++) != '=') || |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
972 |
shiftto == 18) { |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
973 |
throw new IllegalArgumentException( |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
974 |
"Input byte array has wrong 4-byte ending unit"); |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
975 |
} |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
976 |
break; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
977 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
978 |
if (isMIME) // skip if for rfc2045 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
979 |
continue; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
980 |
else |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
981 |
throw new IllegalArgumentException( |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
982 |
"Illegal base64 character " + |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
983 |
Integer.toString(src.get(sp - 1), 16)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
984 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
985 |
bits |= (b << shiftto); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
986 |
shiftto -= 6; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
987 |
if (shiftto < 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
988 |
if (dl < dp + 3) |
14696
c1fd8cfb31ea
8004212: java.util.Base64 methods decodeArray and decodeBuffer should return the number of bytes written
sherman
parents:
14674
diff
changeset
|
989 |
return dp - dp0; |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
990 |
dst.put(dp++, (byte)(bits >> 16)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
991 |
dst.put(dp++, (byte)(bits >> 8)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
992 |
dst.put(dp++, (byte)(bits)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
993 |
shiftto = 18; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
994 |
bits = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
995 |
mark = sp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
996 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
997 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
998 |
if (shiftto == 6) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
999 |
if (dl - dp < 1) |
14696
c1fd8cfb31ea
8004212: java.util.Base64 methods decodeArray and decodeBuffer should return the number of bytes written
sherman
parents:
14674
diff
changeset
|
1000 |
return dp - dp0; |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1001 |
dst.put(dp++, (byte)(bits >> 16)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1002 |
} else if (shiftto == 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1003 |
if (dl - dp < 2) |
14696
c1fd8cfb31ea
8004212: java.util.Base64 methods decodeArray and decodeBuffer should return the number of bytes written
sherman
parents:
14674
diff
changeset
|
1004 |
return dp - dp0; |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1005 |
dst.put(dp++, (byte)(bits >> 16)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1006 |
dst.put(dp++, (byte)(bits >> 8)); |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1007 |
} else if (shiftto == 12) { |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1008 |
throw new IllegalArgumentException( |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1009 |
"Last unit does not have enough valid bits"); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1010 |
} |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1011 |
while (sp < sl) { |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1012 |
if (isMIME && base64[src.get(sp++)] < 0) |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1013 |
continue; |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1014 |
throw new IllegalArgumentException( |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1015 |
"Input byte array has incorrect ending byte at " + sp); |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1016 |
} |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1017 |
mark = sp; |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1018 |
return dp - dp0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1019 |
} finally { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1020 |
src.position(mark); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1021 |
dst.position(dp); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1022 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1023 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1024 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1025 |
private int outLength(byte[] src, int sp, int sl) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1026 |
int[] base64 = isURL ? fromBase64URL : fromBase64; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1027 |
int paddings = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1028 |
int len = sl - sp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1029 |
if (len == 0) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1030 |
return 0; |
15516
c2241c14b970
8007298: Base64.getMimeDecoder().decode() throws IAE for a single non-base64 character
sherman
parents:
15513
diff
changeset
|
1031 |
if (len < 2) { |
c2241c14b970
8007298: Base64.getMimeDecoder().decode() throws IAE for a single non-base64 character
sherman
parents:
15513
diff
changeset
|
1032 |
if (isMIME && base64[0] == -1) |
c2241c14b970
8007298: Base64.getMimeDecoder().decode() throws IAE for a single non-base64 character
sherman
parents:
15513
diff
changeset
|
1033 |
return 0; |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1034 |
throw new IllegalArgumentException( |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1035 |
"Input byte[] should at least have 2 bytes for base64 bytes"); |
15516
c2241c14b970
8007298: Base64.getMimeDecoder().decode() throws IAE for a single non-base64 character
sherman
parents:
15513
diff
changeset
|
1036 |
} |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1037 |
if (src[sl - 1] == '=') { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1038 |
paddings++; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1039 |
if (src[sl - 2] == '=') |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1040 |
paddings++; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1041 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1042 |
if (isMIME) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1043 |
// scan all bytes to fill out all non-alphabet. a performance |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1044 |
// trade-off of pre-scan or Arrays.copyOf |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1045 |
int n = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1046 |
while (sp < sl) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1047 |
int b = src[sp++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1048 |
if (b == '=') |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1049 |
break; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1050 |
if ((b = base64[b]) == -1) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1051 |
n++; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1052 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1053 |
len -= n; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1054 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1055 |
if (paddings == 0 && (len & 0x3) != 0) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1056 |
paddings = 4 - (len & 0x3); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1057 |
return 3 * ((len + 3) / 4) - paddings; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1058 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1059 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1060 |
private int decode0(byte[] src, int sp, int sl, byte[] dst) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1061 |
int[] base64 = isURL ? fromBase64URL : fromBase64; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1062 |
int dp = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1063 |
int bits = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1064 |
int shiftto = 18; // pos of first byte of 4-byte atom |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1065 |
while (sp < sl) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1066 |
int b = src[sp++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1067 |
if ((b = base64[b]) < 0) { |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1068 |
if (b == -2) { // padding byte '=' |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1069 |
// xx= shiftto==6&&sp==sl missing last = |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1070 |
// xx=y shiftto==6 last is not = |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1071 |
// = shiftto==18 unnecessary padding |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1072 |
// x= shiftto==12 be taken care later |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1073 |
// together with single x, invalid anyway |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1074 |
if (shiftto == 6 && (sp == sl || src[sp++] != '=') || |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1075 |
shiftto == 18) { |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1076 |
throw new IllegalArgumentException( |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1077 |
"Input byte array has wrong 4-byte ending unit"); |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1078 |
} |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1079 |
break; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1080 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1081 |
if (isMIME) // skip if for rfc2045 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1082 |
continue; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1083 |
else |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1084 |
throw new IllegalArgumentException( |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1085 |
"Illegal base64 character " + |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1086 |
Integer.toString(src[sp - 1], 16)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1087 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1088 |
bits |= (b << shiftto); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1089 |
shiftto -= 6; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1090 |
if (shiftto < 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1091 |
dst[dp++] = (byte)(bits >> 16); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1092 |
dst[dp++] = (byte)(bits >> 8); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1093 |
dst[dp++] = (byte)(bits); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1094 |
shiftto = 18; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1095 |
bits = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1096 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1097 |
} |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1098 |
// reached end of byte array or hit padding '=' characters. |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1099 |
if (shiftto == 6) { |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1100 |
dst[dp++] = (byte)(bits >> 16); |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1101 |
} else if (shiftto == 0) { |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1102 |
dst[dp++] = (byte)(bits >> 16); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1103 |
dst[dp++] = (byte)(bits >> 8); |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1104 |
} else if (shiftto == 12) { |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1105 |
throw new IllegalArgumentException( |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1106 |
"Last unit does not have enough valid bits"); |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1107 |
} |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1108 |
// anything left is invalid, if is not MIME. |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1109 |
// if MIME, ignore all non-base64 character |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1110 |
while (sp < sl) { |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1111 |
if (isMIME && base64[src[sp++]] < 0) |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1112 |
continue; |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1113 |
throw new IllegalArgumentException( |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1114 |
"Input byte array has incorrect ending byte at " + sp); |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1115 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1116 |
return dp; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1117 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1118 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1119 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1120 |
/* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1121 |
* An output stream for encoding bytes into the Base64. |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1122 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1123 |
private static class EncOutputStream extends FilterOutputStream { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1124 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1125 |
private int leftover = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1126 |
private int b0, b1, b2; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1127 |
private boolean closed = false; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1128 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1129 |
private final char[] base64; // byte->base64 mapping |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1130 |
private final byte[] newline; // line separator, if needed |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1131 |
private final int linemax; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1132 |
private int linepos = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1133 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1134 |
EncOutputStream(OutputStream os, |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1135 |
char[] base64, byte[] newline, int linemax) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1136 |
super(os); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1137 |
this.base64 = base64; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1138 |
this.newline = newline; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1139 |
this.linemax = linemax; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1140 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1141 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1142 |
@Override |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1143 |
public void write(int b) throws IOException { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1144 |
byte[] buf = new byte[1]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1145 |
buf[0] = (byte)(b & 0xff); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1146 |
write(buf, 0, 1); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1147 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1148 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1149 |
private void checkNewline() throws IOException { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1150 |
if (linepos == linemax) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1151 |
out.write(newline); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1152 |
linepos = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1153 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1154 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1155 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1156 |
@Override |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1157 |
public void write(byte[] b, int off, int len) throws IOException { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1158 |
if (closed) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1159 |
throw new IOException("Stream is closed"); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1160 |
if (off < 0 || len < 0 || off + len > b.length) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1161 |
throw new ArrayIndexOutOfBoundsException(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1162 |
if (len == 0) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1163 |
return; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1164 |
if (leftover != 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1165 |
if (leftover == 1) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1166 |
b1 = b[off++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1167 |
len--; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1168 |
if (len == 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1169 |
leftover++; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1170 |
return; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1171 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1172 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1173 |
b2 = b[off++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1174 |
len--; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1175 |
checkNewline(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1176 |
out.write(base64[b0 >> 2]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1177 |
out.write(base64[(b0 << 4) & 0x3f | (b1 >> 4)]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1178 |
out.write(base64[(b1 << 2) & 0x3f | (b2 >> 6)]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1179 |
out.write(base64[b2 & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1180 |
linepos += 4; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1181 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1182 |
int nBits24 = len / 3; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1183 |
leftover = len - (nBits24 * 3); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1184 |
while (nBits24-- > 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1185 |
checkNewline(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1186 |
int bits = (b[off++] & 0xff) << 16 | |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1187 |
(b[off++] & 0xff) << 8 | |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1188 |
(b[off++] & 0xff); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1189 |
out.write(base64[(bits >>> 18) & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1190 |
out.write(base64[(bits >>> 12) & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1191 |
out.write(base64[(bits >>> 6) & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1192 |
out.write(base64[bits & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1193 |
linepos += 4; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1194 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1195 |
if (leftover == 1) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1196 |
b0 = b[off++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1197 |
} else if (leftover == 2) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1198 |
b0 = b[off++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1199 |
b1 = b[off++] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1200 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1201 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1202 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1203 |
@Override |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1204 |
public void close() throws IOException { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1205 |
if (!closed) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1206 |
closed = true; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1207 |
if (leftover == 1) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1208 |
checkNewline(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1209 |
out.write(base64[b0 >> 2]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1210 |
out.write(base64[(b0 << 4) & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1211 |
out.write('='); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1212 |
out.write('='); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1213 |
} else if (leftover == 2) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1214 |
checkNewline(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1215 |
out.write(base64[b0 >> 2]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1216 |
out.write(base64[(b0 << 4) & 0x3f | (b1 >> 4)]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1217 |
out.write(base64[(b1 << 2) & 0x3f]); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1218 |
out.write('='); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1219 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1220 |
leftover = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1221 |
out.close(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1222 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1223 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1224 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1225 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1226 |
/* |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1227 |
* An input stream for decoding Base64 bytes |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1228 |
*/ |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1229 |
private static class DecInputStream extends InputStream { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1230 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1231 |
private final InputStream is; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1232 |
private final boolean isMIME; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1233 |
private final int[] base64; // base64 -> byte mapping |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1234 |
private int bits = 0; // 24-bit buffer for decoding |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1235 |
private int nextin = 18; // next available "off" in "bits" for input; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1236 |
// -> 18, 12, 6, 0 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1237 |
private int nextout = -8; // next available "off" in "bits" for output; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1238 |
// -> 8, 0, -8 (no byte for output) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1239 |
private boolean eof = false; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1240 |
private boolean closed = false; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1241 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1242 |
DecInputStream(InputStream is, int[] base64, boolean isMIME) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1243 |
this.is = is; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1244 |
this.base64 = base64; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1245 |
this.isMIME = isMIME; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1246 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1247 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1248 |
private byte[] sbBuf = new byte[1]; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1249 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1250 |
@Override |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1251 |
public int read() throws IOException { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1252 |
return read(sbBuf, 0, 1) == -1 ? -1 : sbBuf[0] & 0xff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1253 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1254 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1255 |
@Override |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1256 |
public int read(byte[] b, int off, int len) throws IOException { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1257 |
if (closed) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1258 |
throw new IOException("Stream is closed"); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1259 |
if (eof && nextout < 0) // eof and no leftover |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1260 |
return -1; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1261 |
if (off < 0 || len < 0 || len > b.length - off) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1262 |
throw new IndexOutOfBoundsException(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1263 |
int oldOff = off; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1264 |
if (nextout >= 0) { // leftover output byte(s) in bits buf |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1265 |
do { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1266 |
if (len == 0) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1267 |
return off - oldOff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1268 |
b[off++] = (byte)(bits >> nextout); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1269 |
len--; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1270 |
nextout -= 8; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1271 |
} while (nextout >= 0); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1272 |
bits = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1273 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1274 |
while (len > 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1275 |
int v = is.read(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1276 |
if (v == -1) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1277 |
eof = true; |
15533
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1278 |
if (nextin != 18) { |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1279 |
if (nextin == 12) |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1280 |
throw new IOException("Base64 stream has one un-decoded dangling byte."); |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1281 |
// treat ending xx/xxx without padding character legal. |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1282 |
// same logic as v == 'v' below |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1283 |
b[off++] = (byte)(bits >> (16)); |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1284 |
len--; |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1285 |
if (nextin == 0) { // only one padding byte |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1286 |
if (len == 0) { // no enough output space |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1287 |
bits >>= 8; // shift to lowest byte |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1288 |
nextout = 0; |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1289 |
} else { |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1290 |
b[off++] = (byte) (bits >> 8); |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1291 |
} |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1292 |
} |
47318ecea33b
8006295: Base64.Decoder.wrap(java.io.InputStream) returns InputStream which throws unspecified IOException on attempt to decode invalid Base64 byte stream
sherman
parents:
15516
diff
changeset
|
1293 |
} |
14674
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1294 |
if (off == oldOff) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1295 |
return -1; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1296 |
else |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1297 |
return off - oldOff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1298 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1299 |
if (v == '=') { // padding byte(s) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1300 |
if (nextin != 6 && nextin != 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1301 |
throw new IOException("Illegal base64 ending sequence:" + nextin); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1302 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1303 |
b[off++] = (byte)(bits >> (16)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1304 |
len--; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1305 |
if (nextin == 0) { // only one padding byte |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1306 |
if (len == 0) { // no enough output space |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1307 |
bits >>= 8; // shift to lowest byte |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1308 |
nextout = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1309 |
} else { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1310 |
b[off++] = (byte) (bits >> 8); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1311 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1312 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1313 |
eof = true; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1314 |
break; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1315 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1316 |
if ((v = base64[v]) == -1) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1317 |
if (isMIME) // skip if for rfc2045 |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1318 |
continue; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1319 |
else |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1320 |
throw new IOException("Illegal base64 character " + |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1321 |
Integer.toString(v, 16)); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1322 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1323 |
bits |= (v << nextin); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1324 |
if (nextin == 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1325 |
nextin = 18; // clear for next |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1326 |
nextout = 16; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1327 |
while (nextout >= 0) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1328 |
b[off++] = (byte)(bits >> nextout); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1329 |
len--; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1330 |
nextout -= 8; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1331 |
if (len == 0 && nextout >= 0) { // don't clean "bits" |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1332 |
return off - oldOff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1333 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1334 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1335 |
bits = 0; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1336 |
} else { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1337 |
nextin -= 6; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1338 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1339 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1340 |
return off - oldOff; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1341 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1342 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1343 |
@Override |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1344 |
public int available() throws IOException { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1345 |
if (closed) |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1346 |
throw new IOException("Stream is closed"); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1347 |
return is.available(); // TBD: |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1348 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1349 |
|
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1350 |
@Override |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1351 |
public void close() throws IOException { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1352 |
if (!closed) { |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1353 |
closed = true; |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1354 |
is.close(); |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1355 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1356 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1357 |
} |
be67058c3dc7
8004088: hg push for bug#4235519 failed to push all files
sherman
parents:
diff
changeset
|
1358 |
} |