~ubuntu-branches/debian/squeeze/xom/squeeze

« back to all changes in this revision

Viewing changes to src/nu/xom/samples/StreamingElementLister.java

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2007-11-25 15:50:40 UTC
  • Revision ID: james.westby@ubuntu.com-20071125155040-r75ikcqf1vu0cei7
Tags: upstream-1.1
ImportĀ upstreamĀ versionĀ 1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright 2002-2004 Elliotte Rusty Harold
 
2
   
 
3
   This library is free software; you can redistribute it and/or modify
 
4
   it under the terms of version 2.1 of the GNU Lesser General Public 
 
5
   License as published by the Free Software Foundation.
 
6
   
 
7
   This library is distributed in the hope that it will be useful,
 
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
 
10
   GNU Lesser General Public License for more details.
 
11
   
 
12
   You should have received a copy of the GNU Lesser General Public
 
13
   License along with this library; if not, write to the 
 
14
   Free Software Foundation, Inc., 59 Temple Place, Suite 330, 
 
15
   Boston, MA 02111-1307  USA
 
16
   
 
17
   You can contact Elliotte Rusty Harold by sending e-mail to
 
18
   elharo@metalab.unc.edu. Please include the word "XOM" in the
 
19
   subject line. The XOM home page is located at http://www.xom.nu/
 
20
*/
 
21
 
 
22
package nu.xom.samples;
 
23
 
 
24
import java.io.IOException;
 
25
 
 
26
import nu.xom.Builder;
 
27
import nu.xom.Document;
 
28
import nu.xom.Element;
 
29
import nu.xom.Attribute;
 
30
import nu.xom.Nodes;
 
31
import nu.xom.NodeFactory;
 
32
import nu.xom.ParsingException;
 
33
 
 
34
 
 
35
/**
 
36
 * <p>
 
37
 * Demonstrates walking the element hierarchy of 
 
38
 * an XML document in a streaming fashion while storing state in the 
 
39
 * node factory.
 
40
 * </p>
 
41
 * 
 
42
 * @author Elliotte Rusty Harold
 
43
 * @version 1.0
 
44
 *
 
45
 */
 
46
public class StreamingElementLister extends NodeFactory{
 
47
 
 
48
    private int depth = 0;
 
49
    private Nodes empty = new Nodes();
 
50
 
 
51
    public static void main(String[] args) {
 
52
  
 
53
        if (args.length == 0) {
 
54
            System.out.println(
 
55
              "Usage: java nu.xom.samples.StreamingElementLister URL"
 
56
            ); 
 
57
            return;
 
58
        } 
 
59
      
 
60
        Builder builder = new Builder(new StreamingElementLister());
 
61
     
 
62
        try {
 
63
            builder.build(args[0]);
 
64
        }  
 
65
        catch (ParsingException ex) { 
 
66
            System.out.println(args[0] + " is not well-formed.");
 
67
            System.out.println(ex.getMessage());
 
68
        }  
 
69
        catch (IOException ex) { 
 
70
            System.out.println(ex);
 
71
        }  
 
72
  
 
73
    }
 
74
 
 
75
    // We don't need the comments.     
 
76
    public Nodes makeComment(String data) {
 
77
        return empty;  
 
78
    }    
 
79
 
 
80
    // We don't need text nodes at all    
 
81
    public Nodes makeText(String data) {
 
82
        return empty;  
 
83
    }    
 
84
 
 
85
    public Element startMakingElement(String name, String namespace) {
 
86
        depth++; 
 
87
        printSpaces();
 
88
        System.out.println(name);           
 
89
        return new Element(name, namespace);
 
90
    }
 
91
    
 
92
    public Nodes finishMakingElement(Element element) {
 
93
        depth--;
 
94
        if (element.getParent() instanceof Document) {
 
95
            return new Nodes(element);
 
96
        }
 
97
        else return empty;
 
98
    }
 
99
 
 
100
    public Nodes makeAttribute(String name, String URI, 
 
101
      String value, Attribute.Type type) {
 
102
        return empty;
 
103
    }
 
104
 
 
105
    public Nodes makeDocType(String rootElementName, 
 
106
      String publicID, String systemID) {
 
107
        return empty;    
 
108
    }
 
109
 
 
110
    public Nodes makeProcessingInstruction(
 
111
      String target, String data) {
 
112
        return empty; 
 
113
    }  
 
114
  
 
115
    private void printSpaces() {    
 
116
        for (int i = 0; i <= depth; i++) {
 
117
            System.out.print(' '); 
 
118
        } 
 
119
    }
 
120
 
 
121
}