Package org.eclipse.egit.ui.internal.history.command

Source Code of org.eclipse.egit.ui.internal.history.command.RewordHandler

/*******************************************************************************
*  Copyright (c) 2014 Maik Schreiber
*  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:
*    Maik Schreiber - initial implementation
*******************************************************************************/
package org.eclipse.egit.ui.internal.history.command;

import java.io.IOException;

import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.egit.core.CommitUtil;
import org.eclipse.egit.ui.internal.CommonUtils;
import org.eclipse.egit.ui.internal.UIText;
import org.eclipse.egit.ui.internal.commit.RepositoryCommit;
import org.eclipse.egit.ui.internal.history.GitHistoryPage;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.lib.RepositoryState;
import org.eclipse.jgit.revwalk.RevCommit;
import org.eclipse.ui.handlers.HandlerUtil;

/** Prompts to enter a new commit message for a commit. */
public class RewordHandler extends AbstractHistoryCommandHandler {
  public Object execute(ExecutionEvent event) throws ExecutionException {
    Repository repository = getRepository(event);
    RevCommit commit = getSelectedCommit(event);

    try {
      if (!CommitUtil.isCommitInCurrentBranch(commit, repository)) {
        MessageDialog.openError(
            HandlerUtil.getActiveShellChecked(event),
            UIText.RewordHandler_Error_Title,
            UIText.RewordHandler_CommitNotOnCurrentBranch);
        return null;
      }
    } catch (IOException e) {
      throw new ExecutionException(
          UIText.RewordHandler_ErrorCheckingIfCommitIsOnCurrentBranch,
          e);
    }

    final IStructuredSelection selected = new StructuredSelection(
        new RepositoryCommit(repository, commit));
    CommonUtils
        .runCommand(
            org.eclipse.egit.ui.internal.commit.command.RewordHandler.ID,
            selected);

    return null;
  }

  @Override
  public boolean isEnabled() {
    GitHistoryPage page = getPage();
    if (page == null)
      return false;
    IStructuredSelection selection = getSelection(page);
    if (selection.size() != 1)
      return false;
    Repository repository = getRepository(page);
    if (repository.getRepositoryState() != RepositoryState.SAFE)
      return false;
    RevCommit commit = (RevCommit) selection.getFirstElement();
    return (commit.getParentCount() == 1);
  }
}
TOP

Related Classes of org.eclipse.egit.ui.internal.history.command.RewordHandler

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.