OpmlStore.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:5k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.data.OpmlStore");
  9. dojo.require("dojo.data.core.Read");
  10. dojo.require("dojo.data.core.Result");
  11. dojo.require("dojo.lang.assert");
  12. dojo.require("dojo.json");
  13. dojo.require("dojo.experimental");
  14. dojo.experimental("dojo.data.OpmlStore");
  15. dojo.declare("dojo.data.OpmlStore", dojo.data.core.Read, {initializer:function (keywordParameters) {
  16. this._arrayOfTopLevelItems = [];
  17. this._metadataNodes = null;
  18. this._loadFinished = false;
  19. this._opmlFileUrl = keywordParameters["url"];
  20. }, _assertIsItem:function (item) {
  21. if (!this.isItem(item)) {
  22. throw new Error("dojo.data.OpmlStore: a function was passed an item argument that was not an item");
  23. }
  24. }, _removeChildNodesThatAreNotElementNodes:function (node, recursive) {
  25. var childNodes = node.childNodes;
  26. if (childNodes.length == 0) {
  27. return;
  28. }
  29. var nodesToRemove = [];
  30. var i, childNode;
  31. for (i = 0; i < childNodes.length; ++i) {
  32. childNode = childNodes[i];
  33. if (childNode.nodeType != Node.ELEMENT_NODE) {
  34. nodesToRemove.push(childNode);
  35. }
  36. }
  37. for (i = 0; i < nodesToRemove.length; ++i) {
  38. childNode = nodesToRemove[i];
  39. node.removeChild(childNode);
  40. }
  41. if (recursive) {
  42. for (i = 0; i < childNodes.length; ++i) {
  43. childNode = childNodes[i];
  44. this._removeChildNodesThatAreNotElementNodes(childNode, recursive);
  45. }
  46. }
  47. }, _processRawXmlTree:function (rawXmlTree) {
  48. var headNodes = rawXmlTree.getElementsByTagName("head");
  49. var headNode = headNodes[0];
  50. this._removeChildNodesThatAreNotElementNodes(headNode);
  51. this._metadataNodes = headNode.childNodes;
  52. var bodyNodes = rawXmlTree.getElementsByTagName("body");
  53. var bodyNode = bodyNodes[0];
  54. this._removeChildNodesThatAreNotElementNodes(bodyNode, true);
  55. var bodyChildNodes = bodyNodes[0].childNodes;
  56. for (var i = 0; i < bodyChildNodes.length; ++i) {
  57. var node = bodyChildNodes[i];
  58. if (node.tagName == "outline") {
  59. this._arrayOfTopLevelItems.push(node);
  60. }
  61. }
  62. }, get:function (item, attribute, defaultValue) {
  63. this._assertIsItem(item);
  64. if (attribute == "children") {
  65. return (item.firstChild || defaultValue);
  66. } else {
  67. var value = item.getAttribute(attribute);
  68. value = (value != undefined) ? value : defaultValue;
  69. return value;
  70. }
  71. }, getValues:function (item, attribute) {
  72. this._assertIsItem(item);
  73. if (attribute == "children") {
  74. var array = [];
  75. for (var i = 0; i < item.childNodes.length; ++i) {
  76. array.push(item.childNodes[i]);
  77. }
  78. return array;
  79. } else {
  80. return [item.getAttribute(attribute)];
  81. }
  82. }, getAttributes:function (item) {
  83. this._assertIsItem(item);
  84. var attributes = [];
  85. var xmlNode = item;
  86. var xmlAttributes = xmlNode.attributes;
  87. for (var i = 0; i < xmlAttributes.length; ++i) {
  88. var xmlAttribute = xmlAttributes.item(i);
  89. attributes.push(xmlAttribute.nodeName);
  90. }
  91. if (xmlNode.childNodes.length > 0) {
  92. attributes.push("children");
  93. }
  94. return attributes;
  95. }, hasAttribute:function (item, attribute) {
  96. return (this.getValues(item, attribute).length > 0);
  97. }, containsValue:function (item, attribute, value) {
  98. var values = this.getValues(item, attribute);
  99. for (var i = 0; i < values.length; ++i) {
  100. var possibleValue = values[i];
  101. if (value == possibleValue) {
  102. return true;
  103. }
  104. }
  105. return false;
  106. }, isItem:function (something) {
  107. return (something && something.nodeType == Node.ELEMENT_NODE && something.tagName == "outline");
  108. }, isItemAvailable:function (something) {
  109. return this.isItem(something);
  110. }, find:function (keywordArgs) {
  111. var result = null;
  112. if (keywordArgs instanceof dojo.data.core.Result) {
  113. result = keywordArgs;
  114. result.store = this;
  115. } else {
  116. result = new dojo.data.core.Result(keywordArgs, this);
  117. }
  118. var self = this;
  119. var bindHandler = function (type, data, evt) {
  120. var scope = result.scope || dj_global;
  121. if (type == "load") {
  122. self._processRawXmlTree(data);
  123. if (result.saveResult) {
  124. result.items = self._arrayOfTopLevelItems;
  125. }
  126. if (result.onbegin) {
  127. result.onbegin.call(scope, result);
  128. }
  129. for (var i = 0; i < self._arrayOfTopLevelItems.length; i++) {
  130. var item = self._arrayOfTopLevelItems[i];
  131. if (result.onnext && !result._aborted) {
  132. result.onnext.call(scope, item, result);
  133. }
  134. }
  135. if (result.oncompleted && !result._aborted) {
  136. result.oncompleted.call(scope, result);
  137. }
  138. } else {
  139. if (type == "error" || type == "timeout") {
  140. var errorObject = data;
  141. if (result.onerror) {
  142. result.onerror.call(scope, data);
  143. }
  144. }
  145. }
  146. };
  147. if (!this._loadFinished) {
  148. if (this._opmlFileUrl) {
  149. var bindRequest = dojo.io.bind({url:this._opmlFileUrl, handle:bindHandler, mimetype:"text/xml", sync:(result.sync || false)});
  150. result._abortFunc = bindRequest.abort;
  151. }
  152. }
  153. return result;
  154. }, getIdentity:function (item) {
  155. dojo.unimplemented("dojo.data.OpmlStore.getIdentity()");
  156. return null;
  157. }, findByIdentity:function (identity) {
  158. dojo.unimplemented("dojo.data.OpmlStore.findByIdentity()");
  159. return null;
  160. }});