f6133edb08
Reviewed-by: naoto, rriggs
74 lines
2.5 KiB
Plaintext
74 lines
2.5 KiB
Plaintext
/*
|
|
* Copyright (c) 2008, 2023, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation. Oracle designates this
|
|
* particular file as subject to the "Classpath" exception as provided
|
|
* by Oracle in the LICENSE file that accompanied this code.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
package $PACKAGE$;
|
|
|
|
import java.nio.charset.Charset;
|
|
import java.nio.charset.CharsetDecoder;
|
|
import java.nio.charset.CharsetEncoder;
|
|
import sun.nio.cs.StandardCharsets;
|
|
import sun.nio.cs.SingleByte;
|
|
import sun.nio.cs.HistoricallyNamedCharset;
|
|
import static sun.nio.cs.CharsetMapping.*;
|
|
|
|
public class $NAME_CLZ$ extends Charset implements HistoricallyNamedCharset
|
|
{
|
|
public $NAME_CLZ$() {
|
|
super("$NAME_CS$", $NAME_ALIASES$);
|
|
}
|
|
|
|
public String historicalName() {
|
|
return "$NAME_HIST$";
|
|
}
|
|
|
|
public boolean contains(Charset cs) {
|
|
$CONTAINS$;
|
|
}
|
|
|
|
public CharsetDecoder newDecoder() {
|
|
return new SingleByte.Decoder(this, Holder.b2c, $ASCIICOMPATIBLE$, $LATIN1DECODABLE$);
|
|
}
|
|
|
|
public CharsetEncoder newEncoder() {
|
|
return new SingleByte.Encoder(this, Holder.c2b, Holder.c2bIndex, $ASCIICOMPATIBLE$);
|
|
}
|
|
|
|
private static class Holder {
|
|
private static final String b2cTable = $B2CTABLE$
|
|
|
|
private static final char[] b2c = b2cTable.toCharArray();
|
|
private static final char[] c2b = new char[$C2BLENGTH$];
|
|
private static final char[] c2bIndex = new char[0x100];
|
|
|
|
static {
|
|
char[] b2cMap = b2c;
|
|
char[] c2bNR = null;
|
|
$NONROUNDTRIP_B2C$
|
|
$NONROUNDTRIP_C2B$
|
|
SingleByte.initC2B(b2cMap, c2bNR, c2b, c2bIndex);
|
|
}
|
|
}
|
|
}
|