class Mongoid::Association::Embedded::EmbedsMany::Proxy

Public Class Methods

new(base, target, association) click to toggle source

Instantiate a new embeds_many relation.

@example Create the new relation.

Many.new(person, addresses, association)

@param [ Document ] base The document this relation hangs off of. @param [ Array<Document> ] target The child documents of the relation. @param [ Association ] association The association metadata

@return [ Many ] The proxy.

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 226
def initialize(base, target, association)
  init(base, target, association) do
    _target.each_with_index do |doc, index|
      integrate(doc)
      doc._index = index
    end
    @_unscoped = _target.dup
    @_target = scope(_target)
  end
end

Private Class Methods

embedded?() click to toggle source

Returns true if the relation is an embedded one. In this case always true.

@example Is the relation embedded?

Association::Embedded::EmbedsMany.embedded?

@return [ true ] true.

@since 2.0.0.rc.1

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 509
def embedded?
  true
end
foreign_key_suffix() click to toggle source

Returns the suffix of the foreign key field, either “_id” or “_ids”.

@example Get the suffix for the foreign key.

Association::Embedded::EmbedsMany.foreign_key_suffix

@return [ nil ] nil.

@since 3.0.0

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 521
def foreign_key_suffix
  nil
end

Public Instance Methods

<<(*args) click to toggle source

Appends a document or array of documents to the relation. Will set the parent and update the index in the process.

@example Append a document.

person.addresses << address

@example Push a document.

person.addresses.push(address)

@param [ Document, Array<Document> ] args Any number of documents.

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 21
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
Also aliased as: push
as_document() click to toggle source

Get this relation as as its representation in the database.

@example Convert the relation to an attributes hash.

person.addresses.as_document

@return [ Array<Hash> ] The relation as stored in the db.

@since 2.0.0.rc.1

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 41
def as_document
  as_attributes.collect { |attrs| BSON::Document.new(attrs) }
end
build(attributes = {}, type = nil) { |doc| ... } click to toggle source

Builds a new document in the relation and appends it to the target. Takes an optional type if you want to specify a subclass.

@example Build a new document on the relation.

person.people.build(:name => "Bozo")

@param [ Hash ] attributes The attributes to build the document with. @param [ Class ] type Optional class to build the document with.

@return [ Document ] The new document.

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 71
def build(attributes = {}, type = nil)
  doc = Factory.build(type || _association.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
Also aliased as: new
clear() click to toggle source

Clear the relation. Will delete the documents from the db if they are already persisted.

@example Clear the relation.

person.addresses.clear

@return [ self ] The empty relation.

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 90
def clear
  batch_clear(_target.dup)
  self
end
concat(docs) click to toggle source

Appends an array of documents to the relation. Performs a batch insert of the documents instead of persisting one at a time.

@example Concat with other documents.

person.addresses.concat([ address_one, address_two ])

@param [ Array<Document> ] docs The docs to add.

@return [ Array<Document> ] The documents.

@since 2.4.0

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 56
def concat(docs)
  batch_insert(docs) unless docs.empty?
  self
end
count() click to toggle source

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.

@example Get the count of persisted documents.

person.addresses.count

@return [ Integer ] The total number of persisted embedded docs, as

flagged by the #persisted? method.
# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 105
def count
  _target.select { |doc| doc.persisted? }.size
end
delete(document) click to toggle source

Delete the supplied document from the target. This method is proxied in order to reindex the array after the operation occurs.

@example Delete the document from the relation.

person.addresses.delete(address)

@param [ Document ] document The document to be deleted.

@return [ Document, nil ] The deleted document or nil if nothing deleted.

@since 2.0.0.rc.1

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 120
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 = {}) click to toggle source

Delete all the documents in the association without running callbacks.

@example Delete all documents from the relation.

person.addresses.delete_all

@example Conditionally delete documents from the relation.

person.addresses.delete_all({ :street => "Bond" })

@param [ Hash ] conditions Conditions on which documents to delete.

@return [ Integer ] The number of documents deleted.

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 148
def delete_all(conditions = {})
  remove_all(conditions, :delete)
end
delete_if() { |doc| ... } click to toggle source

Delete all the documents for which the provided block returns true.

@example Delete the matching documents.

person.addresses.delete_if do |doc|
  doc.state == "GA"
end

@return [ Many, Enumerator ] The relation or an enumerator if no

block was provided.

@since 3.1.0

Calls superclass method
# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 163
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 = {}) click to toggle source

Destroy all the documents in the association whilst running callbacks.

@example Destroy all documents from the relation.

person.addresses.destroy_all

@example Conditionally destroy documents from the relation.

person.addresses.destroy_all({ :street => "Bond" })

@param [ Hash ] conditions Conditions on which documents to destroy.

@return [ Integer ] The number of documents destroyed.

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 186
def destroy_all(conditions = {})
  remove_all(conditions, :destroy)
end
exists?() click to toggle source

Determine if any documents in this relation exist in the database.

@example Are there persisted documents?

person.posts.exists?

@return [ true, false ] True is persisted documents exist, false if not.

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 196
def exists?
  count > 0
end
find(*args) click to toggle source

Finds a document in this association through several different methods.

@example Find a document by its id.

person.addresses.find(BSON::ObjectId.new)

@example Find documents for multiple ids.

person.addresses.find([ BSON::ObjectId.new, BSON::ObjectId.new ])

@param [ Array<Object> ] args Various arguments.

@return [ Array<Document>, Document ] A single or multiple documents.

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 212
def find(*args)
  criteria.find(*args)
end
in_memory() click to toggle source

Get all the documents in the relation that are loaded into memory.

@example Get the in memory documents.

relation.in_memory

