d7aa5eef04307f38dc0c6f1c5dcd175c88a1c0bc
[roojs1] / Roo / data / MemoryProxy.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11 /**
12  * @class Roo.data.MemoryProxy
13  * @extends Roo.data.DataProxy
14  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
15  * to the Reader when its load method is called.
16  * @constructor
17  * @cfg {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
18  */
19 Roo.data.MemoryProxy = function(data){
20     if (data.data) {
21         data = data.data;
22     }
23     Roo.data.MemoryProxy.superclass.constructor.call(this);
24     this.data = data;
25 };
26
27 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
28     
29     /**
30      * Load data from the requested source (in this case an in-memory
31      * data object passed to the constructor), read the data object into
32      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
33      * process that block using the passed callback.
34      * @param {Object} params This parameter is not used by the MemoryProxy class.
35      * @param {Roo.data.DataReader} reader The Reader object which converts the data
36      * object into a block of Roo.data.Records.
37      * @param {Function} callback The function into which to pass the block of Roo.data.records.
38      * The function must be passed <ul>
39      * <li>The Record block object</li>
40      * <li>The "arg" argument from the load function</li>
41      * <li>A boolean success indicator</li>
42      * </ul>
43      * @param {Object} scope The scope in which to call the callback
44      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
45      */
46     load : function(params, reader, callback, scope, arg){
47         params = params || {};
48         var result;
49         try {
50             result = reader.readRecords(params.data ? params.data :this.data);
51         }catch(e){
52             this.fireEvent("loadexception", this, arg, null, e);
53             callback.call(scope, null, arg, false);
54             return;
55         }
56         callback.call(scope, result, arg, true);
57     },
58     
59     // private
60     update : function(params, records){
61         
62     }
63 });