org.eclipse.egit.core.op.StashCreateOperation.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.egit.core.op.StashCreateOperation.java

Source

/******************************************************************************
 *  Copyright (c) 2012 GitHub Inc.
 *  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.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.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;

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

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

    /**
     * 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.setIndexMessage(message);
                        command.setWorkingDirectoryMessage(message);
                    }
                    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, monitor != null ? monitor : new NullProgressMonitor());
    }

    public ISchedulingRule getSchedulingRule() {
        return ResourcesPlugin.getWorkspace().getRoot();
    }
}