X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fxwt%2FTemplate.java;h=2cc62420e61021993a5953448a3eb93b2588140c;hp=c45134c3c0a7a6d1e1b74b1926f93fa5419d72b3;hb=16c24a73c1c1b2955db0bbbaf5a940215329bca1;hpb=a7bc8922080f56017b141a3835c722344fa4cffc diff --git a/src/org/xwt/Template.java b/src/org/xwt/Template.java index c45134c..2cc6242 100644 --- a/src/org/xwt/Template.java +++ b/src/org/xwt/Template.java @@ -1,4 +1,4 @@ -// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL] +// Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL] package org.xwt; import java.io.*; @@ -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.*; /** @@ -25,234 +26,222 @@ public class Template { // Instance Members /////////////////////////////////////////////////////// - String id = null; ///< the id of this box - String redirect = null; ///< the id of the redirect target; only meaningful on a root node - private String[] keys; ///< keys to be "put" to instances of this template; elements correspond to those of vals - private Object[] vals; ///< values to be "put" to instances of this template; elements correspond to those of keys - private Vec children = new Vec(); ///< during XML parsing, this holds the list of currently-parsed children; null otherwise - private int numunits = -1; ///< see numUnits(); -1 means that this value has not yet been computed - - private JSFunction script = null; ///< the script on this node - private String fileName = "unknown"; ///< the filename this node came from; used only for debugging - private Vec preapply = new Vec(); ///< templates that should be preapplied (in the order of application) - - - // Instance Members that are only meaningful on root Template ////////////////////////////////////// - - private JSScope staticJSScope = null; ///< the scope in which the static block is executed - private JSFunction staticscript = null; ///< the script on the static node of this template, null already performed + String id = null; ///< the id of this box + String redirect = null; ///< the id of the redirect target; only meaningful on a root node + private String[] keys; ///< keys to be "put" to instances of this template; elements correspond to those of vals + private Object[] vals; ///< values to be "put" to instances of this template; elements correspond to those of keys + private String[] urikeys; + private String[] urivals; + private Vec children = new Vec(); ///< during XML parsing, this holds the list of currently-parsed children; null otherwise + private JS script = null; ///< the script on this node + Template prev; + JSScope staticScope = null; ///< the scope in which the static block is executed // Only used during parsing ///////////////////////////////////////////////////////////////// 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 + private XWT xwt; // Static data/methods /////////////////////////////////////////////////////////////////// - public static Template getTemplate(Res r) { - 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 == null ? "null" : r.t.fileName, e); - return null; - } - } - - public static Res resolveStringToResource(String str, XWT xwt, boolean permitAbsolute) { - // URL - if (str.indexOf("://") != -1) { - if (permitAbsolute) return Res.fromString(str); - Log.log(Template.class, "absolute URL " + str + " not permitted here"); - return null; - } - - // root-relative - Res ret = xwt.rr; - while(str.indexOf('.') != -1) { - String path = str.substring(0, str.indexOf('.')); - str = str.substring(str.indexOf('.') + 1); - ret = (Res)ret.get(path); - } - ret = (Res)ret.get(str); - return ret; - } - + // for non-root nodes + private Template(Template t, int startLine) { prev = t; this.xwt = t.xwt; this.startLine = startLine; } + private Template(XWT xwt) { this.xwt = xwt; } + // Methods to apply templates //////////////////////////////////////////////////////// - private Template(Res r) { this.r = r; } - - /** called before this template is applied or its static object can be externally referenced */ - JSScope getStatic() { - if (staticJSScope == null) staticJSScope = new JSScope(null); - if (staticscript == null) return staticJSScope; - JSFunction temp = staticscript; - staticscript = null; - temp.cloneWithNewParentJSScope(staticJSScope).call(new JSArray()); - return staticJSScope; - } - + /** Applies the template to Box b * @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) throws JSExn { + try { + apply(b, null); + } catch (IOException e) { + b.clear(b.VISIBLE); + b.mark_for_repack(); + Log.warn(this, e); + throw new JSExn(e.toString()); + } catch (JSExn e) { + b.clear(b.VISIBLE); + b.mark_for_repack(); + Log.warn(this, e); + throw e; + } + } - getStatic(); + private void apply(Box b, PerInstantiationScope parentPis) throws JSExn, IOException { + if (prev != null) prev.apply(b, null); + // FIXME this dollar stuff is all wrong if (id != null) parentPis.putDollar(id, b); - for(int i=0; i 0) { + switch (((String)val).charAt(0)) { + case '$': + val = pis.get(val); + if (val == null) throw new JSExn("unknown box id '"+vals[i]+"' referenced in XML attribute"); + break; + case '.': + val = xwt.resolveString(((String)val).substring(1), false); + // FIXME: url case + // FIXME: should we be resolving all of these in the XML-parsing code? + } + } - for(int i=0; keys != null && iroot */ - void parseit(InputStream is, Template root) throws XML.XMLException, IOException { - state = STATE_INITIAL; - nameOfHeaderNodeBeingProcessed = null; - nodeStack.setSize(0); - t = root; - parse(new InputStreamReader(is)); + private JS parseScript(StringBuffer content, int content_start) throws IOException { + if (content == null) return null; + String contentString = content.toString(); + if (contentString.trim().length() > 0) return JS.fromReader("FIXME", content_start, new StringReader(contentString)); + return null; } - 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"); - 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")) { - // FEATURE - } else if (c.localName.equals("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")) { - t.startLine = getLine(); + case STATE_IN_META_NODE: { meta++; return; } + case STATE_INITIAL: + if (!"ibex".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 ("meta".equals(c.getPrefix())) { state = STATE_IN_META_NODE; meta = 0; return; } state = STATE_IN_TEMPLATE_NODE; - processBodyElement(c); - } else { - throw new XML.SchemaException("unrecognized header node \"" + c.localName + "\""); - } - return; - - case STATE_IN_TEMPLATE_NODE: - // push the last node we were in onto the stack - nodeStack.addElement(t); - // 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); - // 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 - state = STATE_FINISHED_TEMPLATE_NODE; - - } else { - // add this template as a child of its parent + public void endElement(XML.Element c) throws XML.Exn, IOException { + switch(state) { + case STATE_IN_META_NODE: if (meta-- < 0) state = STATE_IN_XWT_NODE; return; + case STATE_IN_XWT_NODE: return; + case STATE_IN_TEMPLATE_NODE: { + if (t.content != null) { t.script = parseScript(t.content, t.content_start); t.content = null; } + if (nodeStack.size() == 0) { state = STATE_IN_XWT_NODE; return; } Template oldt = t; t = (Template)nodeStack.lastElement(); nodeStack.setSize(nodeStack.size() - 1); t.children.addElement(oldt); + int oldt_lines = getLine() - oldt.startLine; + for (int i=0; oldt_lines > i; i++) t.content.append('\n'); } } - } - - public void characters(char[] ch, int start, int length) throws XML.SchemaException { - // invoke the no-tab crusade - for (int i=0; length >i; i++) if (ch[start+i] == '\t') throw new XML.SchemaException( - t.fileName+ ":" + getLine() + "," + getCol() + ": tabs are not allowed in XWT files"); - - if ("static".equals(nameOfHeaderNodeBeingProcessed) || state == STATE_IN_TEMPLATE_NODE) { - if (t.content == null) { - t.content_start = getLine(); - t.content_lines = 0; - t.content = new StringBuffer(); - } - - t.content.append(ch, start, length); - t.content_lines++; + } - } else if (nameOfHeaderNodeBeingProcessed != null && state != STATE_FINISHED_TEMPLATE_NODE) { - throw new XML.SchemaException("header node <" + nameOfHeaderNodeBeingProcessed + "> cannot have text content"); + public void characters(char[] ch, int start, int length) throws XML.Exn { + for (int i=0; length >i; i++) if (ch[start+i] == '\t') + Log.error(Template.class, "tabs are not allowed in XWT files ("+getLine()+":"+getCol()+")"); + switch(state) { + case STATE_IN_TEMPLATE_NODE: + if (t.content == null) { + t.content_start = getLine(); + t.content = new StringBuffer(); + } + t.content.append(ch, start, length); + return; + case STATE_IN_XWT_NODE: + if (static_content == null) { + static_content_start = getLine(); + static_content = new StringBuffer(); + } + static_content.append(ch, start, length); + return; } } - public void whitespace(char[] ch, int start, int length) throws XML.SchemaException { } + public void whitespace(char[] ch, int start, int length) throws XML.Exn { } } - private static class PerInstantiationJSScope extends JSScope { + private static class PerInstantiationScope extends JSScope { XWT xwt = null; - PerInstantiationJSScope parentBoxPis = null; + PerInstantiationScope parentBoxPis = null; JSScope myStatic = null; - void putDollar(String key, Box target) { + void putDollar(String key, Box target) throws JSExn { if (parentBoxPis != null) parentBoxPis.putDollar(key, target); declare("$" + key); put("$" + key, target); } - public PerInstantiationJSScope(JSScope parentJSScope, XWT xwt, PerInstantiationJSScope parentBoxPis, JSScope myStatic) { - super(parentJSScope); + public PerInstantiationScope(JSScope parentScope, XWT xwt, PerInstantiationScope parentBoxPis, JSScope myStatic) { + super(parentScope); this.parentBoxPis = parentBoxPis; this.xwt = xwt; this.myStatic = myStatic; } - public Object get(Object key) { + public Object get(Object key) throws JSExn { if (super.has(key)) return super.get(key); if (key.equals("xwt")) return xwt; + if (key.equals("")) return xwt.get(""); if (key.equals("static")) return myStatic; return super.get(key); } - public void put(Object key, Object val) { - if (super.has(key)) super.put(key, val); - else super.put(key, val); - } } }