blob: c9dd433e4049ceb8b5f2cba165bcc602ec3eadfb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 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.ITeamStatus;
import org.eclipse.team.core.synchronize.*;
/**
* This event keeps track of the changes in a sync set
*/
public class SyncSetChangedEvent implements ISyncInfoSetChangeEvent {
private SyncInfoSet set;
// List that accumulate changes
// SyncInfo
private Map changedResources = new HashMap();
private Set removedResources = new HashSet();
private Map addedResources = new HashMap();
private boolean reset = false;
private List errors = new ArrayList();
public SyncSetChangedEvent(SyncInfoSet set) {
super();
this.set = set;
}
public void added(SyncInfo info) {
if (removedResources.contains(info.getLocal())) {
// A removal followed by an addition is treated as a change
removedResources.remove(info.getLocal());
changed(info);
} else {
addedResources.put(info.getLocal(), info);
}
}
public void removed(IResource resource, SyncInfo info) {
if (changedResources.containsKey(resource)) {
// No use in reporting the change since it has subsequently been removed
changedResources.remove(resource);
} else if (addedResources.containsKey(resource)) {
// An addition followed by a removal can be dropped
addedResources.remove(resource);
return;
}
removedResources.add(resource);
}
public void changed(SyncInfo info) {
IResource resource = info.getLocal();
if (addedResources.containsKey(resource)) {
// An addition followed by a change is an addition
addedResources.put(resource, info);
return;
}
changedResources.put(resource, info);
}
public SyncInfo[] getAddedResources() {
return (SyncInfo[]) addedResources.values().toArray(new SyncInfo[addedResources.size()]);
}
public SyncInfo[] getChangedResources() {
return (SyncInfo[]) changedResources.values().toArray(new SyncInfo[changedResources.size()]);
}
public IResource[] getRemovedResources() {
return (IResource[]) removedResources.toArray(new IResource[removedResources.size()]);
}
public SyncInfoSet getSet() {
return set;
}
public void reset() {
reset = true;
}
public boolean isReset() {
return reset;
}
public boolean isEmpty() {
return changedResources.isEmpty() && removedResources.isEmpty() && addedResources.isEmpty() && errors.isEmpty();
}
public void errorOccurred(ITeamStatus status) {
errors.add(status);
}
public ITeamStatus[] getErrors() {
return (ITeamStatus[]) errors.toArray(new ITeamStatus[errors.size()]);
}
}