class Fog::Parsers::Terremark::Shared::GetTasksList

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/terremark/parsers/shared/get_tasks_list.rb, line 40
def end_element(name)
  if name == 'Task'
    @response['Tasks'] << @task
    @task = {}
  end
end
reset() click to toggle source
# File lib/fog/terremark/parsers/shared/get_tasks_list.rb, line 8
def reset
  @response = { 'Tasks' => [] }
  @task = {}
end
start_element(name, attributes) click to toggle source
Calls superclass method Fog::Parsers::Base#start_element
# File lib/fog/terremark/parsers/shared/get_tasks_list.rb, line 13
def start_element(name, attributes)
  super
  case name
  when 'Owner', 'Result'
    data = {}
    until attributes.empty?
      data[attributes.shift] = attributes.shift
    end
    @task[name] = data
  when 'Task'
    until attributes.empty?
      @task[attributes.shift] = attributes.shift
    end
  when 'TasksList'
    tasks_list = {}
    until attributes.empty?
      if attributes.first.is_a?(Array)
        attribute = attributes.shift
        tasks_list[attribute.first] = attribute.last
      else
        tasks_list[attributes.shift] = attributes.shift
      end
    end
    @response['href'] = tasks_list['href']
  end
end