Class: Leptris::XML::Element
- Inherits:
-
Node
- Object
- Node
- Leptris::XML::Element
show all
- Defined in:
- lib/leptris/xml/element.rb
Instance Attribute Summary
Attributes inherited from Node
#c_ptr, #document
Instance Method Summary
collapse
-
#[](key) ⇒ Object
(also: #attr, #get_attribute)
-
#[]=(key, value) ⇒ Object
(also: #set_attribute)
-
#add_child(node_or_markup) ⇒ Object
(also: #<<)
-
#add_namespace_definition(prefix, href) ⇒ Object
(also: #add_namespace)
-
#add_next_sibling(node) ⇒ Object
-
#add_previous_sibling(node) ⇒ Object
-
#attribute_nodes ⇒ Object
-
#attributes ⇒ Object
-
#canonicalize(version = Leptris::XML::FFI::C14N_1_0, inclusive_namespaces = nil, with_comments: false, exclusive: false, mode: nil) ⇒ Object
(also: #c14n)
-
#children=(node_or_nodes) ⇒ Object
-
#content ⇒ Object
-
#content=(new_content) ⇒ Object
-
#default_namespace=(href) ⇒ Object
-
#dup ⇒ Object
(also: #clone)
-
#each_attribute ⇒ Object
Iterates the element's attributes via the v1.1.0 linked-list face (one FFI call per attribute; the name_at/value_at indexing API re-walks the list per index, making it O(n^2) per element).
-
#key?(name) ⇒ Boolean
(also: #has_attribute?)
-
#keys ⇒ Object
-
#name ⇒ Object
(also: #node_name)
-
#name=(new_name) ⇒ Object
(also: #node_name=)
-
#namespace ⇒ Object
-
#namespace_definitions ⇒ Object
-
#namespaces ⇒ Object
-
#prefix ⇒ Object
The element's own namespace prefix (e.g. "foo" for foo:child/), or nil when the element has none.
-
#prepend_child(node) ⇒ Object
-
#remove_attribute(name) ⇒ Object
(also: #delete)
-
#remove_child(node) ⇒ Object
-
#remove_namespace_definition(prefix) ⇒ Object
-
#replace(new_node) ⇒ Object
Replace this element with new_node in the parent's child list.
-
#swap(new_node) ⇒ Object
Like #replace but returns self for chaining.
-
#to_xml(indent: 0, no_decl: false, encoding: nil) ⇒ Object
-
#values ⇒ Object
-
#wrap(node_or_markup) ⇒ Object
Wrap this element in a new element parsed from markup or a dup of node.
Methods inherited from Node
#<=>, #==, #cdata?, #child, #children, #comment?, #css_path, #element?, #element_children, #first_element_child, #initialize, #inner_text, #inspect, #last_element_child, #line, #next_element, #next_sibling, #parent, #path, #previous_element, #previous_sibling, #processing_instruction?, #text, #text?, #traverse, #type, #unlink, wrap
Methods included from Searchable
#at, #at_css, #at_xpath, #css, #search, wrap_xpath_result, #xpath
Instance Method Details
#[](key) ⇒ Object
Also known as:
attr, get_attribute
26
27
28
|
# File 'lib/leptris/xml/element.rb', line 26
def [](key)
Leptris::XML::FFI.leptris_element_attribute(@c_ptr, key.to_s)
end
|
#[]=(key, value) ⇒ Object
Also known as:
set_attribute
32
33
34
35
36
|
# File 'lib/leptris/xml/element.rb', line 32
def []=(key, value)
Leptris::XML::FFI.check_status(
Leptris::XML::FFI.leptris_element_set_attribute(@c_ptr, key.to_s, value.to_s))
value
end
|
#add_child(node_or_markup) ⇒ Object
Also known as:
<<
#add_namespace_definition(prefix, href) ⇒ Object
Also known as:
add_namespace
245
246
247
248
249
250
|
# File 'lib/leptris/xml/element.rb', line 245
def add_namespace_definition(prefix, href)
Leptris::XML::FFI.check_status(
Leptris::XML::FFI.leptris_element_add_namespace_definition(
@c_ptr, prefix.to_s, href.to_s))
Leptris::XML::Namespace.new(self, href.to_s, prefix: prefix.nil? ? nil : prefix.to_s)
end
|
#add_next_sibling(node) ⇒ Object
96
97
98
99
100
|
# File 'lib/leptris/xml/element.rb', line 96
def add_next_sibling(node)
Leptris::XML::FFI.check_status(
Leptris::XML::FFI.leptris_element_insert_after(@c_ptr, node.c_ptr))
node
end
|
#add_previous_sibling(node) ⇒ Object
102
103
104
105
106
|
# File 'lib/leptris/xml/element.rb', line 102
def add_previous_sibling(node)
Leptris::XML::FFI.check_status(
Leptris::XML::FFI.leptris_element_insert_before(@c_ptr, node.c_ptr))
node
end
|
#attribute_nodes ⇒ Object
80
81
82
|
# File 'lib/leptris/xml/element.rb', line 80
def attribute_nodes
each_attribute.to_a
end
|
#attributes ⇒ Object
74
75
76
77
78
|
# File 'lib/leptris/xml/element.rb', line 74
def attributes
result = {}
each_attribute { |attr| result[attr.name] = attr }
result
end
|
#canonicalize(version = Leptris::XML::FFI::C14N_1_0, inclusive_namespaces = nil, with_comments: false, exclusive: false, mode: nil) ⇒ Object
Also known as:
c14n
230
231
232
233
234
235
236
237
238
239
240
241
242
|
# File 'lib/leptris/xml/element.rb', line 230
def canonicalize(version = Leptris::XML::FFI::C14N_1_0,
inclusive_namespaces = nil,
with_comments: false,
exclusive: false,
mode: nil)
resolved_mode = mode || (exclusive ? Leptris::XML::FFI::C14N_MODE_EXCLUSIVE
: Leptris::XML::FFI::C14N_MODE_CANONICAL)
Leptris::XML::Serialization.canonicalize(
Leptris::XML::FFI.method(:leptris_c14n_canonicalize_subtree_ex), @c_ptr,
version: version, mode: resolved_mode,
inclusive_namespaces: inclusive_namespaces,
with_comments: )
end
|
#children=(node_or_nodes) ⇒ Object
114
115
116
117
118
119
|
# File 'lib/leptris/xml/element.rb', line 114
def children=(node_or_nodes)
Leptris::XML::FFI.check_status(
Leptris::XML::FFI.leptris_element_remove_children(@c_ptr))
Array(node_or_nodes).each { |n| add_child(n) }
end
|
#content ⇒ Object
16
17
18
|
# File 'lib/leptris/xml/element.rb', line 16
def content
Leptris::XML::FFI.leptris_element_text(@c_ptr)
end
|
#content=(new_content) ⇒ Object
20
21
22
23
24
|
# File 'lib/leptris/xml/element.rb', line 20
def content=(new_content)
Leptris::XML::FFI.check_status(
Leptris::XML::FFI.leptris_element_set_text(@c_ptr, new_content.to_s))
new_content
end
|
#default_namespace=(href) ⇒ Object
253
254
255
256
257
|
# File 'lib/leptris/xml/element.rb', line 253
def default_namespace=(href)
Leptris::XML::FFI.check_status(
Leptris::XML::FFI.leptris_element_set_default_namespace(@c_ptr, href.to_s))
href
end
|
#dup ⇒ Object
Also known as:
clone
163
164
165
166
167
|
# File 'lib/leptris/xml/element.rb', line 163
def dup
copy_ptr = Leptris::XML::FFI.leptris_element_copy(@c_ptr, @document.c_ptr)
raise Leptris::XML::Error, "leptris_element_copy failed" if copy_ptr.null?
Leptris::XML::Node.wrap(copy_ptr, @document)
end
|
#each_attribute ⇒ Object
Iterates the element's attributes via the v1.1.0 linked-list face
(one FFI call per attribute; the name_at/value_at indexing API
re-walks the list per index, making it O(n^2) per element).
54
55
56
57
58
59
60
61
62
63
64
|
# File 'lib/leptris/xml/element.rb', line 54
def each_attribute
return enum_for(:each_attribute) unless block_given?
attr = Leptris::XML::FFI.leptris_element_first_attribute(@c_ptr)
until attr.nil? || attr.null?
name = Leptris::XML::FFI.leptris_attribute_get_name(attr)
value = Leptris::XML::FFI.leptris_attribute_get_value(@c_ptr, attr)
yield Leptris::XML::Attr.new(name, value, self)
attr = Leptris::XML::FFI.leptris_attribute_next(attr)
end
self
end
|
#key?(name) ⇒ Boolean
Also known as:
has_attribute?
39
40
41
|
# File 'lib/leptris/xml/element.rb', line 39
def key?(name)
Leptris::XML::FFI.leptris_element_has_attribute(@c_ptr, name.to_s) != 0
end
|
#keys ⇒ Object
66
67
68
|
# File 'lib/leptris/xml/element.rb', line 66
def keys
each_attribute.to_a.map(&:name)
end
|
#name ⇒ Object
Also known as:
node_name
4
5
6
|
# File 'lib/leptris/xml/element.rb', line 4
def name
Leptris::XML::FFI.leptris_element_name(@c_ptr)
end
|
#name=(new_name) ⇒ Object
Also known as:
node_name=
#namespace ⇒ Object
191
192
193
194
195
196
197
198
199
200
|
# File 'lib/leptris/xml/element.rb', line 191
def namespace
uri = Leptris::XML::FFI.leptris_element_namespace(@c_ptr)
return nil if uri.nil? || uri.empty?
prefix = Leptris::XML::FFI.leptris_element_prefix(@c_ptr)
prefix = nil if prefix.nil? || prefix.empty?
Leptris::XML::Namespace.new(self, uri, prefix: prefix)
end
|
#namespace_definitions ⇒ Object
202
203
204
205
206
207
208
209
|
# File 'lib/leptris/xml/element.rb', line 202
def namespace_definitions
count = Leptris::XML::FFI.leptris_element_namespace_count(@c_ptr)
count.times.map do |i|
prefix = Leptris::XML::FFI.leptris_element_namespace_decl_prefix(@c_ptr, i)
uri = Leptris::XML::FFI.leptris_element_namespace_decl_uri(@c_ptr, i)
Leptris::XML::Namespace.new(self, uri, prefix: prefix)
end
end
|
#namespaces ⇒ Object
211
212
213
214
215
216
217
218
219
220
221
222
|
# File 'lib/leptris/xml/element.rb', line 211
def namespaces
scopes = {}
node = self
while node.is_a?(Leptris::XML::Element)
node.namespace_definitions.each do |ns|
key = ns.prefix ? "xmlns:#{ns.prefix}" : "xmlns"
scopes[key] ||= ns.href
end
node = node.parent
end
scopes
end
|
#prefix ⇒ Object
The element's own namespace prefix (e.g. "foo" for foo:child/),
or nil when the element has none.
86
87
88
|
# File 'lib/leptris/xml/element.rb', line 86
def prefix
Leptris::XML::FFI.leptris_element_prefix(@c_ptr)
end
|
#prepend_child(node) ⇒ Object
90
91
92
93
94
|
# File 'lib/leptris/xml/element.rb', line 90
def prepend_child(node)
Leptris::XML::FFI.check_status(
Leptris::XML::FFI.leptris_element_prepend_child(@c_ptr, node.c_ptr))
node
end
|
#remove_attribute(name) ⇒ Object
Also known as:
delete
44
45
46
47
48
|
# File 'lib/leptris/xml/element.rb', line 44
def remove_attribute(name)
Leptris::XML::FFI.check_status(
Leptris::XML::FFI.leptris_element_remove_attribute(@c_ptr, name.to_s))
self
end
|
#remove_child(node) ⇒ Object
108
109
110
111
112
|
# File 'lib/leptris/xml/element.rb', line 108
def remove_child(node)
Leptris::XML::FFI.check_status(
Leptris::XML::FFI.leptris_element_remove_child(@c_ptr, node.c_ptr))
node
end
|
#remove_namespace_definition(prefix) ⇒ Object
259
260
261
262
263
|
# File 'lib/leptris/xml/element.rb', line 259
def remove_namespace_definition(prefix)
Leptris::XML::FFI.check_status(
Leptris::XML::FFI.leptris_element_remove_namespace_definition(@c_ptr, prefix.to_s))
self
end
|
#replace(new_node) ⇒ Object
Replace this element with new_node in the parent's child list.
new_node must belong to the same document. Returns new_node.
123
124
125
126
127
128
129
|
# File 'lib/leptris/xml/element.rb', line 123
def replace(new_node)
parent = self.parent
raise Leptris::XML::Error, "cannot replace a node with no parent" unless parent
add_next_sibling(new_node)
parent.remove_child(self)
new_node
end
|
#swap(new_node) ⇒ Object
Like #replace but returns self for chaining.
132
133
134
135
|
# File 'lib/leptris/xml/element.rb', line 132
def swap(new_node)
replace(new_node)
self
end
|
#to_xml(indent: 0, no_decl: false, encoding: nil) ⇒ Object
224
225
226
227
228
|
# File 'lib/leptris/xml/element.rb', line 224
def to_xml(indent: 0, no_decl: false, encoding: nil)
Leptris::XML::Serialization.to_xml(
Leptris::XML::FFI.method(:leptris_element_serialize), @c_ptr,
indent: indent, no_decl: no_decl, encoding: encoding)
end
|
#values ⇒ Object
70
71
72
|
# File 'lib/leptris/xml/element.rb', line 70
def values
each_attribute.to_a.map(&:value)
end
|
#wrap(node_or_markup) ⇒ Object
Wrap this element in a new element parsed from markup or a dup of
node. The wrapper takes this element's place in the tree, and this
element becomes its only child. Returns self for chaining.
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
# File 'lib/leptris/xml/element.rb', line 140
def wrap(node_or_markup)
wrapper =
case node_or_markup
when Leptris::XML::Element then node_or_markup.dup
when String
frag_doc = Leptris::XML::Document.parse(node_or_markup)
frag_doc.root or raise Leptris::XML::Error, "wrap markup has no root element"
else
raise ArgumentError, "wrap expects a String or Element, got #{node_or_markup.class}"
end
parent = self.parent
raise Leptris::XML::Error, "cannot wrap a node with no parent" unless parent
add_next_sibling(wrapper)
wrapper.add_child(self)
self
end
|