/servers/jain-slee/tools/eclipslee/plugin/plugins/org.mobicents.eclipslee.servicecreation/src/org/mobicents/eclipslee/servicecreation/popup/actions/DeleteModuleSubmenu.java

http://mobicents.googlecode.com/ · Java · 164 lines · 109 code · 28 blank · 27 comment · 15 complexity · 9ad13c3f74ef5ffa64393c4e50f1bbb9 MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright 2011, Red Hat, Inc. and individual contributors by the
  4. * @authors tag. See the copyright.txt in the distribution for a
  5. * full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. package org.mobicents.eclipslee.servicecreation.popup.actions;
  23. import java.io.InputStreamReader;
  24. import org.apache.maven.model.Model;
  25. import org.apache.maven.model.io.xpp3.MavenXpp3Reader;
  26. import org.eclipse.core.resources.IFile;
  27. import org.eclipse.core.resources.IProject;
  28. import org.eclipse.jface.action.IAction;
  29. import org.eclipse.jface.action.IMenuCreator;
  30. import org.eclipse.jface.viewers.ISelection;
  31. import org.eclipse.jface.viewers.IStructuredSelection;
  32. import org.eclipse.swt.SWT;
  33. import org.eclipse.swt.events.MenuAdapter;
  34. import org.eclipse.swt.events.MenuEvent;
  35. import org.eclipse.swt.events.SelectionAdapter;
  36. import org.eclipse.swt.events.SelectionEvent;
  37. import org.eclipse.swt.widgets.Control;
  38. import org.eclipse.swt.widgets.Menu;
  39. import org.eclipse.swt.widgets.MenuItem;
  40. import org.eclipse.ui.IObjectActionDelegate;
  41. import org.eclipse.ui.IWorkbenchPart;
  42. import org.mobicents.eclipslee.servicecreation.ServiceCreationPlugin;
  43. /**
  44. *
  45. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  46. */
  47. public class DeleteModuleSubmenu implements IObjectActionDelegate, IMenuCreator {
  48. public DeleteModuleSubmenu() {
  49. super();
  50. }
  51. public void run(IAction action) {
  52. }
  53. public void setActivePart(IAction action, IWorkbenchPart targetPart) {
  54. }
  55. public void dispose() {
  56. }
  57. public void selectionChanged(IAction action, ISelection selection) {
  58. if (selection instanceof IStructuredSelection) {
  59. fFillMenu = true;
  60. if (action != null) {
  61. if (fDelegateAction != action) {
  62. fDelegateAction = action;
  63. fDelegateAction.setMenuCreator(this);
  64. }
  65. this.selection = selection;
  66. action.setEnabled(true);
  67. return;
  68. }
  69. return;
  70. }
  71. action.setEnabled(false);
  72. }
  73. public Menu getMenu(Control control) { return null; } // NOP
  74. public Menu getMenu(Menu parent) {
  75. Menu menu = new Menu(parent);
  76. menu.addMenuListener(new MenuAdapter() {
  77. public void menuShown(MenuEvent e) {
  78. if (fFillMenu) {
  79. Menu m = (Menu) e.widget;
  80. MenuItem items[] = m.getItems();
  81. for (int i= 0; i < items.length; i++)
  82. items[i].dispose();
  83. fillMenu(m);
  84. fFillMenu = false;
  85. }
  86. }
  87. });
  88. return menu;
  89. }
  90. private void fillMenu(Menu menu) {
  91. createModulesMenus(menu);
  92. }
  93. private void createModulesMenus(Menu parent) {
  94. if (selection == null && selection.isEmpty()) {
  95. return;
  96. }
  97. if (!(selection instanceof IStructuredSelection)) {
  98. return;
  99. }
  100. IStructuredSelection ssel = (IStructuredSelection) selection;
  101. if (ssel.size() > 1) {
  102. return;
  103. }
  104. // Get the first (and only) item in the selection.
  105. Object obj = ssel.getFirstElement();
  106. // project selected.
  107. if (obj instanceof IProject) {
  108. try {
  109. IProject project = (IProject) obj;
  110. IFile parentPom = project.getFile("pom.xml");
  111. MavenXpp3Reader reader = new MavenXpp3Reader();
  112. Model model = reader.read(new InputStreamReader(parentPom.getContents()));
  113. for(String module : model.getModules()) {
  114. if(!module.equals("du")) {
  115. MenuItem item = new MenuItem(parent, SWT.NONE);
  116. item.setText(module);
  117. item.addSelectionListener(new DeleteSelectionListener());
  118. }
  119. }
  120. } catch (Exception e) {
  121. ServiceCreationPlugin.log("Exception caught creating menu: " + e.getMessage());
  122. }
  123. }
  124. }
  125. private class DeleteSelectionListener extends SelectionAdapter {
  126. public void widgetSelected(SelectionEvent e) {
  127. MenuItem item = (MenuItem) e.getSource();
  128. DeleteModuleAction action = new DeleteModuleAction(item.getText());
  129. action.selectionChanged(null, selection);
  130. action.run(null);
  131. }
  132. }
  133. private IAction fDelegateAction;
  134. private ISelection selection;
  135. private boolean fFillMenu;
  136. }