# encoding: utf-8 module Mongoid # :nodoc: module Relations #:nodoc: module Embedded #:nodoc: # This class handles the behaviour for a document that embeds many other # documents within in it as an array. class Many < Relations::Many include Atomic # 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 ] *args Any number of documents. def <<(*args) docs = args.flatten return concat(docs) if docs.size > 1 if doc = docs.first append(doc) doc.save if persistable? && !_assigning? end end alias :push :<< # Get this relation as as its representation in the database. # # @example Convert the relation to an attributes hash. # person.addresses.as_document # # @return [ Array ] The relation as stored in the db. # # @since 2.0.0.rc.1 def as_document [].tap do |attributes| _unscoped.each do |doc| attributes.push(doc.as_document) end end end # Appends an array of documents to the relation. Performs a batch # insert of the documents instead of persisting one at a time. # # @note When performing batch inserts the *after* callbacks will get # executed before the documents have actually been persisted to the # database due to an issue with Active Support's callback system - we # cannot explicitly fire the after callbacks by themselves. # # @example Concat with other documents. # person.addresses.concat([ address_one, address_two ]) # # @param [ Array ] documents The docs to add. # # @return [ Array ] The documents. # # @since 2.4.0 def concat(documents) atomically(:$pushAll) do documents.each do |doc| next unless doc append(doc) doc.save if persistable? end end end # 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") # # @overload build(attributes = {}, options = {}, type = nil) # @param [ Hash ] attributes The attributes to build the document with. # @param [ Hash ] options The scoped assignment options. # @param [ Class ] type Optional class to build the document with. # # @overload build(attributes = {}, type = nil) # @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. def build(attributes = {}, options = {}, type = nil) if options.is_a? Class options, type = {}, options end Factory.build(type || metadata.klass, attributes, options).tap do |doc| doc.identify append(doc) doc.apply_proc_defaults yield(doc) if block_given? doc.run_callbacks(:build) { doc } end end alias :new :build # Clear the relation. Will delete the documents from the db if they are # already persisted. # # @example Clear the relation. # person.addresses.clear # # @return [ Many ] The empty relation. def clear tap do |proxy| atomically(:$unset) do proxy.delete_all _unscoped.clear end end end # 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. def count target.select { |doc| doc.persisted? }.size end # Create a new document in the relation. This is essentially the same # as doing a #build then #save on the new document. # # @example Create a new document in the relation. # person.movies.create(:name => "Bozo") # # @overload create(attributes = {}, options = {}, type = nil) # @param [ Hash ] attributes The attributes to build the document with. # @param [ Hash ] options The scoped assignment options. # @param [ Class ] type Optional class to create the document with. # # @overload create(attributes = {}, type = nil) # @param [ Hash ] attributes The attributes to build the document with. # @param [ Class ] type Optional class to create the document with. # # @return [ Document ] The newly created document. def create(attributes = {}, options = {}, type = nil, &block) build(attributes, options, type, &block).tap { |doc| doc.save } end # Create a new document in the relation. This is essentially the same # as doing a #build then #save on the new document. If validation # failed on the document an error will get raised. # # @example Create the document. # person.addresses.create!(:street => "Unter der Linden") # # @overload create!(attributes = {}, options = {}, type = nil) # @param [ Hash ] attributes The attributes to build the document with. # @param [ Hash ] options The scoped assignment options. # @param [ Class ] type Optional class to create the document with. # # @overload create!(attributes = {}, type = nil) # @param [ Hash ] attributes The attributes to build the document with. # @param [ Class ] type Optional class to create the document with. # # @raise [ Errors::Validations ] If a validation error occured. # # @return [ Document ] The newly created document. def create!(attributes = {}, options = {}, type = nil, &block) build(attributes, options, type, &block).tap { |doc| doc.save! } end # 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 def delete(document) target.delete_one(document).tap do |doc| _unscoped.delete_one(doc) if doc && !_binding? if _assigning? && !doc.paranoid? base.add_atomic_pull(doc) else doc.delete(:suppress => true) end unbind_one(doc) end reindex end end # 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(:conditions => { :street => "Bond" }) # # @param [ Hash ] conditions Conditions on which documents to delete. # # @return [ Integer ] The number of documents deleted. def delete_all(conditions = {}) atomically(:$pull) { remove_all(conditions, :delete) } end # 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(:conditions => { :street => "Bond" }) # # @param [ Hash ] conditions Conditions on which documents to destroy. # # @return [ Integer ] The number of documents destroyed. def destroy_all(conditions = {}) atomically(:$pull) { remove_all(conditions, :destroy) } end # 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 ]) # # @example Find documents based on conditions. # person.addresses.find(:all, :conditions => { :number => 10 }) # person.addresses.find(:first, :conditions => { :number => 10 }) # person.addresses.find(:last, :conditions => { :number => 10 }) # # @param [ Array ] args Various arguments. # # @return [ Array, Document ] A single or multiple documents. def find(*args) criteria.find(*args) end # Instantiate a new embeds_many relation. # # @example Create the new relation. # Many.new(person, addresses, metadata) # # @param [ Document ] base The document this relation hangs off of. # @param [ Array ] target The child documents of the relation. # @param [ Metadata ] metadata The relation's metadata # # @return [ Many ] The proxy. def initialize(base, target, metadata) init(base, target, metadata) do target.each_with_index do |doc, index| integrate(doc) doc._index = index end @_unscoped = target.dup @target = scope(target) end end # Get all the documents in the relation that are loaded into memory. # # @example Get the in memory documents. # relation.in_memory # # @return [ Array ] The documents in memory. # # @since 2.1.0 def in_memory target end # Substitutes the supplied target documents for the existing documents # in the relation. # # @example Substitute the relation's target. # person.addresses.substitute([ address ]) # # @param [ Array ] new_target The replacement array. # @param [ true, false ] building Are we in build mode? # # @return [ Many ] The proxied relation. # # @since 2.0.0.rc.1 def substitute(replacement) tap do |proxy| if replacement.blank? if _assigning? && !proxy.empty? base.atomic_unsets.push(proxy.first.atomic_path) end proxy.clear else atomically(:$set) do base.delayed_atomic_sets.clear if replacement.first.is_a?(Hash) replacement = Many.builder(base, metadata, replacement).build end docs = replacement.compact proxy.target = docs self._unscoped = docs.dup proxy.target.each_with_index do |doc, index| integrate(doc) doc._index = index doc.save if base.persisted? && !_assigning? end if _assigning? name = proxy.first.atomic_path base.delayed_atomic_sets[name] = proxy.as_document end end end end end # 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 def unscoped klass.criteria(true, false).tap do |criterion| criterion.documents = _unscoped end end private # 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 def append(document) target.push(document) _unscoped.push(document) integrate(document) document._index = target.size - 1 end # Instantiate the binding associated with this relation. # # @example Create the binding. # relation.binding([ address ]) # # @param [ Array ] new_target The new documents to bind with. # # @return [ Binding ] The many binding. # # @since 2.0.0.rc.1 def binding Bindings::Embedded::Many.new(base, target, metadata) end # 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. def criteria klass.criteria(true).tap do |criterion| criterion.documents = target end end # 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 def delete_one(document) target.delete_one(document) _unscoped.delete_one(document) reindex end # 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 def integrate(document) characterize_one(document) bind_one(document) end # 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. def method_missing(name, *args, &block) return super if target.respond_to?(name) klass.send(:with_scope, criteria) do criteria.send(name, *args, &block) end end # 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 def persistable? base.persisted? && !_binding? end # 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 def reindex _unscoped.each_with_index do |doc, index| doc._index = index end end # Apply the metadata ordering or the default scoping to the provided # documents. # # @example Apply scoping. # person.addresses.scope(target) # # @param [ Array ] docs The documents to scope. # # @return [ Array ] The scoped docs. # # @since 2.4.0 def scope(docs) return docs unless metadata.order || metadata.klass.default_scoping? metadata.klass.criteria(true).order_by(metadata.order).tap do |crit| crit.documents = docs end.entries end # 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(:conditions => { :num => 1 }, true) # # @param [ Hash ] conditions Conditions to filter by. # @param [ true, false ] destroy If true then destroy, else delete. # # @return [ Integer ] The number of documents removed. def remove_all(conditions = {}, method = :delete) criteria = find(:all, conditions || {}) criteria.size.tap do criteria.each do |doc| target.delete_one(doc) _unscoped.delete_one(doc) doc.send(method, :suppress => true) unless _assigning? unbind_one(doc) end reindex end end # Get the internal unscoped documents. # # @example Get the unscoped documents. # relation._unscoped # # @return [ Array ] The unscoped documents. # # @since 2.4.0 def _unscoped @_unscoped ||= [] end # Set the internal unscoped documents. # # @example Set the unscoped documents. # relation._unscoped = docs # # @param [ Array ] docs The documents. # # @return [ Array ] The valid options. # # @since 2.1.0 def valid_options [ :as, :cascade_callbacks, :cyclic, :order, :versioned ] end # Get the default validation setting for the relation. Determines if # by default a validates associated will occur. # # @example Get the validation default. # Proxy.validation_default # # @return [ true, false ] The validation default. # # @since 2.1.9 def validation_default true end end end end end end