1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/core/collection.rb

162 lines
4 KiB
Ruby
Raw Normal View History

require "fog/core/deprecated_connection_accessors"
2009-08-02 19:37:54 -04:00
module Fog
class Collection < Array
2010-06-07 21:22:31 -04:00
extend Fog::Attributes::ClassMethods
include Fog::Attributes::InstanceMethods
include Fog::Core::DeprecatedConnectionAccessors
attr_reader :service
2010-01-05 01:03:24 -05:00
Array.public_instance_methods(false).each do |method|
unless [:reject, :select, :slice, :clear, :inspect].include?(method.to_sym)
class_eval <<-EOS, __FILE__, __LINE__
def #{method}(*args)
unless @loaded
lazy_load
end
super
end
EOS
end
2010-01-05 01:03:24 -05:00
end
%w[reject select slice].each do |method|
class_eval <<-EOS, __FILE__, __LINE__
def #{method}(*args)
unless @loaded
lazy_load
end
2010-03-09 14:33:06 -05:00
data = super
2012-05-14 15:27:48 -04:00
self.clone.clear.concat(data)
end
EOS
end
2010-05-16 12:09:25 -04:00
def self.model(new_model=nil)
if new_model == nil
@model
else
@model = new_model
end
end
2010-05-16 12:09:25 -04:00
def clear
@loaded = true
super
end
def create(attributes = {})
object = new(attributes)
object.save
object
end
def destroy(identity)
object = new(:identity => identity)
object.destroy
end
# Creates a new Fog::Collection based around the passed service
#
# @param [Hash] attributes
# @option attributes [Fog::Service] service Instance of a service
#
# @return [Fog::Collection]
#
2009-08-02 19:37:54 -04:00
def initialize(attributes = {})
@service = attributes.delete(:service)
2010-10-12 19:22:12 -04:00
@loaded = false
merge_attributes(attributes)
2009-08-02 19:37:54 -04:00
end
2009-08-02 19:37:54 -04:00
def inspect
Thread.current[:formatador] ||= Formatador.new
data = "#{Thread.current[:formatador].indentation}<#{self.class.name}\n"
Thread.current[:formatador].indent do
unless self.class.attributes.empty?
data << "#{Thread.current[:formatador].indentation}"
data << self.class.attributes.map {|attribute| "#{attribute}=#{send(attribute).inspect}"}.join(",\n#{Thread.current[:formatador].indentation}")
data << "\n"
end
data << "#{Thread.current[:formatador].indentation}["
unless self.empty?
data << "\n"
Thread.current[:formatador].indent do
data << self.map {|member| member.inspect}.join(",\n")
data << "\n"
end
data << Thread.current[:formatador].indentation
end
data << "]\n"
2009-08-02 19:37:54 -04:00
end
data << "#{Thread.current[:formatador].indentation}>"
data
2009-08-02 19:37:54 -04:00
end
def load(objects)
clear
for object in objects
self << new(object)
end
self
end
def model
self.class.instance_variable_get('@model')
end
def new(attributes = {})
2012-05-22 19:47:53 -04:00
unless attributes.is_a?(::Hash)
raise(ArgumentError.new("Initialization parameters must be an attributes hash, got #{attributes.class} #{attributes.inspect}"))
end
model.new(
2012-11-27 19:57:16 -05:00
{
:collection => self,
:service => service
2012-11-27 19:57:16 -05:00
}.merge(attributes)
)
end
def reload
clear
lazy_load
self
end
2010-02-22 19:36:25 -05:00
def table(attributes = nil)
Formatador.display_table(self.map {|instance| instance.attributes}, attributes)
end
def to_json(options = {})
2012-04-25 10:31:28 -04:00
Fog::JSON.encode(self.map {|member| member.attributes})
end
2009-08-02 19:37:54 -04:00
private
2010-01-05 01:03:24 -05:00
def lazy_load
self.all
2010-01-05 01:03:24 -05:00
end
2009-08-02 19:37:54 -04:00
end
# Base class for collection classes whose 'all' method returns only a single page of results and passes the
# 'Marker' option along as self.filters[:marker]
class PagedCollection < Collection
def each(filters=filters)
if block_given?
begin
page = self.all(filters)
# We need to explicitly use the base 'each' method here on the page, otherwise we get infinite recursion
base_each = Fog::Collection.instance_method(:each)
base_each.bind(page).call { |item| yield item }
end while self.filters[:marker]
end
self
end
end
2009-08-02 19:37:54 -04:00
end