Package org.eclipse.egit.core.op

Source Code of org.eclipse.egit.core.op.ConfigurePushAfterCloneTask

/*******************************************************************************
* Copyright (C) 2011, Stefan Lay <stefan.lay@sap.com>
*
* 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
*******************************************************************************/
package org.eclipse.egit.core.op;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.egit.core.Activator;
import org.eclipse.egit.core.op.CloneOperation.PostCloneTask;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.transport.RefSpec;
import org.eclipse.jgit.transport.RemoteConfig;
import org.eclipse.jgit.transport.URIish;

/**
* Configures the push specification of the cloned repository
*/
public class ConfigurePushAfterCloneTask implements PostCloneTask {

  private String pushRefSpec;

  private URIish pushURI;

  private final String remoteName;

  /**
   * @param remoteName
   * @param pushRefSpec
   * @param pushURI
   */
  public ConfigurePushAfterCloneTask(String remoteName, String pushRefSpec, URIish pushURI) {
    this.remoteName = remoteName;
    this.pushRefSpec = pushRefSpec;
    this.pushURI = pushURI;
  }

  /**
   * @param repository
   * @param monitor
   * @throws CoreException
   */
  public void execute(Repository repository, IProgressMonitor monitor)
      throws CoreException {
    try {
      RemoteConfig configToUse = new RemoteConfig(
          repository.getConfig(), remoteName);
      if (pushRefSpec != null)
        configToUse.addPushRefSpec(new RefSpec(pushRefSpec));
      if (pushURI != null)
        configToUse.addPushURI(pushURI);
      configToUse.update(repository.getConfig());
      repository.getConfig().save();
    } catch (Exception e) {
      throw new CoreException(Activator.error(e.getMessage(), e));
    }

  }

}
TOP

Related Classes of org.eclipse.egit.core.op.ConfigurePushAfterCloneTask

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.