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

io.debezium.time.MicroTimestamp Maven / Gradle / Ivy

/*
 * Copyright Debezium Authors.
 *
 * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
 */
package io.debezium.time;

import java.time.LocalDateTime;
import java.time.ZoneOffset;
import java.time.temporal.TemporalAdjuster;

import org.apache.kafka.connect.data.Schema;
import org.apache.kafka.connect.data.SchemaBuilder;

/**
 * A utility for converting various Java time representations into the signed {@link SchemaBuilder#int64() INT64} number of
 * microseconds past epoch, and for defining a Kafka Connect {@link Schema} for timestamp values with no timezone
 * information.
 *
 * @author Randall Hauch
 * @see Timestamp
 * @see NanoTimestamp
 * @see ZonedTimestamp
 */
public class MicroTimestamp {

    public static final String SCHEMA_NAME = "io.debezium.time.MicroTimestamp";

    /**
     * Returns a {@link SchemaBuilder} for a {@link MicroTimestamp}. The resulting schema will describe a field
     * with the {@value #SCHEMA_NAME} as the {@link Schema#name() name} and {@link SchemaBuilder#int64() INT64} for the literal
     * type storing the number of microseconds past midnight.
     * 

* You can use the resulting SchemaBuilder to set or override additional schema settings such as required/optional, default * value, and documentation. * * @return the schema builder */ public static SchemaBuilder builder() { return SchemaBuilder.int64() .name(SCHEMA_NAME) .version(1); } /** * Returns a Schema for a {@link MicroTimestamp} but with all other default Schema settings. The schema describes a field * with the {@value #SCHEMA_NAME} as the {@link Schema#name() name} and {@link SchemaBuilder#int64() INT64} for the literal * type storing the number of microseconds past midnight. * * @return the schema * @see #builder() */ public static Schema schema() { return builder().build(); } /** * Get the number of microseconds past epoch of the given {@link java.time.LocalDateTime}, {@link java.time.LocalDate}, * {@link java.time.LocalTime}, {@link java.util.Date}, {@link java.sql.Date}, {@link java.sql.Time}, or * {@link java.sql.Timestamp}. * * @param value the local or SQL date, time, or timestamp value; may not be null * @param adjuster the optional component that adjusts the local date value before obtaining the epoch day; may be null if no * adjustment is necessary * @return the epoch microseconds * @throws IllegalArgumentException if the value is not an instance of the acceptable types */ public static long toEpochMicros(Object value, TemporalAdjuster adjuster) { LocalDateTime dateTime = Conversions.toLocalDateTime(value); if (adjuster != null) { dateTime = dateTime.with(adjuster); } return Conversions.toEpochMicros(dateTime.toInstant(ZoneOffset.UTC)); } private MicroTimestamp() { } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy