Class: Fog::Parsers::Terremark::Shared::GetTasksList

Inherits:
TerremarkParser
  • Object
show all
Defined in:
lib/fog/terremark/parsers/shared/get_tasks_list.rb

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from TerremarkParser

#extract_attributes

Methods inherited from Base

#attr_value, #characters, #end_element_namespace, #initialize, #start_element_namespace, #value

Constructor Details

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

Instance Method Details

#end_element(name) ⇒ Object



27
28
29
30
31
32
# File 'lib/fog/terremark/parsers/shared/get_tasks_list.rb', line 27

def end_element(name)
  if name == 'Task'
    @response['Tasks'] << @task
    @task = {}
  end
end

#resetObject



8
9
10
11
# File 'lib/fog/terremark/parsers/shared/get_tasks_list.rb', line 8

def reset
  @response = { 'Tasks' => [] }
  @task = {}
end

#start_element(name, attributes) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/fog/terremark/parsers/shared/get_tasks_list.rb', line 13

def start_element(name, attributes)
  super
  case name
  when 'Owner', 'Result'
    data = extract_templates(attributes)
    @task[name] = data
  when 'Task'
    @task = extract_templates(attributes)
  when 'TasksList'
    tasks_list = extract_templates(attributes)
    @response['href'] = tasks_list['href']
  end
end