Class: Fog::Collection

Inherits:
Array
  • Object
show all
Extended by:
Attributes::ClassMethods
Includes:
Attributes::InstanceMethods
Defined in:
lib/fog/collection.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Attributes::ClassMethods

_load, aliases, attribute, attributes, identity, ignore_attributes, ignored_attributes

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

#initialize(attributes = {}) ⇒ Collection

Returns a new instance of Collection.



51
52
53
# File 'lib/fog/collection.rb', line 51

def initialize(attributes = {})
  merge_attributes(attributes)
end

Instance Attribute Details

#connectionObject

Returns the value of attribute connection.



38
39
40
# File 'lib/fog/collection.rb', line 38

def connection
  @connection
end

Class Method Details

.model(new_model = nil) ⇒ Object



30
31
32
33
34
35
36
# File 'lib/fog/collection.rb', line 30

def self.model(new_model=nil)
  if new_model == nil
    @model
  else
    @model = new_model
  end
end

Instance Method Details

#clearObject



40
41
42
43
# File 'lib/fog/collection.rb', line 40

def clear
  @loaded = true
  super
end

#create(attributes = {}) ⇒ Object



45
46
47
48
49
# File 'lib/fog/collection.rb', line 45

def create(attributes = {})
  object = new(attributes)
  object.save
  object
end

#inspectObject



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/fog/collection.rb', line 55

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"
  end
  data << "#{Thread.current[:formatador].indentation}>"
  data
end

#load(objects) ⇒ Object



79
80
81
82
83
84
85
# File 'lib/fog/collection.rb', line 79

def load(objects)
  clear
  for object in objects
    self << new(object)
  end
  self
end

#modelObject



87
88
89
# File 'lib/fog/collection.rb', line 87

def model
  self.class.instance_variable_get('@model')
end

#new(attributes = {}) ⇒ Object



91
92
93
94
95
96
97
98
# File 'lib/fog/collection.rb', line 91

def new(attributes = {})
  model.new(
    attributes.merge(
      :collection => self,
      :connection => connection
    )
  )
end

#reloadObject



100
101
102
103
104
# File 'lib/fog/collection.rb', line 100

def reload
  clear
  lazy_load
  self
end

#table(attributes = nil) ⇒ Object



106
107
108
# File 'lib/fog/collection.rb', line 106

def table(attributes = nil)
  Formatador.display_table(self.map {|instance| instance.attributes}, attributes)
end

#to_jsonObject



110
111
112
# File 'lib/fog/collection.rb', line 110

def to_json
  self.map {|member| member}.to_json
end