jdk/src/share/classes/java/util/Scanner.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 2057 3acf8e5e2ca0
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 2003-2006 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 java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.regex.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.math.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.nio.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.nio.channels.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.nio.charset.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.text.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.util.Locale;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import sun.misc.LRUCache;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * A simple text scanner which can parse primitive types and strings using
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * regular expressions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <p>A <code>Scanner</code> breaks its input into tokens using a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * delimiter pattern, which by default matches whitespace. The resulting
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * tokens may then be converted into values of different types using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * various <tt>next</tt> methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <p>For example, this code allows a user to read a number from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <tt>System.in</tt>:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *     Scanner sc = new Scanner(System.in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *     int i = sc.nextInt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <p>As another example, this code allows <code>long</code> types to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * assigned from entries in a file <code>myNumbers</code>:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *      Scanner sc = new Scanner(new File("myNumbers"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *      while (sc.hasNextLong()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *          long aLong = sc.nextLong();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *      }</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * <p>The scanner can also use delimiters other than whitespace. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * example reads several items in from a string:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *<blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *     String input = "1 fish 2 fish red fish blue fish";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *     Scanner s = new Scanner(input).useDelimiter("\\s*fish\\s*");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *     System.out.println(s.nextInt());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *     System.out.println(s.nextInt());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *     System.out.println(s.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *     System.out.println(s.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *     s.close(); </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * prints the following output:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *     1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *     2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *     red
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *     blue </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * <p>The same output can be generated with this code, which uses a regular
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * expression to parse all four tokens at once:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *<blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *     String input = "1 fish 2 fish red fish blue fish";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *     Scanner s = new Scanner(input);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *     s.findInLine("(\\d+) fish (\\d+) fish (\\w+) fish (\\w+)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *     MatchResult result = s.match();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *     for (int i=1; i<=result.groupCount(); i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *         System.out.println(result.group(i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *     s.close(); </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * <p>The <a name="default-delimiter">default whitespace delimiter</a> used
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * by a scanner is as recognized by {@link java.lang.Character}.{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * java.lang.Character#isWhitespace(char) isWhitespace}. The {@link #reset}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * method will reset the value of the scanner's delimiter to the default
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * whitespace delimiter regardless of whether it was previously changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * <p>A scanning operation may block waiting for input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * <p>The {@link #next} and {@link #hasNext} methods and their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * primitive-type companion methods (such as {@link #nextInt} and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * {@link #hasNextInt}) first skip any input that matches the delimiter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * pattern, and then attempt to return the next token. Both <tt>hasNext</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * and <tt>next</tt> methods may block waiting for further input.  Whether a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * <tt>hasNext</tt> method blocks has no connection to whether or not its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * associated <tt>next</tt> method will block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * <p> The {@link #findInLine}, {@link #findWithinHorizon}, and {@link #skip}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * methods operate independently of the delimiter pattern. These methods will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * attempt to match the specified pattern with no regard to delimiters in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * input and thus can be used in special circumstances where delimiters are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * not relevant. These methods may block waiting for more input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * <p>When a scanner throws an {@link InputMismatchException}, the scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * will not pass the token that caused the exception, so that it may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * retrieved or skipped via some other method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * <p>Depending upon the type of delimiting pattern, empty tokens may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * returned. For example, the pattern <tt>"\\s+"</tt> will return no empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 * tokens since it matches multiple instances of the delimiter. The delimiting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * pattern <tt>"\\s"</tt> could return empty tokens since it only passes one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * space at a time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * <p> A scanner can read text from any object which implements the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * java.lang.Readable} interface.  If an invocation of the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * readable's {@link java.lang.Readable#read} method throws an {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * java.io.IOException} then the scanner assumes that the end of the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * has been reached.  The most recent <tt>IOException</tt> thrown by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * underlying readable can be retrieved via the {@link #ioException} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * <p>When a <code>Scanner</code> is closed, it will close its input source
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * if the source implements the {@link java.io.Closeable} interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 * <p>A <code>Scanner</code> is not safe for multithreaded use without
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 * external synchronization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * <p>Unless otherwise mentioned, passing a <code>null</code> parameter into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 * any method of a <code>Scanner</code> will cause a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 * <code>NullPointerException</code> to be thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 * <p>A scanner will default to interpreting numbers as decimal unless a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * different radix has been set by using the {@link #useRadix} method. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 * {@link #reset} method will reset the value of the scanner's radix to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 * <code>10</code> regardless of whether it was previously changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 * <a name="localized-numbers">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 * <h4> Localized numbers </h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 * <p> An instance of this class is capable of scanning numbers in the standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
 * formats as well as in the formats of the scanner's locale. A scanner's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 * <a name="initial-locale">initial locale </a>is the value returned by the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 * java.util.Locale#getDefault} method; it may be changed via the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 * #useLocale} method. The {@link #reset} method will reset the value of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 * scanner's locale to the initial locale regardless of whether it was
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 * previously changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 * <p>The localized formats are defined in terms of the following parameters,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
 * which for a particular locale are taken from that locale's {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 * java.text.DecimalFormat DecimalFormat} object, <tt>df</tt>, and its and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 * {@link java.text.DecimalFormatSymbols DecimalFormatSymbols} object,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 * <tt>dfs</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 * <blockquote><table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
 * <tr><td valign="top"><i>LocalGroupSeparator&nbsp;&nbsp;</i></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
 *     <td valign="top">The character used to separate thousands groups,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 *                      <i>i.e.,</i>&nbsp;<tt>dfs.</tt>{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 *                      java.text.DecimalFormatSymbols#getGroupingSeparator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
 *                      getGroupingSeparator()}</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
 * <tr><td valign="top"><i>LocalDecimalSeparator&nbsp;&nbsp;</i></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
 *     <td valign="top">The character used for the decimal point,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
 *                      <i>i.e.,</i>&nbsp;<tt>dfs.</tt>{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
 *                      java.text.DecimalFormatSymbols#getDecimalSeparator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
 *                      getDecimalSeparator()}</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 * <tr><td valign="top"><i>LocalPositivePrefix&nbsp;&nbsp;</i></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 *     <td valign="top">The string that appears before a positive number (may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 *                      be empty), <i>i.e.,</i>&nbsp;<tt>df.</tt>{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
 *                      java.text.DecimalFormat#getPositivePrefix
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
 *                      getPositivePrefix()}</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
 * <tr><td valign="top"><i>LocalPositiveSuffix&nbsp;&nbsp;</i></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
 *     <td valign="top">The string that appears after a positive number (may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 *                      empty), <i>i.e.,</i>&nbsp;<tt>df.</tt>{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
 *                      java.text.DecimalFormat#getPositiveSuffix
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
 *                      getPositiveSuffix()}</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
 * <tr><td valign="top"><i>LocalNegativePrefix&nbsp;&nbsp;</i></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
 *     <td valign="top">The string that appears before a negative number (may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
 *                      be empty), <i>i.e.,</i>&nbsp;<tt>df.</tt>{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
 *                      java.text.DecimalFormat#getNegativePrefix
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
 *                      getNegativePrefix()}</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
 * <tr><td valign="top"><i>LocalNegativeSuffix&nbsp;&nbsp;</i></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
 *     <td valign="top">The string that appears after a negative number (may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
 *                      empty), <i>i.e.,</i>&nbsp;<tt>df.</tt>{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
 *                      java.text.DecimalFormat#getNegativeSuffix
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
 *                      getNegativeSuffix()}</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
 * <tr><td valign="top"><i>LocalNaN&nbsp;&nbsp;</i></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
 *     <td valign="top">The string that represents not-a-number for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
 *                      floating-point values,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
 *                      <i>i.e.,</i>&nbsp;<tt>dfs.</tt>{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
 *                      java.text.DecimalFormatSymbols#getNaN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
 *                      getNaN()}</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
 * <tr><td valign="top"><i>LocalInfinity&nbsp;&nbsp;</i></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
 *     <td valign="top">The string that represents infinity for floating-point
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
 *                      values, <i>i.e.,</i>&nbsp;<tt>dfs.</tt>{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
 *                      java.text.DecimalFormatSymbols#getInfinity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
 *                      getInfinity()}</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
 * </table></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
 * <a name="number-syntax">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
 * <h4> Number syntax </h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
 * <p> The strings that can be parsed as numbers by an instance of this class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
 * are specified in terms of the following regular-expression grammar, where
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
 * Rmax is the highest digit in the radix being used (for example, Rmax is 9
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
 * in base 10).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
 * <table cellspacing=0 cellpadding=0 align=center>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
 *   <tr><td valign=top align=right><i>NonASCIIDigit</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
 *       <td valign=top>= A non-ASCII character c for which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
 *            {@link java.lang.Character#isDigit Character.isDigit}<tt>(c)</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
 *                        returns&nbsp;true</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
 *   <tr><td align=right><i>Non0Digit</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
 *   <td><tt>= [1-</tt><i>Rmax</i><tt>] | </tt><i>NonASCIIDigit</i></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
 *   <tr><td align=right><i>Digit</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
 *   <td><tt>= [0-</tt><i>Rmax</i><tt>] | </tt><i>NonASCIIDigit</i></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
 *   <tr><td valign=top align=right><i>GroupedNumeral</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
 *       <td valign=top>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
 *         <table cellpadding=0 cellspacing=0>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
 *           <tr><td><tt>= (&nbsp;</tt></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
 *               <td><i>Non0Digit</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
 *                   </tt><i>Digit</i><tt>?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
 *                   </tt><i>Digit</i><tt>?</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
 *           <tr><td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
 *               <td><tt>(&nbsp;</tt><i>LocalGroupSeparator</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
 *                         </tt><i>Digit</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
 *                         </tt><i>Digit</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
 *                         </tt><i>Digit</i><tt> )+ )</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
 *         </table></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
 *   <tr><td align=right><i>Numeral</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
 *       <td><tt>= ( ( </tt><i>Digit</i><tt>+ )
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
 *               | </tt><i>GroupedNumeral</i><tt> )</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
 *   <tr><td valign=top align=right>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
 *         <a name="Integer-regex"><i>Integer</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
 *       <td valign=top><tt>= ( [-+]? ( </tt><i>Numeral</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
 *                               ) )</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
 *   <tr><td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
 *       <td><tt>| </tt><i>LocalPositivePrefix</i><tt> </tt><i>Numeral</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
 *                      </tt><i>LocalPositiveSuffix</i></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
 *   <tr><td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
 *       <td><tt>| </tt><i>LocalNegativePrefix</i><tt> </tt><i>Numeral</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
 *                 </tt><i>LocalNegativeSuffix</i></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
 *   <tr><td align=right><i>DecimalNumeral</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
 *       <td><tt>= </tt><i>Numeral</i></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
 *   <tr><td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
 *       <td><tt>| </tt><i>Numeral</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
 *                 </tt><i>LocalDecimalSeparator</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
 *                 </tt><i>Digit</i><tt>*</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
 *   <tr><td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
 *       <td><tt>| </tt><i>LocalDecimalSeparator</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
 *                 </tt><i>Digit</i><tt>+</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
 *   <tr><td align=right><i>Exponent</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
 *       <td><tt>= ( [eE] [+-]? </tt><i>Digit</i><tt>+ )</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
 *   <tr><td align=right>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
 *         <a name="Decimal-regex"><i>Decimal</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
 *       <td><tt>= ( [-+]? </tt><i>DecimalNumeral</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
 *                         </tt><i>Exponent</i><tt>? )</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
 *   <tr><td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
 *       <td><tt>| </tt><i>LocalPositivePrefix</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
 *                 </tt><i>DecimalNumeral</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
 *                 </tt><i>LocalPositiveSuffix</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
 *                 </tt><i>Exponent</i><tt>?</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
 *   <tr><td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
 *       <td><tt>| </tt><i>LocalNegativePrefix</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
 *                 </tt><i>DecimalNumeral</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
 *                 </tt><i>LocalNegativeSuffix</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
 *                 </tt><i>Exponent</i><tt>?</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
 *   <tr><td align=right><i>HexFloat</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
 *       <td><tt>= [-+]? 0[xX][0-9a-fA-F]*\.[0-9a-fA-F]+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
 *                 ([pP][-+]?[0-9]+)?</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
 *   <tr><td align=right><i>NonNumber</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
 *       <td valign=top><tt>= NaN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
 *                          | </tt><i>LocalNan</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
 *                          | Infinity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
 *                          | </tt><i>LocalInfinity</i></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
 *   <tr><td align=right><i>SignedNonNumber</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
 *       <td><tt>= ( [-+]? </tt><i>NonNumber</i><tt> )</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
 *   <tr><td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
 *       <td><tt>| </tt><i>LocalPositivePrefix</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
 *                 </tt><i>NonNumber</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
 *                 </tt><i>LocalPositiveSuffix</i></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
 *   <tr><td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
 *       <td><tt>| </tt><i>LocalNegativePrefix</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
 *                 </tt><i>NonNumber</i><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
 *                 </tt><i>LocalNegativeSuffix</i></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
 *   <tr><td>&nbsp;</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
 *   <tr><td valign=top align=right>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
 *         <a name="Float-regex"><i>Float</i>&nbsp;&nbsp;::</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
 *       <td valign=top><tt>= </tt><i>Decimal</i><tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
 *       <tr><td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
 *           <td><tt>| </tt><i>HexFloat</i><tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
 *       <tr><td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
 *           <td><tt>| </tt><i>SignedNonNumber</i><tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
 * </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
 * </center>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
 * <p> Whitespace is not significant in the above regular expressions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
 * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
public final class Scanner implements Iterator<String> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    // Internal buffer used to hold input
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    private CharBuffer buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    // Size of internal character buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    private static final int BUFFER_SIZE = 1024; // change to 1024;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    // The index into the buffer currently held by the Scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    private int position;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    // Internal matcher used for finding delimiters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    private Matcher matcher;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    // Pattern used to delimit tokens
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    private Pattern delimPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    // Pattern found in last hasNext operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
    private Pattern hasNextPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    // Position after last hasNext operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    private int hasNextPosition;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    // Result after last hasNext operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    private String hasNextResult;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    // The input source
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    private Readable source;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    // Boolean is true if source is done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    private boolean sourceClosed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    // Boolean indicating more input is required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    private boolean needInput = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    // Boolean indicating if a delim has been skipped this operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    private boolean skipped = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    // A store of a position that the scanner may fall back to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    private int savedScannerPosition = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    // A cache of the last primitive type scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    private Object typeCache = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    // Boolean indicating if a match result is available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    private boolean matchValid = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    // Boolean indicating if this scanner has been closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    private boolean closed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    // The current radix used by this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    private int radix = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    // The default radix for this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    private int defaultRadix = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    // The locale used by this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    private Locale locale = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    // A cache of the last few recently used Patterns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    private LRUCache<String,Pattern> patternCache =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    new LRUCache<String,Pattern>(7) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        protected Pattern create(String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
            return Pattern.compile(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        protected boolean hasName(Pattern p, String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
            return p.pattern().equals(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
    // A holder of the last IOException encountered
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    private IOException lastException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    // A pattern for java whitespace
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    private static Pattern WHITESPACE_PATTERN = Pattern.compile(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                                                "\\p{javaWhitespace}+");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    // A pattern for any token
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    private static Pattern FIND_ANY_PATTERN = Pattern.compile("(?s).*");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    // A pattern for non-ASCII digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    private static Pattern NON_ASCII_DIGIT = Pattern.compile(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        "[\\p{javaDigit}&&[^0-9]]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    // Fields and methods to support scanning primitive types
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * Locale dependent values used to scan numbers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    private String groupSeparator = "\\,";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    private String decimalSeparator = "\\.";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    private String nanString = "NaN";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    private String infinityString = "Infinity";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
    private String positivePrefix = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    private String negativePrefix = "\\-";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    private String positiveSuffix = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    private String negativeSuffix = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * Fields and an accessor method to match booleans
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    private static volatile Pattern boolPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    private static final String BOOLEAN_PATTERN = "true|false";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    private static Pattern boolPattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        Pattern bp = boolPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        if (bp == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
            boolPattern = bp = Pattern.compile(BOOLEAN_PATTERN,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
                                          Pattern.CASE_INSENSITIVE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        return bp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * Fields and methods to match bytes, shorts, ints, and longs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    private Pattern integerPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
    private String digits = "0123456789abcdefghijklmnopqrstuvwxyz";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    private String non0Digit = "[\\p{javaDigit}&&[^0]]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    private int SIMPLE_GROUP_INDEX = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    private String buildIntegerPatternString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        String radixDigits = digits.substring(0, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        // \\p{javaDigit} is not guaranteed to be appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        // here but what can we do? The final authority will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        // whatever parse method is invoked, so ultimately the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        // Scanner will do the right thing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        String digit = "((?i)["+radixDigits+"]|\\p{javaDigit})";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        String groupedNumeral = "("+non0Digit+digit+"?"+digit+"?("+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
                                groupSeparator+digit+digit+digit+")+)";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        // digit++ is the possessive form which is necessary for reducing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        // backtracking that would otherwise cause unacceptable performance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        String numeral = "(("+ digit+"++)|"+groupedNumeral+")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        String javaStyleInteger = "([-+]?(" + numeral + "))";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        String negativeInteger = negativePrefix + numeral + negativeSuffix;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        String positiveInteger = positivePrefix + numeral + positiveSuffix;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        return "("+ javaStyleInteger + ")|(" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
            positiveInteger + ")|(" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
            negativeInteger + ")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    private Pattern integerPattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        if (integerPattern == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
            integerPattern = patternCache.forName(buildIntegerPatternString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        return integerPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * Fields and an accessor method to match line separators
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    private static volatile Pattern separatorPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
    private static volatile Pattern linePattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
    private static final String LINE_SEPARATOR_PATTERN =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
                                           "\r\n|[\n\r\u2028\u2029\u0085]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
    private static final String LINE_PATTERN = ".*("+LINE_SEPARATOR_PATTERN+")|.+$";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    private static Pattern separatorPattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        Pattern sp = separatorPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        if (sp == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
            separatorPattern = sp = Pattern.compile(LINE_SEPARATOR_PATTERN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        return sp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    private static Pattern linePattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        Pattern lp = linePattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        if (lp == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            linePattern = lp = Pattern.compile(LINE_PATTERN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        return lp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * Fields and methods to match floats and doubles
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    private Pattern floatPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    private Pattern decimalPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    private void buildFloatAndDecimalPattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        // \\p{javaDigit} may not be perfect, see above
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        String digit = "([0-9]|(\\p{javaDigit}))";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        String exponent = "([eE][+-]?"+digit+"+)?";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
        String groupedNumeral = "("+non0Digit+digit+"?"+digit+"?("+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                                groupSeparator+digit+digit+digit+")+)";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        // Once again digit++ is used for performance, as above
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        String numeral = "(("+digit+"++)|"+groupedNumeral+")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        String decimalNumeral = "("+numeral+"|"+numeral +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
            decimalSeparator + digit + "*+|"+ decimalSeparator +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
            digit + "++)";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        String nonNumber = "(NaN|"+nanString+"|Infinity|"+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                               infinityString+")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        String positiveFloat = "(" + positivePrefix + decimalNumeral +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                            positiveSuffix + exponent + ")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
        String negativeFloat = "(" + negativePrefix + decimalNumeral +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
                            negativeSuffix + exponent + ")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        String decimal = "(([-+]?" + decimalNumeral + exponent + ")|"+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
            positiveFloat + "|" + negativeFloat + ")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        String hexFloat =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            "[-+]?0[xX][0-9a-fA-F]*\\.[0-9a-fA-F]+([pP][-+]?[0-9]+)?";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        String positiveNonNumber = "(" + positivePrefix + nonNumber +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                            positiveSuffix + ")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        String negativeNonNumber = "(" + negativePrefix + nonNumber +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                            negativeSuffix + ")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        String signedNonNumber = "(([-+]?"+nonNumber+")|" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
                                 positiveNonNumber + "|" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
                                 negativeNonNumber + ")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        floatPattern = Pattern.compile(decimal + "|" + hexFloat + "|" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
                                       signedNonNumber);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        decimalPattern = Pattern.compile(decimal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
    private Pattern floatPattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        if (floatPattern == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
            buildFloatAndDecimalPattern();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        return floatPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    private Pattern decimalPattern() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        if (decimalPattern == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
            buildFloatAndDecimalPattern();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        return decimalPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    // Constructors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * Constructs a <code>Scanner</code> that returns values scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * from the specified source delimited by the specified pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * @param  source A character source implementing the Readable interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     * @param pattern A delimiting pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     * @return A scanner with the specified source and pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    private Scanner(Readable source, Pattern pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        if (source == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
            throw new NullPointerException("source");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        if (pattern == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
            throw new NullPointerException("pattern");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        this.source = source;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
        delimPattern = pattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        buf = CharBuffer.allocate(BUFFER_SIZE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        buf.limit(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
        matcher = delimPattern.matcher(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
        matcher.useTransparentBounds(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
        matcher.useAnchoringBounds(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        useLocale(Locale.getDefault());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     * Constructs a new <code>Scanner</code> that produces values scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * from the specified source.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * @param  source A character source implementing the {@link Readable}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     *         interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    public Scanner(Readable source) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        this(source, WHITESPACE_PATTERN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     * Constructs a new <code>Scanner</code> that produces values scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     * from the specified input stream. Bytes from the stream are converted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * into characters using the underlying platform's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * {@linkplain java.nio.charset.Charset#defaultCharset() default charset}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     * @param  source An input stream to be scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    public Scanner(InputStream source) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        this(new InputStreamReader(source), WHITESPACE_PATTERN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     * Constructs a new <code>Scanner</code> that produces values scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * from the specified input stream. Bytes from the stream are converted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * into characters using the specified charset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * @param  source An input stream to be scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * @param charsetName The encoding type used to convert bytes from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     *        stream into characters to be scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * @throws IllegalArgumentException if the specified character set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     *         does not exist
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
    public Scanner(InputStream source, String charsetName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
        this(makeReadable(source, charsetName), WHITESPACE_PATTERN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    private static Readable makeReadable(InputStream source,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                                         String charsetName)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        if (source == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
            throw new NullPointerException("source");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
        InputStreamReader isr = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
            isr = new InputStreamReader(source, charsetName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
        } catch (UnsupportedEncodingException uee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
            IllegalArgumentException iae = new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
            iae.initCause(uee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
            throw iae;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
        return isr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     * Constructs a new <code>Scanner</code> that produces values scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     * from the specified file. Bytes from the file are converted into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     * characters using the underlying platform's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     * {@linkplain java.nio.charset.Charset#defaultCharset() default charset}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     * @param  source A file to be scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     * @throws FileNotFoundException if source is not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
    public Scanner(File source)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        throws FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        this((ReadableByteChannel)(new FileInputStream(source).getChannel()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     * Constructs a new <code>Scanner</code> that produces values scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     * from the specified file. Bytes from the file are converted into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * characters using the specified charset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     * @param  source A file to be scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     * @param charsetName The encoding type used to convert bytes from the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     *        into characters to be scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     * @throws FileNotFoundException if source is not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     * @throws IllegalArgumentException if the specified encoding is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     *         not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
    public Scanner(File source, String charsetName)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        throws FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        this((ReadableByteChannel)(new FileInputStream(source).getChannel()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
             charsetName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * Constructs a new <code>Scanner</code> that produces values scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     * from the specified string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * @param  source A string to scan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    public Scanner(String source) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        this(new StringReader(source), WHITESPACE_PATTERN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * Constructs a new <code>Scanner</code> that produces values scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * from the specified channel. Bytes from the source are converted into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * characters using the underlying platform's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * {@linkplain java.nio.charset.Charset#defaultCharset() default charset}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * @param  source A channel to scan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    public Scanner(ReadableByteChannel source) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
        this(makeReadable(source), WHITESPACE_PATTERN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    private static Readable makeReadable(ReadableByteChannel source) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        if (source == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
            throw new NullPointerException("source");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        String defaultCharsetName =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
            java.nio.charset.Charset.defaultCharset().name();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        return Channels.newReader(source,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
                           java.nio.charset.Charset.defaultCharset().name());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * Constructs a new <code>Scanner</code> that produces values scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * from the specified channel. Bytes from the source are converted into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * characters using the specified charset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * @param  source A channel to scan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     * @param charsetName The encoding type used to convert bytes from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     *        channel into characters to be scanned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     * @throws IllegalArgumentException if the specified character set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     *         does not exist
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
    public Scanner(ReadableByteChannel source, String charsetName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        this(makeReadable(source, charsetName), WHITESPACE_PATTERN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
    private static Readable makeReadable(ReadableByteChannel source,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                                  String charsetName)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        if (source == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
            throw new NullPointerException("source");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
        if (!Charset.isSupported(charsetName))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
            throw new IllegalArgumentException(charsetName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        return Channels.newReader(source, charsetName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    // Private primitives used to support scanning
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
    private void saveState() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
        savedScannerPosition = position;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
    private void revertState() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        this.position = savedScannerPosition;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
        savedScannerPosition = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
        skipped = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    private boolean revertState(boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        this.position = savedScannerPosition;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        savedScannerPosition = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        skipped = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        return b;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
    private void cacheResult() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        hasNextResult = matcher.group();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        hasNextPosition = matcher.end();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        hasNextPattern = matcher.pattern();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
    private void cacheResult(String result) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
        hasNextResult = result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        hasNextPosition = matcher.end();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        hasNextPattern = matcher.pattern();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    // Clears both regular cache and type cache
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    private void clearCaches() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        hasNextPattern = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        typeCache = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    // Also clears both the regular cache and the type cache
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    private String getCachedResult() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        position = hasNextPosition;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
        hasNextPattern = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
        typeCache = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
        return hasNextResult;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
    // Also clears both the regular cache and the type cache
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
    private void useTypeCache() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
        if (closed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
            throw new IllegalStateException("Scanner closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
        position = hasNextPosition;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        hasNextPattern = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
        typeCache = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
    // Tries to read more input. May block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
    private void readInput() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        if (buf.limit() == buf.capacity())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
            makeSpace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
        // Prepare to receive data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
        int p = buf.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
        buf.position(buf.limit());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        buf.limit(buf.capacity());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
        int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
            n = source.read(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
            lastException = ioe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
            n = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
        if (n == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
            sourceClosed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            needInput = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        if (n > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
            needInput = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
        // Restore current position and limit for reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
        buf.limit(buf.position());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
        buf.position(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
    // After this method is called there will either be an exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
    // or else there will be space in the buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
    private boolean makeSpace() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
        int offset = savedScannerPosition == -1 ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
            position : savedScannerPosition;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        buf.position(offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
        // Gain space by compacting buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        if (offset > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
            buf.compact();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
            translateSavedIndexes(offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
            position -= offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
            buf.flip();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        // Gain space by growing buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        int newSize = buf.capacity() * 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        CharBuffer newBuf = CharBuffer.allocate(newSize);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
        newBuf.put(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
        newBuf.flip();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
        translateSavedIndexes(offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
        position -= offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
        buf = newBuf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        matcher.reset(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
    // When a buffer compaction/reallocation occurs the saved indexes must
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
    // be modified appropriately
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
    private void translateSavedIndexes(int offset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
        if (savedScannerPosition != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
            savedScannerPosition -= offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
    // If we are at the end of input then NoSuchElement;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
    // If there is still input left then InputMismatch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
    private void throwFor() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
        skipped = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
        if ((sourceClosed) && (position == buf.limit()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
            throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
            throw new InputMismatchException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    // Returns true if a complete token or partial token is in the buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
    // It is not necessary to find a complete token since a partial token
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
    // means that there will be another token with or without more input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
    private boolean hasTokenInBuffer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
        matchValid = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        matcher.usePattern(delimPattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
        matcher.region(position, buf.limit());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
        // Skip delims first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
        if (matcher.lookingAt())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
            position = matcher.end();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
        // If we are sitting at the end, no more tokens in buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
        if (position == buf.limit())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     * Returns a "complete token" that matches the specified pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
     * A token is complete if surrounded by delims; a partial token
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
     * is prefixed by delims but not postfixed by them
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
     * The position is advanced to the end of that complete token
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     * Pattern == null means accept any token at all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     * Triple return:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     * 1. valid string means it was found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     * 2. null with needInput=false means we won't ever find it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     * 3. null with needInput=true means try again after readInput
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
    private String getCompleteTokenInBuffer(Pattern pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
        matchValid = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
        // Skip delims first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
        matcher.usePattern(delimPattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
        if (!skipped) { // Enforcing only one skip of leading delims
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
            matcher.region(position, buf.limit());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
            if (matcher.lookingAt()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
                // If more input could extend the delimiters then we must wait
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
                // for more input
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
                if (matcher.hitEnd() && !sourceClosed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
                    needInput = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
                // The delims were whole and the matcher should skip them
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
                skipped = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
                position = matcher.end();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
        // If we are sitting at the end, no more tokens in buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
        if (position == buf.limit()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
            if (sourceClosed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
            needInput = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
        // Must look for next delims. Simply attempting to match the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
        // pattern at this point may find a match but it might not be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
        // the first longest match because of missing input, or it might
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
        // match a partial token instead of the whole thing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
        // Then look for next delims
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
        matcher.region(position, buf.limit());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
        boolean foundNextDelim = matcher.find();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
        if (foundNextDelim && (matcher.end() == position)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
            // Zero length delimiter match; we should find the next one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
            // using the automatic advance past a zero length match;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
            // Otherwise we have just found the same one we just skipped
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
            foundNextDelim = matcher.find();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        if (foundNextDelim) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
            // In the rare case that more input could cause the match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
            // to be lost and there is more input coming we must wait
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
            // for more input. Note that hitting the end is okay as long
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
            // as the match cannot go away. It is the beginning of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
            // next delims we want to be sure about, we don't care if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
            // they potentially extend further.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
            if (matcher.requireEnd() && !sourceClosed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
                needInput = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
            int tokenEnd = matcher.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
            // There is a complete token.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
            if (pattern == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
                // Must continue with match to provide valid MatchResult
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
                pattern = FIND_ANY_PATTERN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
            //  Attempt to match against the desired pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
            matcher.usePattern(pattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
            matcher.region(position, tokenEnd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
            if (matcher.matches()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
                String s = matcher.group();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
                position = matcher.end();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
                return s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
            } else { // Complete token but it does not match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
        // If we can't find the next delims but no more input is coming,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        // then we can treat the remainder as a whole token
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        if (sourceClosed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
            if (pattern == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
                // Must continue with match to provide valid MatchResult
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
                pattern = FIND_ANY_PATTERN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
            // Last token; Match the pattern here or throw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
            matcher.usePattern(pattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
            matcher.region(position, buf.limit());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
            if (matcher.matches()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
                String s = matcher.group();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
                position = matcher.end();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
                return s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
            // Last piece does not match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
        // There is a partial token in the buffer; must read more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
        // to complete it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
        needInput = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
    // Finds the specified pattern in the buffer up to horizon.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
    // Returns a match for the specified input pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
    private String findPatternInBuffer(Pattern pattern, int horizon) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
        matchValid = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        matcher.usePattern(pattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
        int bufferLimit = buf.limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        int horizonLimit = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
        int searchLimit = bufferLimit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
        if (horizon > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
            horizonLimit = position + horizon;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
            if (horizonLimit < bufferLimit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
                searchLimit = horizonLimit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
        matcher.region(position, searchLimit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
        if (matcher.find()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
            if (matcher.hitEnd() && (!sourceClosed)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
                // The match may be longer if didn't hit horizon or real end
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
                if (searchLimit != horizonLimit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
                     // Hit an artificial end; try to extend the match
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
                    needInput = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
                // The match could go away depending on what is next
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
                if ((searchLimit == horizonLimit) && matcher.requireEnd()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
                    // Rare case: we hit the end of input and it happens
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
                    // that it is at the horizon and the end of input is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
                    // required for the match.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
                    needInput = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
            // Did not hit end, or hit real end, or hit horizon
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
            position = matcher.end();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
            return matcher.group();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
        if (sourceClosed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
        // If there is no specified horizon, or if we have not searched
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
        // to the specified horizon yet, get more input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
        if ((horizon == 0) || (searchLimit != horizonLimit))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
            needInput = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
    // Returns a match for the specified input pattern anchored at
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
    // the current position
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
    private String matchPatternInBuffer(Pattern pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
        matchValid = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
        matcher.usePattern(pattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
        matcher.region(position, buf.limit());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
        if (matcher.lookingAt()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
            if (matcher.hitEnd() && (!sourceClosed)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
                // Get more input and try again
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
                needInput = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
            position = matcher.end();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
            return matcher.group();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
        if (sourceClosed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
        // Read more to find pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
        needInput = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
    // Throws if the scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
    private void ensureOpen() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
        if (closed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
            throw new IllegalStateException("Scanner closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
    // Public methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     * Closes this scanner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
     * <p> If this scanner has not yet been closed then if its underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
     * {@linkplain java.lang.Readable readable} also implements the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
     * java.io.Closeable} interface then the readable's <tt>close</tt> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
     * will be invoked.  If this scanner is already closed then invoking this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
     * method will have no effect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
     * <p>Attempting to perform search operations after a scanner has
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
     * been closed will result in an {@link IllegalStateException}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
    public void close() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
        if (closed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
        if (source instanceof Closeable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
                ((Closeable)source).close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
            } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
                lastException = ioe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
        sourceClosed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
        source = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
        closed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     * Returns the <code>IOException</code> last thrown by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
     * <code>Scanner</code>'s underlying <code>Readable</code>. This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     * returns <code>null</code> if no such exception exists.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     * @return the last exception thrown by this scanner's readable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
    public IOException ioException() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
        return lastException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
     * Returns the <code>Pattern</code> this <code>Scanner</code> is currently
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
     * using to match delimiters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
     * @return this scanner's delimiting pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
    public Pattern delimiter() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
        return delimPattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     * Sets this scanner's delimiting pattern to the specified pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
     * @param pattern A delimiting pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     * @return this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
    public Scanner useDelimiter(Pattern pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
        delimPattern = pattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     * Sets this scanner's delimiting pattern to a pattern constructed from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
     * the specified <code>String</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     * <tt>useDelimiter(pattern)</tt> behaves in exactly the same way as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
     * invocation <tt>useDelimiter(Pattern.compile(pattern))</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
     * <p> Invoking the {@link #reset} method will set the scanner's delimiter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
     * to the <a href= "#default-delimiter">default</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
     * @param pattern A string specifying a delimiting pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
     * @return this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
    public Scanner useDelimiter(String pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
        delimPattern = patternCache.forName(pattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
     * Returns this scanner's locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
     * <p>A scanner's locale affects many elements of its default
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
     * primitive matching regular expressions; see
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
     * <a href= "#localized-numbers">localized numbers</a> above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
     * @return this scanner's locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
    public Locale locale() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
        return this.locale;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     * Sets this scanner's locale to the specified locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
     * <p>A scanner's locale affects many elements of its default
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
     * primitive matching regular expressions; see
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
     * <a href= "#localized-numbers">localized numbers</a> above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     * <p>Invoking the {@link #reset} method will set the scanner's locale to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     * the <a href= "#initial-locale">initial locale</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
     * @param locale A string specifying the locale to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
     * @return this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
    public Scanner useLocale(Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
        if (locale.equals(this.locale))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
            return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
        this.locale = locale;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
        DecimalFormat df =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
            (DecimalFormat)NumberFormat.getNumberInstance(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
        DecimalFormatSymbols dfs = DecimalFormatSymbols.getInstance(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
        // These must be literalized to avoid collision with regex
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
        // metacharacters such as dot or parenthesis
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
        groupSeparator =   "\\" + dfs.getGroupingSeparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
        decimalSeparator = "\\" + dfs.getDecimalSeparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
        // Quoting the nonzero length locale-specific things
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
        // to avoid potential conflict with metacharacters
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
        nanString = "\\Q" + dfs.getNaN() + "\\E";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
        infinityString = "\\Q" + dfs.getInfinity() + "\\E";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
        positivePrefix = df.getPositivePrefix();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
        if (positivePrefix.length() > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
            positivePrefix = "\\Q" + positivePrefix + "\\E";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
        negativePrefix = df.getNegativePrefix();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
        if (negativePrefix.length() > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
            negativePrefix = "\\Q" + negativePrefix + "\\E";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
        positiveSuffix = df.getPositiveSuffix();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
        if (positiveSuffix.length() > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
            positiveSuffix = "\\Q" + positiveSuffix + "\\E";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
        negativeSuffix = df.getNegativeSuffix();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
        if (negativeSuffix.length() > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
            negativeSuffix = "\\Q" + negativeSuffix + "\\E";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
        // Force rebuilding and recompilation of locale dependent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
        // primitive patterns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
        integerPattern = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
        floatPattern = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
     * Returns this scanner's default radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
     * <p>A scanner's radix affects elements of its default
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
     * number matching regular expressions; see
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
     * <a href= "#localized-numbers">localized numbers</a> above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
     * @return the default radix of this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
    public int radix() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
        return this.defaultRadix;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
     * Sets this scanner's default radix to the specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
     * <p>A scanner's radix affects elements of its default
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
     * number matching regular expressions; see
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
     * <a href= "#localized-numbers">localized numbers</a> above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
     * <p>If the radix is less than <code>Character.MIN_RADIX</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
     * or greater than <code>Character.MAX_RADIX</code>, then an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
     * <code>IllegalArgumentException</code> is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
     * <p>Invoking the {@link #reset} method will set the scanner's radix to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
     * <code>10</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
     * @param radix The radix to use when scanning numbers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
     * @return this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
     * @throws IllegalArgumentException if radix is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
    public Scanner useRadix(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
        if ((radix < Character.MIN_RADIX) || (radix > Character.MAX_RADIX))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
            throw new IllegalArgumentException("radix:"+radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
        if (this.defaultRadix == radix)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
            return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
        this.defaultRadix = radix;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
        // Force rebuilding and recompilation of radix dependent patterns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
        integerPattern = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
    // The next operation should occur in the specified radix but
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
    // the default is left untouched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
    private void setRadix(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
        if (this.radix != radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
            // Force rebuilding and recompilation of radix dependent patterns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
            integerPattern = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
            this.radix = radix;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
     * Returns the match result of the last scanning operation performed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
     * by this scanner. This method throws <code>IllegalStateException</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
     * if no match has been performed, or if the last match was
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
     * not successful.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
     * <p>The various <code>next</code>methods of <code>Scanner</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
     * make a match result available if they complete without throwing an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
     * exception. For instance, after an invocation of the {@link #nextInt}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
     * method that returned an int, this method returns a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
     * <code>MatchResult</code> for the search of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
     * <a href="#Integer-regex"><i>Integer</i></a> regular expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
     * defined above. Similarly the {@link #findInLine},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
     * {@link #findWithinHorizon}, and {@link #skip} methods will make a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
     * match available if they succeed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
     * @return a match result for the last match operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
     * @throws IllegalStateException  If no match result is available
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
    public MatchResult match() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
        if (!matchValid)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
            throw new IllegalStateException("No match result available");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
        return matcher.toMatchResult();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
     * <p>Returns the string representation of this <code>Scanner</code>. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
     * string representation of a <code>Scanner</code> contains information
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
     * that may be useful for debugging. The exact format is unspecified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
     * @return  The string representation of this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
        StringBuilder sb = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
        sb.append("java.util.Scanner");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
        sb.append("[delimiters=" + delimPattern + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
        sb.append("[position=" + position + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
        sb.append("[match valid=" + matchValid + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
        sb.append("[need input=" + needInput + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
        sb.append("[source closed=" + sourceClosed + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
        sb.append("[skipped=" + skipped + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
        sb.append("[group separator=" + groupSeparator + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
        sb.append("[decimal separator=" + decimalSeparator + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
        sb.append("[positive prefix=" + positivePrefix + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
        sb.append("[negative prefix=" + negativePrefix + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
        sb.append("[positive suffix=" + positiveSuffix + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
        sb.append("[negative suffix=" + negativeSuffix + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
        sb.append("[NaN string=" + nanString + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
        sb.append("[infinity string=" + infinityString + "]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
     * Returns true if this scanner has another token in its input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
     * This method may block while waiting for input to scan.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
     * The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
     * @return true if and only if this scanner has another token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
     * @see java.util.Iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
    public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
        saveState();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
        while (!sourceClosed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
            if (hasTokenInBuffer())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
                return revertState(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
            readInput();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
        boolean result = hasTokenInBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
        return revertState(result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
     * Finds and returns the next complete token from this scanner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
     * A complete token is preceded and followed by input that matches
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
     * the delimiter pattern. This method may block while waiting for input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
     * to scan, even if a previous invocation of {@link #hasNext} returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
     * <code>true</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
     * @return the next token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
     * @throws NoSuchElementException if no more tokens are available
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
     * @see java.util.Iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
    public String next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
            String token = getCompleteTokenInBuffer(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
            if (token != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
                matchValid = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
                skipped = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
                return token;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
            if (needInput)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
                readInput();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
                throwFor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
     * The remove operation is not supported by this implementation of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
     * <code>Iterator</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
     * @throws UnsupportedOperationException if this method is invoked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
     * @see java.util.Iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
    public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
        throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
     * Returns true if the next token matches the pattern constructed from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
     * specified string. The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
     * <p> An invocation of this method of the form <tt>hasNext(pattern)</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
     * <tt>hasNext(Pattern.compile(pattern))</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
     * @param pattern a string specifying the pattern to scan
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
     * @return true if and only if this scanner has another token matching
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
     *         the specified pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
    public boolean hasNext(String pattern)  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
        return hasNext(patternCache.forName(pattern));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
     * Returns the next token if it matches the pattern constructed from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
     * specified string.  If the match is successful, the scanner advances
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
     * past the input that matched the pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
     * <p> An invocation of this method of the form <tt>next(pattern)</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
     * <tt>next(Pattern.compile(pattern))</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
     * @param pattern a string specifying the pattern to scan
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
     * @return the next token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
     * @throws NoSuchElementException if no such tokens are available
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
    public String next(String pattern)  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
        return next(patternCache.forName(pattern));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
     * Returns true if the next complete token matches the specified pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
     * A complete token is prefixed and postfixed by input that matches
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
     * the delimiter pattern. This method may block while waiting for input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
     * The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
     * @param pattern the pattern to scan for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
     * @return true if and only if this scanner has another token matching
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
     *         the specified pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
    public boolean hasNext(Pattern pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
        if (pattern == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
        hasNextPattern = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
        saveState();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
            if (getCompleteTokenInBuffer(pattern) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
                matchValid = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
                cacheResult();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
                return revertState(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
            if (needInput)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
                readInput();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
                return revertState(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
     * Returns the next token if it matches the specified pattern. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
     * method may block while waiting for input to scan, even if a previous
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
     * invocation of {@link #hasNext(Pattern)} returned <code>true</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
     * If the match is successful, the scanner advances past the input that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
     * matched the pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
     * @param pattern the pattern to scan for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
     * @return the next token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
     * @throws NoSuchElementException if no more tokens are available
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
    public String next(Pattern pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
        if (pattern == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
        // Did we already find this pattern?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
        if (hasNextPattern == pattern)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
            return getCachedResult();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
        // Search for the pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
            String token = getCompleteTokenInBuffer(pattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
            if (token != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
                matchValid = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
                skipped = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
                return token;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
            if (needInput)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
                readInput();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
                throwFor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
     * Returns true if there is another line in the input of this scanner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
     * This method may block while waiting for input. The scanner does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
     * advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
     * @return true if and only if this scanner has another line of input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
    public boolean hasNextLine() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
        saveState();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
        String result = findWithinHorizon(linePattern(), 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
        if (result != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
            MatchResult mr = this.match();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
            String lineSep = mr.group(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
            if (lineSep != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
                result = result.substring(0, result.length() -
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
                                          lineSep.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
                cacheResult(result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
                cacheResult();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
        revertState();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
        return (result != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
     * Advances this scanner past the current line and returns the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
     * that was skipped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
     * This method returns the rest of the current line, excluding any line
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
     * separator at the end. The position is set to the beginning of the next
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
     * line.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
     * <p>Since this method continues to search through the input looking
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
     * for a line separator, it may buffer all of the input searching for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
     * the line to skip if no line separators are present.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
     * @return the line that was skipped
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
     * @throws NoSuchElementException if no line was found
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
    public String nextLine() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
        if (hasNextPattern == linePattern())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
            return getCachedResult();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
        String result = findWithinHorizon(linePattern, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
        if (result == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
            throw new NoSuchElementException("No line found");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
        MatchResult mr = this.match();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
        String lineSep = mr.group(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
        if (lineSep != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
            result = result.substring(0, result.length() - lineSep.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
        if (result == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
            throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
            return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
    // Public methods that ignore delimiters
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
     * Attempts to find the next occurrence of a pattern constructed from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
     * specified string, ignoring delimiters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
     * <p>An invocation of this method of the form <tt>findInLine(pattern)</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
     * <tt>findInLine(Pattern.compile(pattern))</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
     * @param pattern a string specifying the pattern to search for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
     * @return the text that matched the specified pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
    public String findInLine(String pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
        return findInLine(patternCache.forName(pattern));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
     * Attempts to find the next occurrence of the specified pattern ignoring
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
     * delimiters. If the pattern is found before the next line separator, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
     * scanner advances past the input that matched and returns the string that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
     * matched the pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
     * If no such pattern is detected in the input up to the next line
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
     * separator, then <code>null</code> is returned and the scanner's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
     * position is unchanged. This method may block waiting for input that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
     * matches the pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
     * <p>Since this method continues to search through the input looking
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
     * for the specified pattern, it may buffer all of the input searching for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
     * the desired token if no line separators are present.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
     * @param pattern the pattern to scan for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
     * @return the text that matched the specified pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
    public String findInLine(Pattern pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
        if (pattern == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
        // Expand buffer to include the next newline or end of input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
        int endPosition = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
        saveState();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
            String token = findPatternInBuffer(separatorPattern(), 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
            if (token != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
                endPosition = matcher.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
                break; // up to next newline
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
            if (needInput) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
                readInput();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
                endPosition = buf.limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
                break; // up to end of input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
        revertState();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
        int horizonForLine = endPosition - position;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
        // If there is nothing between the current pos and the next
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
        // newline simply return null, invoking findWithinHorizon
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
        // with "horizon=0" will scan beyond the line bound.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
        if (horizonForLine == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
        // Search for the pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
        return findWithinHorizon(pattern, horizonForLine);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
     * Attempts to find the next occurrence of a pattern constructed from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
     * specified string, ignoring delimiters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
     * <p>An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
     * <tt>findWithinHorizon(pattern)</tt> behaves in exactly the same way as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
     * the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
     * <tt>findWithinHorizon(Pattern.compile(pattern, horizon))</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
     * @param pattern a string specifying the pattern to search for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
     * @return the text that matched the specified pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
     * @throws IllegalArgumentException if horizon is negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
    public String findWithinHorizon(String pattern, int horizon) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
        return findWithinHorizon(patternCache.forName(pattern), horizon);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
     * Attempts to find the next occurrence of the specified pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
     * <p>This method searches through the input up to the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
     * search horizon, ignoring delimiters. If the pattern is found the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
     * scanner advances past the input that matched and returns the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
     * that matched the pattern. If no such pattern is detected then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
     * null is returned and the scanner's position remains unchanged. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
     * method may block waiting for input that matches the pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
     * <p>A scanner will never search more than <code>horizon</code> code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
     * points beyond its current position. Note that a match may be clipped
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
     * by the horizon; that is, an arbitrary match result may have been
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
     * different if the horizon had been larger. The scanner treats the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
     * horizon as a transparent, non-anchoring bound (see {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
     * Matcher#useTransparentBounds} and {@link Matcher#useAnchoringBounds}).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
     * <p>If horizon is <code>0</code>, then the horizon is ignored and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
     * this method continues to search through the input looking for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
     * specified pattern without bound. In this case it may buffer all of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
     * the input searching for the pattern.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
     * <p>If horizon is negative, then an IllegalArgumentException is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
     * thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
     * @param pattern the pattern to scan for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
     * @return the text that matched the specified pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
     * @throws IllegalArgumentException if horizon is negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
    public String findWithinHorizon(Pattern pattern, int horizon) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
        if (pattern == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
        if (horizon < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
            throw new IllegalArgumentException("horizon < 0");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
        // Search for the pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
            String token = findPatternInBuffer(pattern, horizon);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
            if (token != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
                matchValid = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
                return token;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
            if (needInput)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
                readInput();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
                break; // up to end of input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
     * Skips input that matches the specified pattern, ignoring delimiters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
     * This method will skip input if an anchored match of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
     * pattern succeeds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
     * <p>If a match to the specified pattern is not found at the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
     * current position, then no input is skipped and a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
     * <tt>NoSuchElementException</tt> is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
     * <p>Since this method seeks to match the specified pattern starting at
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
     * the scanner's current position, patterns that can match a lot of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
     * input (".*", for example) may cause the scanner to buffer a large
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
     * amount of input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
     * <p>Note that it is possible to skip something without risking a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
     * <code>NoSuchElementException</code> by using a pattern that can
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
     * match nothing, e.g., <code>sc.skip("[ \t]*")</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
     * @param pattern a string specifying the pattern to skip over
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
     * @return this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
     * @throws NoSuchElementException if the specified pattern is not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
    public Scanner skip(Pattern pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
        if (pattern == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
        // Search for the pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
            String token = matchPatternInBuffer(pattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
            if (token != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
                matchValid = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
                position = matcher.end();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
                return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
            if (needInput)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
                readInput();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
     * Skips input that matches a pattern constructed from the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
     * string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
     * <p> An invocation of this method of the form <tt>skip(pattern)</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
     * <tt>skip(Pattern.compile(pattern))</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
     * @param pattern a string specifying the pattern to skip over
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
     * @return this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
    public Scanner skip(String pattern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
        return skip(patternCache.forName(pattern));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
    // Convenience methods for scanning primitives
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
     * interpreted as a boolean value using a case insensitive pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
     * created from the string "true|false".  The scanner does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
     * advance past the input that matched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
     *         boolean value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
    public boolean hasNextBoolean()  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
        return hasNext(boolPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
     * Scans the next token of the input into a boolean value and returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
     * that value. This method will throw <code>InputMismatchException</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
     * if the next token cannot be translated into a valid boolean value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
     * If the match is successful, the scanner advances past the input that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
     * matched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
     * @return the boolean scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
     * @throws InputMismatchException if the next token is not a valid boolean
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
     * @throws NoSuchElementException if input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
    public boolean nextBoolean()  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
        return Boolean.parseBoolean(next(boolPattern()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
     * interpreted as a byte value in the default radix using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
     * {@link #nextByte} method. The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
     *         byte value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
    public boolean hasNextByte() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
        return hasNextByte(defaultRadix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
     * interpreted as a byte value in the specified radix using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
     * {@link #nextByte} method. The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
     * @param radix the radix used to interpret the token as a byte value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
     *         byte value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
    public boolean hasNextByte(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
        setRadix(radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
        boolean result = hasNext(integerPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
        if (result) { // Cache it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
                String s = (matcher.group(SIMPLE_GROUP_INDEX) == null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
                    processIntegerToken(hasNextResult) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
                    hasNextResult;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
                typeCache = Byte.parseByte(s, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
            } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
                result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
     * Scans the next token of the input as a <tt>byte</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
     * <tt>nextByte()</tt> behaves in exactly the same way as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
     * invocation <tt>nextByte(radix)</tt>, where <code>radix</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
     * is the default radix of this scanner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
     * @return the <tt>byte</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
     *         if the next token does not match the <i>Integer</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
     * @throws NoSuchElementException if input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
    public byte nextByte() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
         return nextByte(defaultRadix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
     * Scans the next token of the input as a <tt>byte</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
     * This method will throw <code>InputMismatchException</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
     * if the next token cannot be translated into a valid byte value as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
     * described below. If the translation is successful, the scanner advances
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
     * past the input that matched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
     * <p> If the next token matches the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
     * href="#Integer-regex"><i>Integer</i></a> regular expression defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
     * above then the token is converted into a <tt>byte</tt> value as if by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
     * removing all locale specific prefixes, group separators, and locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
     * specific suffixes, then mapping non-ASCII digits into ASCII
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
     * digits via {@link Character#digit Character.digit}, prepending a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
     * negative sign (-) if the locale specific negative prefixes and suffixes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
     * were present, and passing the resulting string to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
     * {@link Byte#parseByte(String, int) Byte.parseByte} with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
     * specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
     * @param radix the radix used to interpret the token as a byte value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
     * @return the <tt>byte</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
     *         if the next token does not match the <i>Integer</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
     * @throws NoSuchElementException if input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
    public byte nextByte(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
        // Check cached result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
        if ((typeCache != null) && (typeCache instanceof Byte)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
            && this.radix == radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
            byte val = ((Byte)typeCache).byteValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
            useTypeCache();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
            return val;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
        setRadix(radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
        // Search for next byte
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
            String s = next(integerPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
            if (matcher.group(SIMPLE_GROUP_INDEX) == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
                s = processIntegerToken(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
            return Byte.parseByte(s, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
        } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
            position = matcher.start(); // don't skip bad token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
            throw new InputMismatchException(nfe.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1884
     * interpreted as a short value in the default radix using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
     * {@link #nextShort} method. The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
     *         short value in the default radix
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
    public boolean hasNextShort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
        return hasNextShort(defaultRadix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
     * interpreted as a short value in the specified radix using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
     * {@link #nextShort} method. The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
     * @param radix the radix used to interpret the token as a short value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
     *         short value in the specified radix
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
    public boolean hasNextShort(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
        setRadix(radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
        boolean result = hasNext(integerPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
        if (result) { // Cache it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
                String s = (matcher.group(SIMPLE_GROUP_INDEX) == null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
                    processIntegerToken(hasNextResult) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
                    hasNextResult;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
                typeCache = Short.parseShort(s, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
            } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1915
                result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1916
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1917
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1918
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1919
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1920
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1921
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
     * Scans the next token of the input as a <tt>short</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1923
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1924
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1925
     * <tt>nextShort()</tt> behaves in exactly the same way as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
     * invocation <tt>nextShort(radix)</tt>, where <code>radix</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
     * is the default radix of this scanner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
     * @return the <tt>short</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1931
     *         if the next token does not match the <i>Integer</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
     * @throws NoSuchElementException if input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1936
    public short nextShort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1937
        return nextShort(defaultRadix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
     * Scans the next token of the input as a <tt>short</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
     * This method will throw <code>InputMismatchException</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
     * if the next token cannot be translated into a valid short value as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1944
     * described below. If the translation is successful, the scanner advances
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1945
     * past the input that matched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1946
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
     * <p> If the next token matches the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
     * href="#Integer-regex"><i>Integer</i></a> regular expression defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
     * above then the token is converted into a <tt>short</tt> value as if by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1950
     * removing all locale specific prefixes, group separators, and locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1951
     * specific suffixes, then mapping non-ASCII digits into ASCII
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
     * digits via {@link Character#digit Character.digit}, prepending a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1953
     * negative sign (-) if the locale specific negative prefixes and suffixes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1954
     * were present, and passing the resulting string to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1955
     * {@link Short#parseShort(String, int) Short.parseShort} with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
     * specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1958
     * @param radix the radix used to interpret the token as a short value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
     * @return the <tt>short</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
     *         if the next token does not match the <i>Integer</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
     * @throws NoSuchElementException if input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
    public short nextShort(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
        // Check cached result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
        if ((typeCache != null) && (typeCache instanceof Short)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
            && this.radix == radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1970
            short val = ((Short)typeCache).shortValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1971
            useTypeCache();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1972
            return val;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
        setRadix(radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
        // Search for next short
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
            String s = next(integerPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
            if (matcher.group(SIMPLE_GROUP_INDEX) == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
                s = processIntegerToken(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
            return Short.parseShort(s, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
        } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
            position = matcher.start(); // don't skip bad token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
            throw new InputMismatchException(nfe.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1990
     * interpreted as an int value in the default radix using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1991
     * {@link #nextInt} method. The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
     *         int value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
    public boolean hasNextInt() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
        return hasNextInt(defaultRadix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
     * interpreted as an int value in the specified radix using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
     * {@link #nextInt} method. The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
     * @param radix the radix used to interpret the token as an int value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
     *         int value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
    public boolean hasNextInt(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
        setRadix(radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2013
        boolean result = hasNext(integerPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
        if (result) { // Cache it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
                String s = (matcher.group(SIMPLE_GROUP_INDEX) == null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2017
                    processIntegerToken(hasNextResult) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
                    hasNextResult;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
                typeCache = Integer.parseInt(s, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
            } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
                result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2025
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2026
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
     * The integer token must be stripped of prefixes, group separators,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2029
     * and suffixes, non ascii digits must be converted into ascii digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
     * before parse will accept it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
    private String processIntegerToken(String token) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
        String result = token.replaceAll(""+groupSeparator, "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
        boolean isNegative = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
        int preLen = negativePrefix.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2036
        if ((preLen > 0) && result.startsWith(negativePrefix)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
            isNegative = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2038
            result = result.substring(preLen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2039
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
        int sufLen = negativeSuffix.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
        if ((sufLen > 0) && result.endsWith(negativeSuffix)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2042
            isNegative = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2043
            result = result.substring(result.length() - sufLen,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
                                      result.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
        if (isNegative)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
            result = "-" + result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2049
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2051
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2052
     * Scans the next token of the input as an <tt>int</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2053
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2054
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2055
     * <tt>nextInt()</tt> behaves in exactly the same way as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
     * invocation <tt>nextInt(radix)</tt>, where <code>radix</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
     * is the default radix of this scanner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2058
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2059
     * @return the <tt>int</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2060
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
     *         if the next token does not match the <i>Integer</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
     * @throws NoSuchElementException if input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
    public int nextInt() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
        return nextInt(defaultRadix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2069
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2070
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
     * Scans the next token of the input as an <tt>int</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
     * This method will throw <code>InputMismatchException</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2073
     * if the next token cannot be translated into a valid int value as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2074
     * described below. If the translation is successful, the scanner advances
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
     * past the input that matched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2076
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2077
     * <p> If the next token matches the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2078
     * href="#Integer-regex"><i>Integer</i></a> regular expression defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2079
     * above then the token is converted into an <tt>int</tt> value as if by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
     * removing all locale specific prefixes, group separators, and locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2081
     * specific suffixes, then mapping non-ASCII digits into ASCII
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2082
     * digits via {@link Character#digit Character.digit}, prepending a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2083
     * negative sign (-) if the locale specific negative prefixes and suffixes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2084
     * were present, and passing the resulting string to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2085
     * {@link Integer#parseInt(String, int) Integer.parseInt} with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2086
     * specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2088
     * @param radix the radix used to interpret the token as an int value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
     * @return the <tt>int</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2091
     *         if the next token does not match the <i>Integer</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2092
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2093
     * @throws NoSuchElementException if input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2094
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2095
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2096
    public int nextInt(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2097
        // Check cached result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2098
        if ((typeCache != null) && (typeCache instanceof Integer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2099
            && this.radix == radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2100
            int val = ((Integer)typeCache).intValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2101
            useTypeCache();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2102
            return val;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2103
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2104
        setRadix(radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2105
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2106
        // Search for next int
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2107
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2108
            String s = next(integerPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2109
            if (matcher.group(SIMPLE_GROUP_INDEX) == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2110
                s = processIntegerToken(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2111
            return Integer.parseInt(s, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2112
        } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2113
            position = matcher.start(); // don't skip bad token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2114
            throw new InputMismatchException(nfe.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2115
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2117
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2118
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2119
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2120
     * interpreted as a long value in the default radix using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2121
     * {@link #nextLong} method. The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2122
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2123
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2124
     *         long value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2125
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2126
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2127
    public boolean hasNextLong() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2128
        return hasNextLong(defaultRadix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2129
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2130
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2131
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2132
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2133
     * interpreted as a long value in the specified radix using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2134
     * {@link #nextLong} method. The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2135
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2136
     * @param radix the radix used to interpret the token as a long value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2137
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2138
     *         long value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2139
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2141
    public boolean hasNextLong(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2142
        setRadix(radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2143
        boolean result = hasNext(integerPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2144
        if (result) { // Cache it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2145
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2146
                String s = (matcher.group(SIMPLE_GROUP_INDEX) == null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2147
                    processIntegerToken(hasNextResult) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2148
                    hasNextResult;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2149
                typeCache = Long.parseLong(s, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2150
            } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2151
                result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2152
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2153
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2154
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2155
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2156
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2157
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2158
     * Scans the next token of the input as a <tt>long</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2159
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2160
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2161
     * <tt>nextLong()</tt> behaves in exactly the same way as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2162
     * invocation <tt>nextLong(radix)</tt>, where <code>radix</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2163
     * is the default radix of this scanner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2164
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2165
     * @return the <tt>long</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2166
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2167
     *         if the next token does not match the <i>Integer</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2168
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2169
     * @throws NoSuchElementException if input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2170
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2171
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2172
    public long nextLong() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2173
        return nextLong(defaultRadix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2175
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2176
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2177
     * Scans the next token of the input as a <tt>long</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2178
     * This method will throw <code>InputMismatchException</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2179
     * if the next token cannot be translated into a valid long value as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2180
     * described below. If the translation is successful, the scanner advances
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2181
     * past the input that matched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2182
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2183
     * <p> If the next token matches the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2184
     * href="#Integer-regex"><i>Integer</i></a> regular expression defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2185
     * above then the token is converted into a <tt>long</tt> value as if by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2186
     * removing all locale specific prefixes, group separators, and locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2187
     * specific suffixes, then mapping non-ASCII digits into ASCII
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2188
     * digits via {@link Character#digit Character.digit}, prepending a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2189
     * negative sign (-) if the locale specific negative prefixes and suffixes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2190
     * were present, and passing the resulting string to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2191
     * {@link Long#parseLong(String, int) Long.parseLong} with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2192
     * specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2193
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2194
     * @param radix the radix used to interpret the token as an int value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2195
     * @return the <tt>long</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2196
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2197
     *         if the next token does not match the <i>Integer</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2198
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2199
     * @throws NoSuchElementException if input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2200
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2201
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2202
    public long nextLong(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2203
        // Check cached result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2204
        if ((typeCache != null) && (typeCache instanceof Long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2205
            && this.radix == radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2206
            long val = ((Long)typeCache).longValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2207
            useTypeCache();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2208
            return val;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2209
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2210
        setRadix(radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2211
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2212
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2213
            String s = next(integerPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2214
            if (matcher.group(SIMPLE_GROUP_INDEX) == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2215
                s = processIntegerToken(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2216
            return Long.parseLong(s, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2217
        } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2218
            position = matcher.start(); // don't skip bad token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2219
            throw new InputMismatchException(nfe.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2220
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2221
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2222
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2223
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2224
     * The float token must be stripped of prefixes, group separators,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2225
     * and suffixes, non ascii digits must be converted into ascii digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2226
     * before parseFloat will accept it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2227
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2228
     * If there are non-ascii digits in the token these digits must
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2229
     * be processed before the token is passed to parseFloat.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2230
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2231
    private String processFloatToken(String token) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2232
        String result = token.replaceAll(groupSeparator, "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2233
        if (!decimalSeparator.equals("\\."))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2234
            result = result.replaceAll(decimalSeparator, ".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2235
        boolean isNegative = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2236
        int preLen = negativePrefix.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2237
        if ((preLen > 0) && result.startsWith(negativePrefix)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2238
            isNegative = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2239
            result = result.substring(preLen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2240
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2241
        int sufLen = negativeSuffix.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2242
        if ((sufLen > 0) && result.endsWith(negativeSuffix)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2243
            isNegative = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2244
            result = result.substring(result.length() - sufLen,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2245
                                      result.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2246
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2247
        if (result.equals(nanString))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2248
            result = "NaN";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2249
        if (result.equals(infinityString))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2250
            result = "Infinity";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2251
        if (isNegative)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2252
            result = "-" + result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2253
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2254
        // Translate non-ASCII digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2255
        Matcher m = NON_ASCII_DIGIT.matcher(result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2256
        if (m.find()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2257
            StringBuilder inASCII = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2258
            for (int i=0; i<result.length(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2259
                char nextChar = result.charAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2260
                if (Character.isDigit(nextChar)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2261
                    int d = Character.digit(nextChar, 10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2262
                    if (d != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2263
                        inASCII.append(d);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2264
                    else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2265
                        inASCII.append(nextChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2266
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2267
                    inASCII.append(nextChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2268
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2269
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2270
            result = inASCII.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2271
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2272
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2273
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2274
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2275
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2276
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2277
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2278
     * interpreted as a float value using the {@link #nextFloat}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2279
     * method. The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2280
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2281
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2282
     *         float value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2283
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2284
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2285
    public boolean hasNextFloat() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2286
        setRadix(10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2287
        boolean result = hasNext(floatPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2288
        if (result) { // Cache it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2289
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2290
                String s = processFloatToken(hasNextResult);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2291
                typeCache = Float.valueOf(Float.parseFloat(s));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2292
            } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2293
                result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2294
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2295
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2296
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2297
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2298
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2299
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2300
     * Scans the next token of the input as a <tt>float</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2301
     * This method will throw <code>InputMismatchException</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2302
     * if the next token cannot be translated into a valid float value as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2303
     * described below. If the translation is successful, the scanner advances
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2304
     * past the input that matched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2305
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2306
     * <p> If the next token matches the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2307
     * href="#Float-regex"><i>Float</i></a> regular expression defined above
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2308
     * then the token is converted into a <tt>float</tt> value as if by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2309
     * removing all locale specific prefixes, group separators, and locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2310
     * specific suffixes, then mapping non-ASCII digits into ASCII
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2311
     * digits via {@link Character#digit Character.digit}, prepending a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2312
     * negative sign (-) if the locale specific negative prefixes and suffixes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2313
     * were present, and passing the resulting string to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2314
     * {@link Float#parseFloat Float.parseFloat}. If the token matches
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2315
     * the localized NaN or infinity strings, then either "Nan" or "Infinity"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2316
     * is passed to {@link Float#parseFloat(String) Float.parseFloat} as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2317
     * appropriate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2318
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2319
     * @return the <tt>float</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2320
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2321
     *         if the next token does not match the <i>Float</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2322
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2323
     * @throws NoSuchElementException if input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2324
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2325
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2326
    public float nextFloat() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2327
        // Check cached result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2328
        if ((typeCache != null) && (typeCache instanceof Float)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2329
            float val = ((Float)typeCache).floatValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2330
            useTypeCache();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2331
            return val;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2332
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2333
        setRadix(10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2334
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2335
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2336
            return Float.parseFloat(processFloatToken(next(floatPattern())));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2337
        } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2338
            position = matcher.start(); // don't skip bad token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2339
            throw new InputMismatchException(nfe.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2340
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2341
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2342
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2343
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2344
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2345
     * interpreted as a double value using the {@link #nextDouble}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2346
     * method. The scanner does not advance past any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2347
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2348
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2349
     *         double value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2350
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2351
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2352
    public boolean hasNextDouble() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2353
        setRadix(10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2354
        boolean result = hasNext(floatPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2355
        if (result) { // Cache it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2356
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2357
                String s = processFloatToken(hasNextResult);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2358
                typeCache = Double.valueOf(Double.parseDouble(s));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2359
            } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2360
                result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2361
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2362
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2363
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2364
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2365
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2366
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2367
     * Scans the next token of the input as a <tt>double</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2368
     * This method will throw <code>InputMismatchException</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2369
     * if the next token cannot be translated into a valid double value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2370
     * If the translation is successful, the scanner advances past the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2371
     * that matched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2372
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2373
     * <p> If the next token matches the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2374
     * href="#Float-regex"><i>Float</i></a> regular expression defined above
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2375
     * then the token is converted into a <tt>double</tt> value as if by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2376
     * removing all locale specific prefixes, group separators, and locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2377
     * specific suffixes, then mapping non-ASCII digits into ASCII
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2378
     * digits via {@link Character#digit Character.digit}, prepending a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2379
     * negative sign (-) if the locale specific negative prefixes and suffixes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2380
     * were present, and passing the resulting string to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2381
     * {@link Double#parseDouble Double.parseDouble}. If the token matches
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2382
     * the localized NaN or infinity strings, then either "Nan" or "Infinity"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2383
     * is passed to {@link Double#parseDouble(String) Double.parseDouble} as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2384
     * appropriate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2385
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2386
     * @return the <tt>double</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2387
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2388
     *         if the next token does not match the <i>Float</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2389
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2390
     * @throws NoSuchElementException if the input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2391
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2392
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2393
    public double nextDouble() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2394
        // Check cached result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2395
        if ((typeCache != null) && (typeCache instanceof Double)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2396
            double val = ((Double)typeCache).doubleValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2397
            useTypeCache();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2398
            return val;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2399
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2400
        setRadix(10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2401
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2402
        // Search for next float
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2403
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2404
            return Double.parseDouble(processFloatToken(next(floatPattern())));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2405
        } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2406
            position = matcher.start(); // don't skip bad token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2407
            throw new InputMismatchException(nfe.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2408
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2409
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2410
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2411
    // Convenience methods for scanning multi precision numbers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2412
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2413
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2414
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2415
     * interpreted as a <code>BigInteger</code> in the default radix using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2416
     * {@link #nextBigInteger} method. The scanner does not advance past any
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2417
     * input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2418
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2419
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2420
     *         <code>BigInteger</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2421
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2422
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2423
    public boolean hasNextBigInteger() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2424
        return hasNextBigInteger(defaultRadix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2425
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2426
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2427
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2428
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2429
     * interpreted as a <code>BigInteger</code> in the specified radix using
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2430
     * the {@link #nextBigInteger} method. The scanner does not advance past
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2431
     * any input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2432
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2433
     * @param radix the radix used to interpret the token as an integer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2434
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2435
     *         <code>BigInteger</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2436
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2437
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2438
    public boolean hasNextBigInteger(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2439
        setRadix(radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2440
        boolean result = hasNext(integerPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2441
        if (result) { // Cache it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2442
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2443
                String s = (matcher.group(SIMPLE_GROUP_INDEX) == null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2444
                    processIntegerToken(hasNextResult) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2445
                    hasNextResult;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2446
                typeCache = new BigInteger(s, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2447
            } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2448
                result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2449
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2450
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2451
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2452
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2453
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2454
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2455
     * Scans the next token of the input as a {@link java.math.BigInteger
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2456
     * BigInteger}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2457
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2458
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2459
     * <tt>nextBigInteger()</tt> behaves in exactly the same way as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2460
     * invocation <tt>nextBigInteger(radix)</tt>, where <code>radix</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2461
     * is the default radix of this scanner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2462
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2463
     * @return the <tt>BigInteger</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2464
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2465
     *         if the next token does not match the <i>Integer</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2466
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2467
     * @throws NoSuchElementException if the input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2468
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2469
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2470
    public BigInteger nextBigInteger() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2471
        return nextBigInteger(defaultRadix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2472
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2473
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2474
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2475
     * Scans the next token of the input as a {@link java.math.BigInteger
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2476
     * BigInteger}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2477
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2478
     * <p> If the next token matches the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2479
     * href="#Integer-regex"><i>Integer</i></a> regular expression defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2480
     * above then the token is converted into a <tt>BigInteger</tt> value as if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2481
     * by removing all group separators, mapping non-ASCII digits into ASCII
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2482
     * digits via the {@link Character#digit Character.digit}, and passing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2483
     * resulting string to the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2484
     * java.math.BigInteger#BigInteger(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2485
     * BigInteger(String, int)} constructor with the specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2486
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2487
     * @param radix the radix used to interpret the token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2488
     * @return the <tt>BigInteger</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2489
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2490
     *         if the next token does not match the <i>Integer</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2491
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2492
     * @throws NoSuchElementException if the input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2493
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2494
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2495
    public BigInteger nextBigInteger(int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2496
        // Check cached result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2497
        if ((typeCache != null) && (typeCache instanceof BigInteger)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2498
            && this.radix == radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2499
            BigInteger val = (BigInteger)typeCache;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2500
            useTypeCache();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2501
            return val;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2502
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2503
        setRadix(radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2504
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2505
        // Search for next int
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2506
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2507
            String s = next(integerPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2508
            if (matcher.group(SIMPLE_GROUP_INDEX) == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2509
                s = processIntegerToken(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2510
            return new BigInteger(s, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2511
        } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2512
            position = matcher.start(); // don't skip bad token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2513
            throw new InputMismatchException(nfe.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2514
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2515
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2516
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2517
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2518
     * Returns true if the next token in this scanner's input can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2519
     * interpreted as a <code>BigDecimal</code> using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2520
     * {@link #nextBigDecimal} method. The scanner does not advance past any
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2521
     * input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2522
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2523
     * @return true if and only if this scanner's next token is a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2524
     *         <code>BigDecimal</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2525
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2526
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2527
    public boolean hasNextBigDecimal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2528
        setRadix(10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2529
        boolean result = hasNext(decimalPattern());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2530
        if (result) { // Cache it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2531
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2532
                String s = processFloatToken(hasNextResult);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2533
                typeCache = new BigDecimal(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2534
            } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2535
                result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2536
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2537
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2538
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2539
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2540
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2541
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2542
     * Scans the next token of the input as a {@link java.math.BigDecimal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2543
     * BigDecimal}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2544
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2545
     * <p> If the next token matches the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2546
     * href="#Decimal-regex"><i>Decimal</i></a> regular expression defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2547
     * above then the token is converted into a <tt>BigDecimal</tt> value as if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2548
     * by removing all group separators, mapping non-ASCII digits into ASCII
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2549
     * digits via the {@link Character#digit Character.digit}, and passing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2550
     * resulting string to the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2551
     * java.math.BigDecimal#BigDecimal(java.lang.String) BigDecimal(String)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2552
     * constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2553
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2554
     * @return the <tt>BigDecimal</tt> scanned from the input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2555
     * @throws InputMismatchException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2556
     *         if the next token does not match the <i>Decimal</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2557
     *         regular expression, or is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2558
     * @throws NoSuchElementException if the input is exhausted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2559
     * @throws IllegalStateException if this scanner is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2560
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2561
    public BigDecimal nextBigDecimal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2562
        // Check cached result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2563
        if ((typeCache != null) && (typeCache instanceof BigDecimal)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2564
            BigDecimal val = (BigDecimal)typeCache;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2565
            useTypeCache();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2566
            return val;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2567
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2568
        setRadix(10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2569
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2570
        // Search for next float
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2571
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2572
            String s = processFloatToken(next(decimalPattern()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2573
            return new BigDecimal(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2574
        } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2575
            position = matcher.start(); // don't skip bad token
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2576
            throw new InputMismatchException(nfe.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2577
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2578
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2579
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2580
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2581
     * Resets this scanner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2582
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2583
     * <p> Resetting a scanner discards all of its explicit state
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2584
     * information which may have been changed by invocations of {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2585
     * #useDelimiter}, {@link #useLocale}, or {@link #useRadix}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2586
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2587
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2588
     * <tt>scanner.reset()</tt> behaves in exactly the same way as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2589
     * invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2590
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2591
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2592
     *   scanner.useDelimiter("\\p{javaWhitespace}+")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2593
     *          .useLocale(Locale.getDefault())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2594
     *          .useRadix(10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2595
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2596
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2597
     * @return this scanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2598
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2599
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2600
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2601
    public Scanner reset() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2602
        delimPattern = WHITESPACE_PATTERN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2603
        useLocale(Locale.getDefault());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2604
        useRadix(10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2605
        clearCaches();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2606
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2607
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2608
}