Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / docs / source / DataReader.html
diff --git a/docs/source/DataReader.html b/docs/source/DataReader.html
new file mode 100644 (file)
index 0000000..9eba66c
--- /dev/null
@@ -0,0 +1,158 @@
+<html>\r
+<head>\r
+  <title>The source code</title>\r
+    <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
+    <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
+</head>\r
+<body  onload="prettyPrint();">\r
+    <pre class="prettyprint lang-js"><div id="cls-Ext.data.DataReader"></div>/**\r
+ * @class Ext.data.DataReader\r
+ * Abstract base class for reading structured data from a data source and converting\r
+ * it into an object containing {@link Ext.data.Record} objects and metadata for use\r
+ * by an {@link Ext.data.Store}.  This class is intended to be extended and should not\r
+ * be created directly. For existing implementations, see {@link Ext.data.ArrayReader},\r
+ * {@link Ext.data.JsonReader} and {@link Ext.data.XmlReader}.\r
+ * @constructor Create a new DataReader\r
+ * @param {Object} meta Metadata configuration options (implementation-specific).\r
+ * @param {Array/Object} recordType\r
+ * <p>Either an Array of {@link Ext.data.Field Field} definition objects (which\r
+ * will be passed to {@link Ext.data.Record#create}, or a {@link Ext.data.Record Record}\r
+ * constructor created using {@link Ext.data.Record#create}.</p>\r
+ */\r
+Ext.data.DataReader = function(meta, recordType){\r
+    <div id="prop-Ext.data.DataReader-meta"></div>/**\r
+     * This DataReader's configured metadata as passed to the constructor.\r
+     * @type Mixed\r
+     * @property meta\r
+     */\r
+    this.meta = meta;\r
+    <div id="cfg-Ext.data.DataReader-fields"></div>/**\r
+     * @cfg {Array/Object} fields\r
+     * <p>Either an Array of {@link Ext.data.Field Field} definition objects (which\r
+     * will be passed to {@link Ext.data.Record#create}, or a {@link Ext.data.Record Record}\r
+     * constructor created from {@link Ext.data.Record#create}.</p>\r
+     */\r
+    this.recordType = Ext.isArray(recordType) ?\r
+        Ext.data.Record.create(recordType) : recordType;\r
+\r
+    // make sure extraction functions are defined.\r
+    this.buildExtractors();\r
+};\r
+\r
+Ext.data.DataReader.prototype = {\r
+\r
+    <div id="prop-Ext.data.DataReader-buildExtractors"></div>/**\r
+     * Abstract method, overridden in {@link Ext.data.JsonReader}\r
+     */\r
+    buildExtractors : Ext.emptyFn,\r
+\r
+    <div id="method-Ext.data.DataReader-realize"></div>/**\r
+     * Used for un-phantoming a record after a successful database insert.  Sets the records pk along with new data from server.\r
+     * You <b>must</b> return at least the database pk using the idProperty defined in your DataReader configuration.  The incoming\r
+     * data from server will be merged with the data in the local record.\r
+     * In addition, you <b>must</b> return record-data from the server in the same order received.\r
+     * Will perform a commit as well, un-marking dirty-fields.  Store's "update" event will be suppressed.\r
+     * @param {Record/Record[]} record The phantom record to be realized.\r
+     * @param {Object/Object[]} data The new record data to apply.  Must include the primary-key from database defined in idProperty field.\r
+     */\r
+    realize: function(rs, data){\r
+        if (Ext.isArray(rs)) {\r
+            for (var i = rs.length - 1; i >= 0; i--) {\r
+                // recurse\r
+                if (Ext.isArray(data)) {\r
+                    this.realize(rs.splice(i,1).shift(), data.splice(i,1).shift());\r
+                }\r
+                else {\r
+                    // weird...rs is an array but data isn't??  recurse but just send in the whole invalid data object.\r
+                    // the else clause below will detect !this.isData and throw exception.\r
+                    this.realize(rs.splice(i,1).shift(), data);\r
+                }\r
+            }\r
+        }\r
+        else {\r
+            // If rs is NOT an array but data IS, see if data contains just 1 record.  If so extract it and carry on.\r
+            if (Ext.isArray(data) && data.length == 1) {\r
+                data = data.shift();\r
+            }\r
+            if (!this.isData(data)) {\r
+                // TODO: Let exception-handler choose to commit or not rather than blindly rs.commit() here.\r
+                //rs.commit();\r
+                throw new Ext.data.DataReader.Error('realize', rs);\r
+            }\r
+            var values = this.extractValues(data, rs.fields.items, rs.fields.items.length);\r
+            rs.phantom = false; // <-- That's what it's all about\r
+            rs._phid = rs.id;  // <-- copy phantom-id -> _phid, so we can remap in Store#onCreateRecords\r
+            rs.id = data[this.meta.idProperty];\r
+            rs.data = values;\r
+            rs.commit();\r
+        }\r
+    },\r
+\r
+    <div id="method-Ext.data.DataReader-update"></div>/**\r
+     * Used for updating a non-phantom or "real" record's data with fresh data from server after remote-save.\r
+     * If returning data from multiple-records after a batch-update, you <b>must</b> return record-data from the server in\r
+     * the same order received.  Will perform a commit as well, un-marking dirty-fields.  Store's "update" event will be\r
+     * suppressed as the record receives fresh new data-hash\r
+     * @param {Record/Record[]} rs\r
+     * @param {Object/Object[]} data\r
+     */\r
+    update : function(rs, data) {\r
+        if (Ext.isArray(rs)) {\r
+            for (var i=rs.length-1; i >= 0; i--) {\r
+                if (Ext.isArray(data)) {\r
+                    this.update(rs.splice(i,1).shift(), data.splice(i,1).shift());\r
+                }\r
+                else {\r
+                    // weird...rs is an array but data isn't??  recurse but just send in the whole data object.\r
+                    // the else clause below will detect !this.isData and throw exception.\r
+                    this.update(rs.splice(i,1).shift(), data);\r
+                }\r
+            }\r
+        }\r
+        else {\r
+            // If rs is NOT an array but data IS, see if data contains just 1 record.  If so extract it and carry on.\r
+            if (Ext.isArray(data) && data.length == 1) {\r
+                data = data.shift();\r
+            }\r
+            if (this.isData(data)) {\r
+                rs.data = this.extractValues(Ext.apply(rs.data, data), rs.fields.items, rs.fields.items.length);\r
+            }\r
+            rs.commit();\r
+        }\r
+    },\r
+\r
+    <div id="method-Ext.data.DataReader-isData"></div>/**\r
+     * Returns true if the supplied data-hash <b>looks</b> and quacks like data.  Checks to see if it has a key\r
+     * corresponding to idProperty defined in your DataReader config containing non-empty pk.\r
+     * @param {Object} data\r
+     * @return {Boolean}\r
+     */\r
+    isData : function(data) {\r
+        return (data && Ext.isObject(data) && !Ext.isEmpty(data[this.meta.idProperty])) ? true : false;\r
+    }\r
+};\r
+\r
+<div id="cls-Ext.data.DataReader.Error"></div>/**\r
+ * @class Ext.data.DataReader.Error\r
+ * @extends Ext.Error\r
+ * General error class for Ext.data.DataReader\r
+ */\r
+Ext.data.DataReader.Error = Ext.extend(Ext.Error, {\r
+    constructor : function(message, arg) {\r
+        this.arg = arg;\r
+        Ext.Error.call(this, message);\r
+    },\r
+    name: 'Ext.data.DataReader'\r
+});\r
+Ext.apply(Ext.data.DataReader.Error.prototype, {\r
+    lang : {\r
+        'update': "#update received invalid data from server.  Please see docs for DataReader#update and review your DataReader configuration.",\r
+        'realize': "#realize was called with invalid remote-data.  Please see the docs for DataReader#realize and review your DataReader configuration.",\r
+        'invalid-response': "#readResponse received an invalid response from the server."\r
+    }\r
+});\r
+\r
+\r
+</pre>    \r
+</body>\r
+</html>
\ No newline at end of file