You are viewing documentation for version 1 of the AWS SDK for Ruby. Version 2 documentation can be found here.

Module: AWS::Record::DirtyTracking

Defined in:
lib/aws/record/dirty_tracking.rb

Overview

Provides a way to track changes in your records.

my_book = Book['bookid']

my_book.changed? #=> false
my_book.title #=> "My Book"
my_book.title = "My Awesome Book"
my_book.changed? #=> true

my_book = Book['bookid']

You can inspect further and get a list of changed attributes

my_book.changed #=> ['title']

Or you can get a more detailed description of the changes. #changes returns a hash of changed attributes (keys) with their old and new values.

my_book.changes
#=> { 'title' => ['My Book', 'My Awesome Book']

For every configured attribute you also get a handful of methods for inspecting changes on that attribute. Given the following attribute:

string_attr :title

You can now call any of the following methods:

  • title_changed?
  • title_change
  • title_was
  • reset_title!
  • title_will_change!

Given the title change from above:

my_book.title_changed? #=> true
my_book.title_change #=> ['My Book', 'My Awesome Book']
my_book.title_was #=> ['My Book']

my_book.reset_title!
my_book.title #=> 'My Book'

In-Place Editing

Dirty tracking works by comparing incoming attribute values upon assignment against the value that was there previously. If you use functions against the value that modify it (like gsub!) you must notify your record about the coming change.

my_book.title #=> 'My Book'
my_book.title_will_change!
my_book.title.gsub!(/My/, 'Your')
my_book.title_change #=> ['My Book', 'Your Book']

Partial Updates

Dirty tracking makes it possible to only persist those attributes that have changed since they were loaded. This speeds up requests against AWS when saving data.

Instance Method Summary collapse

Instance Method Details

#changedArray

Returns an array of attribute names that have changes.

book.changed #=> []
person.title = 'New Title'
book.changed #=> ['title']

Returns:

  • (Array)

    Returns an array of attribute names that have unsaved changes.



110
111
112
# File 'lib/aws/record/dirty_tracking.rb', line 110

def changed
  orig_values.keys
end

#changed?Boolean

Returns true if this model has unsaved changes.

b = Book.new(:title => 'My Book')
b.changed?
#=> true

New objects and objects freshly loaded should not have any changes:

b = Book.new
b.changed?      #=> false

b = Book.first
b.changed?      #=> false

Returns:

  • (Boolean)

    Returns true if any of the attributes have unsaved changes.



98
99
100
# File 'lib/aws/record/dirty_tracking.rb', line 98

def changed?
  !orig_values.empty?
end

#changesHash

Returns the changed attributes in a hash. Keys are attribute names, values are two value arrays. The first value is the previous attribute value, the second is the current attribute value.

book.title = 'New Title'
book.changes
#=> { 'title' => ['Old Title', 'New Title'] }

Returns:

  • (Hash)

    Returns a hash of attribute changes.



123
124
125
126
127
128
# File 'lib/aws/record/dirty_tracking.rb', line 123

def changes
  changed.inject({}) do |changes, attr_name|
    changes[attr_name] = attribute_change(attr_name)
    changes
  end
end