RE.java 75.8 KB
Newer Older
Tom Tromey committed
1
/* gnu/regexp/RE.java
2
   Copyright (C) 2006 Free Software Foundation, Inc.
Tom Tromey committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */

38
package gnu.java.util.regex;
39 40 41

import gnu.java.lang.CPStringBuilder;

Tom Tromey committed
42 43
import java.io.InputStream;
import java.io.Serializable;
44 45 46

import java.util.ArrayList;
import java.util.List;
Tom Tromey committed
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
import java.util.Locale;
import java.util.PropertyResourceBundle;
import java.util.ResourceBundle;

/**
 * RE provides the user interface for compiling and matching regular
 * expressions.
 * <P>
 * A regular expression object (class RE) is compiled by constructing it
 * from a String, StringBuffer or character array, with optional 
 * compilation flags (below)
 * and an optional syntax specification (see RESyntax; if not specified,
 * <code>RESyntax.RE_SYNTAX_PERL5</code> is used).
 * <P>
 * Once compiled, a regular expression object is reusable as well as
 * threadsafe: multiple threads can use the RE instance simultaneously
 * to match against different input text.
 * <P>
 * Various methods attempt to match input text against a compiled
 * regular expression.  These methods are:
 * <LI><code>isMatch</code>: returns true if the input text in its
 * entirety matches the regular expression pattern.
 * <LI><code>getMatch</code>: returns the first match found in the
 * input text, or null if no match is found.
 * <LI><code>getAllMatches</code>: returns an array of all
 * non-overlapping matches found in the input text.  If no matches are
 * found, the array is zero-length.
 * <LI><code>substitute</code>: substitute the first occurence of the
 * pattern in the input text with a replacement string (which may
 * include metacharacters $0-$9, see REMatch.substituteInto).
 * <LI><code>substituteAll</code>: same as above, but repeat for each
 * match before returning.
 * <LI><code>getMatchEnumeration</code>: returns an REMatchEnumeration
 * object that allows iteration over the matches (see
 * REMatchEnumeration for some reasons why you may want to do this
 * instead of using <code>getAllMatches</code>.
 * <P>
 *
 * These methods all have similar argument lists.  The input can be a
86
 * CharIndexed, String, a character array, a StringBuffer, or an
Tom Tromey committed
87 88 89 90 91 92
 * InputStream of some sort.  Note that when using an
 * InputStream, the stream read position cannot be guaranteed after
 * attempting a match (this is not a bug, but a consequence of the way
 * regular expressions work).  Using an REMatchEnumeration can
 * eliminate most positioning problems.
 *
93 94 95 96 97
 * Although the input object can be of various types, it is recommended
 * that it should be a CharIndexed because {@link CharIndexed#getLastMatch()}
 * can show the last match found on this input, which helps the expression
 * \G work as the end of the previous match.
 *
Tom Tromey committed
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
 * <P>
 *
 * The optional index argument specifies the offset from the beginning
 * of the text at which the search should start (see the descriptions
 * of some of the execution flags for how this can affect positional
 * pattern operators).  For an InputStream, this means an
 * offset from the current read position, so subsequent calls with the
 * same index argument on an InputStream will not
 * necessarily access the same position on the stream, whereas
 * repeated searches at a given index in a fixed string will return
 * consistent results.
 *
 * <P>
 * You can optionally affect the execution environment by using a
 * combination of execution flags (constants listed below).
 * 
 * <P>
 * All operations on a regular expression are performed in a
 * thread-safe manner.
 *
 * @author <A HREF="mailto:wes@cacas.org">Wes Biggs</A>
 * @version 1.1.5-dev, to be released
 */

122 123
public class RE extends REToken
{
Tom Tromey committed
124

125 126
  private static final class IntPair implements Serializable
  {
Tom Tromey committed
127 128 129
    public int first, second;
  }

130 131
  private static final class CharUnit implements Serializable
  {
Tom Tromey committed
132 133 134 135 136 137 138 139
    public char ch;
    public boolean bk;
  }

  // This String will be returned by getVersion()
  private static final String VERSION = "1.1.5-dev";

  // The localized strings are kept in a separate file
140 141 142 143 144
  // Used by getLocalizedMessage().
  private static ResourceBundle messages;

  // Name of the bundle that contains the localized messages.
  private static final String bundle = "gnu/java/util/regex/MessagesBundle";
Tom Tromey committed
145 146 147 148 149 150 151 152 153 154

  // These are, respectively, the first and last tokens in our linked list
  // If there is only one token, firstToken == lastToken
  private REToken firstToken, lastToken;

  // This is the number of subexpressions in this regular expression,
  // with a minimum value of zero.  Returned by getNumSubs()
  private int numSubs;

    /** Minimum length, in characters, of any possible match. */
155 156
  private int minimumLength;
  private int maximumLength;
Tom Tromey committed
157 158 159 160 161

  /**
   * Compilation flag. Do  not  differentiate  case.   Subsequent
   * searches  using  this  RE will be case insensitive.
   */
162
  public static final int REG_ICASE = 0x02;
Tom Tromey committed
163 164 165 166 167 168 169

  /**
   * Compilation flag. The match-any-character operator (dot)
   * will match a newline character.  When set this overrides the syntax
   * bit RE_DOT_NEWLINE (see RESyntax for details).  This is equivalent to
   * the "/s" operator in Perl.
   */
170
  public static final int REG_DOT_NEWLINE = 0x04;
Tom Tromey committed
171 172 173 174 175 176

  /**
   * Compilation flag. Use multiline mode.  In this mode, the ^ and $
   * anchors will match based on newlines within the input. This is
   * equivalent to the "/m" operator in Perl.
   */
177
  public static final int REG_MULTILINE = 0x08;
Tom Tromey committed
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205

  /**
   * Execution flag.
   * The match-beginning operator (^) will not match at the beginning
   * of the input string. Useful for matching on a substring when you
   * know the context of the input is such that position zero of the
   * input to the match test is not actually position zero of the text.
   * <P>
   * This example demonstrates the results of various ways of matching on
   * a substring.
   * <P>
   * <CODE>
   * String s = "food bar fool";<BR>
   * RE exp = new RE("^foo.");<BR>
   * REMatch m0 = exp.getMatch(s);<BR>
   * REMatch m1 = exp.getMatch(s.substring(8));<BR>
   * REMatch m2 = exp.getMatch(s.substring(8),0,RE.REG_NOTBOL); <BR>
   * REMatch m3 = exp.getMatch(s,8);                            <BR>
   * REMatch m4 = exp.getMatch(s,8,RE.REG_ANCHORINDEX);         <BR>
   * <P>
   * // Results:<BR>
   * //  m0.toString(): "food"<BR>
   * //  m1.toString(): "fool"<BR>
   * //  m2.toString(): null<BR>
   * //  m3.toString(): null<BR>
   * //  m4.toString(): "fool"<BR>
   * </CODE>
   */
206
  public static final int REG_NOTBOL = 0x10;
Tom Tromey committed
207 208 209 210 211 212

  /**
   * Execution flag.
   * The match-end operator ($) does not match at the end
   * of the input string. Useful for matching on substrings.
   */
213
  public static final int REG_NOTEOL = 0x20;
Tom Tromey committed
214 215 216 217 218 219 220 221 222 223 224 225 226

  /**
   * Execution flag.
   * When a match method is invoked that starts matching at a non-zero
   * index into the input, treat the input as if it begins at the index
   * given.  The effect of this flag is that the engine does not "see"
   * any text in the input before the given index.  This is useful so
   * that the match-beginning operator (^) matches not at position 0
   * in the input string, but at the position the search started at
   * (based on the index input given to the getMatch function).  See
   * the example under REG_NOTBOL.  It also affects the use of the \&lt;
   * and \b operators.
   */
227
  public static final int REG_ANCHORINDEX = 0x40;
Tom Tromey committed
228 229 230 231 232 233 234 235

  /**
   * Execution flag.
   * The substitute and substituteAll methods will not attempt to
   * interpolate occurrences of $1-$9 in the replacement text with
   * the corresponding subexpressions.  For example, you may want to
   * replace all matches of "one dollar" with "$1".
   */
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
  public static final int REG_NO_INTERPOLATE = 0x80;

  /**
   * Execution flag.
   * Try to match the whole input string. An implicit match-end operator
   * is added to this regexp.
   */
  public static final int REG_TRY_ENTIRE_MATCH = 0x0100;

  /**
   * Execution flag.
   * The substitute and substituteAll methods will treat the
   * character '\' in the replacement as an escape to a literal
   * character. In this case "\n", "\$", "\\", "\x40" and "\012"
   * will become "n", "$", "\", "x40" and "012" respectively.
   * This flag has no effect if REG_NO_INTERPOLATE is set on.
   */
  public static final int REG_REPLACE_USE_BACKSLASHESCAPE = 0x0200;
Tom Tromey committed
254

255 256 257 258 259 260 261 262 263 264 265
  /**
   * Compilation flag. Allow whitespace and comments in pattern.
   * This is equivalent to the "/x" operator in Perl.
   */
  public static final int REG_X_COMMENTS = 0x0400;

  /**
   * Compilation flag. If set, REG_ICASE is effective only for US-ASCII.
   */
  public static final int REG_ICASE_USASCII = 0x0800;

266 267 268 269 270 271 272
  /**
   * Execution flag.
   * Do not move the position at which the search begins.  If not set,
   * the starting position will be moved until a match is found.
   */
  public static final int REG_FIX_STARTING_POSITION = 0x1000;

Tom Tromey committed
273
  /** Returns a string representing the version of the gnu.regexp package. */
274 275
  public static final String version ()
  {
Tom Tromey committed
276 277 278 279
    return VERSION;
  }

  // Retrieves a message from the ResourceBundle
280 281
  static final String getLocalizedMessage (String key)
  {
282
    if (messages == null)
283 284 285
      messages =
	PropertyResourceBundle.getBundle (bundle, Locale.getDefault ());
    return messages.getString (key);
Tom Tromey committed
286 287 288 289 290 291 292 293 294 295 296 297
  }

  /**
   * Constructs a regular expression pattern buffer without any compilation
   * flags set, and using the default syntax (RESyntax.RE_SYNTAX_PERL5).
   *
   * @param pattern A regular expression pattern, in the form of a String,
   *   StringBuffer or char[].  Other input types will be converted to
   *   strings using the toString() method.
   * @exception REException The input pattern could not be parsed.
   * @exception NullPointerException The pattern was null.
   */
298 299 300
  public RE (Object pattern) throws REException
  {
    this (pattern, 0, RESyntax.RE_SYNTAX_PERL5, 0, 0);
Tom Tromey committed
301 302 303 304 305 306 307 308 309 310 311 312 313
  }

  /**
   * Constructs a regular expression pattern buffer using the specified
   * compilation flags and the default syntax (RESyntax.RE_SYNTAX_PERL5).
   *
   * @param pattern A regular expression pattern, in the form of a String,
   *   StringBuffer, or char[].  Other input types will be converted to
   *   strings using the toString() method.
   * @param cflags The logical OR of any combination of the compilation flags listed above.
   * @exception REException The input pattern could not be parsed.
   * @exception NullPointerException The pattern was null.
   */
314 315 316
  public RE (Object pattern, int cflags) throws REException
  {
    this (pattern, cflags, RESyntax.RE_SYNTAX_PERL5, 0, 0);
Tom Tromey committed
317 318 319 320 321 322 323 324 325 326 327 328 329 330
  }

