Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/subscribers/SyncInfoTreeChangeEvent.java')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/subscribers/SyncInfoTreeChangeEvent.java95
1 files changed, 95 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/subscribers/SyncInfoTreeChangeEvent.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/subscribers/SyncInfoTreeChangeEvent.java
new file mode 100644
index 000000000..5cb06dd60
--- /dev/null
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/subscribers/SyncInfoTreeChangeEvent.java
@@ -0,0 +1,95 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.team.internal.core.subscribers;
+
+import java.util.*;
+
+import org.eclipse.core.resources.IResource;
+import org.eclipse.team.core.synchronize.ISyncInfoTreeChangeEvent;
+import org.eclipse.team.core.synchronize.SyncInfoSet;
+
+public class SyncInfoTreeChangeEvent extends SyncSetChangedEvent implements ISyncInfoTreeChangeEvent {
+
+ private Set removedSubtrees = new HashSet();
+ private Set addedSubtrees = new HashSet();
+
+ public SyncInfoTreeChangeEvent(SyncInfoSet set) {
+ super(set);
+ }
+
+ public void removedSubtreeRoot(IResource root) {
+ if (addedSubtrees.contains(root)) {
+ // The root was added and removed which is a no-op
+ addedSubtrees.remove(root);
+ } else if (isDescendantOfAddedRoot(root)) {
+ // Nothing needs to be done since no listeners ever knew about the root
+ } else {
+ // check if the root is a child of an existing root
+ // (in which case it need not be added).
+ // Also, remove any exisiting roots that are children
+ // of the new root
+ for (Iterator iter = removedSubtrees.iterator(); iter.hasNext();) {
+ IResource element = (IResource) iter.next();
+ // check if the root is already in the list
+ if (root.equals(element)) return;
+ if (isParent(root, element)) {
+ // the root invalidates the current element
+ iter.remove();
+ } else if (isParent(element, root)) {
+ // the root is a child of an existing element
+ return;
+ }
+ }
+ removedSubtrees.add(root);
+ }
+ }
+
+ private boolean isParent(IResource root, IResource element) {
+ return root.getFullPath().isPrefixOf(element.getFullPath());
+ }
+
+ public void addedSubtreeRoot(IResource parent) {
+ if (removedSubtrees.contains(parent)) {
+ // The root was re-added. Just removing the removedRoot
+ // may not give the proper event.
+ // Since we can't be sure, just force a reset.
+ reset();
+ } else {
+ // only add the root if their isn't a higher root in the list already
+ if (!isDescendantOfAddedRoot(parent)) {
+ addedSubtrees.add(parent);
+ }
+ }
+ }
+
+ private boolean isDescendantOfAddedRoot(IResource resource) {
+ for (Iterator iter = addedSubtrees.iterator(); iter.hasNext();) {
+ IResource root = (IResource) iter.next();
+ if (isParent(root, resource)) {
+ // There is a higher added root already in the list
+ return true;
+ }
+ }
+ return false;
+ }
+
+ public IResource[] getAddedSubtreeRoots() {
+ return (IResource[]) addedSubtrees.toArray(new IResource[addedSubtrees.size()]);
+ }
+
+ public IResource[] getRemovedSubtreeRoots() {
+ return (IResource[]) removedSubtrees.toArray(new IResource[removedSubtrees.size()]);
+ }
+
+ public boolean isEmpty() {
+ return super.isEmpty() && removedSubtrees.isEmpty() && addedSubtrees.isEmpty();
+ }
+}

Back to the top