Class: CouchPotato::Persistence::SimpleProperty

Inherits:
Object
  • Object
show all
Defined in:
lib/couch_potato/persistence/simple_property.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(owner_clazz, name, options = {}) ⇒ SimpleProperty

Returns a new instance of SimpleProperty.



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/couch_potato/persistence/simple_property.rb', line 6

def initialize(owner_clazz, name, options = {})
  self.name = name
  self.type = options[:type]
  owner_clazz.class_eval do
    attr_reader "#{name}_was"
    
    def initialize(attributes = {})
      super attributes
      assign_attribute_copies_for_dirty_tracking
    end
    
    def assign_attribute_copies_for_dirty_tracking
      attributes.each do |name, value|
        self.instance_variable_set("@#{name}_was", clone_attribute(value))
      end if attributes
    end
    private :assign_attribute_copies_for_dirty_tracking

    define_method "#{name}" do
      value = self.instance_variable_get("@#{name}")
      default = options[:default]
      value.blank? ? default : value
    end
    
    define_method "#{name}=" do |value|
      self.instance_variable_set("@#{name}", value)
    end
    
    define_method "#{name}?" do
      !self.send(name).nil? && !self.send(name).try(:blank?)
    end
    
    define_method "#{name}_changed?" do
      !self.instance_variable_get("@#{name}_not_changed") && self.send(name) != self.send("#{name}_was")
    end
    
    define_method "#{name}_not_changed" do
      self.instance_variable_set("@#{name}_not_changed", true)
    end
  end
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/couch_potato/persistence/simple_property.rb', line 4

def name
  @name
end

#typeObject

Returns the value of attribute type.



4
5
6
# File 'lib/couch_potato/persistence/simple_property.rb', line 4

def type
  @type
end

Instance Method Details

#build(object, json) ⇒ Object



48
49
50
51
52
53
54
55
56
# File 'lib/couch_potato/persistence/simple_property.rb', line 48

def build(object, json)
  value = json[name.to_s] || json[name.to_sym]
  typecasted_value =  if type
                        type.json_create value
                      else
                        value
                      end
  object.send "#{name}=", typecasted_value
end

#destroy(object) ⇒ Object



66
67
68
# File 'lib/couch_potato/persistence/simple_property.rb', line 66

def destroy(object)
  
end

#dirty?(object) ⇒ Boolean

Returns:

  • (Boolean)


58
59
60
# File 'lib/couch_potato/persistence/simple_property.rb', line 58

def dirty?(object)
  object.send("#{name}_changed?")
end

#save(object) ⇒ Object



62
63
64
# File 'lib/couch_potato/persistence/simple_property.rb', line 62

def save(object)
  
end

#serialize(json, object) ⇒ Object



70
71
72
# File 'lib/couch_potato/persistence/simple_property.rb', line 70

def serialize(json, object)
  json[name] = object.send name
end