Class: Nokogiri::XML::NodeSet
- Inherits:
-
Object
- Object
- Nokogiri::XML::NodeSet
- Includes:
- Enumerable, Searchable
- Defined in:
- lib/nokogiri/xml/node_set.rb,
ext/nokogiri/xml_node_set.c
Overview
A NodeSet contains a list of Nokogiri::XML::Node objects. Typically a NodeSet is return as a result of searching a Document via Nokogiri::XML::Searchable#css or Nokogiri::XML::Searchable#xpath
Constant Summary collapse
- IMPLIED_XPATH_CONTEXTS =
:nodoc:
[".//", "self::"].freeze
Constants included from Searchable
Instance Attribute Summary collapse
-
#document ⇒ Object
The Document this NodeSet is associated with.
Instance Method Summary collapse
-
#&(node_set) ⇒ Object
Set Intersection — Returns a new NodeSet containing nodes common to the two NodeSets.
-
#-(node_set) ⇒ Object
Difference - returns a new NodeSet that is a copy of this NodeSet, removing each item that also appears in
node_set
. -
#==(other) ⇒ Object
Equality – Two NodeSets are equal if the contain the same number of elements and if each element is equal to the corresponding element in the other NodeSet.
-
#[](*args) ⇒ Object
- start, length
-
-> NodeSet or nil [range] -> NodeSet or nil slice(index) -> Node or nil slice(start, length) -> NodeSet or nil slice(range) -> NodeSet or nil.
-
#add_class(name) ⇒ Object
Add the class attribute
name
to all Node objects in the NodeSet. -
#after(datum) ⇒ Object
Insert
datum
after the last Node in this NodeSet. -
#append_class(name) ⇒ Object
Append the class attribute
name
to all Node objects in the NodeSet. -
#at(*args) ⇒ Object
(also: #%)
call-seq: search *paths, [namespace-bindings, xpath-variable-bindings, custom-handler-class].
-
#attr(key, value = nil, &block) ⇒ Object
(also: #set, #attribute)
Set attributes on each Node in the NodeSet, or get an attribute from the first Node in the NodeSet.
-
#before(datum) ⇒ Object
Insert
datum
before the first Node in this NodeSet. -
#children ⇒ Object
Returns a new NodeSet containing all the children of all the nodes in the NodeSet.
-
#css(*args) ⇒ Object
call-seq: css *rules, [namespace-bindings, custom-pseudo-class].
-
#deconstruct ⇒ Object
:call-seq: deconstruct() → Array.
-
#delete(node) ⇒ Object
Delete
node
from the Nodeset, if it is a member. -
#dup ⇒ Object
(also: #clone)
Duplicate this NodeSet.
-
#each ⇒ Object
Iterate over each node, yielding to
block
. -
#empty? ⇒ Boolean
Is this NodeSet empty?.
-
#filter(expr) ⇒ Object
Filter this list for nodes that match
expr
. -
#first(n = nil) ⇒ Object
Get the first element of the NodeSet.
-
#include?(node) ⇒ Boolean
Returns true if any member of node set equals
node
. -
#index(node = nil) ⇒ Object
Returns the index of the first node in self that is == to
node
or meets the given block. -
#initialize(document, list = []) {|_self| ... } ⇒ NodeSet
constructor
Create a NodeSet with
document
defaulting tolist
. -
#inner_html(*args) ⇒ Object
Get the inner html of all contained Node objects.
-
#inner_text ⇒ Object
(also: #text)
Get the inner text of all contained Node objects.
-
#inspect ⇒ Object
Return a nicely formated string representation.
-
#last ⇒ Object
Get the last element of the NodeSet.
-
#length ⇒ Object
(also: #size)
Get the length of the node set.
-
#pop ⇒ Object
Removes the last element from set and returns it, or
nil
if the set is empty. -
#push(node) ⇒ Object
(also: #<<)
Append
node
to the NodeSet. -
#remove_attr(name) ⇒ Object
(also: #remove_attribute)
Remove the attributed named
name
from all Node objects in the NodeSet. -
#remove_class(name = nil) ⇒ Object
Remove the class attribute
name
from all Node objects in the NodeSet. -
#reverse ⇒ Object
Returns a new NodeSet containing all the nodes in the NodeSet in reverse order.
-
#shift ⇒ Object
Returns the first element of the NodeSet and removes it.
-
#slice(*args) ⇒ Object
- start, length
-
-> NodeSet or nil [range] -> NodeSet or nil slice(index) -> Node or nil slice(start, length) -> NodeSet or nil slice(range) -> NodeSet or nil.
-
#to_a ⇒ Object
(also: #to_ary)
Return this list as an Array.
-
#to_html(*args) ⇒ Object
Convert this NodeSet to HTML.
-
#to_s ⇒ Object
Convert this NodeSet to a string.
-
#to_xhtml(*args) ⇒ Object
Convert this NodeSet to XHTML.
-
#to_xml(*args) ⇒ Object
Convert this NodeSet to XML.
-
#unlink ⇒ Object
(also: #remove)
Unlink this NodeSet and all Node objects it contains from their current context.
-
#wrap(node_or_tags) ⇒ Object
:call-seq: wrap(markup) -> self wrap(node) -> self.
-
#xpath(*args) ⇒ Object
call-seq: xpath *paths, [namespace-bindings, variable-bindings, custom-handler-class].
-
#|(node_set) ⇒ Object
(also: #+)
Returns a new set built by merging the set and the elements of the given set.
Methods included from Searchable
#>, #at_css, #at_xpath, #search
Constructor Details
#initialize(document, list = []) {|_self| ... } ⇒ NodeSet
Create a NodeSet with document
defaulting to list
20 21 22 23 24 25 |
# File 'lib/nokogiri/xml/node_set.rb', line 20 def initialize(document, list = []) @document = document document.decorate(self) list.each { |x| self << x } yield self if block_given? end |
Instance Attribute Details
#document ⇒ Object
The Document this NodeSet is associated with
15 16 17 |
# File 'lib/nokogiri/xml/node_set.rb', line 15 def document @document end |
Instance Method Details
#&(node_set) ⇒ Object
Set Intersection — Returns a new NodeSet containing nodes common to the two NodeSets.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
# File 'ext/nokogiri/xml_node_set.c', line 196
static VALUE
intersection(VALUE self, VALUE rb_other)
{
xmlNodeSetPtr node_set, other ;
xmlNodeSetPtr intersection;
if (!rb_obj_is_kind_of(rb_other, cNokogiriXmlNodeSet)) {
rb_raise(rb_eArgError, "node_set must be a Nokogiri::XML::NodeSet");
}
Data_Get_Struct(self, xmlNodeSet, node_set);
Data_Get_Struct(rb_other, xmlNodeSet, other);
intersection = xmlXPathIntersection(node_set, other);
return noko_xml_node_set_wrap(intersection, rb_iv_get(self, "@document"));
}
|
#-(node_set) ⇒ Object
Difference - returns a new NodeSet that is a copy of this NodeSet, removing
each item that also appears in +node_set+
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
# File 'ext/nokogiri/xml_node_set.c', line 268
static VALUE
minus(VALUE self, VALUE rb_other)
{
xmlNodeSetPtr node_set, other;
xmlNodeSetPtr new;
int j ;
if (!rb_obj_is_kind_of(rb_other, cNokogiriXmlNodeSet)) {
rb_raise(rb_eArgError, "node_set must be a Nokogiri::XML::NodeSet");
}
Data_Get_Struct(self, xmlNodeSet, node_set);
Data_Get_Struct(rb_other, xmlNodeSet, other);
new = xmlXPathNodeSetMerge(NULL, node_set);
for (j = 0 ; j < other->nodeNr ; ++j) {
xpath_node_set_del(new, other->nodeTab[j]);
}
return noko_xml_node_set_wrap(new, rb_iv_get(self, "@document"));
}
|
#==(other) ⇒ Object
Equality – Two NodeSets are equal if the contain the same number of elements and if each element is equal to the corresponding element in the other NodeSet
392 393 394 395 396 397 398 399 400 |
# File 'lib/nokogiri/xml/node_set.rb', line 392 def ==(other) return false unless other.is_a?(Nokogiri::XML::NodeSet) return false unless length == other.length each_with_index do |node, i| return false unless node == other[i] end true end |
#[](*args) ⇒ Object
- start, length
-
-> NodeSet or nil
- range
-
-> NodeSet or nil
slice(index) -> Node or nil
slice(start, length) -> NodeSet or nil
slice(range) -> NodeSet or nil
Element reference - returns the node at index
, or returns a NodeSet containing nodes starting at start
and continuing for length
elements, or returns a NodeSet containing nodes specified by range
. Negative indices
count backward from the end of the node_set
(-1 is the last node). Returns nil if the index
(or start
) are out of range.
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 |
# File 'ext/nokogiri/xml_node_set.c', line 345
static VALUE
slice(int argc, VALUE *argv, VALUE self)
{
VALUE arg ;
long beg, len ;
xmlNodeSetPtr node_set;
Data_Get_Struct(self, xmlNodeSet, node_set);
if (argc == 2) {
beg = NUM2LONG(argv[0]);
len = NUM2LONG(argv[1]);
if (beg < 0) {
beg += node_set->nodeNr ;
}
return subseq(self, beg, len);
}
if (argc != 1) {
rb_scan_args(argc, argv, "11", NULL, NULL);
}
arg = argv[0];
if (FIXNUM_P(arg)) {
return index_at(self, FIX2LONG(arg));
}
/* if arg is Range */
switch (rb_range_beg_len(arg, &beg, &len, (long)node_set->nodeNr, 0)) {
case Qfalse:
break;
case Qnil:
return Qnil;
default:
return subseq(self, beg, len);
}
return index_at(self, NUM2LONG(arg));
}
|
#add_class(name) ⇒ Object
Add the class attribute name
to all Node objects in the NodeSet.
See Nokogiri::XML::Node#add_class for more information.
139 140 141 142 143 144 |
# File 'lib/nokogiri/xml/node_set.rb', line 139 def add_class(name) each do |el| el.add_class(name) end self end |
#after(datum) ⇒ Object
Insert datum
after the last Node in this NodeSet
69 70 71 |
# File 'lib/nokogiri/xml/node_set.rb', line 69 def after(datum) last.after(datum) end |
#append_class(name) ⇒ Object
Append the class attribute name
to all Node objects in the NodeSet.
See Nokogiri::XML::Node#append_class for more information.
151 152 153 154 155 156 |
# File 'lib/nokogiri/xml/node_set.rb', line 151 def append_class(name) each do |el| el.append_class(name) end self end |
#at(*args) ⇒ Object Also known as: %
call-seq: search *paths, [namespace-bindings, xpath-variable-bindings, custom-handler-class]
Search this object for paths
, and return only the first result. paths
must be one or more XPath or CSS queries.
See Searchable#search for more information.
Or, if passed an integer, index into the NodeSet:
node_set.at(3) # same as node_set[3]
119 120 121 122 123 124 125 |
# File 'lib/nokogiri/xml/node_set.rb', line 119 def at(*args) if args.length == 1 && args.first.is_a?(Numeric) return self[args.first] end super(*args) end |
#attr(key, value = nil, &block) ⇒ Object Also known as: set, attribute
Set attributes on each Node in the NodeSet, or get an attribute from the first Node in the NodeSet.
To get an attribute from the first Node in a NodeSet:
node_set.attr("href") # => "https://www.nokogiri.org"
Note that an empty NodeSet will return nil when #attr
is called as a getter.
To set an attribute on each node, key
can either be an attribute name, or a Hash of attribute names and values. When called as a setter, #attr
returns the NodeSet.
If key
is an attribute name, then either value
or block
must be passed.
If key
is a Hash then attributes will be set for each key/value pair:
node_set.attr("href" => "https://www.nokogiri.org", "class" => "member")
If value
is passed, it will be used as the attribute value for all nodes:
node_set.attr("href", "https://www.nokogiri.org")
If block
is passed, it will be called on each Node object in the NodeSet and the return value used as the attribute value for that node:
node_set.attr("class") { |node| node.name }
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File 'lib/nokogiri/xml/node_set.rb', line 203 def attr(key, value = nil, &block) unless key.is_a?(Hash) || (key && (value || block)) return first&.attribute(key) end hash = key.is_a?(Hash) ? key : { key => value } hash.each do |k, v| each do |node| node[k] = v || yield(node) end end self end |
#before(datum) ⇒ Object
Insert datum
before the first Node in this NodeSet
63 64 65 |
# File 'lib/nokogiri/xml/node_set.rb', line 63 def before(datum) first.before(datum) end |
#children ⇒ Object
Returns a new NodeSet containing all the children of all the nodes in the NodeSet
405 406 407 408 409 410 411 |
# File 'lib/nokogiri/xml/node_set.rb', line 405 def children node_set = NodeSet.new(document) each do |node| node.children.each { |n| node_set.push(n) } end node_set end |
#css(*args) ⇒ Object
call-seq: css *rules, [namespace-bindings, custom-pseudo-class]
Search this node set for CSS rules
. rules
must be one or more CSS selectors. For example:
For more information see Nokogiri::XML::Searchable#css
83 84 85 86 87 88 89 90 |
# File 'lib/nokogiri/xml/node_set.rb', line 83 def css(*args) rules, handler, ns, _ = extract_params(args) paths = css_rules_to_xpath(rules, ns) inject(NodeSet.new(document)) do |set, node| set + xpath_internal(node, paths, handler, ns, nil) end end |
#deconstruct ⇒ Object
:call-seq: deconstruct() → Array
Returns the members of this NodeSet as an array, to use in pattern matching.
⚡ This is an experimental feature, available since v1.14.0
439 440 441 |
# File 'lib/nokogiri/xml/node_set.rb', line 439 def deconstruct to_a end |
#delete(node) ⇒ Object
Delete node
from the Nodeset, if it is a member. Returns the deleted node if found, otherwise returns nil.
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
# File 'ext/nokogiri/xml_node_set.c', line 171
static VALUE
delete (VALUE self, VALUE rb_node)
{
xmlNodeSetPtr node_set;
xmlNodePtr node;
Check_Node_Set_Node_Type(rb_node);
Data_Get_Struct(self, xmlNodeSet, node_set);
Noko_Node_Get_Struct(rb_node, xmlNode, node);
if (xmlXPathNodeSetContains(node_set, node)) {
xpath_node_set_del(node_set, node);
return rb_node;
}
return Qnil ;
}
|
#dup ⇒ Object Also known as: clone
Duplicate this NodeSet. Note that the Nodes contained in the NodeSet are not duplicated (similar to how Array and other Enumerable classes work).
113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'ext/nokogiri/xml_node_set.c', line 113
static VALUE
duplicate(VALUE self)
{
xmlNodeSetPtr node_set;
xmlNodeSetPtr dupl;
Data_Get_Struct(self, xmlNodeSet, node_set);
dupl = xmlXPathNodeSetMerge(NULL, node_set);
return noko_xml_node_set_wrap(dupl, rb_iv_get(self, "@document"));
}
|
#each ⇒ Object
Iterate over each node, yielding to block
231 232 233 234 235 236 237 238 |
# File 'lib/nokogiri/xml/node_set.rb', line 231 def each return to_enum unless block_given? 0.upto(length - 1) do |x| yield self[x] end self end |
#empty? ⇒ Boolean
Is this NodeSet empty?
45 46 47 |
# File 'lib/nokogiri/xml/node_set.rb', line 45 def empty? length == 0 end |
#filter(expr) ⇒ Object
Filter this list for nodes that match expr
130 131 132 |
# File 'lib/nokogiri/xml/node_set.rb', line 130 def filter(expr) find_all { |node| node.matches?(expr) } end |
#first(n = nil) ⇒ Object
Get the first element of the NodeSet.
29 30 31 32 33 34 35 |
# File 'lib/nokogiri/xml/node_set.rb', line 29 def first(n = nil) return self[0] unless n list = [] [n, length].min.times { |i| list << self[i] } list end |
#include?(node) ⇒ Boolean
Returns true if any member of node set equals node
.
220 221 222 223 224 225 226 227 228 229 230 231 232 |
# File 'ext/nokogiri/xml_node_set.c', line 220
static VALUE
include_eh(VALUE self, VALUE rb_node)
{
xmlNodeSetPtr node_set;
xmlNodePtr node;
Check_Node_Set_Node_Type(rb_node);
Data_Get_Struct(self, xmlNodeSet, node_set);
Noko_Node_Get_Struct(rb_node, xmlNode, node);
return (xmlXPathNodeSetContains(node_set, node) ? Qtrue : Qfalse);
}
|
#index(node = nil) ⇒ Object
Returns the index of the first node in self that is == to node
or meets the given block. Returns nil if no match is found.
51 52 53 54 55 56 57 58 59 |
# File 'lib/nokogiri/xml/node_set.rb', line 51 def index(node = nil) if node warn("given block not used") if block_given? each_with_index { |member, j| return j if member == node } elsif block_given? each_with_index { |member, j| return j if yield(member) } end nil end |
#inner_html(*args) ⇒ Object
Get the inner html of all contained Node objects
260 261 262 |
# File 'lib/nokogiri/xml/node_set.rb', line 260 def inner_html(*args) collect { |j| j.inner_html(*args) }.join("") end |
#inner_text ⇒ Object Also known as: text
Get the inner text of all contained Node objects
Note: This joins the text of all Node objects in the NodeSet:
doc = Nokogiri::XML('<xml><a><d>foo</d><d>bar</d></a></xml>')
doc.css('d').text # => "foobar"
Instead, if you want to return the text of all nodes in the NodeSet:
doc.css('d').map(&:text) # => ["foo", "bar"]
See Nokogiri::XML::Node#content for more information.
253 254 255 |
# File 'lib/nokogiri/xml/node_set.rb', line 253 def inner_text collect(&:inner_text).join("") end |
#inspect ⇒ Object
Return a nicely formated string representation
426 427 428 |
# File 'lib/nokogiri/xml/node_set.rb', line 426 def inspect "[#{map(&:inspect).join(", ")}]" end |
#last ⇒ Object
Get the last element of the NodeSet.
39 40 41 |
# File 'lib/nokogiri/xml/node_set.rb', line 39 def last self[-1] end |
#length ⇒ Object Also known as: size
Get the length of the node set
132 133 134 135 136 137 138 139 140 |
# File 'ext/nokogiri/xml_node_set.c', line 132
static VALUE
length(VALUE self)
{
xmlNodeSetPtr node_set;
Data_Get_Struct(self, xmlNodeSet, node_set);
return node_set ? INT2NUM(node_set->nodeNr) : INT2NUM(0);
}
|
#pop ⇒ Object
Removes the last element from set and returns it, or nil
if the set is empty
373 374 375 376 377 |
# File 'lib/nokogiri/xml/node_set.rb', line 373 def pop return nil if length == 0 delete(last) end |
#push(node) ⇒ Object Also known as: <<
Append node
to the NodeSet.
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'ext/nokogiri/xml_node_set.c', line 148
static VALUE
push(VALUE self, VALUE rb_node)
{
xmlNodeSetPtr node_set;
xmlNodePtr node;
Check_Node_Set_Node_Type(rb_node);
Data_Get_Struct(self, xmlNodeSet, node_set);
Noko_Node_Get_Struct(rb_node, xmlNode, node);
xmlXPathNodeSetAdd(node_set, node);
return self;
}
|
#remove_attr(name) ⇒ Object Also known as: remove_attribute
Remove the attributed named name
from all Node objects in the NodeSet
223 224 225 226 |
# File 'lib/nokogiri/xml/node_set.rb', line 223 def remove_attr(name) each { |el| el.delete(name) } self end |
#remove_class(name = nil) ⇒ Object
Remove the class attribute name
from all Node objects in the NodeSet.
See Nokogiri::XML::Node#remove_class for more information.
163 164 165 166 167 168 |
# File 'lib/nokogiri/xml/node_set.rb', line 163 def remove_class(name = nil) each do |el| el.remove_class(name) end self end |
#reverse ⇒ Object
Returns a new NodeSet containing all the nodes in the NodeSet in reverse order
416 417 418 419 420 421 422 |
# File 'lib/nokogiri/xml/node_set.rb', line 416 def reverse node_set = NodeSet.new(document) (length - 1).downto(0) do |x| node_set.push(self[x]) end node_set end |
#shift ⇒ Object
Returns the first element of the NodeSet and removes it. Returns nil
if the set is empty.
382 383 384 385 386 |
# File 'lib/nokogiri/xml/node_set.rb', line 382 def shift return nil if length == 0 delete(first) end |
#slice(*args) ⇒ Object
- start, length
-
-> NodeSet or nil
- range
-
-> NodeSet or nil
slice(index) -> Node or nil
slice(start, length) -> NodeSet or nil
slice(range) -> NodeSet or nil
Element reference - returns the node at index
, or returns a NodeSet containing nodes starting at start
and continuing for length
elements, or returns a NodeSet containing nodes specified by range
. Negative indices
count backward from the end of the node_set
(-1 is the last node). Returns nil if the index
(or start
) are out of range.
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 |
# File 'ext/nokogiri/xml_node_set.c', line 345
static VALUE
slice(int argc, VALUE *argv, VALUE self)
{
VALUE arg ;
long beg, len ;
xmlNodeSetPtr node_set;
Data_Get_Struct(self, xmlNodeSet, node_set);
if (argc == 2) {
beg = NUM2LONG(argv[0]);
len = NUM2LONG(argv[1]);
if (beg < 0) {
beg += node_set->nodeNr ;
}
return subseq(self, beg, len);
}
if (argc != 1) {
rb_scan_args(argc, argv, "11", NULL, NULL);
}
arg = argv[0];
if (FIXNUM_P(arg)) {
return index_at(self, FIX2LONG(arg));
}
/* if arg is Range */
switch (rb_range_beg_len(arg, &beg, &len, (long)node_set->nodeNr, 0)) {
case Qfalse:
break;
case Qnil:
return Qnil;
default:
return subseq(self, beg, len);
}
return index_at(self, NUM2LONG(arg));
}
|
#to_a ⇒ Object Also known as: to_ary
Return this list as an Array
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 |
# File 'ext/nokogiri/xml_node_set.c', line 392
static VALUE
to_array(VALUE self)
{
xmlNodeSetPtr node_set ;
VALUE list;
int i;
Data_Get_Struct(self, xmlNodeSet, node_set);
list = rb_ary_new2(node_set->nodeNr);
for (i = 0; i < node_set->nodeNr; i++) {
VALUE elt = noko_xml_node_wrap_node_set_result(node_set->nodeTab[i], self);
rb_ary_push(list, elt);
}
return list;
}
|
#to_html(*args) ⇒ Object
Convert this NodeSet to HTML
341 342 343 344 345 346 347 348 349 350 351 352 353 |
# File 'lib/nokogiri/xml/node_set.rb', line 341 def to_html(*args) if Nokogiri.jruby? = args.first.is_a?(Hash) ? args.shift : {} [:save_with] ||= Node::SaveOptions::DEFAULT_HTML args.insert(0, ) end if empty? encoding = (args.first.is_a?(Hash) ? args.first[:encoding] : nil) || document.encoding "".encode(encoding) else map { |x| x.to_html(*args) }.join end end |
#to_s ⇒ Object
Convert this NodeSet to a string.
335 336 337 |
# File 'lib/nokogiri/xml/node_set.rb', line 335 def to_s map(&:to_s).join end |
#to_xhtml(*args) ⇒ Object
Convert this NodeSet to XHTML
357 358 359 |
# File 'lib/nokogiri/xml/node_set.rb', line 357 def to_xhtml(*args) map { |x| x.to_xhtml(*args) }.join end |
#to_xml(*args) ⇒ Object
Convert this NodeSet to XML
363 364 365 |
# File 'lib/nokogiri/xml/node_set.rb', line 363 def to_xml(*args) map { |x| x.to_xml(*args) }.join end |
#unlink ⇒ Object Also known as: remove
Unlink this NodeSet and all Node objects it contains from their current context.
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 |
# File 'ext/nokogiri/xml_node_set.c', line 416
static VALUE
unlink_nodeset(VALUE self)
{
xmlNodeSetPtr node_set;
int j, nodeNr ;
Data_Get_Struct(self, xmlNodeSet, node_set);
nodeNr = node_set->nodeNr ;
for (j = 0 ; j < nodeNr ; j++) {
if (! NOKOGIRI_NAMESPACE_EH(node_set->nodeTab[j])) {
VALUE node ;
xmlNodePtr node_ptr;
node = noko_xml_node_wrap(Qnil, node_set->nodeTab[j]);
rb_funcall(node, rb_intern("unlink"), 0); /* modifies the C struct out from under the object */
Noko_Node_Get_Struct(node, xmlNode, node_ptr);
node_set->nodeTab[j] = node_ptr ;
}
}
return self ;
}
|
#wrap(node_or_tags) ⇒ Object
:call-seq:
wrap(markup) -> self
wrap(node) -> self
Wrap each member of this NodeSet with the node parsed from markup
or a dup of the node
.
- Parameters
-
markup (String) Markup that is parsed, once per member of the NodeSet, and used as the wrapper. Each node’s parent, if it exists, is used as the context node for parsing; otherwise the associated document is used. If the parsed fragment has multiple roots, the first root node is used as the wrapper.
-
node (Nokogiri::XML::Node) An element that is ‘#dup`ed and used as the wrapper.
- Returns
-
self
, to support chaining.
⚠ Note that if a String
is passed, the markup will be parsed once per node in the NodeSet. You can avoid this overhead in cases where you know exactly the wrapper you wish to use by passing a Node
instead.
Also see Node#wrap
Example with a String
argument:
doc = Nokogiri::HTML5(<<~HTML)
<html><body>
<a>a</a>
<a>b</a>
<a>c</a>
<a>d</a>
</body></html>
HTML
doc.css("a").wrap("<div></div>")
doc.to_html
# => <html><head></head><body>
# <div><a>a</a></div>
# <div><a>b</a></div>
# <div><a>c</a></div>
# <div><a>d</a></div>
# </body></html>
Example with a Node
argument
💡 Note that this is faster than the equivalent call passing a String
because it avoids having to reparse the wrapper markup for each node.
doc = Nokogiri::HTML5(<<~HTML)
<html><body>
<a>a</a>
<a>b</a>
<a>c</a>
<a>d</a>
</body></html>
HTML
doc.css("a").wrap(doc.create_element("div"))
doc.to_html
# => <html><head></head><body>
# <div><a>a</a></div>
# <div><a>b</a></div>
# <div><a>c</a></div>
# <div><a>d</a></div>
# </body></html>
328 329 330 331 |
# File 'lib/nokogiri/xml/node_set.rb', line 328 def wrap() map { |node| node.wrap() } self end |
#xpath(*args) ⇒ Object
call-seq: xpath *paths, [namespace-bindings, variable-bindings, custom-handler-class]
Search this node set for XPath paths
. paths
must be one or more XPath queries.
For more information see Nokogiri::XML::Searchable#xpath
99 100 101 102 103 104 105 |
# File 'lib/nokogiri/xml/node_set.rb', line 99 def xpath(*args) paths, handler, ns, binds = extract_params(args) inject(NodeSet.new(document)) do |set, node| set + xpath_internal(node, paths, handler, ns, binds) end end |
#|(node_set) ⇒ Object Also known as: +
Returns a new set built by merging the set and the elements of the given set.
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
# File 'ext/nokogiri/xml_node_set.c', line 242
static VALUE
rb_xml_node_set_union(VALUE rb_node_set, VALUE rb_other)
{
xmlNodeSetPtr c_node_set, c_other;
xmlNodeSetPtr c_new_node_set;
if (!rb_obj_is_kind_of(rb_other, cNokogiriXmlNodeSet)) {
rb_raise(rb_eArgError, "node_set must be a Nokogiri::XML::NodeSet");
}
Data_Get_Struct(rb_node_set, xmlNodeSet, c_node_set);
Data_Get_Struct(rb_other, xmlNodeSet, c_other);
c_new_node_set = xmlXPathNodeSetMerge(NULL, c_node_set);
c_new_node_set = xmlXPathNodeSetMerge(c_new_node_set, c_other);
return noko_xml_node_set_wrap(c_new_node_set, rb_iv_get(rb_node_set, "@document"));
}
|