/* * Copyright 2007 The Apache Software Foundation. * * 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 net.sf.beanlib.hibernate4; import static net.sf.beanlib.utils.ClassUtils.isHibernatePackage; import static net.sf.beanlib.utils.ClassUtils.isJavaPackage; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.Collection; import java.util.Comparator; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.SortedSet; import java.util.TreeSet; import net.jcip.annotations.ThreadSafe; import net.sf.beanlib.hibernate.UnEnhancer; import net.sf.beanlib.provider.replicator.CollectionReplicator; import net.sf.beanlib.spi.BeanTransformerSpi; import net.sf.beanlib.spi.replicator.CollectionReplicatorSpi; import org.hibernate.Hibernate; /** * Hibernate 4 specific Collection Replicator. * * @author Joe D. Velopar */ public class Hibernate4CollectionReplicator extends CollectionReplicator { private static final Factory factory = new Factory(); public static final Factory getFactory() { return factory; } /** * Factory for {@link Hibernate4CollectionReplicator} * * @author Joe D. Velopar */ @ThreadSafe public static class Factory implements CollectionReplicatorSpi.Factory { private Factory() {} @Override public Hibernate4CollectionReplicator newCollectionReplicatable(BeanTransformerSpi beanTransformer) { return new Hibernate4CollectionReplicator(beanTransformer); } } public static Hibernate4CollectionReplicator newCollectionReplicatable(BeanTransformerSpi beanTransformer) { return factory.newCollectionReplicatable(beanTransformer); } protected Hibernate4CollectionReplicator(BeanTransformerSpi beanTransformer) { super(beanTransformer); } @Override public <V, T> T replicateCollection(Collection<V> from, Class<T> toClass) { if (!Hibernate.isInitialized(from)) Hibernate.initialize(from); return super.replicateCollection(from, toClass); } @Override protected <T> Collection<T> createToCollection(Collection<T> from) throws InstantiationException, IllegalAccessException, SecurityException, NoSuchMethodException, InvocationTargetException { Class<?> fromClass = from.getClass(); if (isJavaPackage(fromClass)) { if (from instanceof SortedSet) { SortedSet<T> fromSortedSet = (SortedSet<T>) from; Comparator<T> toComparator = createToComparator(fromSortedSet); if (toComparator != null) return this.createToSortedSetWithComparator(fromSortedSet, toComparator); } return createToInstanceAsCollection(from); } if (from instanceof SortedSet) { SortedSet<T> fromSortedSet = (SortedSet<T>) from; Comparator<T> toComparator = createToComparator(fromSortedSet); if (isHibernatePackage(fromClass)) return new TreeSet<T>(toComparator); Constructor<?> constructor = fromClass.getConstructor(Comparator.class); Object[] initargs = { toComparator }; @SuppressWarnings("unchecked") Collection<T> ret = (Collection<T>) constructor.newInstance(initargs); return ret; } if (from instanceof Set) { if (isHibernatePackage(fromClass)) return new HashSet<T>(); @SuppressWarnings("unchecked") Collection<T> ret = (Collection<T>) fromClass.newInstance(); return ret; } if (from instanceof List) { if (isHibernatePackage(fromClass)) return new ArrayList<T>(from.size()); @SuppressWarnings("unchecked") Collection<T> ret = (Collection<T>) fromClass.newInstance(); return ret; } // don't know what collection, so use list log.warn("Don't know what collection object:" + fromClass + ", so assume List."); return new ArrayList<T>(from.size()); } @Override protected <T> T createToInstance(Object from, Class<T> toClass) throws InstantiationException, IllegalAccessException, SecurityException, NoSuchMethodException { // figure out the pre-enhanced class Class<T> actualClass = UnEnhancer.getActualClass(from); Class<T> targetClass = chooseClass(actualClass, toClass); return newInstanceAsPrivileged(targetClass); } @Override protected final <T> T unenhanceObject(T from) { return UnEnhancer.unenhanceObject(from); } }