KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > xml > fastinfoset > tools > PrintTable


1 /*
2  * Fast Infoset ver. 0.1 software ("Software")
3  *
4  * Copyright, 2004-2005 Sun Microsystems, Inc. All Rights Reserved.
5  *
6  * Software is licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License. You may
8  * obtain a copy of the License at:
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15  * License for the specific language governing permissions and limitations.
16  *
17  * Sun supports and benefits from the global community of open source
18  * developers, and thanks the community for its important contributions and
19  * open standards-based technology, which Sun has adopted into many of its
20  * products.
21  *
22  * Please note that portions of Software may be provided with notices and
23  * open source licenses from such communities and third parties that govern the
24  * use of those portions, and any licenses granted hereunder do not alter any
25  * rights and obligations you may have under such open source licenses,
26  * however, the disclaimer of warranty and limitation of liability provisions
27  * in this License will apply to all Software in this distribution.
28  *
29  * You acknowledge that the Software is not designed, licensed or intended
30  * for use in the design, construction, operation or maintenance of any nuclear
31  * facility.
32  *
33  * Apache License
34  * Version 2.0, January 2004
35  * http://www.apache.org/licenses/
36  *
37  */

38
39
40 package com.sun.xml.fastinfoset.tools;
41
42 import com.sun.xml.fastinfoset.QualifiedName;
43 import java.io.File JavaDoc;
44
45 import javax.xml.parsers.SAXParser JavaDoc;
46 import javax.xml.parsers.SAXParserFactory JavaDoc;
47
48 import com.sun.xml.fastinfoset.sax.VocabularyGenerator;
49 import com.sun.xml.fastinfoset.util.CharArrayArray;
50 import com.sun.xml.fastinfoset.util.ContiguousCharArrayArray;
51 import com.sun.xml.fastinfoset.util.PrefixArray;
52 import com.sun.xml.fastinfoset.util.QualifiedNameArray;
53 import com.sun.xml.fastinfoset.util.StringArray;
54 import com.sun.xml.fastinfoset.vocab.ParserVocabulary;
55
56
57 public class PrintTable {
58     
59     /** Creates a new instance of PrintTable */
60     public PrintTable() {
61     }
62     
63     public static void printVocabulary(ParserVocabulary vocabulary) {
64         printArray("Attribute Name Table", vocabulary.attributeName);
65         printArray("Attribute Value Table", vocabulary.attributeValue);
66         printArray("Character Content Chunk Table", vocabulary.characterContentChunk);
67         printArray("Element Name Table", vocabulary.elementName);
68         printArray("Local Name Table", vocabulary.localName);
69         printArray("Namespace Name Table", vocabulary.namespaceName);
70         printArray("Other NCName Table", vocabulary.otherNCName);
71         printArray("Other String Table", vocabulary.otherString);
72         printArray("Other URI Table", vocabulary.otherURI);
73         printArray("Prefix Table", vocabulary.prefix);
74     }
75     
76     public static void printArray(String JavaDoc title, StringArray a) {
77         System.out.println(title);
78
79         for (int i = 0; i < a.getSize(); i++) {
80             System.out.println("" + (i + 1) + ": " + a.getArray()[i]);
81         }
82     }
83
84     public static void printArray(String JavaDoc title, PrefixArray a) {
85         System.out.println(title);
86
87         for (int i = 0; i < a.getSize(); i++) {
88             System.out.println("" + (i + 1) + ": " + a.getArray()[i]);
89         }
90     }
91     
92     public static void printArray(String JavaDoc title, CharArrayArray a) {
93         System.out.println(title);
94
95         for (int i = 0; i < a.getSize(); i++) {
96             System.out.println("" + (i + 1) + ": " + a.getArray()[i]);
97         }
98     }
99
100     public static void printArray(String JavaDoc title, ContiguousCharArrayArray a) {
101         System.out.println(title);
102
103         for (int i = 0; i < a.getSize(); i++) {
104             System.out.println("" + (i + 1) + ": " + a.get(i).toString());
105         }
106     }
107
108     public static void printArray(String JavaDoc title, QualifiedNameArray a) {
109         System.out.println(title);
110
111         for (int i = 0; i < a.getSize(); i++) {
112             QualifiedName name = a.getArray()[i];
113             System.out.println("" + (name.index + 1) + ": " +
114                     "{" + name.namespaceName + "}" +
115                     name.prefix + ":" + name.localName);
116         }
117     }
118     
119     /**
120      * @param args the command line arguments
121      */

122     public static void main(String JavaDoc[] args) {
123         try {
124             SAXParserFactory JavaDoc saxParserFactory = SAXParserFactory.newInstance();
125             saxParserFactory.setNamespaceAware(true);
126
127             SAXParser JavaDoc saxParser = saxParserFactory.newSAXParser();
128
129             ParserVocabulary referencedVocabulary = new ParserVocabulary();
130         
131             VocabularyGenerator vocabularyGenerator = new VocabularyGenerator(referencedVocabulary);
132             File JavaDoc f = new File JavaDoc(args[0]);
133             saxParser.parse(f, vocabularyGenerator);
134                         
135             printVocabulary(referencedVocabulary);
136         } catch (Exception JavaDoc e) {
137             e.printStackTrace();
138         }
139     }
140 }
141
Popular Tags