Class: Mongoid::Contextual::None

Inherits:
Object
  • Object
show all
Includes:
Enumerable, Aggregable::None, Queryable
Defined in:
lib/mongoid/contextual/none.rb

Overview

Context object used for performing bulk query and persistence operations on a null set. The method interface of this class is consistent with Mongoid::Contextual::Mongo.

Instance Attribute Summary collapse

Attributes included from Queryable

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

Instance Method Summary collapse

Methods included from Queryable

#blank?

Methods included from Aggregable::None

#aggregates, #avg, #min, #sum

Constructor Details

#initialize(criteria) ⇒ None

Create the new null context.

Examples:

Create the new context.

Null.new(criteria)

Parameters:



120
121
122
# File 'lib/mongoid/contextual/none.rb', line 120

def initialize(criteria)
  @criteria, @klass = criteria, criteria.klass
end

Instance Attribute Details

#criteriaObject (readonly)

Returns the value of attribute criteria.



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

def criteria
  @criteria
end

#klassObject (readonly)

Returns the value of attribute klass.



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

def klass
  @klass
end

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.



27
28
29
# File 'lib/mongoid/contextual/none.rb', line 27

def ==(other)
  other.is_a?(None)
end

#distinct(_field) ⇒ Array

Get the distinct field values in null context.

Examples:

Get the distinct values in null context.

context.distinct(:name)

Parameters:

  • _field (String | Symbol)

    The name of the field.

Returns:

  • (Array)

    An empty Array.



39
40
41
# File 'lib/mongoid/contextual/none.rb', line 39

def distinct(_field)
  []
end

#eachEnumerator

Iterate over the null context. There are no documents to iterate over in this case.

Examples:

Iterate over the null context.

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

Returns:

  • (Enumerator)

    The enumerator.



52
53
54
55
56
57
58
59
# File 'lib/mongoid/contextual/none.rb', line 52

def each
  if block_given?
    [].each { |doc| yield(doc) }
    self
  else
    to_enum
  end
end

#exists?(id_or_conditions = :none) ⇒ false

Do any documents exist for the context.

Examples:

Do any documents exist in the null context.

context.exists?

Do any documents exist for given _id.

context.exists?(BSON::ObjectId(...))

Do any documents exist for given conditions.

context.exists?(name: "...")

Parameters:

  • id_or_conditions (Hash | Object | false) (defaults to: :none)

    an _id to search for, a hash of conditions, nil or false.

Returns:

  • (false)

    Always false.



76
# File 'lib/mongoid/contextual/none.rb', line 76

def exists?(id_or_conditions = :none); false; end

#fifthnil

Always returns nil.

Examples:

Get the fifth document in null context.

context.fifth

Returns:

  • (nil)

    Always nil.



256
257
258
# File 'lib/mongoid/contextual/none.rb', line 256

def fifth
  nil
end

#fifth!Object

Always raises an error.

Examples:

Get the fifth document in null context.

context.fifth!

Raises:



266
267
268
# File 'lib/mongoid/contextual/none.rb', line 266

def fifth!
  raise_document_not_found_error
end

#first(limit = nil) ⇒ [] | nil Also known as: find_first, one

Always returns nil.

Examples:

Get the first document in null context.

context.first

Parameters:

  • limit (Integer) (defaults to: nil)

    The number of documents to return.

Returns:

  • ([] | nil)

    Empty array or nil.



132
133
134
# File 'lib/mongoid/contextual/none.rb', line 132

def first(limit = nil)
  [] unless limit.nil?
end

#first!Object

Always raises an error.

Examples:

Get the first document in null context.

context.first!

Raises:



142
143
144
# File 'lib/mongoid/contextual/none.rb', line 142

def first!
  raise_document_not_found_error
end

#fourthnil

Always returns nil.

Examples:

Get the fourth document in null context.

context.fourth

Returns:

  • (nil)

    Always nil.



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

def fourth
  nil
end

#fourth!Object

Always raises an error.

Examples:

Get the fourth document in null context.

context.fourth!

Raises:



246
247
248
# File 'lib/mongoid/contextual/none.rb', line 246

def fourth!
  raise_document_not_found_error
end

#last(limit = nil) ⇒ [] | nil

Always returns nil.

Examples:

Get the last document in null context.

context.last

Parameters:

  • limit (Integer) (defaults to: nil)

    The number of documents to return.

