2003/11/27 05:05:09
[org.ibex.core.git] / src / org / xwt / Template.java
1 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt;
3
4 import java.io.*;
5 import java.util.zip.*;
6 import java.util.*;
7 import java.lang.*;
8 import org.xwt.js.*;
9 import org.xwt.util.*;
10
11 /**
12  *  Encapsulates a template node (the <template/> element of a
13  *  .xwt file, or any child element thereof).
14  *
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>.
20  *
21  *  See the XWT reference for information on the order in which
22  *  templates are applied, attributes are put, and scripts are run.
23  */
24 public class Template {
25
26     // Instance Members ///////////////////////////////////////////////////////
27
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
34
35     private JSFunction 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)
38
39
40     // Instance Members that are only meaningful on root Template //////////////////////////////////////
41
42     private JSScope staticJSScope = null;   ///< the scope in which the static block is executed
43     private JSFunction staticscript = null;  ///< the script on the static node of this template, null already performed
44
45
46     // Only used during parsing /////////////////////////////////////////////////////////////////
47
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 startLine = -1;            ///< the line number that this element starts on
51     private final Res r;                   ///< the resource we came from
52
53
54     // Static data/methods ///////////////////////////////////////////////////////////////////
55
56     public static Template getTemplate(Res r) {
57         try {
58             r = r.addExtension(".xwt");
59             if (r.t != null) return r.t;
60             r.t = new Template(r);
61             try { new TemplateHelper().parseit(r.getInputStream(), r.t); }
62             catch (FileNotFoundException e) { Log.log(Template.class, "template not found: "+r); }
63             return r.t;
64         } catch (Exception e) {
65             if (Log.on) Log.log(r.t == null ? "null" : r.t.fileName, e);
66             return null;
67         }
68     }
69
70     public static Res resolveStringToResource(String str, XWT xwt, boolean permitAbsolute) {
71         // URL
72         if (str.indexOf("://") != -1) {
73             if (permitAbsolute) return (Res)xwt.callMethod("res.url", str, null, null, null, 1);
74             Log.log(Template.class, "absolute URL " + str + " not permitted here");
75             return null;
76         }
77
78         // root-relative
79         Res ret = xwt.rr;
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);
84         }
85         ret = (Res)ret.get(str);
86         return ret;
87     }
88
89
90     // Methods to apply templates ////////////////////////////////////////////////////////
91
92     private Template(Res r) {
93         this.r = r;
94         String f = r.toString();
95         if (f != null && !f.equals(""))
96             fileName = f.substring(f.lastIndexOf('/')+1, f.endsWith(".xwt") ? f.length() - 4 : f.length());
97     }
98
99     /** called before this template is applied or its static object can be externally referenced */
100     JSScope getStatic() {
101         if (staticJSScope == null) staticJSScope = new JSScope(null);
102         if (staticscript == null) return staticJSScope;
103         JSFunction temp = staticscript;
104         staticscript = null;
105         temp.cloneWithNewParentScope(staticJSScope).call(null, null, null, null, 0);
106         return staticJSScope;
107     }
108     
109     /** Applies the template to Box b
110      *  @param pboxes a vector of all box parents on which to put $-references
111      *  @param ptemplates a vector of the fileNames to recieve private references on the pboxes
112      */
113     void apply(Box b, XWT xwt) { apply(b, xwt, null); }
114     void apply(Box b, XWT xwt, PerInstantiationJSScope parentPis) {
115
116         getStatic();
117
118         if (id != null) parentPis.putDollar(id, b);
119         for(int i=0; i<preapply.size(); i++) {
120             Template t = getTemplate(resolveStringToResource((String)preapply.elementAt(i), xwt, false));
121             if (t == null) throw new RuntimeException("unable to resolve resource " + preapply.elementAt(i));
122             t.apply(b, xwt);
123         }
124
125         PerInstantiationJSScope pis = new PerInstantiationJSScope(b, xwt, parentPis, staticJSScope);
126         for (int i=0; children != null && i<children.size(); i++) {
127             Box kid = new Box();
128             ((Template)children.elementAt(i)).apply(kid, xwt, pis);
129             b.putAndTriggerTraps(JS.N(b.treeSize()), kid);
130         }
131
132         if (script != null) script.cloneWithNewParentScope(pis).call(null, null, null, null, 0);
133
134         for(int i=0; keys != null && i<keys.length; i++)
135             if (vals[i] instanceof String && ((String)vals[i]).charAt(0) == '$') b.putAndTriggerTraps(keys[i], pis.get(vals[i]));
136             else if ("image".equals(keys[i])) b.putAndTriggerTraps("image", resolveStringToResource((String)vals[i], xwt, true));
137             else if (keys[i] != null) b.putAndTriggerTraps(keys[i], vals[i]);
138     }
139
140
141
142     // XML Parsing /////////////////////////////////////////////////////////////////
143
144     /** handles XML parsing; builds a Template tree as it goes */
145     static final class TemplateHelper extends XML {
146
147         TemplateHelper() { }
148
149         private int state;
150         private static final int STATE_INITIAL = 0;
151         private static final int STATE_IN_XWT_NODE = 1;
152         private static final int STATE_IN_TEMPLATE_NODE = 2;
153         private static final int STATE_FINISHED_TEMPLATE_NODE = 3;
154
155         private String nameOfHeaderNodeBeingProcessed;
156
157         Vec nodeStack = new Vec();  ///< stack of Templates whose XML elements we have seen open-tags for but not close-tags
158         Template t = null;          ///< the template we're currently working on
159
160         /** parse an XML input stream, building a Template tree off of <tt>root</tt> */
161         void parseit(InputStream is, Template root) throws XML.XMLException, IOException {
162             state = STATE_INITIAL;
163             nameOfHeaderNodeBeingProcessed = null;
164             nodeStack.setSize(0);
165             t = root;
166             parse(new InputStreamReader(is)); 
167         }
168
169         public void startElement(XML.Element c) throws XML.SchemaException {
170             switch(state) {
171             case STATE_INITIAL:
172                 if (!"xwt".equals(c.localName)) throw new XML.SchemaException("root element was not <xwt>");
173                 if (c.len != 0) throw new XML.SchemaException("root element must not have attributes");
174                 state = STATE_IN_XWT_NODE;
175                 return;
176
177             case STATE_IN_XWT_NODE:
178                 if (nameOfHeaderNodeBeingProcessed != null) throw new XML.SchemaException("can't nest header nodes");
179                 nameOfHeaderNodeBeingProcessed = c.localName;
180                 if (c.localName.equals("doc")) {
181                     // FEATURE
182                 } else if (c.localName.equals("static")) {
183                     if (t.staticscript != null)
184                         throw new XML.SchemaException("the <static> header node may not appear more than once");
185                     if (c.len > 0)
186                         throw new XML.SchemaException("the <static> node may not have attributes");
187                 } else if (c.localName.equals("template")) {
188                     t.startLine = getLine();
189                     state = STATE_IN_TEMPLATE_NODE;
190                     processBodyElement(c);
191                 } else {
192                     throw new XML.SchemaException("unrecognized header node \"" + c.localName + "\"");
193                 }
194                 return;
195
196             case STATE_IN_TEMPLATE_NODE:
197                 // push the last node we were in onto the stack
198                 nodeStack.addElement(t);
199                 // instantiate a new node, and set its fileName/importlist/preapply
200                 Template t2 = new Template(t.r);
201                 t2.startLine = getLine();
202                 if (!c.localName.equals("box") && !c.localName.equals("template"))
203                     t2.preapply.addElement((c.uri == null ? "" : (c.uri + ".")) + c.localName);
204                 // make the new node the current node
205                 t = t2;
206                 processBodyElement(c);
207                 return;
208
209             case STATE_FINISHED_TEMPLATE_NODE:
210                 throw new XML.SchemaException("no elements may appear after the <template> node");
211             }
212         }        
213
214         private void processBodyElement(XML.Element c) {
215             Hash h = new Hash(c.len * 2, 3);
216
217             // WARNING: c.keys.length != c.len; USE c.len
218             for(int i=0; i<c.len; i++) {
219                 if (c.keys[i] == null) throw new RuntimeException("XML parser returned a null key position="+i);
220                 if (c.keys[i].equals("font") && c.uris[i] != null) c.vals[i] = c.uris[i] + "." + c.vals[i];
221                 if (c.keys[i].equals("preapply")) {
222                     // process preapply and 'remove' from array
223                     String uri = c.uris[i] == null ? "" : c.uris[i] + '.';
224                     StringTokenizer tok = new StringTokenizer(c.vals[i].toString(), " ");
225                     while(tok.hasMoreTokens()) t.preapply.addElement(uri + tok.nextToken());
226
227                     if (i < c.len - 1) { // not the last attribute
228                         c.keys[i] = c.keys[c.len - 1];
229                         c.vals[i] = c.vals[c.len - 1];
230                         c.uris[i] = c.uris[c.len - 1];
231                     }
232                     c.len--; i--;
233                     continue;
234                 }
235                 h.put(c.keys[i], c.vals[i]);
236             }
237             t.keys = new String[h.size()];
238             t.vals = new Object[h.size()];
239
240             Vec v = new Vec(h.size(), c.keys);
241             v.sort(new Vec.CompareFunc() { public int compare(Object a, Object b) { return ((String)a).compareTo((String)b); } });
242             for(int i=0; i<h.size(); i++) {
243                 if (c.keys[i].equals("thisbox")) {
244                     for(int j=i; j>0; j--) { t.keys[j] = t.keys[j - 1]; t.vals[j] = t.vals[j - 1]; }
245                     t.keys[0] = (String)v.elementAt(i);
246                     t.vals[0] = h.get(t.keys[0]);
247                 } else {
248                     t.keys[i] = (String)v.elementAt(i);
249                     t.vals[i] = h.get(t.keys[i]);
250                 }
251             }
252
253             for(int i=0; i<t.keys.length; i++) {
254                 if (t.keys[i].equals("id")) {
255                     t.id = t.vals[i].toString().intern();
256                     t.keys[i] = null;
257                     continue;
258                 }
259
260                 t.keys[i] = t.keys[i].intern();
261
262                 String valString = t.vals[i].toString();
263                 
264                 if (valString.equals("true")) t.vals[i] = Boolean.TRUE;
265                 else if (valString.equals("false")) t.vals[i] = Boolean.FALSE;
266                 else if (valString.equals("null")) t.vals[i] = null;
267                 else {
268                     boolean hasNonNumeral = false;
269                     boolean periodUsed = false;
270                     for(int j=0; j<valString.length(); j++)
271                         if (j == 0 && valString.charAt(j) == '-') {
272                         } else if (valString.charAt(j) == '.' && !periodUsed && j != valString.length() - 1) {
273                             periodUsed = true;
274                         } else if (!Character.isDigit(valString.charAt(j))) {
275                             hasNonNumeral = true;
276                             break;
277                         }
278                     if (valString.length() > 0 && !hasNonNumeral) t.vals[i] = new Double(valString);
279                     else t.vals[i] = valString.intern();
280                 }
281             }
282         }
283
284         private JSFunction parseScript(boolean isstatic) {
285             JSFunction thisscript = null;
286             try {
287                 String contentString = t.content.toString();
288                 if (contentString.trim().length() > 0)
289                     thisscript = JSFunction.fromReader(t.fileName + (isstatic ? "._" : ""),
290                                                        t.content_start,
291                                                        new StringReader(contentString));
292             } catch (IOException ioe) {
293                 if (Log.on) Log.log(this, "  ERROR: " + ioe.getMessage());
294                 thisscript = null;
295             }
296             t.content = null;
297             t.content_start = 0;
298             return thisscript;
299         }
300
301         public void endElement(XML.Element c) throws XML.SchemaException {
302             if (state == STATE_IN_XWT_NODE) {
303                 if ("static".equals(nameOfHeaderNodeBeingProcessed) && t.content != null) t.staticscript = parseScript(true);
304                 nameOfHeaderNodeBeingProcessed = null;
305                 
306             } else if (state == STATE_IN_TEMPLATE_NODE) {
307                 if (t.content != null) t.script = parseScript(false);
308                 if (nodeStack.size() == 0) {
309                     // </template>
310                     state = STATE_FINISHED_TEMPLATE_NODE;
311                     
312                 } else {
313                     // add this template as a child of its parent
314                     Template oldt = t;
315                     t = (Template)nodeStack.lastElement();
316                     nodeStack.setSize(nodeStack.size() - 1);
317                     t.children.addElement(oldt);
318
319                     int oldt_lines = getLine() - oldt.startLine;
320                     for (int i=0; oldt_lines > i; i++) t.content.append('\n');
321                 }
322             }
323          }
324
325         public void characters(char[] ch, int start, int length) throws XML.SchemaException {
326             // invoke the no-tab crusade
327             for (int i=0; length >i; i++) if (ch[start+i] == '\t') throw new XML.SchemaException(
328                 t.fileName+ ":" + getLine() + "," + getCol() + ": tabs are not allowed in XWT files");
329
330             if ("static".equals(nameOfHeaderNodeBeingProcessed) || state == STATE_IN_TEMPLATE_NODE) {
331                 if (t.content == null) {
332                     t.content_start = getLine();
333                     t.content = new StringBuffer();
334                 }
335
336                 t.content.append(ch, start, length);
337
338             } else if (nameOfHeaderNodeBeingProcessed != null && state != STATE_FINISHED_TEMPLATE_NODE) {
339                 throw new XML.SchemaException("header node <" + nameOfHeaderNodeBeingProcessed + "> cannot have text content");
340             }
341         }
342
343         public void whitespace(char[] ch, int start, int length) throws XML.SchemaException { }
344     }
345
346     private static class PerInstantiationJSScope extends JSScope {
347         XWT xwt = null;
348         PerInstantiationJSScope parentBoxPis = null;
349         JSScope myStatic = null;
350         void putDollar(String key, Box target) {
351             if (parentBoxPis != null) parentBoxPis.putDollar(key, target);
352             declare("$" + key);
353             put("$" + key, target);
354         }
355         public PerInstantiationJSScope(JSScope parentScope, XWT xwt, PerInstantiationJSScope parentBoxPis, JSScope myStatic) {
356             super(parentScope);
357             this.parentBoxPis = parentBoxPis;
358             this.xwt = xwt;
359             this.myStatic = myStatic;
360         }
361         public Object get(Object key) {
362             if (super.has(key)) return super.get(key);
363             if (key.equals("xwt")) return xwt;
364             if (key.equals("static")) return myStatic;
365             return super.get(key);
366         }
367         public void put(Object key, Object val) {
368             if (super.has(key)) super.put(key, val);
369             else super.put(key, val);
370         }
371     }
372
373 }
374
375