- /*
- * @(#)Pattern.java 1.97 04/01/13
- *
- * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
- * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
- */
- package java.util.regex;
- import java.security.AccessController;
- import java.security.PrivilegedAction;
- import java.text.CharacterIterator;
- import sun.text.Normalizer;
- import java.util.ArrayList;
- import java.util.HashMap;
- /**
- * A compiled representation of a regular expression.
- *
- * <p> A regular expression, specified as a string, must first be compiled into
- * an instance of this class. The resulting pattern can then be used to create
- * a {@link Matcher} object that can match arbitrary {@link
- * java.lang.CharSequence </code>character sequences<code>} against the regular
- * expression. All of the state involved in performing a match resides in the
- * matcher, so many matchers can share the same pattern.
- *
- * <p> A typical invocation sequence is thus
- *
- * <blockquote><pre>
- * Pattern p = Pattern.{@link #compile compile}("a*b");
- * Matcher m = p.{@link #matcher matcher}("aaaaab");
- * boolean b = m.{@link Matcher#matches matches}();</pre></blockquote>
- *
- * <p> A {@link #matches matches} method is defined by this class as a
- * convenience for when a regular expression is used just once. This method
- * compiles an expression and matches an input sequence against it in a single
- * invocation. The statement
- *
- * <blockquote><pre>
- * boolean b = Pattern.matches("a*b", "aaaaab");</pre></blockquote>
- *
- * is equivalent to the three statements above, though for repeated matches it
- * is less efficient since it does not allow the compiled pattern to be reused.
- *
- * <p> Instances of this class are immutable and are safe for use by multiple
- * concurrent threads. Instances of the {@link Matcher} class are not safe for
- * such use.
- *
- *
- * <a name="sum">
- * <h4> Summary of regular-expression constructs </h4>
- *
- * <table border="0" cellpadding="1" cellspacing="0"
- * summary="Regular expression constructs, and what they match">
- *
- * <tr align="left">
- * <th bgcolor="#CCCCFF" align="left" id="construct">Construct</th>
- * <th bgcolor="#CCCCFF" align="left" id="matches">Matches</th>
- * </tr>
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="characters">Characters</th></tr>
- *
- * <tr><td valign="top" headers="construct characters"><i>x</i></td>
- * <td headers="matches">The character <i>x</i></td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\\</tt></td>
- * <td headers="matches">The backslash character</td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\0</tt><i>n</i></td>
- * <td headers="matches">The character with octal value <tt>0</tt><i>n</i>
- * (0 <tt><=</tt> <i>n</i> <tt><=</tt> 7)</td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\0</tt><i>nn</i></td>
- * <td headers="matches">The character with octal value <tt>0</tt><i>nn</i>
- * (0 <tt><=</tt> <i>n</i> <tt><=</tt> 7)</td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\0</tt><i>mnn</i></td>
- * <td headers="matches">The character with octal value <tt>0</tt><i>mnn</i>
- * (0 <tt><=</tt> <i>m</i> <tt><=</tt> 3,
- * 0 <tt><=</tt> <i>n</i> <tt><=</tt> 7)</td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\x</tt><i>hh</i></td>
- * <td headers="matches">The character with hexadecimal value <tt>0x</tt><i>hh</i></td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\u</tt><i>hhhh</i></td>
- * <td headers="matches">The character with hexadecimal value <tt>0x</tt><i>hhhh</i></td></tr>
- * <tr><td valign="top" headers="matches"><tt>\t</tt></td>
- * <td headers="matches">The tab character (<tt>'\u0009'</tt>)</td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\n</tt></td>
- * <td headers="matches">The newline (line feed) character (<tt>'\u000A'</tt>)</td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\r</tt></td>
- * <td headers="matches">The carriage-return character (<tt>'\u000D'</tt>)</td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\f</tt></td>
- * <td headers="matches">The form-feed character (<tt>'\u000C'</tt>)</td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\a</tt></td>
- * <td headers="matches">The alert (bell) character (<tt>'\u0007'</tt>)</td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\e</tt></td>
- * <td headers="matches">The escape character (<tt>'\u001B'</tt>)</td></tr>
- * <tr><td valign="top" headers="construct characters"><tt>\c</tt><i>x</i></td>
- * <td headers="matches">The control character corresponding to <i>x</i></td></tr>
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="classes">Character classes</th></tr>
- *
- * <tr><td valign="top" headers="construct classes"><tt>[abc]</tt></td>
- * <td headers="matches"><tt>a</tt>, <tt>b</tt>, or <tt>c</tt> (simple class)</td></tr>
- * <tr><td valign="top" headers="construct classes"><tt>[^abc]</tt></td>
- * <td headers="matches">Any character except <tt>a</tt>, <tt>b</tt>, or <tt>c</tt> (negation)</td></tr>
- * <tr><td valign="top" headers="construct classes"><tt>[a-zA-Z]</tt></td>
- * <td headers="matches"><tt>a</tt> through <tt>z</tt>
- * or <tt>A</tt> through <tt>Z</tt>, inclusive (range)</td></tr>
- * <tr><td valign="top" headers="construct classes"><tt>[a-d[m-p]]</tt></td>
- * <td headers="matches"><tt>a</tt> through <tt>d</tt>,
- * or <tt>m</tt> through <tt>p</tt>: <tt>[a-dm-p]</tt> (union)</td></tr>
- * <tr><td valign="top" headers="construct classes"><tt>[a-z&&[def]]</tt></td>
- * <td headers="matches"><tt>d</tt>, <tt>e</tt>, or <tt>f</tt> (intersection)</tr>
- * <tr><td valign="top" headers="construct classes"><tt>[a-z&&[^bc]]</tt></td>
- * <td headers="matches"><tt>a</tt> through <tt>z</tt>,
- * except for <tt>b</tt> and <tt>c</tt>: <tt>[ad-z]</tt> (subtraction)</td></tr>
- * <tr><td valign="top" headers="construct classes"><tt>[a-z&&[^m-p]]</tt></td>
- * <td headers="matches"><tt>a</tt> through <tt>z</tt>,
- * and not <tt>m</tt> through <tt>p</tt>: <tt>[a-lq-z]</tt>(subtraction)</td></tr>
- * <tr><th> </th></tr>
- *
- * <tr align="left"><th colspan="2" id="predef">Predefined character classes</th></tr>
- *
- * <tr><td valign="top" headers="construct predef"><tt>.</tt></td>
- * <td headers="matches">Any character (may or may not match <a href="#lt">line terminators</a>)</td></tr>
- * <tr><td valign="top" headers="construct predef"><tt>\d</tt></td>
- * <td headers="matches">A digit: <tt>[0-9]</tt></td></tr>
- * <tr><td valign="top" headers="construct predef"><tt>\D</tt></td>
- * <td headers="matches">A non-digit: <tt>[^0-9]</tt></td></tr>
- * <tr><td valign="top" headers="construct predef"><tt>\s</tt></td>
- * <td headers="matches">A whitespace character: <tt>[ \t\n\x0B\f\r]</tt></td></tr>
- * <tr><td valign="top" headers="construct predef"><tt>\S</tt></td>
- * <td headers="matches">A non-whitespace character: <tt>[^\s]</tt></td></tr>
- * <tr><td valign="top" headers="construct predef"><tt>\w</tt></td>
- * <td headers="matches">A word character: <tt>[a-zA-Z_0-9]</tt></td></tr>
- * <tr><td valign="top" headers="construct predef"><tt>\W</tt></td>
- * <td headers="matches">A non-word character: <tt>[^\w]</tt></td></tr>
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="posix">POSIX character classes</b> (US-ASCII only)<b></th></tr>
- *
- * <tr><td valign="top" headers="construct posix"><tt>\p{Lower}</tt></td>
- * <td headers="matches">A lower-case alphabetic character: <tt>[a-z]</tt></td></tr>
- * <tr><td valign="top" headers="construct posix"><tt>\p{Upper}</tt></td>
- * <td headers="matches">An upper-case alphabetic character:<tt>[A-Z]</tt></td></tr>
- * <tr><td valign="top" headers="construct posix"><tt>\p{ASCII}</tt></td>
- * <td headers="matches">All ASCII:<tt>[\x00-\x7F]</tt></td></tr>
- * <tr><td valign="top" headers="construct posix"><tt>\p{Alpha}</tt></td>
- * <td headers="matches">An alphabetic character:<tt>[\p{Lower}\p{Upper}]</tt></td></tr>
- * <tr><td valign="top" headers="construct posix"><tt>\p{Digit}</tt></td>
- * <td headers="matches">A decimal digit: <tt>[0-9]</tt></td></tr>
- * <tr><td valign="top" headers="construct posix"><tt>\p{Alnum}</tt></td>
- * <td headers="matches">An alphanumeric character:<tt>[\p{Alpha}\p{Digit}]</tt></td></tr>
- * <tr><td valign="top" headers="construct posix"><tt>\p{Punct}</tt></td>
- * <td headers="matches">Punctuation: One of <tt>!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~</tt></td></tr>
- * <!-- <tt>[\!"#\$%&'\(\)\*\+,\-\./:;\<=\>\?@\[\\\]\^_`\{\|\}~]</tt>
- * <tt>[\X21-\X2F\X31-\X40\X5B-\X60\X7B-\X7E]</tt> -->
- * <tr><td valign="top" headers="construct posix"><tt>\p{Graph}</tt></td>
- * <td headers="matches">A visible character: <tt>[\p{Alnum}\p{Punct}]</tt></td></tr>
- * <tr><td valign="top" headers="construct posix"><tt>\p{Print}</tt></td>
- * <td headers="matches">A printable character: <tt>[\p{Graph}]</tt></td></tr>
- * <tr><td valign="top" headers="construct posix"><tt>\p{Blank}</tt></td>
- * <td headers="matches">A space or a tab: <tt>[ \t]</tt></td></tr>
- * <tr><td valign="top" headers="construct posix"><tt>\p{Cntrl}</tt></td>
- * <td headers="matches">A control character: <tt>[\x00-\x1F\x7F]</td></tr>
- * <tr><td valign="top" headers="construct posix"><tt>\p{XDigit}</tt></td>
- * <td headers="matches">A hexadecimal digit: <tt>[0-9a-fA-F]</tt></td></tr>
- * <tr><td valign="top" headers="construct posix"><tt>\p{Space}</tt></td>
- * <td headers="matches">A whitespace character: <tt>[ \t\n\x0B\f\r]</tt></td></tr>
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="unicode">Classes for Unicode blocks and categories</th></tr>
- *
- * <tr><td valign="top" headers="construct unicode"><tt>\p{InGreek}</tt></td>
- * <td headers="matches">A character in the Greek block (simple <a href="#ubc">block</a>)</td></tr>
- * <tr><td valign="top" headers="construct unicode"><tt>\p{Lu}</tt></td>
- * <td headers="matches">An uppercase letter (simple <a href="#ubc">category</a>)</td></tr>
- * <tr><td valign="top" headers="construct unicode"><tt>\p{Sc}</tt></td>
- * <td headers="matches">A currency symbol</td></tr>
- * <tr><td valign="top" headers="construct unicode"><tt>\P{InGreek}</tt></td>
- * <td headers="matches">Any character except one in the Greek block (negation)</td></tr>
- * <tr><td valign="top" headers="construct unicode"><tt>[\p{L}&&[^\p{Lu}]] </tt></td>
- * <td headers="matches">Any letter except an uppercase letter (subtraction)</td></tr>
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="bounds">Boundary matchers</th></tr>
- *
- * <tr><td valign="top" headers="construct bounds"><tt>^</tt></td>
- * <td headers="matches">The beginning of a line</td></tr>
- * <tr><td valign="top" headers="construct bounds"><tt>$</tt></td>
- * <td headers="matches">The end of a line</td></tr>
- * <tr><td valign="top" headers="construct bounds"><tt>\b</tt></td>
- * <td headers="matches">A word boundary</td></tr>
- * <tr><td valign="top" headers="construct bounds"><tt>\B</tt></td>
- * <td headers="matches">A non-word boundary</td></tr>
- * <tr><td valign="top" headers="construct bounds"><tt>\A</tt></td>
- * <td headers="matches">The beginning of the input</td></tr>
- * <tr><td valign="top" headers="construct bounds"><tt>\G</tt></td>
- * <td headers="matches">The end of the previous match</td></tr>
- * <tr><td valign="top" headers="construct bounds"><tt>\Z</tt></td>
- * <td headers="matches">The end of the input but for the final
- * <a href="#lt">terminator</a>, if any</td></tr>
- * <tr><td valign="top" headers="construct bounds"><tt>\z</tt></td>
- * <td headers="matches">The end of the input</td></tr>
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="greedy">Greedy quantifiers</th></tr>
- *
- * <tr><td valign="top" headers="construct greedy"><i>X</i><tt>?</tt></td>
- * <td headers="matches"><i>X</i>, once or not at all</td></tr>
- * <tr><td valign="top" headers="construct greedy"><i>X</i><tt>*</tt></td>
- * <td headers="matches"><i>X</i>, zero or more times</td></tr>
- * <tr><td valign="top" headers="construct greedy"><i>X</i><tt>+</tt></td>
- * <td headers="matches"><i>X</i>, one or more times</td></tr>
- * <tr><td valign="top" headers="construct greedy"><i>X</i><tt>{</tt><i>n</i><tt>}</tt></td>
- * <td headers="matches"><i>X</i>, exactly <i>n</i> times</td></tr>
- * <tr><td valign="top" headers="construct greedy"><i>X</i><tt>{</tt><i>n</i><tt>,}</tt></td>
- * <td headers="matches"><i>X</i>, at least <i>n</i> times</td></tr>
- * <tr><td valign="top" headers="construct greedy"><i>X</i><tt>{</tt><i>n</i><tt>,</tt><i>m</i><tt>}</tt></td>
- * <td headers="matches"><i>X</i>, at least <i>n</i> but not more than <i>m</i> times</td></tr>
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="reluc">Reluctant quantifiers</th></tr>
- *
- * <tr><td valign="top" headers="construct reluc"><i>X</i><tt>??</tt></td>
- * <td headers="matches"><i>X</i>, once or not at all</td></tr>
- * <tr><td valign="top" headers="construct reluc"><i>X</i><tt>*?</tt></td>
- * <td headers="matches"><i>X</i>, zero or more times</td></tr>
- * <tr><td valign="top" headers="construct reluc"><i>X</i><tt>+?</tt></td>
- * <td headers="matches"><i>X</i>, one or more times</td></tr>
- * <tr><td valign="top" headers="construct reluc"><i>X</i><tt>{</tt><i>n</i><tt>}?</tt></td>
- * <td headers="matches"><i>X</i>, exactly <i>n</i> times</td></tr>
- * <tr><td valign="top" headers="construct reluc"><i>X</i><tt>{</tt><i>n</i><tt>,}?</tt></td>
- * <td headers="matches"><i>X</i>, at least <i>n</i> times</td></tr>
- * <tr><td valign="top" headers="construct reluc"><i>X</i><tt>{</tt><i>n</i><tt>,</tt><i>m</i><tt>}?</tt></td>
- * <td headers="matches"><i>X</i>, at least <i>n</i> but not more than <i>m</i> times</td></tr>
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="poss">Possessive quantifiers</th></tr>
- *
- * <tr><td valign="top" headers="construct poss"><i>X</i><tt>?+</tt></td>
- * <td headers="matches"><i>X</i>, once or not at all</td></tr>
- * <tr><td valign="top" headers="construct poss"><i>X</i><tt>*+</tt></td>
- * <td headers="matches"><i>X</i>, zero or more times</td></tr>
- * <tr><td valign="top" headers="construct poss"><i>X</i><tt>++</tt></td>
- * <td headers="matches"><i>X</i>, one or more times</td></tr>
- * <tr><td valign="top" headers="construct poss"><i>X</i><tt>{</tt><i>n</i><tt>}+</tt></td>
- * <td headers="matches"><i>X</i>, exactly <i>n</i> times</td></tr>
- * <tr><td valign="top" headers="construct poss"><i>X</i><tt>{</tt><i>n</i><tt>,}+</tt></td>
- * <td headers="matches"><i>X</i>, at least <i>n</i> times</td></tr>
- * <tr><td valign="top" headers="construct poss"><i>X</i><tt>{</tt><i>n</i><tt>,</tt><i>m</i><tt>}+</tt></td>
- * <td headers="matches"><i>X</i>, at least <i>n</i> but not more than <i>m</i> times</td></tr>
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="logical">Logical operators</th></tr>
- *
- * <tr><td valign="top" headers="construct logical"><i>XY</i></td>
- * <td headers="matches"><i>X</i> followed by <i>Y</i></td></tr>
- * <tr><td valign="top" headers="construct logical"><i>X</i><tt>|</tt><i>Y</i></td>
- * <td headers="matches">Either <i>X</i> or <i>Y</i></td></tr>
- * <tr><td valign="top" headers="construct logical"><tt>(</tt><i>X</i><tt>)</tt></td>
- * <td headers="matches">X, as a <a href="#cg">capturing group</a></td></tr>
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="backref">Back references</th></tr>
- *
- * <tr><td valign="bottom" headers="construct backref"><tt>\</tt><i>n</i></td>
- * <td valign="bottom" headers="matches">Whatever the <i>n</i><sup>th</sup>
- * <a href="#cg">capturing group</a> matched</td></tr>
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="quot">Quotation</th></tr>
- *
- * <tr><td valign="top" headers="construct quot"><tt>\</tt></td>
- * <td headers="matches">Nothing, but quotes the following character</tt></td></tr>
- * <tr><td valign="top" headers="construct quot"><tt>\Q</tt></td>
- * <td headers="matches">Nothing, but quotes all characters until <tt>\E</tt></td></tr>
- * <tr><td valign="top" headers="construct quot"><tt>\E</tt></td>
- * <td headers="matches">Nothing, but ends quoting started by <tt>\Q</tt></td></tr>
- * <!-- Metachars: !$()*+.<>?[\]^{|} -->
- *
- * <tr><th> </th></tr>
- * <tr align="left"><th colspan="2" id="special">Special constructs (non-capturing)</th></tr>
- *
- * <tr><td valign="top" headers="construct special"><tt>(?:</tt><i>X</i><tt>)</tt></td>
- * <td headers="matches"><i>X</i>, as a non-capturing group</td></tr>
- * <tr><td valign="top" headers="construct special"><tt>(?idmsux-idmsux) </tt></td>
- * <td headers="matches">Nothing, but turns match flags on - off</td></tr>
- * <tr><td valign="top" headers="construct special"><tt>(?idmsux-idmsux:</tt><i>X</i><tt>)</tt> </td>
- * <td headers="matches"><i>X</i>, as a <a href="#cg">non-capturing group</a> with the
- * given flags on - off</td></tr>
- * <tr><td valign="top" headers="construct special"><tt>(?=</tt><i>X</i><tt>)</tt></td>
- * <td headers="matches"><i>X</i>, via zero-width positive lookahead</td></tr>
- * <tr><td valign="top" headers="construct special"><tt>(?!</tt><i>X</i><tt>)</tt></td>
- * <td headers="matches"><i>X</i>, via zero-width negative lookahead</td></tr>
- * <tr><td valign="top" headers="construct special"><tt>(?<=</tt><i>X</i><tt>)</tt></td>
- * <td headers="matches"><i>X</i>, via zero-width positive lookbehind</td></tr>
- * <tr><td valign="top" headers="construct special"><tt>(?<!</tt><i>X</i><tt>)</tt></td>
- * <td headers="matches"><i>X</i>, via zero-width negative lookbehind</td></tr>
- * <tr><td valign="top" headers="construct special"><tt>(?></tt><i>X</i><tt>)</tt></td>
- * <td headers="matches"><i>X</i>, as an independent, non-capturing group</td></tr>
- *
- * </table>
- *
- * <hr>
- *
- *
- * <a name="bs">
- * <h4> Backslashes, escapes, and quoting </h4>
- *
- * <p> The backslash character (<tt>'\'</tt>) serves to introduce escaped
- * constructs, as defined in the table above, as well as to quote characters
- * that otherwise would be interpreted as unescaped constructs. Thus the
- * expression <tt>\\</tt> matches a single backslash and <tt>\{</tt> matches a
- * left brace.
- *
- * <p> It is an error to use a backslash prior to any alphabetic character that
- * does not denote an escaped construct; these are reserved for future
- * extensions to the regular-expression language. A backslash may be used
- * prior to a non-alphabetic character regardless of whether that character is
- * part of an unescaped construct.
- *
- * <p> Backslashes within string literals in Java source code are interpreted
- * as required by the <a
- * href="http://java.sun.com/docs/books/jls/second_edition/html/">Java Language
- * Specification</a> as either <a
- * href="http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#100850">Unicode
- * escapes</a> or other <a
- * href="http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#101089">character
- * escapes</a>. It is therefore necessary to double backslashes in string
- * literals that represent regular expressions to protect them from
- * interpretation by the Java bytecode compiler. The string literal
- * <tt>"\b"</tt>, for example, matches a single backspace character when
- * interpreted as a regular expression, while <tt>"\\b"</tt> matches a
- * word boundary. The string literal <tt>"\(hello\)"</tt> is illegal
- * and leads to a compile-time error; in order to match the string
- * <tt>(hello)</tt> the string literal <tt>"\\(hello\\)"</tt>
- * must be used.
- *
- * <a name="cc">
- * <h4> Character Classes </h4>
- *
- * <p> Character classes may appear within other character classes, and
- * may be composed by the union operator (implicit) and the intersection
- * operator (<tt>&&</tt>).
- * The union operator denotes a class that contains every character that is
- * in at least one of its operand classes. The intersection operator
- * denotes a class that contains every character that is in both of its
- * operand classes.
- *
- * <p> The precedence of character-class operators is as follows, from
- * highest to lowest:
- *
- * <blockquote><table border="0" cellpadding="1" cellspacing="0"
- * summary="Precedence of character class operators.">
- * <tr><th>1 </th>
- * <td>Literal escape </td>
- * <td><tt>\x</tt></td></tr>
- * <tr><th>2 </th>
- * <td>Grouping</td>
- * <td><tt>[...]</tt></td></tr>
- * <tr><th>3 </th>
- * <td>Range</td>
- * <td><tt>a-z</tt></td></tr>
- * <tr><th>4 </th>
- * <td>Union</td>
- * <td><tt>[a-e][i-u]<tt></td></tr>
- * <tr><th>5 </th>
- * <td>Intersection</td>
- * <td><tt>[a-z&&[aeiou]]</tt></td></tr>
- * </table></blockquote>
- *
- * <p> Note that a different set of metacharacters are in effect inside
- * a character class than outside a character class. For instance, the
- * regular expression <tt>.</tt> loses its special meaning inside a
- * character class, while the expression <tt>-</tt> becomes a range
- * forming metacharacter.
- *
- * <a name="lt">
- * <h4> Line terminators </h4>
- *
- * <p> A <i>line terminator</i> is a one- or two-character sequence that marks
- * the end of a line of the input character sequence. The following are
- * recognized as line terminators:
- *
- * <ul>
- *
- * <li> A newline (line feed) character (<tt>'\n'</tt>),
- *
- * <li> A carriage-return character followed immediately by a newline
- * character (<tt>"\r\n"</tt>),
- *
- * <li> A standalone carriage-return character (<tt>'\r'</tt>),
- *
- * <li> A next-line character (<tt>'\u0085'</tt>),
- *
- * <li> A line-separator character (<tt>'\u2028'</tt>), or
- *
- * <li> A paragraph-separator character (<tt>'\u2029</tt>).
- *
- * </ul>
- * <p>If {@link #UNIX_LINES} mode is activated, then the only line terminators
- * recognized are newline characters.
- *
- * <p> The regular expression <tt>.</tt> matches any character except a line
- * terminator unless the {@link #DOTALL} flag is specified.
- *
- * <p> By default, the regular expressions <tt>^</tt> and <tt>$</tt> ignore
- * line terminators and only match at the beginning and the end, respectively,
- * of the entire input sequence. If {@link #MULTILINE} mode is activated then
- * <tt>^</tt> matches at the beginning of input and after any line terminator
- * except at the end of input. When in {@link #MULTILINE} mode <tt>$</tt>
- * matches just before a line terminator or the end of the input sequence.
- *
- * <a name="cg">
- * <h4> Groups and capturing </h4>
- *
- * <p> Capturing groups are numbered by counting their opening parentheses from
- * left to right. In the expression <tt>((A)(B(C)))</tt>, for example, there
- * are four such groups: </p>
- *
- * <blockquote><table cellpadding=1 cellspacing=0 summary="Capturing group numberings">
- * <tr><th>1 </th>
- * <td><tt>((A)(B(C)))</tt></td></tr>
- * <tr><th>2 </th>
- * <td><tt>(A)</tt></td></tr>
- * <tr><th>3 </th>
- * <td><tt>(B(C))</tt></td></tr>
- * <tr><th>4 </th>
- * <td><tt>(C)</tt></td></tr>
- * </table></blockquote>
- *
- * <p> Group zero always stands for the entire expression.
- *
- * <p> Capturing groups are so named because, during a match, each subsequence
- * of the input sequence that matches such a group is saved. The captured
- * subsequence may be used later in the expression, via a back reference, and
- * may also be retrieved from the matcher once the match operation is complete.
- *
- * <p> The captured input associated with a group is always the subsequence
- * that the group most recently matched. If a group is evaluated a second time
- * because of quantification then its previously-captured value, if any, will
- * be retained if the second evaluation fails. Matching the string
- * <tt>"aba"</tt> against the expression <tt>(a(b)?)+</tt>, for example, leaves
- * group two set to <tt>"b"</tt>. All captured input is discarded at the
- * beginning of each match.
- *
- * <p> Groups beginning with <tt>(?</tt> are pure, <i>non-capturing</i> groups
- * that do not capture text and do not count towards the group total.
- *
- *
- * <h4> Unicode support </h4>
- *
- * <p> This class follows <a
- * href="http://www.unicode.org/unicode/reports/tr18/"><i>Unicode Technical
- * Report #18: Unicode Regular Expression Guidelines</i></a>, implementing its
- * second level of support though with a slightly different concrete syntax.
- *
- * <p> Unicode escape sequences such as <tt>\u2014</tt> in Java source code
- * are processed as described in <a
- * href="http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#100850">\u00A73.3</a>
- * of the Java Language Specification. Such escape sequences are also
- * implemented directly by the regular-expression parser so that Unicode
- * escapes can be used in expressions that are read from files or from the
- * keyboard. Thus the strings <tt>"\u2014"</tt> and <tt>"\\u2014"</tt>,
- * while not equal, compile into the same pattern, which matches the character
- * with hexadecimal value <tt>0x2014</tt>.
- *
- * <a name="ubc"> <p>Unicode blocks and categories are written with the
- * <tt>\p</tt> and <tt>\P</tt> constructs as in
- * Perl. <tt>\p{</tt><i>prop</i><tt>}</tt> matches if the input has the
- * property <i>prop</i>, while \P{</tt><i>prop</i><tt>}</tt> does not match if
- * the input has that property. Blocks are specified with the prefix
- * <tt>In</tt>, as in <tt>InMongolian</tt>. Categories may be specified with
- * the optional prefix <tt>Is</tt>: Both <tt>\p{L}</tt> and <tt>\p{IsL}</tt>
- * denote the category of Unicode letters. Blocks and categories can be used
- * both inside and outside of a character class.
- *
- * <p> The supported blocks and categories are those of <a
- * href="http://www.unicode.org/unicode/standard/standard.html"><i>The Unicode
- * Standard, Version 3.0</i></a>. The block names are those defined in
- * Chapter 14 and in the file <a
- * href="http://www.unicode.org/Public/3.0-Update/Blocks-3.txt">Blocks-3.txt
- * </a> of the <a
- * href="http://www.unicode.org/Public/3.0-Update/UnicodeCharacterDatabase-3.0.0.html">Unicode
- * Character Database</a> except that the spaces are removed; <tt>"Basic
- * Latin"</tt>, for example, becomes <tt>"BasicLatin"</tt>. The category names
- * are those defined in table 4-5 of the Standard (p. 88), both normative
- * and informative.
- *
- *
- * <h4> Comparison to Perl 5 </h4>
- *
- * <p> Perl constructs not supported by this class: </p>
- *
- * <ul>
- *
- * <li><p> The conditional constructs <tt>(?{</tt><i>X</i><tt>})</tt> and
- * <tt>(?(</tt><i>condition</i><tt>)</tt><i>X</i><tt>|</tt><i>Y</i><tt>)</tt>,
- * </p></li>
- *
- * <li><p> The embedded code constructs <tt>(?{</tt><i>code</i><tt>})</tt>
- * and <tt>(??{</tt><i>code</i><tt>})</tt>,</p></li>
- *
- * <li><p> The embedded comment syntax <tt>(?#comment)</tt>, and </p></li>
- *
- * <li><p> The preprocessing operations <tt>\l</tt> <tt>\u</tt>,
- * <tt>\L</tt>, and <tt>\U</tt>. </p></li>
- *
- * </ul>
- *
- * <p> Constructs supported by this class but not by Perl: </p>
- *
- * <ul>
- *
- * <li><p> Possessive quantifiers, which greedily match as much as they can
- * and do not back off, even when doing so would allow the overall match to
- * succeed. </p></li>
- *
- * <li><p> Character-class union and intersection as described
- * <a href="#cc">above</a>.</p></li>
- *
- * </ul>
- *
- * <p> Notable differences from Perl: </p>
- *
- * <ul>
- *
- * <li><p> In Perl, <tt>\1</tt> through <tt>\9</tt> are always interpreted
- * as back references; a backslash-escaped number greater than <tt>9</tt> is
- * treated as a back reference if at least that many subexpressions exist,
- * otherwise it is interpreted, if possible, as an octal escape. In this
- * class octal escapes must always begin with a zero. In this class,
- * <tt>\1</tt> through <tt>\9</tt> are always interpreted as back
- * references, and a larger number is accepted as a back reference if at
- * least that many subexpressions exist at that point in the regular
- * expression, otherwise the parser will drop digits until the number is
- * smaller or equal to the existing number of groups or it is one digit.
- * </p></li>
- *
- * <li><p> Perl uses the <tt>g</tt> flag to request a match that resumes
- * where the last match left off. This functionality is provided implicitly
- * by the {@link Matcher} class: Repeated invocations of the {@link
- * Matcher#find find} method will resume where the last match left off,
- * unless the matcher is reset. </p></li>
- *
- * <li><p> In Perl, embedded flags at the top level of an expression affect
- * the whole expression. In this class, embedded flags always take effect
- * at the point at which they appear, whether they are at the top level or
- * within a group; in the latter case, flags are restored at the end of the
- * group just as in Perl. </p></li>
- *
- * <li><p> Perl is forgiving about malformed matching constructs, as in the
- * expression <tt>*a</tt>, as well as dangling brackets, as in the
- * expression <tt>abc]</tt>, and treats them as literals. This
- * class also accepts dangling brackets but is strict about dangling
- * metacharacters like +, ? and *, and will throw a
- * {@link PatternSyntaxException} if it encounters them. </p></li>
- *
- * </ul>
- *
- *
- * <p> For a more precise description of the behavior of regular expression
- * constructs, please see <a href="http://www.oreilly.com/catalog/regex2/">
- * <i>Mastering Regular Expressions, 2nd Edition</i>, Jeffrey E. F. Friedl,
- * O'Reilly and Associates, 2002.</a>
- * </p>
- *
- * @see java.lang.String#split(String, int)
- * @see java.lang.String#split(String)
- *
- * @author Mike McCloskey
- * @author Mark Reinhold
- * @author JSR-51 Expert Group
- * @version 1.97, 04/01/13
- * @since 1.4
- * @spec JSR-51
- */
- public final class Pattern
- implements java.io.Serializable
- {
- /**
- * Regular expression modifier values. Instead of being passed as
- * arguments, they can also be passed as inline modifiers.
- * For example, the following statements have the same effect.
- * <pre>
- * RegExp r1 = RegExp.compile("abc", Pattern.I|Pattern.M);
- * RegExp r2 = RegExp.compile("(?im)abc", 0);
- * </pre>
- *
- * The flags are duplicated so that the familiar Perl match flag
- * names are available.
- */
- /**
- * Enables Unix lines mode.
- *
- * <p> In this mode, only the <tt>'\n'</tt> line terminator is recognized
- * in the behavior of <tt>.</tt>, <tt>^</tt>, and <tt>$</tt>.
- *
- * <p> Unix lines mode can also be enabled via the embedded flag
- * expression <tt>(?d)</tt>.
- */
- public static final int UNIX_LINES = 0x01;
- /**
- * Enables case-insensitive matching.
- *
- * <p> By default, case-insensitive matching assumes that only characters
- * in the US-ASCII charset are being matched. Unicode-aware
- * case-insensitive matching can be enabled by specifying the {@link
- * #UNICODE_CASE} flag in conjunction with this flag.
- *
- * <p> Case-insensitive matching can also be enabled via the embedded flag
- * expression <tt>(?i)</tt>.
- *
- * <p> Specifying this flag may impose a slight performance penalty. </p>
- */
- public static final int CASE_INSENSITIVE = 0x02;
- /**
- * Permits whitespace and comments in pattern.
- *
- * <p> In this mode, whitespace is ignored, and embedded comments starting
- * with <tt>#</tt> are ignored until the end of a line.
- *
- * <p> Comments mode can also be enabled via the embedded flag
- * expression <tt>(?x)</tt>.
- */
- public static final int COMMENTS = 0x04;
- /**
- * Enables multiline mode.
- *
- * <p> In multiline mode the expressions <tt>^</tt> and <tt>$</tt> match
- * just after or just before, respectively, a line terminator or the end of
- * the input sequence. By default these expressions only match at the
- * beginning and the end of the entire input sequence.
- *
- * <p> Multiline mode can also be enabled via the embedded flag
- * expression <tt>(?m)</tt>. </p>
- */
- public static final int MULTILINE = 0x08;
- /**
- * Enables dotall mode.
- *
- * <p> In dotall mode, the expression <tt>.</tt> matches any character,
- * including a line terminator. By default this expression does not match
- * line terminators.
- *
- * <p> Dotall mode can also be enabled via the embedded flag
- * expression <tt>(?s)</tt>. (The <tt>s</tt> is a mnemonic for
- * "single-line" mode, which is what this is called in Perl.) </p>
- */
- public static final int DOTALL = 0x20;
- /**
- * Enables Unicode-aware case folding.
- *
- * <p> When this flag is specified then case-insensitive matching, when
- * enabled by the {@link #CASE_INSENSITIVE} flag, is done in a manner
- * consistent with the Unicode Standard. By default, case-insensitive
- * matching assumes that only characters in the US-ASCII charset are being
- * matched.
- *
- * <p> Unicode-aware case folding can also be enabled via the embedded flag
- * expression <tt>(?u)</tt>.
- *
- * <p> Specifying this flag may impose a performance penalty. </p>
- */
- public static final int UNICODE_CASE = 0x40;
- /**
- * Enables canonical equivalence.
- *
- * <p> When this flag is specified then two characters will be considered
- * to match if, and only if, their full canonical decompositions match.
- * The expression <tt>"a\u030A"</tt>, for example, will match the
- * string <tt>"\u00E5"</tt> when this flag is specified. By default,
- * matching does not take canonical equivalence into account.
- *
- * <p> There is no embedded flag character for enabling canonical
- * equivalence.
- *
- * <p> Specifying this flag may impose a performance penalty. </p>
- */
- public static final int CANON_EQ = 0x80;
- /* Pattern has only two serialized components: The pattern string
- * and the flags, which are all that is needed to recompile the pattern
- * when it is deserialized.
- */
- /** use serialVersionUID from Merlin b59 for interoperability */
- private static final long serialVersionUID = 5073258162644648461L;
- /**
- * The original regular-expression pattern string.
- *
- * @serial
- */
- private String pattern;
- /**
- * The original pattern flags.
- *
- * @serial
- */
- private int flags;
- /**
- * The normalized pattern string.
- */
- private transient String normalizedPattern;
- /**
- * The starting point of state machine for the find operation. This allows
- * a match to start anywhere in the input.
- */
- transient Node root;
- /**
- * The root of object tree for a match operation. The pattern is matched
- * at the beginning. This may include a find that uses BnM or a First
- * node.
- */
- transient Node matchRoot;
- /**
- * Temporary storage used by parsing pattern slice.
- */
- transient char[] buffer;
- /**
- * Temporary storage used while parsing group references.
- */
- transient GroupHead[] groupNodes;
- /**
- * Temporary null terminating char array used by pattern compiling.
- */
- private transient char[] temp;
- /**
- * The group count of this Pattern. Used by matchers to allocate storage
- * needed to perform a match.
- */
- transient int groupCount;
- /**
- * The local variable count used by parsing tree. Used by matchers to
- * allocate storage needed to perform a match.
- */
- transient int localCount;
- /**
- * Index into the pattern string that keeps track of how much has been
- * parsed.
- */
- private transient int cursor;
- /**
- * Holds the length of the pattern string.
- */
- private transient int patternLength;
- /**
- * Compiles the given regular expression into a pattern. </p>
- *
- * @param regex
- * The expression to be compiled
- *
- * @throws PatternSyntaxException
- * If the expression's syntax is invalid
- */
- public static Pattern compile(String regex) {
- return new Pattern(regex, 0);
- }
- /**
- * Compiles the given regular expression into a pattern with the given
- * flags. </p>
- *
- * @param regex
- * The expression to be compiled
- *
- * @param flags
- * Match flags, a bit mask that may include
- * {@link #CASE_INSENSITIVE}, {@link #MULTILINE}, {@link #DOTALL},
- * {@link #UNICODE_CASE}, and {@link #CANON_EQ}
- *
- * @throws IllegalArgumentException
- * If bit values other than those corresponding to the defined
- * match flags are set in <tt>flags</tt>
- *
- * @throws PatternSyntaxException
- * If the expression's syntax is invalid
- */
- public static Pattern compile(String regex, int flags) {
- return new Pattern(regex, flags);
- }
- /**
- * Returns the regular expression from which this pattern was compiled.
- * </p>
- *
- * @return The source of this pattern
- */
- public String pattern() {
- return pattern;
- }
- /**
- * Creates a matcher that will match the given input against this pattern.
- * </p>
- *
- * @param input
- * The character sequence to be matched
- *
- * @return A new matcher for this pattern
- */
- public Matcher matcher(CharSequence input) {
- Matcher m = new Matcher(this, input);
- return m;
- }
- /**
- * Returns this pattern's match flags. </p>
- *
- * @return The match flags specified when this pattern was compiled
- */
- public int flags() {
- return flags;
- }
- /**
- * Compiles the given regular expression and attempts to match the given
- * input against it.
- *
- * <p> An invocation of this convenience method of the form
- *
- * <blockquote><pre>
- * Pattern.matches(regex, input);</pre></blockquote>
- *
- * behaves in exactly the same way as the expression
- *
- * <blockquote><pre>
- * Pattern.compile(regex).matcher(input).matches()</pre></blockquote>
- *
- * <p> If a pattern is to be used multiple times, compiling it once and reusing
- * it will be more efficient than invoking this method each time. </p>
- *
- * @param regex
- * The expression to be compiled
- *
- * @param input
- * The character sequence to be matched
- *
- * @throws PatternSyntaxException
- * If the expression's syntax is invalid
- */
- public static boolean matches(String regex, CharSequence input) {
- Pattern p = Pattern.compile(regex);
- Matcher m = p.matcher(input);
- return m.matches();
- }
- /**
- * Splits the given input sequence around matches of this pattern.
- *
- * <p> The array returned by this method contains each substring of the
- * input sequence that is terminated by another subsequence that matches
- * this pattern or is terminated by the end of the input sequence. The
- * substrings in the array are in the order in which they occur in the
- * input. If this pattern does not match any subsequence of the input then
- * the resulting array has just one element, namely the input sequence in
- * string form.
- *
- * <p> The <tt>limit</tt> parameter controls the number of times the
- * pattern is applied and therefore affects the length of the resulting
- * array. If the limit <i>n</i> is greater than zero then the pattern
- * will be applied at most <i>n</i> - 1 times, the array's
- * length will be no greater than <i>n</i>, and the array's last entry
- * will contain all input beyond the last matched delimiter. If <i>n</i>
- * is non-positive then the pattern will be applied as many times as
- * possible and the array can have any length. If <i>n</i> is zero then
- * the pattern will be applied as many times as possible, the array can
- * have any length, and trailing empty strings will be discarded.
- *
- * <p> The input <tt>"boo:and:foo"</tt>, for example, yields the following
- * results with these parameters:
- *
- * <blockquote><table cellpadding=1 cellspacing=0
- * summary="Split examples showing regex, limit, and result">
- * <tr><th><P align="left"><i>Regex </i></th>
- * <th><P align="left"><i>Limit </i></th>
- * <th><P align="left"><i>Result </i></th></tr>
- * <tr><td align=center>:</td>
- * <td align=center>2</td>
- * <td><tt>{ "boo", "and:foo" }</tt></td></tr>
- * <tr><td align=center>:</td>
- * <td align=center>5</td>
- * <td><tt>{ "boo", "and", "foo" }</tt></td></tr>
- * <tr><td align=center>:</td>
- * <td align=center>-2</td>
- * <td><tt>{ "boo", "and", "foo" }</tt></td></tr>
- * <tr><td align=center>o</td>
- * <td align=center>5</td>
- * <td><tt>{ "b", "", ":and:f", "", "" }</tt></td></tr>
- * <tr><td align=center>o</td>
- * <td align=center>-2</td>
- * <td><tt>{ "b", "", ":and:f", "", "" }</tt></td></tr>
- * <tr><td align=center>o</td>
- * <td align=center>0</td>
- * <td><tt>{ "b", "", ":and:f" }</tt></td></tr>
- * </table></blockquote>
- *
- *
- * @param input
- * The character sequence to be split
- *
- * @param limit
- * The result threshold, as described above
- *
- * @return The array of strings computed by splitting the input
- * around matches of this pattern
- */
- public String[] split(CharSequence input, int limit) {
- int index = 0;
- boolean matchLimited = limit > 0;
- ArrayList matchList = new ArrayList();
- Matcher m = matcher(input);
- // Add segments before each match found
- while(m.find()) {
- if (!matchLimited || matchList.size() < limit - 1) {
- String match = input.subSequence(index, m.start()).toString();
- matchList.add(match);
- index = m.end();
- } else if (matchList.size() == limit - 1) { // last one
- String match = input.subSequence(index,
- input.length()).toString();
- matchList.add(match);
- index = m.end();
- }
- }
- // If no match was found, return this
- if (index == 0)
- return new String[] {input.toString()};
- // Add remaining segment
- if (!matchLimited || matchList.size() < limit)
- matchList.add(input.subSequence(index, input.length()).toString());
- // Construct result
- int resultSize = matchList.size();
- if (limit == 0)
- while (resultSize > 0 && matchList.get(resultSize-1).equals(""))
- resultSize--;
- String[] result = new String[resultSize];
- return (String[])matchList.subList(0, resultSize).toArray(result);
- }
- /**
- * Splits the given input sequence around matches of this pattern.
- *
- * <p> This method works as if by invoking the two-argument {@link
- * #split(java.lang.CharSequence, int) split} method with the given input
- * sequence and a limit argument of zero. Trailing empty strings are
- * therefore not included in the resulting array. </p>
- *
- * <p> The input <tt>"boo:and:foo"</tt>, for example, yields the following
- * results with these expressions:
- *
- * <blockquote><table cellpadding=1 cellspacing=0
- * summary="Split examples showing regex and result">
- * <tr><th><P align="left"><i>Regex </i></th>
- * <th><P align="left"><i>Result</i></th></tr>
- * <tr><td align=center>:</td>
- * <td><tt>{ "boo", "and", "foo" }</tt></td></tr>
- * <tr><td align=center>o</td>
- * <td><tt>{ "b", "", ":and:f" }</tt></td></tr>
- * </table></blockquote>
- *
- *
- * @param input
- * The character sequence to be split
- *
- * @return The array of strings computed by splitting the input
- * around matches of this pattern
- */
- public String[] split(CharSequence input) {
- return split(input, 0);
- }
- /**
- * Recompile the Pattern instance from a stream. The original pattern
- * string is read in and the object tree is recompiled from it.
- */
- private void readObject(java.io.ObjectInputStream s)
- throws java.io.IOException, ClassNotFoundException {
- // Read in all fields
- s.defaultReadObject();
- // Initialize counts
- groupCount = 1;
- localCount = 0;
- // Recompile object tree
- if (pattern.length() > 0)
- compile();
- else
- root = new Start(lastAccept);
- }
- /**
- * This private constructor is used to create all Patterns. The pattern
- * string and match flags are all that is needed to completely describe
- * a Pattern. An empty pattern string results in an object tree with
- * only a Start node and a LastNode node.
- */
- private Pattern(String p, int f) {
- pattern = p;
- flags = f;
- // Reset group index count
- groupCount = 1;
- localCount = 0;
- if (pattern.length() > 0) {
- compile();
- } else {
- root = new Start(lastAccept);
- matchRoot = lastAccept;
- }
- }
- /**
- * The pattern is converted to normalizedD form and then a pure group
- * is constructed to match canonical equivalences of the characters.
- */
- private void normalize() {
- boolean inCharClass = false;
- char lastChar = 0xffff;
- // Convert pattern into normalizedD form
- normalizedPattern = Normalizer.decompose(pattern, false, 0);
- patternLength = normalizedPattern.length();
- // Modify pattern to match canonical equivalences
- StringBuffer newPattern = new StringBuffer(patternLength);
- for(int i=0; i<patternLength; i++) {
- char c = normalizedPattern.charAt(i);
- StringBuffer sequenceBuffer;
- if ((Character.getType(c) == Character.NON_SPACING_MARK)
- && (lastChar != 0xffff)) {
- sequenceBuffer = new StringBuffer();
- sequenceBuffer.append(lastChar);
- sequenceBuffer.append(c);
- while(Character.getType(c) == Character.NON_SPACING_MARK) {
- i++;
- if (i >= patternLength)
- break;
- c = normalizedPattern.charAt(i);
- sequenceBuffer.append(c);
- }
- String ea = produceEquivalentAlternation(
- sequenceBuffer.toString());
- newPattern.setLength(newPattern.length()-1);
- newPattern.append("(?:").append(ea).append(")");
- } else if (c == '[' && lastChar != '\\') {
- i = normalizeCharClass(newPattern, i);
- } else {
- newPattern.append(c);
- }
- lastChar = c;
- }
- normalizedPattern = newPattern.toString();
- }
- /**
- * Complete the character class being parsed and add a set
- * of alternations to it that will match the canonical equivalences
- * of the characters within the class.
- */
- private int normalizeCharClass(StringBuffer newPattern, int i) {
- StringBuffer charClass = new StringBuffer();
- StringBuffer eq = null;
- char lastChar = 0xffff;
- String result;
- i++;
- charClass.append("[");
- while(true) {
- char c = normalizedPattern.charAt(i);
- StringBuffer sequenceBuffer;
- if (c == ']' && lastChar != '\\') {
- charClass.append(c);
- break;
- } else if (Character.getType(c) == Character.NON_SPACING_MARK) {
- sequenceBuffer = new StringBuffer();
- sequenceBuffer.append(lastChar);
- while(Character.getType(c) == Character.NON_SPACING_MARK) {
- sequenceBuffer.append(c);
- i++;
- if (i >= normalizedPattern.length())
- break;
- c = normalizedPattern.charAt(i);
- }
- String ea = produceEquivalentAlternation(
- sequenceBuffer.toString());
- charClass.setLength(charClass.length()-1);
- if (eq == null)
- eq = new StringBuffer();
- eq.append('|');
- eq.append(ea);
- } else {
- charClass.append(c);
- i++;
- }
- if (i == normalizedPattern.length())
- error("Unclosed character class");
- lastChar = c;
- }
- if (eq != null) {
- result = new String("(?:"+charClass.toString()+
- eq.toString()+")");
- } else {
- result = charClass.toString();
- }
- newPattern.append(result);
- return i;
- }
- /**
- * Given a specific sequence composed of a regular character and
- * combining marks that follow it, produce the alternation that will
- * match all canonical equivalences of that sequence.
- */
- private String produceEquivalentAlternation(String source) {
- if (source.length() == 1)
- return new String(source);
- String base = source.substring(0,1);
- String combiningMarks = source.substring(1);
- String[] perms = producePermutations(combiningMarks);
- StringBuffer result = new StringBuffer(source);
- // Add combined permutations
- for(int x=0; x<perms.length; x++) {
- String next = base + perms[x];
- if (x>0)
- result.append("|"+next);
- next = composeOneStep(next);
- if (next != null)
- result.append("|"+produceEquivalentAlternation(next));
- }
- return result.toString();
- }
- /**
- * Returns an array of strings that have all the possible
- * permutations of the characters in the input string.
- * This is used to get a list of all possible orderings
- * of a set of combining marks. Note that some of the permutations
- * are invalid because of combining class collisions, and these
- * possibilities must be removed because they are not canonically
- * equivalent.
- */
- private String[] producePermutations(String input) {
- if (input.length() == 1)
- return new String[] {input};
- if (input.length() == 2) {
- if (getClass(input.charAt(1)) ==
- getClass(input.charAt(0))) {
- return new String[] {input};
- }
- String[] result = new String[2];
- result[0] = input;
- StringBuffer sb = new StringBuffer(2);
- sb.append(input.charAt(1));
- sb.append(input.charAt(0));
- result[1] = sb.toString();
- return result;
- }
- int length = 1;
- for(int x=1; x<input.length(); x++)
- length = length * (x+1);
- String[] temp = new String[length];
- int combClass[] = new int[input.length()];
- for(int x=0; x<input.length(); x++)
- combClass[x] = getClass(input.charAt(x));
- // For each char, take it out and add the permutations
- // of the remaining chars
- int index = 0;
- loop: for(int x=0; x<input.length(); x++) {
- boolean skip = false;
- for(int y=x-1; y>=0; y--) {
- if (combClass[y] == combClass[x]) {
- continue loop;
- }
- }
- StringBuffer sb = new StringBuffer(input);
- String otherChars = sb.delete(x, x+1).toString();
- String[] subResult = producePermutations(otherChars);
- String prefix = input.substring(x, x+1);
- for(int y=0; y<subResult.length; y++)
- temp[index++] = prefix + subResult[y];
- }
- String[] result = new String[index];
- for (int x=0; x<index; x++)
- result[x] = temp[x];
- return result;
- }
- private int getClass(char c) {
- return Normalizer.getClass(c);
- }
- /**
- * Attempts to compose input by combining the first character
- * with the first combining mark following it. Returns a String
- * that is the composition of the leading character with its first
- * combining mark followed by the remaining combining marks. Returns
- * null if the first two chars cannot be further composed.
- */
- private String composeOneStep(String input) {
- String firstTwoChars = input.substring(0,2);
- String result = Normalizer.compose(firstTwoChars, false, 0);
- if (result.equals(firstTwoChars))
- return null;
- else {
- String remainder = input.substring(2);
- return result + remainder;
- }
- }
- /**
- * Copies regular expression to a char array and inovkes the parsing
- * of the expression which will create the object tree.
- */
- private void compile() {
- // Handle canonical equivalences
- if (has(CANON_EQ)) {
- normalize();
- } else {
- normalizedPattern = pattern;
- }
- // Copy pattern to char array for convenience
- patternLength = normalizedPattern.length();
- temp = new char[patternLength + 2];
- // Use double null characters to terminate pattern
- normalizedPattern.getChars(0, patternLength, temp, 0);
- temp[patternLength] = 0;
- temp[patternLength + 1] = 0;
- // Allocate all temporary objects here.
- buffer = new char[32];
- groupNodes = new GroupHead[10];
- // Start recursive decedent parsing
- matchRoot = expr(lastAccept);
- // Check extra pattern characters
- if (patternLength != cursor) {
- if (peek() == ')') {
- error("Unmatched closing ')'");
- } else {
- error("Unexpected internal error");
- }
- }
- // Peephole optimization
- if (matchRoot instanceof Slice) {
- root = BnM.optimize(matchRoot);
- if (root == matchRoot) {
- root = new Start(matchRoot);
- }
- } else if (matchRoot instanceof Begin
- || matchRoot instanceof First) {
- root = matchRoot;
- } else {
- root = new Start(matchRoot);
- }
- // Release temporary storage
- temp = null;
- buffer = null;
- groupNodes = null;
- patternLength = 0;
- }
- /**
- * Used to print out a subtree of the Pattern to help with debugging.
- */
- private static void printObjectTree(Node node) {
- while(node != null) {
- if (node instanceof Prolog) {
- System.out.println(node);
- printObjectTree(((Prolog)node).loop);
- System.out.println("**** end contents prolog loop");
- } else if (node instanceof Loop) {
- System.out.println(node);
- printObjectTree(((Loop)node).body);
- System.out.println("**** end contents Loop body");
- } else if (node instanceof Curly) {
- System.out.println(node);
- printObjectTree(((Curly)node).atom);
- System.out.println("**** end contents Curly body");
- } else if (node instanceof GroupTail) {
- System.out.println(node);
- System.out.println("Tail next is "+node.next);
- return;
- } else {
- System.out.println(node);
- }
- node = node.next;
- if (node != null)
- System.out.println("->next:");
- if (node == Pattern.accept) {
- System.out.println("Accept Node");
- node = null;
- }
- }
- }
- /**
- * Used to accumulate information about a subtree of the object graph
- * so that optimizations can be applied to the subtree.
- */
- static final class TreeInfo {
- int minLength;
- int maxLength;
- boolean maxValid;
- boolean deterministic;
- TreeInfo() {
- reset();
- }
- void reset() {
- minLength = 0;
- maxLength = 0;
- maxValid = true;
- deterministic = true;
- }
- }
- /**
- * The following private methods are mainly used to improve the
- * readability of the code. In order to let the Java compiler easily
- * inline them, we should not put many assertions or error checks in them.
- */
- /**
- * Indicates whether a particular flag is set or not.
- */
- private boolean has(int f) {
- return (flags & f) > 0;
- }
- /**
- * Match next character, signal error if failed.
- */
- private void accept(int ch, String s) {
- int testChar = temp[cursor++];
- if (has(COMMENTS))
- testChar = parsePastWhitespace(testChar);
- if (ch != testChar) {
- error(s);
- }
- }
- /**
- * Mark the end of pattern with a specific character.
- */
- private void mark(char c) {
- temp[patternLength] = c;
- }
- /**
- * Peek the next character, and do not advance the cursor.
- */
- private int peek() {
- int ch = temp[cursor];
- if (has(COMMENTS))
- ch = peekPastWhi