Class: Leptris::XML::NodeSet
- Inherits:
-
Object
- Object
- Leptris::XML::NodeSet
show all
- Includes:
- Enumerable, Searchable
- Defined in:
- lib/leptris/xml/node_set.rb
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Methods included from Searchable
#at, #at_css, #at_xpath, #css, #search, wrap_xpath_result
Constructor Details
#initialize(document, source = nil) ⇒ NodeSet
Two construction modes:
- eager: pass an Array of Nodes (e.g. Element#children builds one)
- lazy: pass an FFI::Pointer to a LeptrisXPathResult that this NodeSet
will keep alive and free on GC. Each [i] / each call goes
through leptris_xpath_result_get instead of pre-materializing.
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# File 'lib/leptris/xml/node_set.rb', line 16
def initialize(document, source = nil)
@document = document
case source
when ::FFI::Pointer
if source.null?
@result_ptr = nil
@array = []
else
@result_ptr = ::FFI::AutoPointer.new(source, Leptris::XML::FFI.method(:leptris_xpath_result_free))
@array = nil
end
when nil
@result_ptr = nil
@array = []
else
@result_ptr = nil
@array = source.to_a
end
end
|
Instance Attribute Details
#document ⇒ Object
Returns the value of attribute document.
9
10
11
|
# File 'lib/leptris/xml/node_set.rb', line 9
def document
@document
end
|
Class Method Details
.from_result(document, result_ptr) ⇒ Object
39
40
41
|
# File 'lib/leptris/xml/node_set.rb', line 39
def self.from_result(document, result_ptr)
new(document, result_ptr)
end
|
Instance Method Details
#[](idx) ⇒ Object
The materialized array (after to_a) is authoritative: every
reader consults it first so a materialized set stops paying the
batch fetch on each iteration or index.
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# File 'lib/leptris/xml/node_set.rb', line 56
def [](idx)
return @array[idx] if @array
return to_a[idx] if idx.negative?
if @result_ptr
return nil if idx < 0 || idx >= length
ptr = Leptris::XML::FFI.leptris_xpath_result_get_node(@result_ptr, idx)
return nil if ptr.null?
Leptris::XML::Node.wrap(ptr, @document)
end
end
|
#each ⇒ Object
Iteration materializes: the first pass batch-fetches into @array
(yielding as it wraps), and every subsequent reader — each, [],
length — serves from the array. Repeated iteration without an
explicit to_a pays the batch exactly once.
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
# File 'lib/leptris/xml/node_set.rb', line 74
def each
return enum_for(:each) unless block_given?
unless @array
return self unless @result_ptr
n = length
if n > 0
pointers = Leptris::XML::FFI.fetch_result_nodes(@result_ptr, n)
nodes = []
pointers.each do |ptr|
next if ptr.null?
nodes << Leptris::XML::Node.wrap(ptr, @document)
end
(pointers.length...n).each do |i|
ptr = Leptris::XML::FFI.leptris_xpath_result_get_node(@result_ptr, i)
next if ptr.null?
nodes << Leptris::XML::Node.wrap(ptr, @document)
end
@array = nodes
else
@array = []
end
end
@array.each { |n| yield n }
self
end
|
#empty? ⇒ Boolean
49
50
51
|
# File 'lib/leptris/xml/node_set.rb', line 49
def empty?
length == 0
end
|
#first(n = nil) ⇒ Object
113
114
115
116
|
# File 'lib/leptris/xml/node_set.rb', line 113
def first(n = nil)
return self[0] if n.nil?
n.times.map { |i| self[i] }.take_while { |x| !x.nil? }
end
|
#inner_text ⇒ Object
Also known as:
text
126
127
128
|
# File 'lib/leptris/xml/node_set.rb', line 126
def inner_text
map(&:content).join
end
|
#inspect ⇒ Object
151
152
153
|
# File 'lib/leptris/xml/node_set.rb', line 151
def inspect
to_a.inspect
end
|
#last ⇒ Object
118
119
120
121
122
123
124
|
# File 'lib/leptris/xml/node_set.rb', line 118
def last
if @result_ptr
self[length - 1]
else
@array.last
end
end
|
#length ⇒ Object
Also known as:
size
43
44
45
46
|
# File 'lib/leptris/xml/node_set.rb', line 43
def length
return @array.length if @array
@result_ptr ? Leptris::XML::FFI.leptris_xpath_result_count(@result_ptr) : 0
end
|
#to_a ⇒ Object
Also known as:
to_ary
105
106
107
108
109
110
|
# File 'lib/leptris/xml/node_set.rb', line 105
def to_a
return @array if @array
return [] if @result_ptr.nil?
each { |n| } @array
end
|
#xpath(*paths) ⇒ Object
Union semantics: evaluate the expression against each element
member (one C eval per member — the engine has no multi-context
eval yet; leptris/leptris ask pending) and accumulate into ONE
NodeSet, instead of merging NodeSets per member.
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
# File 'lib/leptris/xml/node_set.rb', line 135
def xpath(*paths)
handler, _ns, _vars = parse_search_args(paths)
raise ArgumentError, "custom XPath handlers not supported" if handler
expr = paths.join(" | ")
accumulated = []
each do |node|
next unless node.is_a?(Leptris::XML::Element)
result_ptr = Leptris::XML::FFI.leptris_xpath_eval(
@document.c_ptr, node.c_ptr, expr)
next if result_ptr.null?
accumulated.concat(
Leptris::XML::NodeSet.from_result(@document, result_ptr).to_a)
end
Leptris::XML::NodeSet.new(@document, accumulated)
end
|