blob: 4f921b0c2eac99b607ed13e9ab4f6446aec8f2da [file] [log] [blame]
/*******************************************************************************
* 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.ccvs.core.syncinfo;
import java.util.*;
import org.eclipse.core.resources.*;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.team.core.TeamException;
import org.eclipse.team.core.subscribers.BackgroundEventHandler;
import org.eclipse.team.internal.ccvs.core.Policy;
import org.eclipse.team.internal.ccvs.core.resources.EclipseSynchronizer;
/**
* This class handles resources changes that are reported in deltas
* in a deferred manner (i.e. in a background job)
*/
public class DeferredResourceChangeHandler extends BackgroundEventHandler {
private static final int IGNORE_FILE_CHANGED = 1;
private Set changedIgnoreFiles = new HashSet();
/* (non-Javadoc)
* @see org.eclipse.team.core.subscribers.BackgroundEventHandler#getName()
*/
public String getName() {
return Policy.bind("DeferredResourceChangeHandler.0"); //$NON-NLS-1$
}
/* (non-Javadoc)
* @see org.eclipse.team.core.subscribers.BackgroundEventHandler#getErrorsTitle()
*/
public String getErrorsTitle() {
return Policy.bind("DeferredResourceChangeHandler.1"); //$NON-NLS-1$
}
/* (non-Javadoc)
* @see org.eclipse.team.core.subscribers.BackgroundEventHandler#processEvent(org.eclipse.team.core.subscribers.BackgroundEventHandler.Event, org.eclipse.core.runtime.IProgressMonitor)
*/
protected void processEvent(Event event, IProgressMonitor monitor) throws TeamException {
int type = event.getType();
switch (type) {
case IGNORE_FILE_CHANGED :
changedIgnoreFiles.add(event.getResource());
}
}
private IContainer[] getParents(Set files) {
Set parents = new HashSet();
for (Iterator iter = files.iterator(); iter.hasNext();) {
IFile file = (IFile) iter.next();
parents.add(file.getParent());
}
return (IContainer[]) parents.toArray(new IContainer[parents.size()]);
}
public void ignoreFileChanged(IFile file) {
queueEvent(new Event(file, IGNORE_FILE_CHANGED, IResource.DEPTH_ZERO));
}
/* (non-Javadoc)
* @see org.eclipse.team.core.subscribers.BackgroundEventHandler#dispatchEvents()
*/
protected void dispatchEvents() throws TeamException {
EclipseSynchronizer.getInstance().ignoreFilesChanged(getParents(changedIgnoreFiles));
changedIgnoreFiles.clear();
}
}