  /**
   * Constructs a regular expression pattern buffer using the specified
   * compilation flags and regular expression syntax.
   *
   * @param pattern A regular expression pattern, in the form of a String,
   *   StringBuffer, or char[].  Other input types will be converted to
   *   strings using the toString() method.
   * @param cflags The logical OR of any combination of the compilation flags listed above.
   * @param syntax The type of regular expression syntax to use.
   * @exception REException The input pattern could not be parsed.
   * @exception NullPointerException The pattern was null.
   */
331 332 333
  public RE (Object pattern, int cflags, RESyntax syntax) throws REException
  {
    this (pattern, cflags, syntax, 0, 0);
Tom Tromey committed
334 335 336
  }

  // internal constructor used for alternation
337 338 339 340
  private RE (REToken first, REToken last, int subs, int subIndex,
	      int minLength, int maxLength)
  {
    super (subIndex);
Tom Tromey committed
341 342 343 344
    firstToken = first;
    lastToken = last;
    numSubs = subs;
    minimumLength = minLength;
345
    maximumLength = maxLength;
346
    addToken (new RETokenEndSub (subIndex));
Tom Tromey committed
347 348
  }

349 350 351 352 353
  private RE (Object patternObj, int cflags, RESyntax syntax, int myIndex,
	      int nextSub) throws REException
  {
    super (myIndex);		// Subexpression index of this token.
    initialize (patternObj, cflags, syntax, myIndex, nextSub);
Tom Tromey committed
354 355
  }

356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
  // For use by subclasses
  protected RE ()
  {
    super (0);
  }

