Module: Mongoid::Atomic

Extended by:
ActiveSupport::Concern
Included in:
Composable, Contextual::Mongo
Defined in:
build/mongoid-8.1/lib/mongoid/atomic.rb,
build/mongoid-8.1/lib/mongoid/atomic/modifiers.rb,
build/mongoid-8.1/lib/mongoid/atomic/paths/root.rb,
build/mongoid-8.1/lib/mongoid/atomic/paths/embedded.rb,
build/mongoid-8.1/lib/mongoid/atomic/paths/embedded/one.rb,
build/mongoid-8.1/lib/mongoid/atomic/paths/embedded/many.rb

Overview

This module contains the logic for supporting atomic operations against the database.

Defined Under Namespace

Modules: Paths Classes: Modifiers

Constant Summary collapse

UPDATES =
[
  :atomic_array_pushes,
  :atomic_array_pulls,
  :atomic_array_add_to_sets,
  :atomic_pulls,
  :delayed_atomic_sets,
  :delayed_atomic_pulls,
  :delayed_atomic_unsets
]

Instance Method Summary collapse

Instance Method Details

#add_atomic_pull(document) ⇒ Object

Add the document as an atomic pull.

Examples:

Add the atomic pull.

person.add_atomic_pull(address)

Parameters:

  • document (Document)

    The embedded document to pull.



36
37
38
39
40
41
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 36

def add_atomic_pull(document)
  document.flagged_for_destroy = true
  key = document.association_name.to_s
  delayed_atomic_pulls[key] ||= []
  delayed_atomic_pulls[key] << document
end

#add_atomic_unset(document) ⇒ Array<Document>

Add an atomic unset for the document.

Examples:

Add an atomic unset.

document.add_atomic_unset(doc)

Parameters:

  • document (Document)

    The child document.

Returns:



51
52
53
54
55
56
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 51

def add_atomic_unset(document)
  document.flagged_for_destroy = true
  key = document.association_name.to_s
  delayed_atomic_unsets[key] ||= []
  delayed_atomic_unsets[key] << document
end

#atomic_array_add_to_setsHash

For array fields these are the unique adds that need to happen.

Examples:

Get the array unique adds.

person.atomic_array_add_to_sets

Returns:

  • (Hash)

    The array add_to_sets.



94
95
96
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 94

def atomic_array_add_to_sets
  @atomic_array_add_to_sets ||= {}
end

#atomic_array_pullsHash

For array fields these are the pulls that need to happen.

Examples:

Get the array pulls.

person.atomic_array_pulls

Returns:

  • (Hash)

    The array pulls.



84
85
86
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 84

def atomic_array_pulls
  @atomic_array_pulls ||= {}
end

#atomic_array_pushesHash

For array fields these are the pushes that need to happen.

Examples:

Get the array pushes.

person.atomic_array_pushes

Returns:

  • (Hash)

    The array pushes.



74
75
76
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 74

def atomic_array_pushes
  @atomic_array_pushes ||= {}
end

#atomic_attribute_name(name) ⇒ String

Returns path of the attribute for modification

Examples:

Get path of the attribute

address.atomic_attribute_name(:city)

Returns:

  • (String)

    The path to the document attribute in the database



64
65
66
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 64

def atomic_attribute_name(name)
  embedded? ? "#{atomic_position}.#{name}" : name
end

#atomic_delete_modifierString

Get the removal modifier for the document. Will be nil on root documents, $unset on embeds_one, $set on embeds_many.

Examples:

Get the removal operator.

name.atomic_delete_modifier

Returns:

  • (String)

    The pull or unset operation.



138
139
140
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 138

def atomic_delete_modifier
  atomic_paths.delete_modifier
end

#atomic_insert_modifierString

Get the insertion modifier for the document. Will be nil on root documents, $set on embeds_one, $push on embeds_many.

Examples:

Get the insert operation.

name.atomic_insert_modifier

Returns:

  • (String)

    The pull or set operator.



149
150
151
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 149

def atomic_insert_modifier
  atomic_paths.insert_modifier
end

#atomic_pathString

Return the path to this Document in JSON notation, used for atomic updates via $set in MongoDB.

Examples:

Get the path to this document.

address.atomic_path

Returns:

  • (String)

    The path to the document in the database.



160
161
162
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 160

def atomic_path
  atomic_paths.path
end

#atomic_pathsObject

Get the atomic paths utility for this document.

Examples:

Get the atomic paths.

document.atomic_paths

Returns:

  • (Object)

    The associated path.



180
181
182
183
184
185
186
187
188
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 180

def atomic_paths
  @atomic_paths ||= begin
    if _association
      _association.path(self)
    else
      Atomic::Paths::Root.new(self)
    end
  end
end

#atomic_positionString

Returns the positional operator of this document for modification.

Examples:

Get the positional operator.

address.atomic_position

Returns:

  • (String)

    The positional operator with indexes.



170
171
172
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 170

def atomic_position
  atomic_paths.position
end

#atomic_pullsArray<Hash>

