Class: Mongoid::Contextual::Memory

Inherits:
Object
  • Object
show all
Includes:
Enumerable, Aggregable::Memory, Queryable, Relations::Eager
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.

Attributes included from Relations::Eager

#eager_loaded

Instance Method Summary collapse

Methods included from Queryable

#blank?

Methods included from Relations::Eager

#eager_load, #eager_load_one, #eager_loadable?, #preload, #with_eager_loading

Methods included from Aggregable::Memory

#avg, #max, #min, #sum

Constructor Details

#initialize(criteria) ⇒ Memory

Create the new in memory context.

Examples:

Create the new context.

Memory.new(criteria)

Parameters:

Since:

  • 3.0.0



145
146
147
148
149
150
151
152
153
154
# File 'lib/mongoid/contextual/memory.rb', line 145

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.



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

def documents
  @documents
end

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



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

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

#pathObject (readonly)

Returns the value of attribute path.



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

def path
  @path
end

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



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

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

#rootObject (readonly)

Returns the value of attribute root.



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

def root
  @root
end

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



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

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

#selectorObject (readonly)

Returns the value of attribute selector.



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

def selector
  @selector
end

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



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

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.

Since:

  • 3.0.0



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.

Since:

  • 3.0.0



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

def delete
  deleted = count
  removed = map do |doc|
    prepare_remove(doc)
    doc.as_document
  end
  unless removed.empty?
    collection.find(selector).update_one("$pullAll" => { path => removed })
  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.

Since:

  • 3.0.0



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

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.

Since:

  • 3.0.0



83
84
85
# File 'lib/mongoid/contextual/memory.rb', line 83

def distinct(field)
  documents.map{ |doc| doc.send(field) }.uniq
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.

Since:

  • 3.0.0



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

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.

Since:

  • 3.0.0



117
118
119
# File 'lib/mongoid/contextual/memory.rb', line 117

def exists?
  count > 0
end

#firstDocument 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

Returns:

Since:

  • 3.0.0



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

def first
  doc = documents.first
  eager_load_one(doc)
  doc
end

#lastDocument

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

Examples:

Get the last document.

context.last

Returns:

Since:

  • 3.0.0



164
165
166
167
168
# File 'lib/mongoid/contextual/memory.rb', line 164

def last
  doc = documents.last
  eager_load_one(doc)
  doc
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.

Since:

  • 3.0.0



178
179
180
# File 'lib/mongoid/contextual/memory.rb', line 178

def length
  documents.length
end

#limit(value) ⇒ Mongo

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:

  • (Mongo)

    The context.

Since:

  • 3.0.0



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

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

#pluck(*fields) ⇒ Object



198
199
200
201
202
203
204
205
206
207
# File 'lib/mongoid/contextual/memory.rb', line 198

def pluck(*fields)
  fields = Array.wrap(fields)
  documents.map do |doc|
    if fields.size == 1
      doc[fields.first]
    else
      fields.map { |n| doc[n] }.compact
    end
  end.compact
end

#skip(value) ⇒ Mongo

Skips the provided number of documents.

Examples:

Skip the documents.

context.skip(20)

Parameters:

  • value (Integer)

    The number of documents to skip.

Returns:

  • (Mongo)

    The context.

Since:

  • 3.0.0



219
220
221
222
# File 'lib/mongoid/contextual/memory.rb', line 219

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

#sort(values) ⇒ Mongo

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:

  • (Mongo)

    The context.

Since:

  • 3.0.0



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

def sort(values)
  in_place_sort(values) and self
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.

Since:

  • 3.0.0



249
250
251
# File 'lib/mongoid/contextual/memory.rb', line 249

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.

Since:

  • 3.0.0



263
264
265
# File 'lib/mongoid/contextual/memory.rb', line 263

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