Search in sources :

Example 11 with ListAddAtOperation

use of org.datanucleus.flush.ListAddAtOperation in project datanucleus-core by datanucleus.

the class Vector method addAll.

/**
 * Method to add a Collection to a position in the Vector.
 * @param index Position to insert the collection.
 * @param elements The collection
 * @return Whether it was added ok.
 */
public synchronized boolean addAll(int index, Collection elements) {
    if (useCache) {
        loadFromStore();
    }
    boolean backingSuccess = true;
    if (backingStore != null) {
        if (SCOUtils.useQueuedUpdate(ownerOP)) {
            int pos = index;
            for (Object element : elements) {
                ownerOP.getExecutionContext().addOperationToQueue(new ListAddAtOperation(ownerOP, backingStore, pos++, element));
            }
        } else {
            try {
                backingSuccess = backingStore.addAll(ownerOP, elements, index, useCache ? delegate.size() : -1);
            } catch (NucleusDataStoreException dse) {
                throw new IllegalArgumentException(Localiser.msg("023013", "addAll", 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();
    boolean delegateSuccess = delegate.addAll(index, elements);
    if (ownerOP != null && !ownerOP.getExecutionContext().getTransaction().isActive()) {
        ownerOP.getExecutionContext().processNontransactionalUpdate();
    }
    return backingStore != null ? backingSuccess : delegateSuccess;
}
Also used : NucleusDataStoreException(org.datanucleus.exceptions.NucleusDataStoreException) ListAddAtOperation(org.datanucleus.flush.ListAddAtOperation)

Example 12 with ListAddAtOperation

use of org.datanucleus.flush.ListAddAtOperation in project datanucleus-core by datanucleus.

the class Vector method add.

// --------------------------- Mutator methods -----------------------------
/**
 * Method to add an element to a position in the Vector.
 * @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();
    }
}
Also used : NucleusDataStoreException(org.datanucleus.exceptions.NucleusDataStoreException) ListAddAtOperation(org.datanucleus.flush.ListAddAtOperation)

Example 13 with ListAddAtOperation

use of org.datanucleus.flush.ListAddAtOperation in project datanucleus-core by datanucleus.

the class Stack method add.

/**
 * 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) {
    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();
    }
}
Also used : ListAddAtOperation(org.datanucleus.flush.ListAddAtOperation)

Example 14 with ListAddAtOperation

use of org.datanucleus.flush.ListAddAtOperation in project datanucleus-core by datanucleus.

the class Stack method addAll.

/**
 * Method to add a Collection to a position in the Stack
 * @param index Position to insert the collection.
 * @param elements The collection
 * @return Whether it was added ok.
 */
public synchronized 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;
}
Also used : RelationshipManager(org.datanucleus.state.RelationshipManager) ListAddAtOperation(org.datanucleus.flush.ListAddAtOperation) Iterator(java.util.Iterator) ListIterator(java.util.ListIterator) SCOListIterator(org.datanucleus.store.types.SCOListIterator)

Example 15 with ListAddAtOperation

use of org.datanucleus.flush.ListAddAtOperation in project datanucleus-core by datanucleus.

the class Vector method add.

/**
 * Method to add an element to a position in the Vector.
 * @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();
    }
}
Also used : ListAddAtOperation(org.datanucleus.flush.ListAddAtOperation)

Aggregations

ListAddAtOperation (org.datanucleus.flush.ListAddAtOperation)21 NucleusDataStoreException (org.datanucleus.exceptions.NucleusDataStoreException)10 Iterator (java.util.Iterator)5 ListIterator (java.util.ListIterator)5 RelationshipManager (org.datanucleus.state.RelationshipManager)5 SCOListIterator (org.datanucleus.store.types.SCOListIterator)5