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