1 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
5 import java.util.zip.*;
12 * Encapsulates a template node (the <template/> element of a
13 * .xwt file, or any child element thereof).
15 * Note that the Template instance corresponding to the
16 * <template/> node carries all the header information -- hence
17 * some of the instance members are not meaningful on non-root
18 * Template instances. We refer to these non-root instances as
19 * <i>anonymous templates</i>.
21 * See the XWT reference for information on the order in which
22 * templates are applied, attributes are put, and scripts are run.
24 public class Template {
26 // Instance Members ///////////////////////////////////////////////////////
28 String id = null; ///< the id of this box
29 String redirect = null; ///< the id of the redirect target; only meaningful on a root node
30 private String[] keys; ///< keys to be "put" to instances of this template; elements correspond to those of vals
31 private Object[] vals; ///< values to be "put" to instances of this template; elements correspond to those of keys
32 private Vec children = new Vec(); ///< during XML parsing, this holds the list of currently-parsed children; null otherwise
33 private int numunits = -1; ///< see numUnits(); -1 means that this value has not yet been computed
35 private JS.CompiledFunction script = null; ///< the script on this node
36 private String fileName = "unknown"; ///< the filename this node came from; used only for debugging
37 private Vec preapply = new Vec(); ///< templates that should be preapplied (in the order of application)
40 // Instance Members that are only meaningful on root Template //////////////////////////////////////
42 private JS.Scope staticScope = null; ///< the scope in which the static block is executed
43 private JS.CompiledFunction staticscript = null; ///< the script on the static node of this template, null already performed
46 // Only used during parsing /////////////////////////////////////////////////////////////////
48 private StringBuffer content = null; ///< during XML parsing, this holds partially-read character data; null otherwise
49 private int content_start = 0; ///< line number of the first line of <tt>content</tt>
50 private int content_lines = 0; ///< number of lines in <tt>content</tt>
51 private int startLine = -1; ///< the line number that this element starts on
52 private final Res r; ///< the resource we came from
55 // Static data/methods ///////////////////////////////////////////////////////////////////
57 public static Template getTemplate(Res r) {
59 r = r.addExtension(".xwt");
60 if (r.t != null) return r.t;
61 r.t = new Template(r);
62 new TemplateHelper().parseit(r.getInputStream(), r.t);
64 } catch (Exception e) {
65 if (Log.on) Log.log(r.t.fileName, e);
70 public static Res resolveStringToResource(String str, XWT xwt, boolean permitAbsolute) {
72 if (str.indexOf("://") != -1) {
73 if (permitAbsolute) return Res.stringToRes(str);
74 Log.log(Template.class, "absolute URL " + str + " not permitted here");
80 while(str.indexOf('.') != -1) {
81 String path = str.substring(0, str.indexOf('.'));
82 str = str.substring(str.indexOf('.') + 1);
83 ret = (Res)ret.get(path);
85 ret = (Res)ret.get(str);
90 // Methods to apply templates ////////////////////////////////////////////////////////
92 private Template(Res r) { this.r = r; }
94 /** called before this template is applied or its static object can be externally referenced */
95 JS.Scope getStatic() {
96 if (staticScope == null) staticScope = new JS.Scope(null);
97 if (staticscript == null) return staticScope;
98 JS.CompiledFunction temp = staticscript;
100 temp.call(new JS.Array(), staticScope);
104 /** Applies the template to Box b
105 * @param pboxes a vector of all box parents on which to put $-references
106 * @param ptemplates a vector of the fileNames to recieve private references on the pboxes
108 void apply(Box b, JS.Callable c, XWT xwt) { apply(b, c, xwt, null); }
109 void apply(Box b, JS.Callable callback, XWT xwt, PerInstantiationScope parentPis) {
113 if (id != null) parentPis.putDollar(id, b);
114 for(int i=0; i<preapply.size(); i++) {
115 Template t = getTemplate(resolveStringToResource((String)preapply.elementAt(i), xwt, false));
116 if (t == null) throw new RuntimeException("unable to resolve resource " + preapply.elementAt(i));
117 t.apply(b, callback, xwt);
120 PerInstantiationScope pis = new PerInstantiationScope(b, xwt, parentPis, staticScope);
121 for (int i=0; children != null && i<children.size(); i++) {
123 ((Template)children.elementAt(i)).apply(kid, callback, xwt, pis);
124 b.put(b.numChildren(), kid);
127 if (script != null) script.call(new JS.Array(), pis);
129 for(int i=0; keys != null && i<keys.length; i++)
130 if (vals[i] instanceof String && ((String)vals[i]).charAt(0) == '$') b.put(keys[i], pis.get(vals[i]));
131 else if (keys[i].equals("image")) b.put("image", resolveStringToResource((String)vals[i], xwt, true));
132 else b.put(keys[i], vals[i]);
137 // XML Parsing /////////////////////////////////////////////////////////////////
139 /** handles XML parsing; builds a Template tree as it goes */
140 static final class TemplateHelper extends XML {
145 private static final int STATE_INITIAL = 0;
146 private static final int STATE_IN_XWT_NODE = 1;
147 private static final int STATE_IN_TEMPLATE_NODE = 2;
148 private static final int STATE_FINISHED_TEMPLATE_NODE = 3;
150 private String nameOfHeaderNodeBeingProcessed;
152 Vec nodeStack = new Vec(); ///< stack of Templates whose XML elements we have seen open-tags for but not close-tags
153 Template t = null; ///< the template we're currently working on
155 /** parse an XML input stream, building a Template tree off of <tt>root</tt> */
156 void parseit(InputStream is, Template root) throws XML.XMLException, IOException {
157 state = STATE_INITIAL;
158 nameOfHeaderNodeBeingProcessed = null;
159 nodeStack.setSize(0);
161 parse(new InputStreamReader(is));
164 public void startElement(XML.Element c) throws XML.SchemaException {
167 if (!"xwt".equals(c.localName)) throw new XML.SchemaException("root element was not <xwt>");
168 if (c.len != 0) throw new XML.SchemaException("root element must not have attributes");
169 state = STATE_IN_XWT_NODE;
172 case STATE_IN_XWT_NODE:
173 if (nameOfHeaderNodeBeingProcessed != null) throw new XML.SchemaException("can't nest header nodes");
174 nameOfHeaderNodeBeingProcessed = c.localName;
175 if (c.localName.equals("doc")) {
177 } else if (c.localName.equals("static")) {
178 if (t.staticscript != null)
179 throw new XML.SchemaException("the <static> header node may not appear more than once");
181 throw new XML.SchemaException("the <static> node may not have attributes");
182 } else if (c.localName.equals("template")) {
183 t.startLine = getLine();
184 state = STATE_IN_TEMPLATE_NODE;
185 processBodyElement(c);
187 throw new XML.SchemaException("unrecognized header node \"" + c.localName + "\"");
191 case STATE_IN_TEMPLATE_NODE:
192 // push the last node we were in onto the stack
193 nodeStack.addElement(t);
194 // instantiate a new node, and set its fileName/importlist/preapply
195 Template t2 = new Template(t.r);
196 t2.startLine = getLine();
197 if (!c.localName.equals("box") && !c.localName.equals("template"))
198 t2.preapply.addElement((c.uri == null ? "" : (c.uri + ".")) + c.localName);
199 // make the new node the current node
201 processBodyElement(c);
204 case STATE_FINISHED_TEMPLATE_NODE:
205 throw new XML.SchemaException("no elements may appear after the <template> node");
209 private void processBodyElement(XML.Element c) {
210 Hash h = new Hash(c.len * 2, 3);
211 for(int i=0; i<c.len; i++) {
212 if (c.keys[i].endsWith(":image")) {
213 String uri = (String)c.urimap.get(c.keys[i].substring(0, c.keys[i].indexOf(':')));
214 c.keys[i] = c.keys[i].substring(c.keys[i].lastIndexOf(':') + 1);
215 c.vals[i] = uri + "." + c.vals[i];
217 if ((c.keys[i].equals("preapply") || c.keys[i].endsWith(":preapply")) && c.localName.equals("template")) {
219 if (c.keys[i].endsWith(":preapply")) {
220 uri = "." + c.urimap.get(c.keys[i].substring(0, c.keys[i].indexOf(':')));
221 c.keys[i] = c.keys[i].substring(c.keys[i].lastIndexOf(':') + 1);
223 StringTokenizer tok = new StringTokenizer(c.vals[i].toString(), " ");
224 while(tok.hasMoreTokens()) t.preapply.addElement(uri + tok.nextToken());
225 c.keys[i] = c.keys[c.keys.length - 1];
226 c.vals[i] = c.vals[c.vals.length - 1];
230 h.put(c.keys[i], c.vals[i]);
232 t.keys = new String[h.size()];
233 t.vals = new Object[h.size()];
235 Vec v = new Vec(h.size(), c.keys);
236 v.sort(new Vec.CompareFunc() { public int compare(Object a, Object b) { return ((String)a).compareTo((String)b); } });
237 for(int i=0; i<h.size(); i++) {
238 if (c.keys[i].equals("thisbox")) {
239 for(int j=i; j>0; j--) { t.keys[j] = t.keys[j - 1]; t.vals[j] = t.vals[j - 1]; }
240 t.keys[0] = (String)v.elementAt(i);
241 t.vals[0] = h.get(t.keys[0]);
243 t.keys[i] = (String)v.elementAt(i);
244 t.vals[i] = h.get(t.keys[i]);
248 for(int i=0; i<t.keys.length; i++) {
249 if (t.keys[i].equals("id")) {
250 t.id = t.vals[i].toString().intern();
255 t.keys[i] = t.keys[i].intern();
257 String valString = t.vals[i].toString();
259 if (valString.equals("true")) t.vals[i] = Boolean.TRUE;
260 else if (valString.equals("false")) t.vals[i] = Boolean.FALSE;
261 else if (valString.equals("null")) t.vals[i] = null;
263 boolean hasNonNumeral = false;
264 boolean periodUsed = false;
265 for(int j=0; j<valString.length(); j++)
266 if (j == 0 && valString.charAt(j) == '-') {
267 } else if (valString.charAt(j) == '.' && !periodUsed && j != valString.length() - 1) {
269 } else if (!Character.isDigit(valString.charAt(j))) {
270 hasNonNumeral = true;
273 if (valString.length() > 0 && !hasNonNumeral) t.vals[i] = new Double(valString);
274 else t.vals[i] = valString.intern();
279 private JS.CompiledFunction parseScript(boolean isstatic) {
280 JS.CompiledFunction thisscript = null;
282 thisscript = JS.parse(t.fileName + (isstatic ? "._" : ""), t.content_start, new StringReader(t.content.toString()));
283 } catch (IOException ioe) {
284 if (Log.on) Log.log(this, " ERROR: " + ioe.getMessage());
293 public void endElement(XML.Element c) throws XML.SchemaException {
294 if (state == STATE_IN_XWT_NODE) {
295 if ("static".equals(nameOfHeaderNodeBeingProcessed) && t.content != null) t.staticscript = parseScript(true);
296 nameOfHeaderNodeBeingProcessed = null;
298 } else if (state == STATE_IN_TEMPLATE_NODE) {
299 if (t.content != null) t.script = parseScript(false);
300 if (nodeStack.size() == 0) {
302 state = STATE_FINISHED_TEMPLATE_NODE;
305 // add this template as a child of its parent
307 t = (Template)nodeStack.lastElement();
308 nodeStack.setSize(nodeStack.size() - 1);
309 t.children.addElement(oldt);
314 public void characters(char[] ch, int start, int length) throws XML.SchemaException {
315 // invoke the no-tab crusade
316 for (int i=0; length >i; i++) if (ch[start+i] == '\t') throw new XML.SchemaException(
317 t.fileName+ ":" + getLine() + "," + getCol() + ": tabs are not allowed in XWT files");
319 if ("static".equals(nameOfHeaderNodeBeingProcessed) || state == STATE_IN_TEMPLATE_NODE) {
320 if (t.content == null) {
321 t.content_start = getLine();
323 t.content = new StringBuffer();
326 t.content.append(ch, start, length);
329 } else if (nameOfHeaderNodeBeingProcessed != null && state != STATE_FINISHED_TEMPLATE_NODE) {
330 throw new XML.SchemaException("header node <" + nameOfHeaderNodeBeingProcessed + "> cannot have text content");
334 public void whitespace(char[] ch, int start, int length) throws XML.SchemaException { }
337 private static class PerInstantiationScope extends JS.Scope {
339 PerInstantiationScope parentBoxPis = null;
340 JS.Scope myStatic = null;
341 void putDollar(String key, Box target) {
342 if (parentBoxPis != null) parentBoxPis.putDollar(key, target);
344 put("$" + key, target);
346 public PerInstantiationScope(Scope parentScope, XWT xwt, PerInstantiationScope parentBoxPis, JS.Scope myStatic) {
348 this.parentBoxPis = parentBoxPis;
350 this.myStatic = myStatic;
352 public boolean isTransparent() { return true; }
353 public boolean has(Object key) { return false; }
354 public void declare(String s) { super.declare(s); }
355 public Object get(Object key) {
356 if (key.equals("xwt")) return xwt;
357 if (key.equals("static")) return myStatic;
358 if (Box.SpecialBoxProperty.specialBoxProperties.get(key.toString()) != null) return getParentScope().get(key);
359 if (super.has(key)) return super.get(key);
360 Object ret = xwt.rr.get(key);
361 if (ret != null) return ret;
362 throw new JS.Exn("must declare " + key + " before using it!");
364 public void put(Object key, Object val) {
365 if (Box.SpecialBoxProperty.specialBoxProperties.get(key.toString()) != null) getParentScope().put(key, val);
366 else if (super.has(key)) super.put(key, val);
367 else throw new JS.Exn("must declare " + key + " before using it!");