2 YUI 3.13.0 (build 508226d)
3 Copyright 2013 Yahoo! Inc. All rights reserved.
4 Licensed under the BSD License.
5 http://yuilibrary.com/license/
8 YUI.add('dataschema-xml', function (Y, NAME) {
11 Provides a DataSchema implementation which can be used to work with XML data.
14 @submodule dataschema-xml
18 Provides a DataSchema implementation which can be used to work with XML data.
20 See the `apply` method for usage.
23 @extends DataSchema.Base
38 ////////////////////////////////////////////////////////////////////////////
40 // DataSchema.XML static methods
42 ////////////////////////////////////////////////////////////////////////////
44 Applies a schema to an XML data tree, returning a normalized object with
45 results in the `results` property. Additional information can be parsed out
46 of the XML for inclusion in the `meta` property of the response object. If
47 an error is encountered during processing, an `error` property will be
50 Field data in the nodes captured by the XPath in _schema.resultListLocator_
51 is extracted with the field identifiers described in _schema.resultFields_.
52 Field identifiers are objects with the following properties:
54 * `key` : <strong>(required)</strong> The desired property name to use
55 store the retrieved value in the result object. If `locator` is
56 not specified, `key` is also used as the XPath locator (String)
57 * `locator`: The XPath locator to the node or attribute within each
58 result node found by _schema.resultListLocator_ containing the
59 desired field data (String)
60 * `parser` : A function or the name of a function on `Y.Parsers` used
61 to convert the input value into a normalized type. Parser
62 functions are passed the value as input and are expected to
64 * `schema` : Used to retrieve nested field data into an array for
65 assignment as the result field value. This object follows the same
66 conventions as _schema_.
68 If no value parsing or nested parsing is needed, you can use XPath locators
69 (strings) instead of field identifiers (objects) -- see example below.
71 `response.results` will contain an array of objects with key:value pairs.
72 The keys are the field identifier `key`s, and the values are the data
73 values extracted from the nodes or attributes found by the field `locator`
76 To extract additional information from the XML, include an array of
77 XPath locators in _schema.metaFields_. The collected values will be
78 stored in `response.meta` with the XPath locator as keys.
82 resultListLocator: '//produce/item',
91 parser: function (val) { return val.toUpperCase(); }
99 // <item><name>Banana</name><color>yellow</color></item>
100 // <item><name>Orange</name><color>orange</color></item>
101 // <item><name>Eggplant</name><color>purple</color></item>
105 var response = Y.DataSchema.JSON.apply(schema, data);
107 // response.results[0] is { name: "Banana", color: "YELLOW" }
110 @param {Object} schema Schema to apply. Supported configuration
112 @param {String} [schema.resultListLocator] XPath locator for the
113 XML nodes that contain the data to flatten into `response.results`
114 @param {Array} [schema.resultFields] Field identifiers to
115 locate/assign values in the response records. See above for
117 @param {Array} [schema.metaFields] XPath locators to extract extra
118 non-record related information from the XML data
119 @param {XMLDoc} data XML data to parse
120 @return {Object} An Object with properties `results` and `meta`
123 apply: function(schema, data) {
124 var xmldoc = data, // unnecessary variables
125 data_out = { results: [], meta: {} };
127 if (xmldoc && okNodeType[xmldoc.nodeType] && schema) {
128 // Parse results data
129 data_out = SchemaXML._parseResults(schema, xmldoc, data_out);
132 data_out = SchemaXML._parseMeta(schema.metaFields, xmldoc, data_out);
134 data_out.error = new Error("XML schema parse failure");
141 * Get an XPath-specified value for a given field from an XML node or document.
143 * @method _getLocationValue
144 * @param field {String | Object} Field definition.
145 * @param context {Object} XML node or document to search within.
146 * @return {Object} Data value or null.
150 _getLocationValue: function(field, context) {
151 var locator = field.locator || field.key || field,
152 xmldoc = context.ownerDocument || context,
153 result, res, value = null;
156 result = SchemaXML._getXPathResult(locator, context, xmldoc);
157 while ((res = result.iterateNext())) {
158 value = res.textContent || res.value || res.text || res.innerHTML || res.innerText || null;
161 // FIXME: Why defer to a method that is mixed into this object?
162 // DSchema.Base is mixed into DSchema.XML (et al), so
163 // DSchema.XML.parse(...) will work. This supports the use case
164 // where DSchema.Base.parse is changed, and that change is then
165 // seen by all DSchema.* implementations, but does not support the
166 // case where redefining DSchema.XML.parse changes behavior. In
167 // fact, DSchema.XML.parse is never even called.
168 return Y.DataSchema.Base.parse.call(this, value, field);
176 * Fetches the XPath-specified result for a given location in an XML node
179 * @method _getXPathResult
180 * @param locator {String} The XPath location.
181 * @param context {Object} XML node or document to search within.
182 * @param xmldoc {Object} XML document to resolve namespace.
183 * @return {Object} Data collection or null.
187 _getXPathResult: function(locator, context, xmldoc) {
189 if (! Lang.isUndefined(xmldoc.evaluate)) {
190 return xmldoc.evaluate(locator, context, xmldoc.createNSResolver(context.ownerDocument ? context.ownerDocument.documentElement : context.documentElement), 0, null);
195 var values=[], locatorArray = locator.split(/\b\/\b/), i=0, l=locatorArray.length, location, subloc, m, isNth;
197 // XPath is supported
199 // this fixes the IE 5.5+ issue where childnode selectors begin at 0 instead of 1
201 xmldoc.setProperty("SelectionLanguage", "XPath");
204 values = context.selectNodes(locator);
206 // Fallback for DOM nodes and fragments
208 // Iterate over each locator piece
209 for (; i<l && context; i++) {
210 location = locatorArray[i];
213 if ((location.indexOf("[") > -1) && (location.indexOf("]") > -1)) {
214 subloc = location.slice(location.indexOf("[")+1, location.indexOf("]"));
215 //XPath is 1-based while DOM is 0-based
217 context = context.children[subloc];
220 // grab attribute value @
221 else if (location.indexOf("@") > -1) {
222 subloc = location.substr(location.indexOf("@"));
223 context = subloc ? context.getAttribute(subloc.replace('@', '')) : context;
225 // grab that last instance of tagName
226 else if (-1 < location.indexOf("//")) {
227 subloc = context.getElementsByTagName(location.substr(2));
228 context = subloc.length ? subloc[subloc.length - 1] : null;
230 // find the last matching location in children
231 else if (l != i + 1) {
232 for (m=context.childNodes.length-1; 0 <= m; m-=1) {
233 if (location === context.childNodes[m].tagName) {
234 context = context.childNodes[m];
243 if (Lang.isString(context)) {
244 values[0] = {value: context};
248 values[0] = {value: context.innerHTML};
252 values = Y.Array(context.childNodes, 0, true);
257 // returning a mock-standard object for IE
261 iterateNext: function() {
262 if (this.index >= this.values.length) {return undefined;}
263 var result = this.values[this.index];
274 * Schema-parsed result field.
276 * @method _parseField
277 * @param field {String | Object} Required. Field definition.
278 * @param result {Object} Required. Schema parsed data object.
279 * @param context {Object} Required. XML node or document to search within.
283 _parseField: function(field, result, context) {
284 var key = field.key || field,
288 parsed = { results: [], meta: {} };
289 parsed = SchemaXML._parseResults(field.schema, context, parsed);
291 result[key] = parsed.results;
293 result[key] = SchemaXML._getLocationValue(field, context);
298 * Parses results data according to schema
301 * @param xmldoc_in {Object} XML document parse.
302 * @param data_out {Object} In-progress schema-parsed data to update.
303 * @return {Object} Schema-parsed data.
307 _parseMeta: function(metaFields, xmldoc_in, data_out) {
308 if(Lang.isObject(metaFields)) {
310 xmldoc = xmldoc_in.ownerDocument || xmldoc_in;
312 for(key in metaFields) {
313 if (metaFields.hasOwnProperty(key)) {
314 data_out.meta[key] = SchemaXML._getLocationValue(metaFields[key], xmldoc);
322 * Schema-parsed result to add to results list.
324 * @method _parseResult
325 * @param fields {Array} Required. A collection of field definition.
326 * @param context {Object} Required. XML node or document to search within.
327 * @return {Object} Schema-parsed data.
331 _parseResult: function(fields, context) {
334 // Find each field value
335 for (j=fields.length-1; 0 <= j; j--) {
336 SchemaXML._parseField(fields[j], result, context);
343 * Schema-parsed list of results from full data
345 * @method _parseResults
346 * @param schema {Object} Schema to parse against.
347 * @param context {Object} XML node or document to parse.
348 * @param data_out {Object} In-progress schema-parsed data to update.
349 * @return {Object} Schema-parsed data.
353 _parseResults: function(schema, context, data_out) {
354 if (schema.resultListLocator && Lang.isArray(schema.resultFields)) {
355 var xmldoc = context.ownerDocument || context,
356 fields = schema.resultFields,
360 if (schema.resultListLocator.match(/^[:\-\w]+$/)) {
361 nodeList = context.getElementsByTagName(schema.resultListLocator);
363 // loop through each result node
364 for (i = nodeList.length - 1; i >= 0; --i) {
365 results[i] = SchemaXML._parseResult(fields, nodeList[i]);
368 nodeList = SchemaXML._getXPathResult(schema.resultListLocator, context, xmldoc);
370 // loop through the nodelist
371 while ((node = nodeList.iterateNext())) {
372 results[i] = SchemaXML._parseResult(fields, node);
377 if (results.length) {
378 data_out.results = results;
380 data_out.error = new Error("XML schema result nodes retrieval failure");
387 Y.DataSchema.XML = Y.mix(SchemaXML, Y.DataSchema.Base);
390 }, '3.13.0', {"requires": ["dataschema-base"]});