/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.type.descriptor.java; import java.sql.Time; import java.sql.Timestamp; import java.time.Instant; import java.time.LocalDate; import java.time.OffsetDateTime; import java.time.OffsetTime; import java.time.ZoneId; import java.time.ZonedDateTime; import java.util.Calendar; import java.util.Date; import java.util.GregorianCalendar; import org.hibernate.type.OffsetTimeType; import org.hibernate.type.descriptor.WrapperOptions; /** * Java type descriptor for the LocalDateTime type. * * @author Steve Ebersole */ public class OffsetTimeJavaDescriptor extends AbstractTypeDescriptor<OffsetTime> { /** * Singleton access */ public static final OffsetTimeJavaDescriptor INSTANCE = new OffsetTimeJavaDescriptor(); @SuppressWarnings("unchecked") public OffsetTimeJavaDescriptor() { super( OffsetTime.class, ImmutableMutabilityPlan.INSTANCE ); } @Override public String toString(OffsetTime value) { return OffsetTimeType.FORMATTER.format( value ); } @Override public OffsetTime fromString(String string) { return OffsetTime.from( OffsetTimeType.FORMATTER.parse( string ) ); } @Override @SuppressWarnings("unchecked") public <X> X unwrap(OffsetTime offsetTime, Class<X> type, WrapperOptions options) { if ( offsetTime == null ) { return null; } if ( OffsetTime.class.isAssignableFrom( type ) ) { return (X) offsetTime; } if ( java.sql.Time.class.isAssignableFrom( type ) ) { return (X) java.sql.Time.valueOf( offsetTime.toLocalTime() ); } final ZonedDateTime zonedDateTime = offsetTime.atDate( LocalDate.of( 1970, 1, 1 ) ).toZonedDateTime(); if ( Timestamp.class.isAssignableFrom( type ) ) { return (X) Timestamp.valueOf( zonedDateTime.toLocalDateTime() ); } if ( Calendar.class.isAssignableFrom( type ) ) { return (X) GregorianCalendar.from( zonedDateTime ); } final Instant instant = zonedDateTime.toInstant(); if ( Long.class.isAssignableFrom( type ) ) { return (X) Long.valueOf( instant.toEpochMilli() ); } if ( java.util.Date.class.isAssignableFrom( type ) ) { return (X) java.util.Date.from( instant ); } throw unknownUnwrap( type ); } @Override public <X> OffsetTime wrap(X value, WrapperOptions options) { if ( value == null ) { return null; } if ( OffsetTime.class.isInstance( value ) ) { return (OffsetTime) value; } if ( Time.class.isInstance( value ) ) { return ( (Time) value ).toLocalTime().atOffset( OffsetDateTime.now().getOffset() ); } if ( Timestamp.class.isInstance( value ) ) { final Timestamp ts = (Timestamp) value; return OffsetTime.ofInstant( ts.toInstant(), ZoneId.systemDefault() ); } if ( Date.class.isInstance( value ) ) { final Date date = (Date) value; return OffsetTime.ofInstant( date.toInstant(), ZoneId.systemDefault() ); } if ( Long.class.isInstance( value ) ) { return OffsetTime.ofInstant( Instant.ofEpochMilli( (Long) value ), ZoneId.systemDefault() ); } if ( Calendar.class.isInstance( value ) ) { final Calendar calendar = (Calendar) value; return OffsetTime.ofInstant( calendar.toInstant(), calendar.getTimeZone().toZoneId() ); } throw unknownWrap( value.getClass() ); } }