2009-08-02 16:37:54 -07:00
|
|
|
module Fog
|
2009-09-04 18:24:11 -07:00
|
|
|
class Collection < Array
|
2009-08-02 16:37:54 -07:00
|
|
|
|
2009-11-21 13:46:46 -08:00
|
|
|
def self._load(marhsalled)
|
|
|
|
new(Marshal.load(marshalled))
|
|
|
|
end
|
|
|
|
|
2009-08-30 14:43:01 -07:00
|
|
|
def self.attribute(name, other_names = [])
|
|
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
|
|
attr_accessor :#{name}
|
|
|
|
EOS
|
2009-11-11 23:18:17 -08:00
|
|
|
@attributes ||= []
|
|
|
|
@attributes |= [name]
|
2009-08-30 14:43:01 -07:00
|
|
|
for other_name in [*other_names]
|
|
|
|
aliases[other_name] = name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-30 00:11:50 -07:00
|
|
|
def self.model(new_model)
|
|
|
|
@model = new_model
|
2009-10-29 23:35:28 -07:00
|
|
|
end
|
|
|
|
|
2009-08-30 14:43:01 -07:00
|
|
|
def self.aliases
|
|
|
|
@aliases ||= {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.attributes
|
|
|
|
@attributes ||= []
|
|
|
|
end
|
|
|
|
|
2009-11-21 13:46:46 -08:00
|
|
|
def _dump
|
|
|
|
Marshal.dump(attributes)
|
|
|
|
end
|
|
|
|
|
2009-10-29 23:35:28 -07:00
|
|
|
def attributes
|
|
|
|
attributes = {}
|
|
|
|
for attribute in self.class.attributes
|
|
|
|
attributes[attribute] = send("#{attribute}")
|
|
|
|
end
|
|
|
|
attributes
|
|
|
|
end
|
|
|
|
|
2009-11-21 13:46:46 -08:00
|
|
|
def connection=(new_connection)
|
|
|
|
@connection = new_connection
|
|
|
|
end
|
|
|
|
|
|
|
|
def connection
|
|
|
|
@connection
|
|
|
|
end
|
|
|
|
|
2009-10-29 23:35:28 -07:00
|
|
|
def create(attributes = {})
|
|
|
|
object = new(attributes)
|
|
|
|
object.save
|
|
|
|
object
|
|
|
|
end
|
|
|
|
|
2009-08-02 16:37:54 -07:00
|
|
|
def initialize(attributes = {})
|
2009-08-31 22:40:07 -07:00
|
|
|
merge_attributes(attributes)
|
2009-08-02 16:37:54 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def inspect
|
|
|
|
data = "#<#{self.class.name}"
|
2009-08-31 22:40:07 -07:00
|
|
|
for attribute in self.class.attributes
|
|
|
|
data << " #{attribute}=#{send(attribute).inspect}"
|
2009-08-02 16:37:54 -07:00
|
|
|
end
|
2009-08-17 18:34:44 -07:00
|
|
|
data << " ["
|
2009-10-01 23:22:47 -07:00
|
|
|
for member in self
|
|
|
|
data << "#{member.inspect},"
|
2009-08-02 16:37:54 -07:00
|
|
|
end
|
2009-10-14 21:55:53 -07:00
|
|
|
data.chop! unless self.empty?
|
2009-08-02 16:37:54 -07:00
|
|
|
data << "]>"
|
|
|
|
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
|
|
|
|
|
|
|
|
def merge_attributes(new_attributes = {})
|
|
|
|
for key, value in new_attributes
|
2009-08-31 22:40:07 -07:00
|
|
|
if aliased_key = self.class.aliases[key]
|
2009-09-14 21:36:24 -07:00
|
|
|
send("#{aliased_key}=", value)
|
2009-08-30 14:43:01 -07:00
|
|
|
else
|
2009-09-14 21:36:24 -07:00
|
|
|
send("#{key}=", value)
|
2009-08-30 14:43:01 -07:00
|
|
|
end
|
2009-08-04 20:09:08 -07:00
|
|
|
end
|
2009-08-17 18:34:44 -07:00
|
|
|
self
|
2009-08-04 20:09:08 -07:00
|
|
|
end
|
|
|
|
|
2009-10-29 23:35:28 -07:00
|
|
|
def new(attributes = {})
|
2009-10-30 00:11:50 -07:00
|
|
|
model.new(
|
2009-10-29 23:35:28 -07:00
|
|
|
attributes.merge!(
|
|
|
|
:collection => self,
|
|
|
|
:connection => connection
|
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def reload
|
|
|
|
self.clear.concat(all)
|
|
|
|
end
|
|
|
|
|
2009-08-02 16:37:54 -07:00
|
|
|
private
|
|
|
|
|
2009-08-04 10:51:54 -07:00
|
|
|
def remap_attributes(attributes, mapping)
|
|
|
|
for key, value in mapping
|
2009-08-17 18:34:44 -07:00
|
|
|
if attributes.key?(key)
|
2009-08-04 10:51:54 -07:00
|
|
|
attributes[value] = attributes.delete(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-02 16:37:54 -07:00
|
|
|
end
|
|
|
|
end
|