  // The meat of construction
  protected void initialize (Object patternObj, int cflags, RESyntax syntax,
			     int myIndex, int nextSub) throws REException
  {
    char[] pattern;
    if (patternObj instanceof String)
      {
	pattern = ((String) patternObj).toCharArray ();
      }
    else if (patternObj instanceof char[])
      {
	pattern = (char[]) patternObj;
      }
    else if (patternObj instanceof StringBuffer)
      {
	pattern = new char[((StringBuffer) patternObj).length ()];
	((StringBuffer) patternObj).getChars (0, pattern.length, pattern, 0);
      }
    else if (patternObj instanceof StringBuilder)
      {
	pattern = new char[((StringBuilder) patternObj).length ()];
	((StringBuilder) patternObj).getChars (0, pattern.length, pattern, 0);
      }
    else if (patternObj instanceof CPStringBuilder)
      {
	pattern = new char[((CPStringBuilder) patternObj).length ()];
	((CPStringBuilder) patternObj).getChars (0, pattern.length, pattern,
						 0);
      }
    else
      {
	pattern = patternObj.toString ().toCharArray ();
      }
Tom Tromey committed
395 396 397

    int pLength = pattern.length;

398 399
    numSubs = 0;		// Number of subexpressions in this token.
    ArrayList < REToken > branches = null;
Tom Tromey committed
400 401 402 403 404 405 406

    // linked list of tokens (sort of -- some closed loops can exist)
    firstToken = lastToken = null;

    // Precalculate these so we don't pay for the math every time we
    // need to access them.
    boolean insens = ((cflags & REG_ICASE) > 0);
407
    boolean insensUSASCII = ((cflags & REG_ICASE_USASCII) > 0);
Tom Tromey committed
408 409 410 411 412 413 414 415

    // Parse pattern into tokens.  Does anyone know if it's more efficient
    // to use char[] than a String.charAt()?  I'm assuming so.

    // index tracks the position in the char array
    int index = 0;

    // this will be the current parse character (pattern[index])
416
    CharUnit unit = new CharUnit ();
Tom Tromey committed
417 418

    // This is used for {x,y} calculations
419
    IntPair minMax = new IntPair ();
Tom Tromey committed
420 421 422 423 424

    // Buffer a token so we can create a TokenRepeated, etc.
    REToken currentToken = null;
    boolean quot = false;

425 426 427 428 429
    // Saved syntax and flags.
    RESyntax savedSyntax = null;
    int savedCflags = 0;
    boolean flagsSaved = false;

430 431 432 433 434 435 436 437 438
    while (index < pLength)
      {
	// read the next character unit (including backslash escapes)
	index = getCharUnit (pattern, index, unit, quot);

	if (unit.bk)
	  if (unit.ch == 'Q')
	    {
	      quot = true;
439 440
	      continue;
	    }
441 442 443
	  else if (unit.ch == 'E')
	    {
	      quot = false;
444 445
	      continue;
	    }
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
	if (quot)
	  unit.bk = false;

	if (((cflags & REG_X_COMMENTS) > 0) && (!unit.bk) && (!quot))
	  {
	    if (Character.isWhitespace (unit.ch))
	      {
		continue;
	      }
	    if (unit.ch == '#')
	      {
		for (int i = index; i < pLength; i++)
		  {
		    if (pattern[i] == '\n')
		      {
			index = i + 1;
			continue;
		      }
		    else if (pattern[i] == '\r')
		      {
			if (i + 1 < pLength && pattern[i + 1] == '\n')
			  {
			    index = i + 2;
			  }
			else
			  {
			    index = i + 1;
			  }
			continue;
		      }
		  }
		index = pLength;
		continue;
	      }
480 481
	  }

482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
	// ALTERNATION OPERATOR
	//  \| or | (if RE_NO_BK_VBAR) or newline (if RE_NEWLINE_ALT)
	//  not available if RE_LIMITED_OPS is set

	// TODO: the '\n' literal here should be a test against REToken.newline,
	// which unfortunately may be more than a single character.
	if (((unit.ch == '|'
	      && (syntax.get (RESyntax.RE_NO_BK_VBAR) ^ (unit.bk || quot)))
	     || (syntax.get (RESyntax.RE_NEWLINE_ALT) && (unit.ch == '\n')
		 && !(unit.bk || quot)))
	    && !syntax.get (RESyntax.RE_LIMITED_OPS))
	  {
	    // make everything up to here be a branch. create vector if nec.
	    addToken (currentToken);
	    RE theBranch =
	      new RE (firstToken, lastToken, numSubs, subIndex, minimumLength,
		      maximumLength);
	    minimumLength = 0;
	    maximumLength = 0;
	    if (branches == null)
	      {
		branches = new ArrayList < REToken > ();
	      }
	    branches.add (theBranch);
	    firstToken = lastToken = currentToken = null;
	  }
Tom Tromey committed
508

509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
	// INTERVAL OPERATOR:
	//  {x} | {x,} | {x,y}  (RE_INTERVALS && RE_NO_BK_BRACES)
	//  \{x\} | \{x,\} | \{x,y\} (RE_INTERVALS && !RE_NO_BK_BRACES)
	//
	// OPEN QUESTION: 
	//  what is proper interpretation of '{' at start of string?
	//
	// This method used to check "repeat.empty.token" to avoid such regexp
	// as "(a*){2,}", but now "repeat.empty.token" is allowed.

	else if ((unit.ch == '{') && syntax.get (RESyntax.RE_INTERVALS)
		 && (syntax.
		     get (RESyntax.RE_NO_BK_BRACES) ^ (unit.bk || quot)))
	  {
	    int newIndex = getMinMax (pattern, index, minMax, syntax);
	    if (newIndex > index)
	      {
		if (minMax.first > minMax.second)
		  throw new
		    REException (getLocalizedMessage ("interval.order"),
				 REException.REG_BADRPT, newIndex);
		if (currentToken == null)
		  throw new
		    REException (getLocalizedMessage ("repeat.no.token"),
				 REException.REG_BADRPT, newIndex);
		if (currentToken instanceof RETokenRepeated)
		  throw new
		    REException (getLocalizedMessage ("repeat.chained"),
				 REException.REG_BADRPT, newIndex);
		if (currentToken instanceof RETokenWordBoundary
		    || currentToken instanceof RETokenWordBoundary)
		  throw new
		    REException (getLocalizedMessage ("repeat.assertion"),
				 REException.REG_BADRPT, newIndex);
		index = newIndex;
		currentToken =
		  setRepeated (currentToken, minMax.first, minMax.second,
			       index);
	      }
	    else
	      {
		addToken (currentToken);
		currentToken = new RETokenChar (subIndex, unit.ch, insens);
		if (insensUSASCII)
		  currentToken.unicodeAware = false;
	      }
	  }

	// LIST OPERATOR:
	//  [...] | [^...]

	else if ((unit.ch == '[') && !(unit.bk || quot))
	  {
	    // Create a new RETokenOneOf
	    ParseCharClassResult result =
	      parseCharClass (subIndex, pattern, index, pLength, cflags,
			      syntax, 0);
	    addToken (currentToken);
	    currentToken = result.token;
	    index = result.index;
	  }

	// SUBEXPRESSIONS
	//  (...) | \(...\) depending on RE_NO_BK_PARENS

	else if ((unit.ch == '(')
		 && (syntax.
		     get (RESyntax.RE_NO_BK_PARENS) ^ (unit.bk || quot)))
	  {
	    boolean pure = false;
	    boolean comment = false;
	    boolean lookAhead = false;
	    boolean lookBehind = false;
	    boolean independent = false;
	    boolean negativelh = false;
	    boolean negativelb = false;
	    if ((index + 1 < pLength) && (pattern[index] == '?'))
	      {
		switch (pattern[index + 1])
		  {
		  case '!':
		    if (syntax.get (RESyntax.RE_LOOKAHEAD))
		      {
			pure = true;
			negativelh = true;
			lookAhead = true;
			index += 2;
		      }
		    break;
		  case '=':
		    if (syntax.get (RESyntax.RE_LOOKAHEAD))
		      {
			pure = true;
			lookAhead = true;
			index += 2;
		      }
		    break;
		  case '<':
		    // We assume that if the syntax supports look-ahead,
		    // it also supports look-behind.
		    if (syntax.get (RESyntax.RE_LOOKAHEAD))
		      {
			index++;
			switch (pattern[index + 1])
			  {
			  case '!':
			    pure = true;
			    negativelb = true;
			    lookBehind = true;
			    index += 2;
			    break;
			  case '=':
			    pure = true;
			    lookBehind = true;
			    index += 2;
			  }
		      }
		    break;
		  case '>':
		    // We assume that if the syntax supports look-ahead,
		    // it also supports independent group.
		    if (syntax.get (RESyntax.RE_LOOKAHEAD))
		      {
			pure = true;
			independent = true;
			index += 2;
		      }
		    break;
		  case 'i':
		  case 'd':
		  case 'm':
		  case 's':
		  case 'u':
		  case 'x':
		  case '-':
		    if (!syntax.get (RESyntax.RE_EMBEDDED_FLAGS))
		      break;
		    // Set or reset syntax flags.
		    int flagIndex = index + 1;
		    int endFlag = -1;
		    RESyntax newSyntax = new RESyntax (syntax);
		    int newCflags = cflags;
		    boolean negate = false;
		    while (flagIndex < pLength && endFlag < 0)
		      {
			switch (pattern[flagIndex])
			  {
			  case 'i':
			    if (negate)
			      newCflags &= ~REG_ICASE;
			    else
			      newCflags |= REG_ICASE;
			    flagIndex++;
			    break;
			  case 'd':
			    if (negate)
			      newSyntax.setLineSeparator (RESyntax.
							  DEFAULT_LINE_SEPARATOR);
			    else
			      newSyntax.setLineSeparator ("\n");
			    flagIndex++;
			    break;
			  case 'm':
			    if (negate)
			      newCflags &= ~REG_MULTILINE;
			    else
			      newCflags |= REG_MULTILINE;
			    flagIndex++;
			    break;
			  case 's':
			    if (negate)
			      newCflags &= ~REG_DOT_NEWLINE;
			    else
			      newCflags |= REG_DOT_NEWLINE;
			    flagIndex++;
			    break;
			  case 'u':
			    if (negate)
			      newCflags |= REG_ICASE_USASCII;
			    else
			      newCflags &= ~REG_ICASE_USASCII;
			    flagIndex++;
			    break;
			  case 'x':
			    if (negate)
			      newCflags &= ~REG_X_COMMENTS;
			    else
			      newCflags |= REG_X_COMMENTS;
			    flagIndex++;
			    break;
			  case '-':
			    negate = true;
			    flagIndex++;
			    break;
			  case ':':
			  case ')':
			    endFlag = pattern[flagIndex];
			    break;
			  default:
			    throw new
			      REException (getLocalizedMessage
					   ("repeat.no.token"),
					   REException.REG_BADRPT, index);
			  }
		      }
		    if (endFlag == ')')
		      {
			syntax = newSyntax;
			cflags = newCflags;
			insens = ((cflags & REG_ICASE) > 0);
			insensUSASCII = ((cflags & REG_ICASE_USASCII) > 0);
			// This can be treated as though it were a comment.
			comment = true;
			index = flagIndex - 1;
			break;
		      }
		    if (endFlag == ':')
		      {
			savedSyntax = syntax;
			savedCflags = cflags;
			flagsSaved = true;
			syntax = newSyntax;
			cflags = newCflags;
			insens = ((cflags & REG_ICASE) > 0);
			insensUSASCII = ((cflags & REG_ICASE_USASCII) > 0);
			index = flagIndex - 1;
			// Fall through to the next case.
		      }
		    else
		      {
			throw new
			  REException (getLocalizedMessage
				       ("unmatched.paren"),
				       REException.REG_ESUBREG, index);
		      }
		  case ':':
		    if (syntax.get (RESyntax.RE_PURE_GROUPING))
		      {
			pure = true;
			index += 2;
		      }
		    break;
		  case '#':
		    if (syntax.get (RESyntax.RE_COMMENTS))
		      {
			comment = true;
		      }
		    break;
		  default:
		    throw new
		      REException (getLocalizedMessage ("repeat.no.token"),
				   REException.REG_BADRPT, index);
		  }
	      }

	    if (index >= pLength)
	      {
		throw new
		  REException (getLocalizedMessage ("unmatched.paren"),
			       REException.REG_ESUBREG, index);
	      }

	    // find end of subexpression
	    int endIndex = index;
	    int nextIndex = index;
	    int nested = 0;

	    while (((nextIndex =
		     getCharUnit (pattern, endIndex, unit, false)) > 0)
		   && !(nested == 0 && (unit.ch == ')')
			&& (syntax.
			    get (RESyntax.RE_NO_BK_PARENS) ^ (unit.bk
							      || quot))))
	      {
		if ((endIndex = nextIndex) >= pLength)
		  throw new
		    REException (getLocalizedMessage ("subexpr.no.end"),
				 REException.REG_ESUBREG, nextIndex);
		else
	      if ((unit.ch == '[') && !(unit.bk || quot))
		{
		  // I hate to do something similar to the LIST OPERATOR matters
		  // above, but ...
		  int listIndex = nextIndex;
		  if (listIndex < pLength && pattern[listIndex] == '^')
		    listIndex++;
		  if (listIndex < pLength && pattern[listIndex] == ']')
		    listIndex++;
		  int listEndIndex = -1;
		  int listNest = 0;
		  while (listIndex < pLength && listEndIndex < 0)
		    {
		      switch (pattern[listIndex++])
			{
			case '\\':
			  listIndex++;
			  break;
			case '[':
			  // Sun's API document says that regexp like "[a-d[m-p]]"
			  // is legal. Even something like "[[[^]]]]" is accepted.
			  listNest++;
			  if (listIndex < pLength
			      && pattern[listIndex] == '^')
			    listIndex++;
			  if (listIndex < pLength
			      && pattern[listIndex] == ']')
			    listIndex++;
			  break;
			case ']':
			  if (listNest == 0)
			    listEndIndex = listIndex;
			  listNest--;
			  break;
			}
		    }
		  if (listEndIndex >= 0)
		    {
		      nextIndex = listEndIndex;
		      if ((endIndex = nextIndex) >= pLength)
			throw new
			  REException (getLocalizedMessage ("subexpr.no.end"),
				       REException.REG_ESUBREG, nextIndex);
		      else
		      continue;
		    }
		  throw new
		    REException (getLocalizedMessage ("subexpr.no.end"),
				 REException.REG_ESUBREG, nextIndex);
837
		}
838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908
	      else if (unit.ch == '('
		       && (syntax.
			   get (RESyntax.RE_NO_BK_PARENS) ^ (unit.bk
							     || quot)))
		nested++;
	      else if (unit.ch == ')'
		       && (syntax.
			   get (RESyntax.RE_NO_BK_PARENS) ^ (unit.bk
							     || quot)))
		nested--;
	      }

	    // endIndex is now position at a ')','\)' 
	    // nextIndex is end of string or position after ')' or '\)'

	    if (comment)
	      index = nextIndex;
	    else
	      {			// not a comment
		// create RE subexpression as token.
		addToken (currentToken);
		if (!pure)
		  {
		    numSubs++;
		  }

		int useIndex = (pure || lookAhead || lookBehind
				|| independent) ? 0 : nextSub + numSubs;
		currentToken =
		  new RE (String.valueOf (pattern, index, endIndex - index).
			  toCharArray (), cflags, syntax, useIndex,
			  nextSub + numSubs);
		numSubs += ((RE) currentToken).getNumSubs ();

		if (lookAhead)
		  {
		    currentToken =
		      new RETokenLookAhead (currentToken, negativelh);
		  }
		else if (lookBehind)
		  {
		    currentToken =
		      new RETokenLookBehind (currentToken, negativelb);
		  }
		else if (independent)
		  {
		    currentToken = new RETokenIndependent (currentToken);
		  }

		index = nextIndex;
		if (flagsSaved)
		  {
		    syntax = savedSyntax;
		    cflags = savedCflags;
		    insens = ((cflags & REG_ICASE) > 0);
		    insensUSASCII = ((cflags & REG_ICASE_USASCII) > 0);
		    flagsSaved = false;
		  }
	      }			// not a comment
	  }			// subexpression

	// UNMATCHED RIGHT PAREN
	// ) or \) throw exception if
	// !syntax.get(RESyntax.RE_UNMATCHED_RIGHT_PAREN_ORD)
	else if (!syntax.get (RESyntax.RE_UNMATCHED_RIGHT_PAREN_ORD)
		 && ((unit.ch == ')')
		     && (syntax.
			 get (RESyntax.RE_NO_BK_PARENS) ^ (unit.bk || quot))))
	  {
	    throw new REException (getLocalizedMessage ("unmatched.paren"),
				   REException.REG_EPAREN, index);
Tom Tromey committed
909
	  }
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929

	// START OF LINE OPERATOR
	//  ^

	else if ((unit.ch == '^') && !(unit.bk || quot))
	  {
	    addToken (currentToken);
	    currentToken = null;
	    RETokenStart token = null;
	    if ((cflags & REG_MULTILINE) > 0)
	      {
		String sep = syntax.getLineSeparator ();
		if (sep == null)
		  {
		    token = new RETokenStart (subIndex, null, true);
		  }
		else
		  {
		    token = new RETokenStart (subIndex, sep);
		  }
930
	      }
931 932 933 934 935
	    else
	      {
		token = new RETokenStart (subIndex, null);
	      }
	    addToken (token);
936
	  }
937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962

	// END OF LINE OPERATOR
	//  $

	else if ((unit.ch == '$') && !(unit.bk || quot))
	  {
	    addToken (currentToken);
	    currentToken = null;
	    RETokenEnd token = null;
	    if ((cflags & REG_MULTILINE) > 0)
	      {
		String sep = syntax.getLineSeparator ();
		if (sep == null)
		  {
		    token = new RETokenEnd (subIndex, null, true);
		  }
		else
		  {
		    token = new RETokenEnd (subIndex, sep);
		  }
	      }
	    else
	      {
		token = new RETokenEnd (subIndex, null);
	      }
	    addToken (token);
Tom Tromey committed
963 964
	  }

965 966
	// MATCH-ANY-CHARACTER OPERATOR (except possibly newline and null)
	//  .
Tom Tromey committed
967

968 969 970 971 972 973 974
	else if ((unit.ch == '.') && !(unit.bk || quot))
	  {
	    addToken (currentToken);
	    currentToken =
	      new RETokenAny (subIndex, syntax.get (RESyntax.RE_DOT_NEWLINE)
			      || ((cflags & REG_DOT_NEWLINE) > 0),
			      syntax.get (RESyntax.RE_DOT_NOT_NULL));
Tom Tromey committed
975
	  }
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996

	// ZERO-OR-MORE REPEAT OPERATOR
	//  *
	//
	// This method used to check "repeat.empty.token" to avoid such regexp
	// as "(a*)*", but now "repeat.empty.token" is allowed.

	else if ((unit.ch == '*') && !(unit.bk || quot))
	  {
	    if (currentToken == null)
	      throw new REException (getLocalizedMessage ("repeat.no.token"),
				     REException.REG_BADRPT, index);
	    if (currentToken instanceof RETokenRepeated)
	      throw new REException (getLocalizedMessage ("repeat.chained"),
				     REException.REG_BADRPT, index);
	    if (currentToken instanceof RETokenWordBoundary
		|| currentToken instanceof RETokenWordBoundary)
	      throw new REException (getLocalizedMessage ("repeat.assertion"),
				     REException.REG_BADRPT, index);
	    currentToken =
	      setRepeated (currentToken, 0, Integer.MAX_VALUE, index);
997
	  }
Tom Tromey committed
998

999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
	// ONE-OR-MORE REPEAT OPERATOR / POSSESSIVE MATCHING OPERATOR
	//  + | \+ depending on RE_BK_PLUS_QM
	//  not available if RE_LIMITED_OPS is set
	//
	// This method used to check "repeat.empty.token" to avoid such regexp
	// as "(a*)+", but now "repeat.empty.token" is allowed.

	else if ((unit.ch == '+') && !syntax.get (RESyntax.RE_LIMITED_OPS)
		 && (!syntax.
		     get (RESyntax.RE_BK_PLUS_QM) ^ (unit.bk || quot)))
	  {
	    if (currentToken == null)
	      throw new REException (getLocalizedMessage ("repeat.no.token"),
				     REException.REG_BADRPT, index);

	    // Check for possessive matching on RETokenRepeated
	    if (currentToken instanceof RETokenRepeated)
	      {
		RETokenRepeated tokenRep = (RETokenRepeated) currentToken;
		if (syntax.get (RESyntax.RE_POSSESSIVE_OPS)
		    && !tokenRep.isPossessive () && !tokenRep.isStingy ())
		  tokenRep.makePossessive ();
		else
		  throw new
		    REException (getLocalizedMessage ("repeat.chained"),
				 REException.REG_BADRPT, index);

	      }
	    else if (currentToken instanceof RETokenWordBoundary
		     || currentToken instanceof RETokenWordBoundary)
	      throw new REException (getLocalizedMessage ("repeat.assertion"),
				     REException.REG_BADRPT, index);
	    else
	    currentToken =
	      setRepeated (currentToken, 1, Integer.MAX_VALUE, index);
1034
	  }
Tom Tromey committed
1035

1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
	// ZERO-OR-ONE REPEAT OPERATOR / STINGY MATCHING OPERATOR
	//  ? | \? depending on RE_BK_PLUS_QM
	//  not available if RE_LIMITED_OPS is set
	//  stingy matching if RE_STINGY_OPS is set and it follows a quantifier

	else if ((unit.ch == '?') && !syntax.get (RESyntax.RE_LIMITED_OPS)
		 && (!syntax.
		     get (RESyntax.RE_BK_PLUS_QM) ^ (unit.bk || quot)))
	  {
	    if (currentToken == null)
	      throw new REException (getLocalizedMessage ("repeat.no.token"),
				     REException.REG_BADRPT, index);

	    // Check for stingy matching on RETokenRepeated
	    if (currentToken instanceof RETokenRepeated)
	      {
		RETokenRepeated tokenRep = (RETokenRepeated) currentToken;
		if (syntax.get (RESyntax.RE_STINGY_OPS)
		    && !tokenRep.isStingy () && !tokenRep.isPossessive ())
		  tokenRep.makeStingy ();
		else
		  throw new
		    REException (getLocalizedMessage ("repeat.chained"),
				 REException.REG_BADRPT, index);
	      }
	    else if (currentToken instanceof RETokenWordBoundary
		     || currentToken instanceof RETokenWordBoundary)
	      throw new REException (getLocalizedMessage ("repeat.assertion"),
				     REException.REG_BADRPT, index);
	    else
	    currentToken = setRepeated (currentToken, 0, 1, index);
	  }
Tom Tromey committed
1068

1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
	// OCTAL CHARACTER
	//  \0377

	else if (unit.bk && (unit.ch == '0')
		 && syntax.get (RESyntax.RE_OCTAL_CHAR))
	  {
	    CharExpression ce =
	      getCharExpression (pattern, index - 2, pLength, syntax);
	    if (ce == null)
	      throw new REException ("invalid octal character",
				     REException.REG_ESCAPE, index);
	    index = index - 2 + ce.len;
	    addToken (currentToken);
	    currentToken = new RETokenChar (subIndex, ce.ch, insens);
	    if (insensUSASCII)
	      currentToken.unicodeAware = false;
	  }
Tom Tromey committed
1086

1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
	// BACKREFERENCE OPERATOR
	//  \1 \2 ... \9 and \10 \11 \12 ...
	// not available if RE_NO_BK_REFS is set
	// Perl recognizes \10, \11, and so on only if enough number of
	// parentheses have opened before it, otherwise they are treated
	// as aliases of \010, \011, ... (octal characters).  In case of
	// Sun's JDK, octal character expression must always begin with \0.
	// We will do as JDK does. But FIXME, take a look at "(a)(b)\29".
	// JDK treats \2 as a back reference to the 2nd group because
	// there are only two groups. But in our poor implementation,
	// we cannot help but treat \29 as a back reference to the 29th group.

	else if (unit.bk && Character.isDigit (unit.ch)
		 && !syntax.get (RESyntax.RE_NO_BK_REFS))
	  {
	    addToken (currentToken);
	    int numBegin = index - 1;
	    int numEnd = pLength;
	    for (int i = index; i < pLength; i++)
	      {
		if (!Character.isDigit (pattern[i]))
		  {
		    numEnd = i;
		    break;
		  }
	      }
	    int num = parseInt (pattern, numBegin, numEnd - numBegin, 10);
Tom Tromey committed
1114

1115 1116 1117 1118 1119
	    currentToken = new RETokenBackRef (subIndex, num, insens);
	    if (insensUSASCII)
	      currentToken.unicodeAware = false;
	    index = numEnd;
	  }
Tom Tromey committed
1120

1121 1122
	// START OF STRING OPERATOR
	//  \A if RE_STRING_ANCHORS is set
Tom Tromey committed
1123

1124 1125 1126 1127 1128 1129
	else if (unit.bk && (unit.ch == 'A')
		 && syntax.get (RESyntax.RE_STRING_ANCHORS))
	  {
	    addToken (currentToken);
	    currentToken = new RETokenStart (subIndex, null);
	  }
Tom Tromey committed
1130

1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
	// WORD BREAK OPERATOR
	//  \b if ????

	else if (unit.bk && (unit.ch == 'b')
		 && syntax.get (RESyntax.RE_STRING_ANCHORS))
	  {
	    addToken (currentToken);
	    currentToken =
	      new RETokenWordBoundary (subIndex,
				       RETokenWordBoundary.
				       BEGIN | RETokenWordBoundary.END,
				       false);
	  }
1144

1145 1146 1147 1148 1149 1150 1151 1152 1153
	// WORD BEGIN OPERATOR 
	//  \< if ????
	else if (unit.bk && (unit.ch == '<'))
	  {
	    addToken (currentToken);
	    currentToken =
	      new RETokenWordBoundary (subIndex, RETokenWordBoundary.BEGIN,
				       false);
	  }
1154

1155 1156 1157 1158 1159 1160 1161 1162 1163
	// WORD END OPERATOR 
	//  \> if ????
	else if (unit.bk && (unit.ch == '>'))
	  {
	    addToken (currentToken);
	    currentToken =
	      new RETokenWordBoundary (subIndex, RETokenWordBoundary.END,
				       false);
	  }
1164

1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
	// NON-WORD BREAK OPERATOR
	// \B if ????

	else if (unit.bk && (unit.ch == 'B')
		 && syntax.get (RESyntax.RE_STRING_ANCHORS))
	  {
	    addToken (currentToken);
	    currentToken =
	      new RETokenWordBoundary (subIndex,
				       RETokenWordBoundary.
				       BEGIN | RETokenWordBoundary.END, true);
	  }
Tom Tromey committed
1177 1178


1179 1180
	// DIGIT OPERATOR
	//  \d if RE_CHAR_CLASS_ESCAPES is set
Tom Tromey committed
1181

1182 1183 1184 1185 1186 1187 1188 1189 1190
	else if (unit.bk && (unit.ch == 'd')
		 && syntax.get (RESyntax.RE_CHAR_CLASS_ESCAPES))
	  {
	    addToken (currentToken);
	    currentToken =
	      new RETokenPOSIX (subIndex, RETokenPOSIX.DIGIT, insens, false);
	    if (insensUSASCII)
	      currentToken.unicodeAware = false;
	  }
Tom Tromey committed
1191

1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
	// NON-DIGIT OPERATOR
	//  \D

	else if (unit.bk && (unit.ch == 'D')
		 && syntax.get (RESyntax.RE_CHAR_CLASS_ESCAPES))
	  {
	    addToken (currentToken);
	    currentToken =
	      new RETokenPOSIX (subIndex, RETokenPOSIX.DIGIT, insens, true);
	    if (insensUSASCII)
	      currentToken.unicodeAware = false;
	  }
Tom Tromey committed
1204 1205

	// NEWLINE ESCAPE
1206
	//  \n
Tom Tromey committed
1207

1208 1209 1210 1211 1212
	else if (unit.bk && (unit.ch == 'n'))
	  {
	    addToken (currentToken);
	    currentToken = new RETokenChar (subIndex, '\n', false);
	  }
Tom Tromey committed
1213 1214

	// RETURN ESCAPE
1215
	//  \r
Tom Tromey committed
1216

1217 1218 1219 1220 1221
	else if (unit.bk && (unit.ch == 'r'))
	  {
	    addToken (currentToken);
	    currentToken = new RETokenChar (subIndex, '\r', false);
	  }
Tom Tromey committed
1222 1223

	// WHITESPACE OPERATOR
1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
	//  \s if RE_CHAR_CLASS_ESCAPES is set

	else if (unit.bk && (unit.ch == 's')
		 && syntax.get (RESyntax.RE_CHAR_CLASS_ESCAPES))
	  {
	    addToken (currentToken);
	    currentToken =
	      new RETokenPOSIX (subIndex, RETokenPOSIX.SPACE, insens, false);
	    if (insensUSASCII)
	      currentToken.unicodeAware = false;
	  }
Tom Tromey committed
1235 1236

	// NON-WHITESPACE OPERATOR
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
	//  \S

	else if (unit.bk && (unit.ch == 'S')
		 && syntax.get (RESyntax.RE_CHAR_CLASS_ESCAPES))
	  {
	    addToken (currentToken);
	    currentToken =
	      new RETokenPOSIX (subIndex, RETokenPOSIX.SPACE, insens, true);
	    if (insensUSASCII)
	      currentToken.unicodeAware = false;
	  }
Tom Tromey committed
1248 1249

	// TAB ESCAPE
1250
	//  \t
Tom Tromey committed
1251

1252 1253 1254 1255 1256
	else if (unit.bk && (unit.ch == 't'))
	  {
	    addToken (currentToken);
	    currentToken = new RETokenChar (subIndex, '\t', false);
	  }
Tom Tromey committed
1257 1258

	// ALPHANUMERIC OPERATOR
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
	//  \w

	else if (unit.bk && (unit.ch == 'w')
		 && syntax.get (RESyntax.RE_CHAR_CLASS_ESCAPES))
	  {
	    addToken (currentToken);
	    currentToken =
	      new RETokenPOSIX (subIndex, RETokenPOSIX.ALNUM, insens, false);
	    if (insensUSASCII)
	      currentToken.unicodeAware = false;
	  }
Tom Tromey committed
1270 1271

	// NON-ALPHANUMERIC OPERATOR
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
	//  \W

	else if (unit.bk && (unit.ch == 'W')
		 && syntax.get (RESyntax.RE_CHAR_CLASS_ESCAPES))
	  {
	    addToken (currentToken);
	    currentToken =
	      new RETokenPOSIX (subIndex, RETokenPOSIX.ALNUM, insens, true);
	    if (insensUSASCII)
	      currentToken.unicodeAware = false;
	  }
Tom Tromey committed
1283 1284

	// END OF STRING OPERATOR
1285
	//  \Z, \z
Tom Tromey committed
1286

1287 1288 1289 1290 1291 1292
	// FIXME: \Z and \z are different in that if the input string
	// ends with a line terminator, \Z matches the position before
	// the final terminator.  This special behavior of \Z is yet
	// to be implemented.

	else if (unit.bk && (unit.ch == 'Z' || unit.ch == 'z') &&
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
		 syntax.get (RESyntax.RE_STRING_ANCHORS))
	  {
	    addToken (currentToken);
	    currentToken = new RETokenEnd (subIndex, null);
	  }

	// HEX CHARACTER, UNICODE CHARACTER
	//  \x1B, \u1234

	else
	  if ((unit.bk && (unit.ch == 'x')
	       && syntax.get (RESyntax.RE_HEX_CHAR)) || (unit.bk
							 && (unit.ch == 'u')
							 && syntax.
							 get (RESyntax.
							      RE_UNICODE_CHAR)))
	  {
	    CharExpression ce =
	      getCharExpression (pattern, index - 2, pLength, syntax);
	    if (ce == null)
	      throw new REException ("invalid hex character",
				     REException.REG_ESCAPE, index);
	    index = index - 2 + ce.len;
	    addToken (currentToken);
	    currentToken = new RETokenChar (subIndex, ce.ch, insens);
	    if (insensUSASCII)
	      currentToken.unicodeAware = false;
	  }
1321 1322 1323 1324

	// NAMED PROPERTY
	// \p{prop}, \P{prop}

1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
	else
	  if ((unit.bk && (unit.ch == 'p')
	       && syntax.get (RESyntax.RE_NAMED_PROPERTY)) || (unit.bk
							       && (unit.ch ==
								   'P')
							       && syntax.
							       get (RESyntax.
								    RE_NAMED_PROPERTY)))
	  {
	    NamedProperty np = getNamedProperty (pattern, index - 2, pLength);
	    if (np == null)
	      throw new REException ("invalid escape sequence",
				     REException.REG_ESCAPE, index);
	    index = index - 2 + np.len;
	    addToken (currentToken);
	    currentToken =
	      getRETokenNamedProperty (subIndex, np, insens, index);
	    if (insensUSASCII)
	      currentToken.unicodeAware = false;
	  }
1345 1346

	// END OF PREVIOUS MATCH
1347
	//  \G
1348 1349

	else if (unit.bk && (unit.ch == 'G') &&
1350 1351 1352 1353 1354
		 syntax.get (RESyntax.RE_STRING_ANCHORS))
	  {
	    addToken (currentToken);
	    currentToken = new RETokenEndOfPreviousMatch (subIndex);
	  }
1355

Tom Tromey committed
1356
	// NON-SPECIAL CHARACTER (or escape to make literal)
1357
	//  c | \* for example
Tom Tromey committed
1358

1359 1360 1361 1362 1363 1364 1365 1366
	else
	  {			// not a special character
	    addToken (currentToken);
	    currentToken = new RETokenChar (subIndex, unit.ch, insens);
	    if (insensUSASCII)
	      currentToken.unicodeAware = false;
	  }
      }				// end while
Tom Tromey committed
1367 1368

    // Add final buffered token and an EndSub marker
1369 1370 1371 1372 1373 1374 1375 1376 1377
    addToken (currentToken);

    if (branches != null)
      {
	branches.
	  add (new
	       RE (firstToken, lastToken, numSubs, subIndex, minimumLength,
		   maximumLength));
	branches.trimToSize ();	// compact the Vector
Tom Tromey committed
1378
	minimumLength = 0;
1379
	maximumLength = 0;
Tom Tromey committed
1380
	firstToken = lastToken = null;
1381 1382 1383 1384
	addToken (new RETokenOneOf (subIndex, branches, false));
      }
    else
      addToken (new RETokenEndSub (subIndex));
Tom Tromey committed
1385 1386 1387

  }

1388 1389 1390 1391 1392
  private static class ParseCharClassResult
  {
    RETokenOneOf token;
    int index;
    boolean returnAtAndOperator = false;
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
  }

