blob: a43990d321f76d742b349fda4fd8f6e1ae1a4317 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation 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:
* 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.TeamException;
import org.eclipse.team.core.subscribers.*;
import org.eclipse.team.core.synchronize.*;
import org.eclipse.team.internal.core.TeamPlugin;
/**
* WorkingSet filter for a SyncSet.
*/
public class SyncInfoWorkingSetFilter extends FastSyncInfoFilter {
private IResource[] resources;
/* (non-Javadoc)
* @see org.eclipse.team.ui.sync.SyncInfoFilter#select(org.eclipse.team.core.subscribers.SyncInfo)
*/
public boolean select(SyncInfo info) {
// if there's no set, the resource is included
if (isEmpty()) return true;
return isIncluded(info.getLocal());
}
/*
* Answer true if the given resource is included in the working set
*/
private boolean isIncluded(IResource resource) {
// otherwise, if their is a parent of the resource in the set,
// it is included
for (int i = 0; i < resources.length; i++) {
IResource setResource = resources[i];
if (isParent(setResource, resource)) {
return true;
}
}
return false;
}
private boolean isParent(IResource parent, IResource child) {
return (parent.getFullPath().isPrefixOf(child.getFullPath()));
}
/* (non-Javadoc)
* @see org.eclipse.team.internal.ui.sync.views.SyncSetInputFromSubscriber#getRoots()
*/
public IResource[] getRoots(Subscriber subscriber) {
IResource[] roots = subscriber.roots();
if (isEmpty()) return roots;
// filter the roots by the selected working set
Set result = new HashSet();
for (int i = 0; i < roots.length; i++) {
IResource resource = roots[i];
result.addAll(Arrays.asList(getIntersectionWithSet(subscriber, resource)));
}
return (IResource[]) result.toArray(new IResource[result.size()]);
}
/*
* Answer the intersection between the given resource and it's children
* and the receiver's working set.
*/
private IResource[] getIntersectionWithSet(Subscriber subscriber, IResource resource) {
List result = new ArrayList();
for (int i = 0; i < resources.length; i++) {
IResource setResource = resources[i];
if (setResource != null) {
if (isParent(resource, setResource)) {
try {
if (subscriber.isSupervised(setResource)) {
result.add(setResource);
}
} catch (TeamException e) {
// Log the exception and add the resource to the list
TeamPlugin.log(e);
result.add(setResource);
}
} else if (isParent(setResource, resource)) {
result.add(resource);
}
}
}
return (IResource[]) result.toArray(new IResource[result.size()]);
}
public void setWorkingSet(IResource[] resources) {
this.resources = resources;
}
public IResource[] getWorkingSet() {
return this.resources;
}
private boolean isEmpty() {
return resources == null || resources.length == 0;
}
}