This repository was archived by the owner on Nov 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathUnicodeReader.java
112 lines (98 loc) · 3.54 KB
/
UnicodeReader.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/* Copyright (c) 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gdata.util.io.base;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PushbackInputStream;
import java.io.Reader;
/**
* Generic Unicode text reader, which uses a BOM (Byte Order Mark) to identify
* the encoding to be used. This also has the side effect of removing the BOM
* from the input stream (when present).
*
* @see <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4508058">
* JDK Bug 4508058</a>
*
*
*/
public class UnicodeReader extends Reader {
private final InputStreamReader internalInputStreamReader;
private final String defaultEnc;
private static final int BOM_SIZE = 4;
/**
* @param in input stream
* @param defaultEnc default encoding (used only if BOM is not found) or
* <code>null</code> to use system default
* @throws IOException if an I/O error occurs
*/
public UnicodeReader(InputStream in, String defaultEnc) throws IOException {
this.defaultEnc = defaultEnc;
// Read ahead four bytes and check for BOM marks. Extra bytes are unread
// back to the stream; only BOM bytes are skipped.
String encoding;
byte bom[] = new byte[BOM_SIZE];
int n, unread;
PushbackInputStream pushbackStream = new PushbackInputStream(in, BOM_SIZE);
n = pushbackStream.read(bom, 0, bom.length);
if ((bom[0] == (byte) 0xEF) && (bom[1] == (byte) 0xBB)
&& (bom[2] == (byte) 0xBF)) {
encoding = "UTF-8";
unread = n - 3;
} else if ((bom[0] == (byte) 0xFE) && (bom[1] == (byte) 0xFF)) {
encoding = "UTF-16BE";
unread = n - 2;
} else if ((bom[0] == (byte) 0xFF) && (bom[1] == (byte) 0xFE)) {
encoding = "UTF-16LE";
unread = n - 2;
} else if ((bom[0] == (byte) 0x00) && (bom[1] == (byte) 0x00)
&& (bom[2] == (byte) 0xFE) && (bom[3] == (byte) 0xFF)) {
encoding = "UTF-32BE";
unread = n - 4;
} else if ((bom[0] == (byte) 0xFF) && (bom[1] == (byte) 0xFE)
&& (bom[2] == (byte) 0x00) && (bom[3] == (byte) 0x00)) {
encoding = "UTF-32LE";
unread = n - 4;
} else {
// Unicode BOM mark not found, unread all bytes
encoding = defaultEnc;
unread = n;
}
if (unread > 0) {
pushbackStream.unread(bom, (n - unread), unread);
} else if (unread < -1) {
pushbackStream.unread(bom, 0, 0);
}
// Use given encoding
if (encoding == null) {
internalInputStreamReader = new InputStreamReader(pushbackStream);
} else {
internalInputStreamReader = new InputStreamReader(pushbackStream,
encoding);
}
}
public String getDefaultEncoding() {
return defaultEnc;
}
public String getEncoding() {
return internalInputStreamReader.getEncoding();
}
@Override public void close() throws IOException {
internalInputStreamReader.close();
}
@Override public int read(char[] cbuf, int off, int len) throws IOException {
return internalInputStreamReader.read(cbuf, off, len);
}
}