Package org.eclipse.egit.core.op

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

/******************************************************************************
*  Copyright (c) 2012, 2014 GitHub Inc 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:
*    Kevin Sawicki (GitHub Inc.) - initial API and implementation
*****************************************************************************/
package org.eclipse.egit.core.op;

import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.IWorkspaceRunnable;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
import org.eclipse.egit.core.internal.job.RuleUtil;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.StashCreateCommand;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.api.errors.JGitInternalException;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.revwalk.RevCommit;
import org.eclipse.team.core.TeamException;

/**
* Operation that creates a stashed commit for a repository
*/
public class StashCreateOperation implements IEGitOperation {

  private final Repository repository;

  private final String message;

  private RevCommit commit;

  private final boolean includeUntracked;

  /**
   * Create operation for repository
   *
   * @param repository
   */
  public StashCreateOperation(final Repository repository) {
    this(repository, null, false);
  }

  /**
   * Create operation for repository
   *
   * @param repository
   * @param message
   */
  public StashCreateOperation(final Repository repository,
      final String message) {
    this(repository, message, false);
  }

  /**
   * Create operation for repository
   *
   * @param repository
   * @param message
   * @param includeUntracked
   */
  public StashCreateOperation(final Repository repository,
      final String message, final boolean includeUntracked) {
    this.repository = repository;
    this.message = message;
    this.includeUntracked = includeUntracked;
  }

  /**
   * Get stashed commit
   *
   * @return commit
   */
  public RevCommit getCommit() {
    return commit;
  }

  public void execute(IProgressMonitor monitor) throws CoreException {
    IWorkspaceRunnable action = new IWorkspaceRunnable() {

      public void run(IProgressMonitor pm) throws CoreException {
        try {
          StashCreateCommand command = Git.wrap(repository).stashCreate();
          if (message != null)
            command.setWorkingDirectoryMessage(message);
          command.setIncludeUntracked(includeUntracked);
          commit = command.call();
        } catch (JGitInternalException e) {
          throw new TeamException(e.getLocalizedMessage(),
              e.getCause());
        } catch (GitAPIException e) {
          throw new TeamException(e.getLocalizedMessage(),
              e.getCause());
        } finally {
          if (commit != null)
            repository.notifyIndexChanged();
          pm.done();
        }
      }
    };
    ResourcesPlugin.getWorkspace().run(action, getSchedulingRule(),
        IWorkspace.AVOID_UPDATE,
        monitor != null ? monitor : new NullProgressMonitor());
  }

  public ISchedulingRule getSchedulingRule() {
    return RuleUtil.getRule(repository);
  }
}
TOP

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

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.