Search in sources :

Example 41 with CollectionRemoveOperation

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

the class TreeSet method retainAll.

/**
 * Method to retain a Collection of elements (and remove all others).
 * @param c The collection to retain
 * @return Whether they were retained successfully.
 */
public boolean retainAll(java.util.Collection c) {
    if (c == null) {
        throw new NullPointerException("Input collection was null");
    }
    Collection collToRemove = new java.util.TreeSet();
    for (Object o : delegate) {
        if (!c.contains(o)) {
            collToRemove.add(o);
        }
    }
    boolean success = delegate.retainAll(c);
    if (success) {
        makeDirty();
        if (SCOUtils.useQueuedUpdate(ownerOP)) {
            // Queue any cascade delete
            Iterator iter = collToRemove.iterator();
            while (iter.hasNext()) {
                ownerOP.getExecutionContext().addOperationToQueue(new CollectionRemoveOperation(ownerOP, ownerMmd.getAbsoluteFieldNumber(), iter.next(), true));
            }
        } else if (SCOUtils.hasDependentElement(ownerMmd)) {
            // Perform the cascade delete
            Iterator iter = collToRemove.iterator();
            while (iter.hasNext()) {
                ownerOP.getExecutionContext().deleteObjectInternal(iter.next());
            }
        }
        if (ownerOP != null && !ownerOP.getExecutionContext().getTransaction().isActive()) {
            ownerOP.getExecutionContext().processNontransactionalUpdate();
        }
    }
    return success;
}
Also used : Iterator(java.util.Iterator) SCOCollectionIterator(org.datanucleus.store.types.SCOCollectionIterator) Collection(java.util.Collection) SCOCollection(org.datanucleus.store.types.SCOCollection) CollectionRemoveOperation(org.datanucleus.flush.CollectionRemoveOperation)

Example 42 with CollectionRemoveOperation

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

the class Vector method removeAll.

/**
 * Method to remove a Collection of elements from the Vector.
 * @param elements The collection
 * @return Whether it was removed ok.
 */
public synchronized boolean removeAll(Collection elements) {
    if (elements == null) {
        throw new NullPointerException();
    } else if (elements.isEmpty()) {
        return true;
    }
    boolean success = delegate.removeAll(elements);
    if (ownerOP != null) {
        if (ownerOP.getExecutionContext().getManageRelations()) {
            // Relationship management
            Iterator iter = elements.iterator();
            RelationshipManager relMgr = ownerOP.getExecutionContext().getRelationshipManager(ownerOP);
            while (iter.hasNext()) {
                relMgr.relationRemove(ownerMmd.getAbsoluteFieldNumber(), iter.next());
            }
        }
        // Cascade delete
        if (SCOUtils.useQueuedUpdate(ownerOP)) {
            Iterator iter = elements.iterator();
            while (iter.hasNext()) {
                ownerOP.getExecutionContext().addOperationToQueue(new CollectionRemoveOperation(ownerOP, ownerMmd.getAbsoluteFieldNumber(), iter.next(), true));
            }
        } else if (SCOUtils.hasDependentElement(ownerMmd)) {
            Iterator iter = elements.iterator();
            while (iter.hasNext()) {
                ownerOP.getExecutionContext().deleteObjectInternal(iter.next());
            }
        }
    }
    if (success) {
        makeDirty();
        if (ownerOP != null && !ownerOP.getExecutionContext().getTransaction().isActive()) {
            ownerOP.getExecutionContext().processNontransactionalUpdate();
        }
    }
    return success;
}
Also used : RelationshipManager(org.datanucleus.state.RelationshipManager) Iterator(java.util.Iterator) ListIterator(java.util.ListIterator) SCOListIterator(org.datanucleus.store.types.SCOListIterator) CollectionRemoveOperation(org.datanucleus.flush.CollectionRemoveOperation)

Example 43 with CollectionRemoveOperation

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

the class Vector method clear.

/**
 * Method to clear the Vector.
 */
public synchronized void clear() {
    if (ownerOP != null && ownerOP.getExecutionContext().getManageRelations()) {
        // Relationship management
        Iterator iter = delegate.iterator();
        RelationshipManager relMgr = ownerOP.getExecutionContext().getRelationshipManager(ownerOP);
        while (iter.hasNext()) {
            relMgr.relationRemove(ownerMmd.getAbsoluteFieldNumber(), iter.next());
        }
    }
    if (ownerOP != null && !delegate.isEmpty()) {
        // Cascade delete
        if (SCOUtils.useQueuedUpdate(ownerOP)) {
            java.util.List copy = new java.util.ArrayList(delegate);
            Iterator iter = copy.iterator();
            while (iter.hasNext()) {
                ownerOP.getExecutionContext().addOperationToQueue(new CollectionRemoveOperation(ownerOP, ownerMmd.getAbsoluteFieldNumber(), iter.next(), true));
            }
        } else if (SCOUtils.hasDependentElement(ownerMmd)) {
            java.util.List copy = new java.util.ArrayList(delegate);
            Iterator iter = copy.iterator();
            while (iter.hasNext()) {
                ownerOP.getExecutionContext().deleteObjectInternal(iter.next());
            }
        }
    }
    delegate.clear();
    makeDirty();
    if (ownerOP != null && !ownerOP.getExecutionContext().getTransaction().isActive()) {
        ownerOP.getExecutionContext().processNontransactionalUpdate();
    }
}
Also used : RelationshipManager(org.datanucleus.state.RelationshipManager) Iterator(java.util.Iterator) ListIterator(java.util.ListIterator) SCOListIterator(org.datanucleus.store.types.SCOListIterator) CollectionRemoveOperation(org.datanucleus.flush.CollectionRemoveOperation) SCOList(org.datanucleus.store.types.SCOList)

