blob: 0841c23fc44e14e9b6d046953e4ab48d8e998031 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001
2/*
3 * Copyright 2000-2004 Sun Microsystems, Inc. All Rights Reserved.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 *
6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as
8 * published by the Free Software Foundation. Sun designates this
9 * particular file as subject to the "Classpath" exception as provided
10 * by Sun in the LICENSE file that accompanied this code.
11 *
12 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 * version 2 for more details (a copy is included in the LICENSE file that
16 * accompanied this code).
17 *
18 * You should have received a copy of the GNU General Public License version
19 * 2 along with this work; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23 * CA 95054 USA or visit www.sun.com if you need additional information or
24 * have any questions.
25 */
26
27package sun.nio.cs;
28
29import java.nio.ByteBuffer;
30import java.nio.CharBuffer;
31import java.nio.charset.Charset;
32import java.nio.charset.CharsetDecoder;
33import java.nio.charset.CharsetEncoder;
34import java.nio.charset.CharacterCodingException;
35import java.nio.charset.MalformedInputException;
36import java.nio.charset.UnmappableCharacterException;
37
38
39public class ISO_8859_15 extends Charset implements HistoricallyNamedCharset
40{
41
42 public ISO_8859_15() {
43 super("ISO-8859-15", StandardCharsets.aliases_ISO_8859_15);
44 }
45
46 public String historicalName() {
47 return "ISO8859_15";
48 }
49
50 public boolean contains(Charset cs) {
51 return ((cs instanceof US_ASCII)
52 || (cs instanceof ISO_8859_1)
53 || (cs instanceof ISO_8859_15));
54 }
55
56 public CharsetDecoder newDecoder() {
57 return new Decoder(this);
58 }
59
60 public CharsetEncoder newEncoder() {
61 return new Encoder(this);
62 }
63
64
65 /**
66 * These accessors are temporarily supplied while sun.io
67 * converters co-exist with the sun.nio.cs.{ext} charset coders
68 * These facilitate sharing of conversion tables between the
69 * two co-existing implementations. When sun.io converters
70 * are made extinct these will be unncessary and should be removed
71 */
72
73 public String getDecoderSingleByteMappings() {
74 return Decoder.byteToCharTable;
75
76 }
77
78 public short[] getEncoderIndex1() {
79 return Encoder.index1;
80
81 }
82 public String getEncoderIndex2() {
83 return Encoder.index2;
84
85 }
86
87 private static class Decoder extends SingleByteDecoder {
88
89 public Decoder(Charset cs) {
90 super(cs, byteToCharTable);
91 }
92
93 private final static String byteToCharTable =
94 "\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087" + // 0x80 - 0x87
95 "\u0088\u0089\u008A\u008B\u008C\u008D\u008E\u008F" + // 0x88 - 0x8F
96 "\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097" + // 0x90 - 0x97
97 "\u0098\u0099\u009A\u009B\u009C\u009D\u009E\u009F" + // 0x98 - 0x9F
98 "\u00A0\u00A1\u00A2\u00A3\u20AC\u00A5\u0160\u00A7" + // 0xA0 - 0xA7
99 "\u0161\u00A9\u00AA\u00AB\u00AC\u00AD\u00AE\u00AF" + // 0xA8 - 0xAF
100 "\u00B0\u00B1\u00B2\u00B3\u017D\u00B5\u00B6\u00B7" + // 0xB0 - 0xB7
101 "\u017E\u00B9\u00BA\u00BB\u0152\u0153\u0178\u00BF" + // 0xB8 - 0xBF
102 "\u00C0\u00C1\u00C2\u00C3\u00C4\u00C5\u00C6\u00C7" + // 0xC0 - 0xC7
103 "\u00C8\u00C9\u00CA\u00CB\u00CC\u00CD\u00CE\u00CF" + // 0xC8 - 0xCF
104 "\u00D0\u00D1\u00D2\u00D3\u00D4\u00D5\u00D6\u00D7" + // 0xD0 - 0xD7
105 "\u00D8\u00D9\u00DA\u00DB\u00DC\u00DD\u00DE\u00DF" + // 0xD8 - 0xDF
106 "\u00E0\u00E1\u00E2\u00E3\u00E4\u00E5\u00E6\u00E7" + // 0xE0 - 0xE7
107 "\u00E8\u00E9\u00EA\u00EB\u00EC\u00ED\u00EE\u00EF" + // 0xE8 - 0xEF
108 "\u00F0\u00F1\u00F2\u00F3\u00F4\u00F5\u00F6\u00F7" + // 0xF0 - 0xF7
109 "\u00F8\u00F9\u00FA\u00FB\u00FC\u00FD\u00FE\u00FF" + // 0xF8 - 0xFF
110 "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007" + // 0x00 - 0x07
111 "\b\t\n\u000B\f\r\u000E\u000F" + // 0x08 - 0x0F
112 "\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017" + // 0x10 - 0x17
113 "\u0018\u0019\u001A\u001B\u001C\u001D\u001E\u001F" + // 0x18 - 0x1F
114 "\u0020\u0021\"\u0023\u0024\u0025\u0026\'" + // 0x20 - 0x27
115 "\u0028\u0029\u002A\u002B\u002C\u002D\u002E\u002F" + // 0x28 - 0x2F
116 "\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037" + // 0x30 - 0x37
117 "\u0038\u0039\u003A\u003B\u003C\u003D\u003E\u003F" + // 0x38 - 0x3F
118 "\u0040\u0041\u0042\u0043\u0044\u0045\u0046\u0047" + // 0x40 - 0x47
119 "\u0048\u0049\u004A\u004B\u004C\u004D\u004E\u004F" + // 0x48 - 0x4F
120 "\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057" + // 0x50 - 0x57
121 "\u0058\u0059\u005A\u005B\\\u005D\u005E\u005F" + // 0x58 - 0x5F
122 "\u0060\u0061\u0062\u0063\u0064\u0065\u0066\u0067" + // 0x60 - 0x67
123 "\u0068\u0069\u006A\u006B\u006C\u006D\u006E\u006F" + // 0x68 - 0x6F
124 "\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077" + // 0x70 - 0x77
125 "\u0078\u0079\u007A\u007B\u007C\u007D\u007E\u007F"; // 0x78 - 0x7F
126
127 }
128
129 private static class Encoder extends SingleByteEncoder {
130
131 public Encoder(Charset cs) {
132 super(cs, index1, index2, 0xFF00, 0x00FF, 8);
133 }
134
135 private final static String index2 =
136 "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007" +
137 "\b\t\n\u000B\f\r\u000E\u000F" +
138 "\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017" +
139 "\u0018\u0019\u001A\u001B\u001C\u001D\u001E\u001F" +
140 "\u0020\u0021\"\u0023\u0024\u0025\u0026\'" +
141 "\u0028\u0029\u002A\u002B\u002C\u002D\u002E\u002F" +
142 "\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037" +
143 "\u0038\u0039\u003A\u003B\u003C\u003D\u003E\u003F" +
144 "\u0040\u0041\u0042\u0043\u0044\u0045\u0046\u0047" +
145 "\u0048\u0049\u004A\u004B\u004C\u004D\u004E\u004F" +
146 "\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057" +
147 "\u0058\u0059\u005A\u005B\\\u005D\u005E\u005F" +
148 "\u0060\u0061\u0062\u0063\u0064\u0065\u0066\u0067" +
149 "\u0068\u0069\u006A\u006B\u006C\u006D\u006E\u006F" +
150 "\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077" +
151 "\u0078\u0079\u007A\u007B\u007C\u007D\u007E\u007F" +
152 "\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087" +
153 "\u0088\u0089\u008A\u008B\u008C\u008D\u008E\u008F" +
154 "\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097" +
155 "\u0098\u0099\u009A\u009B\u009C\u009D\u009E\u009F" +
156 "\u00A0\u00A1\u00A2\u00A3\u0000\u00A5\u0000\u00A7" +
157 "\u0000\u00A9\u00AA\u00AB\u00AC\u00AD\u00AE\u00AF" +
158 "\u00B0\u00B1\u00B2\u00B3\u0000\u00B5\u00B6\u00B7" +
159 "\u0000\u00B9\u00BA\u00BB\u0000\u0000\u0000\u00BF" +
160 "\u00C0\u00C1\u00C2\u00C3\u00C4\u00C5\u00C6\u00C7" +
161 "\u00C8\u00C9\u00CA\u00CB\u00CC\u00CD\u00CE\u00CF" +
162 "\u00D0\u00D1\u00D2\u00D3\u00D4\u00D5\u00D6\u00D7" +
163 "\u00D8\u00D9\u00DA\u00DB\u00DC\u00DD\u00DE\u00DF" +
164 "\u00E0\u00E1\u00E2\u00E3\u00E4\u00E5\u00E6\u00E7" +
165 "\u00E8\u00E9\u00EA\u00EB\u00EC\u00ED\u00EE\u00EF" +
166 "\u00F0\u00F1\u00F2\u00F3\u00F4\u00F5\u00F6\u00F7" +
167 "\u00F8\u00F9\u00FA\u00FB\u00FC\u00FD\u00FE\u00FF" +
168 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
169 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
170 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
171 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
172 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
173 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
174 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
175 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
176 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
177 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
178 "\u0000\u0000\u00BC\u00BD\u0000\u0000\u0000\u0000" +
179 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
180 "\u00A6\u00A8\u0000\u0000\u0000\u0000\u0000\u0000" +
181 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
182 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
183 "\u00BE\u0000\u0000\u0000\u0000\u00B4\u00B8\u0000" +
184 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
185 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
186 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
187 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
188 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
189 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
190 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
191 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
192 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
193 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
194 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
195 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
196 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
197 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
198 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
199 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
200 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
201 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
202 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
203 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
204 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
205 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
206 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
207 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
208 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
209 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
210 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
211 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
212 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
213 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
214 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
215 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00A4" +
216 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
217 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
218 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
219 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
220 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
221 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
222 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
223 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
224 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
225 "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" +
226 "\u0000\u0000\u0000";
227
228 private final static short index1[] = {
229 0, 256, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
230 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
231 467, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
232 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
233 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
234 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
235 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
236 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
237 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
238 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
239 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
240 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
241 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
242 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
243 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
244 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
245 };
246
247 }
248
249}