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

130 lines
2.4 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-01-05 06:03:24 +00:00
Array.public_instance_methods(false).each do |method|
class_eval <<-RUBY
def #{method}(*args)
lazy_load
super
end
RUBY
end
def self._load(marhsalled)
new(Marshal.load(marshalled))
end
def self.attribute(name, other_names = [])
class_eval <<-EOS, __FILE__, __LINE__
attr_accessor :#{name}
EOS
@attributes ||= []
@attributes |= [name]
for other_name in [*other_names]
aliases[other_name] = name
end
end
def self.model(new_model)
@model = new_model
end
def self.aliases
@aliases ||= {}
end
def self.attributes
@attributes ||= []
end
def _dump
Marshal.dump(attributes)
end
def attributes
attributes = {}
for attribute in self.class.attributes
attributes[attribute] = send("#{attribute}")
end
attributes
end
def connection=(new_connection)
@connection = new_connection
end
def connection
@connection
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)
2010-01-05 06:03:24 +00:00
@loaded = false
2009-08-02 23:37:54 +00:00
end
def inspect
data = "#<#{self.class.name}"
for attribute in self.class.attributes
data << " #{attribute}=#{send(attribute).inspect}"
2009-08-02 23:37:54 +00:00
end
2009-08-18 01:34:44 +00:00
data << " ["
2009-10-02 06:22:47 +00:00
for member in self
data << "#{member.inspect},"
2009-08-02 23:37:54 +00:00
end
2009-10-15 04:55:53 +00:00
data.chop! unless self.empty?
2009-08-02 23:37:54 +00:00
data << "]>"
end
def model
self.class.instance_variable_get('@model')
end
def merge_attributes(new_attributes = {})
for key, value in new_attributes
if aliased_key = self.class.aliases[key]
send("#{aliased_key}=", value)
else
send("#{key}=", value)
end
end
2009-08-18 01:34:44 +00:00
self
end
def new(attributes = {})
model.new(
attributes.merge!(
:collection => self,
:connection => connection
)
)
end
def reload
self.clear.concat(all)
end
2009-08-02 23:37:54 +00:00
private
2010-01-05 06:03:24 +00:00
def lazy_load
unless @loaded
self.all
end
end
2009-08-04 17:51:54 +00:00
def remap_attributes(attributes, mapping)
for key, value in mapping
2009-08-18 01:34:44 +00:00
if attributes.key?(key)
2009-08-04 17:51:54 +00:00
attributes[value] = attributes.delete(key)
end
end
end
2009-08-02 23:37:54 +00:00
end
end