blob: 084ffae26d4e5b008696a68799e616872ce054b9 [file] [log] [blame]
/***************************************************************************
* Copyright (c) 2004 - 2008 Martin Taal
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Martin Taal - copied from CDORevisionPropertyHandler and adapted
**************************************************************************/
package org.eclipse.emf.cdo.server.internal.hibernate.tuplizer;
import org.eclipse.emf.cdo.spi.common.revision.InternalCDORevision;
import org.hibernate.HibernateException;
import org.hibernate.collection.PersistentCollection;
import org.hibernate.collection.PersistentList;
import org.hibernate.engine.SessionFactoryImplementor;
/**
* @author Martin Taal
*/
public class CDOManyReferenceSetter extends CDOPropertySetter
{
private static final long serialVersionUID = 1L;
public CDOManyReferenceSetter(CDORevisionTuplizer tuplizer, String propertyName)
{
super(tuplizer, propertyName);
}
@SuppressWarnings("unchecked")
@Override
public void set(Object target, Object value, SessionFactoryImplementor factory) throws HibernateException
{
// Do some checking
if (value instanceof HibernateMoveableListWrapper)
{
super.set(target, ((HibernateMoveableListWrapper)value).getDelegate(), factory);
return;
}
if (!(value instanceof PersistentList))
{
throw new IllegalArgumentException("Value is not a persistentlist but a " + value.getClass().getName());
}
// Only set it in the listholder
PersistableListHolder.getInstance().putListMapping(target, getCDOFeature(), (PersistentCollection)value);
// check if deep inside the persistentlist there is not already a delegate which is a hibernatemoveable list
// which contains the list which should really be set in the cdorevision
// persistentlist, hibernatemoveablelistwrapper, real list, if so then the real list should be set
final InternalCDORevision revision = (InternalCDORevision)target;
final Object currentValue = revision.getValue(getCDOFeature());
final PersistentList pl = (PersistentList)value;
if (currentValue == null)
{
final WrappedHibernateList whl = new WrappedHibernateList();
whl.setDelegate(pl);
super.set(target, whl, factory);
}
}
}