From c730780164e644077bb9cb3906a6519824a67de4 Mon Sep 17 00:00:00 2001 From: david Date: Fri, 30 Jan 2004 07:43:12 +0000 Subject: [PATCH] 2003/12/25 08:09:21 darcs-hash:20040130074312-0c9ea-f997e84bf8771129239eedf48c94e067fab880af.gz --- src/org/xwt/Template.java | 146 +++++++++-------- src/org/xwt/XMLRPC.java | 6 +- src/org/xwt/XWT.java | 12 +- src/org/xwt/util/Vec.java | 62 +++++--- src/org/xwt/util/XML.java | 380 ++++++++++++++++++++++----------------------- 5 files changed, 312 insertions(+), 294 deletions(-) diff --git a/src/org/xwt/Template.java b/src/org/xwt/Template.java index af84178..dbd39cc 100644 --- a/src/org/xwt/Template.java +++ b/src/org/xwt/Template.java @@ -179,7 +179,7 @@ public class Template { Template t = null; ///< the template we're currently working on /** parse an XML input stream, building a Template tree off of root */ - void parseit(InputStream is, Template root) throws XML.XMLException, IOException { + void parseit(InputStream is, Template root) throws XML.Exn, IOException { state = STATE_INITIAL; nameOfHeaderNodeBeingProcessed = null; nodeStack.setSize(0); @@ -187,32 +187,37 @@ public class Template { parse(new InputStreamReader(is)); } - public void startElement(XML.Element c) throws XML.SchemaException { + public void startElement(XML.Element c) throws XML.Exn { switch(state) { case STATE_INITIAL: - if (!"xwt".equals(c.localName)) throw new XML.SchemaException("root element was not "); - if (c.len != 0) throw new XML.SchemaException("root element must not have attributes"); + if (!"xwt".equals(c.getLocalName())) + throw new XML.Exn("root element was not ", XML.Exn.SCHEMA, getLine(), getCol()); + if (c.getAttrLen() != 0) + throw new XML.Exn("root element must not have attributes", XML.Exn.SCHEMA, getLine(), getCol()); state = STATE_IN_XWT_NODE; return; case STATE_IN_XWT_NODE: - if (nameOfHeaderNodeBeingProcessed != null) throw new XML.SchemaException("can't nest header nodes"); - nameOfHeaderNodeBeingProcessed = c.localName; - if (c.localName.equals("doc")) { + if (nameOfHeaderNodeBeingProcessed != null) + throw new XML.Exn("can't nest header nodes", XML.Exn.SCHEMA, getLine(), getCol()); + nameOfHeaderNodeBeingProcessed = c.getLocalName(); + //#switch(c.getLocalName()) + case "doc": // FEATURE - } else if (c.localName.equals("static")) { + return; + case "static": if (t.staticscript != null) - throw new XML.SchemaException("the header node may not appear more than once"); - if (c.len > 0) - throw new XML.SchemaException("the node may not have attributes"); - } else if (c.localName.equals("template")) { + throw new XML.Exn("the header node may only appear once", XML.Exn.SCHEMA, getLine(), getCol()); + if (c.getAttrLen() > 0) + throw new XML.Exn("the node may not have attributes", XML.Exn.SCHEMA, getLine(), getCol()); + return; + case "template": t.startLine = getLine(); state = STATE_IN_TEMPLATE_NODE; processBodyElement(c); - } else { - throw new XML.SchemaException("unrecognized header node \"" + c.localName + "\""); - } - return; + return; + //#end + throw new XML.Exn("unrecognized header node \"" + c.getLocalName() + "\"", XML.Exn.SCHEMA, getLine(), getCol()); case STATE_IN_TEMPLATE_NODE: // push the last node we were in onto the stack @@ -220,66 +225,71 @@ public class Template { // instantiate a new node, and set its fileName/importlist/preapply Template t2 = new Template(t.r); t2.startLine = getLine(); - if (!c.localName.equals("box") && !c.localName.equals("template")) - t2.preapply.addElement((c.uri == null ? "" : (c.uri + ".")) + c.localName); + if (!c.getLocalName().equals("box") && !c.getLocalName().equals("template")) + t2.preapply.addElement((c.getUri().equals("") ? "" : (c.getUri() + ".")) + c.getLocalName()); // make the new node the current node t = t2; processBodyElement(c); return; case STATE_FINISHED_TEMPLATE_NODE: - throw new XML.SchemaException("no elements may appear after the