org.datanucleus.flush.CollectionRemoveOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datanucleus-core Show documentation
Show all versions of datanucleus-core Show documentation
DataNucleus Core provides the primary components of a heterogenous Java persistence solution.
It supports persistence API's being layered on top of the core functionality.
/**********************************************************************
Copyright (c) 2010 Peter Dettman and others. All rights reserved.
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.
Contributors:
...
**********************************************************************/
package org.datanucleus.flush;
import org.datanucleus.metadata.AbstractMemberMetaData;
import org.datanucleus.state.DNStateManager;
import org.datanucleus.store.types.scostore.CollectionStore;
import org.datanucleus.store.types.scostore.Store;
import org.datanucleus.util.StringUtils;
/**
* Remove operation for a collection.
* This is usually for the situation where we have a backing store, but also can be used where we are removing an object from a collection and
* the field is marked as cascade delete but we don't want to delete immediately.
*/
public class CollectionRemoveOperation implements SCOOperation
{
final DNStateManager sm;
final int fieldNumber;
final CollectionStore store;
/** The value to remove. */
final E value;
/** Whether to allow cascade-delete checks. */
final boolean allowCascadeDelete;
public CollectionRemoveOperation(DNStateManager sm, CollectionStore store, E value, boolean allowCascadeDelete)
{
this.sm = sm;
this.fieldNumber = store.getOwnerMemberMetaData().getAbsoluteFieldNumber();
this.store = store;
this.value = value;
this.allowCascadeDelete = allowCascadeDelete;
}
public CollectionRemoveOperation(DNStateManager sm, int fieldNum, E value, boolean allowCascadeDelete)
{
this.sm = sm;
this.fieldNumber = fieldNum;
this.store = null;
this.value = value;
this.allowCascadeDelete = allowCascadeDelete;
}
/* (non-Javadoc)
* @see org.datanucleus.flush.SCOOperation#getMemberMetaData()
*/
@Override
public AbstractMemberMetaData getMemberMetaData()
{
return store != null ? store.getOwnerMemberMetaData() : sm.getClassMetaData().getMetaDataForManagedMemberAtAbsolutePosition(fieldNumber);
}
/**
* Accessor for the value being removed.
* @return Value being removed
*/
public E getValue()
{
return value;
}
/**
* Perform the remove(Object) operation on the specified container.
*/
public void perform()
{
if (store != null)
{
store.remove(sm, value, -1, allowCascadeDelete);
}
}
public Store getStore()
{
return store;
}
/* (non-Javadoc)
* @see org.datanucleus.flush.Operation#getStateManager()
*/
public DNStateManager getStateManager()
{
return sm;
}
public String toString()
{
return "COLLECTION REMOVE : " + sm + " field=" + getMemberMetaData().getName() + " value=" + StringUtils.toJVMIDString(value);
}
}