Class: Mongoid::Relations::Embedded::Many
- Includes:
- Batchable
- Defined in:
- lib/mongoid/relations/embedded/many.rb
Overview
This class handles the behaviour for a document that embeds many other documents within in it as an array.
Instance Attribute Summary
Attributes inherited from Proxy
Class Method Summary collapse
-
.builder(base, meta, object) ⇒ Builder
Return the builder that is responsible for generating the documents that will be used by this relation.
-
.embedded? ⇒ true
Returns true if the relation is an embedded one.
-
.foreign_key_suffix ⇒ nil
Returns the suffix of the foreign key field, either “_id” or “_ids”.
-
.macro ⇒ Symbol
Returns the macro for this relation.
-
.nested_builder(metadata, attributes, options) ⇒ NestedBuilder
Return the nested builder that is responsible for generating the documents that will be used by this relation.
-
.path(document) ⇒ Mongoid::Atomic::Paths::Embedded::Many
Get the path calculator for the supplied document.
-
.stores_foreign_key? ⇒ false
Tells the caller if this relation is one that stores the foreign key on its own objects.
-
.valid_options ⇒ Array<Symbol>
Get the valid options allowed with this relation.
-
.validation_default ⇒ true, false
Get the default validation setting for the relation.
Instance Method Summary collapse
-
#<<(*args) ⇒ Object
(also: #push)
Appends a document or array of documents to the relation.
-
#as_document ⇒ Array<Hash>
Get this relation as as its representation in the database.
-
#build(attributes = {}, type = nil) {|doc| ... } ⇒ Document
(also: #new)
Builds a new document in the relation and appends it to the target.
-
#clear ⇒ Many
Clear the relation.
-
#concat(docs) ⇒ Array<Document>
Appends an array of documents to the relation.
-
#count ⇒ Integer
Returns a count of the number of documents in the association that have actually been persisted to the database.
-
#delete(document) ⇒ Document?
Delete the supplied document from the target.
-
#delete_all(conditions = {}) ⇒ Integer
Delete all the documents in the association without running callbacks.
-
#delete_if ⇒ Many, Enumerator
Delete all the documents for which the provided block returns true.
-
#destroy_all(conditions = {}) ⇒ Integer
Destroy all the documents in the association whilst running callbacks.
-
#exists? ⇒ true, false
Determine if any documents in this relation exist in the database.
-
#find(*args) ⇒ Array<Document>, Document
Finds a document in this association through several different methods.
-
#in_memory ⇒ Array<Document>
Get all the documents in the relation that are loaded into memory.
-
#initialize(base, target, metadata) ⇒ Many
constructor
Instantiate a new embeds_many relation.
-
#pop(count = nil) ⇒ Document+
Pop documents off the relation.
-
#substitute(docs) ⇒ Many
Substitutes the supplied target documents for the existing documents in the relation.
-
#unscoped ⇒ Criteria
Return the relation with all previous scoping removed.
Methods included from Batchable
#batch_clear, #batch_insert, #batch_remove, #batch_replace
Methods included from Positional
Methods inherited from Many
#blank?, #create, #create!, #find_or_create_by, #find_or_create_by!, #find_or_initialize_by, #nil?, #respond_to?, #scoped, #serializable_hash
Methods inherited from Proxy
apply_ordering, #extend_proxies, #init, #klass, #reset_unloaded, #substitutable, #with
Methods included from Marshalable
Constructor Details
#initialize(base, target, metadata) ⇒ Many
Instantiate a new embeds_many relation.
235 236 237 238 239 240 241 242 243 244 |
# File 'lib/mongoid/relations/embedded/many.rb', line 235 def initialize(base, target, ) init(base, target, ) do target.each_with_index do |doc, index| integrate(doc) doc._index = index end @_unscoped = target.dup @target = scope(target) end end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Criteria, Object (private)
If the target array does not respond to the supplied method then try to find a named scope or criteria on the class and send the call there.
If the method exists on the array, use the default proxy behavior.
405 406 407 408 409 410 |
# File 'lib/mongoid/relations/embedded/many.rb', line 405 def method_missing(name, *args, &block) return super if target.respond_to?(name) klass.send(:with_scope, criteria) do criteria.public_send(name, *args, &block) end end |
Class Method Details
.builder(base, meta, object) ⇒ Builder
Return the builder that is responsible for generating the documents that will be used by this relation.
516 517 518 |
# File 'lib/mongoid/relations/embedded/many.rb', line 516 def builder(base, , object) Builders::Embedded::Many.new(base, , object) end |
.embedded? ⇒ true
Returns true if the relation is an embedded one. In this case always true.
529 530 531 |
# File 'lib/mongoid/relations/embedded/many.rb', line 529 def true end |
.foreign_key_suffix ⇒ nil
Returns the suffix of the foreign key field, either “_id” or “_ids”.
541 542 543 |
# File 'lib/mongoid/relations/embedded/many.rb', line 541 def foreign_key_suffix nil end |
.macro ⇒ Symbol
Returns the macro for this relation. Used mostly as a helper in reflection.
554 555 556 |
# File 'lib/mongoid/relations/embedded/many.rb', line 554 def macro :embeds_many end |
.nested_builder(metadata, attributes, options) ⇒ NestedBuilder
Return the nested builder that is responsible for generating the documents that will be used by this relation.
580 581 582 |
# File 'lib/mongoid/relations/embedded/many.rb', line 580 def nested_builder(, attributes, ) Builders::NestedAttributes::Many.new(, attributes, ) end |
.path(document) ⇒ Mongoid::Atomic::Paths::Embedded::Many
Get the path calculator for the supplied document.
595 596 597 |
# File 'lib/mongoid/relations/embedded/many.rb', line 595 def path(document) Mongoid::Atomic::Paths::Embedded::Many.new(document) end |
.stores_foreign_key? ⇒ false
Tells the caller if this relation is one that stores the foreign key on its own objects.
608 609 610 |
# File 'lib/mongoid/relations/embedded/many.rb', line 608 def stores_foreign_key? false end |
.valid_options ⇒ Array<Symbol>
Get the valid options allowed with this relation.
620 621 622 623 624 625 |
# File 'lib/mongoid/relations/embedded/many.rb', line 620 def [ :as, :cascade_callbacks, :cyclic, :order, :store_as, :before_add, :after_add, :before_remove, :after_remove ] end |
.validation_default ⇒ true, false
Get the default validation setting for the relation. Determines if by default a validates associated will occur.
636 637 638 |
# File 'lib/mongoid/relations/embedded/many.rb', line 636 def validation_default true end |
Instance Method Details
#<<(*args) ⇒ Object Also known as: push
Appends a document or array of documents to the relation. Will set the parent and update the index in the process.
23 24 25 26 27 28 29 30 31 |
# File 'lib/mongoid/relations/embedded/many.rb', line 23 def <<(*args) docs = args.flatten return concat(docs) if docs.size > 1 if doc = docs.first append(doc) doc.save if persistable? && !_assigning? end self end |
#as_document ⇒ Array<Hash>
Get this relation as as its representation in the database.
42 43 44 45 46 47 48 |
# File 'lib/mongoid/relations/embedded/many.rb', line 42 def as_document attributes = [] _unscoped.each do |doc| attributes.push(doc.as_document) end attributes end |
#build(attributes = {}, options = {}, type = nil) ⇒ Document #build(attributes = {}, type = nil) ⇒ Document Also known as: new
Builds a new document in the relation and appends it to the target. Takes an optional type if you want to specify a subclass.
81 82 83 84 85 86 87 88 89 |
# File 'lib/mongoid/relations/embedded/many.rb', line 81 def build(attributes = {}, type = nil) doc = Factory.build(type || .klass, attributes) append(doc) doc.apply_post_processed_defaults yield(doc) if block_given? doc.run_callbacks(:build) { doc } base._reset_memoized_children! doc end |
#clear ⇒ Many
Clear the relation. Will delete the documents from the db if they are already persisted.
99 100 101 102 |
# File 'lib/mongoid/relations/embedded/many.rb', line 99 def clear batch_clear(target.dup) self end |
#concat(docs) ⇒ Array<Document>
Appends an array of documents to the relation. Performs a batch insert of the documents instead of persisting one at a time.
61 62 63 64 |
# File 'lib/mongoid/relations/embedded/many.rb', line 61 def concat(docs) batch_insert(docs) unless docs.empty? self end |
#count ⇒ Integer
Returns a count of the number of documents in the association that have actually been persisted to the database.
Use #size if you want the total number of documents.
114 115 116 |
# File 'lib/mongoid/relations/embedded/many.rb', line 114 def count target.select { |doc| doc.persisted? }.size end |
#delete(document) ⇒ Document?
Delete the supplied document from the target. This method is proxied in order to reindex the array after the operation occurs.
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
# File 'lib/mongoid/relations/embedded/many.rb', line 129 def delete(document) execute_callback :before_remove, document doc = target.delete_one(document) if doc && !_binding? _unscoped.delete_one(doc) if _assigning? base.add_atomic_pull(doc) else doc.delete(suppress: true) unbind_one(doc) end end reindex execute_callback :after_remove, document doc end |
#delete_all(conditions = {}) ⇒ Integer
Delete all the documents in the association without running callbacks.
157 158 159 |
# File 'lib/mongoid/relations/embedded/many.rb', line 157 def delete_all(conditions = {}) remove_all(conditions, :delete) end |
#delete_if ⇒ Many, Enumerator
Delete all the documents for which the provided block returns true.
172 173 174 175 176 177 178 179 180 181 182 |
# File 'lib/mongoid/relations/embedded/many.rb', line 172 def delete_if if block_given? dup_target = target.dup dup_target.each do |doc| delete(doc) if yield(doc) end self else super end end |
#destroy_all(conditions = {}) ⇒ Integer
Destroy all the documents in the association whilst running callbacks.
195 196 197 |
# File 'lib/mongoid/relations/embedded/many.rb', line 195 def destroy_all(conditions = {}) remove_all(conditions, :destroy) end |
#exists? ⇒ true, false
Determine if any documents in this relation exist in the database.
205 206 207 |
# File 'lib/mongoid/relations/embedded/many.rb', line 205 def exists? count > 0 end |
#find(*args) ⇒ Array<Document>, Document
Finds a document in this association through several different methods.
221 222 223 |
# File 'lib/mongoid/relations/embedded/many.rb', line 221 def find(*args) criteria.find(*args) end |
#in_memory ⇒ Array<Document>
Get all the documents in the relation that are loaded into memory.
254 255 256 |
# File 'lib/mongoid/relations/embedded/many.rb', line 254 def in_memory target end |
#pop(count = nil) ⇒ Document+
Pop documents off the relation. This can be a single document or multiples, and will automatically persist the changes.
273 274 275 276 277 278 279 280 281 |
# File 'lib/mongoid/relations/embedded/many.rb', line 273 def pop(count = nil) if count if docs = target[target.size - count, target.size] docs.each { |doc| delete(doc) } end else delete(target[-1]) end end |
#substitute(docs) ⇒ Many
Substitutes the supplied target documents for the existing documents in the relation.
294 295 296 297 |
# File 'lib/mongoid/relations/embedded/many.rb', line 294 def substitute(docs) batch_replace(docs) self end |
#unscoped ⇒ Criteria
Return the relation with all previous scoping removed. This is the exact representation of the docs in the database.
308 309 310 311 312 313 |
# File 'lib/mongoid/relations/embedded/many.rb', line 308 def unscoped criterion = klass.unscoped criterion. = true criterion.documents = _unscoped.delete_if(&:marked_for_destruction?) criterion end |