RemotingProvider.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:13k
源码类别:

JavaScript

开发平台:

JavaScript

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