initial import
[roojs1] / Roo / data / JsonReader.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 /**
13  * @class Roo.data.JsonReader
14  * @extends Roo.data.DataReader
15  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
16  * based on mappings in a provided Roo.data.Record constructor.
17  * <p>
18  * Example code:
19  * <pre><code>
20 var RecordDef = Roo.data.Record.create([
21     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
22     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
23 ]);
24 var myReader = new Roo.data.JsonReader({
25     totalProperty: "results",    // The property which contains the total dataset size (optional)
26     root: "rows",                // The property which contains an Array of row objects
27     id: "id"                     // The property within each row object that provides an ID for the record (optional)
28 }, RecordDef);
29 </code></pre>
30  * <p>
31  * This would consume a JSON file like this:
32  * <pre><code>
33 { 'results': 2, 'rows': [
34     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
35     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
36 }
37 </code></pre>
38  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
39  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
40  * paged from the remote server.
41  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
42  * @cfg {String} root name of the property which contains the Array of row objects.
43  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
44  * @constructor
45  * Create a new JsonReader
46  * @param {Object} meta Metadata configuration options
47  * @param {Object} recordType Either an Array of field definition objects,
48  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
49  */
50 Roo.data.JsonReader = function(meta, recordType){
51     
52     meta = meta || {};
53     // set some defaults:
54     Roo.applyIf(meta, {
55         totalProperty: 'total',
56         successProperty : 'success',
57         root : 'data',
58         id : 'id'
59     });
60     
61     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
62 };
63 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
64     /**
65      * This method is only used by a DataProxy which has retrieved data from a remote server.
66      * @param {Object} response The XHR object which contains the JSON data in its responseText.
67      * @return {Object} data A data block which is used by an Roo.data.Store object as
68      * a cache of Roo.data.Records.
69      */
70     read : function(response){
71         var json = response.responseText;
72         /* eval:var:o */
73         var o = eval("("+json+")");
74         if(!o) {
75             throw {message: "JsonReader.read: Json object not found"};
76         }
77         
78         if(o.metaData){
79             delete this.ef;
80             this.meta = o.metaData;
81             this.recordType = Roo.data.Record.create(o.metaData.fields);
82             this.onMetaChange(this.meta, this.recordType, o);
83         }
84         return this.readRecords(o);
85     },
86
87     // private function a store will implement
88     onMetaChange : function(meta, recordType, o){
89
90     },
91
92     /**
93          * @ignore
94          */
95     simpleAccess: function(obj, subsc) {
96         return obj[subsc];
97     },
98
99         /**
100          * @ignore
101          */
102     getJsonAccessor: function(){
103         var re = /[\[\.]/;
104         return function(expr) {
105             try {
106                 return(re.test(expr))
107                     ? new Function("obj", "return obj." + expr)
108                     : function(obj){
109                         return obj[expr];
110                     };
111             } catch(e){}
112             return Roo.emptyFn;
113         };
114     }(),
115
116     /**
117      * Create a data block containing Roo.data.Records from an XML document.
118      * @param {Object} o An object which contains an Array of row objects in the property specified
119      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
120      * which contains the total size of the dataset.
121      * @return {Object} data A data block which is used by an Roo.data.Store object as
122      * a cache of Roo.data.Records.
123      */
124     readRecords : function(o){
125         /**
126          * After any data loads, the raw JSON data is available for further custom processing.
127          * @type Object
128          */
129         this.jsonData = o;
130         var s = this.meta, Record = this.recordType,
131             f = Record.prototype.fields, fi = f.items, fl = f.length;
132
133 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
134         if (!this.ef) {
135             if(s.totalProperty) {
136                     this.getTotal = this.getJsonAccessor(s.totalProperty);
137                 }
138                 if(s.successProperty) {
139                     this.getSuccess = this.getJsonAccessor(s.successProperty);
140                 }
141                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
142                 if (s.id) {
143                         var g = this.getJsonAccessor(s.id);
144                         this.getId = function(rec) {
145                                 var r = g(rec);
146                                 return (r === undefined || r === "") ? null : r;
147                         };
148                 } else {
149                         this.getId = function(){return null;};
150                 }
151             this.ef = [];
152             for(var i = 0; i < fl; i++){
153                 f = fi[i];
154                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
155                 this.ef[i] = this.getJsonAccessor(map);
156             }
157         }
158
159         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
160         if(s.totalProperty){
161             var v = parseInt(this.getTotal(o), 10);
162             if(!isNaN(v)){
163                 totalRecords = v;
164             }
165         }
166         if(s.successProperty){
167             var v = this.getSuccess(o);
168             if(v === false || v === 'false'){
169                 success = false;
170             }
171         }
172         var records = [];
173             for(var i = 0; i < c; i++){
174                     var n = root[i];
175                 var values = {};
176                 var id = this.getId(n);
177                 for(var j = 0; j < fl; j++){
178                     f = fi[j];
179                 var v = this.ef[j](n);
180                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
181                 }
182                 var record = new Record(values, id);
183                 record.json = n;
184                 records[i] = record;
185             }
186             return {
187                 success : success,
188                 records : records,
189                 totalRecords : totalRecords
190             };
191     }
192 });