libxml-ruby 2.8.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (204) hide show
  1. checksums.yaml +5 -5
  2. data/HISTORY +842 -775
  3. data/LICENSE +20 -20
  4. data/MANIFEST +166 -166
  5. data/README.rdoc +217 -184
  6. data/Rakefile +90 -78
  7. data/ext/libxml/extconf.h +3 -0
  8. data/ext/libxml/extconf.rb +61 -116
  9. data/ext/libxml/libxml.c +80 -76
  10. data/ext/libxml/ruby_libxml.h +67 -75
  11. data/ext/libxml/ruby_xml.c +933 -893
  12. data/ext/libxml/ruby_xml.h +10 -10
  13. data/ext/libxml/ruby_xml_attr.c +333 -333
  14. data/ext/libxml/ruby_xml_attr.h +12 -12
  15. data/ext/libxml/ruby_xml_attr_decl.c +153 -153
  16. data/ext/libxml/ruby_xml_attr_decl.h +11 -11
  17. data/ext/libxml/ruby_xml_attributes.c +275 -275
  18. data/ext/libxml/ruby_xml_attributes.h +15 -15
  19. data/ext/libxml/ruby_xml_cbg.c +85 -85
  20. data/ext/libxml/ruby_xml_document.c +1123 -1147
  21. data/ext/libxml/ruby_xml_document.h +11 -11
  22. data/ext/libxml/ruby_xml_dtd.c +248 -268
  23. data/ext/libxml/ruby_xml_dtd.h +9 -9
  24. data/ext/libxml/ruby_xml_encoding.c +250 -260
  25. data/ext/libxml/ruby_xml_encoding.h +16 -19
  26. data/ext/libxml/ruby_xml_error.c +996 -996
  27. data/ext/libxml/ruby_xml_error.h +12 -12
  28. data/ext/libxml/ruby_xml_html_parser.c +89 -92
  29. data/ext/libxml/ruby_xml_html_parser.h +10 -10
  30. data/ext/libxml/ruby_xml_html_parser_context.c +337 -338
  31. data/ext/libxml/ruby_xml_html_parser_context.h +10 -10
  32. data/ext/libxml/ruby_xml_html_parser_options.c +46 -46
  33. data/ext/libxml/ruby_xml_html_parser_options.h +10 -10
  34. data/ext/libxml/ruby_xml_input_cbg.c +191 -191
  35. data/ext/libxml/ruby_xml_input_cbg.h +20 -20
  36. data/ext/libxml/ruby_xml_io.c +47 -50
  37. data/ext/libxml/ruby_xml_io.h +10 -10
  38. data/ext/libxml/ruby_xml_namespace.c +153 -153
  39. data/ext/libxml/ruby_xml_namespace.h +10 -10
  40. data/ext/libxml/ruby_xml_namespaces.c +293 -293
  41. data/ext/libxml/ruby_xml_namespaces.h +9 -9
  42. data/ext/libxml/ruby_xml_node.c +1402 -1452
  43. data/ext/libxml/ruby_xml_node.h +13 -11
  44. data/ext/libxml/ruby_xml_parser.c +91 -94
  45. data/ext/libxml/ruby_xml_parser.h +12 -12
  46. data/ext/libxml/ruby_xml_parser_context.c +999 -1001
  47. data/ext/libxml/ruby_xml_parser_context.h +10 -10
  48. data/ext/libxml/ruby_xml_parser_options.c +66 -66
  49. data/ext/libxml/ruby_xml_parser_options.h +12 -12
  50. data/ext/libxml/ruby_xml_reader.c +1239 -1228
  51. data/ext/libxml/ruby_xml_reader.h +17 -17
  52. data/ext/libxml/ruby_xml_relaxng.c +110 -111
  53. data/ext/libxml/ruby_xml_relaxng.h +10 -10
  54. data/ext/libxml/ruby_xml_sax2_handler.c +326 -328
  55. data/ext/libxml/ruby_xml_sax2_handler.h +10 -10
  56. data/ext/libxml/ruby_xml_sax_parser.c +116 -120
  57. data/ext/libxml/ruby_xml_sax_parser.h +10 -10
  58. data/ext/libxml/ruby_xml_schema.c +278 -301
  59. data/ext/libxml/ruby_xml_schema.h +809 -809
  60. data/ext/libxml/ruby_xml_schema_attribute.c +109 -109
  61. data/ext/libxml/ruby_xml_schema_attribute.h +15 -15
  62. data/ext/libxml/ruby_xml_schema_element.c +95 -94
  63. data/ext/libxml/ruby_xml_schema_element.h +14 -14
  64. data/ext/libxml/ruby_xml_schema_facet.c +52 -52
  65. data/ext/libxml/ruby_xml_schema_facet.h +13 -13
  66. data/ext/libxml/ruby_xml_schema_type.c +232 -259
  67. data/ext/libxml/ruby_xml_schema_type.h +9 -9
  68. data/ext/libxml/ruby_xml_version.h +9 -9
  69. data/ext/libxml/ruby_xml_writer.c +1133 -1137
  70. data/ext/libxml/ruby_xml_writer.h +10 -10
  71. data/ext/libxml/ruby_xml_xinclude.c +16 -16
  72. data/ext/libxml/ruby_xml_xinclude.h +11 -11
  73. data/ext/libxml/ruby_xml_xpath.c +194 -188
  74. data/ext/libxml/ruby_xml_xpath.h +13 -13
  75. data/ext/libxml/ruby_xml_xpath_context.c +360 -361
  76. data/ext/libxml/ruby_xml_xpath_context.h +9 -9
  77. data/ext/libxml/ruby_xml_xpath_expression.c +81 -81
  78. data/ext/libxml/ruby_xml_xpath_expression.h +10 -10
  79. data/ext/libxml/ruby_xml_xpath_object.c +338 -335
  80. data/ext/libxml/ruby_xml_xpath_object.h +17 -17
  81. data/ext/libxml/ruby_xml_xpointer.c +99 -99
  82. data/ext/libxml/ruby_xml_xpointer.h +11 -11
  83. data/ext/vc/libxml_ruby.sln +17 -15
  84. data/lib/libxml-ruby.rb +30 -0
  85. data/lib/libxml.rb +3 -33
  86. data/lib/libxml/node.rb +2 -78
  87. data/lib/libxml/parser.rb +0 -266
  88. data/lib/libxml/sax_parser.rb +0 -17
  89. data/lib/libxml/schema.rb +47 -66
  90. data/lib/libxml/schema/attribute.rb +19 -19
  91. data/lib/libxml/schema/element.rb +19 -27
  92. data/lib/libxml/schema/type.rb +21 -29
  93. data/libxml-ruby.gemspec +48 -44
  94. data/script/benchmark/depixelate +634 -634
  95. data/script/benchmark/hamlet.xml +9054 -9054
  96. data/script/benchmark/parsecount +170 -170
  97. data/script/benchmark/throughput +41 -41
  98. data/script/test +6 -6
  99. data/setup.rb +0 -1
  100. data/test/c14n/given/example-1.xml +14 -14
  101. data/test/c14n/given/example-2.xml +11 -11
  102. data/test/c14n/given/example-3.xml +18 -18
  103. data/test/c14n/given/example-4.xml +9 -9
  104. data/test/c14n/given/example-5.xml +12 -12
  105. data/test/c14n/given/example-6.xml +2 -2
  106. data/test/c14n/given/example-7.xml +11 -11
  107. data/test/c14n/given/example-8.xml +11 -11
  108. data/test/c14n/given/example-8.xpath +9 -9
  109. data/test/c14n/result/1-1-without-comments/example-1 +3 -3
  110. data/test/c14n/result/1-1-without-comments/example-2 +10 -10
  111. data/test/c14n/result/1-1-without-comments/example-3 +13 -13
  112. data/test/c14n/result/1-1-without-comments/example-4 +8 -8
  113. data/test/c14n/result/1-1-without-comments/example-5 +2 -2
  114. data/test/c14n/result/with-comments/example-1 +5 -5
  115. data/test/c14n/result/with-comments/example-2 +10 -10
  116. data/test/c14n/result/with-comments/example-3 +13 -13
  117. data/test/c14n/result/with-comments/example-4 +8 -8
  118. data/test/c14n/result/with-comments/example-5 +3 -3
  119. data/test/c14n/result/without-comments/example-1 +3 -3
  120. data/test/c14n/result/without-comments/example-2 +10 -10
  121. data/test/c14n/result/without-comments/example-3 +13 -13
  122. data/test/c14n/result/without-comments/example-4 +8 -8
  123. data/test/c14n/result/without-comments/example-5 +2 -2
  124. data/test/model/atom.xml +12 -12
  125. data/test/model/bands.iso-8859-1.xml +4 -4
  126. data/test/model/bands.utf-8.xml +4 -4
  127. data/test/model/bands.xml +4 -4
  128. data/test/model/books.xml +153 -153
  129. data/test/model/cwm_1_0.xml +11336 -0
  130. data/test/model/merge_bug_data.xml +58 -58
  131. data/test/model/ruby-lang.html +238 -238
  132. data/test/model/rubynet.xml +79 -79
  133. data/test/model/shiporder.rnc +28 -28
  134. data/test/model/shiporder.rng +86 -86
  135. data/test/model/shiporder.xml +22 -22
  136. data/test/model/shiporder.xsd +39 -39
  137. data/test/model/soap.xml +27 -27
  138. data/test/model/xinclude.xml +4 -4
  139. data/test/test.xml +2 -0
  140. data/test/{tc_attr.rb → test_attr.rb} +23 -25
  141. data/test/{tc_attr_decl.rb → test_attr_decl.rb} +13 -14
  142. data/test/{tc_attributes.rb → test_attributes.rb} +11 -18
  143. data/test/{tc_canonicalize.rb → test_canonicalize.rb} +36 -41
  144. data/test/test_deprecated_require.rb +12 -0
  145. data/test/{tc_document.rb → test_document.rb} +32 -27
  146. data/test/test_document_write.rb +146 -0
  147. data/test/{tc_dtd.rb → test_dtd.rb} +28 -29
  148. data/test/{tc_encoding.rb → test_encoding.rb} +129 -126
  149. data/test/{tc_encoding_sax.rb → test_encoding_sax.rb} +7 -6
  150. data/test/test_error.rb +178 -0
  151. data/test/test_helper.rb +3 -10
  152. data/test/test_html_parser.rb +162 -0
  153. data/test/test_html_parser_context.rb +23 -0
  154. data/test/test_namespace.rb +60 -0
  155. data/test/{tc_namespaces.rb → test_namespaces.rb} +34 -44
  156. data/test/{tc_node.rb → test_node.rb} +68 -47
  157. data/test/{tc_node_cdata.rb → test_node_cdata.rb} +12 -13
  158. data/test/{tc_node_comment.rb → test_node_comment.rb} +7 -8
  159. data/test/{tc_node_copy.rb → test_node_copy.rb} +4 -6
  160. data/test/{tc_node_edit.rb → test_node_edit.rb} +23 -41
  161. data/test/{tc_node_pi.rb → test_node_pi.rb} +37 -40
  162. data/test/{tc_node_text.rb → test_node_text.rb} +10 -12
  163. data/test/{tc_node_write.rb → test_node_write.rb} +18 -29
  164. data/test/test_node_xlink.rb +28 -0
  165. data/test/test_parser.rb +324 -0
  166. data/test/{tc_parser_context.rb → test_parser_context.rb} +41 -42
  167. data/test/{tc_properties.rb → test_properties.rb} +6 -7
  168. data/test/test_reader.rb +363 -0
  169. data/test/test_relaxng.rb +53 -0
  170. data/test/{tc_sax_parser.rb → test_sax_parser.rb} +36 -37
  171. data/test/{tc_schema.rb → test_schema.rb} +43 -37
  172. data/test/test_suite.rb +38 -40
  173. data/test/{tc_traversal.rb → test_traversal.rb} +5 -6
  174. data/test/{tc_writer.rb → test_writer.rb} +468 -448
  175. data/test/{tc_xinclude.rb → test_xinclude.rb} +4 -5
  176. data/test/test_xml.rb +262 -0
  177. data/test/{tc_xpath.rb → test_xpath.rb} +31 -32
  178. data/test/{tc_xpath_context.rb → test_xpath_context.rb} +8 -9
  179. data/test/test_xpath_expression.rb +37 -0
  180. data/test/{tc_xpointer.rb → test_xpointer.rb} +16 -18
  181. metadata +117 -95
  182. data/lib/libxml/ns.rb +0 -22
  183. data/lib/libxml/properties.rb +0 -23
  184. data/lib/libxml/reader.rb +0 -29
  185. data/lib/libxml/xpath_object.rb +0 -16
  186. data/test/etc_doc_to_s.rb +0 -21
  187. data/test/ets_doc_file.rb +0 -17
  188. data/test/ets_doc_to_s.rb +0 -23
  189. data/test/ets_gpx.rb +0 -28
  190. data/test/ets_node_gc.rb +0 -23
  191. data/test/ets_test.xml +0 -2
  192. data/test/ets_tsr.rb +0 -11
  193. data/test/tc_deprecated_require.rb +0 -13
  194. data/test/tc_document_write.rb +0 -196
  195. data/test/tc_error.rb +0 -180
  196. data/test/tc_html_parser.rb +0 -153
  197. data/test/tc_html_parser_context.rb +0 -24
  198. data/test/tc_namespace.rb +0 -62
  199. data/test/tc_node_xlink.rb +0 -29
  200. data/test/tc_parser.rb +0 -381
  201. data/test/tc_reader.rb +0 -400
  202. data/test/tc_relaxng.rb +0 -54
  203. data/test/tc_xml.rb +0 -226
  204. data/test/tc_xpath_expression.rb +0 -38
