Class: Moxml::Adapter::Ox
- Inherits:
-
Base
- Object
- Base
- Moxml::Adapter::Ox
show all
- Defined in:
- lib/moxml/adapter/ox.rb
Class Method Summary
collapse
-
.add_child(element, child) ⇒ Object
-
.add_next_sibling(node, sibling) ⇒ Object
-
.add_previous_sibling(node, sibling) ⇒ Object
-
.ancestors(node) ⇒ Object
-
.at_xpath(node, expression, namespaces = {}) ⇒ Object
-
.attribute_element(attribute) ⇒ Object
-
.attributes(element) ⇒ Object
-
.cdata_content(node) ⇒ Object
-
.children(node) ⇒ Object
-
.comment_content(node) ⇒ Object
-
.create_document(native_doc = nil) ⇒ Object
-
.create_native_cdata(content) ⇒ Object
-
.create_native_comment(content) ⇒ Object
-
.create_native_declaration(version, encoding, standalone) ⇒ Object
-
.create_native_doctype(name, external_id, system_id) ⇒ Object
-
.create_native_element(name) ⇒ Object
-
.create_native_namespace(element, prefix, uri) ⇒ Object
-
.create_native_processing_instruction(target, content) ⇒ Object
-
.create_native_text(content) ⇒ Object
-
.declaration_attribute(declaration, attr_name) ⇒ Object
-
.doctype_external_id(native) ⇒ Object
-
.doctype_name(native) ⇒ Object
Doctype accessor methods Ox stores DOCTYPE as a string, so we parse it.
-
.doctype_system_id(native) ⇒ Object
-
.document(node) ⇒ Object
-
.duplicate_node(node) ⇒ Object
-
.get_attribute(element, name) ⇒ Object
-
.get_attribute_value(element, name) ⇒ Object
-
.inner_text(node) ⇒ Object
-
.namespace(element) ⇒ Object
-
.namespace_definitions(node) ⇒ Object
-
.namespace_prefix(namespace) ⇒ Object
-
.namespace_uri(namespace) ⇒ Object
-
.next_sibling(node) ⇒ Object
-
.node_name(node) ⇒ Object
-
.node_type(node) ⇒ Object
-
.parent(node) ⇒ Object
-
.parse(xml, _options = {}, _context = nil) ⇒ Object
-
.patch_node(node, parent = nil) ⇒ Object
-
.previous_sibling(node) ⇒ Object
-
.processing_instruction_content(node) ⇒ Object
-
.processing_instruction_target(node) ⇒ Object
-
.remove(node) ⇒ Object
-
.remove_attribute(element, name) ⇒ Object
-
.replace(node, new_node) ⇒ Object
-
.replace_children(node, new_children) ⇒ Object
-
.root(document) ⇒ Object
-
.sax_parse(xml, handler) ⇒ void
SAX parsing implementation for Ox.
-
.serialize(node, options = {}) ⇒ Object
-
.set_attribute(element, name, value) ⇒ Object
-
.set_attribute_name(attribute, name) ⇒ Object
-
.set_attribute_value(attribute, new_value) ⇒ Object
-
.set_cdata_content(node, content) ⇒ Object
-
.set_comment_content(node, content) ⇒ Object
-
.set_declaration_attribute(declaration, attr_name, value) ⇒ Object
-
.set_namespace(element, ns) ⇒ Object
-
.set_node_name(node, name) ⇒ Object
-
.set_processing_instruction_content(node, content) ⇒ Object
-
.set_root(doc, element) ⇒ Object
-
.set_text_content(node, content) ⇒ Object
-
.text_content(node) ⇒ Object
-
.unpatch_node(node) ⇒ Object
-
.xpath(node, expression, namespaces = {}) ⇒ Object
Methods inherited from Base
create_cdata, create_comment, create_declaration, create_doctype, create_element, create_entity_reference, create_namespace, create_processing_instruction, create_text, entity_reference_name, prepare_for_new_document, sax_supported?
Methods included from XmlUtils
#encode_entities, #normalize_xml_value, #validate_comment_content, #validate_declaration_encoding, #validate_declaration_standalone, #validate_declaration_version, #validate_element_name, #validate_entity_reference_name, #validate_pi_target, #validate_prefix, #validate_uri
Class Method Details
.add_child(element, child) ⇒ Object
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
|
# File 'lib/moxml/adapter/ox.rb', line 351
def add_child(element, child)
if element.is_a?(::Ox::Document) && child.is_a?(::Ox::Instruct) && child.target == "xml"
element.attributes ||= {}
if child.attributes["version"]
element.attributes[:version] =
child.attributes["version"]
end
if child.attributes["encoding"]
element.attributes[:encoding] =
child.attributes["encoding"]
end
if child.attributes["standalone"]
element.attributes[:standalone] =
child.attributes["standalone"]
end
end
child.parent = element if child.respond_to?(:parent)
element.nodes ||= []
element.nodes << child
end
|
.add_next_sibling(node, sibling) ⇒ Object
386
387
388
389
390
391
392
393
394
395
|
# File 'lib/moxml/adapter/ox.rb', line 386
def add_next_sibling(node, sibling)
return unless (parent = parent(node))
if sibling.respond_to?(:parent)
sibling.parent&.nodes&.delete(sibling)
sibling.parent = parent
end
idx = parent.nodes.index(node)
parent.nodes.insert(idx + 1, sibling) if idx
end
|
.add_previous_sibling(node, sibling) ⇒ Object
375
376
377
378
379
380
381
382
383
384
|
# File 'lib/moxml/adapter/ox.rb', line 375
def add_previous_sibling(node, sibling)
return unless (parent = parent(node))
if sibling.respond_to?(:parent)
sibling.parent&.nodes&.delete(sibling)
sibling.parent = parent
end
idx = parent.nodes.index(node)
parent.nodes.insert(idx, sibling) if idx
end
|
.ancestors(node) ⇒ Object
160
161
162
163
164
|
# File 'lib/moxml/adapter/ox.rb', line 160
def ancestors(node)
return [] unless (parent = parent(node))
[parent] + ancestors(parent)
end
|
.at_xpath(node, expression, namespaces = {}) ⇒ Object
573
574
575
|
# File 'lib/moxml/adapter/ox.rb', line 573
def at_xpath(node, expression, namespaces = {})
xpath(node, expression, namespaces)&.first
end
|
.attribute_element(attribute) ⇒ Object
289
290
291
|
# File 'lib/moxml/adapter/ox.rb', line 289
def attribute_element(attribute)
attribute.parent
end
|
.attributes(element) ⇒ Object
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
# File 'lib/moxml/adapter/ox.rb', line 274
def attributes(element)
unless element.respond_to?(:attributes) && element.attributes
return []
end
element.attributes.filter_map do |name, value|
next if name.to_s.start_with?("xmlns")
::Moxml::Adapter::CustomizedOx::Attribute.new(
name.to_s, value, element
)
end
end
|
.cdata_content(node) ⇒ Object
468
469
470
|
# File 'lib/moxml/adapter/ox.rb', line 468
def cdata_content(node)
node.value.to_s
end
|
.children(node) ⇒ Object
238
239
240
241
242
|
# File 'lib/moxml/adapter/ox.rb', line 238
def children(node)
return [] unless node.respond_to?(:nodes)
node.nodes || []
end
|
476
477
478
|
# File 'lib/moxml/adapter/ox.rb', line 476
def (node)
node.value.to_s
end
|
.create_document(native_doc = nil) ⇒ Object
65
66
67
68
|
# File 'lib/moxml/adapter/ox.rb', line 65
def create_document(native_doc = nil)
attrs = native_doc&.attributes || {}
::Ox::Document.new(**attrs)
end
|
.create_native_cdata(content) ⇒ Object
80
81
82
|
# File 'lib/moxml/adapter/ox.rb', line 80
def create_native_cdata(content)
::Ox::CData.new(content)
end
|
84
85
86
|
# File 'lib/moxml/adapter/ox.rb', line 84
def (content)
::Ox::Comment.new(content)
end
|
.create_native_declaration(version, encoding, standalone) ⇒ Object
100
101
102
103
104
105
106
|
# File 'lib/moxml/adapter/ox.rb', line 100
def create_native_declaration(version, encoding, standalone)
inst = ::Ox::Instruct.new("xml")
set_attribute(inst, "version", version)
set_attribute(inst, "encoding", encoding)
set_attribute(inst, "standalone", standalone)
inst
end
|
.create_native_doctype(name, external_id, system_id) ⇒ Object
88
89
90
91
92
|
# File 'lib/moxml/adapter/ox.rb', line 88
def create_native_doctype(name, external_id, system_id)
::Ox::DocType.new(
"#{name} PUBLIC \"#{external_id}\" \"#{system_id}\"",
)
end
|
.create_native_element(name) ⇒ Object
70
71
72
73
74
|
# File 'lib/moxml/adapter/ox.rb', line 70
def create_native_element(name)
element = ::Ox::Element.new(name)
element.instance_variable_set(:@attributes, {})
element
end
|
.create_native_namespace(element, prefix, uri) ⇒ Object
116
117
118
119
120
121
|
# File 'lib/moxml/adapter/ox.rb', line 116
def create_native_namespace(element, prefix, uri)
ns = ::Moxml::Adapter::CustomizedOx::Namespace.new(prefix, uri,
element)
set_attribute(element, ns.expanded_prefix, uri)
ns
end
|
.create_native_processing_instruction(target, content) ⇒ Object
94
95
96
97
98
|
# File 'lib/moxml/adapter/ox.rb', line 94
def create_native_processing_instruction(target, content)
inst = ::Ox::Instruct.new(target)
set_processing_instruction_content(inst, content)
inst
end
|
.create_native_text(content) ⇒ Object
76
77
78
|
# File 'lib/moxml/adapter/ox.rb', line 76
def create_native_text(content)
content
end
|
.declaration_attribute(declaration, attr_name) ⇒ Object
108
109
110
|
# File 'lib/moxml/adapter/ox.rb', line 108
def declaration_attribute(declaration, attr_name)
get_attribute_value(declaration, attr_name)
end
|
.doctype_external_id(native) ⇒ Object
523
524
525
526
527
528
|
# File 'lib/moxml/adapter/ox.rb', line 523
def doctype_external_id(native)
value = native.value.to_s
match = value.match(/PUBLIC\s+"([^"]*)"/)
match ? match[1] : nil
end
|
.doctype_name(native) ⇒ Object
Doctype accessor methods Ox stores DOCTYPE as a string, so we parse it
516
517
518
519
520
521
|
# File 'lib/moxml/adapter/ox.rb', line 516
def doctype_name(native)
value = native.value.to_s.strip
value.split(/\s+/).first
end
|
.doctype_system_id(native) ⇒ Object
530
531
532
533
534
535
536
537
|
# File 'lib/moxml/adapter/ox.rb', line 530
def doctype_system_id(native)
value = native.value.to_s
matches = value.scan(/"([^"]*)"/)
matches.last&.first
end
|
.document(node) ⇒ Object
264
265
266
267
268
|
# File 'lib/moxml/adapter/ox.rb', line 264
def document(node)
current = node
current = parent(current) while parent(current)
current
end
|
.duplicate_node(node) ⇒ Object
204
205
206
|
# File 'lib/moxml/adapter/ox.rb', line 204
def duplicate_node(node)
Marshal.load(Marshal.dump(node))
end
|
.get_attribute(element, name) ⇒ Object
326
327
328
329
330
331
332
333
334
335
336
337
338
|
# File 'lib/moxml/adapter/ox.rb', line 326
def get_attribute(element, name)
return unless element.respond_to?(:attributes) && element.attributes
unless element.attributes.key?(name.to_s) || element.attributes.key?(name.to_s.to_sym)
return
end
value = element.attributes[name.to_s] || element.attributes[name.to_s.to_sym]
::Moxml::Adapter::CustomizedOx::Attribute.new(
name.to_s, value, element
)
end
|
.get_attribute_value(element, name) ⇒ Object
340
341
342
|
# File 'lib/moxml/adapter/ox.rb', line 340
def get_attribute_value(element, name)
element[name]
end
|
.inner_text(node) ⇒ Object
453
454
455
456
457
|
# File 'lib/moxml/adapter/ox.rb', line 453
def inner_text(node)
return "" unless node.respond_to?(:nodes)
node.nodes.grep(String).join
end
|
.namespace(element) ⇒ Object
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
# File 'lib/moxml/adapter/ox.rb', line 137
def namespace(element)
prefix =
if element.respond_to?(:prefix)
element.prefix
elsif element.name.include?(":")
element.name.split(":").first
end
attr_name = ["xmlns", prefix].compact.join(":")
([element] + ancestors(element)).each do |node|
next unless node.respond_to?(:attributes) && node.attributes
if node[attr_name]
return ::Moxml::Adapter::CustomizedOx::Namespace.new(
prefix, node[attr_name], element
)
end
end
nil
end
|
.namespace_definitions(node) ⇒ Object
500
501
502
503
504
505
506
507
508
509
510
511
512
|
# File 'lib/moxml/adapter/ox.rb', line 500
def namespace_definitions(node)
([node] + ancestors(node)).reverse.each_with_object({}) do |n, namespaces|
next unless n.respond_to?(:attributes) && n.attributes
n.attributes.each do |name, value|
next unless name.to_s.start_with?("xmlns")
namespaces[name] = ::Moxml::Adapter::CustomizedOx::Namespace.new(
name, value, n
)
end
end.values
end
|
.namespace_prefix(namespace) ⇒ Object
492
493
494
|
# File 'lib/moxml/adapter/ox.rb', line 492
def namespace_prefix(namespace)
namespace.prefix
end
|
.namespace_uri(namespace) ⇒ Object
496
497
498
|
# File 'lib/moxml/adapter/ox.rb', line 496
def namespace_uri(namespace)
namespace.uri
end
|
.next_sibling(node) ⇒ Object
248
249
250
251
252
253
254
|
# File 'lib/moxml/adapter/ox.rb', line 248
def next_sibling(node)
return unless (parent = node.parent)
siblings = parent.nodes
idx = siblings.index(unpatch_node(node))
idx ? patch_node(siblings[idx + 1], parent) : nil
end
|
.node_name(node) ⇒ Object
185
186
187
188
189
190
191
192
193
194
|
# File 'lib/moxml/adapter/ox.rb', line 185
def node_name(node)
name = begin
node.value
rescue StandardError
node.name
end
name.to_s.split(":", 2).last
end
|
.node_type(node) ⇒ Object
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
# File 'lib/moxml/adapter/ox.rb', line 170
def node_type(node)
case node
when ::Ox::Document then :document
when ::Moxml::Adapter::CustomizedOx::Text, String then :text
when ::Ox::CData then :cdata
when ::Ox::Comment then :comment
when ::Ox::Instruct then :processing_instruction
when ::Ox::Element then :element
when ::Ox::DocType then :doctype
when ::Moxml::Adapter::CustomizedOx::Namespace then :banespace
when ::Moxml::Adapter::CustomizedOx::Attribute then :attribute
else :unknown
end
end
|
.parent(node) ⇒ Object
244
245
246
|
# File 'lib/moxml/adapter/ox.rb', line 244
def parent(node)
node.parent if node.respond_to?(:parent)
end
|
.parse(xml, _options = {}, _context = nil) ⇒ Object
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# File 'lib/moxml/adapter/ox.rb', line 20
def parse(xml, _options = {}, _context = nil)
native_doc = begin
result = ::Ox.parse(xml)
if result.is_a?(::Ox::Document)
result
else
doc = ::Ox::Document.new
doc << result
doc
end
rescue ::Ox::ParseError => e
raise Moxml::ParseError.new(
e.message,
source: xml.is_a?(String) ? xml[0..100] : nil,
)
end
ctx = _context || Context.new(:ox)
DocumentBuilder.new(ctx).build(native_doc)
end
|
.patch_node(node, parent = nil) ⇒ Object
.previous_sibling(node) ⇒ Object
256
257
258
259
260
261
262
|
# File 'lib/moxml/adapter/ox.rb', line 256
def previous_sibling(node)
return unless (parent = parent(node))
siblings = parent.nodes
idx = siblings.index(unpatch_node(node))
idx&.positive? ? patch_node(siblings[idx - 1], parent) : nil
end
|
.processing_instruction_content(node) ⇒ Object
484
485
486
|
# File 'lib/moxml/adapter/ox.rb', line 484
def processing_instruction_content(node)
node.content.to_s
end
|
.processing_instruction_target(node) ⇒ Object
166
167
168
|
# File 'lib/moxml/adapter/ox.rb', line 166
def processing_instruction_target(node)
node.target
end
|
.remove(node) ⇒ Object
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
# File 'lib/moxml/adapter/ox.rb', line 397
def remove(node)
return node.clear if node.is_a?(String)
return unless parent(node)
if parent(node).is_a?(::Ox::Document) && node.is_a?(::Ox::Instruct) && node.target == "xml"
doc = parent(node)
doc.attributes&.delete(:version)
doc.attributes&.delete(:encoding)
doc.attributes&.delete(:standalone)
end
parent(node).nodes.delete(unpatch_node(node))
end
|
.remove_attribute(element, name) ⇒ Object
344
345
346
347
348
349
|
# File 'lib/moxml/adapter/ox.rb', line 344
def remove_attribute(element, name)
return unless element.respond_to?(:attributes) && element.attributes
element.attributes.delete(name.to_s)
element.attributes.delete(name.to_s.to_sym)
end
|
.replace(node, new_node) ⇒ Object
414
415
416
417
418
419
420
421
422
423
424
425
426
427
|
# File 'lib/moxml/adapter/ox.rb', line 414
def replace(node, new_node)
if node.is_a?(String) && new_node.is_a?(String)
return node.replace(new_node)
end
return unless (parent = parent(node))
new_node.parent = parent if new_node.respond_to?(:parent)
idx = parent.nodes.index(node)
parent.nodes[idx] = new_node if idx
end
|
.replace_children(node, new_children) ⇒ Object
429
430
431
432
433
434
435
436
|
# File 'lib/moxml/adapter/ox.rb', line 429
def replace_children(node, new_children)
node.remove_children_by_path("*")
new_children.each do |child|
child.parent = node if child.respond_to?(:parent)
node << child
end
node
end
|
.root(document) ⇒ Object
270
271
272
|
# File 'lib/moxml/adapter/ox.rb', line 270
def root(document)
document.nodes&.find { |node| node.is_a?(::Ox::Element) }
end
|
.sax_parse(xml, handler) ⇒ void
This method returns an undefined value.
SAX parsing implementation for Ox
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# File 'lib/moxml/adapter/ox.rb', line 48
def sax_parse(xml, handler)
bridge = OxSAXBridge.new(handler)
xml_string = xml.respond_to?(:read) ? xml.read : xml.to_s
begin
::Ox.sax_parse(bridge, StringIO.new(xml_string))
bridge.end_document
rescue ::Ox::ParseError => e
error = Moxml::ParseError.new(e.message)
handler.on_error(error)
end
end
|
.serialize(node, options = {}) ⇒ Object
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
|
# File 'lib/moxml/adapter/ox.rb', line 577
def serialize(node, options = {})
output = ""
if node.is_a?(::Ox::Document)
should_include_decl = if options.key?(:no_declaration)
!options[:no_declaration]
else
node[:version] || node[:encoding] || node[:standalone]
end
if should_include_decl
version = node[:version] || "1.0"
encoding = options[:encoding] || node[:encoding]
standalone = node[:standalone]
decl = create_native_declaration(version, encoding, standalone)
output = ::Ox.dump(::Ox::Document.new << decl).strip
end
end
ox_options = {
indent: -1, with_instructions: true,
encoding: options[:encoding],
no_empty: options[:expand_empty],
}
output + ::Ox.dump(node, ox_options)
end
|
.set_attribute(element, name, value) ⇒ Object
293
294
295
296
297
298
299
300
301
302
303
304
305
|
# File 'lib/moxml/adapter/ox.rb', line 293
def set_attribute(element, name, value)
element.attributes ||= {}
if value.nil?
remove_attribute(element, name)
else
element.attributes[name.to_s] = value
end
::Moxml::Adapter::CustomizedOx::Attribute.new(
name.to_s, value&.to_s, element
)
end
|
.set_attribute_name(attribute, name) ⇒ Object
307
308
309
310
311
312
313
314
|
# File 'lib/moxml/adapter/ox.rb', line 307
def set_attribute_name(attribute, name)
old_name = attribute.name
attribute.name = name.to_s
element = attribute.parent
element.attributes.delete(old_name)
element.attributes[name] = attribute.value
end
|
.set_attribute_value(attribute, new_value) ⇒ Object
316
317
318
319
320
321
322
323
324
|
# File 'lib/moxml/adapter/ox.rb', line 316
def set_attribute_value(attribute, new_value)
if new_value.nil?
remove_attribute(attribute.parent, attribute.name)
else
attribute.value = new_value
attribute.parent.attributes[attribute.name] = new_value
end
end
|
.set_cdata_content(node, content) ⇒ Object
472
473
474
|
# File 'lib/moxml/adapter/ox.rb', line 472
def set_cdata_content(node, content)
node.value = content.to_s
end
|
480
481
482
|
# File 'lib/moxml/adapter/ox.rb', line 480
def (node, content)
node.value = content.to_s
end
|
.set_declaration_attribute(declaration, attr_name, value) ⇒ Object
112
113
114
|
# File 'lib/moxml/adapter/ox.rb', line 112
def set_declaration_attribute(declaration, attr_name, value)
set_attribute(declaration, attr_name, value)
end
|
.set_namespace(element, ns) ⇒ Object
123
124
125
126
127
128
129
130
131
132
133
134
135
|
# File 'lib/moxml/adapter/ox.rb', line 123
def set_namespace(element, ns)
return unless element.respond_to?(:name)
prefix = ns.prefix
if element.respond_to?(:attributes)
set_attribute(element, ns.expanded_prefix,
ns.uri)
end
element.name = [prefix,
element.name.delete_prefix("xmlns:")].compact.join(":")
namespace(element)
end
|
.set_node_name(node, name) ⇒ Object
196
197
198
199
200
201
202
|
# File 'lib/moxml/adapter/ox.rb', line 196
def set_node_name(node, name)
if node.respond_to?(:name=)
node.name = name
elsif node.respond_to?(:value=)
node.value = name
end
end
|
.set_processing_instruction_content(node, content) ⇒ Object
488
489
490
|
# File 'lib/moxml/adapter/ox.rb', line 488
def set_processing_instruction_content(node, content)
node.content = content.to_s
end
|
.set_root(doc, element) ⇒ Object
16
17
18
|
# File 'lib/moxml/adapter/ox.rb', line 16
def set_root(doc, element)
replace_children(doc, [element])
end
|
.set_text_content(node, content) ⇒ Object
459
460
461
462
463
464
465
466
|
# File 'lib/moxml/adapter/ox.rb', line 459
def set_text_content(node, content)
case node
when String then node.replace(content.to_s)
when ::Ox::Element then node.replace_text(content.to_s)
else
node.value = content.to_s
end
end
|
.text_content(node) ⇒ Object
438
439
440
441
442
443
444
445
446
447
448
449
450
451
|
# File 'lib/moxml/adapter/ox.rb', line 438
def text_content(node)
return "" if node.nil?
case node
when String then node.to_s
when ::Moxml::Adapter::CustomizedOx::Text then node.value
else
return "" unless node.respond_to?(:nodes)
node.nodes.map do |n|
text_content(n)
end.join
end
end
|
.unpatch_node(node) ⇒ Object
.xpath(node, expression, namespaces = {}) ⇒ Object
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
|
# File 'lib/moxml/adapter/ox.rb', line 539
def xpath(node, expression, namespaces = {})
locate_expr = translate_xpath_to_locate(expression, namespaces)
if expression.start_with?(".//") && node.is_a?(::Ox::Element)
element_name = locate_expr.sub("?/", "")
results = []
traverse(node) do |n|
next unless n.is_a?(::Ox::Element)
results << n if n.name == element_name || element_name.empty?
end
return results.map do |n|
patch_node(n, find_parent_in_tree(n, node))
end
end
results = node.locate(locate_expr)
results.map { |n| patch_node(n, find_parent_in_tree(n, node)) }
rescue StandardError => e
raise Moxml::XPathError.new(
"XPath translation failed: #{e.message}",
expression: expression,
adapter: "Ox",
node: node,
)
end
|