PageRenderTime 35ms CodeModel.GetById 8ms RepoModel.GetById 0ms app.codeStats 0ms

/projects/netbeans-7.3/mercurial/src/org/netbeans/modules/mercurial/ui/queues/QDiffAction.java

https://gitlab.com/essere.lab.public/qualitas.class-corpus
Java | 121 lines | 67 code | 8 blank | 46 comment | 13 complexity | 50f60bf0005cbcfca10fcadc2e5ce511 MD5 | raw file
  1. /*
  2. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  3. *
  4. * Copyright 2011 Oracle and/or its affiliates. All rights reserved.
  5. *
  6. * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
  7. * Other names may be trademarks of their respective owners.
  8. *
  9. * The contents of this file are subject to the terms of either the GNU
  10. * General Public License Version 2 only ("GPL") or the Common
  11. * Development and Distribution License("CDDL") (collectively, the
  12. * "License"). You may not use this file except in compliance with the
  13. * License. You can obtain a copy of the License at
  14. * http://www.netbeans.org/cddl-gplv2.html
  15. * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
  16. * specific language governing permissions and limitations under the
  17. * License. When distributing the software, include this License Header
  18. * Notice in each file and include the License file at
  19. * nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this
  20. * particular file as subject to the "Classpath" exception as provided
  21. * by Oracle in the GPL Version 2 section of the License file that
  22. * accompanied this code. If applicable, add the following below the
  23. * License Header, with the fields enclosed by brackets [] replaced by
  24. * your own identifying information:
  25. * "Portions Copyrighted [year] [name of copyright owner]"
  26. *
  27. * If you wish your version of this file to be governed by only the CDDL
  28. * or only the GPL Version 2, indicate your decision by adding
  29. * "[Contributor] elects to include this software in this distribution
  30. * under the [CDDL or GPL Version 2] license." If you do not indicate a
  31. * single choice of license, a recipient has the option to distribute
  32. * your version of this file under either the CDDL, the GPL Version 2 or
  33. * to extend the choice of license to its licensees as provided above.
  34. * However, if you add GPL Version 2 code and therefore, elected the GPL
  35. * Version 2 license, then the option applies only if the new code is
  36. * made subject to such option by the copyright holder.
  37. *
  38. * Contributor(s):
  39. *
  40. * Portions Copyrighted 2011 Sun Microsystems, Inc.
  41. */
  42. package org.netbeans.modules.mercurial.ui.queues;
  43. import java.awt.EventQueue;
  44. import java.io.File;
  45. import java.util.Arrays;
  46. import java.util.List;
  47. import org.netbeans.modules.mercurial.HgException;
  48. import org.netbeans.modules.mercurial.HgProgressSupport;
  49. import org.netbeans.modules.mercurial.Mercurial;
  50. import org.netbeans.modules.mercurial.ui.actions.ContextAction;
  51. import org.netbeans.modules.mercurial.ui.diff.DiffAction;
  52. import org.netbeans.modules.mercurial.ui.log.HgLogMessage;
  53. import org.netbeans.modules.mercurial.util.HgCommand;
  54. import org.netbeans.modules.mercurial.util.HgUtils;
  55. import org.netbeans.modules.versioning.spi.VCSContext;
  56. import org.openide.DialogDisplayer;
  57. import org.openide.NotifyDescriptor;
  58. import org.openide.awt.ActionID;
  59. import org.openide.awt.ActionRegistration;
  60. import org.openide.nodes.Node;
  61. import org.openide.util.NbBundle;
  62. import org.openide.util.actions.SystemAction;
  63. /**
  64. *
  65. * @author ondra
  66. */
  67. @ActionID(id = "org.netbeans.modules.mercurial.ui.queues.QDiffAction", category = "Mercurial/Queues")
  68. @ActionRegistration(displayName = "#CTL_MenuItem_QDiff")
  69. public class QDiffAction extends ContextAction {
  70. @Override
  71. protected boolean enable (Node[] nodes) {
  72. return HgUtils.isFromHgRepository(HgUtils.getCurrentContext(nodes));
  73. }
  74. @Override
  75. protected String getBaseName (Node[] nodes) {
  76. return "CTL_MenuItem_QDiff"; //NOI18N
  77. }
  78. @Override
  79. protected void performContextAction (Node[] nodes) {
  80. VCSContext ctx = HgUtils.getCurrentContext(nodes);
  81. final File roots[] = HgUtils.getActionRoots(ctx);
  82. if (roots == null || roots.length == 0) return;
  83. final File root = Mercurial.getInstance().getRepositoryRoot(roots[0]);
  84. new HgProgressSupport() {
  85. @Override
  86. protected void perform () {
  87. try {
  88. List<HgLogMessage> parents = HgCommand.getParents(root, null, null);
  89. if (parents.size() != 1 || !Arrays.asList(parents.get(0).getTags()).contains(QPatch.TAG_QTIP)) {
  90. NotifyDescriptor.Message e = new NotifyDescriptor.Message(NbBundle.getMessage(QDiffAction.class, "MSG_DiffAction.error.notAtTip"), NotifyDescriptor.ERROR_MESSAGE); //NOI18N
  91. DialogDisplayer.getDefault().notifyLater(e);
  92. } else {
  93. final HgLogMessage.HgRevision parent = HgCommand.getParent(root, null, QPatch.TAG_QTIP);
  94. if (parent != null && parent != HgLogMessage.HgRevision.EMPTY) {
  95. EventQueue.invokeLater(new Runnable() {
  96. @Override
  97. public void run () {
  98. SystemAction.get(DiffAction.class).diff(roots, parent, HgLogMessage.HgRevision.CURRENT,
  99. NbBundle.getMessage(QDiffAction.class, "LBL_DiffView.name", //NOI18N
  100. roots.length == 1 ? roots[0].getName() : NbBundle.getMessage(QDiffAction.class, "LBL_DiffView.name.files", roots.length)), false); //NOI18N
  101. }
  102. });
  103. }
  104. }
  105. } catch (HgException.HgCommandCanceledException ex) {
  106. // canceled by user, do nothing
  107. } catch (HgException ex) {
  108. HgUtils.notifyException(ex);
  109. }
  110. }
  111. }.start(Mercurial.getInstance().getRequestProcessor(root), root, NbBundle.getMessage(QDiffAction.class, "LBL_DiffAction.progress")); //NOI18N
  112. }
  113. }