| | |
| | | import java.util.zip.ZipFile; |
| | | |
| | | /** |
| | | * Die Klasse Scanner enthaelt Methoden, um fuer eine Klasse zu bestimmen, in welcher JAR-Datei |
| | | * sie liegt und diese JAR-Datei nach Klassen zu durchsuchen. |
| | | * Die Klasse Scanner enthaelt Methoden, um fuer eine Klasse zu bestimmen, in welcher JAR-Datei sie |
| | | * liegt und diese JAR-Datei nach Klassen zu durchsuchen. |
| | | * |
| | | * @author Ulrich Hilger |
| | | * @version 0.1, 30.11.2024 |
| | |
| | | private final ClassLoader urlCL; |
| | | |
| | | /** |
| | | * Einen Scanner erzeugen, der das Archiv, in dem sich eine gegebene Klasse befindet, nach |
| | | * Klassen durchsucht, die eine bestimmte Annotation besitzen |
| | | * Einen Scanner erzeugen, der das Archiv, in dem sich eine gegebene Klasse befindet, nach Klassen |
| | | * durchsucht, die eine bestimmte Annotation besitzen |
| | | * |
| | | * @param c eine Klasse die sich im Archiv befindet, das durchsucht werden soll |
| | | * @param annotation die Annotation, nach der gesucht wird |
| | |
| | | |
| | | public Class getAnnotation() { |
| | | return annotation; |
| | | } |
| | | |
| | | public void process(ScannerListener l, String packageName, Handler h, String contextName) { |
| | | if (isJar()) { |
| | | processZipContent(packageName, l, h, contextName); |
| | | } else { |
| | | processClasses(l, packageName, h, contextName); |
| | | } |
| | | } |
| | | |
| | | /** |
| | |
| | | } |
| | | } |
| | | |
| | | @SuppressWarnings("unchecked") |
| | | public void processClasses(ScannerListener l, String packageName, Handler h, String contextName) { |
| | | ClassLoader cl = getCl(); |
| | | InputStream stream = cl.getResourceAsStream(packageName.replaceAll("[.]", "/")); |
| | | BufferedReader reader = new BufferedReader(new InputStreamReader(stream)); |
| | | Iterator i = reader.lines().iterator(); |
| | | while (i.hasNext()) { |
| | | String line = i.next().toString(); |
| | | if (line.endsWith(".class")) { |
| | | try { |
| | | Class actorClass = cl.loadClass(packageName + "." |
| | | + line.substring(0, line.lastIndexOf('.'))); |
| | | if (actorClass != null && actorClass.isAnnotationPresent(getAnnotation())) { |
| | | //wire(h, actorClass, contextName); |
| | | l.annotationFound(actorClass, h, contextName); |
| | | } |
| | | } catch (ClassNotFoundException ex) { |
| | | // Klasse nicht gefunden. Muss das geloggt oder sonstwie behandel werden? |
| | | ClassLoader cl = getCl(); |
| | | InputStream stream = cl.getResourceAsStream(packageName.replaceAll("[.]", "/")); |
| | | BufferedReader reader = new BufferedReader(new InputStreamReader(stream)); |
| | | Iterator i = reader.lines().iterator(); |
| | | while (i.hasNext()) { |
| | | String line = i.next().toString(); |
| | | if (line.endsWith(".class")) { |
| | | try { |
| | | Class actorClass = cl.loadClass(packageName + "." |
| | | + line.substring(0, line.lastIndexOf('.'))); |
| | | if (actorClass != null && actorClass.isAnnotationPresent(getAnnotation())) { |
| | | //wire(h, actorClass, contextName); |
| | | l.annotationFound(actorClass, h, contextName); |
| | | } |
| | | } else { |
| | | //wireActors(js, packageName + "." + line, h, contextName); |
| | | processClasses(l, packageName + "." + line, h, contextName); |
| | | } catch (ClassNotFoundException ex) { |
| | | // Klasse nicht gefunden. Muss das geloggt oder sonstwie behandel werden? |
| | | } |
| | | } else { |
| | | //wireActors(js, packageName + "." + line, h, contextName); |
| | | processClasses(l, packageName + "." + line, h, contextName); |
| | | } |
| | | } |
| | | } |
| | | |
| | | |
| | | private String getPackageName(String fullClassName) { |
| | | String packageName; |
| | | int pos = fullClassName.lastIndexOf("."); |
| | |
| | | } |
| | | |
| | | public interface ScannerListener { |
| | | |
| | | public void annotationFound(Class foundClass, Handler h, String contextName); |
| | | } |
| | | |
| | | } |
| | | } |