Improve XML parsing to handle attributes as well.
[cfb.git] / prod / net / jaekl / cfb / xml / BugMethod.java
1 package net.jaekl.cfb.xml;
2
3 import java.io.PrintWriter;
4 import java.util.ArrayList;
5
6 import org.xml.sax.Attributes;
7
8 import net.jaekl.qd.xml.MissingAttributeException;
9 import net.jaekl.qd.xml.ParseResult;
10 import net.jaekl.qd.xml.XmlParseException;
11
12 public class BugMethod extends ParseResult {
13         
14         static final String TAG = "Method";
15         static final String[] INTERNAL = { };
16         static final Object[][] EXTERNAL = { { SourceLine.TAG, SourceLine.class} };
17
18         static final String CLASS_NAME = "classname";
19         static final String METHOD_NAME = "name";
20         static final String SIGNATURE = "signature";
21         static final String IS_STATIC = "isStatic";
22         static final String ROLE = "role";
23         
24         static final String TRUE = "true";      // yes value for isStatic
25         
26         String m_className;
27         String m_methodName;
28         String m_signature;
29         boolean m_isStatic;
30         String m_role;          // optional
31         ArrayList<SourceLine> m_sourceLines;
32         
33         public BugMethod() {
34                 super(TAG, INTERNAL, EXTERNAL);
35                 m_className = m_methodName = m_signature = m_role = null;
36                 m_isStatic = false;
37                 m_sourceLines = new ArrayList<SourceLine>();
38         }
39         
40         @Override
41         public void handleMainAttributes(Attributes attr) throws MissingAttributeException 
42         {
43                 m_className = getRequiredAttr(TAG, attr, CLASS_NAME);
44                 m_methodName = getRequiredAttr(TAG, attr, METHOD_NAME);
45                 m_signature = getRequiredAttr(TAG, attr, SIGNATURE);
46                 m_isStatic = getRequiredAttr(TAG, attr, IS_STATIC).equals(TRUE);
47                 m_role = getOptionalAttr(attr, ROLE, null);             
48         }
49
50         @Override
51         public void endContents(String uri, String localName, String qName, String chars) 
52                 throws XmlParseException 
53         {
54                 // no-op
55         }
56
57         @Override
58         public void endExternal(String uri, String localName, String qName)
59                 throws XmlParseException 
60         {
61                 if (SourceLine.TAG.equals(localName)) {
62                         ParseResult[] collected = collectParsedChildren(SourceLine.class);
63                         for (ParseResult pr : collected) {
64                                 assert(pr instanceof SourceLine);
65                                 m_sourceLines.add((SourceLine)pr);
66                         }
67                 }
68         }
69         
70         @Override
71         public void dump(PrintWriter pw, int indent) 
72         {
73                 super.dump(pw, indent);
74                 String tab = String.format("%" + (indent + 2) + "s", "");
75                 
76                 pw.println(tab 
77                                 + (m_isStatic ? "static" : "")
78                                 + m_className 
79                                 + "."
80                                 + m_methodName 
81                                 + m_signature);
82                 if (null != m_role) {
83                         pw.println(tab + ROLE + "=" + m_role);
84                 }
85                 if (null != m_sourceLines) {
86                         for (SourceLine sl : m_sourceLines) {
87                                 sl.dump(pw, indent + 2);
88                         }
89                 }
90         }
91
92 }