KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > WarReader


1 /*--
2
3  $Id: WarReader.java,v 1.12 2004/09/07 06:29:07 jhunter Exp $
4
5  Copyright (C) 2000-2004 Jason Hunter & Brett McLaughlin.
6  All rights reserved.
7
8  Redistribution and use in source and binary forms, with or without
9  modification, are permitted provided that the following conditions
10  are met:
11
12  1. Redistributions of source code must retain the above copyright
13     notice, this list of conditions, and the following disclaimer.
14
15  2. Redistributions in binary form must reproduce the above copyright
16     notice, this list of conditions, and the disclaimer that follows
17     these conditions in the documentation and/or other materials
18     provided with the distribution.
19
20  3. The name "JDOM" must not be used to endorse or promote products
21     derived from this software without prior written permission. For
22     written permission, please contact <request_AT_jdom_DOT_org>.
23
24  4. Products derived from this software may not be called "JDOM", nor
25     may "JDOM" appear in their name, without prior written permission
26     from the JDOM Project Management <request_AT_jdom_DOT_org>.
27
28  In addition, we request (but do not require) that you include in the
29  end-user documentation provided with the redistribution and/or in the
30  software itself an acknowledgement equivalent to the following:
31      "This product includes software developed by the
32       JDOM Project (http://www.jdom.org/)."
33  Alternatively, the acknowledgment may be graphical using the logos
34  available at http://www.jdom.org/images/logos.
35
36  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
37  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
38  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
39  DISCLAIMED. IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT
40  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
42  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
43  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
44  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
45  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
46  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
47  SUCH DAMAGE.
48
49  This software consists of voluntary contributions made by many
50  individuals on behalf of the JDOM Project and was originally
51  created by Jason Hunter <jhunter_AT_jdom_DOT_org> and
52  Brett McLaughlin <brett_AT_jdom_DOT_org>. For more information
53  on the JDOM Project, please see <http://www.jdom.org/>.
54
55  */

56
57 import java.io.File JavaDoc;
58 import java.io.IOException JavaDoc;
59 import java.io.PrintStream JavaDoc;
60 import java.util.Iterator JavaDoc;
61 import java.util.List JavaDoc;
62 import org.jdom.Document;
63 import org.jdom.Element;
64 import org.jdom.JDOMException;
65 import org.jdom.input.SAXBuilder;
66 import org.jdom.output.XMLOutputter;
67
68 /**
69  * <p><code>WarReader</code> demonstrates how to
70  * read a Servlet 2.2 Web Archive file with JDOM.
71  * </p>
72  *
73  * @author Brett McLaughlin, Jason Hunter
74  * @version 1.0
75  */

76 public class WarReader {
77     
78   public static void main(String JavaDoc[] args) throws IOException JavaDoc, JDOMException {
79     if (args.length != 1) {
80       System.err.println("Usage: java WarReader [web.xml]");
81       return;
82     }
83     String JavaDoc filename = args[0];
84     PrintStream JavaDoc out = System.out;
85
86     SAXBuilder builder = new SAXBuilder();
87     Document doc = builder.build(new File JavaDoc(filename));
88
89     // Get the root element
90
Element root = doc.getRootElement();
91
92     // Print servlet information
93
List JavaDoc servlets = root.getChildren("servlet");
94     out.println("This WAR has "+ servlets.size() +" registered servlets:");
95     Iterator JavaDoc i = servlets.iterator();
96     while (i.hasNext()) {
97       Element servlet = (Element) i.next();
98       out.print("\t" + servlet.getChild("servlet-name")
99                               .getTextTrim() +
100                 " for " + servlet.getChild("servlet-class")
101                                  .getTextTrim());
102       List JavaDoc initParams = servlet.getChildren("init-param");
103       out.println(" (it has " + initParams.size() + " init params)");
104     }
105
106     // Print security role information
107
List JavaDoc securityRoles = root.getChildren("security-role");
108     if (securityRoles.size() == 0) {
109       out.println("This WAR contains no roles");
110     }
111     else {
112       Element securityRole = (Element) securityRoles.get(0);
113       List JavaDoc roleNames = securityRole.getChildren("role-name");
114       out.println("This WAR contains " + roleNames.size() + " roles:");
115       i = roleNames.iterator();
116       while (i.hasNext()) {
117         Element e = (Element) i.next();
118         out.println("\t" + e.getTextTrim());
119       }
120     }
121         
122     // Print distributed information (notice this is out of order)
123
List JavaDoc distrib = root.getChildren("distributed");
124     if (distrib.size() == 0) {
125       out.println("This WAR is not distributed");
126     } else {
127       out.println("This WAR is distributed");
128     }
129   }
130 }
131
Popular Tags