  /**
   * Parse [...] or [^...] and make an RETokenOneOf instance.
   * @param subIndex subIndex to be given to the created RETokenOneOf instance.
   * @param pattern Input array of characters to be parsed.
   * @param index Index pointing to the character next to the beginning '['.
   * @param pLength Limit of the input array.
   * @param cflags Compilation flags used to parse the pattern.
   * @param pflags Flags that affect the behavior of this method.
   * @param syntax Syntax used to parse the pattern.
   */
1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
  private static ParseCharClassResult parseCharClass (int subIndex,
						      char[]pattern,
						      int index, int pLength,
						      int cflags,
						      RESyntax syntax,
						      int pflags) throws
    REException
  {

    boolean insens = ((cflags & REG_ICASE) > 0);
    boolean insensUSASCII = ((cflags & REG_ICASE_USASCII) > 0);
    final ArrayList < REToken > options = new ArrayList < REToken > ();
      ArrayList < Object > addition = new ArrayList < Object > ();
    boolean additionAndAppeared = false;
    final int RETURN_AT_AND = 0x01;
    boolean returnAtAndOperator = ((pflags & RETURN_AT_AND) != 0);
    boolean negative = false;
    char ch;

    char lastChar = 0;
    boolean lastCharIsSet = false;
    if (index == pLength)
      throw new REException (getLocalizedMessage ("unmatched.bracket"),
			     REException.REG_EBRACK, index);

    // Check for initial caret, negation
    if ((ch = pattern[index]) == '^')
      {
	negative = true;
	if (++index == pLength)
	  throw new REException (getLocalizedMessage ("class.no.end"),
				 REException.REG_EBRACK, index);
1437
	  ch = pattern[index];
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
      }

    // Check for leading right bracket literal
    if (ch == ']')
      {
	lastChar = ch;
	lastCharIsSet = true;
	if (++index == pLength)
	  throw new REException (getLocalizedMessage ("class.no.end"),
				 REException.REG_EBRACK, index);
      }

    while ((ch = pattern[index++]) != ']')
      {
	if ((ch == '-') && (lastCharIsSet))
	  {
	    if (index == pLength)
	      throw new REException (getLocalizedMessage ("class.no.end"),
				     REException.REG_EBRACK, index);
	    if ((ch = pattern[index]) == ']')
	      {
		RETokenChar t = new RETokenChar (subIndex, lastChar, insens);
		if (insensUSASCII)
		  t.unicodeAware = false;
		options.add (t);
		lastChar = '-';
1464
	      }
1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493
	    else
	      {
		if ((ch == '\\')
		    && syntax.get (RESyntax.RE_BACKSLASH_ESCAPE_IN_LISTS))
		  {
		    CharExpression ce =
		      getCharExpression (pattern, index, pLength, syntax);
		    if (ce == null)
		      throw new REException ("invalid escape sequence",
					     REException.REG_ESCAPE, index);
		    ch = ce.ch;
		    index = index + ce.len - 1;
		  }
		RETokenRange t =
		  new RETokenRange (subIndex, lastChar, ch, insens);
		if (insensUSASCII)
		  t.unicodeAware = false;
		options.add (t);
		lastChar = 0;
		lastCharIsSet = false;
		index++;
	      }
	  }
	else if ((ch == '\\')
		 && syntax.get (RESyntax.RE_BACKSLASH_ESCAPE_IN_LISTS))
	  {
	    if (index == pLength)
	      throw new REException (getLocalizedMessage ("class.no.end"),
				     REException.REG_EBRACK, index);
1494 1495
	    int posixID = -1;
	    boolean negate = false;
1496
	    char asciiEsc = 0;
1497 1498
	    boolean asciiEscIsSet = false;
	    NamedProperty np = null;
1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573
	    if (("dswDSW".indexOf (pattern[index]) != -1)
		&& syntax.get (RESyntax.RE_CHAR_CLASS_ESC_IN_LISTS))
	      {
		switch (pattern[index])
		  {
		  case 'D':
		    negate = true;
		  case 'd':
		    posixID = RETokenPOSIX.DIGIT;
		    break;
		  case 'S':
		    negate = true;
		  case 's':
		    posixID = RETokenPOSIX.SPACE;
		    break;
		  case 'W':
		    negate = true;
		  case 'w':
		    posixID = RETokenPOSIX.ALNUM;
		    break;
		  }
	      }
	    if (("pP".indexOf (pattern[index]) != -1)
		&& syntax.get (RESyntax.RE_NAMED_PROPERTY))
	      {
		np = getNamedProperty (pattern, index - 1, pLength);
		if (np == null)
		  throw new REException ("invalid escape sequence",
					 REException.REG_ESCAPE, index);
		index = index - 1 + np.len - 1;
	      }
	    else
	      {
		CharExpression ce =
		  getCharExpression (pattern, index - 1, pLength, syntax);
		if (ce == null)
		  throw new REException ("invalid escape sequence",
					 REException.REG_ESCAPE, index);
		asciiEsc = ce.ch;
		asciiEscIsSet = true;
		index = index - 1 + ce.len - 1;
	      }
	    if (lastCharIsSet)
	      {
		RETokenChar t = new RETokenChar (subIndex, lastChar, insens);
		if (insensUSASCII)
		  t.unicodeAware = false;
		options.add (t);
	      }

	    if (posixID != -1)
	      {
		RETokenPOSIX t =
		  new RETokenPOSIX (subIndex, posixID, insens, negate);
		if (insensUSASCII)
		  t.unicodeAware = false;
		options.add (t);
	      }
	    else if (np != null)
	      {
		RETokenNamedProperty t =
		  getRETokenNamedProperty (subIndex, np, insens, index);
		if (insensUSASCII)
		  t.unicodeAware = false;
		options.add (t);
	      }
	    else if (asciiEscIsSet)
	      {
		lastChar = asciiEsc;
		lastCharIsSet = true;
	      }
	    else
	      {
		lastChar = pattern[index];
		lastCharIsSet = true;
1574 1575 1576
	      }
	    ++index;
	  }
1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689
	else if ((ch == '[') && (syntax.get (RESyntax.RE_CHAR_CLASSES))
		 && (index < pLength) && (pattern[index] == ':'))
	  {
	    CPStringBuilder posixSet = new CPStringBuilder ();
	    index = getPosixSet (pattern, index + 1, posixSet);
	    int posixId = RETokenPOSIX.intValue (posixSet.toString ());
	    if (posixId != -1)
	      {
		RETokenPOSIX t =
		  new RETokenPOSIX (subIndex, posixId, insens, false);
		if (insensUSASCII)
		  t.unicodeAware = false;
		options.add (t);
	      }
	  }
	else if ((ch == '[') && (syntax.get (RESyntax.RE_NESTED_CHARCLASS)))
	  {
	    ParseCharClassResult result =
	      parseCharClass (subIndex, pattern, index, pLength, cflags,
			      syntax, 0);
	    addition.add (result.token);
	    addition.add ("|");
	    index = result.index;
	  }
	else if ((ch == '&') &&
		 (syntax.get (RESyntax.RE_NESTED_CHARCLASS)) &&
		 (index < pLength) && (pattern[index] == '&'))
	  {
	    if (returnAtAndOperator)
	      {
		ParseCharClassResult result = new ParseCharClassResult ();
		options.trimToSize ();
		if (additionAndAppeared)
		  addition.add ("&");
		if (addition.size () == 0)
		  addition = null;
		result.token = new RETokenOneOf (subIndex,
						 options, addition, negative);
		result.index = index - 1;
		result.returnAtAndOperator = true;
		return result;
	      }
	    // The precedence of the operator "&&" is the lowest.
	    // So we postpone adding "&" until other elements
	    // are added. And we insert Boolean.FALSE at the
	    // beginning of the list of tokens following "&&".
	    // So, "&&[a-b][k-m]" will be stored in the Vecter
	    // addition in this order:
	    //     Boolean.FALSE, [a-b], "|", [k-m], "|", "&"
	    if (additionAndAppeared)
	      addition.add ("&");
	    addition.add (Boolean.FALSE);
	    additionAndAppeared = true;

	    // The part on which "&&" operates may be either
	    //   (1) explicitly enclosed by []
	    //   or
	    //   (2) not enclosed by [] and terminated by the
	    //       next "&&" or the end of the character list.
	    //  Let the preceding else if block do the case (1).
	    //  We must do something in case of (2).
	    if ((index + 1 < pLength) && (pattern[index + 1] != '['))
	      {
		ParseCharClassResult result =
		  parseCharClass (subIndex, pattern, index + 1, pLength,
				  cflags, syntax,
				  RETURN_AT_AND);
		addition.add (result.token);
		addition.add ("|");
		// If the method returned at the next "&&", it is OK.
		// Otherwise we have eaten the mark of the end of this
		// character list "]".  In this case we must give back
		// the end mark.
		index = (result.returnAtAndOperator ?
			 result.index : result.index - 1);
	      }
	  }
	else
	  {
	    if (lastCharIsSet)
	      {
		RETokenChar t = new RETokenChar (subIndex, lastChar, insens);
		if (insensUSASCII)
		  t.unicodeAware = false;
		options.add (t);
	      }
	    lastChar = ch;
	    lastCharIsSet = true;
	  }
	if (index == pLength)
	  throw new REException (getLocalizedMessage ("class.no.end"),
				 REException.REG_EBRACK, index);
      }				// while in list
    // Out of list, index is one past ']'

    if (lastCharIsSet)
      {
	RETokenChar t = new RETokenChar (subIndex, lastChar, insens);
	if (insensUSASCII)
	  t.unicodeAware = false;
	options.add (t);
      }

    ParseCharClassResult result = new ParseCharClassResult ();
    // Create a new RETokenOneOf
    options.trimToSize ();
    if (additionAndAppeared)
      addition.add ("&");
    if (addition.size () == 0)
      addition = null;
    result.token = new RETokenOneOf (subIndex, options, addition, negative);
    result.index = index;
    return result;
1690 1691
  }

1692 1693 1694
  private static int getCharUnit (char[]input, int index, CharUnit unit,
				  boolean quot) throws REException
  {
Tom Tromey committed
1695 1696 1697 1698 1699 1700
    unit.ch = input[index++];
    unit.bk = (unit.ch == '\\'
	       && (!quot || index >= input.length || input[index] == 'E'));
    if (unit.bk)
      if (index < input.length)
	unit.ch = input[index++];
1701 1702 1703
      else
	throw new REException (getLocalizedMessage ("ends.with.backslash"),
			       REException.REG_ESCAPE, index);
Tom Tromey committed
1704 1705 1706
    return index;
  }

1707 1708
  private static int parseInt (char[]input, int pos, int len, int radix)
  {
1709
    int ret = 0;
1710 1711 1712 1713
    for (int i = pos; i < pos + len; i++)
      {
	ret = ret * radix + Character.digit (input[i], radix);
      }
1714 1715 1716 1717 1718 1719 1720 1721 1722 1723
    return ret;
  }

