/* Name: - TimePointToDateMapping Description: - Requires: - Provides: - Part of: ProcessPuzzle Framework, Domain and Business Model Ready Architecture. Provides content, workflow and social networking functionality. http://www.processpuzzle.com ProcessPuzzle - Content and Workflow Management Integration Business Platform Author(s): - Zsolt Zsuffa Copyright: (C) 2011 This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.processpuzzle.persistence.typemapping.domain; import java.io.Serializable; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Types; import java.util.Date; import org.hibernate.HibernateException; import org.hibernate.engine.spi.SessionImplementor; import org.hibernate.type.StandardBasicTypes; import org.hibernate.type.Type; import org.hibernate.usertype.CompositeUserType; import com.processpuzzle.fundamental_types.domain.TimePoint; public class TimePointToDateMapping implements CompositeUserType { public static final int[] TYPES = { Types.DATE }; public Class<TimePoint> returnedClass() { return TimePoint.class; } public boolean equals( Object x, Object y ) throws HibernateException { if( x == y ) return true; if( x == null || y == null ) return false; return x.equals( y ); } public Object deepCopy( Object x ) throws HibernateException { if( x == null ) return null; TimePoint input = (TimePoint) x; TimePoint result = input; return result; } public boolean isMutable() { return false; } public Object nullSafeGet( ResultSet resultSet, String[] names, SessionImplementor session, Object owner ) throws HibernateException, SQLException { java.util.Date savedDate = (Date) StandardBasicTypes.DATE.nullSafeGet( resultSet, names[0], session ); return new TimePoint( savedDate ); } public void nullSafeSet( PreparedStatement statement, Object objectToSave, int index, SessionImplementor session ) throws HibernateException, SQLException { if( objectToSave == null ){ statement.setNull( index + 1, Types.DATE ); }else{ StandardBasicTypes.DATE.nullSafeSet( statement, ((TimePoint) objectToSave).getValue(), index, session ); } } public String[] getPropertyNames() { return new String[] { "date" }; } public Type[] getPropertyTypes() { return new Type[] { StandardBasicTypes.DATE }; } public Object getPropertyValue( Object component, int property ) throws HibernateException { TimePoint timePoint = (TimePoint) component; if( timePoint.getValue() != null ) return timePoint.getValue(); else return null; } public Object assemble( Serializable cached, SessionImplementor session, Object owner ) throws HibernateException { return deepCopy( cached ); } public Serializable disassemble( Object value, SessionImplementor session ) throws HibernateException { return (Serializable) deepCopy( value ); } public int hashCode( Object arg0 ) throws HibernateException { return arg0.hashCode(); } public Object replace( Object original, Object target, SessionImplementor session, Object owner ) throws HibernateException { return null; } public void setPropertyValue( Object component, int property, Object value ) throws HibernateException { throw new UnsupportedOperationException( "TimePoint is immutable!" ); } }