Returns:

  • ([] | nil)

    Empty array or nil.



154
155
156
# File 'lib/mongoid/contextual/none.rb', line 154

def last(limit = nil)
  [] unless limit.nil?
end

#last!Object

Always raises an error.

Examples:

Get the last document in null context.

context.last!

Raises:



164
165
166
# File 'lib/mongoid/contextual/none.rb', line 164

def last!
  raise_document_not_found_error
end

#lengthInteger Also known as: size

Always returns zero.

Examples:

Get the length of null context.

context.length

Returns:

  • (Integer)

    Always zero.



316
317
318
# File 'lib/mongoid/contextual/none.rb', line 316

def length
  entries.length
end

#pick(*_fields) ⇒ nil

Pick the field values in null context.

Examples:

Get the value for null context.

context.pick(:name)

Parameters:

  • *_fields ([ String | Symbol ]...)

    Field(s) to pick.

Returns:

  • (nil)

    Always return nil.



98
99
100
# File 'lib/mongoid/contextual/none.rb', line 98

def pick(*_fields)
  nil
end

#pluck(*_fields) ⇒ Array

Pluck the field values in null context.

Examples:

Get the values for null context.

context.pluck(:name)

Parameters:

  • *_fields ([ String | Symbol ]...)

    Field(s) to pluck.

Returns:

  • (Array)

    An empty Array.



86
87
88
# File 'lib/mongoid/contextual/none.rb', line 86

def pluck(*_fields)
  []
end

#secondnil

Always returns nil.

Examples:

Get the second document in null context.

context.second

Returns:

  • (nil)

    Always nil.



196
197
198
# File 'lib/mongoid/contextual/none.rb', line 196

def second
  nil
end

#second!Object

Always raises an error.

Examples:

Get the second document in null context.

context.second!

Raises:



206
207
208
# File 'lib/mongoid/contextual/none.rb', line 206

def second!
  raise_document_not_found_error
end

#second_to_lastnil

Always returns nil.

Examples:

Get the second to last document in null context.

context.second_to_last

Returns:

  • (nil)

    Always nil.



276
277
278
# File 'lib/mongoid/contextual/none.rb', line 276

def second_to_last
  nil
end

#second_to_last!Object

Always raises an error.

Examples:

Get the second to last document in null context.

context.second_to_last!

Raises:



286
287
288
# File 'lib/mongoid/contextual/none.rb', line 286

def second_to_last!
  raise_document_not_found_error
end

#take(limit = nil) ⇒ [] | nil

Returns nil or empty array.

Examples:

Take a document in null context.

context.take

Parameters:

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

    The number of documents to take or nil.

Returns:

  • ([] | nil)

    Empty array or nil.



176
177
178
# File 'lib/mongoid/contextual/none.rb', line 176

def take(limit = nil)
  limit ? [] : nil
end

#take!Object

Always raises an error.

Examples:

Take a document in null context.

context.take!

Raises:



186
187
188
# File 'lib/mongoid/contextual/none.rb', line 186

def take!
  raise_document_not_found_error
end

#tally(_field) ⇒ Hash

Tally the field values in null context.

Examples:

Get the values for null context.

context.tally(:name)

Parameters:

  • _field (String | Symbol)

    Field to tally.

Returns:

  • (Hash)

    An empty Hash.



110
111
112
# File 'lib/mongoid/contextual/none.rb', line 110

def tally(_field)
  {}
end

#thirdnil

Always returns nil.

Examples:

Get the third document in null context.

context.third

Returns:

  • (nil)

    Always nil.



216
217
218
# File 'lib/mongoid/contextual/none.rb', line 216

def third
  nil
end

#third!Object

Always raises an error.

Examples:

Get the third document in null context.

context.third!

Raises:



226
227
228
# File 'lib/mongoid/contextual/none.rb', line 226

def third!
  raise_document_not_found_error
end

#third_to_lastnil

Always returns nil.

Examples:

Get the third to last document in null context.

context.third_to_last

Returns:

  • (nil)

    Always nil.



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

def third_to_last
  nil
end

#third_to_last!Object

Always raises an error.

Examples:

Get the third to last document in null context.

context.third_to_last!

Raises:



306
307
308
# File 'lib/mongoid/contextual/none.rb', line 306

def third_to_last!
  raise_document_not_found_error
end