Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / src / direct / RemotingProvider.js
1 /*!
2  * Ext JS Library 3.2.0
3  * Copyright(c) 2006-2010 Ext JS, Inc.
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 /**
8  * @class Ext.direct.RemotingProvider
9  * @extends Ext.direct.JsonProvider
10  * 
11  * <p>The {@link Ext.direct.RemotingProvider RemotingProvider} exposes access to
12  * server side methods on the client (a remote procedure call (RPC) type of
13  * connection where the client can initiate a procedure on the server).</p>
14  * 
15  * <p>This allows for code to be organized in a fashion that is maintainable,
16  * while providing a clear path between client and server, something that is
17  * not always apparent when using URLs.</p>
18  * 
19  * <p>To accomplish this the server-side needs to describe what classes and methods
20  * are available on the client-side. This configuration will typically be
21  * outputted by the server-side Ext.Direct stack when the API description is built.</p>
22  */
23 Ext.direct.RemotingProvider = Ext.extend(Ext.direct.JsonProvider, {       
24     /**
25      * @cfg {Object} actions
26      * Object literal defining the server side actions and methods. For example, if
27      * the Provider is configured with:
28      * <pre><code>
29 "actions":{ // each property within the 'actions' object represents a server side Class 
30     "TestAction":[ // array of methods within each server side Class to be   
31     {              // stubbed out on client
32         "name":"doEcho", 
33         "len":1            
34     },{
35         "name":"multiply",// name of method
36         "len":2           // The number of parameters that will be used to create an
37                           // array of data to send to the server side function.
38                           // Ensure the server sends back a Number, not a String. 
39     },{
40         "name":"doForm",
41         "formHandler":true, // direct the client to use specialized form handling method 
42         "len":1
43     }]
44 }
45      * </code></pre>
46      * <p>Note that a Store is not required, a server method can be called at any time.
47      * In the following example a <b>client side</b> handler is used to call the
48      * server side method "multiply" in the server-side "TestAction" Class:</p>
49      * <pre><code>
50 TestAction.multiply(
51     2, 4, // pass two arguments to server, so specify len=2
52     // callback function after the server is called
53     // result: the result returned by the server
54     //      e: Ext.Direct.RemotingEvent object
55     function(result, e){
56         var t = e.getTransaction();
57         var action = t.action; // server side Class called
58         var method = t.method; // server side method called
59         if(e.status){
60             var answer = Ext.encode(result); // 8
61     
62         }else{
63             var msg = e.message; // failure message
64         }
65     }
66 );
67      * </code></pre>
68      * In the example above, the server side "multiply" function will be passed two
69      * arguments (2 and 4).  The "multiply" method should return the value 8 which will be
70      * available as the <tt>result</tt> in the example above. 
71      */
72     
73     /**
74      * @cfg {String/Object} namespace
75      * Namespace for the Remoting Provider (defaults to the browser global scope of <i>window</i>).
76      * Explicitly specify the namespace Object, or specify a String to have a
77      * {@link Ext#namespace namespace created} implicitly.
78      */
79     
80     /**
81      * @cfg {String} url
82      * <b>Required<b>. The url to connect to the {@link Ext.Direct} server-side router. 
83      */
84     
85     /**
86      * @cfg {String} enableUrlEncode
87      * Specify which param will hold the arguments for the method.
88      * Defaults to <tt>'data'</tt>.
89      */
90     
91     /**
92      * @cfg {Number/Boolean} enableBuffer
93      * <p><tt>true</tt> or <tt>false</tt> to enable or disable combining of method
94      * calls. If a number is specified this is the amount of time in milliseconds
95      * to wait before sending a batched request (defaults to <tt>10</tt>).</p>
96      * <br><p>Calls which are received within the specified timeframe will be
97      * concatenated together and sent in a single request, optimizing the
98      * application by reducing the amount of round trips that have to be made
99      * to the server.</p>
100      */
101     enableBuffer: 10,
102     
103     /**
104      * @cfg {Number} maxRetries
105      * Number of times to re-attempt delivery on failure of a call. Defaults to <tt>1</tt>.
106      */
107     maxRetries: 1,
108     
109     /**
110      * @cfg {Number} timeout
111      * The timeout to use for each request. Defaults to <tt>undefined</tt>.
112      */
113     timeout: undefined,
114
115     constructor : function(config){
116         Ext.direct.RemotingProvider.superclass.constructor.call(this, config);
117         this.addEvents(
118             /**
119              * @event beforecall
120              * Fires immediately before the client-side sends off the RPC call.
121              * By returning false from an event handler you can prevent the call from
122              * executing.
123              * @param {Ext.direct.RemotingProvider} provider
124              * @param {Ext.Direct.Transaction} transaction
125              */            
126             'beforecall',            
127             /**
128              * @event call
129              * Fires immediately after the request to the server-side is sent. This does
130              * NOT fire after the response has come back from the call.
131              * @param {Ext.direct.RemotingProvider} provider
132              * @param {Ext.Direct.Transaction} transaction
133              */            
134             'call'
135         );
136         this.namespace = (Ext.isString(this.namespace)) ? Ext.ns(this.namespace) : this.namespace || window;
137         this.transactions = {};
138         this.callBuffer = [];
139     },
140
141     // private
142     initAPI : function(){
143         var o = this.actions;
144         for(var c in o){
145             var cls = this.namespace[c] || (this.namespace[c] = {}),
146                 ms = o[c];
147             for(var i = 0, len = ms.length; i < len; i++){
148                 var m = ms[i];
149                 cls[m.name] = this.createMethod(c, m);
150             }
151         }
152     },
153
154     // inherited
155     isConnected: function(){
156         return !!this.connected;
157     },
158
159     connect: function(){
160         if(this.url){
161             this.initAPI();
162             this.connected = true;
163             this.fireEvent('connect', this);
164         }else if(!this.url){
165             throw 'Error initializing RemotingProvider, no url configured.';
166         }
167     },
168
169     disconnect: function(){
170         if(this.connected){
171             this.connected = false;
172             this.fireEvent('disconnect', this);
173         }
174     },
175
176     onData: function(opt, success, xhr){
177         if(success){
178             var events = this.getEvents(xhr);
179             for(var i = 0, len = events.length; i < len; i++){
180                 var e = events[i],
181                     t = this.getTransaction(e);
182                 this.fireEvent('data', this, e);
183                 if(t){
184                     this.doCallback(t, e, true);
185                     Ext.Direct.removeTransaction(t);
186                 }
187             }
188         }else{
189             var ts = [].concat(opt.ts);
190             for(var i = 0, len = ts.length; i < len; i++){
191                 var t = this.getTransaction(ts[i]);
192                 if(t && t.retryCount < this.maxRetries){
193                     t.retry();
194                 }else{
195                     var e = new Ext.Direct.ExceptionEvent({
196                         data: e,
197                         transaction: t,
198                         code: Ext.Direct.exceptions.TRANSPORT,
199                         message: 'Unable to connect to the server.',
200                         xhr: xhr
201                     });
202                     this.fireEvent('data', this, e);
203                     if(t){
204                         this.doCallback(t, e, false);
205                         Ext.Direct.removeTransaction(t);
206                     }
207                 }
208             }
209         }
210     },
211
212     getCallData: function(t){
213         return {
214             action: t.action,
215             method: t.method,
216             data: t.data,
217             type: 'rpc',
218             tid: t.tid
219         };
220     },
221
222     doSend : function(data){
223         var o = {
224             url: this.url,
225             callback: this.onData,
226             scope: this,
227             ts: data,
228             timeout: this.timeout
229         }, callData;
230
231         if(Ext.isArray(data)){
232             callData = [];
233             for(var i = 0, len = data.length; i < len; i++){
234                 callData.push(this.getCallData(data[i]));
235             }
236         }else{
237             callData = this.getCallData(data);
238         }
239
240         if(this.enableUrlEncode){
241             var params = {};
242             params[Ext.isString(this.enableUrlEncode) ? this.enableUrlEncode : 'data'] = Ext.encode(callData);
243             o.params = params;
244         }else{
245             o.jsonData = callData;
246         }
247         Ext.Ajax.request(o);
248     },
249
250     combineAndSend : function(){
251         var len = this.callBuffer.length;
252         if(len > 0){
253             this.doSend(len == 1 ? this.callBuffer[0] : this.callBuffer);
254             this.callBuffer = [];
255         }
256     },
257
258     queueTransaction: function(t){
259         if(t.form){
260             this.processForm(t);
261             return;
262         }
263         this.callBuffer.push(t);
264         if(this.enableBuffer){
265             if(!this.callTask){
266                 this.callTask = new Ext.util.DelayedTask(this.combineAndSend, this);
267             }
268             this.callTask.delay(Ext.isNumber(this.enableBuffer) ? this.enableBuffer : 10);
269         }else{
270             this.combineAndSend();
271         }
272     },
273
274     doCall : function(c, m, args){
275         var data = null, hs = args[m.len], scope = args[m.len+1];
276
277         if(m.len !== 0){
278             data = args.slice(0, m.len);
279         }
280
281         var t = new Ext.Direct.Transaction({
282             provider: this,
283             args: args,
284             action: c,
285             method: m.name,
286             data: data,
287             cb: scope && Ext.isFunction(hs) ? hs.createDelegate(scope) : hs
288         });
289
290         if(this.fireEvent('beforecall', this, t) !== false){
291             Ext.Direct.addTransaction(t);
292             this.queueTransaction(t);
293             this.fireEvent('call', this, t);
294         }
295     },
296
297     doForm : function(c, m, form, callback, scope){
298         var t = new Ext.Direct.Transaction({
299             provider: this,
300             action: c,
301             method: m.name,
302             args:[form, callback, scope],
303             cb: scope && Ext.isFunction(callback) ? callback.createDelegate(scope) : callback,
304             isForm: true
305         });
306
307         if(this.fireEvent('beforecall', this, t) !== false){
308             Ext.Direct.addTransaction(t);
309             var isUpload = String(form.getAttribute("enctype")).toLowerCase() == 'multipart/form-data',
310                 params = {
311                     extTID: t.tid,
312                     extAction: c,
313                     extMethod: m.name,
314                     extType: 'rpc',
315                     extUpload: String(isUpload)
316                 };
317             
318             // change made from typeof callback check to callback.params
319             // to support addl param passing in DirectSubmit EAC 6/2
320             Ext.apply(t, {
321                 form: Ext.getDom(form),
322                 isUpload: isUpload,
323                 params: callback && Ext.isObject(callback.params) ? Ext.apply(params, callback.params) : params
324             });
325             this.fireEvent('call', this, t);
326             this.processForm(t);
327         }
328     },
329     
330     processForm: function(t){
331         Ext.Ajax.request({
332             url: this.url,
333             params: t.params,
334             callback: this.onData,
335             scope: this,
336             form: t.form,
337             isUpload: t.isUpload,
338             ts: t
339         });
340     },
341
342     createMethod : function(c, m){
343         var f;
344         if(!m.formHandler){
345             f = function(){
346                 this.doCall(c, m, Array.prototype.slice.call(arguments, 0));
347             }.createDelegate(this);
348         }else{
349             f = function(form, callback, scope){
350                 this.doForm(c, m, form, callback, scope);
351             }.createDelegate(this);
352         }
353         f.directCfg = {
354             action: c,
355             method: m
356         };
357         return f;
358     },
359
360     getTransaction: function(opt){
361         return opt && opt.tid ? Ext.Direct.getTransaction(opt.tid) : null;
362     },
363
364     doCallback: function(t, e){
365         var fn = e.status ? 'success' : 'failure';
366         if(t && t.cb){
367             var hs = t.cb,
368                 result = Ext.isDefined(e.result) ? e.result : e.data;
369             if(Ext.isFunction(hs)){
370                 hs(result, e);
371             } else{
372                 Ext.callback(hs[fn], hs.scope, [result, e]);
373                 Ext.callback(hs.callback, hs.scope, [result, e]);
374             }
375         }
376     }
377 });
378 Ext.Direct.PROVIDERS['remoting'] = Ext.direct.RemotingProvider;