Class: Mongoid::Contextual::Memory

Inherits:
Object
  • Object
show all
Includes:
Enumerable, Association::EagerLoadable, Aggregable::Memory, Queryable, Positional
Defined in:
lib/mongoid/contextual/memory.rb

Instance Attribute Summary collapse

Attributes included from Queryable

#collection, #collection The collection to query against., #criteria, #criteria The criteria for the context., #klass, #klass The klass for the criteria.

Instance Method Summary collapse

Methods included from Positional

#positionally

Methods included from Queryable

#blank?

Methods included from Association::EagerLoadable

#eager_load, #eager_loadable?, #preload

Methods included from Aggregable::Memory

#aggregates, #avg, #max, #min, #sum

Constructor Details

#initialize(criteria) ⇒ Memory

Create the new in memory context.

Examples:

Create the new context.

Memory.new(criteria)

Parameters:



142
143
144
145
146
147
148
149
150
151
# File 'lib/mongoid/contextual/memory.rb', line 142

def initialize(criteria)
  @criteria, @klass = criteria, criteria.klass
  @documents = criteria.documents.select do |doc|
    @root ||= doc._root
    @collection ||= root.collection
    doc._matches?(criteria.selector)
  end
  apply_sorting
  apply_options
end

Instance Attribute Details

#documentsObject (readonly)

Returns the value of attribute documents.



19
20
21
# File 'lib/mongoid/contextual/memory.rb', line 19

def documents
  @documents
end

#matching The in memory documents that match the selector.(The) ⇒ Object (readonly)



19
# File 'lib/mongoid/contextual/memory.rb', line 19

attr_reader :documents, :path, :root, :selector

#pathObject (readonly)

Returns the value of attribute path.



19
20
21
# File 'lib/mongoid/contextual/memory.rb', line 19

def path
  @path
end

#path The atomic path.(Theatomicpath.) ⇒ Object (readonly)



19
# File 'lib/mongoid/contextual/memory.rb', line 19

attr_reader :documents, :path, :root, :selector

#rootObject (readonly)

Returns the value of attribute root.



19
20
21
# File 'lib/mongoid/contextual/memory.rb', line 19

def root
  @root
end

#root The root document.(Therootdocument.) ⇒ Object (readonly)



19
# File 'lib/mongoid/contextual/memory.rb', line 19

attr_reader :documents, :path, :root, :selector

#selectorObject (readonly)

Returns the value of attribute selector.



19
20
21
# File 'lib/mongoid/contextual/memory.rb', line 19

def selector
  @selector
end

#selector The root document selector.(Therootdocumentselector.) ⇒ Object (readonly)



19
# File 'lib/mongoid/contextual/memory.rb', line 19

attr_reader :documents, :path, :root, :selector

Instance Method Details

#==(other) ⇒ true | false

Check if the context is equal to the other object.

Examples:

Check equality.

context == []

Parameters:

  • other (Array)

    The other array.

Returns:

  • (true | false)

    If the objects are equal.



29
30
31
32
# File 'lib/mongoid/contextual/memory.rb', line 29

def ==(other)
  return false unless other.respond_to?(:entries)
  entries == other.entries
end

#deletenil Also known as: delete_all

Delete all documents in the database that match the selector.

Examples:

Delete all the documents.

context.delete

Returns:

  • (nil)

    Nil.



40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/mongoid/contextual/memory.rb', line 40

def delete
  deleted = count
  removed = map do |doc|
    prepare_remove(doc)
    doc.send(:as_attributes)
  end
  unless removed.empty?
    collection.find(selector).update_one(
      positionally(selector, "$pullAll" => { path => removed }),
      session: _session
    )
  end
  deleted
end

#destroynil Also known as: destroy_all

Destroy all documents in the database that match the selector.

Examples:

Destroy all the documents.

context.destroy

Returns:

  • (nil)

    Nil.



62
63
64
65
66
67
68
69
# File 'lib/mongoid/contextual/memory.rb', line 62

def destroy
  deleted = count
  each do |doc|
    documents.delete_one(doc)
    doc.destroy
  end
  deleted
end

#distinct(field) ⇒ Array<Object>

Get the distinct values in the db for the provided field.

Examples:

Get the distinct values.

context.distinct(:name)

Parameters:

  • field (String | Symbol)

    The name of the field.

Returns:

  • (Array<Object>)

    The distinct values for the field.



80
81
82
83
84
85
86
# File 'lib/mongoid/contextual/memory.rb', line 80

def distinct(field)
  if Mongoid.legacy_pluck_distinct
    documents.map{ |doc| doc.send(field) }.uniq
  else
    pluck(field).uniq
  end
end

#eachEnumerator

Iterate over the context. If provided a block, yield to a Mongoid document for each, otherwise return an enum.

Examples:

Iterate over the context.

context.each do |doc|
  puts doc.name
end

Returns:

  • (Enumerator)

    The enumerator.



97
98
99
100
101
102
103
104
105
106
# File 'lib/mongoid/contextual/memory.rb', line 97

def each
  if block_given?
    documents_for_iteration.each do |doc|
      yield(doc)
    end
    self
  else
    to_enum
  end
end

#exists?true | false

Do any documents exist for the context.

Examples:

Do any documents exist for the context.

context.exists?

Returns:

  • (true | false)

    If the count is more than zero.



114
115
116
# File 'lib/mongoid/contextual/memory.rb', line 114

def exists?
  any?
end

#first(limit = nil) ⇒ Document Also known as: one, find_first

Get the first document in the database for the criteria’s selector.

Examples:

Get the first document.

context.first

Parameters:

  • limit (Integer) (defaults to: nil)

    The number of documents to return.

Returns:



126
127
128
129
130
131
132
# File 'lib/mongoid/contextual/memory.rb', line 126

