blob: 15a34318486c85988b790f841686e75d7f1a48ab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 Matthew Hall and others.
* 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:
* Matthew Hall - initial API and implementation (bug 215531)
* Matthew Hall - bug 230267
* (through ObservableViewerElementSet.java)
* Matthew Hall - bug 262269
******************************************************************************/
package org.eclipse.core.internal.databinding.identity;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.Set;
import org.eclipse.core.databinding.observable.Diffs;
import org.eclipse.core.databinding.observable.Realm;
import org.eclipse.core.databinding.observable.set.AbstractObservableSet;
import org.eclipse.core.databinding.observable.set.IObservableSet;
/**
* An {@link IObservableSet} of elements where elements are added, removed and
* compared by identity. Elements of the set are compared using <code>==</code>
* instead of {@link #equals(Object)}.
* <p>
* This class is <i>not</i> a strict implementation the {@link IObservableSet}
* interface. It intentionally violates the {@link Set} contract, which requires
* the use of {@link #equals(Object)} when comparing elements.
*
* @since 1.2
*/
public class IdentityObservableSet extends AbstractObservableSet {
private Set wrappedSet;
private Object elementType;
/**
* Constructs an IdentityObservableSet on the given {@link Realm}.
*
* @param realm
* the realm of the constructed set.
* @param elementType
* the element type of the constructed set.
*/
public IdentityObservableSet(Realm realm, Object elementType) {
super(realm);
this.wrappedSet = new IdentitySet();
this.elementType = elementType;
}
protected Set getWrappedSet() {
return wrappedSet;
}
public Object getElementType() {
return elementType;
}
public Iterator iterator() {
getterCalled();
final Iterator wrappedIterator = wrappedSet.iterator();
return new Iterator() {
Object last;
public boolean hasNext() {
getterCalled();
return wrappedIterator.hasNext();
}
public Object next() {
getterCalled();
return last = wrappedIterator.next();
}
public void remove() {
getterCalled();
wrappedIterator.remove();
fireSetChange(Diffs.createSetDiff(Collections.EMPTY_SET,
Collections.singleton(last)));
}
};
}
public boolean add(Object o) {
getterCalled();
boolean changed = wrappedSet.add(o);
if (changed)
fireSetChange(Diffs.createSetDiff(Collections.singleton(o),
Collections.EMPTY_SET));
return changed;
}
public boolean addAll(Collection c) {
getterCalled();
Set additions = new IdentitySet();
for (Iterator iterator = c.iterator(); iterator.hasNext();) {
Object element = iterator.next();
if (wrappedSet.add(element))
additions.add(element);
}
boolean changed = !additions.isEmpty();
if (changed)
fireSetChange(Diffs.createSetDiff(additions, Collections.EMPTY_SET));
return changed;
}
public boolean remove(Object o) {
getterCalled();
boolean changed = wrappedSet.remove(o);
if (changed)
fireSetChange(Diffs.createSetDiff(Collections.EMPTY_SET,
Collections.singleton(o)));
return changed;
}
public boolean removeAll(Collection c) {
getterCalled();
Set removals = new IdentitySet();
for (Iterator iterator = c.iterator(); iterator.hasNext();) {
Object element = iterator.next();
if (wrappedSet.remove(element))
removals.add(element);
}
boolean changed = !removals.isEmpty();
if (changed)
fireSetChange(Diffs.createSetDiff(Collections.EMPTY_SET, removals));
return changed;
}
public boolean retainAll(Collection c) {
getterCalled();
Set removals = new IdentitySet();
Object[] toRetain = c.toArray();
outer: for (Iterator iterator = wrappedSet.iterator(); iterator
.hasNext();) {
Object element = iterator.next();
// Cannot rely on c.contains(element) because we must compare
// elements using IElementComparer.
for (int i = 0; i < toRetain.length; i++) {
if (element == toRetain[i])
continue outer;
}
iterator.remove();
removals.add(element);
}
boolean changed = !removals.isEmpty();
if (changed)
fireSetChange(Diffs.createSetDiff(Collections.EMPTY_SET, removals));
return changed;
}
public void clear() {
getterCalled();
if (!wrappedSet.isEmpty()) {
Set removals = wrappedSet;
wrappedSet = new IdentitySet();
fireSetChange(Diffs.createSetDiff(Collections.EMPTY_SET, removals));
}
}
}