@@ -1,9 +1,9 @@
1
- /* Please see the LICENSE file for copyright and distribution information */
2
-
3
- #ifndef __RXML_NAMESPACES__
4
- #define __RXML_NAMESPACES__
5
-
6
- extern VALUE cXMLNamespaces;
7
-
8
- void rxml_init_namespaces(void);
9
- #endif
1
+ /* Please see the LICENSE file for copyright and distribution information */
2
+
3
+ #ifndef __RXML_NAMESPACES__
4
+ #define __RXML_NAMESPACES__
5
+
6
+ extern VALUE cXMLNamespaces;
7
+
8
+ void rxml_init_namespaces(void);
9
+ #endif
@@ -1,1452 +1,1402 @@
1
- #include "ruby_libxml.h"
2
- #include "ruby_xml_node.h"
3
- #include <assert.h>
4
-
5
- VALUE cXMLNode;
6
-
7
- /* Document-class: LibXML::XML::Node
8
- *
9
- * Nodes are the primary objects that make up an XML document.
10
- * The node class represents most node types that are found in
11
- * an XML document (but not LibXML::XML::Attributes, see LibXML::XML::Attr).
12
- * It exposes libxml's full API for creating, querying
13
- * moving and deleting node objects. Many of these methods are
14
- * documented in the DOM Level 3 specification found at:
15
- * http://www.w3.org/TR/DOM-Level-3-Core/. */
16
-
17
-
18
- /* Memory management:
19
- *
20
- * The bindings create a one-to-one mapping between libxml nodes
21
- * and Ruby nodes. If a libxml node is wraped, its _private member
22
- * is set with a reference to the Ruby object.
23
- *
24
- * When a libxml document or top level node is freed, it will free
25
- * all its children. Thus Ruby is responsible for:
26
- *
27
- * * Using the mark function to keep alive any documents Ruby is
28
- * referencing via the document or child nodes.
29
- * * Using the mark function to keep alive any top level, free
30
- * standing nodes Ruby is referencing via the node or its children.
31
- *
32
- * In general use, this will cause Ruby nodes to be freed before
33
- * a libxml document. When a Ruby node is freed, the _private
34
- * field is set back to null.
35
- *
36
- * In the sweep phase in Ruby 1.9.*, the document tends to be
37
- * freed before the nodes. To support this, the bindings register
38
- * a callback function with libxml that is called each time a node
39
- * is freed. In that case, the data_ptr is set to null, so the bindings
40
- * can recognize the situation.
41
- */
42
-
43
- static void rxml_node_deregisterNode(xmlNodePtr xnode)
44
- {
45
- /* Has the node been wrapped and exposed to Ruby? */
46
- if (xnode->_private)
47
- {
48
- /* Node was wrapped. Set the _private member to free and
49
- then disable the dfree function so that Ruby will not
50
- try to free the node a second time. */
51
- VALUE node = (VALUE) xnode->_private;
52
- RDATA(node)->data = NULL;
53
- RDATA(node)->dfree = NULL;
54
- RDATA(node)->dmark = NULL;
55
- }
56
- }
57
-
58
- static void rxml_node_free(xmlNodePtr xnode)
59
- {
60
- /* Either the node has been created yet in initialize
61
- or it has been freed by libxml already in Ruby's
62
- mark phase. */
63
- if (xnode == NULL)
64
- return;
65
-
66
- /* The ruby object wrapping the xml object no longer exists. */
67
- xnode->_private = NULL;
68
-
69
- /* Ruby is responsible for freeing this node if it does not
70
- have a parent and is not owned by a document. Note a corner
71
- case here - calling node2 = doc.import(node1) will cause node2
72
- to not have a parent but to have a document. */
73
- if (xnode->parent == NULL)
74
- {
75
- xmlFreeNode(xnode);
76
- }
77
- }
78
-
79
- void rxml_node_mark(xmlNodePtr xnode)
80
- {
81
- /* Either the node has not been created yet in initialize
82
- or it has been freed by libxml already in Ruby's
83
- mark phase. */
84
- if (xnode == NULL)
85
- return;
86
-
87
- if (xnode->doc && xnode->doc->_private)
88
- rb_gc_mark((VALUE) xnode->doc->_private);
89
-
90
- if (xnode->parent && xnode->parent->_private)
91
- rb_gc_mark((VALUE) xnode->_private);
92
- }
93
-
94
- VALUE rxml_node_wrap(xmlNodePtr xnode)
95
- {
96
- VALUE result;
97
-
98
- /* Is the node already wrapped? */
99
- if (xnode->_private != NULL)
100
- {
101
- result = (VALUE) xnode->_private;
102
- }
103
- else
104
- {
105
- result = Data_Wrap_Struct(cXMLNode, rxml_node_mark, rxml_node_free, xnode);
106
- xnode->_private = (void*) result;
107
- }
108
- return result;
109
- }
110
-
111
- static VALUE rxml_node_alloc(VALUE klass)
112
- {
113
- /* Ruby is responsible for freeing this node not libxml but don't set
114
- up mark and free yet until we assign the node. */
115
- return Data_Wrap_Struct(klass, rxml_node_mark, rxml_node_free, NULL);
116
- }
117
-
118
- static xmlNodePtr rxml_get_xnode(VALUE node)
119
- {
120
- xmlNodePtr result;
121
- Data_Get_Struct(node, xmlNode, result);
122
-
123
- if (!result)
124
- rb_raise(rb_eRuntimeError, "This node has already been freed.");
125
-
126
- return result;
127
- }
128
-
129
- /*
130
- * call-seq:
131
- * XML::Node.new_cdata(content = nil) -> XML::Node
132
- *
133
- * Create a new #CDATA node, optionally setting
134
- * the node's content.
135
- */
136
- static VALUE rxml_node_new_cdata(int argc, VALUE *argv, VALUE klass)
137
- {
138
- VALUE content = Qnil;
139
- xmlNodePtr xnode;
140
-
141
- rb_scan_args(argc, argv, "01", &content);
142
-
143
- if (NIL_P(content))
144
- {
145
- xnode = xmlNewCDataBlock(NULL, NULL, 0);
146
- }
147
- else
148
- {
149
- content = rb_obj_as_string(content);
150
- xnode = xmlNewCDataBlock(NULL, (xmlChar*) StringValuePtr(content),
151
- RSTRING_LEN(content));
152
- }
153
-
154
- if (xnode == NULL)
155
- rxml_raise(&xmlLastError);
156
-
157
- return rxml_node_wrap(xnode);
158
- }
159
-
160
- /*
161
- * call-seq:
162
- * XML::Node.new_comment(content = nil) -> XML::Node
163
- *
164
- * Create a new comment node, optionally setting
165
- * the node's content.
166
- *
167
- */
168
- static VALUE rxml_node_new_comment(int argc, VALUE *argv, VALUE klass)
169
- {
170
- VALUE content = Qnil;
171
- xmlNodePtr xnode;
172
-
173
- rb_scan_args(argc, argv, "01", &content);
174
-
175
- if (NIL_P(content))
176
- {
177
- xnode = xmlNewComment(NULL);
178
- }
179
- else
180
- {
181
- content = rb_obj_as_string(content);
182
- xnode = xmlNewComment((xmlChar*) StringValueCStr(content));
183
- }
184
-
185
- if (xnode == NULL)
186
- rxml_raise(&xmlLastError);
187
-
188
- return rxml_node_wrap(xnode);
189
- }
190
-
191
- /*
192
- * call-seq:
193
- * XML::Node.new_pi(name, content = nil) -> XML::Node
194
- *
195
- * Create a new pi node, optionally setting
196
- * the node's content.
197
- *
198
- */
199
- static VALUE rxml_node_new_pi(int argc, VALUE *argv, VALUE klass)
200
- {
201
- VALUE name = Qnil;
202
- VALUE content = Qnil;
203
- xmlNodePtr xnode;
204
-
205
- rb_scan_args(argc, argv, "11", &name, &content);
206
-
207
- if (NIL_P(name))
208
- {
209
- rb_raise(rb_eRuntimeError, "You must provide me with a name for a PI.");
210
- }
211
- name = rb_obj_as_string(name);
212
- if (NIL_P(content))
213
- {
214
- xnode = xmlNewPI((xmlChar*) StringValuePtr(name), NULL);
215
- }
216
- else
217
- {
218
- content = rb_obj_as_string(content);
219
- xnode = xmlNewPI((xmlChar*) StringValuePtr(name), (xmlChar*) StringValueCStr(content));
220
- }
221
-
222
- if (xnode == NULL)
223
- rxml_raise(&xmlLastError);
224
-
225
- return rxml_node_wrap(xnode);
226
- }
227
-
228
- /*
229
- * call-seq:
230
- * XML::Node.new_text(content) -> XML::Node
231
- *
232
- * Create a new text node.
233
- *
234
- */
235
- static VALUE rxml_node_new_text(VALUE klass, VALUE content)
236
- {
237
- xmlNodePtr xnode;
238
- Check_Type(content, T_STRING);
239
- content = rb_obj_as_string(content);
240
-
241
- xnode = xmlNewText((xmlChar*) StringValueCStr(content));
242
-
243
- if (xnode == NULL)
244
- rxml_raise(&xmlLastError);
245
-
246
- return rxml_node_wrap(xnode);
247
- }
248
-
249
- static VALUE rxml_node_content_set(VALUE self, VALUE content);
250
-
251
- /*
252
- * call-seq:
253
- * XML::Node.initialize(name, content = nil, namespace = nil) -> XML::Node
254
- *
255
- * Creates a new element with the specified name, content and
256
- * namespace. The content and namespace may be nil.
257
- */
258
- static VALUE rxml_node_initialize(int argc, VALUE *argv, VALUE self)
259
- {
260
- VALUE name;
261
- VALUE content;
262
- VALUE ns;
263
- xmlNodePtr xnode = NULL;
264
- xmlNsPtr xns = NULL;
265
-
266
- rb_scan_args(argc, argv, "12", &name, &content, &ns);
267
-
268
- name = rb_obj_as_string(name);
269
-
270
- if (!NIL_P(ns))
271
- Data_Get_Struct(ns, xmlNs, xns);
272
-
273
- xnode = xmlNewNode(xns, (xmlChar*) StringValuePtr(name));
274
-
275
- if (xnode == NULL)
276
- rxml_raise(&xmlLastError);
277
-
278
- /* Link the Ruby object to the libxml object and vice-versa. */
279
- xnode->_private = (void*) self;
280
- DATA_PTR(self) = xnode;
281
-
282
- if (!NIL_P(content))
283
- rxml_node_content_set(self, content);
284
-
285
- return self;
286
- }
287
-
288
- static VALUE rxml_node_modify_dom(VALUE self, VALUE target,
289
- xmlNodePtr (*xmlFunc)(xmlNodePtr, xmlNodePtr))
290
- {
291
- xmlNodePtr xnode, xtarget, xresult;
292
-
293
- if (rb_obj_is_kind_of(target, cXMLNode) == Qfalse)
294
- rb_raise(rb_eTypeError, "Must pass an XML::Node object");
295
-
296
- xnode = rxml_get_xnode(self);
297
- xtarget = rxml_get_xnode(target);
298
-
299
- if (xtarget->doc != NULL && xtarget->doc != xnode->doc)
300
- rb_raise(eXMLError, "Nodes belong to different documents. You must first import the node by calling XML::Document.import");
301
-
302
- xmlUnlinkNode(xtarget);
303
-
304
- /* This target node could be freed here. */
305
- xresult = xmlFunc(xnode, xtarget);
306
-
307
- if (!xresult)
308
- rxml_raise(&xmlLastError);
309
-
310
- /* Was the target freed? If yes, then wrap the new node */
311
- if (xresult != xtarget)
312
- {
313
- RDATA(target)->data = xresult;
314
- xresult->_private = (void*) target;
315
- }
316
-
317
- return target;
318
- }
319
-
320
- /*
321
- * call-seq:
322
- * node.base_uri -> "uri"
323
- *
324
- * Obtain this node's base URI.
325
- */
326
- static VALUE rxml_node_base_uri_get(VALUE self)
327
- {
328
- xmlNodePtr xnode;
329
- xmlChar* base_uri;
330
- VALUE result = Qnil;
331
-
332
- xnode = rxml_get_xnode(self);
333
-
334
- if (xnode->doc == NULL)
335
- return (result);
336
-
337
- base_uri = xmlNodeGetBase(xnode->doc, xnode);
338
- if (base_uri)
339
- {
340
- result = rxml_new_cstr((const char*) base_uri, NULL);
341
- xmlFree(base_uri);
342
- }
343
-
344
- return (result);
345
- }
346
-
347
- // TODO node_base_set should support setting back to nil
348
-
349
- /*
350
- * call-seq:
351
- * node.base_uri = "uri"
352
- *
353
- * Set this node's base URI.
354
- */
355
- static VALUE rxml_node_base_uri_set(VALUE self, VALUE uri)
356
- {
357
- xmlNodePtr xnode;
358
-
359
- Check_Type(uri, T_STRING);
360
- xnode = rxml_get_xnode(self);
361
- if (xnode->doc == NULL)
362
- return (Qnil);
363
-
364
- xmlNodeSetBase(xnode, (xmlChar*) StringValuePtr(uri));
365
- return (Qtrue);
366
- }
367
-
368
- /*
369
- * call-seq:
370
- * node.content -> "string"
371
- *
372
- * Obtain this node's content as a string.
373
- */
374
- static VALUE rxml_node_content_get(VALUE self)
375
- {
376
- xmlNodePtr xnode;
377
- xmlChar *content;
378
- VALUE result = Qnil;
379
-
380
- xnode = rxml_get_xnode(self);
381
- content = xmlNodeGetContent(xnode);
382
- if (content)
383
- {
384
- result = rxml_new_cstr((const char *) content, NULL);
385
- xmlFree(content);
386
- }
387
-
388
- return result;
389
- }
390
-
391
- /*
392
- * call-seq:
393
- * node.content = "string"
394
- *
395
- * Set this node's content to the specified string.
396
- */
397
- static VALUE rxml_node_content_set(VALUE self, VALUE content)
398
- {
399
- xmlNodePtr xnode;
400
- xmlChar* encoded_content;
401
-
402
- Check_Type(content, T_STRING);
403
- xnode = rxml_get_xnode(self);
404
- encoded_content = xmlEncodeSpecialChars(xnode->doc, (xmlChar*) StringValuePtr(content));
405
- xmlNodeSetContent(xnode, encoded_content);
406
- return (Qtrue);
407
- }
408
-
409
- /*
410
- * call-seq:
411
- * node.content_stripped -> "string"
412
- *
413
- * Obtain this node's stripped content.
414
- *
415
- * *Deprecated*: Stripped content can be obtained via the
416
- * +content+ method.
417
- */
418
- static VALUE rxml_node_content_stripped_get(VALUE self)
419
- {
420
- xmlNodePtr xnode;
421
- xmlChar* content;
422
- VALUE result = Qnil;
423
-
424
- xnode = rxml_get_xnode(self);
425
-
426
- if (!xnode->content)
427
- return result;
428
-
429
- content = xmlNodeGetContent(xnode);
430
- if (content)
431
- {
432
- result = rxml_new_cstr((const char*) content, NULL);
433
- xmlFree(content);
434
- }
435
- return (result);
436
- }
437
-
438
- /*
439
- * call-seq:
440
- * node.debug -> true|false
441
- *
442
- * Print libxml debugging information to stdout.
443
- * Requires that libxml was compiled with debugging enabled.
444
- */
445
- static VALUE rxml_node_debug(VALUE self)
446
- {
447
- #ifdef LIBXML_DEBUG_ENABLED
448
- xmlNodePtr xnode;
449
- xnode = rxml_get_xnode(self);
450
- xmlDebugDumpNode(NULL, xnode, 2);
451
- return Qtrue;
452
- #else
453
- rb_warn("libxml was compiled without debugging support.");
454
- return Qfalse;
455
- #endif
456
- }
457
-
458
- /*
459
- * call-seq:
460
- * node.first -> XML::Node
461
- *
462
- * Returns this node's first child node if any.
463
- */
464
- static VALUE rxml_node_first_get(VALUE self)
465
- {
466
- xmlNodePtr xnode;
467
-
468
- xnode = rxml_get_xnode(self);
469
-
470
- if (xnode->children)
471
- return (rxml_node_wrap(xnode->children));
472
- else
473
- return (Qnil);
474
- }
475
-
476
-
477
- /*
478
- * call-seq:
479
- * curr_node << "Some text"
480
- * curr_node << node
481
- *
482
- * Add the specified text or XML::Node as a new child node to the
483
- * current node.
484
- *
485
- * If the specified argument is a string, it should be a raw string
486
- * that contains unescaped XML special characters. Entity references
487
- * are not supported.
488
- *
489
- * The method will return the current node.
490
- */
491
- static VALUE rxml_node_content_add(VALUE self, VALUE obj)
492
- {
493
- xmlNodePtr xnode;
494
- VALUE str;
495
-
496
- xnode = rxml_get_xnode(self);
497
-
498
- /* XXX This should only be legal for a CDATA type node, I think,
499
- * resulting in a merge of content, as if a string were passed
500
- * danj 070827
501
- */
502
- if (rb_obj_is_kind_of(obj, cXMLNode))
503
- {
504
- rxml_node_modify_dom(self, obj, xmlAddChild);
505
- }
506
- else
507
- {
508
- str = rb_obj_as_string(obj);
509
- if (NIL_P(str) || TYPE(str) != T_STRING)
510
- rb_raise(rb_eTypeError, "invalid argument: must be string or XML::Node");
511
-
512
- xmlNodeAddContent(xnode, (xmlChar*) StringValuePtr(str));
513
- }
514
- return self;
515
- }
516
-
517
- /*
518
- * call-seq:
519
- * node.doc -> document
520
- *
521
- * Obtain the XML::Document this node belongs to.
522
- */
523
- static VALUE rxml_node_doc(VALUE self)
524
- {
525
- xmlDocPtr xdoc = NULL;
526
- xmlNodePtr xnode = rxml_get_xnode(self);
527
-
528
- switch (xnode->type)
529
- {
530
- case XML_DOCUMENT_NODE:
531
- #ifdef LIBXML_DOCB_ENABLED
532
- case XML_DOCB_DOCUMENT_NODE:
533
- #endif
534
- case XML_HTML_DOCUMENT_NODE:
535
- case XML_NAMESPACE_DECL:
536
- break;
537
- case XML_ATTRIBUTE_NODE:
538
- xdoc = (xmlDocPtr)((xmlAttrPtr) xnode->doc);
539
- break;
540
- default:
541
- xdoc = xnode->doc;
542
- }
543
-
544
- if (xdoc == NULL)
545
- return (Qnil);
546
- else if (xdoc->_private)
547
- return (VALUE) xdoc->_private;
548
- else
549
- return (Qnil);
550
- }
551
-
552
- /*
553
- * call-seq:
554
- * node.to_s -> "string"
555
- * node.to_s(:indent => true, :encoding => 'UTF-8', :level => 0) -> "string"
556
- *
557
- * Converts a node, and all of its children, to a string representation.
558
- * To include only the node's children, use the the XML::Node#inner_xml
559
- * method.
560
- *
561
- * You may provide an optional hash table to control how the string is
562
- * generated. Valid options are:
563
- *
564
- * :indent - Specifies if the string should be indented. The default value
565
- * is true. Note that indentation is only added if both :indent is
566
- * true and XML.indent_tree_output is true. If :indent is set to false,
567
- * then both indentation and line feeds are removed from the result.
568
- *
569
- * :level - Specifies the indentation level. The amount of indentation
570
- * is equal to the (level * number_spaces) + number_spaces, where libxml
571
- * defaults the number of spaces to 2. Thus a level of 0 results in
572
- * 2 spaces, level 1 results in 4 spaces, level 2 results in 6 spaces, etc.
573
- *
574
- * :encoding - Specifies the output encoding of the string. It
575
- * defaults to XML::Encoding::UTF8. To change it, use one of the
576
- * XML::Encoding encoding constants. */
577
-
578
- static VALUE rxml_node_to_s(int argc, VALUE *argv, VALUE self)
579
- {
580
- VALUE result = Qnil;
581
- VALUE options = Qnil;
582
- xmlNodePtr xnode;
583
- xmlCharEncodingHandlerPtr encodingHandler;
584
- xmlOutputBufferPtr output;
585
-
586
- int level = 0;
587
- int indent = 1;
588
- const char *xencoding = "UTF-8";
589
-
590
- rb_scan_args(argc, argv, "01", &options);
591
-
592
- if (!NIL_P(options))
593
- {
594
- VALUE rencoding, rindent, rlevel;
595
- Check_Type(options, T_HASH);
596
- rencoding = rb_hash_aref(options, ID2SYM(rb_intern("encoding")));
597
- rindent = rb_hash_aref(options, ID2SYM(rb_intern("indent")));
598
- rlevel = rb_hash_aref(options, ID2SYM(rb_intern("level")));
599
-
600
- if (rindent == Qfalse)
601
- indent = 0;
602
-
603
- if (rlevel != Qnil)
604
- level = NUM2INT(rlevel);
605
-
606
- if (rencoding != Qnil)
607
- {
608
- xencoding = xmlGetCharEncodingName((xmlCharEncoding)NUM2INT(rencoding));
609
- if (!xencoding)
610
- rb_raise(rb_eArgError, "Unknown encoding value: %d", NUM2INT(rencoding));
611
- }
612
- }
613
-
614
- encodingHandler = xmlFindCharEncodingHandler(xencoding);
615
- output = xmlAllocOutputBuffer(encodingHandler);
616
-
617
- xnode = rxml_get_xnode(self);
618
-
619
- xmlNodeDumpOutput(output, xnode->doc, xnode, level, indent, xencoding);
620
- xmlOutputBufferFlush(output);
621
-
622
- #ifdef LIBXML2_NEW_BUFFER
623
- if (output->conv)
624
- result = rxml_new_cstr((const char*) xmlBufContent(output->conv), xencoding);
625
- else
626
- result = rxml_new_cstr((const char*) xmlBufContent(output->buffer), xencoding);
627
- #else
628
- if (output->conv)
629
- result = rxml_new_cstr((const char*) output->conv->content, xencoding);
630
- else
631
- result = rxml_new_cstr((const char*) output->buffer->content, xencoding);
632
- #endif
633
-
634
- xmlOutputBufferClose(output);
635
-
636
- return result;
637
- }
638
-
639
-
640
- /*
641
- * call-seq:
642
- * node.each -> XML::Node
643
- *
644
- * Iterates over this node's children, including text
645
- * nodes, element nodes, etc. If you wish to iterate
646
- * only over child elements, use XML::Node#each_element.
647
- *
648
- * doc = XML::Document.new('model/books.xml')
649
- * doc.root.each {|node| puts node}
650
- */
651
- static VALUE rxml_node_each(VALUE self)
652
- {
653
- xmlNodePtr xnode;
654
- xmlNodePtr xcurrent;
655
- xnode = rxml_get_xnode(self);
656
-
657
- xcurrent = xnode->children;
658
-
659
- while (xcurrent)
660
- {
661
- /* The user could remove this node, so first stache
662
- away the next node. */
663
- xmlNodePtr xnext = xcurrent->next;
664
-
665
- rb_yield(rxml_node_wrap(xcurrent));
666
- xcurrent = xnext;
667
- }
668
- return Qnil;
669
- }
670
-
671
- /*
672
- * call-seq:
673
- * node.empty? -> (true|false)
674
- *
675
- * Determine whether this node is an empty or whitespace only text-node.
676
- */
677
- static VALUE rxml_node_empty_q(VALUE self)
678
- {
679
- xmlNodePtr xnode;
680
- xnode = rxml_get_xnode(self);
681
- if (xnode == NULL)
682
- return (Qnil);
683
-
684
- return ((xmlIsBlankNode(xnode) == 1) ? Qtrue : Qfalse);
685
- }
686
-
687
-
688
- /*
689
- * call-seq:
690
- * node.eql?(other_node) => (true|false)
691
- *
692
- * Test equality between the two nodes. Two nodes are equal
693
- * if they are the same node or have the same XML representation.*/
694
- static VALUE rxml_node_eql_q(VALUE self, VALUE other)
695
- {
696
- if(self == other)
697
- {
698
- return Qtrue;
699
- }
700
- else if (NIL_P(other))
701
- {
702
- return Qfalse;
703
- }
704
- else
705
- {
706
- VALUE self_xml;
707
- VALUE other_xml;
708
-
709
- if (rb_obj_is_kind_of(other, cXMLNode) == Qfalse)
710
- rb_raise(rb_eTypeError, "Nodes can only be compared against other nodes");
711
-
712
- self_xml = rxml_node_to_s(0, NULL, self);
713
- other_xml = rxml_node_to_s(0, NULL, other);
714
- return(rb_funcall(self_xml, rb_intern("=="), 1, other_xml));
715
- }
716
- }
717
-
718
- /*
719
- * call-seq:
720
- * node.lang -> "string"
721
- *
722
- * Obtain the language set for this node, if any.
723
- * This is set in XML via the xml:lang attribute.
724
- */
725
- static VALUE rxml_node_lang_get(VALUE self)
726
- {
727
- xmlNodePtr xnode;
728
- xmlChar *lang;
729
- VALUE result = Qnil;
730
-
731
- xnode = rxml_get_xnode(self);
732
- lang = xmlNodeGetLang(xnode);
733
-
734
- if (lang)
735
- {
736
- result = rxml_new_cstr((const char*) lang, NULL);
737
- xmlFree(lang);
738
- }
739
-
740
- return (result);
741
- }
742
-
743
- // TODO node_lang_set should support setting back to nil
744
-
745
- /*
746
- * call-seq:
747
- * node.lang = "string"
748
- *
749
- * Set the language for this node. This affects the value
750
- * of the xml:lang attribute.
751
- */
752
- static VALUE rxml_node_lang_set(VALUE self, VALUE lang)
753
- {
754
- xmlNodePtr xnode;
755
-
756
- Check_Type(lang, T_STRING);
757
- xnode = rxml_get_xnode(self);
758
- xmlNodeSetLang(xnode, (xmlChar*) StringValuePtr(lang));
759
-
760
- return (Qtrue);
761
- }
762
-
763
- /*
764
- * call-seq:
765
- * node.last -> XML::Node
766
- *
767
- * Obtain the last child node of this node, if any.
768
- */
769
- static VALUE rxml_node_last_get(VALUE self)
770
- {
771
- xmlNodePtr xnode;
772
-
773
- xnode = rxml_get_xnode(self);
774
-
775
- if (xnode->last)
776
- return (rxml_node_wrap(xnode->last));
777
- else
778
- return (Qnil);
779
- }
780
-
781
- /*
782
- * call-seq:
783
- * node.line_num -> num
784
- *
785
- * Obtain the line number (in the XML document) that this
786
- * node was read from. If +default_line_numbers+ is set
787
- * false (the default), this method returns zero.
788
- */
789
- static VALUE rxml_node_line_num(VALUE self)
790
- {
791
- xmlNodePtr xnode;
792
- long line_num;
793
- xnode = rxml_get_xnode(self);
794
-
795
- if (!xmlLineNumbersDefaultValue)
796
- rb_warn(
797
- "Line numbers were not retained: use XML::Parser::default_line_numbers=true");
798
-
799
- line_num = xmlGetLineNo(xnode);
800
- if (line_num == -1)
801
- return (Qnil);
802
- else
803
- return (INT2NUM((long) line_num));
804
- }
805
-
806
- /*
807
- * call-seq:
808
- * node.xlink? -> (true|false)
809
- *
810
- * Determine whether this node is an xlink node.
811
- */
812
- static VALUE rxml_node_xlink_q(VALUE self)
813
- {
814
- xmlNodePtr xnode;
815
- xlinkType xlt;
816
-
817
- xnode = rxml_get_xnode(self);
818
- xlt = xlinkIsLink(xnode->doc, xnode);
819
-
820
- if (xlt == XLINK_TYPE_NONE)
821
- return (Qfalse);
822
- else
823
- return (Qtrue);
824
- }
825
-
826
- /*
827
- * call-seq:
828
- * node.xlink_type -> num
829
- *
830
- * Obtain the type identifier for this xlink, if applicable.
831
- * If this is not an xlink node (see +xlink?+), will return
832
- * nil.
833
- */
834
- static VALUE rxml_node_xlink_type(VALUE self)
835
- {
836
- xmlNodePtr xnode;
837
- xlinkType xlt;
838
-
839
- xnode = rxml_get_xnode(self);
840
- xlt = xlinkIsLink(xnode->doc, xnode);
841
-
842
- if (xlt == XLINK_TYPE_NONE)
843
- return (Qnil);
844
- else
845
- return (INT2NUM(xlt));
846
- }
847
-
848
- /*
849
- * call-seq:
850
- * node.xlink_type_name -> "string"
851
- *
852
- * Obtain the type name for this xlink, if applicable.
853
- * If this is not an xlink node (see +xlink?+), will return
854
- * nil.
855
- */
856
- static VALUE rxml_node_xlink_type_name(VALUE self)
857
- {
858
- xmlNodePtr xnode;
859
- xlinkType xlt;
860
-
861
- xnode = rxml_get_xnode(self);
862
- xlt = xlinkIsLink(xnode->doc, xnode);
863
-
864
- switch (xlt)
865
- {
866
- case XLINK_TYPE_NONE:
867
- return (Qnil);
868
- case XLINK_TYPE_SIMPLE:
869
- return (rxml_new_cstr("simple", NULL));
870
- case XLINK_TYPE_EXTENDED:
871
- return (rxml_new_cstr("extended", NULL));
872
- case XLINK_TYPE_EXTENDED_SET:
873
- return (rxml_new_cstr("extended_set", NULL));
874
- default:
875
- rb_fatal("Unknowng xlink type, %d", xlt);
876
- }
877
- }
878
-
879
- /*
880
- * call-seq:
881
- * node.name -> "string"
882
- *
883
- * Obtain this node's name.
884
- */
885
- static VALUE rxml_node_name_get(VALUE self)
886
- {
887
- xmlNodePtr xnode;
888
- const xmlChar *name;
889
-
890
- xnode = rxml_get_xnode(self);
891
-
892
- switch (xnode->type)
893
- {
894
- case XML_DOCUMENT_NODE:
895
- #ifdef LIBXML_DOCB_ENABLED
896
- case XML_DOCB_DOCUMENT_NODE:
897
- #endif
898
- case XML_HTML_DOCUMENT_NODE:
899
- {
900
- xmlDocPtr doc = (xmlDocPtr) xnode;
901
- name = doc->URL;
902
- break;
903
- }
904
- case XML_ATTRIBUTE_NODE:
905
- {
906
- xmlAttrPtr attr = (xmlAttrPtr) xnode;
907
- name = attr->name;
908
- break;
909
- }
910
- case XML_NAMESPACE_DECL:
911
- {
912
- xmlNsPtr ns = (xmlNsPtr) xnode;
913
- name = ns->prefix;
914
- break;
915
- }
916
- default:
917
- name = xnode->name;
918
- break;
919
- }
920
-
921
- if (xnode->name == NULL)
922
- return (Qnil);
923
- else
924
- return (rxml_new_cstr((const char*) name, NULL));
925
- }
926
-
927
- /*
928
- * call-seq:
929
- * node.name = "string"
930
- *
931
- * Set this node's name.
932
- */
933
- static VALUE rxml_node_name_set(VALUE self, VALUE name)
934
- {
935
- xmlNodePtr xnode;
936
- const xmlChar *xname;
937
-
938
- Check_Type(name, T_STRING);
939
- xnode = rxml_get_xnode(self);
940
- xname = (const xmlChar*)StringValuePtr(name);
941
-
942
- /* Note: calling xmlNodeSetName() for a text node is ignored by libXML. */
943
- xmlNodeSetName(xnode, xname);
944
-
945
- return (Qtrue);
946
- }
947
-
948
- /*
949
- * call-seq:
950
- * node.next -> XML::Node
951
- *
952
- * Returns the next sibling node if one exists.
953
- */
954
- static VALUE rxml_node_next_get(VALUE self)
955
- {
956
- xmlNodePtr xnode;
957
-
958
- xnode = rxml_get_xnode(self);
959
-
960
- if (xnode->next)
961
- return (rxml_node_wrap(xnode->next));
962
- else
963
- return (Qnil);
964
- }
965
-
966
- /*
967
- * call-seq:
968
- * curr_node.next = node
969
- *
970
- * Adds the specified node as the next sibling of the current node.
971
- * If the node already exists in the document, it is first removed
972
- * from its existing context. Any adjacent text nodes will be
973
- * merged together, meaning the returned node may be different
974
- * than the original node.
975
- */
976
- static VALUE rxml_node_next_set(VALUE self, VALUE next)
977
- {
978
- return rxml_node_modify_dom(self, next, xmlAddNextSibling);
979
- }
980
-
981
- /*
982
- * call-seq:
983
- * node.parent -> XML::Node
984
- *
985
- * Obtain this node's parent node, if any.
986
- */
987
- static VALUE rxml_node_parent_get(VALUE self)
988
- {
989
- xmlNodePtr xnode;
990
-
991
- xnode = rxml_get_xnode(self);
992
-
993
- if (xnode->parent)
994
- return (rxml_node_wrap(xnode->parent));
995
- else
996
- return (Qnil);
997
- }
998
-
999
- /*
1000
- * call-seq:
1001
- * node.path -> path
1002
- *
1003
- * Obtain this node's path.
1004
- */
1005
- static VALUE rxml_node_path(VALUE self)
1006
- {
1007
- xmlNodePtr xnode;
1008
- xmlChar *path;
1009
-
1010
- xnode = rxml_get_xnode(self);
1011
- path = xmlGetNodePath(xnode);
1012
-
1013
- if (path == NULL)
1014
- return (Qnil);
1015
- else
1016
- return (rxml_new_cstr((const char*) path, NULL));
1017
- }
1018
-
1019
- /*
1020
- * call-seq:
1021
- * node.pointer -> XML::NodeSet
1022
- *
1023
- * Evaluates an XPointer expression relative to this node.
1024
- */
1025
- static VALUE rxml_node_pointer(VALUE self, VALUE xptr_str)
1026
- {
1027
- return (rxml_xpointer_point2(self, xptr_str));
1028
- }
1029
-
1030
- /*
1031
- * call-seq:
1032
- * node.prev -> XML::Node
1033
- *
1034
- * Obtain the previous sibling, if any.
1035
- */
1036
- static VALUE rxml_node_prev_get(VALUE self)
1037
- {
1038
- xmlNodePtr xnode;
1039
- xmlNodePtr node;
1040
- xnode = rxml_get_xnode(self);
1041
-
1042
- switch (xnode->type)
1043
- {
1044
- case XML_DOCUMENT_NODE:
1045
- #ifdef LIBXML_DOCB_ENABLED
1046
- case XML_DOCB_DOCUMENT_NODE:
1047
- #endif
1048
- case XML_HTML_DOCUMENT_NODE:
1049
- case XML_NAMESPACE_DECL:
1050
- node = NULL;
1051
- break;
1052
- case XML_ATTRIBUTE_NODE:
1053
- {
1054
- xmlAttrPtr attr = (xmlAttrPtr) xnode;
1055
- node = (xmlNodePtr) attr->prev;
1056
- }
1057
- break;
1058
- default:
1059
- node = xnode->prev;
1060
- break;
1061
- }
1062
-
1063
- if (node == NULL)
1064
- return (Qnil);
1065
- else
1066
- return (rxml_node_wrap(node));
1067
- }
1068
-
1069
- /*
1070
- * call-seq:
1071
- * curr_node.prev = node
1072
- *
1073
- * Adds the specified node as the previous sibling of the current node.
1074
- * If the node already exists in the document, it is first removed
1075
- * from its existing context. Any adjacent text nodes will be
1076
- * merged together, meaning the returned node may be different
1077
- * than the original node.
1078
- */
1079
- static VALUE rxml_node_prev_set(VALUE self, VALUE prev)
1080
- {
1081
- return rxml_node_modify_dom(self, prev, xmlAddPrevSibling);
1082
- }
1083
-
1084
- /*
1085
- * call-seq:
1086
- * node.attributes -> attributes
1087
- *
1088
- * Returns the XML::Attributes for this node.
1089
- */
1090
- static VALUE rxml_node_attributes_get(VALUE self)
1091
- {
1092
- xmlNodePtr xnode;
1093
-
1094
- xnode = rxml_get_xnode(self);
1095
- return rxml_attributes_new(xnode);
1096
- }
1097
-
1098
- /*
1099
- * call-seq:
1100
- * node.property("name") -> "string"
1101
- * node["name"] -> "string"
1102
- *
1103
- * Obtain the named property.
1104
- */
1105
- static VALUE rxml_node_attribute_get(VALUE self, VALUE name)
1106
- {
1107
- VALUE attributes = rxml_node_attributes_get(self);
1108
- return rxml_attributes_attribute_get(attributes, name);
1109
- }
1110
-
1111
- /*
1112
- * call-seq:
1113
- * node["name"] = "string"
1114
- *
1115
- * Set the named property.
1116
- */
1117
- static VALUE rxml_node_property_set(VALUE self, VALUE name, VALUE value)
1118
- {
1119
- VALUE attributes = rxml_node_attributes_get(self);
1120
- return rxml_attributes_attribute_set(attributes, name, value);
1121
- }
1122
-
1123
- /*
1124
- * call-seq:
1125
- * node.remove! -> node
1126
- *
1127
- * Removes this node and its children from the document tree by setting its document,
1128
- * parent and siblings to nil. You can add the returned node back into a document.
1129
- * Otherwise, the node will be freed once any references to it go out of scope.
1130
- */
1131
-
1132
- static VALUE rxml_node_remove_ex(VALUE self)
1133
- {
1134
- xmlNodePtr xnode, xresult;
1135
- xnode = rxml_get_xnode(self);
1136
-
1137
- /* First unlink the node from its parent. */
1138
- xmlUnlinkNode(xnode);
1139
-
1140
- /* Now copy the node we want to remove and make the
1141
- current Ruby object point to it. We do this because
1142
- a node has a number of dependencies on its parent
1143
- document - its name (if using a dictionary), entities,
1144
- namespaces, etc. For a node to live on its own, it
1145
- needs to get its own copies of this information.*/
1146
- xresult = xmlDocCopyNode(xnode, NULL, 1);
1147
-
1148
- /* This ruby node object no longer points at the node.*/
1149
- xnode->_private = NULL;
1150
- RDATA(self)->data = NULL;
1151
-
1152
- /* Now free the original node. This will call the deregister node
1153
- callback which would reset the mark and free function except for
1154
- the fact we set the _private field to null above*/
1155
- xmlFreeNode(xnode);
1156
-
1157
- /* Now wrap the new node */
1158
- RDATA(self)->data = xresult;
1159
- xresult->_private = (void*) self;
1160
-
1161
- /* Now return the removed node so the user can
1162
- do something with it.*/
1163
- return self;
1164
- }
1165
-
1166
- /*
1167
- * call-seq:
1168
- * curr_node.sibling = node
1169
- *
1170
- * Adds the specified node as the end of the current node's list
1171
- * of siblings. If the node already exists in the document, it
1172
- * is first removed from its existing context. Any adjacent text
1173
- * nodes will be merged together, meaning the returned node may
1174
- * be different than the original node.
1175
- */
1176
- static VALUE rxml_node_sibling_set(VALUE self, VALUE sibling)
1177
- {
1178
- return rxml_node_modify_dom(self, sibling, xmlAddSibling);
1179
- }
1180
-
1181
- /*
1182
- * call-seq:
1183
- * text_node.output_escaping? -> (true|false)
1184
- * element_node.output_escaping? -> (true|false|nil)
1185
- * attribute_node.output_escaping? -> (true|false|nil)
1186
- * other_node.output_escaping? -> (nil)
1187
- *
1188
- * Determine whether this node escapes it's output or not.
1189
- *
1190
- * Text nodes return only +true+ or +false+. Element and attribute nodes
1191
- * examine their immediate text node children to determine the value.
1192
- * Any other type of node always returns +nil+.
1193
- *
1194
- * If an element or attribute node has at least one immediate child text node
1195
- * and all the immediate text node children have the same +output_escaping?+
1196
- * value, that value is returned. Otherwise, +nil+ is returned.
1197
- */
1198
- static VALUE rxml_node_output_escaping_q(VALUE self)
1199
- {
1200
- xmlNodePtr xnode;
1201
- xnode = rxml_get_xnode(self);
1202
-
1203
- switch (xnode->type) {
1204
- case XML_TEXT_NODE:
1205
- return xnode->name==xmlStringTextNoenc ? Qfalse : Qtrue;
1206
- case XML_ELEMENT_NODE:
1207
- case XML_ATTRIBUTE_NODE:
1208
- {
1209
- xmlNodePtr tmp = xnode->children;
1210
- const xmlChar *match = NULL;
1211
-
1212
- /* Find the first text node and use it as the reference. */
1213
- while (tmp && tmp->type != XML_TEXT_NODE)
1214
- tmp = tmp->next;
1215
- if (! tmp)
1216
- return Qnil;
1217
- match = tmp->name;
1218
-
1219
- /* Walk the remaining text nodes until we run out or one doesn't match. */
1220
- while (tmp && (tmp->type != XML_TEXT_NODE || match == tmp->name))
1221
- tmp = tmp->next;
1222
-
1223
- /* We're left with either the mismatched node or the aggregate result. */
1224
- return tmp ? Qnil : (match==xmlStringTextNoenc ? Qfalse : Qtrue);
1225
- }
1226
- break;
1227
- default:
1228
- return Qnil;
1229
- }
1230
- }
1231
-
1232
- /*
1233
- * call-seq:
1234
- * text_node.output_escaping = true|false
1235
- * element_node.output_escaping = true|false
1236
- * attribute_node.output_escaping = true|false
1237
- *
1238
- * Controls whether this text node or the immediate text node children of an
1239
- * element or attribute node escapes their output. Any other type of node
1240
- * will simply ignore this operation.
1241
- *
1242
- * Text nodes which are added to an element or attribute node will be affected
1243
- * by any previous setting of this property.
1244
- */
1245
- static VALUE rxml_node_output_escaping_set(VALUE self, VALUE bool)
1246
- {
1247
- xmlNodePtr xnode;
1248
- xnode = rxml_get_xnode(self);
1249
-
1250
- switch (xnode->type) {
1251
- case XML_TEXT_NODE:
1252
- xnode->name = (bool!=Qfalse && bool!=Qnil) ? xmlStringText : xmlStringTextNoenc;
1253
- break;
1254
- case XML_ELEMENT_NODE:
1255
- case XML_ATTRIBUTE_NODE:
1256
- {
1257
- const xmlChar *name = (bool!=Qfalse && bool!=Qnil) ? xmlStringText : xmlStringTextNoenc;
1258
- xmlNodePtr tmp;
1259
- for (tmp = xnode->children; tmp; tmp = tmp->next)
1260
- if (tmp->type == XML_TEXT_NODE)
1261
- tmp->name = name;
1262
- }
1263
- break;
1264
- default:
1265
- return Qnil;
1266
- }
1267
-
1268
- return (bool!=Qfalse && bool!=Qnil) ? Qtrue : Qfalse;
1269
- }
1270
-
1271
- /*
1272
- * call-seq:
1273
- * node.space_preserve -> (true|false)
1274
- *
1275
- * Determine whether this node preserves whitespace.
1276
- */
1277
- static VALUE rxml_node_space_preserve_get(VALUE self)
1278
- {
1279
- xmlNodePtr xnode;
1280
-
1281
- xnode = rxml_get_xnode(self);
1282
- return (INT2NUM(xmlNodeGetSpacePreserve(xnode)));
1283
- }
1284
-
1285
- /*
1286
- * call-seq:
1287
- * node.space_preserve = true|false
1288
- *
1289
- * Control whether this node preserves whitespace.
1290
- */
1291
- static VALUE rxml_node_space_preserve_set(VALUE self, VALUE bool)
1292
- {
1293
- xmlNodePtr xnode;
1294
- xnode = rxml_get_xnode(self);
1295
-
1296
- if (TYPE(bool) == T_FALSE)
1297
- xmlNodeSetSpacePreserve(xnode, 0);
1298
- else
1299
- xmlNodeSetSpacePreserve(xnode, 1);
1300
-
1301
- return (Qnil);
1302
- }
1303
-
1304
- /*
1305
- * call-seq:
1306
- * node.type -> num
1307
- *
1308
- * Obtain this node's type identifier.
1309
- */
1310
- static VALUE rxml_node_type(VALUE self)
1311
- {
1312
- xmlNodePtr xnode;
1313
- xnode = rxml_get_xnode(self);
1314
- return (INT2NUM(xnode->type));
1315
- }
1316
-
1317
- /*
1318
- * call-seq:
1319
- * node.copy -> XML::Node
1320
- *
1321
- * Creates a copy of this node. To create a
1322
- * shallow copy set the deep parameter to false.
1323
- * To create a deep copy set the deep parameter
1324
- * to true.
1325
- *
1326
- */
1327
- static VALUE rxml_node_copy(VALUE self, VALUE deep)
1328
- {
1329
- xmlNodePtr xnode;
1330
- xmlNodePtr xcopy;
1331
- int recursive = (deep == Qnil || deep == Qfalse) ? 0 : 1;
1332
- xnode = rxml_get_xnode(self);
1333
-
1334
- xcopy = xmlCopyNode(xnode, recursive);
1335
-
1336
- if (xcopy)
1337
- return rxml_node_wrap(xcopy);
1338
- else
1339
- return Qnil;
1340
- }
1341
-
1342
- void rxml_init_node(void)
1343
- {
1344
- /* Register callback for main thread */
1345
- xmlDeregisterNodeDefault(rxml_node_deregisterNode);
1346
-
1347
- /* Register callback for all other threads */
1348
- xmlThrDefDeregisterNodeDefault(rxml_node_deregisterNode);
1349
-
1350
- cXMLNode = rb_define_class_under(mXML, "Node", rb_cObject);
1351
-
1352
- rb_define_const(cXMLNode, "SPACE_DEFAULT", INT2NUM(0));
1353
- rb_define_const(cXMLNode, "SPACE_PRESERVE", INT2NUM(1));
1354
- rb_define_const(cXMLNode, "SPACE_NOT_INHERIT", INT2NUM(-1));
1355
- rb_define_const(cXMLNode, "XLINK_ACTUATE_AUTO", INT2NUM(1));
1356
- rb_define_const(cXMLNode, "XLINK_ACTUATE_NONE", INT2NUM(0));
1357
- rb_define_const(cXMLNode, "XLINK_ACTUATE_ONREQUEST", INT2NUM(2));
1358
- rb_define_const(cXMLNode, "XLINK_SHOW_EMBED", INT2NUM(2));
1359
- rb_define_const(cXMLNode, "XLINK_SHOW_NEW", INT2NUM(1));
1360
- rb_define_const(cXMLNode, "XLINK_SHOW_NONE", INT2NUM(0));
1361
- rb_define_const(cXMLNode, "XLINK_SHOW_REPLACE", INT2NUM(3));
1362
- rb_define_const(cXMLNode, "XLINK_TYPE_EXTENDED", INT2NUM(2));
1363
- rb_define_const(cXMLNode, "XLINK_TYPE_EXTENDED_SET", INT2NUM(3));
1364
- rb_define_const(cXMLNode, "XLINK_TYPE_NONE", INT2NUM(0));
1365
- rb_define_const(cXMLNode, "XLINK_TYPE_SIMPLE", INT2NUM(1));
1366
-
1367
- rb_define_const(cXMLNode, "ELEMENT_NODE", INT2FIX(XML_ELEMENT_NODE));
1368
- rb_define_const(cXMLNode, "ATTRIBUTE_NODE", INT2FIX(XML_ATTRIBUTE_NODE));
1369
- rb_define_const(cXMLNode, "TEXT_NODE", INT2FIX(XML_TEXT_NODE));
1370
- rb_define_const(cXMLNode, "CDATA_SECTION_NODE", INT2FIX(XML_CDATA_SECTION_NODE));
1371
- rb_define_const(cXMLNode, "ENTITY_REF_NODE", INT2FIX(XML_ENTITY_REF_NODE));
1372
- rb_define_const(cXMLNode, "ENTITY_NODE", INT2FIX(XML_ENTITY_NODE));
1373
- rb_define_const(cXMLNode, "PI_NODE", INT2FIX(XML_PI_NODE));
1374
- rb_define_const(cXMLNode, "COMMENT_NODE", INT2FIX(XML_COMMENT_NODE));
1375
- rb_define_const(cXMLNode, "DOCUMENT_NODE", INT2FIX(XML_DOCUMENT_NODE));
1376
- rb_define_const(cXMLNode, "DOCUMENT_TYPE_NODE", INT2FIX(XML_DOCUMENT_TYPE_NODE));
1377
- rb_define_const(cXMLNode, "DOCUMENT_FRAG_NODE", INT2FIX(XML_DOCUMENT_FRAG_NODE));
1378
- rb_define_const(cXMLNode, "NOTATION_NODE", INT2FIX(XML_NOTATION_NODE));
1379
- rb_define_const(cXMLNode, "HTML_DOCUMENT_NODE", INT2FIX(XML_HTML_DOCUMENT_NODE));
1380
- rb_define_const(cXMLNode, "DTD_NODE", INT2FIX(XML_DTD_NODE));
1381
- rb_define_const(cXMLNode, "ELEMENT_DECL", INT2FIX(XML_ELEMENT_DECL));
1382
- rb_define_const(cXMLNode, "ATTRIBUTE_DECL", INT2FIX(XML_ATTRIBUTE_DECL));
1383
- rb_define_const(cXMLNode, "ENTITY_DECL", INT2FIX(XML_ENTITY_DECL));
1384
- rb_define_const(cXMLNode, "NAMESPACE_DECL", INT2FIX(XML_NAMESPACE_DECL));
1385
- rb_define_const(cXMLNode, "XINCLUDE_START", INT2FIX(XML_XINCLUDE_START));
1386
- rb_define_const(cXMLNode, "XINCLUDE_END", INT2FIX(XML_XINCLUDE_END));
1387
-
1388
- #ifdef LIBXML_DOCB_ENABLED
1389
- rb_define_const(cXMLNode, "DOCB_DOCUMENT_NODE", INT2FIX(XML_DOCB_DOCUMENT_NODE));
1390
- #else
1391
- rb_define_const(cXMLNode, "DOCB_DOCUMENT_NODE", Qnil);
1392
- #endif
1393
-
1394
- rb_define_singleton_method(cXMLNode, "new_cdata", rxml_node_new_cdata, -1);
1395
- rb_define_singleton_method(cXMLNode, "new_comment", rxml_node_new_comment, -1);
1396
- rb_define_singleton_method(cXMLNode, "new_pi", rxml_node_new_pi, -1);
1397
- rb_define_singleton_method(cXMLNode, "new_text", rxml_node_new_text, 1);
1398
-
1399
- /* Initialization */
1400
- rb_define_alloc_func(cXMLNode, rxml_node_alloc);
1401
- rb_define_method(cXMLNode, "initialize", rxml_node_initialize, -1);
1402
-
1403
- /* Traversal */
1404
- rb_include_module(cXMLNode, rb_mEnumerable);
1405
- rb_define_method(cXMLNode, "[]", rxml_node_attribute_get, 1);
1406
- rb_define_method(cXMLNode, "each", rxml_node_each, 0);
1407
- rb_define_method(cXMLNode, "first", rxml_node_first_get, 0);
1408
- rb_define_method(cXMLNode, "last", rxml_node_last_get, 0);
1409
- rb_define_method(cXMLNode, "next", rxml_node_next_get, 0);
1410
- rb_define_method(cXMLNode, "parent", rxml_node_parent_get, 0);
1411
- rb_define_method(cXMLNode, "prev", rxml_node_prev_get, 0);
1412
-
1413
- /* Modification */
1414
- rb_define_method(cXMLNode, "[]=", rxml_node_property_set, 2);
1415
- rb_define_method(cXMLNode, "<<", rxml_node_content_add, 1);
1416
- rb_define_method(cXMLNode, "sibling=", rxml_node_sibling_set, 1);
1417
- rb_define_method(cXMLNode, "next=", rxml_node_next_set, 1);
1418
- rb_define_method(cXMLNode, "prev=", rxml_node_prev_set, 1);
1419
-
1420
- /* Rest of the node api */
1421
- rb_define_method(cXMLNode, "attributes", rxml_node_attributes_get, 0);
1422
- rb_define_method(cXMLNode, "base_uri", rxml_node_base_uri_get, 0);
1423
- rb_define_method(cXMLNode, "base_uri=", rxml_node_base_uri_set, 1);
1424
- rb_define_method(cXMLNode, "blank?", rxml_node_empty_q, 0);
1425
- rb_define_method(cXMLNode, "copy", rxml_node_copy, 1);
1426
- rb_define_method(cXMLNode, "content", rxml_node_content_get, 0);
1427
- rb_define_method(cXMLNode, "content=", rxml_node_content_set, 1);
1428
- rb_define_method(cXMLNode, "content_stripped", rxml_node_content_stripped_get, 0);
1429
- rb_define_method(cXMLNode, "debug", rxml_node_debug, 0);
1430
- rb_define_method(cXMLNode, "doc", rxml_node_doc, 0);
1431
- rb_define_method(cXMLNode, "empty?", rxml_node_empty_q, 0);
1432
- rb_define_method(cXMLNode, "eql?", rxml_node_eql_q, 1);
1433
- rb_define_method(cXMLNode, "lang", rxml_node_lang_get, 0);
1434
- rb_define_method(cXMLNode, "lang=", rxml_node_lang_set, 1);
1435
- rb_define_method(cXMLNode, "line_num", rxml_node_line_num, 0);
1436
- rb_define_method(cXMLNode, "name", rxml_node_name_get, 0);
1437
- rb_define_method(cXMLNode, "name=", rxml_node_name_set, 1);
1438
- rb_define_method(cXMLNode, "node_type", rxml_node_type, 0);
1439
- rb_define_method(cXMLNode, "output_escaping?", rxml_node_output_escaping_q, 0);
1440
- rb_define_method(cXMLNode, "output_escaping=", rxml_node_output_escaping_set, 1);
1441
- rb_define_method(cXMLNode, "path", rxml_node_path, 0);
1442
- rb_define_method(cXMLNode, "pointer", rxml_node_pointer, 1);
1443
- rb_define_method(cXMLNode, "remove!", rxml_node_remove_ex, 0);
1444
- rb_define_method(cXMLNode, "space_preserve", rxml_node_space_preserve_get, 0);
1445
- rb_define_method(cXMLNode, "space_preserve=", rxml_node_space_preserve_set, 1);
1446
- rb_define_method(cXMLNode, "to_s", rxml_node_to_s, -1);
1447
- rb_define_method(cXMLNode, "xlink?", rxml_node_xlink_q, 0);
1448
- rb_define_method(cXMLNode, "xlink_type", rxml_node_xlink_type, 0);
1449
- rb_define_method(cXMLNode, "xlink_type_name", rxml_node_xlink_type_name, 0);
1450
-
1451
- rb_define_alias(cXMLNode, "==", "eql?");
1452
- }
1
+ #include "ruby_libxml.h"
2
+ #include "ruby_xml_node.h"
3
+ #include <assert.h>
4
+
5
+ VALUE cXMLNode;
6
+
7
+ /* Document-class: LibXML::XML::Node
8
+ *
9
+ * Nodes are the primary objects that make up an XML document.
10
+ * The node class represents most node types that are found in
11
+ * an XML document (but not LibXML::XML::Attributes, see LibXML::XML::Attr).
12
+ * It exposes libxml's full API for creating, querying
13
+ * moving and deleting node objects. Many of these methods are
14
+ * documented in the DOM Level 3 specification found at:
15
+ * http://www.w3.org/TR/DOM-Level-3-Core/. */
16
+
17
+
18
+ /* Memory management:
19
+ *
20
+ * The bindings create a one-to-one mapping between ruby objects and
21
+ * libxml documents and libxml parent nodes (ie, nodes that do not
22
+ * have a parent and do not belong to a document). In these cases,
23
+ * the bindings manage the memory. They do this by installing a free
24
+ * function and storing a back pointer to the Ruby object from the xmlnode
25
+ * using the _private member on libxml structures. When the Ruby object
26
+ * goes out of scope, the underlying libxml structure is freed. Libxml
27
+ * itself then frees all child node (recursively).
28
+ *
29
+ * For all other nodes (the vast majority), the bindings create temporary
30
+ * Ruby objects that get freed once they go out of scope. Thus there can be
31
+ * more than one ruby object pointing to the same xml node. To mostly hide
32
+ * this from programmers on the ruby side, the #eql? and #== methods are
33
+ * overriden to check if two ruby objects wrap the same xmlnode. If they do,
34
+ * then the methods return true. During the mark phase, each of these temporary
35
+ * objects marks its owning document, thereby keeping the Ruby document object
36
+ * alive and thus the xmldoc tree.
37
+ *
38
+ * In the sweep phase of the garbage collector, or when a program ends,
39
+ * there is no order to how Ruby objects are freed. In fact, the ruby document
40
+ * object is almost always freed before any ruby objects that wrap child nodes.
41
+ * However, this is ok because those ruby objects do not have a free function
42
+ * and are no longer in scope (since if they were the document would not be freed).
43
+ */
44
+
45
+ static void rxml_node_free(xmlNodePtr xnode)
46
+ {
47
+ /* The ruby object wrapping the xml object no longer exists and this
48
+ is a standalone node without a document or parent so ruby is
49
+ responsible for freeing the underlying node.*/
50
+ if (xnode->doc == NULL && xnode->parent == NULL)
51
+ {
52
+ // Remove the back linkage from libxml to Ruby
53
+ xnode->_private = NULL;
54
+ xmlFreeNode(xnode);
55
+ }
56
+ }
57
+
58
+ void rxml_node_manage(xmlNodePtr xnode, VALUE node)
59
+ {
60
+ RDATA(node)->dfree = (RUBY_DATA_FUNC)rxml_node_free;
61
+ xnode->_private = (void*)node;
62
+ }
63
+
64
+ void rxml_node_unmanage(xmlNodePtr xnode, VALUE node)
65
+ {
66
+ RDATA(node)->dfree = NULL;
67
+ xnode->_private = NULL;
68
+ }
69
+
70
+ xmlNodePtr rxml_node_root(xmlNodePtr xnode)
71
+ {
72
+ xmlNodePtr current = xnode;
73
+
74
+ while (current->parent)
75
+ {
76
+ current = current->parent;
77
+ }
78
+
79
+ return current;
80
+ }
81
+
82
+ void rxml_node_mark(xmlNodePtr xnode)
83
+ {
84
+ if (xnode->doc)
85
+ {
86
+ if (xnode->doc->_private)
87
+ {
88
+ VALUE doc = (VALUE)xnode->doc->_private;
89
+ rb_gc_mark(doc);
90
+ }
91
+ }
92
+ else if (xnode->parent)
93
+ {
94
+ xmlNodePtr root = rxml_node_root(xnode);
95
+ if (root->_private)
96
+ {
97
+ VALUE node = (VALUE)root->_private;
98
+ rb_gc_mark(node);
99
+ }
100
+ }
101
+ }
102
+
103
+ VALUE rxml_node_wrap(xmlNodePtr xnode)
104
+ {
105
+ VALUE result = Qnil;
106
+
107
+ // Is this node already wrapped?
108
+ if (xnode->_private)
109
+ {
110
+ result = (VALUE)xnode->_private;
111
+ }
112
+ else
113
+ {
114
+ result = Data_Wrap_Struct(cXMLNode, rxml_node_mark, NULL, xnode);
115
+ }
116
+
117
+ if (!xnode->doc && !xnode->parent)
118
+ {
119
+ rxml_node_manage(xnode, result);
120
+ }
121
+ return result;
122
+ }
123
+
124
+ static VALUE rxml_node_alloc(VALUE klass)
125
+ {
126
+ // This node was created from Ruby so we are responsible for freeing it not libxml
127
+ return Data_Wrap_Struct(klass, rxml_node_mark, rxml_node_free, NULL);
128
+ }
129
+
130
+ static xmlNodePtr rxml_get_xnode(VALUE node)
131
+ {
132
+ xmlNodePtr result;
133
+ Data_Get_Struct(node, xmlNode, result);
134
+
135
+ if (!result)
136
+ rb_raise(rb_eRuntimeError, "This node has already been freed.");
137
+
138
+ return result;
139
+ }
140
+
141
+ /*
142
+ * call-seq:
143
+ * XML::Node.new_cdata(content = nil) -> XML::Node
144
+ *
145
+ * Create a new #CDATA node, optionally setting
146
+ * the node's content.
147
+ */
148
+ static VALUE rxml_node_new_cdata(int argc, VALUE *argv, VALUE klass)
149
+ {
150
+ VALUE content = Qnil;
151
+ xmlNodePtr xnode;
152
+
153
+ rb_scan_args(argc, argv, "01", &content);
154
+
155
+ if (NIL_P(content))
156
+ {
157
+ xnode = xmlNewCDataBlock(NULL, NULL, 0);
158
+ }
159
+ else
160
+ {
161
+ content = rb_obj_as_string(content);
162
+ xnode = xmlNewCDataBlock(NULL, (xmlChar*) StringValuePtr(content), (int)RSTRING_LEN(content));
163
+ }
164
+
165
+ if (xnode == NULL)
166
+ rxml_raise(&xmlLastError);
167
+
168
+ return rxml_node_wrap(xnode);
169
+ }
170
+
171
+ /*
172
+ * call-seq:
173
+ * XML::Node.new_comment(content = nil) -> XML::Node
174
+ *
175
+ * Create a new comment node, optionally setting
176
+ * the node's content.
177
+ *
178
+ */
179
+ static VALUE rxml_node_new_comment(int argc, VALUE *argv, VALUE klass)
180
+ {
181
+ VALUE content = Qnil;
182
+ xmlNodePtr xnode;
183
+
184
+ rb_scan_args(argc, argv, "01", &content);
185
+
186
+ if (NIL_P(content))
187
+ {
188
+ xnode = xmlNewComment(NULL);
189
+ }
190
+ else
191
+ {
192
+ content = rb_obj_as_string(content);
193
+ xnode = xmlNewComment((xmlChar*) StringValueCStr(content));
194
+ }
195
+
196
+ if (xnode == NULL)
197
+ rxml_raise(&xmlLastError);
198
+
199
+ return rxml_node_wrap(xnode);
200
+ }
201
+
202
+ /*
203
+ * call-seq:
204
+ * XML::Node.new_pi(name, content = nil) -> XML::Node
205
+ *
206
+ * Create a new pi node, optionally setting
207
+ * the node's content.
208
+ *
209
+ */
210
+ static VALUE rxml_node_new_pi(int argc, VALUE *argv, VALUE klass)
211
+ {
212
+ VALUE name = Qnil;
213
+ VALUE content = Qnil;
214
+ xmlNodePtr xnode;
215
+
216
+ rb_scan_args(argc, argv, "11", &name, &content);
217
+
218
+ if (NIL_P(name))
219
+ {
220
+ rb_raise(rb_eRuntimeError, "You must provide me with a name for a PI.");
221
+ }
222
+ name = rb_obj_as_string(name);
223
+ if (NIL_P(content))
224
+ {
225
+ xnode = xmlNewPI((xmlChar*) StringValuePtr(name), NULL);
226
+ }
227
+ else
228
+ {
229
+ content = rb_obj_as_string(content);
230
+ xnode = xmlNewPI((xmlChar*) StringValuePtr(name), (xmlChar*) StringValueCStr(content));
231
+ }
232
+
233
+ if (xnode == NULL)
234
+ rxml_raise(&xmlLastError);
235
+
236
+ return rxml_node_wrap(xnode);
237
+ }
238
+
239
+ /*
240
+ * call-seq:
241
+ * XML::Node.new_text(content) -> XML::Node
242
+ *
243
+ * Create a new text node.
244
+ *
245
+ */
246
+ static VALUE rxml_node_new_text(VALUE klass, VALUE content)
247
+ {
248
+ xmlNodePtr xnode;
249
+ Check_Type(content, T_STRING);
250
+ content = rb_obj_as_string(content);
251
+
252
+ xnode = xmlNewText((xmlChar*) StringValueCStr(content));
253
+
254
+ if (xnode == NULL)
255
+ rxml_raise(&xmlLastError);
256
+
257
+ return rxml_node_wrap(xnode);
258
+ }
259
+
260
+ static VALUE rxml_node_content_set(VALUE self, VALUE content);
261
+
262
+ /*
263
+ * call-seq:
264
+ * XML::Node.initialize(name, content = nil, namespace = nil) -> XML::Node
265
+ *
266
+ * Creates a new element with the specified name, content and
267
+ * namespace. The content and namespace may be nil.
268
+ */
269
+ static VALUE rxml_node_initialize(int argc, VALUE *argv, VALUE self)
270
+ {
271
+ VALUE name;
272
+ VALUE content;
273
+ VALUE ns;
274
+ xmlNodePtr xnode = NULL;
275
+ xmlNsPtr xns = NULL;
276
+
277
+ rb_scan_args(argc, argv, "12", &name, &content, &ns);
278
+
279
+ name = rb_obj_as_string(name);
280
+
281
+ if (!NIL_P(ns))
282
+ Data_Get_Struct(ns, xmlNs, xns);
283
+
284
+ xnode = xmlNewNode(xns, (xmlChar*) StringValuePtr(name));
285
+
286
+ if (xnode == NULL)
287
+ rxml_raise(&xmlLastError);
288
+
289
+ // Link the ruby wrapper to the underlying libxml node
290
+ RDATA(self)->data = xnode;
291
+
292
+ // Ruby is in charge of managing this node's memory
293
+ rxml_node_manage(xnode, self);
294
+
295
+ if (!NIL_P(content))
296
+ rxml_node_content_set(self, content);
297
+
298
+ return self;
299
+ }
300
+
301
+ static VALUE rxml_node_modify_dom(VALUE self, VALUE target,
302
+ xmlNodePtr (*xmlFunc)(xmlNodePtr, xmlNodePtr))
303
+ {
304
+ xmlNodePtr xnode, xtarget, xresult;
305
+
306
+ if (rb_obj_is_kind_of(target, cXMLNode) == Qfalse)
307
+ rb_raise(rb_eTypeError, "Must pass an XML::Node object");
308
+
309
+ xnode = rxml_get_xnode(self);
310
+ xtarget = rxml_get_xnode(target);
311
+
312
+ if (xtarget->doc != NULL && xtarget->doc != xnode->doc)
313
+ rb_raise(eXMLError, "Nodes belong to different documents. You must first import the node by calling LibXML::XML::Document.import");
314
+
315
+ xmlUnlinkNode(xtarget);
316
+
317
+ // Target is about to have a parent, so stop having ruby manage it.
318
+ rxml_node_unmanage(xtarget, target);
319
+
320
+ // This target node could be freed here and be replaced by a different node
321
+ xresult = xmlFunc(xnode, xtarget);
322
+
323
+ if (!xresult)
324
+ rxml_raise(&xmlLastError);
325
+
326
+ /* Assume the target was freed, we need to fix up the ruby object to point to the
327
+ newly returned node. */
328
+ RDATA(target)->data = xresult;
329
+
330
+ return target;
331
+ }
332
+
333
+ /*
334
+ * call-seq:
335
+ * node.base_uri -> "uri"
336
+ *
337
+ * Obtain this node's base URI.
338
+ */
339
+ static VALUE rxml_node_base_uri_get(VALUE self)
340
+ {
341
+ xmlNodePtr xnode;
342
+ xmlChar* base_uri;
343
+ VALUE result = Qnil;
344
+
345
+ xnode = rxml_get_xnode(self);
346
+
347
+ if (xnode->doc == NULL)
348
+ return (result);
349
+
350
+ base_uri = xmlNodeGetBase(xnode->doc, xnode);
351
+ if (base_uri)
352
+ {
353
+ result = rxml_new_cstr( base_uri, NULL);
354
+ xmlFree(base_uri);
355
+ }
356
+
357
+ return (result);
358
+ }
359
+
360
+ // TODO node_base_set should support setting back to nil
361
+
362
+ /*
363
+ * call-seq:
364
+ * node.base_uri = "uri"
365
+ *
366
+ * Set this node's base URI.
367
+ */
368
+ static VALUE rxml_node_base_uri_set(VALUE self, VALUE uri)
369
+ {
370
+ xmlNodePtr xnode;
371
+
372
+ Check_Type(uri, T_STRING);
373
+ xnode = rxml_get_xnode(self);
374
+ if (xnode->doc == NULL)
375
+ return (Qnil);
376
+
377
+ xmlNodeSetBase(xnode, (xmlChar*) StringValuePtr(uri));
378
+ return (Qtrue);
379
+ }
380
+
381
+ /*
382
+ * call-seq:
383
+ * node.content -> "string"
384
+ *
385
+ * Obtain this node's content as a string.
386
+ */
387
+ static VALUE rxml_node_content_get(VALUE self)
388
+ {
389
+ xmlNodePtr xnode;
390
+ xmlChar *content;
391
+ VALUE result = Qnil;
392
+
393
+ xnode = rxml_get_xnode(self);
394
+ content = xmlNodeGetContent(xnode);
395
+ if (content)
396
+ {
397
+ result = rxml_new_cstr(content, NULL);
398
+ xmlFree(content);
399
+ }
400
+
401
+ return result;
402
+ }
403
+
404
+ /*
405
+ * call-seq:
406
+ * node.content = "string"
407
+ *
408
+ * Set this node's content to the specified string.
409
+ */
410
+ static VALUE rxml_node_content_set(VALUE self, VALUE content)
411
+ {
412
+ xmlNodePtr xnode;
413
+ xmlChar* encoded_content;
414
+
415
+ Check_Type(content, T_STRING);
416
+ xnode = rxml_get_xnode(self);
417
+ encoded_content = xmlEncodeSpecialChars(xnode->doc, (xmlChar*) StringValuePtr(content));
418
+ xmlNodeSetContent(xnode, encoded_content);
419
+ xmlFree(encoded_content);
420
+ return (Qtrue);
421
+ }
422
+
423
+ /*
424
+ * call-seq:
425
+ * node.debug -> true|false
426
+ *
427
+ * Print libxml debugging information to stdout.
428
+ * Requires that libxml was compiled with debugging enabled.
429
+ */
430
+ static VALUE rxml_node_debug(VALUE self)
431
+ {
432
+ #ifdef LIBXML_DEBUG_ENABLED
433
+ xmlNodePtr xnode;
434
+ xnode = rxml_get_xnode(self);
435
+ xmlDebugDumpNode(NULL, xnode, 2);
436
+ return Qtrue;
437
+ #else
438
+ rb_warn("libxml was compiled without debugging support.");
439
+ return Qfalse;
440
+ #endif
441
+ }
442
+
443
+ /*
444
+ * call-seq:
445
+ * node.first -> XML::Node
446
+ *
447
+ * Returns this node's first child node if any.
448
+ */
449
+ static VALUE rxml_node_first_get(VALUE self)
450
+ {
451
+ xmlNodePtr xnode;
452
+
453
+ xnode = rxml_get_xnode(self);
454
+
455
+ if (xnode->children)
456
+ return (rxml_node_wrap(xnode->children));
457
+ else
458
+ return (Qnil);
459
+ }
460
+
461
+
462
+ /*
463
+ * call-seq:
464
+ * curr_node << "Some text"
465
+ * curr_node << node
466
+ *
467
+ * Add the specified text or XML::Node as a new child node to the
468
+ * current node.
469
+ *
470
+ * If the specified argument is a string, it should be a raw string
471
+ * that contains unescaped XML special characters. Entity references
472
+ * are not supported.
473
+ *
474
+ * The method will return the current node.
475
+ */
476
+ static VALUE rxml_node_content_add(VALUE self, VALUE obj)
477
+ {
478
+ xmlNodePtr xnode;
479
+ VALUE str;
480
+
481
+ xnode = rxml_get_xnode(self);
482
+
483
+ /* XXX This should only be legal for a CDATA type node, I think,
484
+ * resulting in a merge of content, as if a string were passed
485
+ * danj 070827
486
+ */
487
+ if (rb_obj_is_kind_of(obj, cXMLNode))
488
+ {
489
+ rxml_node_modify_dom(self, obj, xmlAddChild);
490
+ }
491
+ else
492
+ {
493
+ str = rb_obj_as_string(obj);
494
+ if (NIL_P(str) || TYPE(str) != T_STRING)
495
+ rb_raise(rb_eTypeError, "invalid argument: must be string or XML::Node");
496
+
497
+ xmlNodeAddContent(xnode, (xmlChar*) StringValuePtr(str));
498
+ }
499
+ return self;
500
+ }
501
+
502
+ /*
503
+ * call-seq:
504
+ * node.doc -> document
505
+ *
506
+ * Obtain the XML::Document this node belongs to.
507
+ */
508
+ static VALUE rxml_node_doc(VALUE self)
509
+ {
510
+ xmlDocPtr xdoc = NULL;
511
+ xmlNodePtr xnode = rxml_get_xnode(self);
512
+
513
+ switch (xnode->type)
514
+ {
515
+ case XML_DOCUMENT_NODE:
516
+ #ifdef LIBXML_DOCB_ENABLED
517
+ case XML_DOCB_DOCUMENT_NODE:
518
+ #endif
519
+ case XML_HTML_DOCUMENT_NODE:
520
+ case XML_NAMESPACE_DECL:
521
+ break;
522
+ case XML_ATTRIBUTE_NODE:
523
+ xdoc = (xmlDocPtr)((xmlAttrPtr) xnode->doc);
524
+ break;
525
+ default:
526
+ xdoc = xnode->doc;
527
+ }
528
+
529
+ if (xdoc == NULL)
530
+ return (Qnil);
531
+
532
+ return (VALUE)xdoc->_private;
533
+ }
534
+
535
+ /*
536
+ * call-seq:
537
+ * node.to_s -> "string"
538
+ * node.to_s(:indent => true, :encoding => 'UTF-8', :level => 0) -> "string"
539
+ *
540
+ * Converts a node, and all of its children, to a string representation.
541
+ * To include only the node's children, use the the XML::Node#inner_xml
542
+ * method.
543
+ *
544
+ * You may provide an optional hash table to control how the string is
545
+ * generated. Valid options are:
546
+ *
547
+ * :indent - Specifies if the string should be indented. The default value
548
+ * is true. Note that indentation is only added if both :indent is
549
+ * true and XML.indent_tree_output is true. If :indent is set to false,
550
+ * then both indentation and line feeds are removed from the result.
551
+ *
552
+ * :level - Specifies the indentation level. The amount of indentation
553
+ * is equal to the (level * number_spaces) + number_spaces, where libxml
554
+ * defaults the number of spaces to 2. Thus a level of 0 results in
555
+ * 2 spaces, level 1 results in 4 spaces, level 2 results in 6 spaces, etc.
556
+ *
557
+ * :encoding - Specifies the output encoding of the string. It
558
+ * defaults to XML::Encoding::UTF8. To change it, use one of the
559
+ * XML::Encoding encoding constants. */
560
+
561
+ static VALUE rxml_node_to_s(int argc, VALUE *argv, VALUE self)
562
+ {
563
+ VALUE result = Qnil;
564
+ VALUE options = Qnil;
565
+ xmlNodePtr xnode;
566
+ xmlCharEncodingHandlerPtr encodingHandler;
567
+ xmlOutputBufferPtr output;
568
+
569
+ int level = 0;
570
+ int indent = 1;
571
+ const xmlChar *xencoding = (const xmlChar*)"UTF-8";
572
+
573
+ rb_scan_args(argc, argv, "01", &options);
574
+
575
+ if (!NIL_P(options))
576
+ {
577
+ VALUE rencoding, rindent, rlevel;
578
+ Check_Type(options, T_HASH);
579
+ rencoding = rb_hash_aref(options, ID2SYM(rb_intern("encoding")));
580
+ rindent = rb_hash_aref(options, ID2SYM(rb_intern("indent")));
581
+ rlevel = rb_hash_aref(options, ID2SYM(rb_intern("level")));
582
+
583
+ if (rindent == Qfalse)
584
+ indent = 0;
585
+
586
+ if (rlevel != Qnil)
587
+ level = NUM2INT(rlevel);
588
+
589
+ if (rencoding != Qnil)
590
+ {
591
+ xencoding = (const xmlChar*)xmlGetCharEncodingName((xmlCharEncoding)NUM2INT(rencoding));
592
+ if (!xencoding)
593
+ rb_raise(rb_eArgError, "Unknown encoding value: %d", NUM2INT(rencoding));
594
+ }
595
+ }
596
+
597
+ encodingHandler = xmlFindCharEncodingHandler((const char*)xencoding);
598
+ output = xmlAllocOutputBuffer(encodingHandler);
599
+
600
+ xnode = rxml_get_xnode(self);
601
+
602
+ xmlNodeDumpOutput(output, xnode->doc, xnode, level, indent, (const char*)xencoding);
603
+ xmlOutputBufferFlush(output);
604
+
605
+ #ifdef LIBXML2_NEW_BUFFER
606
+ if (output->conv)
607
+ result = rxml_new_cstr(xmlBufContent(output->conv), xencoding);
608
+ else
609
+ result = rxml_new_cstr(xmlBufContent(output->buffer), xencoding);
610
+ #else
611
+ if (output->conv)
612
+ result = rxml_new_cstr(xmlBufferContent(output->conv), xencoding);
613
+ else
614
+ result = rxml_new_cstr(xmlBufferContent(output->buffer), xencoding);
615
+ #endif
616
+
617
+ xmlOutputBufferClose(output);
618
+
619
+ return result;
620
+ }
621
+
622
+
623
+ /*
624
+ * call-seq:
625
+ * node.each -> XML::Node
626
+ *
627
+ * Iterates over this node's children, including text
628
+ * nodes, element nodes, etc. If you wish to iterate
629
+ * only over child elements, use XML::Node#each_element.
630
+ *
631
+ * doc = XML::Document.new('model/books.xml')
632
+ * doc.root.each {|node| puts node}
633
+ */
634
+ static VALUE rxml_node_each(VALUE self)
635
+ {
636
+ xmlNodePtr xnode;
637
+ xmlNodePtr xcurrent;
638
+ xnode = rxml_get_xnode(self);
639
+
640
+ xcurrent = xnode->children;
641
+
642
+ while (xcurrent)
643
+ {
644
+ /* The user could remove this node, so first stache
645
+ away the next node. */
646
+ xmlNodePtr xnext = xcurrent->next;
647
+
648
+ rb_yield(rxml_node_wrap(xcurrent));
649
+ xcurrent = xnext;
650
+ }
651
+ return Qnil;
652
+ }
653
+
654
+ /*
655
+ * call-seq:
656
+ * node.empty? -> (true|false)
657
+ *
658
+ * Determine whether this node is an empty or whitespace only text-node.
659
+ */
660
+ static VALUE rxml_node_empty_q(VALUE self)
661
+ {
662
+ xmlNodePtr xnode;
663
+ xnode = rxml_get_xnode(self);
664
+ if (xnode == NULL)
665
+ return (Qnil);
666
+
667
+ return ((xmlIsBlankNode(xnode) == 1) ? Qtrue : Qfalse);
668
+ }
669
+
670
+
671
+ /*
672
+ * call-seq:
673
+ * node.eql?(other_node) => (true|false)
674
+ *
675
+ * Test equality between the two nodes. Two nodes are equal
676
+ * if they are the same node.*/
677
+ static VALUE rxml_node_eql_q(VALUE self, VALUE other)
678
+ {
679
+ if (self == other)
680
+ {
681
+ return Qtrue;
682
+ }
683
+ else if (NIL_P(other))
684
+ {
685
+ return Qfalse;
686
+ }
687
+ else
688
+ {
689
+ xmlNodePtr xnode = rxml_get_xnode(self);
690
+ xmlNodePtr xnode_other = rxml_get_xnode(other);
691
+ return xnode == xnode_other ? Qtrue : Qfalse;
692
+ }
693
+ }
694
+
695
+ /*
696
+ * call-seq:
697
+ * node.lang -> "string"
698
+ *
699
+ * Obtain the language set for this node, if any.
700
+ * This is set in XML via the xml:lang attribute.
701
+ */
702
+ static VALUE rxml_node_lang_get(VALUE self)
703
+ {
704
+ xmlNodePtr xnode;
705
+ xmlChar *lang;
706
+ VALUE result = Qnil;
707
+
708
+ xnode = rxml_get_xnode(self);
709
+ lang = xmlNodeGetLang(xnode);
710
+
711
+ if (lang)
712
+ {
713
+ result = rxml_new_cstr( lang, NULL);
714
+ xmlFree(lang);
715
+ }
716
+
717
+ return (result);
718
+ }
719
+
720
+ // TODO node_lang_set should support setting back to nil
721
+
722
+ /*
723
+ * call-seq:
724
+ * node.lang = "string"
725
+ *
726
+ * Set the language for this node. This affects the value
727
+ * of the xml:lang attribute.
728
+ */
729
+ static VALUE rxml_node_lang_set(VALUE self, VALUE lang)
730
+ {
731
+ xmlNodePtr xnode;
732
+
733
+ Check_Type(lang, T_STRING);
734
+ xnode = rxml_get_xnode(self);
735
+ xmlNodeSetLang(xnode, (xmlChar*) StringValuePtr(lang));
736
+
737
+ return (Qtrue);
738
+ }
739
+
740
+ /*
741
+ * call-seq:
742
+ * node.last -> XML::Node
743
+ *
744
+ * Obtain the last child node of this node, if any.
745
+ */
746
+ static VALUE rxml_node_last_get(VALUE self)
747
+ {
748
+ xmlNodePtr xnode;
749
+
750
+ xnode = rxml_get_xnode(self);
751
+
752
+ if (xnode->last)
753
+ return (rxml_node_wrap(xnode->last));
754
+ else
755
+ return (Qnil);
756
+ }
757
+
758
+ /*
759
+ * call-seq:
760
+ * node.line_num -> num
761
+ *
762
+ * Obtain the line number (in the XML document) that this
763
+ * node was read from. If +default_line_numbers+ is set
764
+ * false (the default), this method returns zero.
765
+ */
766
+ static VALUE rxml_node_line_num(VALUE self)
767
+ {
768
+ xmlNodePtr xnode;
769
+ long line_num;
770
+ xnode = rxml_get_xnode(self);
771
+
772
+ if (!xmlLineNumbersDefaultValue)
773
+ rb_warn(
774
+ "Line numbers were not retained: use XML::Parser::default_line_numbers=true");
775
+
776
+ line_num = xmlGetLineNo(xnode);
777
+ if (line_num == -1)
778
+ return (Qnil);
779
+ else
780
+ return (INT2NUM((long) line_num));
781
+ }
782
+
783
+ /*
784
+ * call-seq:
785
+ * node.xlink? -> (true|false)
786
+ *
787
+ * Determine whether this node is an xlink node.
788
+ */
789
+ static VALUE rxml_node_xlink_q(VALUE self)
790
+ {
791
+ xmlNodePtr xnode;
792
+ xlinkType xlt;
793
+
794
+ xnode = rxml_get_xnode(self);
795
+ xlt = xlinkIsLink(xnode->doc, xnode);
796
+
797
+ if (xlt == XLINK_TYPE_NONE)
798
+ return (Qfalse);
799
+ else
800
+ return (Qtrue);
801
+ }
802
+
803
+ /*
804
+ * call-seq:
805
+ * node.xlink_type -> num
806
+ *
807
+ * Obtain the type identifier for this xlink, if applicable.
808
+ * If this is not an xlink node (see +xlink?+), will return
809
+ * nil.
810
+ */
811
+ static VALUE rxml_node_xlink_type(VALUE self)
812
+ {
813
+ xmlNodePtr xnode;
814
+ xlinkType xlt;
815
+
816
+ xnode = rxml_get_xnode(self);
817
+ xlt = xlinkIsLink(xnode->doc, xnode);
818
+
819
+ if (xlt == XLINK_TYPE_NONE)
820
+ return (Qnil);
821
+ else
822
+ return (INT2NUM(xlt));
823
+ }
824
+
825
+ /*
826
+ * call-seq:
827
+ * node.xlink_type_name -> "string"
828
+ *
829
+ * Obtain the type name for this xlink, if applicable.
830
+ * If this is not an xlink node (see +xlink?+), will return
831
+ * nil.
832
+ */
833
+ static VALUE rxml_node_xlink_type_name(VALUE self)
834
+ {
835
+ xmlNodePtr xnode;
836
+ xlinkType xlt;
837
+
838
+ xnode = rxml_get_xnode(self);
839
+ xlt = xlinkIsLink(xnode->doc, xnode);
840
+
841
+ switch (xlt)
842
+ {
843
+ case XLINK_TYPE_NONE:
844
+ return (Qnil);
845
+ case XLINK_TYPE_SIMPLE:
846
+ return (rxml_new_cstr((const xmlChar*)"simple", NULL));
847
+ case XLINK_TYPE_EXTENDED:
848
+ return (rxml_new_cstr((const xmlChar*)"extended", NULL));
849
+ case XLINK_TYPE_EXTENDED_SET:
850
+ return (rxml_new_cstr((const xmlChar*)"extended_set", NULL));
851
+ default:
852
+ rb_fatal("Unknowng xlink type, %d", xlt);
853
+ }
854
+ }
855
+
856
+ /*
857
+ * call-seq:
858
+ * node.name -> "string"
859
+ *
860
+ * Obtain this node's name.
861
+ */
862
+ static VALUE rxml_node_name_get(VALUE self)
863
+ {
864
+ xmlNodePtr xnode;
865
+ const xmlChar *name;
866
+
867
+ xnode = rxml_get_xnode(self);
868
+
869
+ switch (xnode->type)
870
+ {
871
+ case XML_DOCUMENT_NODE:
872
+ #ifdef LIBXML_DOCB_ENABLED
873
+ case XML_DOCB_DOCUMENT_NODE:
874
+ #endif
875
+ case XML_HTML_DOCUMENT_NODE:
876
+ {
877
+ xmlDocPtr doc = (xmlDocPtr) xnode;
878
+ name = doc->URL;
879
+ break;
880
+ }
881
+ case XML_ATTRIBUTE_NODE:
882
+ {
883
+ xmlAttrPtr attr = (xmlAttrPtr) xnode;
884
+ name = attr->name;
885
+ break;
886
+ }
887
+ case XML_NAMESPACE_DECL:
888
+ {
889
+ xmlNsPtr ns = (xmlNsPtr) xnode;
890
+ name = ns->prefix;
891
+ break;
892
+ }
893
+ default:
894
+ name = xnode->name;
895
+ break;
896
+ }
897
+
898
+ if (xnode->name == NULL)
899
+ return (Qnil);
900
+ else
901
+ return (rxml_new_cstr( name, NULL));
902
+ }
903
+
904
+ /*
905
+ * call-seq:
906
+ * node.name = "string"
907
+ *
908
+ * Set this node's name.
909
+ */
910
+ static VALUE rxml_node_name_set(VALUE self, VALUE name)
911
+ {
912
+ xmlNodePtr xnode;
913
+ const xmlChar *xname;
914
+
915
+ Check_Type(name, T_STRING);
916
+ xnode = rxml_get_xnode(self);
917
+ xname = (const xmlChar*)StringValuePtr(name);
918
+
919
+ /* Note: calling xmlNodeSetName() for a text node is ignored by libXML. */
920
+ xmlNodeSetName(xnode, xname);
921
+
922
+ return (Qtrue);
923
+ }
924
+
925
+ /*
926
+ * call-seq:
927
+ * node.next -> XML::Node
928
+ *
929
+ * Returns the next sibling node if one exists.
930
+ */
931
+ static VALUE rxml_node_next_get(VALUE self)
932
+ {
933
+ xmlNodePtr xnode;
934
+
935
+ xnode = rxml_get_xnode(self);
936
+
937
+ if (xnode->next)
938
+ return (rxml_node_wrap(xnode->next));
939
+ else
940
+ return (Qnil);
941
+ }
942
+
943
+ /*
944
+ * call-seq:
945
+ * curr_node.next = node
946
+ *
947
+ * Adds the specified node as the next sibling of the current node.
948
+ * If the node already exists in the document, it is first removed
949
+ * from its existing context. Any adjacent text nodes will be
950
+ * merged together, meaning the returned node may be different
951
+ * than the original node.
952
+ */
953
+ static VALUE rxml_node_next_set(VALUE self, VALUE next)
954
+ {
955
+ return rxml_node_modify_dom(self, next, xmlAddNextSibling);
956
+ }
957
+
958
+ /*
959
+ * call-seq:
960
+ * node.parent -> XML::Node
961
+ *
962
+ * Obtain this node's parent node, if any.
963
+ */
964
+ static VALUE rxml_node_parent_get(VALUE self)
965
+ {
966
+ xmlNodePtr xnode;
967
+
968
+ xnode = rxml_get_xnode(self);
969
+
970
+ if (xnode->parent)
971
+ return (rxml_node_wrap(xnode->parent));
972
+ else
973
+ return (Qnil);
974
+ }
975
+
976
+ /*
977
+ * call-seq:
978
+ * node.path -> path
979
+ *
980
+ * Obtain this node's path.
981
+ */
982
+ static VALUE rxml_node_path(VALUE self)
983
+ {
984
+ xmlNodePtr xnode;
985
+ xmlChar *path;
986
+
987
+ xnode = rxml_get_xnode(self);
988
+ path = xmlGetNodePath(xnode);
989
+
990
+ if (path == NULL)
991
+ return (Qnil);
992
+ else
993
+ return (rxml_new_cstr( path, NULL));
994
+ }
995
+
996
+ /*
997
+ * call-seq:
998
+ * node.pointer -> XML::NodeSet
999
+ *
1000
+ * Evaluates an XPointer expression relative to this node.
1001
+ */
1002
+ static VALUE rxml_node_pointer(VALUE self, VALUE xptr_str)
1003
+ {
1004
+ return (rxml_xpointer_point2(self, xptr_str));
1005
+ }
1006
+
1007
+ /*
1008
+ * call-seq:
1009
+ * node.prev -> XML::Node
1010
+ *
1011
+ * Obtain the previous sibling, if any.
1012
+ */
1013
+ static VALUE rxml_node_prev_get(VALUE self)
1014
+ {
1015
+ xmlNodePtr xnode;
1016
+ xmlNodePtr node;
1017
+ xnode = rxml_get_xnode(self);
1018
+
1019
+ switch (xnode->type)
1020
+ {
1021
+ case XML_DOCUMENT_NODE:
1022
+ #ifdef LIBXML_DOCB_ENABLED
1023
+ case XML_DOCB_DOCUMENT_NODE:
1024
+ #endif
1025
+ case XML_HTML_DOCUMENT_NODE:
1026
+ case XML_NAMESPACE_DECL:
1027
+ node = NULL;
1028
+ break;
1029
+ case XML_ATTRIBUTE_NODE:
1030
+ {
1031
+ xmlAttrPtr attr = (xmlAttrPtr) xnode;
1032
+ node = (xmlNodePtr) attr->prev;
1033
+ }
1034
+ break;
1035
+ default:
1036
+ node = xnode->prev;
1037
+ break;
1038
+ }
1039
+
1040
+ if (node == NULL)
1041
+ return (Qnil);
1042
+ else
1043
+ return (rxml_node_wrap(node));
1044
+ }
1045
+
1046
+ /*
1047
+ * call-seq:
1048
+ * curr_node.prev = node
1049
+ *
1050
+ * Adds the specified node as the previous sibling of the current node.
1051
+ * If the node already exists in the document, it is first removed
1052
+ * from its existing context. Any adjacent text nodes will be
1053
+ * merged together, meaning the returned node may be different
1054
+ * than the original node.
1055
+ */
1056
+ static VALUE rxml_node_prev_set(VALUE self, VALUE prev)
1057
+ {
1058
+ return rxml_node_modify_dom(self, prev, xmlAddPrevSibling);
1059
+ }
1060
+
1061
+ /*
1062
+ * call-seq:
1063
+ * node.attributes -> attributes
1064
+ *
1065
+ * Returns the XML::Attributes for this node.
1066
+ */
1067
+ static VALUE rxml_node_attributes_get(VALUE self)
1068
+ {
1069
+ xmlNodePtr xnode;
1070
+
1071
+ xnode = rxml_get_xnode(self);
1072
+ return rxml_attributes_new(xnode);
1073
+ }
1074
+
1075
+ /*
1076
+ * call-seq:
1077
+ * node.property("name") -> "string"
1078
+ * node["name"] -> "string"
1079
+ *
1080
+ * Obtain the named property.
1081
+ */
1082
+ static VALUE rxml_node_attribute_get(VALUE self, VALUE name)
1083
+ {
1084
+ VALUE attributes = rxml_node_attributes_get(self);
1085
+ return rxml_attributes_attribute_get(attributes, name);
1086
+ }
1087
+
1088
+ /*
1089
+ * call-seq:
1090
+ * node["name"] = "string"
1091
+ *
1092
+ * Set the named property.
1093
+ */
1094
+ static VALUE rxml_node_property_set(VALUE self, VALUE name, VALUE value)
1095
+ {
1096
+ VALUE attributes = rxml_node_attributes_get(self);
1097
+ return rxml_attributes_attribute_set(attributes, name, value);
1098
+ }
1099
+
1100
+ /*
1101
+ * call-seq:
1102
+ * node.remove! -> node
1103
+ *
1104
+ * Removes this node and its children from the document tree by setting its document,
1105
+ * parent and siblings to nil. You can add the returned node back into a document.
1106
+ * Otherwise, the node will be freed once any references to it go out of scope.
1107
+ */
1108
+
1109
+ static VALUE rxml_node_remove_ex(VALUE self)
1110
+ {
1111
+ xmlNodePtr xnode = rxml_get_xnode(self);
1112
+
1113
+ // Now unlink the node from its parent
1114
+ xmlUnlinkNode(xnode);
1115
+
1116
+ // Ruby now manages this node
1117
+ rxml_node_manage(xnode, self);
1118
+
1119
+ // Now return the removed node so the user can do something with it
1120
+ return self;
1121
+ }
1122
+
1123
+ /*
1124
+ * call-seq:
1125
+ * curr_node.sibling = node
1126
+ *
1127
+ * Adds the specified node as the end of the current node's list
1128
+ * of siblings. If the node already exists in the document, it
1129
+ * is first removed from its existing context. Any adjacent text
1130
+ * nodes will be merged together, meaning the returned node may
1131
+ * be different than the original node.
1132
+ */
1133
+ static VALUE rxml_node_sibling_set(VALUE self, VALUE sibling)
1134
+ {
1135
+ return rxml_node_modify_dom(self, sibling, xmlAddSibling);
1136
+ }
1137
+
1138
+ /*
1139
+ * call-seq:
1140
+ * text_node.output_escaping? -> (true|false)
1141
+ * element_node.output_escaping? -> (true|false|nil)
1142
+ * attribute_node.output_escaping? -> (true|false|nil)
1143
+ * other_node.output_escaping? -> (nil)
1144
+ *
1145
+ * Determine whether this node escapes it's output or not.
1146
+ *
1147
+ * Text nodes return only +true+ or +false+. Element and attribute nodes
1148
+ * examine their immediate text node children to determine the value.
1149
+ * Any other type of node always returns +nil+.
1150
+ *
1151
+ * If an element or attribute node has at least one immediate child text node
1152
+ * and all the immediate text node children have the same +output_escaping?+
1153
+ * value, that value is returned. Otherwise, +nil+ is returned.
1154
+ */
1155
+ static VALUE rxml_node_output_escaping_q(VALUE self)
1156
+ {
1157
+ xmlNodePtr xnode;
1158
+ xnode = rxml_get_xnode(self);
1159
+
1160
+ switch (xnode->type) {
1161
+ case XML_TEXT_NODE:
1162
+ return xnode->name==xmlStringTextNoenc ? Qfalse : Qtrue;
1163
+ case XML_ELEMENT_NODE:
1164
+ case XML_ATTRIBUTE_NODE:
1165
+ {
1166
+ xmlNodePtr tmp = xnode->children;
1167
+ const xmlChar *match = NULL;
1168
+
1169
+ /* Find the first text node and use it as the reference. */
1170
+ while (tmp && tmp->type != XML_TEXT_NODE)
1171
+ tmp = tmp->next;
1172
+ if (! tmp)
1173
+ return Qnil;
1174
+ match = tmp->name;
1175
+
1176
+ /* Walk the remaining text nodes until we run out or one doesn't match. */
1177
+ while (tmp && (tmp->type != XML_TEXT_NODE || match == tmp->name))
1178
+ tmp = tmp->next;
1179
+
1180
+ /* We're left with either the mismatched node or the aggregate result. */
1181
+ return tmp ? Qnil : (match==xmlStringTextNoenc ? Qfalse : Qtrue);
1182
+ }
1183
+ break;
1184
+ default:
1185
+ return Qnil;
1186
+ }
1187
+ }
1188
+
1189
+ /*
1190
+ * call-seq:
1191
+ * text_node.output_escaping = true|false
1192
+ * element_node.output_escaping = true|false
1193
+ * attribute_node.output_escaping = true|false
1194
+ *
1195
+ * Controls whether this text node or the immediate text node children of an
1196
+ * element or attribute node escapes their output. Any other type of node
1197
+ * will simply ignore this operation.
1198
+ *
1199
+ * Text nodes which are added to an element or attribute node will be affected
1200
+ * by any previous setting of this property.
1201
+ */
1202
+ static VALUE rxml_node_output_escaping_set(VALUE self, VALUE value)
1203
+ {
1204
+ xmlNodePtr xnode;
1205
+ xnode = rxml_get_xnode(self);
1206
+
1207
+ switch (xnode->type) {
1208
+ case XML_TEXT_NODE:
1209
+ xnode->name = (value != Qfalse && value != Qnil) ? xmlStringText : xmlStringTextNoenc;
1210
+ break;
1211
+ case XML_ELEMENT_NODE:
1212
+ case XML_ATTRIBUTE_NODE:
1213
+ {
1214
+ const xmlChar *name = (value != Qfalse && value != Qnil) ? xmlStringText : xmlStringTextNoenc;
1215
+ xmlNodePtr tmp;
1216
+ for (tmp = xnode->children; tmp; tmp = tmp->next)
1217
+ if (tmp->type == XML_TEXT_NODE)
1218
+ tmp->name = name;
1219
+ }
1220
+ break;
1221
+ default:
1222
+ return Qnil;
1223
+ }
1224
+
1225
+ return (value!=Qfalse && value!=Qnil) ? Qtrue : Qfalse;
1226
+ }
1227
+
1228
+ /*
1229
+ * call-seq:
1230
+ * node.space_preserve -> (true|false)
1231
+ *
1232
+ * Determine whether this node preserves whitespace.
1233
+ */
1234
+ static VALUE rxml_node_space_preserve_get(VALUE self)
1235
+ {
1236
+ xmlNodePtr xnode;
1237
+
1238
+ xnode = rxml_get_xnode(self);
1239
+ return (INT2NUM(xmlNodeGetSpacePreserve(xnode)));
1240
+ }
1241
+
1242
+ /*
1243
+ * call-seq:
1244
+ * node.space_preserve = true|false
1245
+ *
1246
+ * Control whether this node preserves whitespace.
1247
+ */
1248
+ static VALUE rxml_node_space_preserve_set(VALUE self, VALUE value)
1249
+ {
1250
+ xmlNodePtr xnode;
1251
+ xnode = rxml_get_xnode(self);
1252
+
1253
+ if (value == Qfalse)
1254
+ xmlNodeSetSpacePreserve(xnode, 0);
1255
+ else
1256
+ xmlNodeSetSpacePreserve(xnode, 1);
1257
+
1258
+ return (Qnil);
1259
+ }
1260
+
1261
+ /*
1262
+ * call-seq:
1263
+ * node.type -> num
1264
+ *
1265
+ * Obtain this node's type identifier.
1266
+ */
1267
+ static VALUE rxml_node_type(VALUE self)
1268
+ {
1269
+ xmlNodePtr xnode;
1270
+ xnode = rxml_get_xnode(self);
1271
+ return (INT2NUM(xnode->type));
1272
+ }
1273
+
1274
+ /*
1275
+ * call-seq:
1276
+ * node.copy -> XML::Node
1277
+ *
1278
+ * Creates a copy of this node. To create a
1279
+ * shallow copy set the deep parameter to false.
1280
+ * To create a deep copy set the deep parameter
1281
+ * to true.
1282
+ *
1283
+ */
1284
+ static VALUE rxml_node_copy(VALUE self, VALUE deep)
1285
+ {
1286
+ xmlNodePtr xnode;
1287
+ xmlNodePtr xcopy;
1288
+ int recursive = (deep == Qnil || deep == Qfalse) ? 0 : 1;
1289
+ xnode = rxml_get_xnode(self);
1290
+
1291
+ xcopy = xmlCopyNode(xnode, recursive);
1292
+
1293
+ if (xcopy)
1294
+ return rxml_node_wrap(xcopy);
1295
+ else
1296
+ return Qnil;
1297
+ }
1298
+
1299
+ void rxml_init_node(void)
1300
+ {
1301
+ cXMLNode = rb_define_class_under(mXML, "Node", rb_cObject);
1302
+
1303
+ rb_define_const(cXMLNode, "SPACE_DEFAULT", INT2NUM(0));
1304
+ rb_define_const(cXMLNode, "SPACE_PRESERVE", INT2NUM(1));
1305
+ rb_define_const(cXMLNode, "SPACE_NOT_INHERIT", INT2NUM(-1));
1306
+ rb_define_const(cXMLNode, "XLINK_ACTUATE_AUTO", INT2NUM(1));
1307
+ rb_define_const(cXMLNode, "XLINK_ACTUATE_NONE", INT2NUM(0));
1308
+ rb_define_const(cXMLNode, "XLINK_ACTUATE_ONREQUEST", INT2NUM(2));
1309
+ rb_define_const(cXMLNode, "XLINK_SHOW_EMBED", INT2NUM(2));
1310
+ rb_define_const(cXMLNode, "XLINK_SHOW_NEW", INT2NUM(1));
1311
+ rb_define_const(cXMLNode, "XLINK_SHOW_NONE", INT2NUM(0));
1312
+ rb_define_const(cXMLNode, "XLINK_SHOW_REPLACE", INT2NUM(3));
1313
+ rb_define_const(cXMLNode, "XLINK_TYPE_EXTENDED", INT2NUM(2));
1314
+ rb_define_const(cXMLNode, "XLINK_TYPE_EXTENDED_SET", INT2NUM(3));
1315
+ rb_define_const(cXMLNode, "XLINK_TYPE_NONE", INT2NUM(0));
1316
+ rb_define_const(cXMLNode, "XLINK_TYPE_SIMPLE", INT2NUM(1));
1317
+
1318
+ rb_define_const(cXMLNode, "ELEMENT_NODE", INT2FIX(XML_ELEMENT_NODE));
1319
+ rb_define_const(cXMLNode, "ATTRIBUTE_NODE", INT2FIX(XML_ATTRIBUTE_NODE));
1320
+ rb_define_const(cXMLNode, "TEXT_NODE", INT2FIX(XML_TEXT_NODE));
1321
+ rb_define_const(cXMLNode, "CDATA_SECTION_NODE", INT2FIX(XML_CDATA_SECTION_NODE));
1322
+ rb_define_const(cXMLNode, "ENTITY_REF_NODE", INT2FIX(XML_ENTITY_REF_NODE));
1323
+ rb_define_const(cXMLNode, "ENTITY_NODE", INT2FIX(XML_ENTITY_NODE));
1324
+ rb_define_const(cXMLNode, "PI_NODE", INT2FIX(XML_PI_NODE));
1325
+ rb_define_const(cXMLNode, "COMMENT_NODE", INT2FIX(XML_COMMENT_NODE));
1326
+ rb_define_const(cXMLNode, "DOCUMENT_NODE", INT2FIX(XML_DOCUMENT_NODE));
1327
+ rb_define_const(cXMLNode, "DOCUMENT_TYPE_NODE", INT2FIX(XML_DOCUMENT_TYPE_NODE));
1328
+ rb_define_const(cXMLNode, "DOCUMENT_FRAG_NODE", INT2FIX(XML_DOCUMENT_FRAG_NODE));
1329
+ rb_define_const(cXMLNode, "NOTATION_NODE", INT2FIX(XML_NOTATION_NODE));
1330
+ rb_define_const(cXMLNode, "HTML_DOCUMENT_NODE", INT2FIX(XML_HTML_DOCUMENT_NODE));
1331
+ rb_define_const(cXMLNode, "DTD_NODE", INT2FIX(XML_DTD_NODE));
1332
+ rb_define_const(cXMLNode, "ELEMENT_DECL", INT2FIX(XML_ELEMENT_DECL));
1333
+ rb_define_const(cXMLNode, "ATTRIBUTE_DECL", INT2FIX(XML_ATTRIBUTE_DECL));
1334
+ rb_define_const(cXMLNode, "ENTITY_DECL", INT2FIX(XML_ENTITY_DECL));
1335
+ rb_define_const(cXMLNode, "NAMESPACE_DECL", INT2FIX(XML_NAMESPACE_DECL));
1336
+ rb_define_const(cXMLNode, "XINCLUDE_START", INT2FIX(XML_XINCLUDE_START));
1337
+ rb_define_const(cXMLNode, "XINCLUDE_END", INT2FIX(XML_XINCLUDE_END));
1338
+
1339
+ #ifdef LIBXML_DOCB_ENABLED
1340
+ rb_define_const(cXMLNode, "DOCB_DOCUMENT_NODE", INT2FIX(XML_DOCB_DOCUMENT_NODE));
1341
+ #else
1342
+ rb_define_const(cXMLNode, "DOCB_DOCUMENT_NODE", Qnil);
1343
+ #endif
1344
+
1345
+ rb_define_singleton_method(cXMLNode, "new_cdata", rxml_node_new_cdata, -1);
1346
+ rb_define_singleton_method(cXMLNode, "new_comment", rxml_node_new_comment, -1);
1347
+ rb_define_singleton_method(cXMLNode, "new_pi", rxml_node_new_pi, -1);
1348
+ rb_define_singleton_method(cXMLNode, "new_text", rxml_node_new_text, 1);
1349
+
1350
+ /* Initialization */
1351
+ rb_define_alloc_func(cXMLNode, rxml_node_alloc);
1352
+ rb_define_method(cXMLNode, "initialize", rxml_node_initialize, -1);
1353
+
1354
+ /* Traversal */
1355
+ rb_include_module(cXMLNode, rb_mEnumerable);
1356
+ rb_define_method(cXMLNode, "[]", rxml_node_attribute_get, 1);
1357
+ rb_define_method(cXMLNode, "each", rxml_node_each, 0);
1358
+ rb_define_method(cXMLNode, "first", rxml_node_first_get, 0);
1359
+ rb_define_method(cXMLNode, "last", rxml_node_last_get, 0);
1360
+ rb_define_method(cXMLNode, "next", rxml_node_next_get, 0);
1361
+ rb_define_method(cXMLNode, "parent", rxml_node_parent_get, 0);
1362
+ rb_define_method(cXMLNode, "prev", rxml_node_prev_get, 0);
1363
+
1364
+ /* Modification */
1365
+ rb_define_method(cXMLNode, "[]=", rxml_node_property_set, 2);
1366
+ rb_define_method(cXMLNode, "<<", rxml_node_content_add, 1);
1367
+ rb_define_method(cXMLNode, "sibling=", rxml_node_sibling_set, 1);
1368
+ rb_define_method(cXMLNode, "next=", rxml_node_next_set, 1);
1369
+ rb_define_method(cXMLNode, "prev=", rxml_node_prev_set, 1);
1370
+
1371
+ /* Rest of the node api */
1372
+ rb_define_method(cXMLNode, "attributes", rxml_node_attributes_get, 0);
1373
+ rb_define_method(cXMLNode, "base_uri", rxml_node_base_uri_get, 0);
1374
+ rb_define_method(cXMLNode, "base_uri=", rxml_node_base_uri_set, 1);
1375
+ rb_define_method(cXMLNode, "blank?", rxml_node_empty_q, 0);
1376
+ rb_define_method(cXMLNode, "copy", rxml_node_copy, 1);
1377
+ rb_define_method(cXMLNode, "content", rxml_node_content_get, 0);
1378
+ rb_define_method(cXMLNode, "content=", rxml_node_content_set, 1);
1379
+ rb_define_method(cXMLNode, "debug", rxml_node_debug, 0);
1380
+ rb_define_method(cXMLNode, "doc", rxml_node_doc, 0);
1381
+ rb_define_method(cXMLNode, "empty?", rxml_node_empty_q, 0);
1382
+ rb_define_method(cXMLNode, "eql?", rxml_node_eql_q, 1);
1383
+ rb_define_method(cXMLNode, "lang", rxml_node_lang_get, 0);
1384
+ rb_define_method(cXMLNode, "lang=", rxml_node_lang_set, 1);
1385
+ rb_define_method(cXMLNode, "line_num", rxml_node_line_num, 0);
1386
+ rb_define_method(cXMLNode, "name", rxml_node_name_get, 0);
1387
+ rb_define_method(cXMLNode, "name=", rxml_node_name_set, 1);
1388
+ rb_define_method(cXMLNode, "node_type", rxml_node_type, 0);
1389
+ rb_define_method(cXMLNode, "output_escaping?", rxml_node_output_escaping_q, 0);
1390
+ rb_define_method(cXMLNode, "output_escaping=", rxml_node_output_escaping_set, 1);
1391
+ rb_define_method(cXMLNode, "path", rxml_node_path, 0);
1392
+ rb_define_method(cXMLNode, "pointer", rxml_node_pointer, 1);
1393
+ rb_define_method(cXMLNode, "remove!", rxml_node_remove_ex, 0);
1394
+ rb_define_method(cXMLNode, "space_preserve", rxml_node_space_preserve_get, 0);
1395
+ rb_define_method(cXMLNode, "space_preserve=", rxml_node_space_preserve_set, 1);
1396
+ rb_define_method(cXMLNode, "to_s", rxml_node_to_s, -1);
1397
+ rb_define_method(cXMLNode, "xlink?", rxml_node_xlink_q, 0);
1398
+ rb_define_method(cXMLNode, "xlink_type", rxml_node_xlink_type, 0);
1399
+ rb_define_method(cXMLNode, "xlink_type_name", rxml_node_xlink_type_name, 0);
1400
+
1401
+ rb_define_alias(cXMLNode, "==", "eql?");
1402
+ }