/* * Copyright 2010, 2011 Christopher Pheby * * Licensed 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 org.jadira.usertype.dateandtime.threetenbp.columnmapper; import java.sql.Timestamp; import org.jadira.usertype.spi.shared.DatabaseZoneConfigured; import org.threeten.bp.Instant; import org.threeten.bp.LocalDateTime; import org.threeten.bp.MonthDay; import org.threeten.bp.ZoneId; import org.threeten.bp.ZonedDateTime; import org.threeten.bp.format.DateTimeFormatter; import org.threeten.bp.format.DateTimeFormatterBuilder; import org.threeten.bp.temporal.ChronoField; /** * @deprecated Jadira now depends on Java 8 so you are recommended to switch to the threeten package types */ @Deprecated public class TimestampColumnMonthDayMapper extends AbstractTimestampThreeTenBPColumnMapper<MonthDay> implements DatabaseZoneConfigured<ZoneId> { private static final long serialVersionUID = -7670411089210984705L; public static final DateTimeFormatter LOCAL_DATETIME_FORMATTER = new DateTimeFormatterBuilder().appendPattern("yyyy-MM-dd HH:mm:ss").appendOptional(new DateTimeFormatterBuilder().appendLiteral('.').appendFraction(ChronoField.NANO_OF_SECOND, 1, 9, false).toFormatter()).toFormatter(); public TimestampColumnMonthDayMapper() { super(); } public TimestampColumnMonthDayMapper(ZoneId databaseZone) { super(databaseZone); } @Override public MonthDay fromNonNullString(String s) { return MonthDay.parse(s); } @Override public MonthDay fromNonNullValue(Timestamp value) { ZoneId currentDatabaseZone = getDatabaseZone() == null ? getDefault() : getDatabaseZone(); Instant instant = Instant.ofEpochMilli(value.getTime()); instant = instant.with(ChronoField.NANO_OF_SECOND, value.getNanos()); LocalDateTime ldt = LocalDateTime.ofInstant(instant, currentDatabaseZone); return MonthDay.of(ldt.getMonth(), ldt.getDayOfMonth()); } @Override public String toNonNullString(MonthDay value) { return value.toString(); } @Override public Timestamp toNonNullValue(MonthDay value) { LocalDateTime ldt = LocalDateTime.of(1970, value.getMonthValue(), value.getDayOfMonth(), 0, 0); ZoneId currentDatabaseZone = getDatabaseZone() == null ? getDefault() : getDatabaseZone(); ZonedDateTime zdt = ldt.atZone(currentDatabaseZone); final Timestamp timestamp = new Timestamp(zdt.toInstant().toEpochMilli()); return timestamp; } private static ZoneId getDefault() { ZoneId zone = null; try { try { String id = System.getProperty("user.timezone"); if (id != null) { zone = ZoneId.of(id); } } catch (RuntimeException ex) { zone = null; } if (zone == null) { zone = ZoneId.of(java.util.TimeZone.getDefault().getID()); } } catch (RuntimeException ex) { zone = null; } if (zone == null) { zone = ZoneId.of("Z"); } return zone; } @Override public ZoneId parseZone(String zoneString) { return ZoneId.of(zoneString); } }