jdk/src/share/classes/java/util/TimeZone.java
author naoto
Mon, 14 Jan 2013 11:09:53 -0800
changeset 15260 7af2d7a87806
parent 14765 0987999ed367
child 15658 55b829ca2334
permissions -rw-r--r--
7162007: Clean up i18n related caches Reviewed-by: okutsu, ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14169
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
     2
 * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * (C) Copyright Taligent, Inc. 1996 - All Rights Reserved
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * (C) Copyright IBM Corp. 1996 - All Rights Reserved
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *   The original version of this source code and documentation is copyrighted
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * and owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * materials are provided under terms of a License Agreement between Taligent
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * and Sun. This technology is protected by multiple US and International
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * patents. This notice and attribution to Taligent may not be removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *   Taligent is a registered trademark of Taligent, Inc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
package java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.io.Serializable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.lang.ref.SoftReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.util.concurrent.ConcurrentHashMap;
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
    46
import sun.misc.JavaAWTAccess;
11896
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
    47
import sun.misc.SharedSecrets;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import sun.security.action.GetPropertyAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import sun.util.calendar.ZoneInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import sun.util.calendar.ZoneInfoFile;
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
    51
import sun.util.locale.provider.TimeZoneNameUtility;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <code>TimeZone</code> represents a time zone offset, and also figures out daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * savings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * Typically, you get a <code>TimeZone</code> using <code>getDefault</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * which creates a <code>TimeZone</code> based on the time zone where the program
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * is running. For example, for a program running in Japan, <code>getDefault</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * creates a <code>TimeZone</code> object based on Japanese Standard Time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * You can also get a <code>TimeZone</code> using <code>getTimeZone</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * along with a time zone ID. For instance, the time zone ID for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * U.S. Pacific Time zone is "America/Los_Angeles". So, you can get a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * U.S. Pacific Time <code>TimeZone</code> object with:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * TimeZone tz = TimeZone.getTimeZone("America/Los_Angeles");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * You can use the <code>getAvailableIDs</code> method to iterate through
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * all the supported time zone IDs. You can then choose a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * supported ID to get a <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * If the time zone you want is not represented by one of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * supported IDs, then a custom time zone ID can be specified to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * produce a TimeZone. The syntax of a custom time zone ID is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * <a name="CustomID"><i>CustomID:</i></a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *         <code>GMT</code> <i>Sign</i> <i>Hours</i> <code>:</code> <i>Minutes</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *         <code>GMT</code> <i>Sign</i> <i>Hours</i> <i>Minutes</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *         <code>GMT</code> <i>Sign</i> <i>Hours</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * <i>Sign:</i> one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *         <code>+ -</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * <i>Hours:</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *         <i>Digit</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *         <i>Digit</i> <i>Digit</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * <i>Minutes:</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *         <i>Digit</i> <i>Digit</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * <i>Digit:</i> one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 *         <code>0 1 2 3 4 5 6 7 8 9</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * <i>Hours</i> must be between 0 to 23 and <i>Minutes</i> must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * between 00 to 59.  For example, "GMT+10" and "GMT+0010" mean ten
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * hours and ten minutes ahead of GMT, respectively.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * The format is locale independent and digits must be taken from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * Basic Latin block of the Unicode standard. No daylight saving time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * transition schedule can be specified with a custom time zone ID. If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * the specified string doesn't match the syntax, <code>"GMT"</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * is used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * When creating a <code>TimeZone</code>, the specified custom time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * zone ID is normalized in the following syntax:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * <a name="NormalizedCustomID"><i>NormalizedCustomID:</i></a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *         <code>GMT</code> <i>Sign</i> <i>TwoDigitHours</i> <code>:</code> <i>Minutes</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * <i>Sign:</i> one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 *         <code>+ -</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * <i>TwoDigitHours:</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 *         <i>Digit</i> <i>Digit</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * <i>Minutes:</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 *         <i>Digit</i> <i>Digit</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * <i>Digit:</i> one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *         <code>0 1 2 3 4 5 6 7 8 9</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * For example, TimeZone.getTimeZone("GMT-8").getID() returns "GMT-08:00".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * <h4>Three-letter time zone IDs</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * For compatibility with JDK 1.1.x, some other three-letter time zone IDs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * (such as "PST", "CTT", "AST") are also supported. However, <strong>their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * use is deprecated</strong> because the same abbreviation is often used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * for multiple time zones (for example, "CST" could be U.S. "Central Standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * Time" and "China Standard Time"), and the Java platform can then only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * recognize one of them.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * @see          Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * @see          GregorianCalendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 * @see          SimpleTimeZone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 * @author       Mark Davis, David Goldsmith, Chen-Lieh Huang, Alan Liu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 * @since        JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
abstract public class TimeZone implements Serializable, Cloneable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * Sole constructor.  (For invocation by subclass constructors, typically
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * implicit.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    public TimeZone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * A style specifier for <code>getDisplayName()</code> indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * a short name, such as "PST."
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * @see #LONG
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    public static final int SHORT = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * A style specifier for <code>getDisplayName()</code> indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * a long name, such as "Pacific Standard Time."
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * @see #SHORT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    public static final int LONG  = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    // Constants used internally; unit is milliseconds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    private static final int ONE_MINUTE = 60*1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    private static final int ONE_HOUR   = 60*ONE_MINUTE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    private static final int ONE_DAY    = 24*ONE_HOUR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    // Proclaim serialization compatibility with JDK 1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    static final long serialVersionUID = 3581463369166924961L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * Gets the time zone offset, for current date, modified in case of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * daylight savings. This is the offset to add to UTC to get local time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * This method returns a historically correct offset if an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * underlying <code>TimeZone</code> implementation subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * supports historical Daylight Saving Time schedule and GMT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * offset changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @param era the era of the given date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * @param year the year in the given date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * @param month the month in the given date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * Month is 0-based. e.g., 0 for January.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param day the day-in-month of the given date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * @param dayOfWeek the day-of-week of the given date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * @param milliseconds the milliseconds in day in <em>standard</em>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * local time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * @return the offset in milliseconds to add to GMT to get local time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * @see Calendar#ZONE_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @see Calendar#DST_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    public abstract int getOffset(int era, int year, int month, int day,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                                  int dayOfWeek, int milliseconds);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * Returns the offset of this time zone from UTC at the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * date. If Daylight Saving Time is in effect at the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * date, the offset value is adjusted with the amount of daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * saving.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * This method returns a historically correct offset value if an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * underlying TimeZone implementation subclass supports historical
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * Daylight Saving Time schedule and GMT offset changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * @param date the date represented in milliseconds since January 1, 1970 00:00:00 GMT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @return the amount of time in milliseconds to add to UTC to get local time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @see Calendar#ZONE_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * @see Calendar#DST_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    public int getOffset(long date) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        if (inDaylightTime(new Date(date))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            return getRawOffset() + getDSTSavings();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        return getRawOffset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * Gets the raw GMT offset and the amount of daylight saving of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * time zone at the given time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @param date the milliseconds (since January 1, 1970,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * 00:00:00.000 GMT) at which the time zone offset and daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * saving amount are found
14014
da3648e13e67 8000269: Cleanup javadoc warnings
alanb
parents: 13583
diff changeset
   224
     * @param offsets an array of int where the raw GMT offset
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * (offset[0]) and daylight saving amount (offset[1]) are stored,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * or null if those values are not needed. The method assumes that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * the length of the given array is two or larger.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * @return the total amount of the raw GMT offset and daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * saving at the specified date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @see Calendar#ZONE_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * @see Calendar#DST_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    int getOffsets(long date, int[] offsets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        int rawoffset = getRawOffset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        int dstoffset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        if (inDaylightTime(new Date(date))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            dstoffset = getDSTSavings();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        if (offsets != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            offsets[0] = rawoffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            offsets[1] = dstoffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        return rawoffset + dstoffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * Sets the base time zone offset to GMT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * This is the offset to add to UTC to get local time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * If an underlying <code>TimeZone</code> implementation subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * supports historical GMT offset changes, the specified GMT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * offset is set as the latest GMT offset and the difference from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * the known latest GMT offset value is used to adjust all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * historical GMT offset values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * @param offsetMillis the given base time zone offset to GMT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    abstract public void setRawOffset(int offsetMillis);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * Returns the amount of time in milliseconds to add to UTC to get
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * standard time in this time zone. Because this value is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * affected by daylight saving time, it is called <I>raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * offset</I>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * If an underlying <code>TimeZone</code> implementation subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * supports historical GMT offset changes, the method returns the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * raw offset value of the current date. In Honolulu, for example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * its raw offset changed from GMT-10:30 to GMT-10:00 in 1947, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * this method always returns -36000000 milliseconds (i.e., -10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * hours).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * @return the amount of raw offset time in milliseconds to add to UTC.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * @see Calendar#ZONE_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    public abstract int getRawOffset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * Gets the ID of this time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * @return the ID of this time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    public String getID()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        return ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * Sets the time zone ID. This does not change any other data in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * the time zone object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * @param ID the new time zone ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    public void setID(String ID)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        if (ID == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        this.ID = ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    /**
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   302
     * Returns a long standard time name of this {@code TimeZone} suitable for
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   303
     * presentation to the user in the default locale.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   304
     *
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   305
     * <p>This method is equivalent to:
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   306
     * <pre><blockquote>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   307
     * getDisplayName(false, {@link #LONG},
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   308
     *                Locale.getDefault({@link Locale.Category#DISPLAY}))
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   309
     * </blockquote></pre>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   310
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * @return the human-readable name of this time zone in the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * @since 1.2
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   313
     * @see #getDisplayName(boolean, int, Locale)
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   314
     * @see Locale#getDefault(Locale.Category)
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   315
     * @see Locale.Category
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    public final String getDisplayName() {
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   318
        return getDisplayName(false, LONG,
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   319
                              Locale.getDefault(Locale.Category.DISPLAY));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    /**
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   323
     * Returns a long standard time name of this {@code TimeZone} suitable for
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   324
     * presentation to the user in the specified {@code locale}.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   325
     *
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   326
     * <p>This method is equivalent to:
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   327
     * <pre><blockquote>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   328
     * getDisplayName(false, {@link #LONG}, locale)
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   329
     * </blockquote></pre>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   330
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @param locale the locale in which to supply the display name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @return the human-readable name of this time zone in the given locale.
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   333
     * @exception NullPointerException if {@code locale} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @since 1.2
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   335
     * @see #getDisplayName(boolean, int, Locale)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    public final String getDisplayName(Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        return getDisplayName(false, LONG, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    /**
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   342
     * Returns a name in the specified {@code style} of this {@code TimeZone}
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   343
     * suitable for presentation to the user in the default locale. If the
8521
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   344
     * specified {@code daylight} is {@code true}, a Daylight Saving Time name
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   345
     * is returned (even if this {@code TimeZone} doesn't observe Daylight Saving
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   346
     * Time). Otherwise, a Standard Time name is returned.
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   347
     *
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   348
     * <p>This method is equivalent to:
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   349
     * <pre><blockquote>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   350
     * getDisplayName(daylight, style,
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   351
     *                Locale.getDefault({@link Locale.Category#DISPLAY}))
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   352
     * </blockquote></pre>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   353
     *
8521
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   354
     * @param daylight {@code true} specifying a Daylight Saving Time name, or
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   355
     *                 {@code false} specifying a Standard Time name
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   356
     * @param style either {@link #LONG} or {@link #SHORT}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * @return the human-readable name of this time zone in the default locale.
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   358
     * @exception IllegalArgumentException if {@code style} is invalid.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * @since 1.2
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   360
     * @see #getDisplayName(boolean, int, Locale)
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   361
     * @see Locale#getDefault(Locale.Category)
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   362
     * @see Locale.Category
8521
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   363
     * @see java.text.DateFormatSymbols#getZoneStrings()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    public final String getDisplayName(boolean daylight, int style) {
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   366
        return getDisplayName(daylight, style,
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   367
                              Locale.getDefault(Locale.Category.DISPLAY));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    /**
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   371
     * Returns a name in the specified {@code style} of this {@code TimeZone}
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   372
     * suitable for presentation to the user in the specified {@code
8521
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   373
     * locale}. If the specified {@code daylight} is {@code true}, a Daylight
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   374
     * Saving Time name is returned (even if this {@code TimeZone} doesn't
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   375
     * observe Daylight Saving Time). Otherwise, a Standard Time name is
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   376
     * returned.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   377
     *
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   378
     * <p>When looking up a time zone name, the {@linkplain
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   379
     * ResourceBundle.Control#getCandidateLocales(String,Locale) default
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   380
     * <code>Locale</code> search path of <code>ResourceBundle</code>} derived
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   381
     * from the specified {@code locale} is used. (No {@linkplain
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   382
     * ResourceBundle.Control#getFallbackLocale(String,Locale) fallback
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   383
     * <code>Locale</code>} search is performed.) If a time zone name in any
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   384
     * {@code Locale} of the search path, including {@link Locale#ROOT}, is
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   385
     * found, the name is returned. Otherwise, a string in the
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   386
     * <a href="#NormalizedCustomID">normalized custom ID format</a> is returned.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   387
     *
8521
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   388
     * @param daylight {@code true} specifying a Daylight Saving Time name, or
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   389
     *                 {@code false} specifying a Standard Time name
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   390
     * @param style either {@link #LONG} or {@link #SHORT}
8521
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   391
     * @param locale   the locale in which to supply the display name.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @return the human-readable name of this time zone in the given locale.
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   393
     * @exception IllegalArgumentException if {@code style} is invalid.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   394
     * @exception NullPointerException if {@code locale} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * @since 1.2
8521
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   396
     * @see java.text.DateFormatSymbols#getZoneStrings()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    public String getDisplayName(boolean daylight, int style, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        if (style != SHORT && style != LONG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            throw new IllegalArgumentException("Illegal style: " + style);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        String id = getID();
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   403
        String name = TimeZoneNameUtility.retrieveDisplayName(id, daylight, style, locale);
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   404
        if (name != null) {
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   405
            return name;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   408
        if (id.startsWith("GMT") && id.length() > 3) {
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   409
            char sign = id.charAt(3);
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   410
            if (sign == '+' || sign == '-') {
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   411
                return id;
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   412
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        }
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   414
        int offset = getRawOffset();
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   415
        if (daylight) {
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   416
            offset += getDSTSavings();
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   417
        }
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   418
        return ZoneInfoFile.toCustomID(offset);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    private static class DisplayNames {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        // Cache for managing display names per timezone per locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        // The structure is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        //   Map(key=id, value=SoftReference(Map(key=locale, value=displaynames)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        private static final Map<String, SoftReference<Map<Locale, String[]>>> CACHE =
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11902
diff changeset
   426
            new ConcurrentHashMap<>();
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   427
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   428
        private DisplayNames() {
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   429
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   432
    private static String[] getDisplayNames(String id, Locale locale) {
15260
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents: 14765
diff changeset
   433
        return TimeZoneNameUtility.retrieveDisplayNames(id, locale);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * Returns the amount of time to be added to local standard time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * to get local wall clock time.
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   439
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   440
     * <p>The default implementation returns 3600000 milliseconds
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   441
     * (i.e., one hour) if a call to {@link #useDaylightTime()}
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   442
     * returns {@code true}. Otherwise, 0 (zero) is returned.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   443
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   444
     * <p>If an underlying {@code TimeZone} implementation subclass
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   445
     * supports historical and future Daylight Saving Time schedule
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   446
     * changes, this method returns the amount of saving time of the
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   447
     * last known Daylight Saving Time rule that can be a future
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   448
     * prediction.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   449
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   450
     * <p>If the amount of saving time at any given time stamp is
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   451
     * required, construct a {@link Calendar} with this {@code
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   452
     * TimeZone} and the time stamp, and call {@link Calendar#get(int)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   453
     * Calendar.get}{@code (}{@link Calendar#DST_OFFSET}{@code )}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * @return the amount of saving time in milliseconds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * @since 1.4
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   457
     * @see #inDaylightTime(Date)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   458
     * @see #getOffset(long)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   459
     * @see #getOffset(int,int,int,int,int,int)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   460
     * @see Calendar#ZONE_OFFSET
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    public int getDSTSavings() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        if (useDaylightTime()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
            return 3600000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    /**
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   470
     * Queries if this {@code TimeZone} uses Daylight Saving Time.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     *
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   472
     * <p>If an underlying {@code TimeZone} implementation subclass
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   473
     * supports historical and future Daylight Saving Time schedule
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   474
     * changes, this method refers to the last known Daylight Saving Time
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   475
     * rule that can be a future prediction and may not be the same as
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   476
     * the current rule. Consider calling {@link #observesDaylightTime()}
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   477
     * if the current rule should also be taken into account.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   478
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   479
     * @return {@code true} if this {@code TimeZone} uses Daylight Saving Time,
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   480
     *         {@code false}, otherwise.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   481
     * @see #inDaylightTime(Date)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   482
     * @see Calendar#DST_OFFSET
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    public abstract boolean useDaylightTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    /**
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   487
     * Returns {@code true} if this {@code TimeZone} is currently in
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   488
     * Daylight Saving Time, or if a transition from Standard Time to
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   489
     * Daylight Saving Time occurs at any future time.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   490
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   491
     * <p>The default implementation returns {@code true} if
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   492
     * {@code useDaylightTime()} or {@code inDaylightTime(new Date())}
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   493
     * returns {@code true}.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   494
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   495
     * @return {@code true} if this {@code TimeZone} is currently in
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   496
     * Daylight Saving Time, or if a transition from Standard Time to
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   497
     * Daylight Saving Time occurs at any future time; {@code false}
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   498
     * otherwise.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   499
     * @since 1.7
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   500
     * @see #useDaylightTime()
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   501
     * @see #inDaylightTime(Date)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   502
     * @see Calendar#DST_OFFSET
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   503
     */
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   504
    public boolean observesDaylightTime() {
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   505
        return useDaylightTime() || inDaylightTime(new Date());
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   506
    }
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   507
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   508
    /**
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   509
     * Queries if the given {@code date} is in Daylight Saving Time in
8521
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   510
     * this time zone.
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   511
     *
8521
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   512
     * @param date the given Date.
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   513
     * @return {@code true} if the given date is in Daylight Saving Time,
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   514
     *         {@code false}, otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    abstract public boolean inDaylightTime(Date date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * Gets the <code>TimeZone</code> for the given ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * @param ID the ID for a <code>TimeZone</code>, either an abbreviation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * such as "PST", a full name such as "America/Los_Angeles", or a custom
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * ID such as "GMT-8:00". Note that the support of abbreviations is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * for JDK 1.1.x compatibility only and full names should be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * @return the specified <code>TimeZone</code>, or the GMT zone if the given ID
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * cannot be understood.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
    public static synchronized TimeZone getTimeZone(String ID) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        return getTimeZone(ID, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
    private static TimeZone getTimeZone(String ID, boolean fallback) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        TimeZone tz = ZoneInfo.getTimeZone(ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
        if (tz == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            tz = parseCustomTimeZone(ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            if (tz == null && fallback) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                tz = new ZoneInfo(GMT_ID, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        return tz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * Gets the available IDs according to the given time zone offset in milliseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * @param rawOffset the given time zone GMT offset in milliseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * @return an array of IDs, where the time zone for that ID has
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * the specified GMT offset. For example, "America/Phoenix" and "America/Denver"
8521
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 8375
diff changeset
   550
     * both have GMT-07:00, but differ in daylight saving behavior.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * @see #getRawOffset()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    public static synchronized String[] getAvailableIDs(int rawOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        return ZoneInfo.getAvailableIDs(rawOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * Gets all the available IDs supported.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * @return an array of IDs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
    public static synchronized String[] getAvailableIDs() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        return ZoneInfo.getAvailableIDs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * Gets the platform defined TimeZone ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     **/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    private static native String getSystemTimeZoneID(String javaHome,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                                                     String country);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * Gets the custom time zone ID based on the GMT offset of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * platform. (e.g., "GMT+08:00")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
    private static native String getSystemGMTOffsetID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * Gets the default <code>TimeZone</code> for this host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * The source of the default <code>TimeZone</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * may vary with implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * @return a default <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * @see #setDefault
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    public static TimeZone getDefault() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
        return (TimeZone) getDefaultRef().clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * Returns the reference to the default TimeZone object. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * method doesn't create a clone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    static TimeZone getDefaultRef() {
11896
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   593
        TimeZone defaultZone = getDefaultInAppContext();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        if (defaultZone == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
            defaultZone = defaultTimeZone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
            if (defaultZone == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                // Need to initialize the default time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
                defaultZone = setDefaultZone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                assert defaultZone != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        // Don't clone here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        return defaultZone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    private static synchronized TimeZone setDefaultZone() {
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   607
        TimeZone tz;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        // get the time zone ID from the system properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        String zoneID = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
                new GetPropertyAction("user.timezone"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
        // if the time zone ID is not set (yet), perform the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        // platform to Java time zone ID mapping.
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   614
        if (zoneID == null || zoneID.isEmpty()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
            String country = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
                    new GetPropertyAction("user.country"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            String javaHome = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
                    new GetPropertyAction("java.home"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
                zoneID = getSystemTimeZoneID(javaHome, country);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                if (zoneID == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                    zoneID = GMT_ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
            } catch (NullPointerException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
                zoneID = GMT_ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        // Get the time zone for zoneID. But not fall back to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
        // "GMT" here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
        tz = getTimeZone(zoneID, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
        if (tz == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
            // If the given zone ID is unknown in Java, try to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
            // get the GMT-offset-based time zone ID,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
            // a.k.a. custom time zone ID (e.g., "GMT-08:00").
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
            String gmtOffsetID = getSystemGMTOffsetID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
            if (gmtOffsetID != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                zoneID = gmtOffsetID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
            tz = getTimeZone(zoneID, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        assert tz != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        final String id = zoneID;
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   646
        AccessController.doPrivileged(new PrivilegedAction<Void>() {
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   647
            @Override
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14169
diff changeset
   648
                public Void run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
                    System.setProperty("user.timezone", id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
        defaultTimeZone = tz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        return tz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    private static boolean hasPermission() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        boolean hasPermission = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
                sm.checkPermission(new PropertyPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
                                   ("user.timezone", "write"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
            } catch (SecurityException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
                hasPermission = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        return hasPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * Sets the <code>TimeZone</code> that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * returned by the <code>getDefault</code> method.  If <code>zone</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * is null, reset the default to the value it had originally when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * VM first started.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     * @param zone the new default time zone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * @see #getDefault
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    public static void setDefault(TimeZone zone)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        if (hasPermission()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
            synchronized (TimeZone.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
                defaultTimeZone = zone;
11896
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   685
                setDefaultInAppContext(null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        } else {
11896
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   688
            setDefaultInAppContext(zone);
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   689
        }
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   690
    }
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   691
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   692
    /**
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   693
     * Returns the default TimeZone in an AppContext if any AppContext
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   694
     * has ever used. null is returned if any AppContext hasn't been
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   695
     * used or if the AppContext doesn't have the default TimeZone.
14169
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   696
     *
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   697
     * Note that javaAWTAccess may be null if sun.awt.AppContext class hasn't
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   698
     * been loaded. If so, it implies that AWTSecurityManager is not our
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   699
     * SecurityManager and we can use a local static variable.
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   700
     * This works around a build time issue.
11896
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   701
     */
14169
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   702
    private static TimeZone getDefaultInAppContext() {
11896
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   703
        // JavaAWTAccess provides access implementation-private methods without using reflection.
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   704
        JavaAWTAccess javaAWTAccess = SharedSecrets.getJavaAWTAccess();
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   705
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   706
        if (javaAWTAccess == null) {
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   707
            return mainAppContextDefault;
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   708
        } else {
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   709
            if (!javaAWTAccess.isDisposed()) {
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   710
                TimeZone tz = (TimeZone)
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   711
                    javaAWTAccess.get(TimeZone.class);
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   712
                if (tz == null && javaAWTAccess.isMainAppContext()) {
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   713
                    return mainAppContextDefault;
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   714
                } else {
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   715
                    return tz;
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   716
                }
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   717
            }
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   718
        }
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   719
        return null;
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   720
    }
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   721
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   722
    /**
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   723
     * Sets the default TimeZone in the AppContext to the given
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   724
     * tz. null is handled special: do nothing if any AppContext
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   725
     * hasn't been used, remove the default TimeZone in the
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   726
     * AppContext otherwise.
14169
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   727
     *
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   728
     * Note that javaAWTAccess may be null if sun.awt.AppContext class hasn't
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   729
     * been loaded. If so, it implies that AWTSecurityManager is not our
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   730
     * SecurityManager and we can use a local static variable.
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   731
     * This works around a build time issue.
11896
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   732
     */
14169
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   733
    private static void setDefaultInAppContext(TimeZone tz) {
11896
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   734
        // JavaAWTAccess provides access implementation-private methods without using reflection.
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   735
        JavaAWTAccess javaAWTAccess = SharedSecrets.getJavaAWTAccess();
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   736
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   737
        if (javaAWTAccess == null) {
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   738
            mainAppContextDefault = tz;
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   739
        } else {
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   740
            if (!javaAWTAccess.isDisposed()) {
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   741
                javaAWTAccess.put(TimeZone.class, tz);
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   742
                if (javaAWTAccess.isMainAppContext()) {
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   743
                    mainAppContextDefault = null;
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   744
                }
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   745
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     * Returns true if this zone has the same rule and offset as another zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     * That is, if this zone differs only in ID, if at all.  Returns false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     * if the other zone is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     * @param other the <code>TimeZone</code> object to be compared with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     * @return true if the other zone is not null and is the same as this one,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     * with the possible exception of the ID
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
    public boolean hasSameRules(TimeZone other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        return other != null && getRawOffset() == other.getRawOffset() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
            useDaylightTime() == other.useDaylightTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     * Creates a copy of this <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     * @return a clone of this <code>TimeZone</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    public Object clone()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
            TimeZone other = (TimeZone) super.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
            other.ID = ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
            return other;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        } catch (CloneNotSupportedException e) {
10419
12c063b39232 7084245: Update usages of InternalError to use exception chaining
sherman
parents: 8521
diff changeset
   775
            throw new InternalError(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     * The null constant as a TimeZone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
    static final TimeZone NO_TIMEZONE = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
    // =======================privates===============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     * The string identifier of this <code>TimeZone</code>.  This is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     * programmatic identifier used internally to look up <code>TimeZone</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * objects from the system table and also to map them to their localized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     * display names.  <code>ID</code> values are unique in the system
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * table but may not be for dynamically created zones.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
    private String           ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
    private static volatile TimeZone defaultTimeZone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    static final String         GMT_ID        = "GMT";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
    private static final int    GMT_ID_LENGTH = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
11896
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   800
    // a static TimeZone we can reference if no AppContext is in place
14169
82c3e735e7a9 7196533: TimeZone.getDefault() slow due to synchronization bottleneck
coffeys
parents: 14014
diff changeset
   801
    private static volatile TimeZone mainAppContextDefault;
11896
eb4d5334fccf 6351654: Problem with java/classes_util_i18n
okutsu
parents: 8521
diff changeset
   802
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     * Parses a custom time zone identifier and returns a corresponding zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     * This method doesn't support the RFC 822 time zone format. (e.g., +hhmm)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
     * @param id a string of the <a href="#CustomID">custom ID form</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
     * @return a newly created TimeZone with the given offset and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
     * no daylight saving time, or null if the id cannot be parsed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
    private static final TimeZone parseCustomTimeZone(String id) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
        int length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
        // Error if the length of id isn't long enough or id doesn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
        // start with "GMT".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
        if ((length = id.length()) < (GMT_ID_LENGTH + 2) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
            id.indexOf(GMT_ID) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
        ZoneInfo zi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
        // First, we try to find it in the cache with the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        // id. Even the id is not normalized, the returned ZoneInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        // should have its normalized id.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
        zi = ZoneInfoFile.getZoneInfo(id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
        if (zi != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
            return zi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        int index = GMT_ID_LENGTH;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        boolean negative = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        char c = id.charAt(index++);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
        if (c == '-') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
            negative = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
        } else if (c != '+') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
        int hours = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
        int num = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
        int countDelim = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        int len = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
        while (index < length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
            c = id.charAt(index++);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
            if (c == ':') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                if (countDelim > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
                if (len > 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
                hours = num;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
                countDelim++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
                num = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
                len = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
            if (c < '0' || c > '9') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
            num = num * 10 + (c - '0');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
            len++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        if (index != length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
        if (countDelim == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
            if (len <= 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
                hours = num;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
                num = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
                hours = num / 100;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
                num %= 100;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
            if (len != 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        if (hours > 23 || num > 59) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
        int gmtOffset =  (hours * 60 + num) * 60 * 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
        if (gmtOffset == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
            zi = ZoneInfoFile.getZoneInfo(GMT_ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
            if (negative) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
                zi.setID("GMT-00:00");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
                zi.setID("GMT+00:00");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
            zi = ZoneInfoFile.getCustomTimeZone(id, negative ? -gmtOffset : gmtOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
        return zi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
}