Class: Fog::ToHashDocument

Inherits:
Nokogiri::XML::SAX::Document
  • Object
show all
Defined in:
lib/fog/parser.rb

Instance Method Summary collapse

Constructor Details

#initializeToHashDocument

Returns a new instance of ToHashDocument.



31
32
33
# File 'lib/fog/parser.rb', line 31

def initialize
  @stack = []
end

Instance Method Details

#bodyObject



52
53
54
# File 'lib/fog/parser.rb', line 52

def body
  @stack.first
end

#characters(string) ⇒ Object



35
36
37
38
# File 'lib/fog/parser.rb', line 35

def characters(string)
  @value ||= ''
  @value << string.strip
end

#end_element(name) ⇒ Object



40
41
42
43
44
45
46
47
48
49
50
# File 'lib/fog/parser.rb', line 40

def end_element(name)
  last = @stack.pop
  if last.empty? && @value.empty?
    @stack.last[name.to_sym] = ''
  elsif last == {:i_nil=>"true"}
    @stack.last[name.to_sym] = nil
  elsif !@value.empty?
    @stack.last[name.to_sym] = @value
  end
  @value = ''
end

#responseObject



56
57
58
# File 'lib/fog/parser.rb', line 56

def response
  body
end

#start_element(name, attributes = []) ⇒ Object



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/fog/parser.rb', line 60

def start_element(name, attributes = [])
  @value = ''
  parsed_attributes = {}
  until attributes.empty?
    if attributes.first.is_a?(Array)
      key, value = attributes.shift
    else
      key, value = attributes.shift, attributes.shift
    end
    parsed_attributes[key.gsub(':','_').to_sym] = value
  end
  if @stack.last.is_a?(Array)
    @stack.last << {name.to_sym => parsed_attributes}
  else
    data = if @stack.empty?
      @stack.push(parsed_attributes)
      parsed_attributes
    elsif @stack.last[name.to_sym]
      unless @stack.last[name.to_sym].is_a?(Array)
        @stack.last[name.to_sym] = [@stack.last[name.to_sym]]
      end
      @stack.last[name.to_sym] << parsed_attributes
      @stack.last[name.to_sym].last
    else
      @stack.last[name.to_sym] = {}
      @stack.last[name.to_sym].merge!(parsed_attributes)
      @stack.last[name.to_sym]
    end
    @stack.push(data)
  end
end