40fbb2387fa56afdd45c25f23bb0b5b80a536a30
[org.ibex.core.git] / src / org / xwt / XMLRPC.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.net.*;
6 import java.util.*;
7 import org.xwt.js.*;
8 import org.xwt.util.*;
9 import org.bouncycastle.util.encoders.Base64;
10
11 /**
12  *  An XML-RPC client implemented as a JavaScript Host Object. See the
13  *  XWT spec for information on its behavior.
14  *
15  *  NOTE: this client is EXTREMELY lenient in the responses it will
16  *  accept; there are many, many invalid responses that it will
17  *  successfully parse and return. Do NOT use this to determine the
18  *  validity of your server.
19  *
20  *  This client conforms to <a href="http://www.xmlrpc.com/spec">The
21  *  XML-RPC Spec</a>, subject to these limitations:
22  *  <ol>
23  *    <li> XMLRPC cannot invoke methods that require a <base64/> argument
24  *    <li> if a return value contains a <base64/>, it will be returned as a string
25  *    <li> The decision to pass a number as <i4/> or <double/> is based
26  *         entirely on whether or not the argument is fractional. Thus, it
27  *         is impossible to pass a non-fractional number to an xmlrpc
28  *         method that insists on being called with a <double/> element. We
29  *         hope that most xml-rpc servers will be able to automatically
30  *         convert.
31  *  </ol>
32  */
33 class XMLRPC extends JS.Callable {
34
35     public Object[] keys() { throw new Error("not implemented"); }
36
37     /** the url to connect to */
38     protected String url = null;
39
40     /** the method name to invoke on the remove server */
41     protected String methodname = null;
42
43     /** this holds character content as we read it in -- since there is only one per instance, we don't support mixed content */
44     protected AccessibleCharArrayWriter content = new AccessibleCharArrayWriter(100);
45
46     /** the HTTP connection to use */
47     protected HTTP http = null;
48
49     /** The object stack. As we process xml elements, pieces of the
50      *  return value are pushed onto and popped off of this stack.
51      *
52      *  The general protocol is that any time a &lt;value&gt; tag is
53      *  encountered, an empty String ("") is pushed onto the stack. If
54      *  the &lt;value/&gt; node has content (either an anonymous
55      *  string or some other XML node), that content replaces the
56      *  empty string.
57      *
58      *  If an &lt;array&gt; tag is encountered, a null is pushed onto the
59      *  stack. When a &lt;/data&gt; is encountered, we search back on the
60      *  stack to the last null, replace it with a NativeJS.Array, and
61      *  insert into it all elements above it on the stack.
62      *
63      *  If a &lt;struct&gt; tag is encountered, a JSObject is pushed
64      *  onto the stack. If a &lt;name&gt; tag is encountered, its CDATA is
65      *  pushed onto the stack. When a &lt;/member&gt; is encountered, the
66      *  name (second element on stack) and value (top of stack) are
67      *  popped off the stack and inserted into the struct (third
68      *  element on stack).
69      */
70     protected Vec objects = null;
71
72     /** used to detect multi-ref data */
73     private Hash tracker;
74
75     /** True iff the return value is a fault (and should be thrown as an exception) */
76     protected boolean fault = false;
77
78
79     // Methods to Recieve and parse XML-RPC Response ////////////////////////////////////////////////////
80
81     private class Helper extends XML {
82         public Helper() { super(BUFFER_SIZE); }
83
84         public void startElement(XML.Element c) {
85             content.reset();
86             if (c.localName.equals("fault")) fault = true;
87             else if (c.localName.equals("struct")) objects.setElementAt(new JS.Obj(), objects.size() - 1);
88             else if (c.localName.equals("array")) objects.setElementAt(null, objects.size() - 1);
89             else if (c.localName.equals("value")) objects.addElement("");
90         }
91         
92         public void endElement(XML.Element c) {
93             
94             if (c.localName.equals("int") || c.localName.equals("i4"))
95                 objects.setElementAt(new Integer(new String(content.getBuf(), 0, content.size())), objects.size() - 1);
96             
97             else if (c.localName.equals("boolean"))
98                 objects.setElementAt(content.getBuf()[0] == '1' ? Boolean.TRUE : Boolean.FALSE, objects.size() - 1);
99             
100             else if (c.localName.equals("string"))
101                 objects.setElementAt(new String(content.getBuf(), 0, content.size()), objects.size() - 1);
102             
103             else if (c.localName.equals("double"))
104                 objects.setElementAt(new Double(new String(content.getBuf(), 0, content.size())), objects.size() - 1);
105             
106             else if (c.localName.equals("base64"))
107                 objects.setElementAt(new Res.ByteArray(Base64.decode(new String(content.getBuf(), 0, content.size()))), objects.size() - 1);
108
109             else if (c.localName.equals("name"))
110                 objects.addElement(new String(content.getBuf(), 0, content.size()));
111             
112             else if (c.localName.equals("value") && "".equals(objects.lastElement()))
113                 objects.setElementAt(new String(content.getBuf(), 0, content.size()), objects.size() - 1);
114             
115             else if (c.localName.equals("dateTime.iso8601")) {
116                 throw new Error("not implemented");
117                 /*
118                   String s = new String(content.getBuf(), 0, content.size());
119                   
120                   // strip whitespace
121                   int i=0;
122                   while(Character.isWhitespace(s.charAt(i))) i++;
123                   if (i > 0) s = s.substring(i);
124                   
125                   try {
126                   NativeDate nd = (NativeDate)JS.Thread.enter().newObject(org.xwt.util.JS.Obj.defaultObjects, "Date");
127                   double date = NativeDate.date_msecFromDate(Double.valueOf(s.substring(0, 4)).doubleValue(),
128                   Double.valueOf(s.substring(4, 6)).doubleValue() - 1,
129                   Double.valueOf(s.substring(6, 8)).doubleValue(),
130                   Double.valueOf(s.substring(9, 11)).doubleValue(),
131                   Double.valueOf(s.substring(12, 14)).doubleValue(),
132                   Double.valueOf(s.substring(15, 17)).doubleValue(),
133                   (double)0
134                   );
135                   nd.jsFunction_setTime(NativeDate.internalUTC(date));
136                   objects.setElementAt(nd, objects.size() - 1);
137                   
138                   } catch (Exception e) {
139                   if (Log.on) Log.log(this, "error parsing date : " + s);
140                   if (Log.on) Log.log(this, e);
141                   }
142                 */
143                 
144             } else if (c.localName.equals("member")) {
145                 Object memberValue = objects.elementAt(objects.size() - 1);
146                 String memberName = (String)objects.elementAt(objects.size() - 2);
147                 JS struct = (JS)objects.elementAt(objects.size() - 3);
148                 struct.put(memberName, memberValue);
149                 objects.setSize(objects.size() - 2);
150                 
151             } else if (c.localName.equals("data")) {
152                 int i;
153                 for(i=objects.size() - 1; objects.elementAt(i) != null; i--);
154                 JS.Array arr = new JS.Array();
155                 for(int j = i + 1; j<objects.size(); j++) arr.put(new Integer(j - i - 1), objects.elementAt(j));
156                 objects.setElementAt(arr, i);
157                 objects.setSize(i + 1);
158                 
159             }
160             
161             content.reset();
162         }
163         
164         public void characters(char[] ch, int start, int length) {
165             try { content.write(ch, start, length); }
166             catch (Exception e) { 
167                 if (Log.on) Log.log(this, "Exception in XMLRPC.content() -- this should never happen");
168                 if (Log.on) Log.log(this, e);
169             }
170         }
171         
172         public void whitespace(char[] ch, int start, int length) {}
173     }
174
175     // Methods to make outbound XML-RPC request ///////////////////////////////////////////////////
176
177     /** Appends the XML-RPC representation of <code>o</code> to <code>sb</code> */
178     void appendObject(Object o, StringBuffer sb) throws JS.Exn {
179
180         if (o == null) {
181             throw new JS.Exn("attempted to send a null value via XML-RPC");
182
183         } else if (o instanceof Number) {
184             if ((double)((Number)o).intValue() == ((Number)o).doubleValue()) {
185                 sb.append("                <value><i4>");
186                 sb.append(((Number)o).intValue());
187                 sb.append("</i4></value>\n");
188             } else {
189                 sb.append("                <value><double>");
190                 sb.append(o);
191                 sb.append("</double></value>\n");
192             }
193
194         } else if (o instanceof Boolean) {
195             sb.append("                <value><boolean>");
196             sb.append(((Boolean)o).booleanValue() ? "1" : "0");
197             sb.append("</boolean></value>\n");
198
199         } else if (o instanceof Res) {
200             try {
201                 sb.append("                <value><base64>\n");
202                 InputStream is = ((Res)o).getInputStream();
203                 byte[] buf = new byte[54];
204                 while(true) {
205                     int numread = is.read(buf, 0, 54);
206                     if (numread == -1) break;
207                     byte[] writebuf = buf;
208                     if (numread < buf.length) {
209                         writebuf = new byte[numread];
210                         System.arraycopy(buf, 0, writebuf, 0, numread);
211                     }
212                     sb.append("              ");
213                     sb.append(new String(Base64.encode(writebuf)));
214                     sb.append("\n");
215                 }
216                 sb.append("\n              </base64></value>\n");
217             } catch (IOException e) {
218                 if (Log.on) Log.log(this, "caught IOException while attempting to send a ByteStream via XML-RPC");
219                 if (Log.on) Log.log(this, e);
220                 throw new JS.Exn("caught IOException while attempting to send a ByteStream via XML-RPC");
221             }
222
223         } else if (o instanceof String) {
224             sb.append("                <value><string>");
225             String s = (String)o;
226             if (s.indexOf('<') == -1 && s.indexOf('&') == -1) {
227                 sb.append(s);
228             } else {
229                 char[] cbuf = s.toCharArray();
230                 int oldi = 0, i=0;
231                 while(true) {
232                     while(i < cbuf.length && cbuf[i] != '<' && cbuf[i] != '&') i++;
233                     sb.append(cbuf, oldi, i - oldi);
234                     if (i >= cbuf.length) break;
235                     if (cbuf[i] == '<') sb.append("&lt;");
236                     else if (cbuf[i] == '&') sb.append("&amp;");
237                     i = oldi = i + 1;
238                     if (i >= cbuf.length) break;
239                 }
240             }
241             sb.append("</string></value>\n");
242
243             /*
244         } else if (o instanceof org.xwt.js.Date) {
245             sb.append("                <value><dateTime.iso8601>");
246               FIXME
247             org.xwt.js.Date d = (org.xwt.js.Date)o;
248             Date d = new Date(nd.getRawTime());
249             sb.append(d.getYear() + 1900);
250             if (d.getMonth() + 1 < 10) sb.append('0');
251             sb.append(d.getMonth() + 1);
252             if (d.getDate() < 10) sb.append('0');
253             sb.append(d.getDate());
254             sb.append('T');
255             if (d.getHours() < 10) sb.append('0');
256             sb.append(d.getHours());
257             sb.append(':');
258             if (d.getMinutes() < 10) sb.append('0');
259             sb.append(d.getMinutes());
260             sb.append(':');
261             if (d.getSeconds() < 10) sb.append('0');
262             sb.append(d.getSeconds());
263             sb.append("</dateTime.iso8601></value>\n");
264             */
265
266         } else if (o instanceof JS.Array) {
267             if (tracker.get(o) != null) throw new JS.Exn("attempted to send multi-ref data structure via XML-RPC");
268             tracker.put(o, Boolean.TRUE);
269             sb.append("                <value><array><data>\n");
270             JS.Array a = (JS.Array)o;
271             for(int i=0; i<a.length(); i++) appendObject(a.elementAt(i), sb);
272             sb.append("                </data></array></value>\n");
273
274         } else if (o instanceof JS) {
275             if (tracker.get(o) != null) throw new JS.Exn("attempted to send multi-ref data structure via XML-RPC");
276             tracker.put(o, Boolean.TRUE);
277             JS j = (JS)o;
278             sb.append("                <value><struct>\n");
279             Object[] ids = j.keys();
280             for(int i=0; i<ids.length; i++) {
281                 sb.append("                <member><name>" + ids[i] + "</name>\n");
282                 appendObject(j.get(ids[i].toString()), sb);
283                 sb.append("                </member>\n");
284             }
285             sb.append("                </struct></value>\n");
286
287         } else {
288             throw new JS.Exn("attempt to send object of type " + o.getClass().getName() + " via XML-RPC");
289
290         }
291     }
292
293     // this is synchronized in case multiple threads try to make a call on the same object... in the future, change this
294     // behavior to use pipelining.
295     public synchronized Object call2(JS.Array args) throws JS.Exn, IOException {
296         if (Log.verbose) Log.log(this, "call to " + url + " : " + methodname);
297
298         if (tracker == null) tracker = new Hash();
299         else tracker.clear();
300
301         if (objects == null) objects = new Vec();
302         else objects.setSize(0);
303
304         String content = send(args, http);
305         if (Log.verbose) {
306             String s;
307             BufferedReader br2 = new BufferedReader(new StringReader(content));
308             while ((s = br2.readLine()) != null) Log.log(this, "send: " + s);
309         }
310
311         HTTP.HTTPInputStream is = http.POST("text/xml", content);
312         try {
313             BufferedReader br = !Log.verbose ?
314                 new BufferedReader(new InputStreamReader(new Filter(is))) :
315                 new BufferedReader(new FilterReader(new InputStreamReader(new Filter(is))) {
316                         public int read() throws IOException {
317                             int i = super.read();
318                             if (Log.on) Log.log(this, "recv: " + ((char)i));
319                             return i;
320                         }
321                         public int read(char[] c, int off, int len) throws IOException {
322                             int ret = super.read(c, off, len);
323                             if (ret == -1) return ret;
324                             String s;
325                             BufferedReader br2 = new BufferedReader(new StringReader(new String(c, off, ret)));
326                             while ((s = br2.readLine()) != null) Log.log(this, "recv: " + s);
327                             return ret;
328                         }
329                     });
330             return recieve(br);
331         } finally {
332             is.close();
333         }
334     }
335
336     protected String send(JS.Array args, HTTP http) throws JS.Exn, IOException {
337         StringBuffer content = new StringBuffer();
338         content.append("\r\n");
339         content.append("<?xml version=\"1.0\"?>\n");
340         content.append("    <methodCall>\n");
341         content.append("        <methodName>");
342         content.append(methodname);
343         content.append("</methodName>\n");
344         content.append("        <params>\n");
345         for(int i=0; i<args.length(); i++) {
346             content.append("            <param>\n");
347             appendObject(args.elementAt(i), content);
348             content.append("            </param>\n");
349         }
350         content.append("        </params>\n");
351         content.append("    </methodCall>");
352         return content.toString();
353     }
354         
355     protected Object recieve(BufferedReader br) throws JS.Exn, IOException {
356         // parse XML reply
357         try {
358             new Helper().parse(br);
359         } catch (XML.XMLException e) {
360             if (Log.on) Log.log(this, "reply from server was not well-formed XML: " + e);
361             throw new JS.Exn("reply from server was not well-formed XML: " + e);
362         }
363         
364         if (fault) throw new JS.Exn(objects.elementAt(0));
365         if (objects.size() == 0) return null;
366         return objects.elementAt(0);
367     }
368
369     public final Object call(JS.Array args) throws JS.Exn {
370
371         if (!ThreadMessage.suspendThread()) return null;
372
373         try {
374             return call2(args);
375         } catch (IOException se) {
376             if (Log.on) Log.log(this, se);
377             throw new JS.Exn("socket exception: " + se);
378
379         } catch (JS.Exn jse) {
380             if (Log.on) Log.log(this, jse.toString());
381             throw jse;
382         } finally {
383             ThreadMessage.resumeThread();
384         }
385
386     }
387
388     /** When you get a property from an XMLRPC, it just returns another XMLRPC with the property name tacked onto methodname. */
389     public Object get(Object name) {
390         return new XMLRPC(url, (methodname.equals("") ? "" : methodname + ".") + name.toString(), http);
391     }
392
393     public XMLRPC(String url, String methodname) {
394         this(url, methodname, new HTTP(url));
395     }
396
397     public XMLRPC(String url, String methodname, HTTP http) {
398         this.http = http;
399         this.url = url;
400         this.methodname = methodname;
401     }
402
403
404     // Helper Classes ///////////////////////////////////////////////////////////////////////////////////
405
406     /** CharArrayWriter that lets us touch its buffer */
407     protected static class AccessibleCharArrayWriter extends CharArrayWriter {
408         public char[] getBuf() { return buf; }
409         public AccessibleCharArrayWriter(int i) { super(i); }
410     }
411
412     /** private filter class to make sure that network transfers don't interfere with UI responsiveness */
413     private static class Filter extends FilterInputStream {
414         public Filter(InputStream is) { super(is); }
415         public int read() throws IOException {
416             java.lang.Thread.yield();
417             while(Message.Q.nonThreadEventsInQueue > 0) try { java.lang.Thread.sleep(100); } catch (Exception e) { };
418             return super.read();
419         }
420         public int read(byte[] b) throws IOException {
421             java.lang.Thread.yield();
422             while(Message.Q.nonThreadEventsInQueue > 0) try { java.lang.Thread.sleep(100); } catch (Exception e) { };
423             return super.read(b);
424         }
425         public int read(byte[] b, int i, int j) throws IOException {
426             java.lang.Thread.yield();
427             while(Message.Q.nonThreadEventsInQueue > 0) try { java.lang.Thread.sleep(100); } catch (Exception e) { };
428             return super.read(b, i, j);
429         }
430     }
431
432 }