Example 44 with CollectionRemoveOperation

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

the class ArrayList method remove.

/**
 * Method to remove an element from the collection, and observe the flag for whether to allow cascade delete.
 * @param element The element
 * @param allowCascadeDelete Whether to allow cascade delete
 */
public boolean remove(Object element, boolean allowCascadeDelete) {
    makeDirty();
    if (useCache) {
        loadFromStore();
    }
    int size = useCache ? delegate.size() : -1;
    boolean contained = delegate.contains(element);
    boolean delegateSuccess = delegate.remove(element);
    boolean backingSuccess = true;
    if (backingStore != null) {
        if (SCOUtils.useQueuedUpdate(ownerOP)) {
            backingSuccess = contained;
            if (backingSuccess) {
                ownerOP.getExecutionContext().addOperationToQueue(new CollectionRemoveOperation(ownerOP, backingStore, element, allowCascadeDelete));
            }
        } else {
            try {
                backingSuccess = backingStore.remove(ownerOP, element, size, allowCascadeDelete);
            } catch (NucleusDataStoreException dse) {
                NucleusLogger.PERSISTENCE.warn(Localiser.msg("023013", "remove", ownerMmd.getName(), dse));
                backingSuccess = false;
            }
        }
    }
    if (ownerOP != null && !ownerOP.getExecutionContext().getTransaction().isActive()) {
        ownerOP.getExecutionContext().processNontransactionalUpdate();
    }
    return (backingStore != null ? backingSuccess : delegateSuccess);
}
Also used : NucleusDataStoreException(org.datanucleus.exceptions.NucleusDataStoreException) CollectionRemoveOperation(org.datanucleus.flush.CollectionRemoveOperation)

Example 45 with CollectionRemoveOperation

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

the class ArrayList method removeAll.

/**
 * Method to remove a collection of elements from the List.
 * @param elements Collection of elements to remove
 * @return Whether it was successful.
 */
public boolean removeAll(Collection elements) {
    if (elements == null) {
        throw new NullPointerException();
    } else if (elements.isEmpty()) {
        return true;
    }
    makeDirty();
    if (useCache) {
        loadFromStore();
    }
    int size = useCache ? delegate.size() : -1;
    Collection contained = null;
    if (backingStore != null && SCOUtils.useQueuedUpdate(ownerOP)) {
        // Check which are contained before updating the delegate
        contained = new java.util.HashSet();
        for (Object elem : elements) {
            if (contains(elem)) {
                contained.add(elem);
            }
        }
    }
    boolean delegateSuccess = delegate.removeAll(elements);
    if (backingStore != null && ownerOP != null) {
        boolean backingSuccess = true;
        if (SCOUtils.useQueuedUpdate(ownerOP)) {
            if (contained != null && !contained.isEmpty()) {
                backingSuccess = false;
                for (Object element : contained) {
                    backingSuccess = true;
                    ownerOP.getExecutionContext().addOperationToQueue(new CollectionRemoveOperation(ownerOP, backingStore, element, true));
                }
            }
        } else {
            try {
                backingSuccess = backingStore.removeAll(ownerOP, elements, size);
            } catch (NucleusDataStoreException dse) {
                NucleusLogger.PERSISTENCE.warn(Localiser.msg("023013", "removeAll", ownerMmd.getName(), dse));
                backingSuccess = false;
            }
        }
        if (!ownerOP.getExecutionContext().getTransaction().isActive()) {
            ownerOP.getExecutionContext().processNontransactionalUpdate();
        }
        return backingSuccess;
    }
    if (ownerOP != null && !ownerOP.getExecutionContext().getTransaction().isActive()) {
        ownerOP.getExecutionContext().processNontransactionalUpdate();
    }
    return delegateSuccess;
}
Also used : NucleusDataStoreException(org.datanucleus.exceptions.NucleusDataStoreException) Collection(java.util.Collection) CollectionRemoveOperation(org.datanucleus.flush.CollectionRemoveOperation)

Aggregations

CollectionRemoveOperation (org.datanucleus.flush.CollectionRemoveOperation)56 Iterator (java.util.Iterator)36 RelationshipManager (org.datanucleus.state.RelationshipManager)28 NucleusDataStoreException (org.datanucleus.exceptions.NucleusDataStoreException)26 SCOCollectionIterator (org.datanucleus.store.types.SCOCollectionIterator)26 Collection (java.util.Collection)17 ListIterator (java.util.ListIterator)10 SCOCollection (org.datanucleus.store.types.SCOCollection)10 SCOListIterator (org.datanucleus.store.types.SCOListIterator)10 SCOList (org.datanucleus.store.types.SCOList)5 AbstractList (java.util.AbstractList)1