1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.xchain.framework.scanner;
17
18 import java.io.IOException;
19 import java.net.URL;
20 import java.net.MalformedURLException;
21 import java.util.jar.JarFile;
22 import java.util.jar.JarEntry;
23 import java.util.jar.JarInputStream;
24 import java.util.Map;
25 import java.util.TreeMap;
26
27
28
29
30
31
32
33 public class ZipProtocolScanner
34 implements ProtocolScanner
35 {
36
37
38
39
40
41
42
43 public void scan( ScanNode rootNode, URL zipUrl )
44 throws IOException
45 {
46
47 URL fileUrl = zipUrlToFileUrl(zipUrl);
48
49 JarInputStream in = null;
50 try {
51 in = new JarInputStream(fileUrl.openStream());
52 JarEntry entry = null;
53 while( (entry = in.getNextJarEntry()) != null ) {
54 insertEntryNodes( rootNode, entry );
55 }
56 }
57 catch( Exception e ) {
58
59 }
60 finally {
61 if( in != null ) {
62 try { in.close(); } catch( Exception e ) {}
63 }
64 }
65 }
66
67
68
69
70 URL zipUrlToFileUrl( URL zipRootUrl )
71 throws MalformedURLException
72 {
73 return new URL("file:"+zipRootUrl.getPath().replaceAll("\\!/\\Z", ""));
74 }
75
76
77
78
79
80
81
82
83 void insertEntryNodes( ScanNode rootNode, JarEntry entry )
84 {
85 String name = entry.getName();
86
87 String[] parts = name.split("\\/");
88 int depth = 0;
89 ScanNode parentNode = rootNode;
90
91
92 for( int i = 0; i < parts.length - 1; i++ ) {
93 ScanNode currNode = parentNode.getChildMap().get(parts[i]);
94 if( currNode == null ) {
95 currNode = new ScanNode();
96 currNode.setResourceName("".equals(parentNode.getResourceName())?parts[i]:parentNode.getResourceName()+"/"+parts[i]);
97 currNode.setName(parts[i]);
98 currNode.setDirectory(true);
99 currNode.setFile(false);
100 parentNode.getChildMap().put(parts[i], currNode);
101 }
102 else {
103 currNode.setDirectory(true);
104 }
105 parentNode = currNode;
106 }
107
108
109
110
111 ScanNode currNode = parentNode.getChildMap().get(parts[parts.length-1]);
112 if( currNode == null ) {
113 currNode = new ScanNode();
114 currNode.setResourceName("".equals(parentNode.getResourceName())?parts[parts.length-1]:parentNode.getResourceName()+"/"+parts[parts.length-1]);
115 currNode.setName(parts[parts.length-1]);
116 currNode.setDirectory(entry.isDirectory()?true:false);
117 currNode.setFile(entry.isDirectory()?false:true);
118 parentNode.getChildMap().put(parts[parts.length-1], currNode);
119 }
120 else {
121 if( entry.isDirectory() ) {
122 currNode.setDirectory(true);
123 }
124 else {
125 currNode.setFile(true);
126 }
127 }
128 }
129 }