rt/emul/compact/src/main/java/java/nio/charset/CharsetDecoder.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 04 Oct 2013 15:02:17 +0200
changeset 1343 802e5d2da9f6
parent 1337 c794024954b5
permissions -rw-r--r--
Charset can be compiled now
     1 /*
     2  * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    25 
    26 // -- This file was mechanically generated: Do not edit! -- //
    27 
    28 package java.nio.charset;
    29 
    30 //import java.nio.Buffer;
    31 //import java.nio.ByteBuffer;
    32 //import java.nio.CharBuffer;
    33 //import java.nio.BufferOverflowException;
    34 //import java.nio.BufferUnderflowException;
    35 import java.lang.ref.WeakReference;
    36 //import java.nio.charset.CoderMalfunctionError;                  // javadoc
    37 
    38 
    39 /**
    40  * An engine that can transform a sequence of bytes in a specific charset into a sequence of
    41  * sixteen-bit Unicode characters.
    42  *
    43  * <a name="steps">
    44  *
    45  * <p> The input byte sequence is provided in a byte buffer or a series
    46  * of such buffers.  The output character sequence is written to a character buffer
    47  * or a series of such buffers.  A decoder should always be used by making
    48  * the following sequence of method invocations, hereinafter referred to as a
    49  * <i>decoding operation</i>:
    50  *
    51  * <ol>
    52  *
    53  *   <li><p> Reset the decoder via the {@link #reset reset} method, unless it
    54  *   has not been used before; </p></li>
    55  *
    56  *   <li><p> Invoke the {@link #decode decode} method zero or more times, as
    57  *   long as additional input may be available, passing <tt>false</tt> for the
    58  *   <tt>endOfInput</tt> argument and filling the input buffer and flushing the
    59  *   output buffer between invocations; </p></li>
    60  *
    61  *   <li><p> Invoke the {@link #decode decode} method one final time, passing
    62  *   <tt>true</tt> for the <tt>endOfInput</tt> argument; and then </p></li>
    63  *
    64  *   <li><p> Invoke the {@link #flush flush} method so that the decoder can
    65  *   flush any internal state to the output buffer. </p></li>
    66  *
    67  * </ol>
    68  *
    69  * Each invocation of the {@link #decode decode} method will decode as many
    70  * bytes as possible from the input buffer, writing the resulting characters
    71  * to the output buffer.  The {@link #decode decode} method returns when more
    72  * input is required, when there is not enough room in the output buffer, or
    73  * when a decoding error has occurred.  In each case a {@link CoderResult}
    74  * object is returned to describe the reason for termination.  An invoker can
    75  * examine this object and fill the input buffer, flush the output buffer, or
    76  * attempt to recover from a decoding error, as appropriate, and try again.
    77  *
    78  * <a name="ce">
    79  *
    80  * <p> There are two general types of decoding errors.  If the input byte
    81  * sequence is not legal for this charset then the input is considered <i>malformed</i>.  If
    82  * the input byte sequence is legal but cannot be mapped to a valid
    83  * Unicode character then an <i>unmappable character</i> has been encountered.
    84  *
    85  * <a name="cae">
    86  *
    87  * <p> How a decoding error is handled depends upon the action requested for
    88  * that type of error, which is described by an instance of the {@link
    89  * CodingErrorAction} class.  The possible error actions are to {@link
    90  * CodingErrorAction#IGNORE </code>ignore<code>} the erroneous input, {@link
    91  * CodingErrorAction#REPORT </code>report<code>} the error to the invoker via
    92  * the returned {@link CoderResult} object, or {@link CodingErrorAction#REPLACE
    93  * </code>replace<code>} the erroneous input with the current value of the
    94  * replacement string.  The replacement
    95  *
    96 
    97 
    98 
    99 
   100 
   101  * has the initial value <tt>"&#92;uFFFD"</tt>;
   102 
   103  *
   104  * its value may be changed via the {@link #replaceWith(java.lang.String)
   105  * replaceWith} method.
   106  *
   107  * <p> The default action for malformed-input and unmappable-character errors
   108  * is to {@link CodingErrorAction#REPORT </code>report<code>} them.  The
   109  * malformed-input error action may be changed via the {@link
   110  * #onMalformedInput(CodingErrorAction) onMalformedInput} method; the
   111  * unmappable-character action may be changed via the {@link
   112  * #onUnmappableCharacter(CodingErrorAction) onUnmappableCharacter} method.
   113  *
   114  * <p> This class is designed to handle many of the details of the decoding
   115  * process, including the implementation of error actions.  A decoder for a
   116  * specific charset, which is a concrete subclass of this class, need only
   117  * implement the abstract {@link #decodeLoop decodeLoop} method, which
   118  * encapsulates the basic decoding loop.  A subclass that maintains internal
   119  * state should, additionally, override the {@link #implFlush implFlush} and
   120  * {@link #implReset implReset} methods.
   121  *
   122  * <p> Instances of this class are not safe for use by multiple concurrent
   123  * threads.  </p>
   124  *
   125  *
   126  * @author Mark Reinhold
   127  * @author JSR-51 Expert Group
   128  * @since 1.4
   129  *
   130  * @see ByteBuffer
   131  * @see CharBuffer
   132  * @see Charset
   133  * @see CharsetEncoder
   134  */
   135 
   136 public abstract class CharsetDecoder {
   137 
   138     private final Charset charset;
   139     private final float averageCharsPerByte;
   140     private final float maxCharsPerByte;
   141 
   142     private String replacement;
   143 //    private CodingErrorAction malformedInputAction
   144 //        = CodingErrorAction.REPORT;
   145 //    private CodingErrorAction unmappableCharacterAction
   146 //        = CodingErrorAction.REPORT;
   147 
   148     // Internal states
   149     //
   150     private static final int ST_RESET   = 0;
   151     private static final int ST_CODING  = 1;
   152     private static final int ST_END     = 2;
   153     private static final int ST_FLUSHED = 3;
   154 
   155     private int state = ST_RESET;
   156 
   157     private static String stateNames[]
   158         = { "RESET", "CODING", "CODING_END", "FLUSHED" };
   159 
   160 
   161     /**
   162      * Initializes a new decoder.  The new decoder will have the given
   163      * chars-per-byte and replacement values. </p>
   164      *
   165      * @param  averageCharsPerByte
   166      *         A positive float value indicating the expected number of
   167      *         characters that will be produced for each input byte
   168      *
   169      * @param  maxCharsPerByte
   170      *         A positive float value indicating the maximum number of
   171      *         characters that will be produced for each input byte
   172      *
   173      * @param  replacement
   174      *         The initial replacement; must not be <tt>null</tt>, must have
   175      *         non-zero length, must not be longer than maxCharsPerByte,
   176      *         and must be {@link #isLegalReplacement </code>legal<code>}
   177      *
   178      * @throws  IllegalArgumentException
   179      *          If the preconditions on the parameters do not hold
   180      */
   181     private
   182     CharsetDecoder(Charset cs,
   183                    float averageCharsPerByte,
   184                    float maxCharsPerByte,
   185                    String replacement)
   186     {
   187         this.charset = cs;
   188         if (averageCharsPerByte <= 0.0f)
   189             throw new IllegalArgumentException("Non-positive "
   190                                                + "averageCharsPerByte");
   191         if (maxCharsPerByte <= 0.0f)
   192             throw new IllegalArgumentException("Non-positive "
   193                                                + "maxCharsPerByte");
   194         if (averageCharsPerByte > maxCharsPerByte)
   195             throw new IllegalArgumentException("averageCharsPerByte"
   196                                                + " exceeds "
   197                                                + "maxCharsPerByte");
   198         this.replacement = replacement;
   199         this.averageCharsPerByte = averageCharsPerByte;
   200         this.maxCharsPerByte = maxCharsPerByte;
   201         replaceWith(replacement);
   202     }
   203 
   204     /**
   205      * Initializes a new decoder.  The new decoder will have the given
   206      * chars-per-byte values and its replacement will be the
   207      * string <tt>"&#92;uFFFD"</tt>. </p>
   208      *
   209      * @param  averageCharsPerByte
   210      *         A positive float value indicating the expected number of
   211      *         characters that will be produced for each input byte
   212      *
   213      * @param  maxCharsPerByte
   214      *         A positive float value indicating the maximum number of
   215      *         characters that will be produced for each input byte
   216      *
   217      * @throws  IllegalArgumentException
   218      *          If the preconditions on the parameters do not hold
   219      */
   220     protected CharsetDecoder(Charset cs,
   221                              float averageCharsPerByte,
   222                              float maxCharsPerByte)
   223     {
   224         this(cs,
   225              averageCharsPerByte, maxCharsPerByte,
   226              "\uFFFD");
   227     }
   228 
   229     /**
   230      * Returns the charset that created this decoder.  </p>
   231      *
   232      * @return  This decoder's charset
   233      */
   234     public final Charset charset() {
   235         return charset;
   236     }
   237 
   238     /**
   239      * Returns this decoder's replacement value. </p>
   240      *
   241      * @return  This decoder's current replacement,
   242      *          which is never <tt>null</tt> and is never empty
   243      */
   244     public final String replacement() {
   245         return replacement;
   246     }
   247 
   248     /**
   249      * Changes this decoder's replacement value.
   250      *
   251      * <p> This method invokes the {@link #implReplaceWith implReplaceWith}
   252      * method, passing the new replacement, after checking that the new
   253      * replacement is acceptable.  </p>
   254      *
   255      * @param  newReplacement
   256      *
   257 
   258      *         The new replacement; must not be <tt>null</tt>
   259      *         and must have non-zero length
   260 
   261 
   262 
   263 
   264 
   265 
   266 
   267      *
   268      * @return  This decoder
   269      *
   270      * @throws  IllegalArgumentException
   271      *          If the preconditions on the parameter do not hold
   272      */
   273     public final CharsetDecoder replaceWith(String newReplacement) {
   274         if (newReplacement == null)
   275             throw new IllegalArgumentException("Null replacement");
   276         int len = newReplacement.length();
   277         if (len == 0)
   278             throw new IllegalArgumentException("Empty replacement");
   279         if (len > maxCharsPerByte)
   280             throw new IllegalArgumentException("Replacement too long");
   281 
   282 
   283 
   284 
   285         this.replacement = newReplacement;
   286         implReplaceWith(newReplacement);
   287         return this;
   288     }
   289 
   290     /**
   291      * Reports a change to this decoder's replacement value.
   292      *
   293      * <p> The default implementation of this method does nothing.  This method
   294      * should be overridden by decoders that require notification of changes to
   295      * the replacement.  </p>
   296      *
   297      * @param  newReplacement
   298      */
   299     protected void implReplaceWith(String newReplacement) {
   300     }
   301 
   302 
   303 
   304 
   305 
   306 
   307 
   308 
   309 
   310 
   311 
   312 
   313 
   314 
   315 
   316 
   317 
   318 
   319 
   320 
   321 
   322 
   323 
   324 
   325 
   326 
   327 
   328 
   329 
   330 
   331 
   332 
   333 
   334 
   335 
   336 
   337 
   338 
   339 
   340 
   341 
   342     /**
   343      * Returns this decoder's current action for malformed-input errors.  </p>
   344      *
   345      * @return The current malformed-input action, which is never <tt>null</tt>
   346      */
   347 //    public CodingErrorAction malformedInputAction() {
   348 //        return malformedInputAction;
   349 //    }
   350 
   351     /**
   352      * Changes this decoder's action for malformed-input errors.  </p>
   353      *
   354      * <p> This method invokes the {@link #implOnMalformedInput
   355      * implOnMalformedInput} method, passing the new action.  </p>
   356      *
   357      * @param  newAction  The new action; must not be <tt>null</tt>
   358      *
   359      * @return  This decoder
   360      *
   361      * @throws IllegalArgumentException
   362      *         If the precondition on the parameter does not hold
   363      */
   364 //    public final CharsetDecoder onMalformedInput(CodingErrorAction newAction) {
   365 //        if (newAction == null)
   366 //            throw new IllegalArgumentException("Null action");
   367 //        malformedInputAction = newAction;
   368 //        implOnMalformedInput(newAction);
   369 //        return this;
   370 //    }
   371 
   372     /**
   373      * Reports a change to this decoder's malformed-input action.
   374      *
   375      * <p> The default implementation of this method does nothing.  This method
   376      * should be overridden by decoders that require notification of changes to
   377      * the malformed-input action.  </p>
   378      */
   379 //    protected void implOnMalformedInput(CodingErrorAction newAction) { }
   380 
   381     /**
   382      * Returns this decoder's current action for unmappable-character errors.
   383      * </p>
   384      *
   385      * @return The current unmappable-character action, which is never
   386      *         <tt>null</tt>
   387      */
   388 //    public CodingErrorAction unmappableCharacterAction() {
   389 //        return unmappableCharacterAction;
   390 //    }
   391 
   392     /**
   393      * Changes this decoder's action for unmappable-character errors.
   394      *
   395      * <p> This method invokes the {@link #implOnUnmappableCharacter
   396      * implOnUnmappableCharacter} method, passing the new action.  </p>
   397      *
   398      * @param  newAction  The new action; must not be <tt>null</tt>
   399      *
   400      * @return  This decoder
   401      *
   402      * @throws IllegalArgumentException
   403      *         If the precondition on the parameter does not hold
   404      */
   405 //    public final CharsetDecoder onUnmappableCharacter(CodingErrorAction
   406 //                                                      newAction)
   407 //    {
   408 //        if (newAction == null)
   409 //            throw new IllegalArgumentException("Null action");
   410 //        unmappableCharacterAction = newAction;
   411 //        implOnUnmappableCharacter(newAction);
   412 //        return this;
   413 //    }
   414 
   415     /**
   416      * Reports a change to this decoder's unmappable-character action.
   417      *
   418      * <p> The default implementation of this method does nothing.  This method
   419      * should be overridden by decoders that require notification of changes to
   420      * the unmappable-character action.  </p>
   421      */
   422 //    protected void implOnUnmappableCharacter(CodingErrorAction newAction) { }
   423 
   424     /**
   425      * Returns the average number of characters that will be produced for each
   426      * byte of input.  This heuristic value may be used to estimate the size
   427      * of the output buffer required for a given input sequence. </p>
   428      *
   429      * @return  The average number of characters produced
   430      *          per byte of input
   431      */
   432     public final float averageCharsPerByte() {
   433         return averageCharsPerByte;
   434     }
   435 
   436     /**
   437      * Returns the maximum number of characters that will be produced for each
   438      * byte of input.  This value may be used to compute the worst-case size
   439      * of the output buffer required for a given input sequence. </p>
   440      *
   441      * @return  The maximum number of characters that will be produced per
   442      *          byte of input
   443      */
   444     public final float maxCharsPerByte() {
   445         return maxCharsPerByte;
   446     }
   447 
   448     /**
   449      * Decodes as many bytes as possible from the given input buffer,
   450      * writing the results to the given output buffer.
   451      *
   452      * <p> The buffers are read from, and written to, starting at their current
   453      * positions.  At most {@link Buffer#remaining in.remaining()} bytes
   454      * will be read and at most {@link Buffer#remaining out.remaining()}
   455      * characters will be written.  The buffers' positions will be advanced to
   456      * reflect the bytes read and the characters written, but their marks and
   457      * limits will not be modified.
   458      *
   459      * <p> In addition to reading bytes from the input buffer and writing
   460      * characters to the output buffer, this method returns a {@link CoderResult}
   461      * object to describe its reason for termination:
   462      *
   463      * <ul>
   464      *
   465      *   <li><p> {@link CoderResult#UNDERFLOW} indicates that as much of the
   466      *   input buffer as possible has been decoded.  If there is no further
   467      *   input then the invoker can proceed to the next step of the
   468      *   <a href="#steps">decoding operation</a>.  Otherwise this method
   469      *   should be invoked again with further input.  </p></li>
   470      *
   471      *   <li><p> {@link CoderResult#OVERFLOW} indicates that there is
   472      *   insufficient space in the output buffer to decode any more bytes.
   473      *   This method should be invoked again with an output buffer that has
   474      *   more {@linkplain Buffer#remaining remaining} characters. This is
   475      *   typically done by draining any decoded characters from the output
   476      *   buffer.  </p></li>
   477      *
   478      *   <li><p> A {@link CoderResult#malformedForLength
   479      *   </code>malformed-input<code>} result indicates that a malformed-input
   480      *   error has been detected.  The malformed bytes begin at the input
   481      *   buffer's (possibly incremented) position; the number of malformed
   482      *   bytes may be determined by invoking the result object's {@link
   483      *   CoderResult#length() length} method.  This case applies only if the
   484      *   {@link #onMalformedInput </code>malformed action<code>} of this decoder
   485      *   is {@link CodingErrorAction#REPORT}; otherwise the malformed input
   486      *   will be ignored or replaced, as requested.  </p></li>
   487      *
   488      *   <li><p> An {@link CoderResult#unmappableForLength
   489      *   </code>unmappable-character<code>} result indicates that an
   490      *   unmappable-character error has been detected.  The bytes that
   491      *   decode the unmappable character begin at the input buffer's (possibly
   492      *   incremented) position; the number of such bytes may be determined
   493      *   by invoking the result object's {@link CoderResult#length() length}
   494      *   method.  This case applies only if the {@link #onUnmappableCharacter
   495      *   </code>unmappable action<code>} of this decoder is {@link
   496      *   CodingErrorAction#REPORT}; otherwise the unmappable character will be
   497      *   ignored or replaced, as requested.  </p></li>
   498      *
   499      * </ul>
   500      *
   501      * In any case, if this method is to be reinvoked in the same decoding
   502      * operation then care should be taken to preserve any bytes remaining
   503      * in the input buffer so that they are available to the next invocation.
   504      *
   505      * <p> The <tt>endOfInput</tt> parameter advises this method as to whether
   506      * the invoker can provide further input beyond that contained in the given
   507      * input buffer.  If there is a possibility of providing additional input
   508      * then the invoker should pass <tt>false</tt> for this parameter; if there
   509      * is no possibility of providing further input then the invoker should
   510      * pass <tt>true</tt>.  It is not erroneous, and in fact it is quite
   511      * common, to pass <tt>false</tt> in one invocation and later discover that
   512      * no further input was actually available.  It is critical, however, that
   513      * the final invocation of this method in a sequence of invocations always
   514      * pass <tt>true</tt> so that any remaining undecoded input will be treated
   515      * as being malformed.
   516      *
   517      * <p> This method works by invoking the {@link #decodeLoop decodeLoop}
   518      * method, interpreting its results, handling error conditions, and
   519      * reinvoking it as necessary.  </p>
   520      *
   521      *
   522      * @param  in
   523      *         The input byte buffer
   524      *
   525      * @param  out
   526      *         The output character buffer
   527      *
   528      * @param  endOfInput
   529      *         <tt>true</tt> if, and only if, the invoker can provide no
   530      *         additional input bytes beyond those in the given buffer
   531      *
   532      * @return  A coder-result object describing the reason for termination
   533      *
   534      * @throws  IllegalStateException
   535      *          If a decoding operation is already in progress and the previous
   536      *          step was an invocation neither of the {@link #reset reset}
   537      *          method, nor of this method with a value of <tt>false</tt> for
   538      *          the <tt>endOfInput</tt> parameter, nor of this method with a
   539      *          value of <tt>true</tt> for the <tt>endOfInput</tt> parameter
   540      *          but a return value indicating an incomplete decoding operation
   541      *
   542      * @throws  CoderMalfunctionError
   543      *          If an invocation of the decodeLoop method threw
   544      *          an unexpected exception
   545      */
   546 //    public final CoderResult decode(ByteBuffer in, CharBuffer out,
   547 //                                    boolean endOfInput)
   548 //    {
   549 //        int newState = endOfInput ? ST_END : ST_CODING;
   550 //        if ((state != ST_RESET) && (state != ST_CODING)
   551 //            && !(endOfInput && (state == ST_END)))
   552 //            throwIllegalStateException(state, newState);
   553 //        state = newState;
   554 //
   555 //        for (;;) {
   556 //
   557 //            CoderResult cr;
   558 //            try {
   559 //                cr = decodeLoop(in, out);
   560 //            } catch (BufferUnderflowException x) {
   561 //                throw new CoderMalfunctionError(x);
   562 //            } catch (BufferOverflowException x) {
   563 //                throw new CoderMalfunctionError(x);
   564 //            }
   565 //
   566 //            if (cr.isOverflow())
   567 //                return cr;
   568 //
   569 //            if (cr.isUnderflow()) {
   570 //                if (endOfInput && in.hasRemaining()) {
   571 //                    cr = CoderResult.malformedForLength(in.remaining());
   572 //                    // Fall through to malformed-input case
   573 //                } else {
   574 //                    return cr;
   575 //                }
   576 //            }
   577 //
   578 //            CodingErrorAction action = null;
   579 //            if (cr.isMalformed())
   580 //                action = malformedInputAction;
   581 //            else if (cr.isUnmappable())
   582 //                action = unmappableCharacterAction;
   583 //            else
   584 //                assert false : cr.toString();
   585 //
   586 //            if (action == CodingErrorAction.REPORT)
   587 //                return cr;
   588 //
   589 //            if (action == CodingErrorAction.REPLACE) {
   590 //                if (out.remaining() < replacement.length())
   591 //                    return CoderResult.OVERFLOW;
   592 //                out.put(replacement);
   593 //            }
   594 //
   595 //            if ((action == CodingErrorAction.IGNORE)
   596 //                || (action == CodingErrorAction.REPLACE)) {
   597 //                // Skip erroneous input either way
   598 //                in.position(in.position() + cr.length());
   599 //                continue;
   600 //            }
   601 //
   602 //            assert false;
   603 //        }
   604 //
   605 //    }
   606 
   607     /**
   608      * Flushes this decoder.
   609      *
   610      * <p> Some decoders maintain internal state and may need to write some
   611      * final characters to the output buffer once the overall input sequence has
   612      * been read.
   613      *
   614      * <p> Any additional output is written to the output buffer beginning at
   615      * its current position.  At most {@link Buffer#remaining out.remaining()}
   616      * characters will be written.  The buffer's position will be advanced
   617      * appropriately, but its mark and limit will not be modified.
   618      *
   619      * <p> If this method completes successfully then it returns {@link
   620      * CoderResult#UNDERFLOW}.  If there is insufficient room in the output
   621      * buffer then it returns {@link CoderResult#OVERFLOW}.  If this happens
   622      * then this method must be invoked again, with an output buffer that has
   623      * more room, in order to complete the current <a href="#steps">decoding
   624      * operation</a>.
   625      *
   626      * <p> If this decoder has already been flushed then invoking this method
   627      * has no effect.
   628      *
   629      * <p> This method invokes the {@link #implFlush implFlush} method to
   630      * perform the actual flushing operation.  </p>
   631      *
   632      * @param  out
   633      *         The output character buffer
   634      *
   635      * @return  A coder-result object, either {@link CoderResult#UNDERFLOW} or
   636      *          {@link CoderResult#OVERFLOW}
   637      *
   638      * @throws  IllegalStateException
   639      *          If the previous step of the current decoding operation was an
   640      *          invocation neither of the {@link #flush flush} method nor of
   641      *          the three-argument {@link
   642      *          #decode(ByteBuffer,CharBuffer,boolean) decode} method
   643      *          with a value of <tt>true</tt> for the <tt>endOfInput</tt>
   644      *          parameter
   645      */
   646 //    public final CoderResult flush(CharBuffer out) {
   647 //        if (state == ST_END) {
   648 //            CoderResult cr = implFlush(out);
   649 //            if (cr.isUnderflow())
   650 //                state = ST_FLUSHED;
   651 //            return cr;
   652 //        }
   653 //
   654 //        if (state != ST_FLUSHED)
   655 //            throwIllegalStateException(state, ST_FLUSHED);
   656 //
   657 //        return CoderResult.UNDERFLOW; // Already flushed
   658 //    }
   659 
   660     /**
   661      * Flushes this decoder.
   662      *
   663      * <p> The default implementation of this method does nothing, and always
   664      * returns {@link CoderResult#UNDERFLOW}.  This method should be overridden
   665      * by decoders that may need to write final characters to the output buffer
   666      * once the entire input sequence has been read. </p>
   667      *
   668      * @param  out
   669      *         The output character buffer
   670      *
   671      * @return  A coder-result object, either {@link CoderResult#UNDERFLOW} or
   672      *          {@link CoderResult#OVERFLOW}
   673      */
   674 //    protected CoderResult implFlush(CharBuffer out) {
   675 //        return CoderResult.UNDERFLOW;
   676 //    }
   677 
   678     /**
   679      * Resets this decoder, clearing any internal state.
   680      *
   681      * <p> This method resets charset-independent state and also invokes the
   682      * {@link #implReset() implReset} method in order to perform any
   683      * charset-specific reset actions.  </p>
   684      *
   685      * @return  This decoder
   686      *
   687      */
   688     public final CharsetDecoder reset() {
   689         implReset();
   690         state = ST_RESET;
   691         return this;
   692     }
   693 
   694     /**
   695      * Resets this decoder, clearing any charset-specific internal state.
   696      *
   697      * <p> The default implementation of this method does nothing.  This method
   698      * should be overridden by decoders that maintain internal state.  </p>
   699      */
   700     protected void implReset() { }
   701 
   702     /**
   703      * Decodes one or more bytes into one or more characters.
   704      *
   705      * <p> This method encapsulates the basic decoding loop, decoding as many
   706      * bytes as possible until it either runs out of input, runs out of room
   707      * in the output buffer, or encounters a decoding error.  This method is
   708      * invoked by the {@link #decode decode} method, which handles result
   709      * interpretation and error recovery.
   710      *
   711      * <p> The buffers are read from, and written to, starting at their current
   712      * positions.  At most {@link Buffer#remaining in.remaining()} bytes
   713      * will be read, and at most {@link Buffer#remaining out.remaining()}
   714      * characters will be written.  The buffers' positions will be advanced to
   715      * reflect the bytes read and the characters written, but their marks and
   716      * limits will not be modified.
   717      *
   718      * <p> This method returns a {@link CoderResult} object to describe its
   719      * reason for termination, in the same manner as the {@link #decode decode}
   720      * method.  Most implementations of this method will handle decoding errors
   721      * by returning an appropriate result object for interpretation by the
   722      * {@link #decode decode} method.  An optimized implementation may instead
   723      * examine the relevant error action and implement that action itself.
   724      *
   725      * <p> An implementation of this method may perform arbitrary lookahead by
   726      * returning {@link CoderResult#UNDERFLOW} until it receives sufficient
   727      * input.  </p>
   728      *
   729      * @param  in
   730      *         The input byte buffer
   731      *
   732      * @param  out
   733      *         The output character buffer
   734      *
   735      * @return  A coder-result object describing the reason for termination
   736      */
   737 //    protected abstract CoderResult decodeLoop(ByteBuffer in,
   738 //                                              CharBuffer out);
   739 
   740     /**
   741      * Convenience method that decodes the remaining content of a single input
   742      * byte buffer into a newly-allocated character buffer.
   743      *
   744      * <p> This method implements an entire <a href="#steps">decoding
   745      * operation</a>; that is, it resets this decoder, then it decodes the
   746      * bytes in the given byte buffer, and finally it flushes this
   747      * decoder.  This method should therefore not be invoked if a decoding
   748      * operation is already in progress.  </p>
   749      *
   750      * @param  in
   751      *         The input byte buffer
   752      *
   753      * @return A newly-allocated character buffer containing the result of the
   754      *         decoding operation.  The buffer's position will be zero and its
   755      *         limit will follow the last character written.
   756      *
   757      * @throws  IllegalStateException
   758      *          If a decoding operation is already in progress
   759      *
   760      * @throws  MalformedInputException
   761      *          If the byte sequence starting at the input buffer's current
   762      *          position is not legal for this charset and the current malformed-input action
   763      *          is {@link CodingErrorAction#REPORT}
   764      *
   765      * @throws  UnmappableCharacterException
   766      *          If the byte sequence starting at the input buffer's current
   767      *          position cannot be mapped to an equivalent character sequence and
   768      *          the current unmappable-character action is {@link
   769      *          CodingErrorAction#REPORT}
   770      */
   771 //    public final CharBuffer decode(ByteBuffer in)
   772 //        throws CharacterCodingException
   773 //    {
   774 //        int n = (int)(in.remaining() * averageCharsPerByte());
   775 //        CharBuffer out = CharBuffer.allocate(n);
   776 //
   777 //        if ((n == 0) && (in.remaining() == 0))
   778 //            return out;
   779 //        reset();
   780 //        for (;;) {
   781 //            CoderResult cr = in.hasRemaining() ?
   782 //                decode(in, out, true) : CoderResult.UNDERFLOW;
   783 //            if (cr.isUnderflow())
   784 //                cr = flush(out);
   785 //
   786 //            if (cr.isUnderflow())
   787 //                break;
   788 //            if (cr.isOverflow()) {
   789 //                n = 2*n + 1;    // Ensure progress; n might be 0!
   790 //                CharBuffer o = CharBuffer.allocate(n);
   791 //                out.flip();
   792 //                o.put(out);
   793 //                out = o;
   794 //                continue;
   795 //            }
   796 //            cr.throwException();
   797 //        }
   798 //        out.flip();
   799 //        return out;
   800 //    }
   801 
   802 
   803 
   804     /**
   805      * Tells whether or not this decoder implements an auto-detecting charset.
   806      *
   807      * <p> The default implementation of this method always returns
   808      * <tt>false</tt>; it should be overridden by auto-detecting decoders to
   809      * return <tt>true</tt>.  </p>
   810      *
   811      * @return  <tt>true</tt> if, and only if, this decoder implements an
   812      *          auto-detecting charset
   813      */
   814     public boolean isAutoDetecting() {
   815         return false;
   816     }
   817 
   818     /**
   819      * Tells whether or not this decoder has yet detected a
   820      * charset&nbsp;&nbsp;<i>(optional operation)</i>.
   821      *
   822      * <p> If this decoder implements an auto-detecting charset then at a
   823      * single point during a decoding operation this method may start returning
   824      * <tt>true</tt> to indicate that a specific charset has been detected in
   825      * the input byte sequence.  Once this occurs, the {@link #detectedCharset
   826      * detectedCharset} method may be invoked to retrieve the detected charset.
   827      *
   828      * <p> That this method returns <tt>false</tt> does not imply that no bytes
   829      * have yet been decoded.  Some auto-detecting decoders are capable of
   830      * decoding some, or even all, of an input byte sequence without fixing on
   831      * a particular charset.
   832      *
   833      * <p> The default implementation of this method always throws an {@link
   834      * UnsupportedOperationException}; it should be overridden by
   835      * auto-detecting decoders to return <tt>true</tt> once the input charset
   836      * has been determined.  </p>
   837      *
   838      * @return  <tt>true</tt> if, and only if, this decoder has detected a
   839      *          specific charset
   840      *
   841      * @throws  UnsupportedOperationException
   842      *          If this decoder does not implement an auto-detecting charset
   843      */
   844     public boolean isCharsetDetected() {
   845         throw new UnsupportedOperationException();
   846     }
   847 
   848     /**
   849      * Retrieves the charset that was detected by this
   850      * decoder&nbsp;&nbsp;<i>(optional operation)</i>.
   851      *
   852      * <p> If this decoder implements an auto-detecting charset then this
   853      * method returns the actual charset once it has been detected.  After that
   854      * point, this method returns the same value for the duration of the
   855      * current decoding operation.  If not enough input bytes have yet been
   856      * read to determine the actual charset then this method throws an {@link
   857      * IllegalStateException}.
   858      *
   859      * <p> The default implementation of this method always throws an {@link
   860      * UnsupportedOperationException}; it should be overridden by
   861      * auto-detecting decoders to return the appropriate value.  </p>
   862      *
   863      * @return  The charset detected by this auto-detecting decoder,
   864      *          or <tt>null</tt> if the charset has not yet been determined
   865      *
   866      * @throws  IllegalStateException
   867      *          If insufficient bytes have been read to determine a charset
   868      *
   869      * @throws  UnsupportedOperationException
   870      *          If this decoder does not implement an auto-detecting charset
   871      */
   872     public Charset detectedCharset() {
   873         throw new UnsupportedOperationException();
   874     }
   875 
   876 
   877 
   878 
   879 
   880 
   881 
   882 
   883 
   884 
   885 
   886 
   887 
   888 
   889 
   890 
   891 
   892 
   893 
   894 
   895 
   896 
   897 
   898 
   899 
   900 
   901 
   902 
   903 
   904 
   905 
   906 
   907 
   908 
   909 
   910 
   911 
   912 
   913 
   914 
   915 
   916 
   917 
   918 
   919 
   920 
   921 
   922 
   923 
   924 
   925 
   926 
   927 
   928 
   929 
   930 
   931 
   932 
   933 
   934 
   935 
   936 
   937 
   938 
   939 
   940 
   941 
   942 
   943 
   944 
   945 
   946 
   947 
   948 
   949 
   950 
   951 
   952 
   953 
   954 
   955 
   956 
   957 
   958 
   959 
   960 
   961 
   962 
   963 
   964 
   965     private void throwIllegalStateException(int from, int to) {
   966         throw new IllegalStateException("Current state = " + stateNames[from]
   967                                         + ", new state = " + stateNames[to]);
   968     }
   969 
   970 }