  /**
   * This class represents various expressions for a character.
   * "a"      : 'a' itself.
   * "\0123"  : Octal char 0123
   * "\x1b"   : Hex char 0x1b
   * "\u1234" : Unicode char \u1234
   */
1724 1725
  private static class CharExpression
  {
1726 1727 1728 1729 1730 1731
    /** character represented by this expression */
    char ch;
    /** String expression */
    String expr;
    /** length of this expression */
    int len;
1732 1733 1734 1735
    public String toString ()
    {
      return expr;
    }
1736 1737
  }

1738 1739 1740 1741
  private static CharExpression getCharExpression (char[]input, int pos,
						   int lim, RESyntax syntax)
  {
    CharExpression ce = new CharExpression ();
1742
    char c = input[pos];
1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819
    if (c == '\\')
      {
	if (pos + 1 >= lim)
	  return null;
	c = input[pos + 1];
	switch (c)
	  {
	  case 't':
	    ce.ch = '\t';
	    ce.len = 2;
	    break;
	  case 'n':
	    ce.ch = '\n';
	    ce.len = 2;
	    break;
	  case 'r':
	    ce.ch = '\r';
	    ce.len = 2;
	    break;
	  case 'x':
	  case 'u':
	    if ((c == 'x' && syntax.get (RESyntax.RE_HEX_CHAR)) ||
		(c == 'u' && syntax.get (RESyntax.RE_UNICODE_CHAR)))
	      {
		int l = 0;
		int expectedLength = (c == 'x' ? 2 : 4);
		for (int i = pos + 2; i < pos + 2 + expectedLength; i++)
		  {
		    if (i >= lim)
		      break;
		    if (!((input[i] >= '0' && input[i] <= '9') ||
			  (input[i] >= 'A' && input[i] <= 'F') ||
			  (input[i] >= 'a' && input[i] <= 'f')))
		      break;
		    l++;
		  }
		if (l != expectedLength)
		  return null;
		ce.ch = (char) (parseInt (input, pos + 2, l, 16));
		ce.len = l + 2;
	      }
	    else
	      {
		ce.ch = c;
		ce.len = 2;
	      }
	    break;
	  case '0':
	    if (syntax.get (RESyntax.RE_OCTAL_CHAR))
	      {
		int l = 0;
		for (int i = pos + 2; i < pos + 2 + 3; i++)
		  {
		    if (i >= lim)
		      break;
		    if (input[i] < '0' || input[i] > '7')
		      break;
		    l++;
		  }
		if (l == 3 && input[pos + 2] > '3')
		  l--;
		if (l <= 0)
		  return null;
		ce.ch = (char) (parseInt (input, pos + 2, l, 8));
		ce.len = l + 2;
	      }
	    else
	      {
		ce.ch = c;
		ce.len = 2;
	      }
	    break;
	  default:
	    ce.ch = c;
	    ce.len = 2;
	    break;
	  }
1820
      }
1821 1822 1823 1824 1825 1826
    else
      {
	ce.ch = input[pos];
	ce.len = 1;
      }
    ce.expr = new String (input, pos, ce.len);
1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837
    return ce;
  }

