2009-08-02 19:37:54 -04:00
|
|
|
module Fog
|
|
|
|
class Model
|
|
|
|
|
2009-11-21 16:46:46 -05:00
|
|
|
def self._load(marshalled)
|
|
|
|
new(Marshal.load(marshalled))
|
|
|
|
end
|
|
|
|
|
2009-11-30 20:01:42 -05:00
|
|
|
def self.aliases
|
|
|
|
@aliases ||= {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.attributes
|
|
|
|
@attributes ||= []
|
|
|
|
end
|
|
|
|
|
2009-08-30 17:43:01 -04:00
|
|
|
def self.attribute(name, other_names = [])
|
|
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
|
|
attr_accessor :#{name}
|
|
|
|
EOS
|
2009-11-12 02:18:17 -05:00
|
|
|
@attributes ||= []
|
|
|
|
@attributes |= [name]
|
2009-08-30 17:43:01 -04:00
|
|
|
for other_name in [*other_names]
|
|
|
|
aliases[other_name] = name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-23 13:27:23 -04:00
|
|
|
def self.identity(name, other_names = [])
|
|
|
|
@identity = name
|
|
|
|
self.attribute(name, other_names)
|
|
|
|
end
|
|
|
|
|
2009-11-21 16:46:46 -05:00
|
|
|
def _dump
|
|
|
|
Marshal.dump(attributes)
|
|
|
|
end
|
|
|
|
|
2009-12-05 17:53:42 -05:00
|
|
|
attr_accessor :connection
|
|
|
|
|
2009-10-30 02:35:28 -04:00
|
|
|
def attributes
|
|
|
|
attributes = {}
|
|
|
|
for attribute in self.class.attributes
|
|
|
|
attributes[attribute] = send("#{attribute}")
|
|
|
|
end
|
|
|
|
attributes
|
|
|
|
end
|
|
|
|
|
|
|
|
def collection
|
|
|
|
@collection
|
|
|
|
end
|
|
|
|
|
2009-10-23 13:27:23 -04:00
|
|
|
def identity
|
|
|
|
send(self.class.instance_variable_get('@identity'))
|
|
|
|
end
|
|
|
|
|
2009-08-30 17:14:11 -04:00
|
|
|
def initialize(new_attributes = {})
|
|
|
|
merge_attributes(new_attributes)
|
2009-08-02 19:37:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def inspect
|
|
|
|
data = "#<#{self.class.name}"
|
2009-09-01 01:40:07 -04:00
|
|
|
for attribute in self.class.attributes
|
|
|
|
data << " #{attribute}=#{send(attribute).inspect}"
|
2009-08-02 19:37:54 -04:00
|
|
|
end
|
|
|
|
data << ">"
|
|
|
|
end
|
|
|
|
|
2009-08-30 17:14:11 -04:00
|
|
|
def merge_attributes(new_attributes = {})
|
|
|
|
for key, value in new_attributes
|
2009-09-01 01:40:07 -04:00
|
|
|
if aliased_key = self.class.aliases[key]
|
2009-09-15 00:36:24 -04:00
|
|
|
send("#{aliased_key}=", value)
|
2009-08-30 17:43:01 -04:00
|
|
|
else
|
2009-09-15 00:36:24 -04:00
|
|
|
send("#{key}=", value)
|
2009-08-30 17:43:01 -04:00
|
|
|
end
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
2009-08-06 01:55:09 -04:00
|
|
|
self
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
|
|
|
|
2009-11-12 01:22:13 -05:00
|
|
|
def new_record?
|
|
|
|
!identity
|
|
|
|
end
|
|
|
|
|
2009-10-23 13:27:23 -04:00
|
|
|
def reload
|
|
|
|
new_attributes = collection.get(identity).attributes
|
|
|
|
merge_attributes(new_attributes)
|
|
|
|
end
|
|
|
|
|
2009-11-21 16:56:39 -05:00
|
|
|
def requires(*args)
|
|
|
|
missing = []
|
|
|
|
for arg in [:connection] | args
|
|
|
|
missing << arg unless send("#{arg}")
|
|
|
|
end
|
|
|
|
unless missing.empty?
|
|
|
|
if missing.length == 1
|
|
|
|
raise(ArgumentError, "#{missing.first} is required for this operation")
|
|
|
|
else
|
|
|
|
raise(ArgumentError, "#{missing[0...-1].join(", ")} and #{missing[-1]} are required for this operation")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-02 19:37:54 -04:00
|
|
|
private
|
|
|
|
|
2009-10-23 12:42:51 -04:00
|
|
|
def collection=(new_collection)
|
|
|
|
@collection = new_collection
|
|
|
|
end
|
|
|
|
|
2009-08-04 13:51:54 -04:00
|
|
|
def remap_attributes(attributes, mapping)
|
|
|
|
for key, value in mapping
|
2009-08-17 21:34:44 -04:00
|
|
|
if attributes.key?(key)
|
2009-08-04 13:51:54 -04:00
|
|
|
attributes[value] = attributes.delete(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-02 19:37:54 -04:00
|
|
|
end
|
|
|
|
end
|