6e29c4a1452cef387af86f1e75f4a3bffe4b85b6
[org.ibex.core.git] / src / org / ibex / core / Template.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.ibex.core;
3
4 import java.io.*;
5 import java.util.*;
6 import org.ibex.js.*;
7 import org.ibex.util.*;
8
9 /**
10  *  Encapsulates a template node (the <template/> element of a
11  *  .ibex file, or any child element thereof).
12  *
13  *  Note that the Template instance corresponding to the
14  *  <template/> node carries all the header information -- hence
15  *  some of the instance members are not meaningful on non-root
16  *  Template instances. We refer to these non-root instances as
17  *  <i>anonymous templates</i>.
18  *
19  *  See the Ibex reference for information on the order in which
20  *  templates are applied, attributes are put, and scripts are run.
21  */
22 public class Template {
23
24     // Instance Members ///////////////////////////////////////////////////////
25
26     String id = null;                   ///< the id of this box
27     String redirect = null;             ///< the id of the redirect target; only meaningful on a root node
28     private String[] keys;              ///< keys to be "put" to instances of this template; elements correspond to those of vals
29     private Object[] vals;              ///< values to be "put" to instances of this template; elements correspond to those of keys
30     private String[] urikeys;
31     private String[] urivals;
32     private Vec children = new Vec();   ///< during XML parsing, this holds the list of currently-parsed children; null otherwise
33     private JS script = null;           ///< the script on this node
34     Template prev;
35     Template prev2;
36     JSScope staticScope = null;         ///< the scope in which the static block is executed
37     JS staticObject = null;
38
39
40     // Only used during parsing /////////////////////////////////////////////////////////////////
41
42     private StringBuffer content = null;   ///< during XML parsing, this holds partially-read character data; null otherwise
43     private int content_start = 0;         ///< line number of the first line of <tt>content</tt>
44     private int startLine = -1;            ///< the line number that this element starts on
45     private Ibex ibex;
46
47
48     // Static data/methods ///////////////////////////////////////////////////////////////////
49
50     // for non-root nodes
51     private Template(Template t, int startLine) { prev = t; this.ibex = t.ibex; this.startLine = startLine; }
52     private Template(Ibex ibex) { this.ibex = ibex; }
53     
54
55     // Methods to apply templates ////////////////////////////////////////////////////////
56
57    
58     /** Applies the template to Box b
59      *  @param pboxes a vector of all box parents on which to put $-references
60      *  @param ptemplates a vector of the fileNames to recieve private references on the pboxes
61      */
62     public void apply(Box b) throws JSExn {
63         try {
64             apply(b, null);
65         } catch (IOException e) {
66             b.clear(Box.VISIBLE);
67             b.mark_for_repack();
68             Log.warn(this, e);
69             throw new JSExn(e.toString());
70         } catch (JSExn e) {
71             b.clear(Box.VISIBLE);
72             b.mark_for_repack();
73             Log.warn(this, e);
74             throw e;
75         }
76     }
77
78     private void apply(Box b, PerInstantiationScope parentPis) throws JSExn, IOException {
79         if (prev != null) prev.apply(b, null);
80         if (prev2 != null) prev2.apply(b, null);
81
82         // FIXME this dollar stuff is all wrong
83         if (id != null) parentPis.putDollar(id, b);
84
85         PerInstantiationScope pis = new PerInstantiationScope(b, ibex, parentPis, staticObject);
86         for(int i=0; i<urikeys.length; i++) {
87             if (urikeys[i] == null) continue;
88             pis.declare(urikeys[i]);
89             pis.put(urikeys[i], ibex.resolveString(urivals[i], true));
90         }
91
92         // FIXME needs to obey the new application-ordering rules
93         for (int i=0; children != null && i<children.size(); i++) {
94             Box kid = new Box();
95             ((Template)children.elementAt(i)).apply(kid, pis);
96             b.putAndTriggerTraps(b.get("numchildren"), kid);
97         }
98
99         if (script != null) JS.cloneWithNewParentScope(script, pis).call(null, null, null, null, 0);
100
101         Object key, val;
102         for(int i=0; keys != null && i < keys.length; i++) {
103             if (keys[i] == null) continue;
104             key = keys[i];
105             val = vals[i];
106
107             if ("null".equals(val)) val = null;
108
109             if (val != null && val instanceof String && ((String)val).length() > 0) {
110                 switch (((String)val).charAt(0)) {
111                     case '$':
112                         val = pis.get(val);
113                         if (val == null) throw new JSExn("unknown box id '"+vals[i]+"' referenced in XML attribute");
114                         break;
115                     case '.':
116                         val = ibex.resolveString(((String)val).substring(1), false);
117                     // FIXME: url case
118                     // FIXME: should we be resolving all of these in the XML-parsing code?
119                 }
120             }
121             b.putAndTriggerTraps(key, val);
122         }
123     }
124
125
126
127     // XML Parsing /////////////////////////////////////////////////////////////////
128
129     public static Template buildTemplate(String sourceName, Object s, Ibex ibex) {
130         try {
131             return new TemplateHelper(sourceName, s, ibex).t;
132         } catch (Exception e) {
133             Log.error(Template.class, e);
134             return null;
135         }
136     }
137
138     /** handles XML parsing; builds a Template tree as it goes */
139     static final class TemplateHelper extends XML {
140
141         String sourceName;
142         private int state = STATE_INITIAL;
143         private static final int STATE_INITIAL = 0;
144         private static final int STATE_IN_ROOT_NODE = 1;
145         private static final int STATE_IN_TEMPLATE_NODE = 2; 
146         private static final int STATE_IN_META_NODE = 3;
147
148         StringBuffer static_content = null;
149         int static_content_start = 0;
150         Vec nodeStack = new Vec();
151         Template t = null;
152         int meta = 0;
153         Ibex ibex;
154
155         String initial_uri = "";
156
157         public TemplateHelper(String sourceName, Object s, Ibex ibex) throws XML.Exn, IOException, JSExn {
158             this.sourceName = sourceName;
159             this.ibex = ibex;
160             InputStream is = Stream.getInputStream(s);
161             Ibex.Blessing b = Ibex.Blessing.getBlessing(s).parent;
162             while(b != null) {
163                 if(b.parentkey != null) initial_uri = b.parentkey + (initial_uri.equals("") ? "" : "." + initial_uri);
164                 b = b.parent;
165             }
166             initial_uri = "";
167             parse(new InputStreamReader(is));
168             JS staticScript = parseScript(static_content, static_content_start);
169             t.staticObject = new JS();
170             t.staticScope = new PerInstantiationScope(null, ibex, null, t.staticObject);
171             if (staticScript != null) JS.cloneWithNewParentScope(staticScript, t.staticScope).call(null, null, null, null, 0);
172         }
173
174         private JS parseScript(StringBuffer content, int content_start) throws IOException {
175             if (content == null) return null;
176             String contentString = content.toString();
177             if (contentString.trim().length() > 0) return JS.fromReader(sourceName, content_start, new StringReader(contentString));
178             return null;
179         }
180
181         public void startElement(XML.Element c) throws XML.Exn {
182             switch(state) {
183                 case STATE_IN_META_NODE: { meta++; return; }
184                 case STATE_INITIAL:
185                     if (!"ibex".equals(c.getLocalName()))
186                         throw new XML.Exn("root element was not <ibex>", XML.Exn.SCHEMA, getLine(), getCol());
187                     if (c.getAttrLen() != 0)
188                         throw new XML.Exn("root element must not have attributes", XML.Exn.SCHEMA, getLine(), getCol());
189                     if (c.getUri("ui") == null || "".equals(c.getUri("ui"))) c.addUri("ui", "ibex://ui");
190                     if (c.getUri("meta") == null || "".equals(c.getUri("meta"))) c.addUri("meta", "ibex://meta");
191                     if (c.getUri("") == null || "".equals(c.getUri(""))) c.addUri("", initial_uri);
192                     state = STATE_IN_ROOT_NODE;
193                     return;
194                 case STATE_IN_ROOT_NODE:
195                     if ("ibex://meta".equals(c.getUri())) { state = STATE_IN_META_NODE; meta = 0; return; }
196                     state = STATE_IN_TEMPLATE_NODE;
197                     t = (t == null) ? new Template(ibex) : new Template(t, getLine());
198                     break;
199                 case STATE_IN_TEMPLATE_NODE:
200                     nodeStack.addElement(t);
201                     t = new Template(ibex);
202                     break;
203             }
204
205             if (!("ibex://ui".equals(c.getUri()) && "box".equals(c.getLocalName()))) {
206                 String tagname = (c.getUri().equals("") ? "" : (c.getUri() + ".")) + c.getLocalName();
207                 // GROSS hack
208                 try {
209                     // GROSSER hack
210                     t.prev2 = (Template)t.ibex.resolveString(tagname, false).call(null, null, null, null, 9999);
211                 } catch (Exception e) {
212                     Log.error(Template.class, e);
213                 }
214             }
215                 
216             Hash urimap = c.getUriMap();
217             t.urikeys = new String[urimap.size()];
218             t.urivals = new String[urimap.size()];
219             Enumeration uriEnumeration = urimap.keys();
220             int ii = 0;
221             while(uriEnumeration.hasMoreElements()) {
222                 String key = (String)uriEnumeration.nextElement();
223                 String val = (String)urimap.get(key);
224                 if (val.equals("ibex://ui")) continue;
225                 if (val.equals("ibex://meta")) continue;
226                 t.urikeys[ii] = key;
227                 if (val.length() > 0 && val.charAt(0) == '.') val = val.substring(1);
228                 t.urivals[ii] = val;
229                 ii++;
230             }
231             
232             Vec keys = new Vec(c.getAttrLen());
233             Vec vals = new Vec(c.getAttrLen());
234
235             // process attributes into Vecs, dealing with any XML Namespaces in the process
236             ATTR: for (int i=0; i < c.getAttrLen(); i++) {
237                 if (c.getAttrKey(i).equals("id")) {
238                     t.id = c.getAttrVal(i).toString().intern();
239                     continue ATTR;
240                 }
241
242                 // treat value starting with '.' as resource reference
243                 String uri = c.getAttrUri(i); if (!uri.equals("")) uri = '.' + uri;
244                 keys.addElement(c.getAttrKey(i));
245                 vals.addElement((c.getAttrVal(i).startsWith(".") ? uri : "") + c.getAttrVal(i));
246             }
247
248             if (keys.size() == 0) return;
249
250             // sort the attributes lexicographically
251             Vec.sort(keys, vals, new Vec.CompareFunc() { public int compare(Object a, Object b) {
252                 return ((String)a).compareTo((String)b);
253             } });
254
255             t.keys = new String[keys.size()];
256             t.vals = new Object[vals.size()];
257             keys.copyInto(t.keys);
258             vals.copyInto(t.vals);
259
260             // convert attributes to appropriate types and intern strings
261             for(int i=0; i<t.keys.length; i++) {
262                 t.keys[i] = t.keys[i].intern();
263
264                 String valString = t.vals[i].toString();
265                 
266                 if (valString.equals("true")) t.vals[i] = Boolean.TRUE;
267                 else if (valString.equals("false")) t.vals[i] = Boolean.FALSE;
268                 else if (valString.equals("null")) t.vals[i] = null;
269                 else {
270                     boolean hasNonNumeral = false;
271                     boolean periodUsed = false;
272                     for(int j=0; j<valString.length(); j++)
273                         if (j == 0 && valString.charAt(j) == '-') {
274                         } else if (valString.charAt(j) == '.' && !periodUsed && j != valString.length() - 1) {
275                             periodUsed = true;
276                         } else if (!Character.isDigit(valString.charAt(j))) {
277                             hasNonNumeral = true;
278                             break;
279                         }
280                     if (valString.length() > 0 && !hasNonNumeral) t.vals[i] = new Double(valString);
281                     else t.vals[i] = valString.intern();
282                 }
283             }
284         }
285
286         public void endElement(XML.Element c) throws XML.Exn, IOException {
287             switch(state) {
288                 case STATE_IN_META_NODE: if (--meta < 0) state = STATE_IN_ROOT_NODE; return;
289                 case STATE_IN_ROOT_NODE: return;
290                 case STATE_IN_TEMPLATE_NODE: {
291                     if (t.content != null) { t.script = parseScript(t.content, t.content_start); t.content = null; }
292                     if (nodeStack.size() == 0) { state = STATE_IN_ROOT_NODE; return; }
293                     Template oldt = t;
294                     t = (Template)nodeStack.lastElement();
295                     nodeStack.setSize(nodeStack.size() - 1);
296                     t.children.addElement(oldt);
297                     int oldt_lines = getLine() - oldt.startLine;
298                     if (t.content == null) t.content = new StringBuffer();
299                     for (int i=0; oldt_lines > i; i++) t.content.append('\n');
300                 }
301             }
302         }
303
304         public void characters(char[] ch, int start, int length) throws XML.Exn {
305             for (int i=0; length >i; i++) if (ch[start+i] == '\t')
306                 Log.error(Template.class, "tabs are not allowed in Ibex files ("+getLine()+":"+getCol()+")");
307             switch(state) {
308                 case STATE_IN_TEMPLATE_NODE:
309                     if (t.content == null) {
310                         t.content_start = getLine();
311                         t.content = new StringBuffer();
312                     }
313                     t.content.append(ch, start, length);
314                     return;
315                 case STATE_IN_ROOT_NODE:
316                     if (static_content == null) {
317                         static_content_start = getLine();
318                         static_content = new StringBuffer();
319                     }
320                     static_content.append(ch, start, length);
321                     return;
322             }
323         }
324
325         public void whitespace(char[] ch, int start, int length) throws XML.Exn { }
326     }
327
328     private static class PerInstantiationScope extends JSScope {
329         Ibex ibex = null;
330         PerInstantiationScope parentBoxPis = null;
331         JS myStatic = null;
332         void putDollar(String key, Box target) throws JSExn {
333             if (parentBoxPis != null) parentBoxPis.putDollar(key, target);
334             declare("$" + key);
335             put("$" + key, target);
336         }
337         public PerInstantiationScope(JSScope parentScope, Ibex ibex, PerInstantiationScope parentBoxPis, JS myStatic) {
338             super(parentScope);
339             this.parentBoxPis = parentBoxPis;
340             this.ibex = ibex;
341             this.myStatic = myStatic;
342         }
343         public Object get(Object key) throws JSExn {
344             if (super.has(key)) return super.get(key);
345             if (key.equals("ibex")) return ibex;
346             if (key.equals("")) return ibex.get("");
347             if (key.equals("static")) return myStatic;
348             return super.get(key);
349         }
350     }
351
352 }
353
354