Class: Fog::Parsers::Terremark::InternetService

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/terremark/parsers/internet_service.rb

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from Base

#characters, #initialize

Constructor Details

This class inherits a constructor from Fog::Parsers::Base

Instance Method Details

#end_element(name) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/fog/terremark/parsers/internet_service.rb', line 30

def end_element(name)
  case name
  when 'Description', 'Protocol'
    @response[name] = @value
  when 'Enabled'
    if @value == 'false'
      @response[name] = false
    else
      @response[name] = true
    end
  when 'Id'
    if @in_public_ip_address
      @response['PublicIpAddress'][name] = @value.to_i
    else
      @response[name] = @value.to_i
    end
  when 'Name'
    if @in_public_ip_address
      @response['PublicIpAddress'][name] = @value
    else
      @response[name] = @value
    end
  when 'Port', 'Timeout'
    @response[name] = @value.to_i
  when 'PublicIpAddress'
    @in_public_ip_address = false
  end
end

#resetObject



7
8
9
10
# File 'lib/fog/terremark/parsers/internet_service.rb', line 7

def reset
  @in_public_ip_address = false
  @response = { 'PublicIpAddress' => {} }
end

#start_element(name, attributes) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/fog/terremark/parsers/internet_service.rb', line 12

def start_element(name, attributes)
  @value = ''
  case name
  when 'Href'
    data = {}
    until attributes.empty?
      data[attributes.shift] = attributes.shift
    end
    if @in_public_ip_address
      @response['PublicIpAddress'][name] = data
    else
      @response[name] = data
    end
  when 'PublicIpAddress'
    @in_public_ip_address = true
  end
end