Get all the attributes that need to be pulled.

Examples:

Get the pulls.

person.atomic_pulls

Returns:

  • (Array<Hash>)

    The $pullAll operations.



196
197
198
199
200
201
202
203
204
205
206
207
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 196

def atomic_pulls
  pulls = {}
  delayed_atomic_pulls.each_pair do |_, docs|
    path = nil
    ids = docs.map do |doc|
      path ||= doc.flag_as_destroyed
      doc._id
    end
    pulls[path] = { "_id" => { "$in" => ids }} and path = nil
  end
  pulls
end

#atomic_pushesHash

Get all the push attributes that need to occur.

Examples:

Get the pushes.

person.atomic_pushes

Returns:

  • (Hash)

    The $push and $each operations.



215
216
217
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 215

def atomic_pushes
  pushable? ? { atomic_position => as_attributes } : {}
end

#atomic_setsHash

Get all the attributes that need to be set.

Examples:

Get the sets.

person.atomic_sets

Returns:

  • (Hash)

    The $set operations.



225
226
227
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 225

def atomic_sets
  updateable? ? setters : settable? ? { atomic_path => as_attributes } : {}
end

#atomic_unsetsArray<Hash>

Get all the attributes that need to be unset.

Examples:

Get the unsets.

person.atomic_unsets

Returns:

  • (Array<Hash>)

    The $unset operations.



235
236
237
238
239
240
241
242
243
244
245
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 235

def atomic_unsets
  unsets = []
  delayed_atomic_unsets.each_pair do |name, docs|
    path = nil
    docs.each do |doc|
      path ||= doc.flag_as_destroyed
    end
    unsets.push(path || name)
  end
  unsets
end

#atomic_updates(_use_indexes = false) ⇒ Hash Also known as: _updates

Note:

MongoDB does not allow “conflicting modifications” to be performed in a single operation. Conflicting modifications are detected by the ‘haveConflictingMod’ function in MongoDB. Examination of the code suggests that two modifications (a $set and a $push with $each, for example) conflict if:

(1) the key paths being modified are equal.
(2) one key path is a prefix of the other.

So a $set of ‘addresses.0.street’ will conflict with a $push and $each to ‘addresses’, and we will need to split our update into two pieces. We do not, however, attempt to match MongoDB’s logic exactly. Instead, we assume that two updates conflict if the first component of the two key paths matches.

Get all the atomic updates that need to happen for the current Document. This includes all changes that need to happen in the entire hierarchy that exists below where the save call was made.

Examples:

Get the updates that need to occur.

person.atomic_updates(children)

Returns:

  • (Hash)

    The updates and their modifiers.



119
120
121
122
123
124
125
126
127
128
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 119

def atomic_updates(_use_indexes = false)
  process_flagged_destroys
  mods = Modifiers.new
  generate_atomic_updates(mods, self)
  _descendants.each do |child|
    child.process_flagged_destroys
    generate_atomic_updates(mods, child)
  end
  mods
end

#delayed_atomic_pullsHash

Get a hash of atomic pulls that are pending.

Examples:

Get the atomic pulls.

document.delayed_atomic_pulls

Returns:

  • (Hash)

    name/document pairs.



263
264
265
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 263

def delayed_atomic_pulls
  @delayed_atomic_pulls ||= {}
end

#delayed_atomic_setsHash

Get all the atomic sets that have had their saves delayed.

Examples:

Get the delayed atomic sets.

person.delayed_atomic_sets

Returns:

  • (Hash)

    The delayed $sets.



253
254
255
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 253

def delayed_atomic_sets
  @delayed_atomic_sets ||= {}
end

#delayed_atomic_unsetsHash

Get the delayed atomic unsets.

Examples:

Get the delayed atomic unsets.

document.delayed_atomic_unsets

Returns:

  • (Hash)

    The atomic unsets



273
274
275
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 273

def delayed_atomic_unsets
  @delayed_atomic_unsets ||= {}
end

#flag_as_destroyedString

Flag the document as destroyed and return the atomic path.

Examples:

Flag destroyed and return path.

document.flag_as_destroyed

Returns:

  • (String)

    The atomic path.



283
284
285
286
287
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 283

def flag_as_destroyed
  self.destroyed = true
  self.flagged_for_destroy = false
  atomic_path
end

#flagged_destroysArray<Proc>

Get the flagged destroys.

Examples:

Get the flagged destroy.

document.flagged_destroys

Returns:

  • (Array<Proc>)

    The flagged destroys.



295
296
297
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 295

def flagged_destroys
  @flagged_destroys ||= []
end

#process_flagged_destroysArray

Process all the pending flagged destroys from nested attributes.

Examples:

Process all the pending flagged destroys.

document.process_flagged_destroys

Returns:

  • (Array)

    The cleared array.



305
306
307
308
309
310
# File 'build/mongoid-8.1/lib/mongoid/atomic.rb', line 305

def process_flagged_destroys
  _assigning do
    flagged_destroys.each(&:call)
  end
  flagged_destroys.clear
end