FastTimeZone.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3.time;

  18. import java.util.TimeZone;
  19. import java.util.regex.Matcher;
  20. import java.util.regex.Pattern;

  21. /**
  22.  * Faster methods to produce custom time zones.
  23.  *
  24.  * @since 3.7
  25.  */
  26. public class FastTimeZone {

  27.     private static final Pattern GMT_PATTERN = Pattern.compile("^(?:(?i)GMT)?([+-])?(\\d\\d?)?(:?(\\d\\d?))?$");

  28.     private static final TimeZone GREENWICH = new GmtTimeZone(false, 0, 0);

  29.     /**
  30.      * Gets the GMT TimeZone.
  31.      * @return A TimeZone with a raw offset of zero.
  32.      */
  33.     public static TimeZone getGmtTimeZone() {
  34.         return GREENWICH;
  35.     }

  36.     /**
  37.      * Gets a TimeZone with GMT offsets.  A GMT offset must be either 'Z', or 'UTC', or match
  38.      * <em>(GMT)? hh?(:?mm?)?</em>, where h and m are digits representing hours and minutes.
  39.      *
  40.      * @param pattern The GMT offset
  41.      * @return A TimeZone with offset from GMT or null, if pattern does not match.
  42.      */
  43.     public static TimeZone getGmtTimeZone(final String pattern) {
  44.         if ("Z".equals(pattern) || "UTC".equals(pattern)) {
  45.             return GREENWICH;
  46.         }

  47.         final Matcher m = GMT_PATTERN.matcher(pattern);
  48.         if (m.matches()) {
  49.             final int hours = parseInt(m.group(2));
  50.             final int minutes = parseInt(m.group(4));
  51.             if (hours == 0 && minutes == 0) {
  52.                 return GREENWICH;
  53.             }
  54.             return new GmtTimeZone(parseSign(m.group(1)), hours, minutes);
  55.         }
  56.         return null;
  57.     }

  58.     /**
  59.      * Gets a TimeZone, looking first for GMT custom ids, then falling back to Olson ids.
  60.      * A GMT custom id can be 'Z', or 'UTC', or has an optional prefix of GMT,
  61.      * followed by sign, hours digit(s), optional colon(':'), and optional minutes digits.
  62.      * i.e. <em>[GMT] (+|-) Hours [[:] Minutes]</em>
  63.      *
  64.      * @param id A GMT custom id (or Olson id
  65.      * @return A time zone
  66.      */
  67.     public static TimeZone getTimeZone(final String id) {
  68.         final TimeZone tz = getGmtTimeZone(id);
  69.         if (tz != null) {
  70.             return tz;
  71.         }
  72.         return TimeZone.getTimeZone(id);
  73.     }

  74.     private static int parseInt(final String group) {
  75.         return group != null ? Integer.parseInt(group) : 0;
  76.     }

  77.     private static boolean parseSign(final String group) {
  78.         return group != null && group.charAt(0) == '-';
  79.     }

  80.     // do not instantiate
  81.     private FastTimeZone() {
  82.     }

  83. }