/servers/jain-slee/tools/eclipslee/plugin/plugins/org.mobicents.eclipslee.servicecreation/src/org/mobicents/eclipslee/servicecreation/util/EventFinder.java

http://mobicents.googlecode.com/ · Java · 208 lines · 137 code · 39 blank · 32 comment · 15 complexity · 8352c81ecce675079e99b8167a28c69f MD5 · raw file

  1. /**
  2. * Copyright 2005 Open Cloud Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.mobicents.eclipslee.servicecreation.util;
  17. import java.io.File;
  18. import java.util.jar.JarEntry;
  19. import java.util.jar.JarFile;
  20. import org.eclipse.core.resources.IContainer;
  21. import org.eclipse.core.resources.IFile;
  22. import org.eclipse.core.resources.IFolder;
  23. import org.eclipse.core.resources.IResource;
  24. import org.eclipse.core.runtime.IPath;
  25. import org.eclipse.core.runtime.Path;
  26. import org.eclipse.jdt.core.ICompilationUnit;
  27. import org.mobicents.eclipslee.util.slee.xml.DTDXML;
  28. import org.mobicents.eclipslee.util.slee.xml.components.ComponentNotFoundException;
  29. import org.mobicents.eclipslee.util.slee.xml.components.EventXML;
  30. import org.mobicents.eclipslee.xml.EventJarXML;
  31. /**
  32. * @author cath
  33. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  34. */
  35. public class EventFinder extends BaseFinder {
  36. private static EventFinder defaultFinder = new EventFinder();
  37. public static EventFinder getDefault() {
  38. return defaultFinder;
  39. }
  40. public static IFile getEventJarXMLFile(ICompilationUnit unit) {
  41. // Get the event's class name.
  42. String className = EclipseUtil.getClassName(unit);
  43. try {
  44. IContainer folder = unit.getCorrespondingResource().getParent();
  45. // ammendonca: for maven we have XML at .../src/main/resources/META-INF, we are at .../src/main/java/<package>/...
  46. while(!folder.getName().equals("main")) {
  47. folder = folder.getParent();
  48. }
  49. folder = folder.getFolder(new Path("resources/META-INF"));
  50. IResource children [] = folder.members(IResource.FILE);
  51. for (int i = 0; i < children.length; i++) {
  52. // For some reason directories come in also...
  53. if(!(children[i] instanceof IFile)) {
  54. continue;
  55. }
  56. IFile file = (IFile) children[i];
  57. EventJarXML xml = getEventJarXML(file);
  58. if (xml == null)
  59. continue;
  60. try {
  61. xml.getEvent(className);
  62. } catch (ComponentNotFoundException e) {
  63. continue;
  64. }
  65. return file;
  66. }
  67. } catch (Exception e) {
  68. return null;
  69. }
  70. return null; // No matching file found.
  71. }
  72. public static IFile getEventJavaFile(IFile xmlFile, String name, String vendor, String version) {
  73. EventJarXML eventJarXML = getEventJarXML(xmlFile);
  74. if (eventJarXML == null)
  75. return null;
  76. try {
  77. EventXML eventXML = eventJarXML.getEvent(name, vendor, version);
  78. String fname = eventXML.getEventClassName();
  79. if (fname == null) return null;
  80. IPath path = new Path(fname.replaceAll("\\.", "/") + ".java");
  81. IFolder folder = getSourceFolder(xmlFile);
  82. // ammendonca: we are at xxx/src/main/resources. move to xxx/src/main/java
  83. folder = folder.getFolder(".." + File.separator + "java");
  84. IFile file = folder.getFile(path);
  85. if (file.exists()) return file;
  86. return null;
  87. } catch (ComponentNotFoundException e) {
  88. return null;
  89. }
  90. }
  91. public static IFile getEventJavaFile(ICompilationUnit unit) {
  92. EventJarXML eventJarXML = getEventJarXML(unit);
  93. if (eventJarXML == null) {
  94. return null;
  95. }
  96. String clazzName = EclipseUtil.getClassName(unit);
  97. try {
  98. eventJarXML.getEvent(clazzName);
  99. IPath path = new Path(clazzName.replaceAll("\\.", "/") + ".java");
  100. IFolder folder = getSourceFolder(unit);
  101. IFile file = folder.getFile(path);
  102. if (file.exists()) return file;
  103. return null;
  104. } catch (ComponentNotFoundException e) {
  105. return null;
  106. }
  107. }
  108. public static EventJarXML getEventJarXML(IFile file) {
  109. try {
  110. EventJarXML xml = new EventJarXML(file);
  111. return xml;
  112. } catch (Exception e) {
  113. return null;
  114. }
  115. }
  116. /**
  117. * Tries to locate the corresponding *-event-jar.xml file for this ICompilationUnit.
  118. *
  119. * @param element the IJavaElement representing the event-class-name that should be present in the corresponding XML file.
  120. * @return the EventXML file containing the event
  121. */
  122. public static EventJarXML getEventJarXML(ICompilationUnit unit) {
  123. try {
  124. String clazzName = EclipseUtil.getClassName(unit);
  125. IContainer folder = unit.getCorrespondingResource().getParent();
  126. // ammendonca: for maven we have XML at .../src/main/resources/META-INF, we are at .../src/main/java/<package>/...
  127. while(!folder.getName().equals("main")) {
  128. folder = folder.getParent();
  129. }
  130. folder = folder.getFolder(new Path("resources/META-INF"));
  131. IResource children[] = folder.members(IResource.FILE);
  132. for (int i = 0; i < children.length; i++) {
  133. IFile file = (IFile) children[i];
  134. String filename = file.getName();
  135. if (filename.endsWith("event-jar.xml")) {
  136. // Consider this file
  137. EventJarXML xml = new EventJarXML(file);
  138. try {
  139. xml.getEvent(clazzName);
  140. } catch (org.mobicents.eclipslee.util.slee.xml.components.ComponentNotFoundException e) {
  141. continue;
  142. }
  143. // Event was found. Return this EventXML object.
  144. return xml;
  145. }
  146. }
  147. return null;
  148. } catch (Exception e) {
  149. return null;
  150. }
  151. }
  152. protected DTDXML loadJar(JarFile jar, JarEntry entry, String location) throws Exception {
  153. return new EventJarXML(jar, entry, location);
  154. }
  155. protected DTDXML loadJar(JarFile jar, JarEntry entry) throws Exception {
  156. return new EventJarXML(jar, entry, null);
  157. }
  158. protected DTDXML loadFile(IFile file) throws Exception {
  159. return new EventJarXML(file);
  160. }
  161. protected DTDXML getInnerXML(DTDXML outerXML, String className) throws Exception {
  162. if (outerXML instanceof EventJarXML) {
  163. EventJarXML eventJar = (EventJarXML) outerXML;
  164. EventXML event = eventJar.getEvent(className);
  165. return event;
  166. }
  167. return null;
  168. }
  169. }