  /**
   * This class represents a substring in a pattern string expressing
   * a named property.
   * "\pA"      : Property named "A"
   * "\p{prop}" : Property named "prop"
   * "\PA"      : Property named "A" (Negated)
   * "\P{prop}" : Property named "prop" (Negated)
   */
1838 1839
  private static class NamedProperty
  {
1840 1841 1842 1843 1844 1845 1846 1847
    /** Property name */
    String name;
    /** Negated or not */
    boolean negate;
    /** length of this expression */
    int len;
  }

1848 1849 1850 1851
  private static NamedProperty getNamedProperty (char[]input, int pos,
						 int lim)
  {
    NamedProperty np = new NamedProperty ();
1852
    char c = input[pos];
1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879
    if (c == '\\')
      {
	if (++pos >= lim)
	  return null;
	c = input[pos++];
	switch (c)
	  {
	  case 'p':
	    np.negate = false;
	    break;
	  case 'P':
	    np.negate = true;
	    break;
	  default:
	    return null;
	  }
	c = input[pos++];
	if (c == '{')
	  {
	    int p = -1;
	    for (int i = pos; i < lim; i++)
	      {
		if (input[i] == '}')
		  {
		    p = i;
		    break;
		  }
1880
	      }
1881 1882 1883 1884 1885
	    if (p < 0)
	      return null;
	    int len = p - pos;
	    np.name = new String (input, pos, len);
	    np.len = len + 4;
1886
	  }
1887 1888 1889 1890 1891 1892
	else
	  {
	    np.name = new String (input, pos - 1, 1);
	    np.len = 3;
	  }
	return np;
1893
      }
1894 1895
    else
      return null;
1896 1897
  }

1898 1899 1900 1901 1902 1903 1904 1905 1906 1907
  private static RETokenNamedProperty getRETokenNamedProperty (int subIndex,
							       NamedProperty
							       np,
							       boolean insens,
							       int index)
    throws REException
  {
    try
    {
      return new RETokenNamedProperty (subIndex, np.name, insens, np.negate);
1908
    }
1909 1910 1911 1912 1913 1914
    catch (REException e)
    {
      REException ree;
      ree = new REException (e.getMessage (), REException.REG_ESCAPE, index);
      ree.initCause (e);
      throw ree;
1915 1916 1917
    }
  }

Tom Tromey committed
1918 1919 1920 1921 1922
  /**
   * Checks if the regular expression matches the input in its entirety.
   *
   * @param input The input text.
   */
1923 1924 1925
  public boolean isMatch (Object input)
  {
    return isMatch (input, 0, 0);
Tom Tromey committed
1926
  }
1927

Tom Tromey committed
1928 1929 1930 1931 1932 1933 1934
  /**
   * Checks if the input string, starting from index, is an exact match of
   * this regular expression.
   *
   * @param input The input text.
   * @param index The offset index at which the search should be begin.
   */
1935 1936 1937
  public boolean isMatch (Object input, int index)
  {
    return isMatch (input, index, 0);
Tom Tromey committed
1938
  }
1939

Tom Tromey committed
1940 1941 1942 1943 1944 1945 1946 1947 1948

  /**
   * Checks if the input, starting from index and using the specified
   * execution flags, is an exact match of this regular expression.
   *
   * @param input The input text.
   * @param index The offset index at which the search should be begin.
   * @param eflags The logical OR of any execution flags above.
   */
1949 1950 1951
  public boolean isMatch (Object input, int index, int eflags)
  {
    return isMatchImpl (makeCharIndexed (input, index), index, eflags);
Tom Tromey committed
1952 1953
  }

1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964
  private boolean isMatchImpl (CharIndexed input, int index, int eflags)
  {
    if (firstToken == null)	// Trivial case
      return (input.charAt (0) == CharIndexed.OUT_OF_BOUNDS);
    REMatch m = new REMatch (numSubs, index, eflags);
    if (firstToken.match (input, m))
      {
	if (m != null)
	  {
	    if (input.charAt (m.index) == CharIndexed.OUT_OF_BOUNDS)
	      {
Tom Tromey committed
1965
		return true;
1966 1967 1968
	      }
	  }
      }
Tom Tromey committed
1969 1970
    return false;
  }
1971

Tom Tromey committed
1972 1973 1974 1975 1976
  /**
   * Returns the maximum number of subexpressions in this regular expression.
   * If the expression contains branches, the value returned will be the
   * maximum subexpressions in any of the branches.
   */
1977 1978
  public int getNumSubs ()
  {
Tom Tromey committed
1979 1980 1981 1982
    return numSubs;
  }

  // Overrides REToken.setUncle
1983 1984 1985 1986 1987 1988 1989 1990
  void setUncle (REToken uncle)
  {
    if (lastToken != null)
      {
	lastToken.setUncle (uncle);
      }
    else
      super.setUncle (uncle);	// to deal with empty subexpressions
Tom Tromey committed
1991 1992 1993 1994
  }

  // Overrides REToken.chain

1995 1996 1997 1998
  boolean chain (REToken next)
  {
    super.chain (next);
    setUncle (next);
Tom Tromey committed
1999 2000 2001 2002 2003 2004 2005
    return true;
  }

  /**
   * Returns the minimum number of characters that could possibly
   * constitute a match of this regular expression.
   */
2006 2007 2008
  public int getMinimumLength ()
  {
    return minimumLength;
Tom Tromey committed
2009 2010
  }

2011 2012 2013
  public int getMaximumLength ()
  {
    return maximumLength;
2014 2015
  }

Tom Tromey committed
2016 2017 2018 2019 2020 2021 2022 2023 2024
  /**
   * Returns an array of all matches found in the input.
   *
   * If the regular expression allows the empty string to match, it will
   * substitute matches at all positions except the end of the input.
   *
   * @param input The input text.
   * @return a non-null (but possibly zero-length) array of matches
   */
2025 2026 2027
  public REMatch[] getAllMatches (Object input)
  {
    return getAllMatches (input, 0, 0);
Tom Tromey committed
2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040
  }

