blob: c948725f0d9cad75be5c607296ba94933e591e43 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2016 SAP AG 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:
* Mathias Kinzler (SAP AG) - initial implementation
* Thomas Wolf <thomas.wolf@paranor.ch> - Bug 495512
*******************************************************************************/
package org.eclipse.egit.ui.internal.push;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.egit.core.op.PushOperation;
import org.eclipse.egit.core.op.PushOperationResult;
import org.eclipse.egit.core.op.PushOperationSpecification;
import org.eclipse.egit.ui.Activator;
import org.eclipse.egit.ui.JobFamilies;
import org.eclipse.egit.ui.UIPreferences;
import org.eclipse.egit.ui.internal.UIText;
import org.eclipse.egit.ui.internal.credentials.EGitCredentialsProvider;
import org.eclipse.egit.ui.internal.jobs.RepositoryJob;
import org.eclipse.jface.action.IAction;
import org.eclipse.jgit.errors.NotSupportedException;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.transport.CredentialsProvider;
import org.eclipse.jgit.transport.RefSpec;
import org.eclipse.jgit.transport.RemoteConfig;
import org.eclipse.jgit.transport.RemoteRefUpdate;
import org.eclipse.jgit.transport.Transport;
import org.eclipse.jgit.transport.URIish;
import org.eclipse.osgi.util.NLS;
/**
* UI Wrapper for {@link PushOperation}
*/
public class PushOperationUI {
private final Repository repository;
private final boolean dryRun;
private final String destinationString;
private final RemoteConfig config;
private PushOperationSpecification spec;
private CredentialsProvider credentialsProvider;
private PushOperation op;
private final String remoteName;
private PushOperationResult expectedResult;
private boolean showConfigureButton = true;
/**
* @param repository
* @param remoteName
* @param dryRun
*
*/
public PushOperationUI(Repository repository, String remoteName,
boolean dryRun) {
this.repository = repository;
this.spec = null;
this.config = null;
this.remoteName = remoteName;
this.dryRun = dryRun;
destinationString = NLS.bind("{0} - {1}", repository.getDirectory() //$NON-NLS-1$
.getParentFile().getName(), remoteName);
}
/**
* @param repository
* @param config
* @param dryRun
*
*/
public PushOperationUI(Repository repository, RemoteConfig config,
boolean dryRun) {
this.repository = repository;
this.spec = null;
this.config = config;
this.remoteName = null;
this.dryRun = dryRun;
destinationString = NLS.bind("{0} - {1}", repository.getDirectory() //$NON-NLS-1$
.getParentFile().getName(), config.getName());
}
/**
* @param repository
* @param spec
* @param dryRun
*/
public PushOperationUI(Repository repository,
PushOperationSpecification spec, boolean dryRun) {
this.repository = repository;
this.spec = spec;
this.config = null;
this.remoteName = null;
this.dryRun = dryRun;
if (spec.getURIsNumber() == 1)
destinationString = spec.getURIs().iterator().next()
.toPrivateString();
else
destinationString = NLS.bind(
UIText.PushOperationUI_MultiRepositoriesDestinationString,
Integer.valueOf(spec.getURIsNumber()));
}
/**
* @param credentialsProvider
*/
public void setCredentialsProvider(CredentialsProvider credentialsProvider) {
this.credentialsProvider = credentialsProvider;
}
/**
* Set the expected result. If this is set, the result dialog in {@link #start()} will only be
* shown when the result is different from the expected result.
*
* @param expectedResult
*/
public void setExpectedResult(PushOperationResult expectedResult) {
this.expectedResult = expectedResult;
}
/**
* Set whether the "Configure..." button should be shown in the result
* dialog of {@link #start()}.
*
* @param showConfigureButton
*/
public void setShowConfigureButton(boolean showConfigureButton) {
this.showConfigureButton = showConfigureButton;
}
/**
* Executes this directly, without showing a confirmation dialog
*
* @param monitor
* @return the result of the operation
* @throws CoreException
*/
public PushOperationResult execute(IProgressMonitor monitor)
throws CoreException {
createPushOperation();
if (credentialsProvider != null)
op.setCredentialsProvider(credentialsProvider);
else
op.setCredentialsProvider(new EGitCredentialsProvider());
try {
op.run(monitor);
return op.getOperationResult();
} catch (InvocationTargetException e) {
throw new CoreException(Activator.createErrorStatus(e.getCause()
.getMessage(), e.getCause()));
}
}
private void createPushOperation() throws CoreException {
if (remoteName != null) {
op = new PushOperation(repository, remoteName, dryRun, getTimeout());
return;
}
if (spec == null) {
// spec == null => config was supplied in constructor
// we don't use the configuration directly, as it may contain
// unsaved changes and as we may need
// to add the default push RefSpec here
spec = new PushOperationSpecification();
List<URIish> urisToPush = new ArrayList<>();
for (URIish uri : config.getPushURIs())
urisToPush.add(uri);
if (urisToPush.isEmpty() && !config.getURIs().isEmpty())
urisToPush.add(config.getURIs().get(0));
List<RefSpec> pushRefSpecs = new ArrayList<>();
pushRefSpecs.addAll(config.getPushRefSpecs());
for (URIish uri : urisToPush) {
try {
// Fetch ref specs are passed here to make sure that the
// returned remote ref updates include tracking branch
// updates.
Collection<RemoteRefUpdate> remoteRefUpdates = Transport
.findRemoteRefUpdatesFor(repository, pushRefSpecs,
config.getFetchRefSpecs());
spec.addURIRefUpdates(uri, remoteRefUpdates);
} catch (NotSupportedException e) {
throw new CoreException(Activator.createErrorStatus(
e.getMessage(), e));
} catch (IOException e) {
throw new CoreException(Activator.createErrorStatus(
e.getMessage(), e));
}
}
}
op = new PushOperation(repository, spec, dryRun, getTimeout());
}
/**
* Starts the operation asynchronously showing a confirmation dialog after
* completion
*/
public void start() {
final Repository repo = repository;
if (repo == null) {
return;
}
Job job = new RepositoryJob(NLS.bind(UIText.PushOperationUI_PushJobName,
destinationString)) {
private PushOperationResult result;
@Override
protected IStatus performJob(IProgressMonitor monitor) {
try {
result = execute(monitor);
} catch (CoreException e) {
return Activator.createErrorStatus(e.getStatus()
.getMessage(), e);
}
return Status.OK_STATUS;
}
@Override
protected IAction getAction() {
if (expectedResult == null || !expectedResult.equals(result)) {
return new ShowPushResultAction(repo, result,
destinationString, showConfigureButton);
}
return null;
}
@Override
public boolean belongsTo(Object family) {
if (JobFamilies.PUSH.equals(family)) {
return true;
}
return super.belongsTo(family);
}
};
job.setUser(true);
job.schedule();
}
/**
* @return the string denoting the remote source
*/
public String getDestinationString() {
return destinationString;
}
private int getTimeout() {
return Activator.getDefault().getPreferenceStore()
.getInt(UIPreferences.REMOTE_CONNECTION_TIMEOUT);
}
}