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