  /**
   * Returns an array of all matches found in the input,
   * beginning at the specified index position.
   *
   * If the regular expression allows the empty string to match, it will
   * substitute matches at all positions except the end of the input.
   *
   * @param input The input text.
   * @param index The offset index at which the search should be begin.
   * @return a non-null (but possibly zero-length) array of matches
   */
2041 2042 2043
  public REMatch[] getAllMatches (Object input, int index)
  {
    return getAllMatches (input, index, 0);
Tom Tromey committed
2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058
  }

  /**
   * Returns an array of all matches found in the input string,
   * beginning at the specified index position and using the specified
   * execution flags.
   *
   * If the regular expression allows the empty string to match, it will
   * substitute matches at all positions except the end of the input.
   *
   * @param input The input text.
   * @param index The offset index at which the search should be begin.
   * @param eflags The logical OR of any execution flags above.
   * @return a non-null (but possibly zero-length) array of matches
   */
2059 2060 2061
  public REMatch[] getAllMatches (Object input, int index, int eflags)
  {
    return getAllMatchesImpl (makeCharIndexed (input, index), index, eflags);
Tom Tromey committed
2062 2063 2064
  }

  // this has been changed since 1.03 to be non-overlapping matches
2065 2066 2067 2068
  private REMatch[] getAllMatchesImpl (CharIndexed input, int index,
				       int eflags)
  {
    List < REMatch > all = new ArrayList < REMatch > ();
Tom Tromey committed
2069
    REMatch m = null;
2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084
    while ((m = getMatchImpl (input, index, eflags, null)) != null)
      {
	all.add (m);
	index = m.getEndIndex ();
	if (m.end[0] == 0)
	  {			// handle pathological case of zero-length match
	    index++;
	    input.move (1);
	  }
	else
	  {
	    input.move (m.end[0]);
	  }
	if (!input.isValid ())
	  break;
Tom Tromey committed
2085
      }
2086
    return all.toArray (new REMatch[all.size ()]);
Tom Tromey committed
2087
  }
2088

2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114
  /* Implements abstract method REToken.match() */
  boolean match (CharIndexed input, REMatch mymatch)
  {
    input.setHitEnd (mymatch);
    if (firstToken == null)
      {
	return next (input, mymatch);
      }

    // Note the start of this subexpression
    mymatch.start1[subIndex] = mymatch.index;

    return firstToken.match (input, mymatch);
  }

  REMatch findMatch (CharIndexed input, REMatch mymatch)
  {
    if (mymatch.backtrackStack == null)
      mymatch.backtrackStack = new BacktrackStack ();
    boolean b = match (input, mymatch);
    if (b)
      {
	return mymatch;
      }
    return null;
  }
2115

Tom Tromey committed
2116 2117 2118 2119 2120 2121 2122
  /**
   * Returns the first match found in the input.  If no match is found,
   * null is returned.
   *
   * @param input The input text.
   * @return An REMatch instance referencing the match, or null if none.
   */
2123 2124 2125
  public REMatch getMatch (Object input)
  {
    return getMatch (input, 0, 0);
Tom Tromey committed
2126
  }
2127

Tom Tromey committed
2128 2129 2130 2131 2132 2133 2134 2135 2136
  /**
   * Returns the first match found in the input, beginning
   * the search at the specified index.  If no match is found,
   * returns null.
   *
   * @param input The input text.
   * @param index The offset within the text to begin looking for a match.
   * @return An REMatch instance referencing the match, or null if none.
   */
2137 2138 2139
  public REMatch getMatch (Object input, int index)
  {
    return getMatch (input, index, 0);
Tom Tromey committed
2140
  }
2141

Tom Tromey committed
2142 2143 2144 2145 2146 2147 2148 2149 2150 2151
  /**
   * Returns the first match found in the input, beginning
   * the search at the specified index, and using the specified
   * execution flags.  If no match is found, returns null.
   *
   * @param input The input text.
   * @param index The offset index at which the search should be begin.
   * @param eflags The logical OR of any execution flags above.
   * @return An REMatch instance referencing the match, or null if none.
   */
2152 2153 2154
  public REMatch getMatch (Object input, int index, int eflags)
  {
    return getMatch (input, index, eflags, null);
Tom Tromey committed
2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169
  }

  /**
   * Returns the first match found in the input, beginning the search
   * at the specified index, and using the specified execution flags.
   * If no match is found, returns null.  If a StringBuffer is
   * provided and is non-null, the contents of the input text from the
   * index to the beginning of the match (or to the end of the input,
   * if there is no match) are appended to the StringBuffer.
   *
   * @param input The input text.
   * @param index The offset index at which the search should be begin.
   * @param eflags The logical OR of any execution flags above.
   * @param buffer The StringBuffer to save pre-match text in.
   * @return An REMatch instance referencing the match, or null if none.  */
2170 2171 2172 2173 2174
  public REMatch getMatch (Object input, int index, int eflags,
			   CPStringBuilder buffer)
  {
    return getMatchImpl (makeCharIndexed (input, index), index, eflags,
			 buffer);
Tom Tromey committed
2175 2176
  }

2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187
  REMatch getMatchImpl (CharIndexed input, int anchor, int eflags,
			CPStringBuilder buffer)
  {
    boolean tryEntireMatch = ((eflags & REG_TRY_ENTIRE_MATCH) != 0);
    boolean doMove = ((eflags & REG_FIX_STARTING_POSITION) == 0);
    RE re = (tryEntireMatch ? (RE) this.clone () : this);
    if (tryEntireMatch)
      {
	RETokenEnd reEnd = new RETokenEnd (0, null);
	reEnd.setFake (true);
	re.chain (reEnd);
2188
      }
2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219
    // Create a new REMatch to hold results
    REMatch mymatch = new REMatch (numSubs, anchor, eflags);
    do
      {
	/* The following potimization is commented out because
	   the matching should be tried even if the length of
	   input is obviously too short in order that
	   java.util.regex.Matcher#hitEnd() may work correctly.
	   // Optimization: check if anchor + minimumLength > length
	   if (minimumLength == 0 || input.charAt(minimumLength-1) != CharIndexed.OUT_OF_BOUNDS) {
	 */
	if (re.match (input, mymatch))
	  {
	    REMatch best = mymatch;
	    // We assume that the match that coms first is the best.
	    // And the following "The longer, the better" rule has
	    // been commented out. The longest is not neccesarily
	    // the best. For example, "a" out of "aaa" is the best
	    // match for /a+?/.
	    /*
	       // Find best match of them all to observe leftmost longest
	       while ((mymatch = mymatch.next) != null) {
	       if (mymatch.index > best.index) {
	       best = mymatch;
	       }
	       }
	     */
	    best.end[0] = best.index;
	    best.finish (input);
	    input.setLastMatch (best);
	    return best;
Tom Tromey committed
2220
	  }
2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241
	/* End of the optimization commented out
	   }
	 */
	mymatch.clear (++anchor);
	// Append character to buffer if needed
	if (buffer != null && input.charAt (0) != CharIndexed.OUT_OF_BOUNDS)
	  {
	    buffer.append (input.charAt (0));
	  }
	// java.util.regex.Matcher#hitEnd() requires that the search should
	// be tried at the end of input, so we use move1(1) instead of move(1) 
      }
    while (doMove && input.move1 (1));

    // Special handling at end of input for e.g. "$"
    if (minimumLength == 0)
      {
	if (match (input, mymatch))
	  {
	    mymatch.finish (input);
	    return mymatch;
Tom Tromey committed
2242 2243 2244
	  }
      }

2245
    return null;
Tom Tromey committed
2246 2247 2248 2249 2250 2251 2252 2253 2254
  }

  /**
   * Returns an REMatchEnumeration that can be used to iterate over the
   * matches found in the input text.
   *
   * @param input The input text.
   * @return A non-null REMatchEnumeration instance.
   */
2255 2256 2257
  public REMatchEnumeration getMatchEnumeration (Object input)
  {
    return getMatchEnumeration (input, 0, 0);
Tom Tromey committed
2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269
  }


  /**
   * Returns an REMatchEnumeration that can be used to iterate over the
   * matches found in the input text.
   *
   * @param input The input text.
   * @param index The offset index at which the search should be begin.
   * @return A non-null REMatchEnumeration instance, with its input cursor
   *  set to the index position specified.
   */
2270 2271 2272
  public REMatchEnumeration getMatchEnumeration (Object input, int index)
  {
    return getMatchEnumeration (input, index, 0);
Tom Tromey committed
2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284
  }

  /**
   * Returns an REMatchEnumeration that can be used to iterate over the
   * matches found in the input text.
   *
   * @param input The input text.
   * @param index The offset index at which the search should be begin.
   * @param eflags The logical OR of any execution flags above.
   * @return A non-null REMatchEnumeration instance, with its input cursor
   *  set to the index position specified.
   */
2285 2286 2287 2288 2289
  public REMatchEnumeration getMatchEnumeration (Object input, int index,
						 int eflags)
  {
    return new REMatchEnumeration (this, makeCharIndexed (input, index),
				   index, eflags);
Tom Tromey committed
2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300
  }


  /**
   * Substitutes the replacement text for the first match found in the input.
   *
   * @param input The input text.
   * @param replace The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).
   * @return A String interpolating the substituted text.
   * @see REMatch#substituteInto
   */
2301 2302 2303
  public String substitute (Object input, String replace)
  {
    return substitute (input, replace, 0, 0);
Tom Tromey committed
2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318
  }

  /**
   * Substitutes the replacement text for the first match found in the input
   * beginning at the specified index position.  Specifying an index
   * effectively causes the regular expression engine to throw away the
   * specified number of characters. 
   *
   * @param input The input text.
   * @param replace The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).
   * @param index The offset index at which the search should be begin.
   * @return A String containing the substring of the input, starting
   *   at the index position, and interpolating the substituted text.
   * @see REMatch#substituteInto
   */
2319 2320 2321
  public String substitute (Object input, String replace, int index)
  {
    return substitute (input, replace, index, 0);
Tom Tromey committed
2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336
  }

  /**
   * Substitutes the replacement text for the first match found in the input
   * string, beginning at the specified index position and using the
   * specified execution flags.
   *
   * @param input The input text.
   * @param replace The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).
   * @param index The offset index at which the search should be begin.
   * @param eflags The logical OR of any execution flags above.
   * @return A String containing the substring of the input, starting
   *   at the index position, and interpolating the substituted text.
   * @see REMatch#substituteInto
   */
2337 2338 2339 2340 2341
  public String substitute (Object input, String replace, int index,
			    int eflags)
  {
    return substituteImpl (makeCharIndexed (input, index), replace, index,
			   eflags);
Tom Tromey committed
2342 2343
  }

2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360
  private String substituteImpl (CharIndexed input, String replace, int index,
				 int eflags)
  {
    CPStringBuilder buffer = new CPStringBuilder ();
    REMatch m = getMatchImpl (input, index, eflags, buffer);
    if (m == null)
      return buffer.toString ();
    buffer.append (getReplacement (replace, m, eflags));
    if (input.move (m.end[0]))
      {
	do
	  {
	    buffer.append (input.charAt (0));
	  }
	while (input.move (1));
      }
    return buffer.toString ();
Tom Tromey committed
2361
  }
2362

Tom Tromey committed
2363 2364 2365 2366 2367 2368 2369 2370 2371
  /**
   * Substitutes the replacement text for each non-overlapping match found 
   * in the input text.
   *
   * @param input The input text.
   * @param replace The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).
   * @return A String interpolating the substituted text.
   * @see REMatch#substituteInto
   */
2372 2373 2374
  public String substituteAll (Object input, String replace)
  {
    return substituteAll (input, replace, 0, 0);
Tom Tromey committed
2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390
  }

