View Javadoc

1   /**
2    *    Copyright 2011 meltmedia
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.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   * <p>This protocol scanner scans the protocol "jar:" and returns the root node of the scan.  The root node of the scan
29   * can be used to discover other nodes in the jar.</p>
30   *
31   * @author Christian Trimble
32   */
33  public class ZipProtocolScanner
34    implements ProtocolScanner
35  {
36    /**
37     * <p>Scans the entries in a Weblogic Zip URL and adds all of the entries of that jar into the tree rooted at rootNode.  Missing
38     * directory nodes will be added.</p>
39     *
40     * @param rootNode the root node of the scan.
41     * @param jarUrl the url of the jar with entries to be added to the scan node.
42     */
43    public void scan( ScanNode rootNode, URL zipUrl )
44      throws IOException
45    {
46      // get the file url for this zip url.
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     * <p>Converts a url for the root of a zip file (ends with !/) and returns the file for that jar.</p>
69     */
70    URL zipUrlToFileUrl( URL zipRootUrl )
71      throws MalformedURLException
72    {
73      return new URL("file:"+zipRootUrl.getPath().replaceAll("\\!/\\Z", ""));
74    }
75  
76    /**
77     * <p>Adds an entry to the root node for a JarEntry.  This method is declared to be protected, so that test cases an interact with it.
78     * In general, this method should be treaded as private.</p>
79     *
80     * @param rootNode the root node of the scan.
81     * @param entry the jar entry to place under the root node.
82     */
83    void insertEntryNodes( ScanNode rootNode, JarEntry entry )
84    {
85      String name = entry.getName();
86      // TODO: verify that this works on windows.
87      String[] parts = name.split("\\/");
88      int depth = 0;
89      ScanNode parentNode = rootNode;
90  
91      // create any missing directory nodes.
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     // ASSERT: parentNode is now the parent node of this entry.
109 
110     // create the entry node if it is not already in the scan tree.
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 }