fog--fog/lib/fog/collection.rb

122 lines
2.6 KiB
Ruby
Raw Normal View History

2009-08-02 23:37:54 +00:00
module Fog
class Collection < Array
2009-08-02 23:37:54 +00:00
2010-06-08 01:22:31 +00:00
extend Fog::Attributes::ClassMethods
include Fog::Attributes::InstanceMethods
2010-01-05 06:03:24 +00:00
Array.public_instance_methods(false).each do |method|
class_eval <<-RUBY
def #{method}(*args)
unless @loaded
lazy_load
end
2010-01-05 06:03:24 +00:00
super
end
RUBY
end
%w[reject select].each do |method|
class_eval <<-RUBY
def #{method}(*args)
unless @loaded
lazy_load
end
2010-03-09 19:33:06 +00:00
data = super
result = self.clone.clear.concat(data)
end
RUBY
end
2010-05-16 16:09:25 +00:00
def self.model(new_model=nil)
if new_model == nil
@model
else
@model = new_model
end
end
2010-05-16 16:09:25 +00:00
attr_accessor :connection
def clear
@loaded = true
super
end
def create(attributes = {})
object = new(attributes)
object.save
object
end
2009-08-02 23:37:54 +00:00
def initialize(attributes = {})
merge_attributes(attributes)
2009-08-02 23:37:54 +00:00
end
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 23:37:54 +00:00
end
data << "#{Thread.current[:formatador].indentation}>"
data
2009-08-02 23:37:54 +00: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 = {})
model.new(
attributes.merge(
:collection => self,
:connection => connection
)
)
end
def reload
clear
lazy_load
self
end
2010-02-23 00:36:25 +00:00
def table(attributes = nil)
Formatador.display_table(self.map {|instance| instance.attributes}, attributes)
end
def to_json
self.map {|member| member}.to_json
end
2009-08-02 23:37:54 +00:00
private
2010-01-05 06:03:24 +00:00
def lazy_load
self.all
2010-01-05 06:03:24 +00:00
end
2009-08-02 23:37:54 +00:00
end
end