  /**
   * Substitutes the replacement text for each non-overlapping match found 
   * in the input text, starting at the specified index.
   *
   * If the regular expression allows the empty string to match, it will
   * substitute matches at all positions except the end of the input.
   *
   * @param input The input text.
   * @param replace The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).
   * @param index The offset index at which the search should be begin.
   * @return A String containing the substring of the input, starting
   *   at the index position, and interpolating the substituted text.
   * @see REMatch#substituteInto
   */
2391 2392 2393
  public String substituteAll (Object input, String replace, int index)
  {
    return substituteAll (input, replace, index, 0);
Tom Tromey committed
2394
  }
2395

Tom Tromey committed
2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408
  /**
   * Substitutes the replacement text for each non-overlapping match found 
   * in the input text, starting at the specified index and using the
   * specified execution flags.
   *
   * @param input The input text.
   * @param replace The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).
   * @param index The offset index at which the search should be begin.
   * @param eflags The logical OR of any execution flags above.
   * @return A String containing the substring of the input, starting
   *   at the index position, and interpolating the substituted text.
   * @see REMatch#substituteInto
   */
2409 2410 2411 2412 2413
  public String substituteAll (Object input, String replace, int index,
			       int eflags)
  {
    return substituteAllImpl (makeCharIndexed (input, index), replace, index,
			      eflags);
Tom Tromey committed
2414 2415
  }

2416 2417 2418 2419
  private String substituteAllImpl (CharIndexed input, String replace,
				    int index, int eflags)
  {
    CPStringBuilder buffer = new CPStringBuilder ();
Tom Tromey committed
2420
    REMatch m;
2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435
    while ((m = getMatchImpl (input, index, eflags, buffer)) != null)
      {
	buffer.append (getReplacement (replace, m, eflags));
	index = m.getEndIndex ();
	if (m.end[0] == 0)
	  {
	    char ch = input.charAt (0);
	    if (ch != CharIndexed.OUT_OF_BOUNDS)
	      buffer.append (ch);
	    input.move (1);
	  }
	else
	  {
	    input.move (m.end[0]);
	  }
Tom Tromey committed
2436

2437 2438 2439 2440
	if (!input.isValid ())
	  break;
      }
    return buffer.toString ();
Tom Tromey committed
2441
  }
2442

2443 2444
  public static String getReplacement (String replace, REMatch m, int eflags)
  {
2445 2446
    if ((eflags & REG_NO_INTERPOLATE) > 0)
      return replace;
2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478
    else
      {
	if ((eflags & REG_REPLACE_USE_BACKSLASHESCAPE) > 0)
	  {
	    CPStringBuilder sb = new CPStringBuilder ();
	    int l = replace.length ();
	    for (int i = 0; i < l; i++)
	      {
		char c = replace.charAt (i);
		switch (c)
		  {
		  case '\\':
		    i++;
		    // Let StringIndexOutOfBoundsException be thrown.
		    sb.append (replace.charAt (i));
		    break;
		  case '$':
		    int i1 = i + 1;
		    while (i1 < replace.length () &&
			   Character.isDigit (replace.charAt (i1)))
		      i1++;
		    sb.append (m.substituteInto (replace.substring (i, i1)));
		    i = i1 - 1;
		    break;
		  default:
		    sb.append (c);
		  }
	      }
	    return sb.toString ();
	  }
	else
	  return m.substituteInto (replace);
2479
      }
2480 2481
  }

Tom Tromey committed
2482
  /* Helper function for constructor */
2483 2484 2485 2486 2487 2488
  private void addToken (REToken next)
  {
    if (next == null)
      return;
    minimumLength += next.getMinimumLength ();
    int nmax = next.getMaximumLength ();
2489
    if (nmax < Integer.MAX_VALUE && maximumLength < Integer.MAX_VALUE)
2490 2491 2492
      maximumLength += nmax;
    else
      maximumLength = Integer.MAX_VALUE;
2493

2494 2495
    if (firstToken == null)
      {
Tom Tromey committed
2496 2497
	lastToken = firstToken = next;
      }
2498 2499 2500 2501 2502 2503 2504 2505 2506
    else
      {
	// if chain returns false, it "rejected" the token due to
	// an optimization, and next was combined with lastToken
	if (lastToken.chain (next))
	  {
	    lastToken = next;
	  }
      }
Tom Tromey committed
2507 2508
  }

2509 2510 2511 2512 2513 2514 2515
  private static REToken setRepeated (REToken current, int min, int max,
				      int index) throws REException
  {
    if (current == null)
      throw new REException (getLocalizedMessage ("repeat.no.token"),
			     REException.REG_BADRPT, index);
      return new RETokenRepeated (current.subIndex, current, min, max);
Tom Tromey committed
2516 2517
  }

2518 2519 2520
  private static int getPosixSet (char[]pattern, int index,
				  CPStringBuilder buf)
  {
Tom Tromey committed
2521 2522 2523
    // Precondition: pattern[index-1] == ':'
    // we will return pos of closing ']'.
    int i;
2524 2525 2526 2527 2528 2529 2530
    for (i = index; i < (pattern.length - 1); i++)
      {
	if ((pattern[i] == ':') && (pattern[i + 1] == ']'))
	  return i + 2;
	buf.append (pattern[i]);
      }
    return index;		// didn't match up
Tom Tromey committed
2531 2532
  }

2533 2534 2535
  private int getMinMax (char[]input, int index, IntPair minMax,
			 RESyntax syntax) throws REException
  {
Tom Tromey committed
2536 2537
    // Precondition: input[index-1] == '{', minMax != null

2538
    boolean mustMatch = !syntax.get (RESyntax.RE_NO_BK_BRACES);
Tom Tromey committed
2539
    int startIndex = index;
2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552
    if (index == input.length)
      {
	if (mustMatch)
	  throw new REException (getLocalizedMessage ("unmatched.brace"),
				 REException.REG_EBRACE, index);
	else
	  return startIndex;
      }

    int min, max = 0;
    CharUnit unit = new CharUnit ();
    CPStringBuilder buf = new CPStringBuilder ();

Tom Tromey committed
2553
    // Read string of digits
2554 2555 2556 2557 2558 2559 2560
    do
      {
	index = getCharUnit (input, index, unit, false);
	if (Character.isDigit (unit.ch))
	  buf.append (unit.ch);
      }
    while ((index != input.length) && Character.isDigit (unit.ch));
Tom Tromey committed
2561 2562

    // Check for {} tomfoolery
2563 2564 2565 2566 2567 2568 2569 2570
    if (buf.length () == 0)
      {
	if (mustMatch)
	  throw new REException (getLocalizedMessage ("interval.error"),
				 REException.REG_EBRACE, index);
	else
	return startIndex;
      }
Tom Tromey committed
2571

2572 2573 2574
    min = Integer.parseInt (buf.toString ());

    if ((unit.ch == '}') && (syntax.get (RESyntax.RE_NO_BK_BRACES) ^ unit.bk))
Tom Tromey committed
2575 2576 2577
      max = min;
    else if (index == input.length)
      if (mustMatch)
2578 2579 2580 2581 2582 2583 2584 2585
	throw new REException (getLocalizedMessage ("interval.no.end"),
			       REException.REG_EBRACE, index);
    else
    return startIndex;
    else
  if ((unit.ch == ',') && !unit.bk)
    {
      buf = new CPStringBuilder ();
Tom Tromey committed
2586
      // Read string of digits
2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599
      while (((index =
	       getCharUnit (input, index, unit, false)) != input.length)
	     && Character.isDigit (unit.ch))
	buf.append (unit.ch);

      if (!
	  ((unit.ch == '}')
	   && (syntax.get (RESyntax.RE_NO_BK_BRACES) ^ unit.bk)))
	if (mustMatch)
	  throw new REException (getLocalizedMessage ("interval.error"),
				 REException.REG_EBRACE, index);
      else
      return startIndex;
Tom Tromey committed
2600 2601

      // This is the case of {x,}
2602 2603
      if (buf.length () == 0)
	max = Integer.MAX_VALUE;
Tom Tromey committed
2604
      else
2605 2606 2607 2608 2609 2610 2611
	max = Integer.parseInt (buf.toString ());
    }
  else if (mustMatch)
    throw new REException (getLocalizedMessage ("interval.error"),
			   REException.REG_EBRACE, index);
  else
  return startIndex;
Tom Tromey committed
2612

2613
  // We know min and max now, and they are valid.
Tom Tromey committed
2614

2615 2616
  minMax.first = min;
  minMax.second = max;
Tom Tromey committed
2617

2618 2619
  // return the index following the '}'
  return index;
Tom Tromey committed
2620 2621 2622 2623 2624 2625
  }

   /**
    * Return a human readable form of the compiled regular expression,
    * useful for debugging.
    */
2626 2627 2628 2629 2630 2631 2632 2633 2634 2635
  public String toString ()
  {
    CPStringBuilder sb = new CPStringBuilder ();
    dump (sb);
    return sb.toString ();
  }

  void dump (CPStringBuilder os)
  {
    os.append ("(?#startRE subIndex=" + subIndex + ")");
Tom Tromey committed
2636
    if (subIndex == 0)
2637
      os.append ("?:");
Tom Tromey committed
2638
    if (firstToken != null)
2639
      firstToken.dumpAll (os);
2640
    if (subIndex == 0)
2641 2642
      os.append (")");
    os.append ("(?#endRE subIndex=" + subIndex + ")");
Tom Tromey committed
2643 2644 2645
  }

  // Cast input appropriately or throw exception
2646 2647
  // This method was originally a private method, but has been made
  // public because java.util.regex.Matcher uses this.
2648 2649 2650 2651 2652 2653 2654 2655 2656 2657
  public static CharIndexed makeCharIndexed (Object input, int index)
  {
    // The case where input is already a CharIndexed is supposed
    // be the most likely because this is the case with
    // java.util.regex.Matcher.
    // We could let a String or a CharSequence fall through
    // to final input, but since it'a very likely input type, 
    // we check it first.
    if (input instanceof CharIndexed)
      {
2658
	CharIndexed ci = (CharIndexed) input;
2659
	ci.setAnchor (index);
2660
	return ci;
2661
      }
2662
    else if (input instanceof CharSequence)
2663
      return new CharIndexedCharSequence ((CharSequence) input, index);
2664
    else if (input instanceof String)
2665
      return new CharIndexedString ((String) input, index);
Tom Tromey committed
2666
    else if (input instanceof char[])
2667
      return new CharIndexedCharArray ((char[]) input, index);
Tom Tromey committed
2668
    else if (input instanceof StringBuffer)
2669
      return new CharIndexedStringBuffer ((StringBuffer) input, index);
Tom Tromey committed
2670
    else if (input instanceof InputStream)
2671 2672 2673
      return new CharIndexedInputStream ((InputStream) input, index);
    else
      return new CharIndexedString (input.toString (), index);
Tom Tromey committed
2674 2675
  }
}