SimpleDateFormat.java 24.8 KB
Newer Older
1 2
/* SimpleDateFormat.java -- A class for parsing/formating simple 
   date constructs
3
   Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
Tom Tromey committed
4

5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
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., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA.

22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
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. */
Tom Tromey committed
38 39 40 41


package java.text;

42 43 44 45 46 47 48
import gnu.java.text.AttributedFormatBuffer;
import gnu.java.text.FormatBuffer;
import gnu.java.text.FormatCharacterIterator;
import gnu.java.text.StringFormatBuffer;

import java.io.IOException;
import java.io.ObjectInputStream;
49
import java.util.ArrayList;
50 51 52
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
53
import java.util.Iterator;
54 55
import java.util.Locale;
import java.util.SimpleTimeZone;
56
import java.util.TimeZone;
Tom Tromey committed
57 58

/**
59 60
 * SimpleDateFormat provides convenient methods for parsing and formatting
 * dates using Gregorian calendars (see java.util.GregorianCalendar). 
Tom Tromey committed
61
 */
62
public class SimpleDateFormat extends DateFormat 
Tom Tromey committed
63
{
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
  /** A pair class used by SimpleDateFormat as a compiled representation
   *  of a format string.
   */
  private class FieldSizePair 
  {
    public int field;
    public int size;

    /** Constructs a pair with the given field and size values */
    public FieldSizePair(int f, int s) {
      field = f;
      size = s;
    }
  }

79
  private transient ArrayList tokens;
80
  private DateFormatSymbols formatData;  // formatData
81 82
  private Date defaultCenturyStart;
  private transient int defaultCentury;
Tom Tromey committed
83
  private String pattern;
84
  private int serialVersionOnStream = 1; // 0 indicates JDK1.1.3 or earlier
85 86
  private static final long serialVersionUID = 4774881970558875024L;

87 88 89
  // This string is specified in the JCL.  We set it here rather than
  // do a DateFormatSymbols(Locale.US).getLocalPatternChars() since
  // someone could theoretically change those values (though unlikely).
90
  private static final String standardChars = "GyMdkHmsSEDFwWahKzZ";
91

92 93 94 95 96 97
  private void readObject(ObjectInputStream stream)
    throws IOException, ClassNotFoundException
  {
    stream.defaultReadObject();
    if (serialVersionOnStream < 1)
      {
98
        computeCenturyStart ();
99 100
	serialVersionOnStream = 1;
      }
101 102 103
    else
      // Ensure that defaultCentury gets set.
      set2DigitYearStart(defaultCenturyStart);
104 105

    // Set up items normally taken care of by the constructor.
106
    tokens = new ArrayList();
107
    compileFormat(pattern);
108
  }
Tom Tromey committed
109

110
  private void compileFormat(String pattern) 
Tom Tromey committed
111
  {
112 113
    // Any alphabetical characters are treated as pattern characters
    // unless enclosed in single quotes.
Tom Tromey committed
114

115 116 117 118 119 120 121 122 123 124
    char thisChar;
    int pos;
    int field;
    FieldSizePair current = null;

    for (int i=0; i<pattern.length(); i++) {
      thisChar = pattern.charAt(i);
      field = formatData.getLocalPatternChars().indexOf(thisChar);
      if (field == -1) {
	current = null;
125 126
	if ((thisChar >= 'A' && thisChar <= 'Z')
	    || (thisChar >= 'a' && thisChar <= 'z')) {
127
	  // Not a valid letter
128
	  tokens.add(new FieldSizePair(-1,0));
129 130 131 132 133 134
	} else if (thisChar == '\'') {
	  // Quoted text section; skip to next single quote
	  pos = pattern.indexOf('\'',i+1);
	  if (pos == -1) {
	    // This ought to be an exception, but spec does not
	    // let us throw one.
135
	    tokens.add(new FieldSizePair(-1,0));
136 137
	  }
	  if ((pos+1 < pattern.length()) && (pattern.charAt(pos+1) == '\'')) {
138
	    tokens.add(pattern.substring(i+1,pos+1));
139
	  } else {
140
	    tokens.add(pattern.substring(i+1,pos));
141 142 143 144
	  }
	  i = pos;
	} else {
	  // A special character
145
	  tokens.add(new Character(thisChar));
146 147 148 149 150 151 152
	}
      } else {
	// A valid field
	if ((current != null) && (field == current.field)) {
	  current.size++;
	} else {
	  current = new FieldSizePair(field,1);
153
	  tokens.add(current);
154 155 156 157
	}
      }
    }
  }
158

159
  public String toString() 
Tom Tromey committed
160
  {
161
    StringBuffer output = new StringBuffer();
162 163 164
    Iterator i = tokens.iterator();
    while (i.hasNext()) {
      output.append(i.next().toString());
165 166
    }
    return output.toString();
Tom Tromey committed
167
  }
168

169 170 171 172 173
  /**
   * Constructs a SimpleDateFormat using the default pattern for
   * the default locale.
   */
  public SimpleDateFormat() 
Tom Tromey committed
174
  {
175 176 177 178 179 180 181 182
    /*
     * There does not appear to be a standard API for determining 
     * what the default pattern for a locale is, so use package-scope
     * variables in DateFormatSymbols to encapsulate this.
     */
    super();
    Locale locale = Locale.getDefault();
    calendar = new GregorianCalendar(locale);
183
    computeCenturyStart();
184
    tokens = new ArrayList();
185
    formatData = new DateFormatSymbols(locale);
Tom Tromey committed
186 187
    pattern = (formatData.dateFormats[DEFAULT] + ' '
	       + formatData.timeFormats[DEFAULT]);
188 189
    compileFormat(pattern);
    numberFormat = NumberFormat.getInstance(locale);
Tom Tromey committed
190
    numberFormat.setGroupingUsed (false);
191
    numberFormat.setParseIntegerOnly (true);
192
    numberFormat.setMaximumFractionDigits (0);
Tom Tromey committed
193
  }
194 195 196 197 198 199
  
  /**
   * Creates a date formatter using the specified pattern, with the default
   * DateFormatSymbols for the default locale.
   */
  public SimpleDateFormat(String pattern) 
Tom Tromey committed
200
  {
201
    this(pattern, Locale.getDefault());
Tom Tromey committed
202 203
  }

204 205 206 207 208
  /**
   * Creates a date formatter using the specified pattern, with the default
   * DateFormatSymbols for the given locale.
   */
  public SimpleDateFormat(String pattern, Locale locale) 
Tom Tromey committed
209
  {
210 211
    super();
    calendar = new GregorianCalendar(locale);
212
    computeCenturyStart();
213
    tokens = new ArrayList();
214 215 216 217
    formatData = new DateFormatSymbols(locale);
    compileFormat(pattern);
    this.pattern = pattern;
    numberFormat = NumberFormat.getInstance(locale);
Tom Tromey committed
218
    numberFormat.setGroupingUsed (false);
219
    numberFormat.setParseIntegerOnly (true);
220
    numberFormat.setMaximumFractionDigits (0);
Tom Tromey committed
221 222
  }

223 224 225 226
  /**
   * Creates a date formatter using the specified pattern. The
   * specified DateFormatSymbols will be used when formatting.
   */
Tom Tromey committed
227 228
  public SimpleDateFormat(String pattern, DateFormatSymbols formatData)
  {
229 230
    super();
    calendar = new GregorianCalendar();
231
    computeCenturyStart ();
232
    tokens = new ArrayList();
233 234 235 236
    this.formatData = formatData;
    compileFormat(pattern);
    this.pattern = pattern;
    numberFormat = NumberFormat.getInstance();
Tom Tromey committed
237
    numberFormat.setGroupingUsed (false);
238
    numberFormat.setParseIntegerOnly (true);
239
    numberFormat.setMaximumFractionDigits (0);
Tom Tromey committed
240 241
  }

242 243 244 245 246 247 248 249 250 251
  // What is the difference between localized and unlocalized?  The
  // docs don't say.

  /**
   * This method returns a string with the formatting pattern being used
   * by this object.  This string is unlocalized.
   *
   * @return The format string.
   */
  public String toPattern()
Tom Tromey committed
252
  {
253
    return pattern;
Tom Tromey committed
254 255
  }

256 257 258 259 260 261 262
  /**
   * This method returns a string with the formatting pattern being used
   * by this object.  This string is localized.
   *
   * @return The format string.
   */
  public String toLocalizedPattern()
Tom Tromey committed
263
  {
264 265
    String localChars = formatData.getLocalPatternChars();
    return applyLocalizedPattern (pattern, standardChars, localChars);
Tom Tromey committed
266 267
  }

268 269 270 271 272 273 274
  /**
   * This method sets the formatting pattern that should be used by this
   * object.  This string is not localized.
   *
   * @param pattern The new format pattern.
   */
  public void applyPattern(String pattern)
Tom Tromey committed
275
  {
276
    tokens = new ArrayList();
277 278
    compileFormat(pattern);
    this.pattern = pattern;
Tom Tromey committed
279 280
  }

281 282 283 284 285 286 287
  /**
   * This method sets the formatting pattern that should be used by this
   * object.  This string is localized.
   *
   * @param pattern The new format pattern.
   */
  public void applyLocalizedPattern(String pattern)
Tom Tromey committed
288
  {
289 290 291
    String localChars = formatData.getLocalPatternChars();
    pattern = applyLocalizedPattern (pattern, localChars, standardChars);
    applyPattern(pattern);
Tom Tromey committed
292 293
  }

294 295
  private String applyLocalizedPattern(String pattern,
				       String oldChars, String newChars)
Tom Tromey committed
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
  {
    int len = pattern.length();
    StringBuffer buf = new StringBuffer(len);
    boolean quoted = false;
    for (int i = 0;  i < len;  i++)
      {
	char ch = pattern.charAt(i);
	if (ch == '\'')
	  quoted = ! quoted;
	if (! quoted)
	  {
	    int j = oldChars.indexOf(ch);
	    if (j >= 0)
	      ch = newChars.charAt(j);
	  }
	buf.append(ch);
      }
    return buf.toString();
  }

316 317 318 319 320 321 322
  /** 
   * Returns the start of the century used for two digit years.
   *
   * @return A <code>Date</code> representing the start of the century
   * for two digit years.
   */
  public Date get2DigitYearStart()
Tom Tromey committed
323
  {
324
    return defaultCenturyStart;
Tom Tromey committed
325 326
  }

327 328 329 330 331 332 333
  /**
   * Sets the start of the century used for two digit years.
   *
   * @param date A <code>Date</code> representing the start of the century for
   * two digit years.
   */
  public void set2DigitYearStart(Date date)
Tom Tromey committed
334
  {
335
    defaultCenturyStart = date;
336 337 338 339
    calendar.clear();
    calendar.setTime(date);
    int year = calendar.get(Calendar.YEAR);
    defaultCentury = year - (year % 100);
Tom Tromey committed
340 341
  }

342 343 344 345 346 347 348
  /**
   * This method returns the format symbol information used for parsing
   * and formatting dates.
   *
   * @return The date format symbols.
   */
  public DateFormatSymbols getDateFormatSymbols()
Tom Tromey committed
349
  {
350
    return formatData;
Tom Tromey committed
351 352
  }

353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
  /**
   * This method sets the format symbols information used for parsing
   * and formatting dates.
   *
   * @param formatData The date format symbols.
   */
   public void setDateFormatSymbols(DateFormatSymbols formatData)
   {
     this.formatData = formatData;
   }

  /**
   * This methods tests whether the specified object is equal to this
   * object.  This will be true if and only if the specified object:
   * <p>
   * <ul>
369 370
   * <li>Is not <code>null</code>.</li>
   * <li>Is an instance of <code>SimpleDateFormat</code>.</li>
371
   * <li>Is equal to this object at the superclass (i.e., <code>DateFormat</code>)
372 373 374 375
   *     level.</li>
   * <li>Has the same formatting pattern.</li>
   * <li>Is using the same formatting symbols.</li>
   * <li>Is using the same century for two digit years.</li>
376 377 378 379 380 381 382 383
   * </ul>
   *
   * @param obj The object to compare for equality against.
   *
   * @return <code>true</code> if the specified object is equal to this object,
   * <code>false</code> otherwise.
   */
  public boolean equals(Object o)
Tom Tromey committed
384
  {
385 386 387 388 389 390 391 392
    if (!super.equals(o))
      return false;

    if (!(o instanceof SimpleDateFormat))
      return false;

    SimpleDateFormat sdf = (SimpleDateFormat)o;

393
    if (defaultCentury != sdf.defaultCentury)
394 395
      return false;

396
    if (!toPattern().equals(sdf.toPattern()))
397 398 399 400 401 402 403 404
      return false;

    if (!getDateFormatSymbols().equals(sdf.getDateFormatSymbols()))
      return false;

    return true;
  }

405 406 407 408 409 410 411 412 413 414 415
  /**
   * This method returns a hash value for this object.
   *
   * @return A hash value for this object.
   */
  public int hashCode()
  {
    return super.hashCode() ^ toPattern().hashCode() ^ defaultCentury ^
      getDateFormatSymbols().hashCode();
  }

416 417 418 419 420 421

  /**
   * Formats the date input according to the format string in use,
   * appending to the specified StringBuffer.  The input StringBuffer
   * is returned as output for convenience.
   */
422
  final private void formatWithAttribute(Date date, FormatBuffer buffer, FieldPosition pos)
Tom Tromey committed
423
  {
424
    String temp;
425
    AttributedCharacterIterator.Attribute attribute;
426
    calendar.setTime(date);
427 428 429 430 431 432 433

    // go through vector, filling in fields where applicable, else toString
    Iterator iter = tokens.iterator();
    while (iter.hasNext())
      {
	Object o = iter.next();
	if (o instanceof FieldSizePair)
Tom Tromey committed
434
	  {
435 436 437 438 439 440 441 442 443 444 445 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 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 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
	    FieldSizePair p = (FieldSizePair) o;
	    int beginIndex = buffer.length();
	    
	    switch (p.field)
	      {
	      case ERA_FIELD:
		buffer.append (formatData.eras[calendar.get (Calendar.ERA)], DateFormat.Field.ERA);
		break;
	      case YEAR_FIELD:
		// If we have two digits, then we truncate.  Otherwise, we
		// use the size of the pattern, and zero pad.
		buffer.setDefaultAttribute (DateFormat.Field.YEAR);
		if (p.size == 2)
		  {
		    temp = String.valueOf (calendar.get (Calendar.YEAR));
		    buffer.append (temp.substring (temp.length() - 2));
		  }
		else
		  withLeadingZeros (calendar.get (Calendar.YEAR), p.size, buffer);
		break;
	      case MONTH_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.MONTH);
		if (p.size < 3)
		  withLeadingZeros (calendar.get (Calendar.MONTH) + 1, p.size, buffer);
		else if (p.size < 4)
		  buffer.append (formatData.shortMonths[calendar.get (Calendar.MONTH)]);
		else
		  buffer.append (formatData.months[calendar.get (Calendar.MONTH)]);
		break;
	      case DATE_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.DAY_OF_MONTH);
		withLeadingZeros (calendar.get (Calendar.DATE), p.size, buffer);
		break;
	      case HOUR_OF_DAY1_FIELD: // 1-24
		buffer.setDefaultAttribute(DateFormat.Field.HOUR_OF_DAY1);
		withLeadingZeros ( ((calendar.get (Calendar.HOUR_OF_DAY) + 23) % 24) + 1, 
				   p.size, buffer);
		break;
	      case HOUR_OF_DAY0_FIELD: // 0-23
		buffer.setDefaultAttribute (DateFormat.Field.HOUR_OF_DAY0);
		withLeadingZeros (calendar.get (Calendar.HOUR_OF_DAY), p.size, buffer);
		break;
	      case MINUTE_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.MINUTE);
		withLeadingZeros (calendar.get (Calendar.MINUTE),
				  p.size, buffer);
		break;
	      case SECOND_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.SECOND);
		withLeadingZeros(calendar.get (Calendar.SECOND), 
				 p.size, buffer);
		break;
	      case MILLISECOND_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.MILLISECOND);
		withLeadingZeros (calendar.get (Calendar.MILLISECOND), p.size, buffer);
		break;
	      case DAY_OF_WEEK_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.DAY_OF_WEEK);
		if (p.size < 4)
		  buffer.append (formatData.shortWeekdays[calendar.get (Calendar.DAY_OF_WEEK)]);
		else
		  buffer.append (formatData.weekdays[calendar.get (Calendar.DAY_OF_WEEK)]);
		break;
	      case DAY_OF_YEAR_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.DAY_OF_YEAR);
		withLeadingZeros (calendar.get (Calendar.DAY_OF_YEAR), p.size, buffer);
		break;
	      case DAY_OF_WEEK_IN_MONTH_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.DAY_OF_WEEK_IN_MONTH);
		withLeadingZeros (calendar.get (Calendar.DAY_OF_WEEK_IN_MONTH), 
				 p.size, buffer);
		break;
	      case WEEK_OF_YEAR_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.WEEK_OF_YEAR);
		withLeadingZeros (calendar.get (Calendar.WEEK_OF_YEAR),
				  p.size, buffer);
		break;
	      case WEEK_OF_MONTH_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.WEEK_OF_MONTH);
		withLeadingZeros (calendar.get (Calendar.WEEK_OF_MONTH),
				  p.size, buffer);
		break;
	      case AM_PM_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.AM_PM);
		buffer.append (formatData.ampms[calendar.get (Calendar.AM_PM)]);
		break;
	      case HOUR1_FIELD: // 1-12
		buffer.setDefaultAttribute (DateFormat.Field.HOUR1);
		withLeadingZeros (((calendar.get (Calendar.HOUR) + 11) % 12) + 1, p.size, buffer);
		break;
	      case HOUR0_FIELD: // 0-11
		buffer.setDefaultAttribute (DateFormat.Field.HOUR0);
		withLeadingZeros (calendar.get (Calendar.HOUR), p.size, buffer);
		break;
	      case TIMEZONE_FIELD:
		buffer.setDefaultAttribute (DateFormat.Field.TIME_ZONE);
		TimeZone zone = calendar.getTimeZone();
		boolean isDST = calendar.get (Calendar.DST_OFFSET) != 0;
		// FIXME: XXX: This should be a localized time zone.
		String zoneID = zone.getDisplayName (isDST, p.size > 3 ? TimeZone.LONG : TimeZone.SHORT);
		buffer.append (zoneID);
		break;
	      default:
		throw new IllegalArgumentException ("Illegal pattern character " + p.field);
	      }
	    if (pos != null && (buffer.getDefaultAttribute() == pos.getFieldAttribute()
				|| p.field == pos.getField()))
	      {
		pos.setBeginIndex(beginIndex);
		pos.setEndIndex(buffer.length());
	      }
	  } 
      else
	{  
	  buffer.append(o.toString(), null);
	}