@return [ Array<Document> ] The documents in memory.

@since 2.1.0

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 245
def in_memory
  _target
end
new(attributes = {}, type = nil)
Alias for: build
pop(count = nil) click to toggle source

Pop documents off the relation. This can be a single document or multiples, and will automatically persist the changes.

@example Pop a single document.

relation.pop

@example Pop multiple documents.

relation.pop(3)

@param [ Integer ] count The number of documents to pop, or 1 if not

provided.

@return [ Document, Array<Document> ] The popped document(s).

@since 3.0.0

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 264
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
push(*args)
Alias for: <<
substitute(docs) click to toggle source

Substitutes the supplied target documents for the existing documents in the relation.

@example Substitute the relation's target.

person.addresses.substitute([ address ])

@param [ Array<Document> ] docs The replacement docs.

@return [ Many ] The proxied relation.

@since 2.0.0.rc.1

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 285
def substitute(docs)
  batch_replace(docs)
  self
end
unscoped() click to toggle source

Return the relation with all previous scoping removed. This is the exact representation of the docs in the database.

@example Get the unscoped documents.

person.addresses.unscoped

@return [ Criteria ] The unscoped relation.

@since 2.4.0

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 299
def unscoped
  criterion = klass.unscoped
  criterion.embedded = true
  criterion.documents = _unscoped.delete_if(&:marked_for_destruction?)
  criterion
end

Private Instance Methods

_unscoped() click to toggle source

Get the internal unscoped documents.

@example Get the unscoped documents.

relation._unscoped

@return [ Array<Document> ] The unscoped documents.

@since 2.4.0

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 472
def _unscoped
  @_unscoped ||= []
end
_unscoped=(docs) click to toggle source

Set the internal unscoped documents.

@example Set the unscoped documents.

relation._unscoped = docs

@param [ Array<Document> ] docs The documents.

@return [ Array<Document ] The unscoped docs.

@since 2.4.0

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 486
def _unscoped=(docs)
  @_unscoped = docs
end
append(document) click to toggle source

Appends the document to the target array, updating the index on the document at the same time.

@example Append to the document.

relation.append(document)

@param [ Document ] document The document to append to the target.

@since 2.0.0.rc.1

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 321
def append(document)
  execute_callback :before_add, document
  unless object_already_related?(document)
    _target.push(*scope([document]))
  end
  _unscoped.push(document)
  integrate(document)
  document._index = _unscoped.size - 1
  execute_callback :after_add, document
end
as_attributes() click to toggle source
# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 490
def as_attributes
  attributes = []
  _unscoped.each do |doc|
    attributes.push(doc.as_document)
  end
  attributes
end
binding() click to toggle source

Instantiate the binding associated with this relation.

@example Create the binding.

relation.binding([ address ])

@return [ Binding ] The many binding.

@since 2.0.0.rc.1

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 340
def binding
  Binding.new(_base, _target, _association)
end
criteria() click to toggle source

Returns the “#{criteria}”# object for the target class with its documents set to target.

@example Get a criteria for the relation.

relation.criteria

@return [ Criteria ] A new criteria.

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 351
def criteria
  @criteria ||= _association.criteria(_base, _target)
end
delete_one(document) click to toggle source

Deletes one document from the target and unscoped.

@api private

@example Delete one document.

relation.delete_one(doc)

@param [ Document ] document The document to delete.

@since 2.4.7

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 365
def delete_one(document)
  _target.delete_one(document)
  _unscoped.delete_one(document)
  reindex
end
integrate(document) click to toggle source

Integrate the document into the relation. will set its metadata and attempt to bind the inverse.

@example Integrate the document.

relation.integrate(document)

@param [ Document ] document The document to integrate.

@since 2.1.0

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 380
def integrate(document)
  characterize_one(document)
  bind_one(document)
end
method_missing(name, *args, &block) click to toggle source

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.

@param [ Symbol, String ] name The name of the method. @param [ Array ] args The method args @param [ Proc ] block Optional block to pass.

@return [ Criteria, Object ] A Criteria or return value from the target.

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 395
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
persistable?() click to toggle source

Are we able to persist this relation?

@example Can we persist the relation?

relation.persistable?

@return [ true, false ] If the relation is persistable.

@since 2.1.0

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 410
def persistable?
  _base.persisted? && !_binding?
end
reindex() click to toggle source

Reindex all the target elements. This is useful when performing operations on the proxied target directly and the indices need to match that on the database side.

@example Reindex the relation.

person.addresses.reindex

@since 2.0.0.rc.1

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 422
def reindex
  _unscoped.each_with_index do |doc, index|
    doc._index = index
  end
end
remove_all(conditions = {}, method = :delete) click to toggle source

Remove all documents from the relation, either with a delete or a destroy depending on what this was called through.

@example Destroy documents from the relation.

relation.remove_all({ :num => 1 }, true)

@param [ Hash ] conditions Conditions to filter by. @param [ true, false ] method :delete or :destroy.

@return [ Integer ] The number of documents removed.

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 457
def remove_all(conditions = {}, method = :delete)
  criteria = where(conditions || {})
  removed = criteria.size
  batch_remove(criteria, method)
  removed
end
scope(docs) click to toggle source

Apply the association ordering or the default scoping to the provided documents.

@example Apply scoping.

person.addresses.scope(target)

@param [ Array<Document> ] docs The documents to scope.

@return [ Array<Document> ] The scoped docs.

@since 2.4.0

# File lib/mongoid/association/embedded/embeds_many/proxy.rb, line 439
def scope(docs)
  return docs unless _association.order || _association.klass.default_scoping?
  crit = _association.klass.order_by(_association.order)
  crit.embedded = true
  crit.documents = docs
  crit.entries
end