use of org.datanucleus.flush.ListAddAtOperation in project datanucleus-core by datanucleus.
the class List method addAll.
/**
* Method to add a collection of elements.
* @param elements The collection of elements to add.
* @param index The position to add them
* @return Whether they were added successfully.
*/
public boolean addAll(int index, Collection elements) {
boolean success = delegate.addAll(index, elements);
if (ownerOP != null && ownerOP.getExecutionContext().getManageRelations()) {
// Relationship management
Iterator iter = elements.iterator();
RelationshipManager relMgr = ownerOP.getExecutionContext().getRelationshipManager(ownerOP);
while (iter.hasNext()) {
relMgr.relationAdd(ownerMmd.getAbsoluteFieldNumber(), iter.next());
}
}
if (success) {
if (SCOUtils.useQueuedUpdate(ownerOP)) {
int pos = index;
for (Object element : elements) {
ownerOP.getExecutionContext().addOperationToQueue(new ListAddAtOperation(ownerOP, ownerMmd.getAbsoluteFieldNumber(), pos++, element));
}
}
makeDirty();
if (ownerOP != null && !ownerOP.getExecutionContext().getTransaction().isActive()) {
ownerOP.getExecutionContext().processNontransactionalUpdate();
}
}
return success;
}
use of org.datanucleus.flush.ListAddAtOperation in project datanucleus-core by datanucleus.
the class List method add.
/**
* Method to add an element to the List at a position.
* @param element The element to add
* @param index The position
*/
public void add(int index, E element) {
delegate.add(index, element);
if (ownerOP != null && ownerOP.getExecutionContext().getManageRelations()) {
ownerOP.getExecutionContext().getRelationshipManager(ownerOP).relationAdd(ownerMmd.getAbsoluteFieldNumber(), element);
}
if (SCOUtils.useQueuedUpdate(ownerOP)) {
ownerOP.getExecutionContext().addOperationToQueue(new ListAddAtOperation(ownerOP, ownerMmd.getAbsoluteFieldNumber(), index, element));
}
makeDirty();
if (ownerOP != null && !ownerOP.getExecutionContext().getTransaction().isActive()) {
ownerOP.getExecutionContext().processNontransactionalUpdate();
}
}
use of org.datanucleus.flush.ListAddAtOperation in project datanucleus-core by datanucleus.
the class ArrayList method add.
/**
* Method to add an element to a position in the ArrayList.
* @param index The position
* @param element The new element
*/
public void add(int index, E element) {
delegate.add(index, element);
if (ownerOP != null && ownerOP.getExecutionContext().getManageRelations()) {
ownerOP.getExecutionContext().getRelationshipManager(ownerOP).relationAdd(ownerMmd.getAbsoluteFieldNumber(), element);
}
if (SCOUtils.useQueuedUpdate(ownerOP)) {
ownerOP.getExecutionContext().addOperationToQueue(new ListAddAtOperation(ownerOP, ownerMmd.getAbsoluteFieldNumber(), index, element));
}
makeDirty();
if (ownerOP != null && !ownerOP.getExecutionContext().getTransaction().isActive()) {
ownerOP.getExecutionContext().processNontransactionalUpdate();
}
}
use of org.datanucleus.flush.ListAddAtOperation in project datanucleus-core by datanucleus.
the class List method add.
/**
* Method to add an element to the List at a position.
* @param element The element to add
* @param index The position
*/
public void add(int index, E element) {
// Reject inappropriate elements
if (!allowNulls && element == null) {
throw new NullPointerException("Nulls not allowed for collection at field " + ownerMmd.getName() + " but element is null");
}
if (useCache) {
loadFromStore();
}
if (backingStore != null) {
if (SCOUtils.useQueuedUpdate(ownerOP)) {
ownerOP.getExecutionContext().addOperationToQueue(new ListAddAtOperation(ownerOP, backingStore, index, element));
} else {
try {
backingStore.add(ownerOP, element, index, useCache ? delegate.size() : -1);
} catch (NucleusDataStoreException dse) {
throw new IllegalArgumentException(Localiser.msg("023013", "add", ownerMmd.getName(), dse), dse);
}
}
}
// Only make it dirty after adding the element(s) to the datastore so we give it time
// to be inserted - otherwise jdoPreStore on this object would have been called before completing the addition
makeDirty();
delegate.add(index, element);
if (ownerOP != null && !ownerOP.getExecutionContext().getTransaction().isActive()) {
ownerOP.getExecutionContext().processNontransactionalUpdate();
}
}
use of org.datanucleus.flush.ListAddAtOperation in project datanucleus-core by datanucleus.
the class Stack method add.
// ------------------------------ Mutator methods --------------------------
/**
* Method to add an element to a position in the Stack
*
* @param index The position
* @param element The new element
*/
public void add(int index, E element) {
// Reject inappropriate elements
if (!allowNulls && element == null) {
throw new NullPointerException("Nulls not allowed for collection at field " + ownerMmd.getName() + " but element is null");
}
if (useCache) {
loadFromStore();
}
if (backingStore != null) {
if (SCOUtils.useQueuedUpdate(ownerOP)) {
ownerOP.getExecutionContext().addOperationToQueue(new ListAddAtOperation(ownerOP, backingStore, index, element));
} else {
try {
backingStore.add(ownerOP, element, index, useCache ? delegate.size() : -1);
} catch (NucleusDataStoreException dse) {
throw new IllegalArgumentException(Localiser.msg("023013", "add", ownerMmd.getName(), dse), dse);
}
}
}
// Only make it dirty after adding the element(s) to the datastore so we give it time
// to be inserted - otherwise jdoPreStore on this object would have been called before completing the addition
makeDirty();
delegate.add(index, element);
if (ownerOP != null && !ownerOP.getExecutionContext().getTransaction().isActive()) {
ownerOP.getExecutionContext().processNontransactionalUpdate();
}
}
Aggregations