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