mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
57 lines
1.4 KiB
Ruby
57 lines
1.4 KiB
Ruby
module Fog
|
|
class Model
|
|
|
|
extend Fog::Attributes::ClassMethods
|
|
include Fog::Attributes::InstanceMethods
|
|
|
|
attr_accessor :connection
|
|
|
|
def collection
|
|
@collection
|
|
end
|
|
|
|
def initialize(new_attributes = {})
|
|
merge_attributes(new_attributes)
|
|
end
|
|
|
|
def inspect
|
|
Thread.current[:formatador] ||= Formatador.new
|
|
data = "#{Thread.current[:formatador].indentation}<#{self.class.name}"
|
|
Thread.current[:formatador].indent do
|
|
unless self.class.attributes.empty?
|
|
data << "\n#{Thread.current[:formatador].indentation}"
|
|
data << self.class.attributes.map {|attribute| "#{attribute}=#{send(attribute).inspect}"}.join(",\n#{Thread.current[:formatador].indentation}")
|
|
end
|
|
end
|
|
data << "\n#{Thread.current[:formatador].indentation}>"
|
|
data
|
|
end
|
|
|
|
def reload
|
|
if data = collection.get(identity)
|
|
new_attributes = data.attributes
|
|
merge_attributes(new_attributes)
|
|
self
|
|
end
|
|
end
|
|
|
|
def to_json
|
|
attributes.to_json
|
|
end
|
|
|
|
def wait_for(timeout = 600, &block)
|
|
reload
|
|
Fog.wait_for(timeout) do
|
|
reload or raise StandardError.new("Reload failed, #{self.class} #{self.identity} went away.")
|
|
instance_eval(&block)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def collection=(new_collection)
|
|
@collection = new_collection
|
|
end
|
|
|
|
end
|
|
end
|