Tom Tromey committed
551
      }
552 553 554 555 556 557
  }
  
  public StringBuffer format(Date date, StringBuffer buffer, FieldPosition pos)
  {
    formatWithAttribute(date, new StringFormatBuffer (buffer), pos);

558 559 560
    return buffer;
  }

561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
  public AttributedCharacterIterator formatToCharacterIterator(Object date)
    throws IllegalArgumentException
  {
    if (date == null)
      throw new NullPointerException("null argument");
    if (!(date instanceof Date))
      throw new IllegalArgumentException("argument should be an instance of java.util.Date");

    AttributedFormatBuffer buf = new AttributedFormatBuffer();
    formatWithAttribute((Date)date, buf,
			null);
    buf.sync();
        
    return new FormatCharacterIterator(buf.getBuffer().toString(),
				       buf.getRanges(),
				       buf.getAttributes());
  }

  private void withLeadingZeros(int value, int length, FormatBuffer buffer) 
580
  {
581 582 583 584 585 586
    String valStr = String.valueOf(value);
    for (length -= valStr.length(); length > 0; length--)
      buffer.append('0');
    buffer.append(valStr);
  }

587
  private final boolean expect (String source, ParsePosition pos, char ch)
Tom Tromey committed
588
  {
589 590 591 592
    int x = pos.getIndex();
    boolean r = x < source.length() && source.charAt(x) == ch;
    if (r)
      pos.setIndex(x + 1);
593
    else
594 595
      pos.setErrorIndex(x);
    return r;
596 597
  }

