jdk/src/share/classes/sun/io/ByteToCharSingleByte.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1996-2002 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.io;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * A table driven conversion from byte to char for single byte  character sets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * The needed data tables will reside in a character set specific subclass.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * @author Lloyd Honomichl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * @author Asmus Freytag
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
public abstract class ByteToCharSingleByte extends ByteToCharConverter {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
     * Mapping table. Values supplied by subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    protected String byteToCharTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    public String getByteToCharTable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
        return byteToCharTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    public int flush(char[] output, int outStart, int outEnd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        byteOff = charOff = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * Converts bytes to characters according to the selected character
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * encoding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * Maintains internal state, so that conversions that result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * exceptions can be restarted by calling convert again, with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * appropriately modified parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * Call reset before converting input that is not a continuation of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * the previous call.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * @return the number of characters written to output.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * @param input byte array containing text in character set
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * @param inStart offset in input array
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * @param inEnd offset of last byte to be converted
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * @param output character array to receive conversion result
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * @param outStart starting offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * @param outEnd offset of last character to be written to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * @throw MalformedInputException for any sequence of bytes that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * illegal for the input character set, including any partial multi-byte
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * sequence which occurs at the end of an input buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * @throw UnsupportedCharacterException for any sequence of bytes that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * contain a character not supported in the current conversion.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * @throw BufferFullException whenever the output buffer is full
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * before the input is exhausted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * @see #reset
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    public int convert(byte[] input, int inOff, int inEnd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                       char[] output, int outOff, int outEnd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        throws UnknownCharacterException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
               MalformedInputException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
               ConversionBufferFullException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        char    outputChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        int     byteIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        charOff = outOff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        byteOff = inOff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        // Loop until we hit the end of the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        while(byteOff < inEnd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            byteIndex = input[byteOff];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            /* old source
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
             *outputChar = byteToCharTable[input[byteOff] + 128];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            // Lookup the output character
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            outputChar = getUnicode(byteIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            // Is the output unmappable?
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            if (outputChar == '\uFFFD') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                if (subMode) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                    outputChar = subChars[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                    badInputLength = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                    throw new UnknownCharacterException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            // If we don't have room for the output, throw an exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            if (charOff >= outEnd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                throw new ConversionBufferFullException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            // Put the character in the output buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            output[charOff]= outputChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            charOff++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            byteOff++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        // Return the length written to the output buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        return charOff-outOff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    protected char getUnicode(int byteIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        int n = byteIndex + 128;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        if (n >= byteToCharTable.length() || n < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            return '\uFFFD';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        return byteToCharTable.charAt(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *  Resets the converter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *  Call this method to reset the converter to its initial state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    public void reset() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        byteOff = charOff = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
}