/easyant4e/trunk/org.apache.easyant4e/src/org/apache/easyant4e/EasyAntPlugin.java

# · Java · 153 lines · 80 code · 20 blank · 53 comment · 6 complexity · 8c18e35348b32d36b8c89dd98f7cd055 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. */
  18. package org.apache.easyant4e;
  19. import org.apache.easyant4e.services.EasyantProjectService;
  20. import org.eclipse.core.resources.IProject;
  21. import org.eclipse.core.resources.IResource;
  22. import org.eclipse.core.resources.IWorkspace;
  23. import org.eclipse.core.resources.ResourcesPlugin;
  24. import org.eclipse.core.runtime.CoreException;
  25. import org.eclipse.core.runtime.IStatus;
  26. import org.eclipse.core.runtime.Status;
  27. import org.eclipse.jdt.internal.ui.packageview.ClassPathContainer;
  28. import org.eclipse.jface.viewers.ISelection;
  29. import org.eclipse.jface.viewers.IStructuredSelection;
  30. import org.eclipse.ui.PlatformUI;
  31. import com.google.inject.Guice;
  32. import com.google.inject.Injector;
  33. import com.google.inject.Module;
  34. public class EasyAntPlugin {
  35. private final Injector injector;
  36. public EasyAntPlugin(Module... modules) {
  37. injector = Guice.createInjector(modules);
  38. injector.injectMembers(this);
  39. }
  40. public void injectMembers(Object instance) {
  41. injector.injectMembers(instance);
  42. }
  43. /**
  44. * Return the {@link EasyantCoreService}.
  45. */
  46. /*public EasyantCoreService getEasyantCoreService() {
  47. return getInstance(EasyantCoreService.class);
  48. }*/
  49. /**
  50. * Return the {@link EasyantProjectService}.
  51. */
  52. /*
  53. public EasyantProjectService getEasyantProjectService() {
  54. return getInstance(EasyantProjectService.class);
  55. }*/
  56. public IProject getCurrentProject() {
  57. try {
  58. return getSelectedProject();
  59. } catch (CoreException e) {
  60. log(e);
  61. }
  62. return null;
  63. }
  64. // private IJavaProject getJavaProject() throws CoreException {
  65. // IProject project = getSelectedProject();
  66. // IJavaProject javaProject=null;
  67. // if(project.hasNature(JavaCore.NATURE_ID)){
  68. // javaProject = (IJavaProject)project.getNature(JavaCore.NATURE_ID);
  69. // }
  70. // return javaProject;
  71. //}
  72. private IProject getSelectedProject() throws CoreException {
  73. IProject project = null;
  74. Object selectedResource = getSelectedResource();
  75. if (selectedResource instanceof IResource) {
  76. IResource resource = (IResource) selectedResource;
  77. project = resource.getProject();
  78. } else if (selectedResource instanceof ClassPathContainer) {
  79. // FIXME maybe use Adaptable and WorkbenchAdapter to resolve project
  80. // container
  81. project = ((ClassPathContainer) selectedResource).getJavaProject().getProject();
  82. }
  83. return project;
  84. }
  85. private Object getSelectedResource() {
  86. IStructuredSelection selection = getStructuredSelection();
  87. if (selection != null) {
  88. Object element = selection.getFirstElement();
  89. return element;
  90. }
  91. return null;
  92. }
  93. private IStructuredSelection getStructuredSelection() {
  94. ISelection selection = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getSelectionService()
  95. .getSelection();
  96. if (selection instanceof IStructuredSelection) {
  97. IStructuredSelection ss = (IStructuredSelection) selection;
  98. return ss;
  99. }
  100. return null;
  101. }
  102. public void log(int severity, String message) {
  103. log(severity, message, null);
  104. }
  105. public void log(int severity, String message, Throwable e) {
  106. log(new Status(severity, Activator.PLUGIN_ID, 0, message, e));
  107. }
  108. public void log(CoreException e) {
  109. log(e.getStatus().getSeverity(), "EasyAnt For Eclipse - Internal Error", e);
  110. }
  111. public void log(IStatus status) {
  112. Activator.getDefault().getLog().log(status);
  113. }
  114. /**
  115. * Return the workspace used by the workbench
  116. *
  117. * This method is internal to the workbench and must not be called by any
  118. * plugins.
  119. */
  120. public IWorkspace getPluginWorkspace() {
  121. return ResourcesPlugin.getWorkspace();
  122. }
  123. /**
  124. * Get instances from the injector.
  125. *
  126. * @param type
  127. * the type to get an instance of
  128. * @return the instance
  129. */
  130. public <T> T getInstance(Class<T> type) {
  131. return injector.getInstance(type);
  132. }
  133. }