def first(limit = nil)
  if limit
    eager_load(documents.first(limit))
  else
    eager_load([documents.first]).first
  end
end

#inc(incs) ⇒ Enumerator

Increment a value on all documents.

Examples:

Perform the increment.

context.inc(likes: 10)

Parameters:

  • incs (Hash)

    The operations.

Returns:

  • (Enumerator)

    The enumerator.



161
162
163
164
165
# File 'lib/mongoid/contextual/memory.rb', line 161

def inc(incs)
  each do |document|
    document.inc(incs)
  end
end

#last(limit = nil) ⇒ Document

Get the last document in the database for the criteria’s selector.

Examples:

Get the last document.

context.last

Parameters:

  • limit (Integer) (defaults to: nil)

    The number of documents to return.

Returns:



175
176
177
178
179
180
181
# File 'lib/mongoid/contextual/memory.rb', line 175

def last(limit = nil)
  if limit
    eager_load(documents.last(limit))
  else
    eager_load([documents.last]).first
  end
end

#lengthInteger Also known as: size

Get the length of matching documents in the context.

Examples:

Get the length of matching documents.

context.length

Returns:

  • (Integer)

    The matching length.



222
223
224
# File 'lib/mongoid/contextual/memory.rb', line 222

def length
  documents.length
end

#limit(value) ⇒ Memory

Limits the number of documents that are returned.

Examples:

Limit the documents.

context.limit(20)

Parameters:

  • value (Integer)

    The number of documents to return.

Returns:



235
236
237
238
# File 'lib/mongoid/contextual/memory.rb', line 235

def limit(value)
  self.limiting = value
  self
end

#pick(*fields) ⇒ Object+

Pick the field values in memory.

Examples:

Get the values in memory.

context.pick(:name)

Parameters:

  • *fields (String | Symbol)

    Field(s) to pick.

Returns:

  • (Object, Array<Object>)

    The picked values.



266
267
268
269
270
# File 'lib/mongoid/contextual/memory.rb', line 266

def pick(*fields)
  if doc = documents.first
    pluck_from_doc(doc, *fields)
  end
end

#pluck(*fields) ⇒ Array<Object> | Array<Array<Object>>

Pluck the field values in memory.

Examples:

Get the values in memory.

context.pluck(:name)

Parameters:

  • *fields (String | Symbol)

    Field(s) to pluck.

Returns:

  • (Array<Object> | Array<Array<Object>>)

    The plucked values.



248
249
250
251
252
253
254
255
256
# File 'lib/mongoid/contextual/memory.rb', line 248

def pluck(*fields)
  if Mongoid.legacy_pluck_distinct
    documents.pluck(*fields)
  else
    documents.map do |doc|
      pluck_from_doc(doc, *fields)
    end
  end
end

#skip(value) ⇒ Memory

Skips the provided number of documents.

Examples:

Skip the documents.

context.skip(20)

Parameters:

  • value (Integer)

    The number of documents to skip.

Returns:



296
297
298
299
# File 'lib/mongoid/contextual/memory.rb', line 296

def skip(value)
  self.skipping = value
  self
end

#sort(values) ⇒ Memory

Sorts the documents by the provided spec.

Examples:

Sort the documents.

context.sort(name: -1, title: 1)

Parameters:

  • values (Hash)

    The sorting values as field/direction(1/-1) pairs.

Returns:



310
311
312
# File 'lib/mongoid/contextual/memory.rb', line 310

def sort(values)
  in_place_sort(values) and self
end

#take(limit = nil) ⇒ Document

Take the given number of documents from the database.

Examples:

Take a document.

context.take

Parameters:

  • limit (Integer | nil) (defaults to: nil)

    The number of documents to take or nil.

Returns:



191
192
193
194
195
196
197
# File 'lib/mongoid/contextual/memory.rb', line 191

def take(limit = nil)
  if limit
    eager_load(documents.take(limit))
  else
    eager_load([documents.first]).first
  end
end

#take!Document

Take the given number of documents from the database.

Examples:

Take a document.

context.take

Returns:



208
209
210
211
212
213
214
# File 'lib/mongoid/contextual/memory.rb', line 208

def take!
  if documents.empty?
    raise Errors::DocumentNotFound.new(klass, nil, nil)
  else
    eager_load([documents.first]).first
  end
end

#tally(field) ⇒ Hash

Tally the field values in memory.

Examples:

Get the counts of values in memory.

context.tally(:name)

Parameters:

  • field (String | Symbol)

    Field to tally.

Returns:

  • (Hash)

    The hash of counts.



280
281
282
283
284
285
286
# File 'lib/mongoid/contextual/memory.rb', line 280

def tally(field)
  return documents.each_with_object({}) do |d, acc|
    v = retrieve_value_at_path(d, field)
    acc[v] ||= 0
    acc[v] += 1
  end
end

#update(attributes = nil) ⇒ nil | false

Update the first matching document atomically.

Examples:

Update the matching document.

context.update(name: "Smiths")

Parameters:

  • attributes (Hash) (defaults to: nil)

    The new attributes for the document.

Returns:

  • (nil | false)

    False if no attributes were provided.



322
323
324
# File 'lib/mongoid/contextual/memory.rb', line 322

def update(attributes = nil)
  update_documents(attributes, [ first ])
end

#update_all(attributes = nil) ⇒ nil | false

Update all the matching documents atomically.

Examples:

Update all the matching documents.

context.update_all(name: "Smiths")

Parameters:

  • attributes (Hash) (defaults to: nil)

    The new attributes for each document.

Returns:

  • (nil | false)

    False if no attributes were provided.



334
335
336
# File 'lib/mongoid/contextual/memory.rb', line 334

def update_all(attributes = nil)
  update_documents(attributes, entries)
end