io.druid.java.util.common.DateTimes.java Source code

Java tutorial

Introduction

Here is the source code for io.druid.java.util.common.DateTimes.java

Source

/*
 * Licensed to Metamarkets Group Inc. (Metamarkets) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. Metamarkets licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package io.druid.java.util.common;

import org.joda.time.Chronology;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.joda.time.chrono.ISOChronology;
import org.joda.time.format.DateTimeFormatter;
import org.joda.time.format.ISODateTimeFormat;

import java.util.TimeZone;

public final class DateTimes {
    public static final DateTime EPOCH = utc(0);
    public static final DateTime MAX = utc(JodaUtils.MAX_INSTANT);
    public static final DateTime MIN = utc(JodaUtils.MIN_INSTANT);

    public static final UtcFormatter ISO_DATE_TIME = wrapFormatter(ISODateTimeFormat.dateTime());
    public static final UtcFormatter ISO_DATE_OPTIONAL_TIME = wrapFormatter(
            ISODateTimeFormat.dateOptionalTimeParser());
    public static final UtcFormatter ISO_DATE_OR_TIME = wrapFormatter(ISODateTimeFormat.dateTimeParser());
    public static final UtcFormatter ISO_DATE_OR_TIME_WITH_OFFSET = wrapFormatter(
            ISODateTimeFormat.dateTimeParser().withOffsetParsed());

    public static DateTimeZone inferTzfromString(String tzId) {
        try {
            return DateTimeZone.forID(tzId);
        } catch (IllegalArgumentException e) {
            // also support Java timezone strings
            return DateTimeZone.forTimeZone(TimeZone.getTimeZone(tzId));
        }
    }

    /**
     * Simple wrapper class to enforce UTC Chronology in formatter. Specifically, it will use
     * {@link DateTimeFormatter#withChronology(Chronology)} to set the chronology to
     * {@link ISOChronology#getInstanceUTC()} on the wrapped {@link DateTimeFormatter}.
     */
    public static class UtcFormatter {
        private final DateTimeFormatter innerFormatter;

        private UtcFormatter(final DateTimeFormatter innerFormatter) {
            this.innerFormatter = innerFormatter.withChronology(ISOChronology.getInstanceUTC());
        }

        public DateTime parse(final String instant) {
            return innerFormatter.parseDateTime(instant);
        }

        public String print(final DateTime instant) {
            return innerFormatter.print(instant);
        }
    }

    /**
     * Creates a {@link UtcFormatter} that wraps around a {@link DateTimeFormatter}.
     *
     * @param formatter inner {@link DateTimeFormatter} used to parse {@link String}
     */
    public static UtcFormatter wrapFormatter(final DateTimeFormatter formatter) {
        return new UtcFormatter(formatter);
    }

    public static DateTime utc(long instant) {
        return new DateTime(instant, ISOChronology.getInstanceUTC());
    }

    public static DateTime of(String instant) {
        return new DateTime(instant, ISOChronology.getInstanceUTC());
    }

    public static DateTime of(int year, int monthOfYear, int dayOfMonth, int hourOfDay, int minuteOfHour) {
        return new DateTime(year, monthOfYear, dayOfMonth, hourOfDay, minuteOfHour, ISOChronology.getInstanceUTC());
    }

    public static DateTime nowUtc() {
        return DateTime.now(ISOChronology.getInstanceUTC());
    }

    public static DateTime max(DateTime dt1, DateTime dt2) {
        return dt1.compareTo(dt2) >= 0 ? dt1 : dt2;
    }

    public static DateTime min(DateTime dt1, DateTime dt2) {
        return dt1.compareTo(dt2) < 0 ? dt1 : dt2;
    }

    private DateTimes() {
    }
}