Module: Handsoap::XmlQueryFront::XmlElement

Included in:
LibXMLDriver, NokogiriDriver, REXMLDriver
Defined in:
lib/handsoap/xml_query_front.rb

Overview

Wraps the underlying (native) xml driver, and provides a uniform interface.

Instance Method Summary collapse

Instance Method Details

#/(expression) ⇒ Object

alias of xpath



217
218
219
# File 'lib/handsoap/xml_query_front.rb', line 217

def /(expression)
  self.xpath(expression)
end

#[](attribute_name) ⇒ Object

Returns the attribute value of the underlying element.

Shortcut for:

(node/"@attribute_name").to_s

Raises:

  • (NotImplementedError)


225
226
227
# File 'lib/handsoap/xml_query_front.rb', line 225

def [](attribute_name)
  raise NotImplementedError.new
end

#add_namespace(prefix, uri) ⇒ Object

Registers a prefix to refer to a namespace.

You can either register a nemspace with this function or pass it explicitly to the xpath method.



124
125
126
# File 'lib/handsoap/xml_query_front.rb', line 124

def add_namespace(prefix, uri)
  @namespaces[prefix] = uri
end

#assert_prefixes!(expression, ns) ⇒ Object

Checks that an xpath-query doesn’t refer to any undefined prefixes in ns



128
129
130
131
132
# File 'lib/handsoap/xml_query_front.rb', line 128

def assert_prefixes!(expression, ns)
  expression.scan(/([a-zA-Z_][a-zA-Z0-9_.-]*):[^:]+/).map{|m| m[0] }.each do |prefix|
    raise "Undefined prefix '#{prefix}' in #{ns.inspect}" if ns[prefix].nil?
  end
end

#childrenObject

Returns a NodeSelection

Raises:

  • (NotImplementedError)


205
206
207
# File 'lib/handsoap/xml_query_front.rb', line 205

def children
  raise NotImplementedError.new
end

#initialize(element, namespaces = {}) ⇒ Object



117
118
119
120
# File 'lib/handsoap/xml_query_front.rb', line 117

def initialize(element, namespaces = {})
  @element = element
  @namespaces = namespaces
end

#native_elementObject

Returns the underlying native element.

You shouldn’t need to use this, since doing so would void portability.



182
183
184
# File 'lib/handsoap/xml_query_front.rb', line 182

def native_element
  @element
end

#node_nameObject

Returns the node name of the current element.

Raises:

  • (NotImplementedError)


186
187
188
# File 'lib/handsoap/xml_query_front.rb', line 186

def node_name
  raise NotImplementedError.new
end

#node_namespaceObject

Returns the node namespace uri of the current element if any, nil otherwise. Result returned for attribute nodes varies for different drivers, currently.

Raises:

  • (NotImplementedError)


191
192
193
# File 'lib/handsoap/xml_query_front.rb', line 191

def node_namespace
  raise NotImplementedError.new
end

#to_big_decimal(decimal_places = 2) ⇒ Object

Returns the value of the element as an instance of BigDecimal

See to_s



168
169
170
171
172
# File 'lib/handsoap/xml_query_front.rb', line 168

def to_big_decimal(decimal_places = 2)
  t = self.to_s
  return if t.nil?
  BigDecimal.new t, decimal_places
end

#to_booleanObject

Returns the value of the element as an boolean.

See to_s



152
153
154
155
156
# File 'lib/handsoap/xml_query_front.rb', line 152

def to_boolean
  t = self.to_s
  return if t.nil?
  t.downcase == 'true'
end

#to_dateObject

Returns the value of the element as a ruby Time object.

See to_s



160
161
162
163
164
# File 'lib/handsoap/xml_query_front.rb', line 160

def to_date
  t = self.to_s
  return if t.nil?
  Time.iso8601(t)
end

#to_fObject

Returns the value of the element as a float.

See to_s



144
145
146
147
148
# File 'lib/handsoap/xml_query_front.rb', line 144

def to_f
  t = self.to_s
  return if t.nil?
  t.to_f
end

#to_iObject

Returns the value of the element as an integer.

See to_s



136
137
138
139
140
# File 'lib/handsoap/xml_query_front.rb', line 136

def to_i
  t = self.to_s
  return if t.nil?
  t.to_i
end

#to_rawObject

Returns the outer XML for this element, preserving the original formatting.

Raises:

  • (NotImplementedError)


213
214
215
# File 'lib/handsoap/xml_query_front.rb', line 213

def to_raw
  raise NotImplementedError.new
end

#to_sObject

Returns the inner text content of this element, or the value (if it’s an attr or textnode).

The output is a UTF-8 encoded string, without xml-entities.

Raises:

  • (NotImplementedError)


176
177
178
# File 'lib/handsoap/xml_query_front.rb', line 176

def to_s
  raise NotImplementedError.new
end

#to_xmlObject

Returns the outer XML for this element.

Raises:

  • (NotImplementedError)


209
210
211
# File 'lib/handsoap/xml_query_front.rb', line 209

def to_xml
  raise NotImplementedError.new
end

#xpath(expression, ns = nil) ⇒ Object

Queries the document with XPath, relative to the current element.

ns Should be a Hash of prefix => namespace

Returns a NodeSelection

See add_namespace

Raises:

  • (NotImplementedError)


201
202
203
# File 'lib/handsoap/xml_query_front.rb', line 201

def xpath(expression, ns = nil)
  raise NotImplementedError.new
end