X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FTemplate.java;h=dbd39cc56fd5bfb31c97b92c8b50e833fc0c89f9;hb=c730780164e644077bb9cb3906a6519824a67de4;hp=9a324d2b6af071b66ea8413e91242f1a7260aecd;hpb=a76646eb76b01b5f1b5f0507b1c4bcd4202f1f11;p=org.ibex.core.git diff --git a/src/org/xwt/Template.java b/src/org/xwt/Template.java index 9a324d2..dbd39cc 100644 --- a/src/org/xwt/Template.java +++ b/src/org/xwt/Template.java @@ -6,6 +6,7 @@ import java.util.zip.*; import java.util.*; import java.lang.*; import org.xwt.js.*; +import org.xwt.translators.*; import org.xwt.util.*; /** @@ -47,32 +48,28 @@ public class Template { private StringBuffer content = null; ///< during XML parsing, this holds partially-read character data; null otherwise private int content_start = 0; ///< line number of the first line of content - private int content_lines = 0; ///< number of lines in content private int startLine = -1; ///< the line number that this element starts on private final Res r; ///< the resource we came from // Static data/methods /////////////////////////////////////////////////////////////////// - public static Template getTemplate(Res r) { + public static Template getTemplate(Res r) throws JSExn { try { r = r.addExtension(".xwt"); if (r.t != null) return r.t; r.t = new Template(r); new TemplateHelper().parseit(r.getInputStream(), r.t); return r.t; - } catch (Exception e) { - if (Log.on) Log.log(r.t.fileName, e); - return null; + } catch (Exception e) { throw new JSExn(e.toString()); } } - public static Res resolveStringToResource(String str, XWT xwt, boolean permitAbsolute) { + public static Res resolveStringToResource(String str, XWT xwt, boolean permitAbsolute) throws JSExn { // URL if (str.indexOf("://") != -1) { - if (permitAbsolute) return Res.fromString(str); - Log.log(Template.class, "absolute URL " + str + " not permitted here"); - return null; + if (permitAbsolute) return (Res)xwt.url2res(str); + throw new JSExn("absolute URL " + str + " not permitted here"); } // root-relative @@ -89,15 +86,20 @@ public class Template { // Methods to apply templates //////////////////////////////////////////////////////// - private Template(Res r) { this.r = r; } + private Template(Res r) { + this.r = r; + String f = r.toString(); + if (f != null && !f.equals("")) + fileName = f.substring(f.lastIndexOf('/')+1, f.endsWith(".xwt") ? f.length() - 4 : f.length()); + } /** called before this template is applied or its static object can be externally referenced */ - JSScope getStatic() { + JSScope getStatic() throws JSExn { if (staticJSScope == null) staticJSScope = new JSScope(null); if (staticscript == null) return staticJSScope; JSFunction temp = staticscript; staticscript = null; - temp.cloneWithNewParentJSScope(staticJSScope).call(new JSArray()); + temp.cloneWithNewParentScope(staticJSScope).call(null, null, null, null, 0); return staticJSScope; } @@ -105,8 +107,20 @@ public class Template { * @param pboxes a vector of all box parents on which to put $-references * @param ptemplates a vector of the fileNames to recieve private references on the pboxes */ - void apply(Box b, XWT xwt) { apply(b, xwt, null); } - void apply(Box b, XWT xwt, PerInstantiationJSScope parentPis) { + void apply(Box b, XWT xwt) { + try { + apply(b, xwt, null); + } catch (JSExn e) { + b.clear(b.VISIBLE); + b.mark_for_repack(); + Log.log(Template.class, "WARNING: exception (below) thrown during application of template;"); + Log.log(Template.class, " setting visibility of target box to \"false\""); + Log.logJS(e); + } + } + + + private void apply(Box b, XWT xwt, PerInstantiationJSScope parentPis) throws JSExn { getStatic(); @@ -119,17 +133,29 @@ public class Template { PerInstantiationJSScope pis = new PerInstantiationJSScope(b, xwt, parentPis, staticJSScope); for (int i=0; children != null && i= 0) { + b.putAndTriggerTraps("fill", resolveStringToResource((String)vals[i], xwt, true)); + } + else if ("redirect".equals(keys[i])) { + if (vals[i] == null || "null".equals(vals[i])) b.putAndTriggerTraps("redirect", null); + Object rbox = pis.get("$"+vals[i]); + if (rbox == null) Log.log(this, "redirect target '"+vals[i]+"' not found"); + else b.putAndTriggerTraps("redirect", rbox); + } + else if (keys[i] != null) b.putAndTriggerTraps(keys[i], vals[i]); } @@ -153,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); @@ -161,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 @@ -194,65 +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