jdk/make/data/charsetmapping/SingleByte-X.java.template
author sherman
Wed, 30 Aug 2017 10:09:13 -0700
changeset 47025 e78bddc74bf5
parent 33663 2cd62a4bd471
permissions -rw-r--r--
8186801: Add regression test to test mapping based charsets (generated at build time) Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1713
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 21805
diff changeset
     2
 * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
1713
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
     4
 *
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4341
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
1713
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4341
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
1713
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    10
 *
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    15
 * accompanied this code).
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    16
 *
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4341
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4341
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4341
diff changeset
    23
 * questions.
1713
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    24
 */
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    25
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    26
package $PACKAGE$;
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    27
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    28
import java.nio.charset.Charset;
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    29
import java.nio.charset.CharsetDecoder;
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    30
import java.nio.charset.CharsetEncoder;
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    31
import sun.nio.cs.StandardCharsets;
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    32
import sun.nio.cs.SingleByte;
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    33
import sun.nio.cs.HistoricallyNamedCharset;
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    34
import static sun.nio.cs.CharsetMapping.*;
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    35
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    36
public class $NAME_CLZ$ extends Charset implements HistoricallyNamedCharset
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    37
{
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    38
    public $NAME_CLZ$() {
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    39
        super("$NAME_CS$", $NAME_ALIASES$);
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    40
    }
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    41
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    42
    public String historicalName() {
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    43
        return "$NAME_HIS$";
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    44
    }
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    45
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    46
    public boolean contains(Charset cs) {
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    47
        $CONTAINS$;
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    48
    }
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    49
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    50
    public CharsetDecoder newDecoder() {
33663
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 23010
diff changeset
    51
        return new SingleByte.Decoder(this, b2c, $ASCIICOMPATIBLE$);
1713
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    52
    }
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    53
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    54
    public CharsetEncoder newEncoder() {
33663
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 23010
diff changeset
    55
        return new SingleByte.Encoder(this, c2b, c2bIndex, $ASCIICOMPATIBLE$);
1713
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    56
    }
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    57
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    58
    private final static String b2cTable = $B2CTABLE$
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    59
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    60
    private final static char[] b2c = b2cTable.toCharArray();
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    61
    private final static char[] c2b = new char[$C2BLENGTH$];
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    62
    private final static char[] c2bIndex = new char[0x100];
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    63
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    64
    static {
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    65
        char[] b2cMap = b2c;
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    66
        char[] c2bNR = null;
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    67
        $NONROUNDTRIP_B2C$
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    68
        $NONROUNDTRIP_C2B$
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    69
        SingleByte.initC2B(b2cMap, c2bNR, c2b, c2bIndex);
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    70
    }
f8b8bfa64fc1 6642323: Speeding up Single Byte Decoders
sherman
parents:
diff changeset
    71
}