All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickzetta.platform.catalyst.data.Timestamp Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.clickzetta.platform.catalyst.data;

import com.google.common.base.Preconditions;

import java.io.Serializable;
import java.time.Instant;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;

public class Timestamp implements Comparable, Serializable {

  private static final long serialVersionUID = 1L;

  // the number of milliseconds in a day
  private static final long MILLIS_PER_DAY = 86400000; // = 24 * 60 * 60 * 1000

  public static final long MICROS_PER_MILLIS = 1000L;

  public static final long NANOS_PER_MICROS = 1000L;

  // this field holds the integral second and the milli-of-second
  private final long millisecond;

  // this field holds the nano-of-millisecond
  private final int nanoOfMillisecond;

  private Timestamp(long millisecond, int nanoOfMillisecond) {
    Preconditions.checkArgument(nanoOfMillisecond >= 0 && nanoOfMillisecond <= 999_999);
    this.millisecond = millisecond;
    this.nanoOfMillisecond = nanoOfMillisecond;
  }

  /**
   * Returns the number of milliseconds since {@code 1970-01-01 00:00:00}.
   */
  public long getMillisecond() {
    return millisecond;
  }

  /**
   * Returns the number of nanoseconds (the nanoseconds within the milliseconds).
   *
   * 

The value range is from 0 to 999,999. */ public int getNanoOfMillisecond() { return nanoOfMillisecond; } /** * Converts this {@link Timestamp} object to a {@link java.sql.Timestamp}. */ public java.sql.Timestamp toSQLTimestamp() { return java.sql.Timestamp.valueOf(toLocalDateTime()); } /** * Converts this {@link Timestamp} object to a {@link LocalDateTime}. */ public LocalDateTime toLocalDateTime() { int date = (int) (millisecond / MILLIS_PER_DAY); int time = (int) (millisecond % MILLIS_PER_DAY); if (time < 0) { --date; time += MILLIS_PER_DAY; } long nanoOfDay = time * 1_000_000L + nanoOfMillisecond; LocalDate localDate = LocalDate.ofEpochDay(date); LocalTime localTime = LocalTime.ofNanoOfDay(nanoOfDay); return LocalDateTime.of(localDate, localTime); } /** * Converts this {@link Timestamp} object to a {@link Instant}. */ public Instant toInstant() { long epochSecond = millisecond / 1000; int milliOfSecond = (int) (millisecond % 1000); if (milliOfSecond < 0) { --epochSecond; milliOfSecond += 1000; } long nanoAdjustment = milliOfSecond * 1_000_000 + nanoOfMillisecond; return Instant.ofEpochSecond(epochSecond, nanoAdjustment); } /** * Converts this {@link Timestamp} object to micros. */ public long toMicros() { long micros = Math.multiplyExact(millisecond, MICROS_PER_MILLIS); return micros + nanoOfMillisecond / NANOS_PER_MICROS; } @Override public int compareTo(Timestamp that) { int cmp = Long.compare(this.millisecond, that.millisecond); if (cmp == 0) { cmp = this.nanoOfMillisecond - that.nanoOfMillisecond; } return cmp; } @Override public boolean equals(Object obj) { if (!(obj instanceof Timestamp)) { return false; } Timestamp that = (Timestamp) obj; return this.millisecond == that.millisecond && this.nanoOfMillisecond == that.nanoOfMillisecond; } @Override public String toString() { return toLocalDateTime().toString(); } @Override public int hashCode() { int ret = (int) millisecond ^ (int) (millisecond >> 32); return 31 * ret + nanoOfMillisecond; } // ------------------------------------------------------------------------------------------ // Constructor Utilities // ------------------------------------------------------------------------------------------ /** * Creates an instance of {@link Timestamp} for now. */ public static Timestamp now() { return fromLocalDateTime(LocalDateTime.now()); } /** * Creates an instance of {@link Timestamp} from milliseconds. * *

The nanos-of-millisecond field will be set to zero. * * @param milliseconds the number of milliseconds since {@code 1970-01-01 00:00:00}; a negative * number is the number of milliseconds before {@code 1970-01-01 00:00:00} */ public static Timestamp fromEpochMillis(long milliseconds) { return new Timestamp(milliseconds, 0); } /** * Creates an instance of {@link Timestamp} from milliseconds and a nanos-of-millisecond. * * @param milliseconds the number of milliseconds since {@code 1970-01-01 00:00:00}; a negative * number is the number of milliseconds before {@code 1970-01-01 00:00:00} * @param nanosOfMillisecond the nanoseconds within the millisecond, from 0 to 999,999 */ public static Timestamp fromEpochMillis(long milliseconds, int nanosOfMillisecond) { return new Timestamp(milliseconds, nanosOfMillisecond); } /** * Creates an instance of {@link Timestamp} from an instance of {@link LocalDateTime}. * * @param dateTime an instance of {@link LocalDateTime} */ public static Timestamp fromLocalDateTime(LocalDateTime dateTime) { long epochDay = dateTime.toLocalDate().toEpochDay(); long nanoOfDay = dateTime.toLocalTime().toNanoOfDay(); long millisecond = epochDay * MILLIS_PER_DAY + nanoOfDay / 1_000_000; int nanoOfMillisecond = (int) (nanoOfDay % 1_000_000); return new Timestamp(millisecond, nanoOfMillisecond); } /** * Creates an instance of {@link Timestamp} from an instance of {@link java.sql.Timestamp}. * * @param timestamp an instance of {@link java.sql.Timestamp} */ public static Timestamp fromSQLTimestamp(java.sql.Timestamp timestamp) { return fromLocalDateTime(timestamp.toLocalDateTime()); } /** * Creates an instance of {@link Timestamp} from an instance of {@link Instant}. * * @param instant an instance of {@link Instant} */ public static Timestamp fromInstant(Instant instant) { long epochSecond = instant.getEpochSecond(); int nanoSecond = instant.getNano(); long millisecond = epochSecond * 1_000 + nanoSecond / 1_000_000; int nanoOfMillisecond = nanoSecond % 1_000_000; return new Timestamp(millisecond, nanoOfMillisecond); } /** * Creates an instance of {@link Timestamp} from micros. */ public static Timestamp fromMicros(long micros) { long mills = Math.floorDiv(micros, MICROS_PER_MILLIS); long nanos = (micros - mills * MICROS_PER_MILLIS) * NANOS_PER_MICROS; return Timestamp.fromEpochMillis(mills, (int) nanos); } /** * Returns whether the timestamp data is small enough to be stored in a long of milliseconds. */ public static boolean isCompact(int precision) { return precision <= 3; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy