X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FTemplate.java;h=1d3965507ca5745c7dbdc348fa50899245e288bf;hb=ba143aff264ef5fa76ec48d1cdbbfffa17e4a527;hp=ef6a6f39db5e7cb51bdb2619a9bf5d5b43797137;hpb=5ef18e2b3993d3c515a0b51a1326b2ad11285f4a;p=org.ibex.core.git diff --git a/src/org/xwt/Template.java b/src/org/xwt/Template.java index ef6a6f3..1d39655 100644 --- a/src/org/xwt/Template.java +++ b/src/org/xwt/Template.java @@ -25,53 +25,50 @@ 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 + 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 JS.CompiledFunction script = null; ///< the script on this node - private String fileName = "unknown"; ///< the filename this node came from; used only for debugging - private Vec preapply; ///< templates that should be preapplied (in the order of application) + 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 JS.Scope staticScope = null; ///< the scope in which the static block is executed - private JS.CompiledFunction staticscript = null; ///< the script on the static node of this template, null already performed + 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 // 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 - final Res r; ///< the resource we came from + 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 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 str; - Log.log("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 @@ -88,46 +85,74 @@ public class Template { // Methods to apply templates //////////////////////////////////////////////////////// - private Template() { 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 */ - JS.Scope getStatic() { - if (staticScope == null) staticScope = new JS.Scope(null); - if (staticscript == null) return staticScope; - JS.CompiledFunction temp = staticscript; + JSScope getStatic() throws JSExn { + if (staticJSScope == null) staticJSScope = new JSScope(null); + if (staticscript == null) return staticJSScope; + JSFunction temp = staticscript; staticscript = null; - temp.call(new JS.Array(), staticScope); - return staticScope; + temp.cloneWithNewParentScope(staticJSScope).call(null, null, null, null, 0); + 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, JS.Callable c, XWT xwt) { apply(b, c, xwt, null); } - void apply(Box b, JS.Callable callback, XWT xwt, PerInstantiationScope 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(); - if (id != null) parentPis.putDollar(id, this); + if (id != null) parentPis.putDollar(id, b); for(int i=0; i"); if (c.len != 0) throw new XML.SchemaException("root element must not have attributes"); - state = STATE_IN_XWT_NODE + 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")) { - // FIXME: ignore + // FEATURE } else if (c.localName.equals("static")) { - if (staticscript != null) + 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(); 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; @@ -195,46 +230,38 @@ public class Template { } private void processBodyElement(XML.Element c) { - // 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.fileName); - t2.startLine = getLine(); - if (!c.localName.equals("box")) - t2.preapply.addElement((c.uri == null ? "" : (c.uri + ".")) + c.localName); - // make the new node the current node - t = t2; - - t.keys = new String[c.len]; - t.vals = new Object[c.len]; Hash h = new Hash(c.len * 2, 3); + + // WARNING: c.keys.length != c.len; USE c.len for(int i=0; i0; j--) { t.keys[j] = t.keys[j - 1]; t.vals[j] = t.vals[j - 1]; } t.keys[0] = (String)v.elementAt(i); - t.vals[0] = h.get(t.keys[i]); + t.vals[0] = h.get(t.keys[0]); } else { t.keys[i] = (String)v.elementAt(i); t.vals[i] = h.get(t.keys[i]); @@ -272,21 +299,19 @@ public class Template { } } - private JS.CompiledFunction parseScript(boolean isstatic) { - JS.CompiledFunction thisscript = null; - try { - thisscript = JS.parse(t.fileName + (isstatic ? "._" : ""), t.content_start, new StringReader(t.content.toString())); - } catch (IOException ioe) { - if (Log.on) Log.log(this, " ERROR: " + ioe.getMessage()); - thisscript = null; - } + private JSFunction parseScript(boolean isstatic) throws IOException { + JSFunction thisscript = null; + String contentString = t.content.toString(); + if (contentString.trim().length() > 0) + thisscript = JSFunction.fromReader(t.fileName + (isstatic ? "._" : ""), + t.content_start, + new StringReader(contentString)); t.content = null; t.content_start = 0; - t.content_lines = 0; return thisscript; } - public void endElement(XML.Element c) throws XML.SchemaException { + public void endElement(XML.Element c) throws XML.SchemaException, IOException { if (state == STATE_IN_XWT_NODE) { if ("static".equals(nameOfHeaderNodeBeingProcessed) && t.content != null) t.staticscript = parseScript(true); nameOfHeaderNodeBeingProcessed = null; @@ -303,6 +328,9 @@ public class Template { 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'); } } } @@ -315,14 +343,12 @@ public class Template { 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) { + } else if (nameOfHeaderNodeBeingProcessed != null && state != STATE_FINISHED_TEMPLATE_NODE) { throw new XML.SchemaException("header node <" + nameOfHeaderNodeBeingProcessed + "> cannot have text content"); } } @@ -330,34 +356,31 @@ public class Template { public void whitespace(char[] ch, int start, int length) throws XML.SchemaException { } } - private static class PerInstantiationScope extends JS.Scope { + private static class PerInstantiationJSScope extends JSScope { XWT xwt = null; - PerInstantiationScope parentBoxPis = null; - void putDollar(String key, Box target) { + PerInstantiationJSScope parentBoxPis = null; + JSScope myStatic = null; + void putDollar(String key, Box target) throws JSExn { if (parentBoxPis != null) parentBoxPis.putDollar(key, target); declare("$" + key); put("$" + key, target); } - public PerInstantiationScope(Scope parentScope, XWT xwt, PerInstantiationScope parentBoxPis) { + public PerInstantiationJSScope(JSScope parentScope, XWT xwt, PerInstantiationJSScope parentBoxPis, JSScope myStatic) { super(parentScope); this.parentBoxPis = parentBoxPis; this.xwt = xwt; + this.myStatic = myStatic; } - public boolean isTransparent() { return true; } - public boolean has(Object key) { return false; } - public void declare(String s) { super.declare(s); } - public Object get(Object key) { - if (key.equals("xwt")) return xwt; - if (Box.SpecialBoxProperty.specialBoxProperties.get(key) != null) return parentScope.get(key); + public Object get(Object key) throws JSExn { if (super.has(key)) return super.get(key); - Object ret = xwt.rr.get(key); - if (ret != null) return ret; - throw new JS.Exn("must declare " + key + " before using it!"); + if (key.equals("xwt")) return xwt; + if (key.equals("")) return xwt.rr; + if (key.equals("static")) return myStatic; + return super.get(key); } - public void put(Object key, Object val) { - if (Box.SpecialBoxProperty.specialBoxProperties.get(key) == null) parentScope.put(key, val); - else if (super.has(key)) super.put(key, val); - else throw new JS.Exn("must declare " + key + " before using it!"); + public void put(Object key, Object val) throws JSExn { + if (super.has(key)) super.put(key, val); + else super.put(key, val); } }