2003/11/19 02:38:49
[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             new TemplateHelper().parseit(r.getInputStream(), r.t);
62             return r.t;
63         } catch (Exception e) {
64             if (Log.on) Log.log(r.t == null ? "null" : r.t.fileName, e);
65             return null;
66         }
67     }
68
69     public static Res resolveStringToResource(String str, XWT xwt, boolean permitAbsolute) {
70         // URL
71         if (str.indexOf("://") != -1) {
72             // FIXME
73             //if (permitAbsolute) return Res.fromString(str);
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) { this.r = r; }
93
94     /** called before this template is applied or its static object can be externally referenced */
95     JSScope getStatic() {
96         if (staticJSScope == null) staticJSScope = new JSScope(null);
97         if (staticscript == null) return staticJSScope;
98         JSFunction temp = staticscript;
99         staticscript = null;
100         temp.cloneWithNewParentScope(staticJSScope).call(null, null, null, null, 0);
101         return staticJSScope;
102     }
103     
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
107      */
108     void apply(Box b, XWT xwt) { apply(b, xwt, null); }
109     void apply(Box b, XWT xwt, PerInstantiationJSScope parentPis) {
110
111         getStatic();
112
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, xwt);
118         }
119
120         PerInstantiationJSScope pis = new PerInstantiationJSScope(b, xwt, parentPis, staticJSScope);
121         for (int i=0; children != null && i<children.size(); i++) {
122             Box kid = new Box();
123             ((Template)children.elementAt(i)).apply(kid, xwt, pis);
124             b.putAndTriggerTraps(JS.N(b.numchildren), kid);
125         }
126
127         if (script != null) script.cloneWithNewParentScope(pis).call(null, null, null, null, 0);
128
129         for(int i=0; keys != null && i<keys.length; i++)
130             if (vals[i] instanceof String && ((String)vals[i]).charAt(0) == '$') b.putAndTriggerTraps(keys[i], pis.get(vals[i]));
131             else if ("image".equals(keys[i])) b.putAndTriggerTraps("image", resolveStringToResource((String)vals[i], xwt, true));
132             else if (keys[i] != null) b.putAndTriggerTraps(keys[i], vals[i]);
133     }
134
135
136
137     // XML Parsing /////////////////////////////////////////////////////////////////
138
139     /** handles XML parsing; builds a Template tree as it goes */
140     static final class TemplateHelper extends XML {
141
142         TemplateHelper() { }
143
144         private int state;
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;
149
150         private String nameOfHeaderNodeBeingProcessed;
151
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
154
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);
160             t = root;
161             parse(new InputStreamReader(is)); 
162         }
163
164         public void startElement(XML.Element c) throws XML.SchemaException {
165             switch(state) {
166             case STATE_INITIAL:
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;
170                 return;
171
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")) {
176                     // FEATURE
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");
180                     if (c.len > 0)
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);
186                 } else {
187                     throw new XML.SchemaException("unrecognized header node \"" + c.localName + "\"");
188                 }
189                 return;
190
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
200                 t = t2;
201                 processBodyElement(c);
202                 return;
203
204             case STATE_FINISHED_TEMPLATE_NODE:
205                 throw new XML.SchemaException("no elements may appear after the <template> node");
206             }
207         }        
208
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] == null) continue;
213                 if (c.keys[i].equals("font")) c.vals[i] = c.uris[i] + "." + c.vals[i];
214                 if (c.keys[i].equals("preapply")) {
215                     String uri = c.uris[i];
216                     StringTokenizer tok = new StringTokenizer(c.vals[i].toString(), " ");
217                     while(tok.hasMoreTokens()) t.preapply.addElement(uri + tok.nextToken());
218                     c.keys[i] = c.keys[c.keys.length - 1];
219                     c.vals[i] = c.vals[c.vals.length - 1];
220                     i--;
221                     continue;
222                 }
223                 h.put(c.keys[i], c.vals[i]);
224             }
225             t.keys = new String[h.size()];
226             t.vals = new Object[h.size()];
227
228             Vec v = new Vec(h.size(), c.keys);
229             v.sort(new Vec.CompareFunc() { public int compare(Object a, Object b) { return ((String)a).compareTo((String)b); } });
230             for(int i=0; i<h.size(); i++) {
231                 if (c.keys[i].equals("thisbox")) {
232                     for(int j=i; j>0; j--) { t.keys[j] = t.keys[j - 1]; t.vals[j] = t.vals[j - 1]; }
233                     t.keys[0] = (String)v.elementAt(i);
234                     t.vals[0] = h.get(t.keys[0]);
235                 } else {
236                     t.keys[i] = (String)v.elementAt(i);
237                     t.vals[i] = h.get(t.keys[i]);
238                 }
239             }
240
241             for(int i=0; i<t.keys.length; i++) {
242                 if (t.keys[i].equals("id")) {
243                     t.id = t.vals[i].toString().intern();
244                     t.keys[i] = null;
245                     continue;
246                 }
247
248                 t.keys[i] = t.keys[i].intern();
249
250                 String valString = t.vals[i].toString();
251                 
252                 if (valString.equals("true")) t.vals[i] = Boolean.TRUE;
253                 else if (valString.equals("false")) t.vals[i] = Boolean.FALSE;
254                 else if (valString.equals("null")) t.vals[i] = null;
255                 else {
256                     boolean hasNonNumeral = false;
257                     boolean periodUsed = false;
258                     for(int j=0; j<valString.length(); j++)
259                         if (j == 0 && valString.charAt(j) == '-') {
260                         } else if (valString.charAt(j) == '.' && !periodUsed && j != valString.length() - 1) {
261                             periodUsed = true;
262                         } else if (!Character.isDigit(valString.charAt(j))) {
263                             hasNonNumeral = true;
264                             break;
265                         }
266                     if (valString.length() > 0 && !hasNonNumeral) t.vals[i] = new Double(valString);
267                     else t.vals[i] = valString.intern();
268                 }
269             }
270         }
271
272         private JSFunction parseScript(boolean isstatic) {
273             JSFunction thisscript = null;
274             try {
275                 String contentString = t.content.toString();
276                 if (contentString.trim().length() > 0)
277                     thisscript = JSFunction.fromReader(t.fileName + (isstatic ? "._" : ""),
278                                                        t.content_start,
279                                                        new StringReader(contentString));
280             } catch (IOException ioe) {
281                 if (Log.on) Log.log(this, "  ERROR: " + ioe.getMessage());
282                 thisscript = null;
283             }
284             t.content = null;
285             t.content_start = 0;
286             return thisscript;
287         }
288
289         public void endElement(XML.Element c) throws XML.SchemaException {
290             if (state == STATE_IN_XWT_NODE) {
291                 if ("static".equals(nameOfHeaderNodeBeingProcessed) && t.content != null) t.staticscript = parseScript(true);
292                 nameOfHeaderNodeBeingProcessed = null;
293                 
294             } else if (state == STATE_IN_TEMPLATE_NODE) {
295                 if (t.content != null) t.script = parseScript(false);
296                 if (nodeStack.size() == 0) {
297                     // </template>
298                     state = STATE_FINISHED_TEMPLATE_NODE;
299                     
300                 } else {
301                     // add this template as a child of its parent
302                     Template oldt = t;
303                     t = (Template)nodeStack.lastElement();
304                     nodeStack.setSize(nodeStack.size() - 1);
305                     t.children.addElement(oldt);
306
307                     int oldt_lines = getLine() - oldt.startLine;
308                     for (int i=0; oldt_lines > i; i++) t.content.append('\n');
309                 }
310             }
311          }
312
313         public void characters(char[] ch, int start, int length) throws XML.SchemaException {
314             // invoke the no-tab crusade
315             for (int i=0; length >i; i++) if (ch[start+i] == '\t') throw new XML.SchemaException(
316                 t.fileName+ ":" + getLine() + "," + getCol() + ": tabs are not allowed in XWT files");
317
318             if ("static".equals(nameOfHeaderNodeBeingProcessed) || state == STATE_IN_TEMPLATE_NODE) {
319                 if (t.content == null) {
320                     t.content_start = getLine();
321                     t.content = new StringBuffer();
322                 }
323
324                 t.content.append(ch, start, length);
325
326             } else if (nameOfHeaderNodeBeingProcessed != null && state != STATE_FINISHED_TEMPLATE_NODE) {
327                 throw new XML.SchemaException("header node <" + nameOfHeaderNodeBeingProcessed + "> cannot have text content");
328             }
329         }
330
331         public void whitespace(char[] ch, int start, int length) throws XML.SchemaException { }
332     }
333
334     private static class PerInstantiationJSScope extends JSScope {
335         XWT xwt = null;
336         PerInstantiationJSScope parentBoxPis = null;
337         JSScope myStatic = null;
338         void putDollar(String key, Box target) {
339             if (parentBoxPis != null) parentBoxPis.putDollar(key, target);
340             declare("$" + key);
341             put("$" + key, target);
342         }
343         public PerInstantiationJSScope(JSScope parentScope, XWT xwt, PerInstantiationJSScope parentBoxPis, JSScope myStatic) {
344             super(parentScope);
345             this.parentBoxPis = parentBoxPis;
346             this.xwt = xwt;
347             this.myStatic = myStatic;
348         }
349         public Object get(Object key) {
350             if (super.has(key)) return super.get(key);
351             if (key.equals("xwt")) return xwt;
352             if (key.equals("static")) return myStatic;
353             return super.get(key);
354         }
355         public void put(Object key, Object val) {
356             if (super.has(key)) super.put(key, val);
357             else super.put(key, val);
358         }
359     }
360
361 }
362
363