blob: 0bcf179851b49243b8e691d590bd5357eda3da74 [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.ui.sync.actions;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.Platform;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.team.core.TeamException;
import org.eclipse.team.core.subscribers.TeamSubscriber;
import org.eclipse.team.internal.ui.IPreferenceIds;
import org.eclipse.team.internal.ui.Policy;
import org.eclipse.team.internal.ui.TeamUIPlugin;
import org.eclipse.team.internal.ui.Utils;
import org.eclipse.team.internal.ui.actions.TeamAction;
import org.eclipse.team.internal.ui.jobs.RefreshSubscriberJob;
import org.eclipse.team.internal.ui.sync.sets.SubscriberInput;
import org.eclipse.team.internal.ui.sync.views.SynchronizeView;
import org.eclipse.team.ui.sync.SubscriberAction;
import org.eclipse.ui.actions.ActionContext;
public class RefreshAction extends Action {
private final SyncViewerActions actions;
private boolean refreshAll;
public RefreshAction(SyncViewerActions actions, boolean refreshAll) {
this.refreshAll = refreshAll;
this.actions = actions;
Utils.initAction(this, "action.refreshWithRemote."); //$NON-NLS-1$
}
public void run() {
final SynchronizeView view = actions.getSyncView();
ActionContext context = actions.getContext();
if(context != null) {
getResources(context.getSelection());
SubscriberInput input = (SubscriberInput)context.getInput();
IResource[] resources = getResources(context.getSelection());
if (refreshAll || resources.length == 0) {
// If no resources are selected, refresh all the subscriber roots
resources = input.workingSetRoots();
}
run(view, resources, input.getSubscriber());
}
}
private IResource[] getResources(ISelection selection) {
if(selection == null) {
return new IResource[0];
}
return (IResource[])TeamAction.getSelectedAdaptables(selection, IResource.class);
}
public static void run(SynchronizeView viewer, IResource[] resources, TeamSubscriber subscriber) {
// Cancel the scheduled background refresh or any other refresh that is happening.
// The scheduled background refresh will restart automatically.
Platform.getJobManager().cancel(RefreshSubscriberJob.getFamily());
if(TeamUIPlugin.getPlugin().getPreferenceStore().getBoolean(IPreferenceIds.SYNCVIEW_BACKGROUND_SYNC)) {
RefreshSubscriberJob job = new RefreshSubscriberJob(Policy.bind("SyncViewRefresh.taskName", new Integer(resources.length).toString(), subscriber.getName()), resources, subscriber); //$NON-NLS-1$
SubscriberAction.getJobStatusHandler().schedule(job);
} else {
runBlocking(viewer, subscriber, resources);
}
}
private static void runBlocking(SynchronizeView viewer, final TeamSubscriber s, final IResource[] resources) {
viewer.run(new IRunnableWithProgress() {
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
try {
monitor.beginTask(null, 100);
s.refresh(resources, IResource.DEPTH_INFINITE, Policy.subMonitorFor(monitor, 100));
} catch (TeamException e) {
throw new InvocationTargetException(e);
} finally {
monitor.done();
}
}
});
}
}