2012-12-19 22:28:04 +00:00
|
|
|
require "fog/core/deprecated_connection_accessors"
|
|
|
|
|
2009-08-02 16:37:54 -07:00
|
|
|
module Fog
|
2009-09-04 18:24:11 -07:00
|
|
|
class Collection < Array
|
2010-06-07 18:22:31 -07:00
|
|
|
extend Fog::Attributes::ClassMethods
|
|
|
|
include Fog::Attributes::InstanceMethods
|
2012-12-19 22:28:04 +00:00
|
|
|
include Fog::Core::DeprecatedConnectionAccessors
|
|
|
|
|
|
|
|
attr_reader :service
|
2010-06-07 08:59:17 -07:00
|
|
|
|
2010-01-04 22:03:24 -08:00
|
|
|
Array.public_instance_methods(false).each do |method|
|
2011-03-05 00:29:59 +08:00
|
|
|
unless [:reject, :select, :slice].include?(method.to_sym)
|
2011-04-28 22:29:48 -07:00
|
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
2010-11-04 13:51:41 -07:00
|
|
|
def #{method}(*args)
|
|
|
|
unless @loaded
|
|
|
|
lazy_load
|
|
|
|
end
|
|
|
|
super
|
2010-06-07 18:25:34 -07:00
|
|
|
end
|
2011-04-28 22:29:48 -07:00
|
|
|
EOS
|
2010-11-04 13:51:41 -07:00
|
|
|
end
|
2010-01-04 22:03:24 -08:00
|
|
|
end
|
|
|
|
|
2011-03-05 00:29:59 +08:00
|
|
|
%w[reject select slice].each do |method|
|
2011-04-28 22:29:48 -07:00
|
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
2010-02-23 10:13:51 -08:00
|
|
|
def #{method}(*args)
|
2010-06-07 18:25:34 -07:00
|
|
|
unless @loaded
|
|
|
|
lazy_load
|
|
|
|
end
|
2010-03-09 11:33:06 -08:00
|
|
|
data = super
|
2012-05-14 15:27:48 -04:00
|
|
|
self.clone.clear.concat(data)
|
2010-02-23 10:13:51 -08:00
|
|
|
end
|
2011-04-28 22:29:48 -07:00
|
|
|
EOS
|
2010-02-23 10:13:51 -08:00
|
|
|
end
|
|
|
|
|
2010-05-17 00:09:25 +08:00
|
|
|
def self.model(new_model=nil)
|
|
|
|
if new_model == nil
|
|
|
|
@model
|
|
|
|
else
|
|
|
|
@model = new_model
|
|
|
|
end
|
2009-10-29 23:35:28 -07:00
|
|
|
end
|
2010-05-17 00:09:25 +08:00
|
|
|
|
2010-10-12 16:22:12 -07:00
|
|
|
remove_method :clear
|
2010-06-07 18:25:34 -07:00
|
|
|
def clear
|
|
|
|
@loaded = true
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2009-10-29 23:35:28 -07:00
|
|
|
def create(attributes = {})
|
|
|
|
object = new(attributes)
|
|
|
|
object.save
|
|
|
|
object
|
|
|
|
end
|
|
|
|
|
2011-08-23 09:43:24 -05:00
|
|
|
def destroy(identity)
|
|
|
|
object = new(:identity => identity)
|
|
|
|
object.destroy
|
|
|
|
end
|
|
|
|
|
2012-12-19 22:28:04 +00:00
|
|
|
# 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 16:37:54 -07:00
|
|
|
def initialize(attributes = {})
|
2012-12-19 22:28:04 +00:00
|
|
|
@service = attributes.delete(:service)
|
2010-10-12 16:22:12 -07:00
|
|
|
@loaded = false
|
2009-08-31 22:40:07 -07:00
|
|
|
merge_attributes(attributes)
|
2009-08-02 16:37:54 -07:00
|
|
|
end
|
|
|
|
|
2012-12-19 22:28:04 +00:00
|
|
|
|
2010-10-12 16:22:12 -07:00
|
|
|
remove_method :inspect
|
2009-08-02 16:37:54 -07:00
|
|
|
def inspect
|
2010-02-14 14:34:33 -08:00
|
|
|
Thread.current[:formatador] ||= Formatador.new
|
|
|
|
data = "#{Thread.current[:formatador].indentation}<#{self.class.name}\n"
|
|
|
|
Thread.current[:formatador].indent do
|
|
|
|
unless self.class.attributes.empty?
|
2010-02-15 17:15:56 -08:00
|
|
|
data << "#{Thread.current[:formatador].indentation}"
|
2010-02-14 14:34:33 -08:00
|
|
|
data << self.class.attributes.map {|attribute| "#{attribute}=#{send(attribute).inspect}"}.join(",\n#{Thread.current[:formatador].indentation}")
|
2010-02-15 17:15:56 -08:00
|
|
|
data << "\n"
|
2010-02-14 14:34:33 -08:00
|
|
|
end
|
2010-02-15 17:15:56 -08:00
|
|
|
data << "#{Thread.current[:formatador].indentation}["
|
2010-02-14 14:34:33 -08:00
|
|
|
unless self.empty?
|
2010-02-15 17:15:56 -08:00
|
|
|
data << "\n"
|
2010-02-14 14:34:33 -08:00
|
|
|
Thread.current[:formatador].indent do
|
|
|
|
data << self.map {|member| member.inspect}.join(",\n")
|
|
|
|
data << "\n"
|
|
|
|
end
|
2010-02-15 17:15:56 -08:00
|
|
|
data << Thread.current[:formatador].indentation
|
2010-02-14 14:34:33 -08:00
|
|
|
end
|
2010-02-15 17:15:56 -08:00
|
|
|
data << "]\n"
|
2009-08-02 16:37:54 -07:00
|
|
|
end
|
2010-02-14 14:34:33 -08:00
|
|
|
data << "#{Thread.current[:formatador].indentation}>"
|
|
|
|
data
|
2009-08-02 16:37:54 -07:00
|
|
|
end
|
|
|
|
|
2010-03-06 20:02:10 -08:00
|
|
|
def load(objects)
|
2010-06-07 18:25:34 -07:00
|
|
|
clear
|
2010-03-06 20:02:10 -08:00
|
|
|
for object in objects
|
|
|
|
self << new(object)
|
|
|
|
end
|
|
|
|
self
|
2010-02-27 13:05:09 -08:00
|
|
|
end
|
|
|
|
|
2009-10-30 00:11:50 -07:00
|
|
|
def model
|
|
|
|
self.class.instance_variable_get('@model')
|
2009-08-30 14:43:01 -07:00
|
|
|
end
|
|
|
|
|
2009-10-29 23:35:28 -07:00
|
|
|
def new(attributes = {})
|
2012-05-22 16:47:53 -07:00
|
|
|
unless attributes.is_a?(::Hash)
|
|
|
|
raise(ArgumentError.new("Initialization parameters must be an attributes hash, got #{attributes.class} #{attributes.inspect}"))
|
2011-05-27 11:17:32 -07:00
|
|
|
end
|
2009-10-30 00:11:50 -07:00
|
|
|
model.new(
|
2012-11-27 16:57:16 -08:00
|
|
|
{
|
2009-10-29 23:35:28 -07:00
|
|
|
:collection => self,
|
2012-12-19 22:28:04 +00:00
|
|
|
:service => service
|
2012-11-27 16:57:16 -08:00
|
|
|
}.merge(attributes)
|
2009-10-29 23:35:28 -07:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def reload
|
2010-06-07 18:25:34 -07:00
|
|
|
clear
|
|
|
|
lazy_load
|
|
|
|
self
|
2009-10-29 23:35:28 -07:00
|
|
|
end
|
|
|
|
|
2010-02-22 16:36:25 -08:00
|
|
|
def table(attributes = nil)
|
|
|
|
Formatador.display_table(self.map {|instance| instance.attributes}, attributes)
|
|
|
|
end
|
|
|
|
|
2011-07-15 23:58:41 +02:00
|
|
|
def to_json(options = {})
|
2012-04-25 10:31:28 -04:00
|
|
|
Fog::JSON.encode(self.map {|member| member.attributes})
|
2010-03-27 18:06:32 -07:00
|
|
|
end
|
|
|
|
|
2009-08-02 16:37:54 -07:00
|
|
|
private
|
|
|
|
|
2010-01-04 22:03:24 -08:00
|
|
|
def lazy_load
|
2010-06-07 18:25:34 -07:00
|
|
|
self.all
|
2010-01-04 22:03:24 -08:00
|
|
|
end
|
|
|
|
|
2009-08-02 16:37:54 -07:00
|
|
|
end
|
|
|
|
end
|