2002/06/17 07:01:40
[org.ibex.core.git] / src / org / xwt / Template.java
1 // Copyright 2002 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.mozilla.javascript.*;
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). Each instance of
14  *  Template has a <tt>nodeName</tt> -- this is the resource name of
15  *  the file that the template node occurs in, concatenated with the
16  *  path from the root element to this node, each step of which is in
17  *  the form .n for some integer n. Static nodes use the string "._"
18  *  as a path.
19  *
20  *  Note that the Template instance corresponding to the
21  *  &lt;template/&gt; node carries all the header information -- hence
22  *  some of the instance members are not meaningful on non-root
23  *  Template instances. We refer to these non-root instances as
24  *  <i>anonymous templates</i>.
25  *
26  *  See the XWT reference for information on the order in which
27  *  templates are applied, attributes are put, and scripts are run.
28  */
29 public class Template {
30
31     // Instance Members ///////////////////////////////////////////////////////
32
33     /** this instance's nodeName */
34     String nodeName;
35
36     /** the id of the redirect target; only meaningful on a root node */
37     String redirect = null;
38
39     /** templates that should be preapplied (in the order of application); only meaningful on a root node */
40     private String[] preapply;
41
42     /** 'linked' form of preapply -- the String references have been resolved into instance references */
43     private Template[] _preapply = null;
44
45     /** templates that should be postapplied (in the order of application); only meaningful on a root node */
46     private String[] postapply;
47
48     /** 'linked' form of postapply -- the String references have been resolved into instance references */
49     private Template[] _postapply = null;
50
51     /** keys to be "put" to instances of this template; elements correspond to those of vals */
52     private String[] keys;
53
54     /** values to be "put" to instances of this template; elements correspond to those of keys */
55     private Object[] vals;
56
57     /** array of strings representing the importlist for this template */
58     private String[] importlist;
59
60     /** child template objects */
61     private Template[] children;
62
63     /** an array of the names of properties to be preserved when retheming; only meaningful on a root node */
64     private String[] preserve = null;
65     
66     /** the <tt>id</tt> attribute on this node */
67     private String id = "";
68
69     /** see numUnits(); -1 means that this value has not yet been computed */
70     private int numunits = -1;
71
72     /** true iff the resolution of this template's preapply/postapply sets changed as a result of the most recent call to retheme() */
73     private boolean changed = false;
74
75     /** the script on the static node of this template, null if it has already been executed */
76     private Script staticscript = null;
77
78     /** the script on this node */
79     private Script script = null;
80
81     /** during XML parsing, this holds the list of currently-parsed children; null otherwise */
82     private Vec childvect = new Vec();
83
84     /** during XML parsing, this holds partially-read character data; null otherwise */
85     private StringBuffer content = null;
86
87     /** line number of the first line of <tt>content</tt> */
88     private int content_start = 0;
89
90     /** number of lines in <tt>content</tt> */
91     private int content_lines = 0;
92
93
94     // Static data/methods ///////////////////////////////////////////////////////////////////
95
96     /** a template cache so that only one Template object is created for each xwt */
97     private static Hashtable cache = new Hashtable(1000);
98
99     /** The default importlist; in future revisions this will contain "xwt.*" */
100     public static final String[] defaultImportList = new String[] { };
101
102     /** returns the appropriate template, resolving and theming as needed */
103     public static Template getTemplate(String name, String[] importlist) {
104         String resolved = Resources.resolve(name + ".xwt", importlist);
105         Template t = resolved == null ? null : (Template)cache.get(resolved.substring(0, resolved.length() - 4));
106         if (t != null) return t;
107         if (resolved == null) return null;
108
109         // note that Templates in xwar's are instantiated as read in via loadStream() --
110         // the following code only runs when XWT is reading templates from a filesystem.
111         ByteArrayInputStream bais = new ByteArrayInputStream(Resources.getResource(resolved));
112         return buildTemplate(bais, resolved.substring(0, resolved.length() - 4));
113     }
114
115     public static Template buildTemplate(InputStream is, String nodeName) {
116         try {
117             return new Template(is, nodeName);
118         } catch (XML.SAXParseException e) {
119             if (Log.on) Log.log(Template.class, "error parsing template at " + nodeName + ":" + e.getLineNumber() + "," + e.getColumnNumber());
120             if (Log.on) Log.log(Template.class, e);
121             return null;
122         } catch (XML.SAXException e) {
123             if (Log.on) Log.log(Template.class, "error parsing template " + nodeName);
124             if (Log.on) Log.log(Template.class, e);
125             return null;
126         } catch (TemplateException te) {
127             if (Log.on) Log.log(Template.class, "error parsing template " + nodeName);
128             if (Log.on) Log.log(Template.class, te);
129             return null;
130         } catch (IOException e) {
131             if (Log.on) Log.log(Template.class, "IOException while parsing template " + nodeName + " -- this should never happen");
132             if (Log.on) Log.log(Template.class, e);
133             return null;
134         }
135     }
136
137
138     // Methods to apply templates ////////////////////////////////////////////////////////
139
140     private Template() { } 
141     private Template(InputStream is, String nodeName) throws XML.SAXException, IOException {
142         this.nodeName = nodeName;
143         cache.put(nodeName, this);
144         new TemplateHelper().parseit(is, this);
145     }
146
147     /** calculates, caches, and returns an integer approximation of how long it will take to apply this template, including pre/post and children */
148     int numUnits() {
149         link();
150         if (numunits != -1) return numunits;
151         numunits = 1;
152         for(int i=0; _preapply != null && i<_preapply.length; i++) if (_preapply[i] != null) numunits += _preapply[i].numUnits();
153         for(int i=0; _postapply != null && i<_postapply.length; i++) if (_postapply[i] != null) numunits += _postapply[i].numUnits();
154         if (script != null) numunits += 10;
155         numunits += keys == null ? 0 : keys.length;
156         for(int i=0; children != null && i<children.length; i++) numunits += children[i].numUnits();
157         return numunits;
158     }
159     
160     /** Applies the template to Box b
161      *  @param pboxes a vector of all box parents on which to put $-references
162      *  @param ptemplates a vector of the nodeNames to recieve private references on the pboxes
163      */
164     void apply(Box b, Vec pboxes, Vec ptemplates) {
165
166         if (pboxes == null) {
167             pboxes = new Vec();
168             ptemplates = new Vec();
169         }
170
171         if (id != null && !id.equals(""))
172             for(int i=0; i<pboxes.size(); i++) {
173                 Box parent = (Box)pboxes.elementAt(i);
174                 String parentNodeName = (String)ptemplates.elementAt(i);
175                 parent.putPrivately("$" + id, b, parentNodeName);
176             }
177
178         if (script != null || (redirect != null && !"self".equals(redirect))) {
179             pboxes.addElement(b);
180             ptemplates.addElement(nodeName);
181         }
182
183         int numids = pboxes.size();
184         
185         link();
186
187         for(int i=0; _preapply != null && i<_preapply.length; i++)
188             if (_preapply[i] != null) _preapply[i].apply(b, null, null);
189
190         for (int i=0; children != null && i<children.length; i++)
191             b.put(Integer.MAX_VALUE, null, new Box(children[i], pboxes, ptemplates));
192
193         // whom to redirect to; doesn't take effect until after script runs
194         Box redir = null;
195         if (redirect != null && !"self".equals(redirect))
196             redir = (Box)b.getPrivately("$" + redirect, nodeName);
197
198         if (script != null) try {
199             Context cx = Context.enter();
200             script.exec(cx, b);
201         } catch (EcmaError e) {
202             if (Log.on) Log.log(this, "WARNING: uncaught interpreter exception: " + e.getMessage());
203             if (Log.on) Log.log(this, "         thrown while instantiating " + nodeName + " at " + e.getSourceName() + ":" + e.getLineNumber());
204         } catch (JavaScriptException e) {
205             if (Log.on) Log.log(this, "WARNING: uncaught ecmascript exception: " + e.getMessage());
206             if (Log.on) Log.log(this, "         thrown while instantiating " + nodeName + " at " + e.sourceFile + ":" + e.line);
207         }
208
209         for(int i=0; keys != null && i<keys.length; i++)
210             if (keys[i] == null) { }
211             else if (keys[i].equals("border") || keys[i].equals("image") &&
212                      !vals[i].toString().startsWith("http://") && !vals[i].toString().startsWith("https://")) {
213                 String s = Resources.resolve(vals[i].toString() + ".png", importlist);
214                 if (s != null) b.put(keys[i], null, s.substring(0, s.length() - 4));
215                 else if (Log.on) Log.log(this, "unable to resolve image " + vals[i].toString() + " referenced in attributes of " + nodeName); 
216             }
217             else b.put(keys[i], null, vals[i]);
218
219         if (redirect != null && !"self".equals(redirect)) b.redirect = redir;
220
221         for(int i=0; _postapply != null && i<_postapply.length; i++)
222             if (_postapply[i] != null) _postapply[i].apply(b, null, null);
223
224         pboxes.setSize(numids);
225         ptemplates.setSize(numids);
226
227         Main.instantiatedUnits += 1 + (script == null ? 0 : 10) + (keys == null ? 0 : keys.length);
228         Main.updateSplashScreen();
229     }
230
231
232     // Theming Logic ////////////////////////////////////////////////////////////
233
234     /** helper method to recursively gather up the list of keys to be preserved */
235     private void gatherPreserves(Vec v) {
236         for(int i=0; preserve != null && i<preserve.length; i++) v.addElement(preserve[i]);
237         for(int i=0; _preapply != null && i<_preapply.length; i++) if (_preapply[i] != null) _preapply[i].gatherPreserves(v);
238         for(int i=0; _postapply != null && i<_postapply.length; i++) if (_postapply[i] != null) _postapply[i].gatherPreserves(v);
239     }
240
241     /** adds a theme mapping, retemplatizing as needed */
242     public static void retheme(String from, String to) {
243         if (Log.on) Log.log(Template.class, "retheming from " + from + " to " + to);
244         XWF.flushXWFs();
245         Resources.mapFrom.addElement(from);
246         Resources.mapTo.addElement(to);
247
248         // clear changed marker and relink
249         Template[] t = new Template[cache.size()];
250         Enumeration e = cache.elements();
251         for(int i=0; e.hasMoreElements(); i++) t[i] = (Template)e.nextElement();
252         for(int i=0; i<t.length; i++) {
253             t[i].changed = false;
254             t[i].numunits = -1;
255             t[i].link(true);
256         }
257
258         for(int i=0; i<Surface.allSurfaces.size(); i++) {
259             Box b = ((Surface)Surface.allSurfaces.elementAt(i)).root;
260             if (b != null) reapply(b);
261         }
262     }
263
264     /** template reapplication procedure */
265     private static void reapply(Box b) {
266
267         // Ref 7.5.1: check if we need to retemplatize
268         boolean retemplatize = false;
269         if (b.templatename != null) {
270             Template t = getTemplate(b.templatename, b.importlist);
271             if (t != b.template) retemplatize = true;
272             b.template = t;
273         }
274         if (b.template != null && b.template.changed)
275             retemplatize = true;
276
277         if (retemplatize) {
278
279             // Ref 7.5.2: "Preserve all properties on the box mentioned in the <preserve> elements of any
280             //             of the templates which would be applied in step 7."
281             Vec keys = new Vec();
282             b.template.gatherPreserves(keys);
283             Object[] vals = new Object[keys.size()];
284             for(int i=0; i<keys.size(); i++) vals[i] = b.get(((String)keys.elementAt(i)), null);
285             
286             // Ref 7.5.3: "Remove and save all children of the box, or its redirect target, if it has one"
287             Box[] kids = null;
288             if (b.redirect != null) {
289                 kids = new Box[b.redirect.numChildren()];
290                 for(int i=b.redirect.numChildren() - 1; i >= 0; i--) {
291                     kids[i] = b.redirect.getChild(i);
292                     kids[i].remove();
293                 }
294             }
295             
296             // Ref 7.5.4: "Set the box's redirect target to self"
297             b.redirect = b;
298             
299             // Ref 7.5.5: "Remove all of the box's immediate children"
300             for(Box cur = b.getChild(b.numChildren() - 1); cur != null;) {
301                 Box oldcur = cur;
302                 cur = cur.prevSibling();
303                 oldcur.remove();
304             }
305             
306             // Ref 7.5.6: "Remove all traps set by scripts run during the application of any template to this box"
307             Trap.removeAllTrapsByBox(b);
308             
309             // Ref 7.5.7: "Apply the template to the box according to the usual application procedure"
310             b.template.apply(b, null, null);
311             
312             // Ref 7.5.8: "Re-add the saved children which were removed in step 3"
313             for(int i=0; kids != null && i<kids.length; i++) b.put(Integer.MAX_VALUE, null, kids[i]);
314             
315             // Ref 7.5.9: "Re-put any property values which were preserved in step 2"
316             for(int i=0; i<keys.size(); i++) b.put((String)keys.elementAt(i), null, vals[i]);
317         }        
318
319         // Recurse
320         for(Box j = b.getChild(0); j != null; j = j.nextSibling()) reapply(j);
321     }
322
323     /** runs statics, resolves string references to other templates into actual Template instance references, and sets <tt>change</tt> as needed */
324     void link() { link(false); }
325
326     /** same as link(), except that with a true value, it will force a re-link */
327     private void link(boolean force) {
328
329         if (staticscript != null) try { 
330             Scriptable s = Static.getStatic(nodeName);
331             if (staticscript != null) {
332                 Script temp = staticscript;
333                 ((InterpretedScript)temp).setParentScope(s);     // so we know how to handle Static.get("xwt")
334                 staticscript = null;
335                 temp.exec(Context.enter(), s);
336             }
337         } catch (EcmaError e) {
338             if (Log.on) Log.log(this, "WARNING: uncaught interpreter exception: " + e.getMessage());
339             if (Log.on) Log.log(this, "         thrown while executing <static/> block for " + nodeName +
340                                       " at " + e.getSourceName() + ":" + e.getLineNumber());
341         } catch (JavaScriptException e) {
342             if (Log.on) Log.log(this, "WARNING: uncaught ecmascript exception: " + e.getMessage());
343             if (Log.on) Log.log(this, "         thrown while executing <static/> block for " + nodeName + " at " + e.sourceFile + ":" + e.line);
344         }
345
346         if (!(force || (preapply != null && _preapply == null) || (postapply != null && _postapply == null))) return;
347         
348         if (preapply != null) {
349             if (_preapply == null) _preapply = new Template[preapply.length];
350             for(int i=0; i<_preapply.length; i++) {
351                 Template t = getTemplate(preapply[i], importlist);
352                 if (t != _preapply[i]) changed = true;
353                 _preapply[i] = t;
354             }
355         }
356         if (postapply != null) {
357             if (_postapply == null) _postapply = new Template[postapply.length];
358             for(int i=0; i<_postapply.length; i++) {
359                 Template t = getTemplate(postapply[i], importlist);
360                 if (t != _postapply[i]) changed = true;
361                 _postapply[i] = t;
362             }
363         }
364
365         for(int i=0; children != null && i<children.length; i++) children[i].link(force);
366     }
367
368
369     // XML Parsing /////////////////////////////////////////////////////////////////
370
371     /** handles XML parsing; builds a Template tree as it goes */
372     private static class TemplateHelper extends XML {
373
374         TemplateHelper() {
375             for(int i=0; i<defaultImportList.length; i++) importlist.addElement(defaultImportList[i]);
376         }
377
378         /** parse an XML input stream, building a Template tree off of <tt>root</tt> */
379         void parseit(InputStream is, Template root) throws XML.SAXException, IOException {
380             t = root;
381             parse(new TabAndMaxColumnEnforcingReader(new InputStreamReader(is), root.nodeName)); 
382         }
383
384         /** parsing state: true iff we have already encountered the <xwt> open-tag */
385         boolean rootNodeHasBeenEncountered = false;
386
387         /** parsing state: true iff we have already encountered the <template> open-tag */
388         boolean templateNodeHasBeenEncountered = false;
389
390         /** parsing state: true iff we have already encountered the <static> open-tag */
391         boolean staticNodeHasBeenEncountered = false;
392
393         /** parsing state: true iff we have already encountered the <template> close-tag */
394         boolean templateNodeHasBeenFinished = false;
395
396         /** parsing state: If we have encountered the open tag of a header node, but not the close tag, this is the name of
397          *  that tag; otherwise, it is null. */
398         String nameOfHeaderNodeBeingProcessed = null;
399
400         /** stack of Templates whose XML elements we have seen open-tags for but not close-tags */
401         Vec nodeStack = new Vec();
402
403         /** builds up the list of imports */
404         Vec importlist = new Vec();
405
406         /** builds up the list of preapplies */
407         Vec preapply = new Vec();
408
409         /** builds up the list of postapplies */
410         Vec postapply = new Vec();
411
412         /** the template we're currently working on */
413         Template t = null;
414
415         public void startElement(String name, String[] keys, Object[] vals, int line, int col) throws XML.SAXException {
416
417             if (templateNodeHasBeenFinished) {
418                 throw new XML.SAXException("no elements may appear after the <template> node");
419
420             } else if (!rootNodeHasBeenEncountered) {
421                 if (!"xwt".equals(name)) throw new XML.SAXException("root element was not <xwt>");
422                 if (keys.length != 0) throw new XML.SAXException("root element must not have attributes");
423                 rootNodeHasBeenEncountered = true;
424                 return;
425         
426             } else if (!templateNodeHasBeenEncountered) {
427                 if (nameOfHeaderNodeBeingProcessed != null) throw new XML.SAXException("can't nest header nodes");
428                 nameOfHeaderNodeBeingProcessed = name;
429
430                 if (name.equals("import")) {
431                     if (keys.length != 1 || !keys[0].equals("name"))
432                         throw new XML.SAXException("<import> node must have exactly one attribute, which must be called 'name'");
433                     String importpackage = vals[0].toString();
434                     if (importpackage.endsWith(".*")) importpackage = importpackage.substring(0, importpackage.length() - 2);
435                     importlist.addElement(importpackage);
436                     return;
437
438                 } else if (name.equals("redirect")) {
439                     if (keys.length != 1 || !keys[0].equals("target"))
440                         throw new XML.SAXException("<redirect> node must have exactly one attribute, which must be called 'target'");
441                     if (t.redirect != null)
442                         throw new XML.SAXException("the <redirect> header element may not appear more than once");
443                     t.redirect = vals[0].toString();
444                     return;
445
446                 } else if (name.equals("preapply")) {
447                     if (keys.length != 1 || !keys[0].equals("name"))
448                         throw new XML.SAXException("<preapply> node must have exactly one attribute, which must be called 'name'");
449                     preapply.addElement(vals[0]);
450                     return;
451
452                 } else if (name.equals("postapply")) {
453                     if (keys.length != 1 || !keys[0].equals("name"))
454                         throw new XML.SAXException("<postapply> node must have exactly one attribute, which must be called 'name'");
455                     postapply.addElement(vals[0]);
456                     return;
457
458                 } else if (name.equals("static")) {
459                     if (staticNodeHasBeenEncountered)
460                         throw new XML.SAXException("the <static> header node may not appear more than once");
461                     if (keys.length > 0)
462                         throw new XML.SAXException("the <static> node may not have attributes");
463                     staticNodeHasBeenEncountered = true;
464                     return;
465
466                 } else if (name.equals("preserve")) {
467                     if (keys.length != 1 || !keys[0].equals("attributes"))
468                         throw new XML.SAXException("<preserve> node must have exactly one attribute, which must be called 'attributes'");
469                     if (t.preserve != null)
470                         throw new XML.SAXException("<preserve> header element may not appear more than once");
471
472                     StringTokenizer tok = new StringTokenizer(vals[0].toString(), ",", false);
473                     t.preserve = new String[tok.countTokens()];
474                     for(int i=0; i<t.preserve.length; i++) t.preserve[i] = tok.nextToken();
475                     return;
476
477                 } else if (name.equals("template")) {
478                     // finalize importlist/preapply/postapply, since they can't change from here on
479                     importlist.toArray(t.importlist = new String[importlist.size()]);
480                     if (preapply.size() > 0) preapply.copyInto(t.preapply = new String[preapply.size()]);
481                     if (postapply.size() > 0) postapply.copyInto(t.postapply = new String[postapply.size()]);
482                     importlist = preapply = postapply = null;
483                     templateNodeHasBeenEncountered = true;
484
485                 } else {
486                     throw new XML.SAXException("unrecognized header node \"" + name + "\"");
487
488                 }
489
490             } else {
491
492                 // push the last node we were in onto the stack
493                 nodeStack.addElement(t);
494
495                 // instantiate a new node, and set its nodeName/importlist/preapply
496                 Template t2 = new Template();
497                 t2.nodeName = t.nodeName + "." + t.childvect.size();
498                 t2.importlist = t.importlist;
499                 if (!name.equals("box")) t2.preapply = new String[] { name };
500
501                 // make the new node the current node
502                 t = t2;
503
504             }
505
506             t.keys = keys;
507             t.vals = vals;
508
509             quickSortAttributes(0, t.keys.length - 1);
510
511             for(int i=0; i<t.keys.length; i++) {
512                 if (t.keys[i].equals("id")) {
513                     t.id = vals[i].toString().intern();
514                     t.keys[i] = null;
515                     continue;
516                 }
517
518                 t.keys[i] = t.keys[i].intern();
519
520                 String valString = vals[i].toString();
521                 
522                 if (valString.equals("true")) t.vals[i] = Boolean.TRUE;
523                 else if (valString.equals("false")) t.vals[i] = Boolean.FALSE;
524                 else if (valString.equals("null")) t.vals[i] = null;
525                 else {
526                     boolean hasNonNumeral = false;
527                     boolean periodUsed = false;
528                     for(int j=0; j<valString.length(); j++)
529                         if (j == 0 && valString.charAt(j) == '-') {
530                         } else if (valString.charAt(j) == '.' && !periodUsed && j != valString.length() - 1) {
531                             periodUsed = true;
532                         } else if (!Character.isDigit(valString.charAt(j))) {
533                             hasNonNumeral = true;
534                             break;
535                         }
536                     if (valString.length() > 0 && !hasNonNumeral) vals[i] = new Double(valString);
537                     else vals[i] = valString.intern();
538                 }
539
540                 // bump thisbox to the front of the pack
541                 if (t.keys[i].equals("thisbox")) {
542                     t.keys[i] = t.keys[0];
543                     t.keys[0] = "thisbox";
544                     Object o = t.vals[0];
545                     t.vals[0] = t.vals[i];
546                     t.vals[i] = o;
547                 }
548             }
549         }
550
551         /** simple quicksort, from http://sourceforge.net/snippet/detail.php?type=snippet&id=100240 */
552         private int partitionAttributes(int left, int right) {
553             int i, j, middle;
554             middle = (left + right) / 2;
555             String s = t.keys[right]; t.keys[right] = t.keys[middle]; t.keys[middle] = s;
556             Object o = t.vals[right]; t.vals[right] = t.vals[middle]; t.vals[middle] = o;
557             for (i = left - 1, j = right; ; ) {
558                 while (t.keys[++i].compareTo(t.keys[right]) < 0);
559                 while (j > left && t.keys[--j].compareTo(t.keys[right]) > 0);
560                 if (i >= j) break;
561                 s = t.keys[i]; t.keys[i] = t.keys[j]; t.keys[j] = s;
562                 o = t.vals[i]; t.vals[i] = t.vals[j]; t.vals[j] = o;
563             }
564             s = t.keys[right]; t.keys[right] = t.keys[i]; t.keys[i] = s;
565             o = t.vals[right]; t.vals[right] = t.vals[i]; t.vals[i] = o;
566             return i;
567         }
568         
569         /** simple quicksort, from http://sourceforge.net/snippet/detail.php?type=snippet&id=100240 */
570         private void quickSortAttributes(int left, int right) {
571             if (left >= right) return;
572             int p = partitionAttributes(left, right);
573             quickSortAttributes(left, p - 1);
574             quickSortAttributes(p + 1, right);
575         }
576         
577         public void endElement(String name, int line, int col) throws XML.SAXException {
578
579             boolean hasNonWhitespace = false;
580
581             int len = t == null || t.content == null ? 0 : t.content.length();
582             for(int i=0; t.content != null && i<len; i++)
583                 
584                 // ignore double-slash comment blocks
585                 if (t.content.charAt(i) == '/' && t.content.charAt(i + 1) == '/') {
586                     while(t.content.charAt(i) != '\n' && i<len) i++;
587                     i--;
588
589                 // ignore /* .. */ comment blocks
590                 } else if (i<len - 1 && t.content.charAt(i) == '/' && t.content.charAt(i + 1) == '*') {
591                     i += 2;
592                     while(i<len - 1 && !(t.content.charAt(i) == '*' && t.content.charAt(i + 1) == '/')) i++;
593                     if (i<len - 1 && t.content.charAt(i) == '*' && t.content.charAt(i + 1) == '/') i += 2;
594                     i--;
595
596                 // check for named functions
597                 } else if (i + 8 <= len && t.content.charAt(i) == 'f' && t.content.charAt(i+1) == 'u' &&
598                            t.content.charAt(i+2) == 'n' && t.content.charAt(i+3) == 'c' && t.content.charAt(i+4) == 't' &&
599                            t.content.charAt(i+5) == 'i' && t.content.charAt(i+6) == 'o' && t.content.charAt(i+7) == 'n') {
600                     int j = i + 8;
601                     while(j<len && Character.isWhitespace(t.content.charAt(j))) j++;
602                     if (j<len && t.content.charAt(j) != '(')
603                         throw new XML.SAXException("named functions are not permitted in XWT -- instead of \"function foo() { ... }\"," +
604                                         " use \"foo = function() { ... }\"");
605
606                 // replace " and " with " && "
607                 } else if (i + 5 < len && Character.isWhitespace(t.content.charAt(i)) &&
608                            t.content.charAt(i+1) == 'a' && t.content.charAt(i+2) == 'n' && t.content.charAt(i+3) == 'd' &&
609                            Character.isWhitespace(t.content.charAt(i + 4))) {
610                     t.content.setCharAt(i+1, '&');
611                     t.content.setCharAt(i+2, '&');
612                     t.content.setCharAt(i+3, ' ');
613                     hasNonWhitespace = true;
614
615                 // generic check for nonwhitespace
616                 } else if (!Character.isWhitespace(t.content.charAt(i))) {
617                     hasNonWhitespace = true;
618
619                 }
620             
621             if (rootNodeHasBeenEncountered && !templateNodeHasBeenEncountered) {
622                 if ("static".equals(nameOfHeaderNodeBeingProcessed) && hasNonWhitespace) t.staticscript = genscript(true);
623                 nameOfHeaderNodeBeingProcessed = null;
624
625             } else if (templateNodeHasBeenEncountered && !templateNodeHasBeenFinished) {
626
627                 // turn our childvect into a Template[]
628                 t.childvect.copyInto(t.children = new Template[t.childvect.size()]);
629                 t.childvect = null;
630                 if (hasNonWhitespace) t.script = genscript(false);
631                 
632                 if (nodeStack.size() == 0) {
633                     // </template>
634                     templateNodeHasBeenFinished = true;
635
636                 } else {
637                     // add this template as a child of its parent
638                     Template oldt = t;
639                     t = (Template)nodeStack.lastElement();
640                     nodeStack.setSize(nodeStack.size() - 1);
641                     t.childvect.addElement(oldt);
642                 }
643
644             }
645         }
646
647         private Script genscript(boolean isstatic) {
648             Script thisscript = null;
649             Context cx = Context.enter();
650             cx.setOptimizationLevel(-1);
651
652             try {
653                 thisscript = cx.compileReader(null, new StringReader(t.content.toString()), t.nodeName + (isstatic ? "._" : ""), t.content_start, null);
654             } catch (EcmaError ee) {
655                 if (Log.on) Log.log(this, ee.getMessage() + " at " + ee.getSourceName() + ":" + ee.getLineNumber());
656                 thisscript = null;
657             } catch (EvaluatorException ee) {
658                 if (Log.on) Log.log(this, "  ERROR: " + ee.getMessage());
659                 thisscript = null;
660             } catch (IOException ioe) {
661                 if (Log.on) Log.log(this, "IOException while compiling script; this should never happen");
662                 if (Log.on) Log.log(this, ioe);
663                 thisscript = null;
664             }
665
666             t.content = null;
667             t.content_start = 0;
668             t.content_lines = 0;
669             return thisscript;
670         }
671
672         public void content(char[] ch, int start, int length, int line, int col) throws XML.SAXException {
673             if ("static".equals(nameOfHeaderNodeBeingProcessed) || templateNodeHasBeenEncountered) {
674                 int contentlines = 0;
675                 for(int i=start; i<start + length; i++) if (ch[i] == '\n') contentlines++;
676                 line -= contentlines;
677
678                 if (t.content == null) {
679                     t.content_start = line;
680                     t.content_lines = 0;
681                     t.content = new StringBuffer();
682                 }
683
684                 for(int i=t.content_start + t.content_lines; i<line; i++) {
685                     t.content.append('\n');
686                     t.content_lines++;
687                 }
688
689                 t.content.append(ch, start, length);
690                 t.content_lines += contentlines;
691
692             } else if (nameOfHeaderNodeBeingProcessed != null) {
693                 throw new XML.SAXException("header node <" + nameOfHeaderNodeBeingProcessed + "> cannot have text content");
694
695             }
696
697         }
698
699     }
700
701     /** a filtering reader that watches for tabs and long lines */
702     private static class TabAndMaxColumnEnforcingReader extends FilterReader {
703         private int MAX_COLUMN = 150;
704         private int column = 0;
705         private int line = 1;
706         private boolean lastCharWasCR = false;
707         private String filename;
708         public TabAndMaxColumnEnforcingReader(Reader r, String filename) { super(r); this.filename = filename; }
709         public int read() {
710             if (Log.on) Log.log(this, this.getClass().getName() + ".read() not supported, this should never happen");
711             return -1;
712         }
713         public long skip(long numskip) {
714             if (Log.on) Log.log(this, this.getClass().getName() + ".skip() not supported; this should never happen");
715             return numskip;
716         }
717         public int read(char[] buf, int off, int len) throws IOException {
718             int ret = super.read(buf, off, len);
719             for(int i=off; i<off + ret; i++)
720                 if (buf[i] == '\t') {
721                     throw new TemplateException(filename + ":" + line + "," + column + ": tabs are not allowed in XWT files");
722                 } else if (buf[i] == '\r') {
723                     column = 0;
724                     line++;
725                     lastCharWasCR = true;
726                 } else if (buf[i] == '\n') {
727                     column = 0;
728                     if (!lastCharWasCR) line++;
729                 } else if (++column > MAX_COLUMN) {
730                     throw new TemplateException(filename + ":" + line + ": lines longer than " + MAX_COLUMN + " characters not allowed");
731                 } else {
732                     lastCharWasCR = false;
733                 }
734             return ret;
735         }
736     }
737
738     private static class TemplateException extends IOException {
739         TemplateException(String s) { super(s); }
740     }
741
742 }
743
744