598 599 600 601 602 603 604 605
  /**
   * This method parses the specified string into a date.
   * 
   * @param dateStr The date string to parse.
   * @param pos The input and output parse position
   *
   * @return The parsed date, or <code>null</code> if the string cannot be
   * parsed.
606
   */
607
  public Date parse (String dateStr, ParsePosition pos)
608
  {
609 610
    int fmt_index = 0;
    int fmt_max = pattern.length();
611

612
    calendar.clear();
613
    boolean saw_timezone = false;
614
    int quote_start = -1;
615
    boolean is2DigitYear = false;
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
    for (; fmt_index < fmt_max; ++fmt_index)
      {
	char ch = pattern.charAt(fmt_index);
	if (ch == '\'')
	  {
	    int index = pos.getIndex();
	    if (fmt_index < fmt_max - 1
		&& pattern.charAt(fmt_index + 1) == '\'')
	      {
		if (! expect (dateStr, pos, ch))
		  return null;
		++fmt_index;
	      }
	    else
	      quote_start = quote_start < 0 ? fmt_index : -1;
	    continue;
Tom Tromey committed
632 633
	  }

634 635 636 637 638 639 640
	if (quote_start != -1
	    || ((ch < 'a' || ch > 'z')
		&& (ch < 'A' || ch > 'Z')))
	  {
	    if (! expect (dateStr, pos, ch))
	      return null;
	    continue;
Tom Tromey committed
641
	  }
642

643 644 645 646 647
	// We've arrived at a potential pattern character in the
	// pattern.
	int first = fmt_index;
	while (++fmt_index < fmt_max && pattern.charAt(fmt_index) == ch)
	  ;
648
	int fmt_count = fmt_index - first;
Tom Tromey committed
649 650 651 652 653 654 655 656

	// We might need to limit the number of digits to parse in
	// some cases.  We look to the next pattern character to
	// decide.
	boolean limit_digits = false;
	if (fmt_index < fmt_max
	    && standardChars.indexOf(pattern.charAt(fmt_index)) >= 0)
	  limit_digits = true;
657 658 659 660 661 662 663 664 665 666 667
	--fmt_index;

	// We can handle most fields automatically: most either are
	// numeric or are looked up in a string vector.  In some cases
	// we need an offset.  When numeric, `offset' is added to the
	// resulting value.  When doing a string lookup, offset is the
	// initial index into the string array.
	int calendar_field;
	boolean is_numeric = true;
	String[] match = null;
	int offset = 0;
668
	boolean maybe2DigitYear = false;
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
	switch (ch)
	  {
	  case 'd':
	    calendar_field = Calendar.DATE;
	    break;
	  case 'D':
	    calendar_field = Calendar.DAY_OF_YEAR;
	    break;
	  case 'F':
	    calendar_field = Calendar.DAY_OF_WEEK_IN_MONTH;
	    break;
	  case 'E':
	    is_numeric = false;
	    offset = 1;
	    calendar_field = Calendar.DAY_OF_WEEK;
684
	    match = (fmt_count <= 3
685 686 687 688 689 690 691 692 693 694 695
		     ? formatData.getShortWeekdays()
		     : formatData.getWeekdays());
	    break;
	  case 'w':
	    calendar_field = Calendar.WEEK_OF_YEAR;
	    break;
	  case 'W':
	    calendar_field = Calendar.WEEK_OF_MONTH;
	    break;
	  case 'M':
	    calendar_field = Calendar.MONTH;
696
	    if (fmt_count <= 2)
697 698 699 700
	      offset = -1;
	    else
	      {
		is_numeric = false;
701
		match = (fmt_count <= 3
702 703 704 705 706 707
			 ? formatData.getShortMonths()
			 : formatData.getMonths());
	      }
	    break;
	  case 'y':
	    calendar_field = Calendar.YEAR;
708 709
	    if (fmt_count <= 2)
	      maybe2DigitYear = true;
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
	    break;
	  case 'K':
	    calendar_field = Calendar.HOUR;
	    break;
	  case 'h':
	    calendar_field = Calendar.HOUR;
	    break;
	  case 'H':
	    calendar_field = Calendar.HOUR_OF_DAY;
	    break;
	  case 'k':
	    calendar_field = Calendar.HOUR_OF_DAY;
	    break;
	  case 'm':
	    calendar_field = Calendar.MINUTE;
	    break;
	  case 's':
	    calendar_field = Calendar.SECOND;
	    break;
	  case 'S':
	    calendar_field = Calendar.MILLISECOND;
	    break;
	  case 'a':
	    is_numeric = false;
	    calendar_field = Calendar.AM_PM;
	    match = formatData.getAmPmStrings();
	    break;
	  case 'z':
	    // We need a special case for the timezone, because it
	    // uses a different data structure than the other cases.
	    is_numeric = false;
	    calendar_field = Calendar.DST_OFFSET;
	    String[][] zoneStrings = formatData.getZoneStrings();
	    int zoneCount = zoneStrings.length;
	    int index = pos.getIndex();
	    boolean found_zone = false;
	    for (int j = 0;  j < zoneCount;  j++)
	      {
		String[] strings = zoneStrings[j];
		int k;
		for (k = 1; k < strings.length; ++k)
		  {
		    if (dateStr.startsWith(strings[k], index))
		      break;
		  }
		if (k != strings.length)
		  {
Tom Tromey committed
757
		    found_zone = true;
758
		    saw_timezone = true;
Tom Tromey committed
759
		    TimeZone tz = TimeZone.getTimeZone (strings[0]);
760
		    calendar.set (Calendar.ZONE_OFFSET, tz.getRawOffset ());
761 762 763 764 765 766
		    offset = 0;
		    if (k > 2 && tz instanceof SimpleTimeZone)
		      {
			SimpleTimeZone stz = (SimpleTimeZone) tz;
			offset = stz.getDSTSavings ();
		      }
767 768 769 770 771 772 773 774 775 776 777
		    pos.setIndex(index + strings[k].length());
		    break;
		  }
	      }
	    if (! found_zone)
	      {
		pos.setErrorIndex(pos.getIndex());
		return null;
	      }
	    break;
	  default:
Tom Tromey committed
778 779 780
	    pos.setErrorIndex(pos.getIndex());
	    return null;
	  }
781

782 783
	// Compute the value we should assign to the field.
	int value;
784
	int index = -1;
785 786
	if (is_numeric)
	  {
787
	    numberFormat.setMinimumIntegerDigits(fmt_count);
Tom Tromey committed
788 789
	    if (limit_digits)
	      numberFormat.setMaximumIntegerDigits(fmt_count);
790 791
	    if (maybe2DigitYear)
	      index = pos.getIndex();
792 793 794 795 796 797 798
	    Number n = numberFormat.parse(dateStr, pos);
	    if (pos == null || ! (n instanceof Long))
	      return null;
	    value = n.intValue() + offset;
	  }
	else if (match != null)
	  {
799
	    index = pos.getIndex();
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814
	    int i;
	    for (i = offset; i < match.length; ++i)
	      {
		if (dateStr.startsWith(match[i], index))
		  break;
	      }
	    if (i == match.length)
	      {
		pos.setErrorIndex(index);
		return null;
	      }
	    pos.setIndex(index + match[i].length());
	    value = i;
	  }
	else
815
	  value = offset;
816 817 818 819 820 821 822 823 824
	  
	if (maybe2DigitYear)
	  {
	    // Parse into default century if the numeric year string has 
	    // exactly 2 digits.
	    int digit_count = pos.getIndex() - index;
	    if (digit_count == 2)
	      is2DigitYear = true;
	  }
825

826
	// Assign the value and move on.
827
	calendar.set(calendar_field, value);
828 829 830 831 832 833
      }
    
    if (is2DigitYear)
      {
	// Apply the 80-20 heuristic to dermine the full year based on 
	// defaultCenturyStart. 
834 835 836 837
	int year = defaultCentury + calendar.get(Calendar.YEAR);
	calendar.set(Calendar.YEAR, year);
	if (calendar.getTime().compareTo(defaultCenturyStart) < 0)
	  calendar.set(Calendar.YEAR, year + 100);      
Tom Tromey committed
838 839
      }

840
    try
841
      {
842 843 844 845
	if (! saw_timezone)
	  {
	    // Use the real rules to determine whether or not this
	    // particular time is in daylight savings.
846 847
	    calendar.clear (Calendar.DST_OFFSET);
	    calendar.clear (Calendar.ZONE_OFFSET);
848
	  }
849
        return calendar.getTime();
850 851 852 853 854
      }
    catch (IllegalArgumentException x)
      {
        pos.setErrorIndex(pos.getIndex());
	return null;
855
      }
Tom Tromey committed
856
  }
Tom Tromey committed
857 858 859

  // Compute the start of the current century as defined by
  // get2DigitYearStart.
860
  private void computeCenturyStart()
Tom Tromey committed
861
  {
862 863 864
    int year = calendar.get(Calendar.YEAR);
    calendar.set(Calendar.YEAR, year - 80);
    set2DigitYearStart(calendar.getTime());
Tom Tromey committed
865
  }
Tom Tromey committed
866
}