Class: Mongo::Collection
Overview
A named collection of documents in a database.
Instance Attribute Summary collapse
-
#db ⇒ Object
readonly
Returns the value of attribute db.
-
#hint ⇒ Object
Returns the value of attribute hint.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#pk_factory ⇒ Object
readonly
Returns the value of attribute pk_factory.
Instance Method Summary collapse
-
#[](name) ⇒ Collection
Return a sub-collection of this collection by name.
-
#count ⇒ Integer
(also: #size)
Get the number of documents in this collection.
-
#create_index(field_or_spec, unique = false) ⇒ String
Create a new index.
-
#distinct(key, query = nil) ⇒ Array
Return a list of distinct values for
key
across all documents in the collection. -
#drop ⇒ Object
Drop the entire collection.
-
#drop_index(name) ⇒ Object
Drop a specified index.
-
#drop_indexes ⇒ Object
Drop all indexes.
-
#find(selector = {}, opts = {}) ⇒ Object
Query the database.
-
#find_one(spec_or_object_id = nil, opts = {}) ⇒ OrderedHash, Nil
Return a single object from the database.
-
#group(key, condition, initial, reduce, finalize = nil, deprecated = nil) ⇒ Array
Perform a group aggregation.
-
#index_information ⇒ Hash
Get information on the indexes for this collection.
-
#initialize(db, name, pk_factory = nil) ⇒ Collection
constructor
Initialize a collection object.
-
#insert(doc_or_docs, options = {}) ⇒ ObjectID, Array
(also: #<<)
Insert one or more documents into the collection.
-
#map_reduce(map, reduce, opts = {}) ⇒ Collection
(also: #mapreduce)
Perform a map/reduce operation on the current collection.
-
#options ⇒ Hash
Return a hash containing options that apply to this collection.
-
#remove(selector = {}, opts = {}) ⇒ True
Remove all documents from this collection.
-
#rename(new_name) ⇒ Object
Rename this collection.
-
#save(doc, options = {}) ⇒ ObjectID
Save a document to this collection.
-
#update(selector, document, options = {}) ⇒ Object
Update a single document in this collection.
Constructor Details
#initialize(db, name, pk_factory = nil) ⇒ Collection
Initialize a collection object.
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/mongo/collection.rb', line 38 def initialize(db, name, pk_factory=nil) case name when Symbol, String else raise TypeError, "new_name must be a string or symbol" end name = name.to_s if name.empty? or name.include? ".." raise InvalidName, "collection names cannot be empty" end if name.include? "$" raise InvalidName, "collection names must not contain '$'" unless name =~ /((^\$cmd)|(oplog\.\$main))/ end if name.match(/^\./) or name.match(/\.$/) raise InvalidName, "collection names must not start or end with '.'" end @db, @name = db, name @connection = @db.connection @pk_factory = pk_factory || ObjectID @hint = nil end |
Instance Attribute Details
#db ⇒ Object (readonly)
Returns the value of attribute db.
22 23 24 |
# File 'lib/mongo/collection.rb', line 22 def db @db end |
#hint ⇒ Object
Returns the value of attribute hint.
22 23 24 |
# File 'lib/mongo/collection.rb', line 22 def hint @hint end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
22 23 24 |
# File 'lib/mongo/collection.rb', line 22 def name @name end |
#pk_factory ⇒ Object (readonly)
Returns the value of attribute pk_factory.
22 23 24 |
# File 'lib/mongo/collection.rb', line 22 def pk_factory @pk_factory end |
Instance Method Details
#[](name) ⇒ Collection
Return a sub-collection of this collection by name. If ‘users’ is a collection, then ‘users.comments’ is a sub-collection of users.
74 75 76 77 78 |
# File 'lib/mongo/collection.rb', line 74 def [](name) name = "#{self.name}.#{name}" return Collection.new(db, name) if !db.strict? || db.collection_names.include?(name) raise "Collection #{name} doesn't exist. Currently in strict mode." end |
#count ⇒ Integer Also known as: size
Get the number of documents in this collection.
561 562 563 |
# File 'lib/mongo/collection.rb', line 561 def count find().count() end |
#create_index(field_or_spec, unique = false) ⇒ String
Create a new index.
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 |
# File 'lib/mongo/collection.rb', line 328 def create_index(field_or_spec, unique=false) field_h = OrderedHash.new if field_or_spec.is_a?(String) || field_or_spec.is_a?(Symbol) field_h[field_or_spec.to_s] = 1 else field_or_spec.each { |f| field_h[f[0].to_s] = f[1] } end name = generate_index_names(field_h) sel = { :name => name, :ns => "#{@db.name}.#{@name}", :key => field_h, :unique => unique } begin insert_documents([sel], Mongo::DB::SYSTEM_INDEX_COLLECTION, false, true) rescue Mongo::OperationFailure raise Mongo::OperationFailure, "Failed to create index #{sel.inspect}." end name end |
#distinct(key, query = nil) ⇒ Array
Return a list of distinct values for key
across all documents in the collection. The key may use dot notation to reach into an embedded object.
501 502 503 504 505 506 507 508 509 |
# File 'lib/mongo/collection.rb', line 501 def distinct(key, query=nil) raise MongoArgumentError unless [String, Symbol].include?(key.class) command = OrderedHash.new command[:distinct] = @name command[:key] = key.to_s command[:query] = query @db.command(command)["values"] end |
#drop ⇒ Object
Drop the entire collection. USE WITH CAUTION.
369 370 371 |
# File 'lib/mongo/collection.rb', line 369 def drop @db.drop_collection(@name) end |
#drop_index(name) ⇒ Object
Drop a specified index.
354 355 356 |
# File 'lib/mongo/collection.rb', line 354 def drop_index(name) @db.drop_index(@name, name) end |
#drop_indexes ⇒ Object
Drop all indexes.
361 362 363 364 365 366 |
# File 'lib/mongo/collection.rb', line 361 def drop_indexes # Note: calling drop_indexes with no args will drop them all. @db.drop_index(@name, '*') end |
#find(selector = {}, opts = {}) ⇒ Object
Query the database.
The selector
argument is a prototype document that all results must match. For example:
collection.find({"hello" => "world"})
only matches documents that have a key “hello” with value “world”. Matches can have other keys *in addition* to “hello”.
If given an optional block find
will yield a Cursor to that block, close the cursor, and then return nil. This guarantees that partially evaluated cursors will be closed. If given no block find
returns a cursor.
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
# File 'lib/mongo/collection.rb', line 133 def find(selector={}, opts={}) fields = opts.delete(:fields) fields = ["_id"] if fields && fields.empty? skip = opts.delete(:skip) || skip || 0 limit = opts.delete(:limit) || 0 sort = opts.delete(:sort) hint = opts.delete(:hint) snapshot = opts.delete(:snapshot) if opts[:timeout] == false && !block_given? raise ArgumentError, "Timeout can be set to false only when #find is invoked with a block." end timeout = block_given? ? (opts.delete(:timeout) || true) : true if hint hint = normalize_hint_fields(hint) else hint = @hint # assumed to be normalized already end raise RuntimeError, "Unknown options [#{opts.inspect}]" unless opts.empty? cursor = Cursor.new(self, :selector => selector, :fields => fields, :skip => skip, :limit => limit, :order => sort, :hint => hint, :snapshot => snapshot, :timeout => timeout) if block_given? yield cursor cursor.close() nil else cursor end end |
#find_one(spec_or_object_id = nil, opts = {}) ⇒ OrderedHash, Nil
Return a single object from the database.
178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/mongo/collection.rb', line 178 def find_one(spec_or_object_id=nil, opts={}) spec = case spec_or_object_id when nil {} when ObjectID {:_id => spec_or_object_id} when Hash spec_or_object_id else raise TypeError, "spec_or_object_id must be an instance of ObjectID or Hash, or nil" end find(spec, opts.merge(:limit => -1)).next_document end |
#group(key, condition, initial, reduce, finalize = nil, deprecated = nil) ⇒ Array
Perform a group aggregation.
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 |
# File 'lib/mongo/collection.rb', line 426 def group(key, condition, initial, reduce, finalize=nil, deprecated=nil) # Warn of changed API post eval deprecation. if finalize == true || finalize == false || deprecated warn "The API for Collection#group has changed. 'Finalize' is now the fifth parameter, " + "since it's no longer necessary to specify whether #group is run as a command. " + "See http://api.mongodb.org/ruby/current/Mongo/Collection.html#group-instance_method for details." end reduce = Code.new(reduce) unless reduce.is_a?(Code) group_command = { "group" => { "ns" => @name, "$reduce" => reduce, "cond" => condition, "initial" => initial } } unless key.nil? if key.is_a? Array key_type = "key" key_value = {} key.each { |k| key_value[k] = 1 } else key_type = "$keyf" key_value = key.is_a?(Code) ? key : Code.new(key) end group_command["group"][key_type] = key_value end # only add finalize if specified # check to see if users have sent the finalizer as the last argument. finalize = deprecated if deprecated.is_a?(String) || deprecated.is_a?(Code) finalize = Code.new(finalize) if finalize.is_a?(String) if finalize.is_a?(Code) group_command['group']['finalize'] = finalize end result = @db.command group_command if result["ok"] == 1 result["retval"] else raise OperationFailure, "group command failed: #{result['errmsg']}" end end |
#index_information ⇒ Hash
Get information on the indexes for this collection.
546 547 548 |
# File 'lib/mongo/collection.rb', line 546 def index_information @db.index_information(@name) end |
#insert(doc_or_docs, options = {}) ⇒ ObjectID, Array Also known as: <<
Insert one or more documents into the collection.
230 231 232 233 234 235 |
# File 'lib/mongo/collection.rb', line 230 def insert(doc_or_docs, ={}) doc_or_docs = [doc_or_docs] unless doc_or_docs.is_a?(Array) doc_or_docs.collect! { |doc| @pk_factory.create_pk(doc) } result = insert_documents(doc_or_docs, @name, true, [:safe]) result.size > 1 ? result : result.first end |
#map_reduce(map, reduce, opts = {}) ⇒ Collection Also known as: mapreduce
Perform a map/reduce operation on the current collection.
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
# File 'lib/mongo/collection.rb', line 394 def map_reduce(map, reduce, opts={}) map = Code.new(map) unless map.is_a?(Code) reduce = Code.new(reduce) unless reduce.is_a?(Code) hash = OrderedHash.new hash['mapreduce'] = self.name hash['map'] = map hash['reduce'] = reduce hash.merge! opts result = @db.command(hash) unless result["ok"] == 1 raise Mongo::OperationFailure, "map-reduce failed: #{result['errmsg']}" end @db[result["result"]] end |
#options ⇒ Hash
Return a hash containing options that apply to this collection. For all possible keys and values, see DB#create_collection.
554 555 556 |
# File 'lib/mongo/collection.rb', line 554 def @db.collections_info(@name).next_document['options'] end |
#remove(selector = {}, opts = {}) ⇒ True
Remove all documents from this collection.
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
# File 'lib/mongo/collection.rb', line 259 def remove(selector={}, opts={}) # Initial byte is 0. = ByteBuffer.new([0, 0, 0, 0]) BSON_RUBY.serialize_cstr(, "#{@db.name}.#{@name}") .put_int(0) .put_array(BSON.serialize(selector, false, true).to_a) if opts[:safe] @connection.(Mongo::Constants::OP_DELETE, , @db.name, "db.#{@db.name}.remove(#{selector.inspect})") # the return value of send_message_with_safe_check isn't actually meaningful -- # only the fact that it didn't raise an error is -- so just return true true else @connection.(Mongo::Constants::OP_DELETE, , "db.#{@db.name}.remove(#{selector.inspect})") end end |
#rename(new_name) ⇒ Object
Rename this collection.
Note: If operating in auth mode, the client must be authorized as an admin to perform this operation.
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 |
# File 'lib/mongo/collection.rb', line 519 def rename(new_name) case new_name when Symbol, String else raise TypeError, "new_name must be a string or symbol" end new_name = new_name.to_s if new_name.empty? or new_name.include? ".." raise InvalidName, "collection names cannot be empty" end if new_name.include? "$" raise InvalidName, "collection names must not contain '$'" end if new_name.match(/^\./) or new_name.match(/\.$/) raise InvalidName, "collection names must not start or end with '.'" end @db.rename_collection(@name, new_name) end |
#save(doc, options = {}) ⇒ ObjectID
Save a document to this collection.
205 206 207 208 209 210 211 212 213 |
# File 'lib/mongo/collection.rb', line 205 def save(doc, ={}) if doc.has_key?(:_id) || doc.has_key?('_id') id = doc[:_id] || doc['_id'] update({:_id => id}, doc, :upsert => true, :safe => .delete(:safe)) id else insert(doc, :safe => .delete(:safe)) end end |
#update(selector, document, options = {}) ⇒ Object
Update a single document in this collection.
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 |
# File 'lib/mongo/collection.rb', line 298 def update(selector, document, ={}) # Initial byte is 0. = ByteBuffer.new([0, 0, 0, 0]) BSON_RUBY.serialize_cstr(, "#{@db.name}.#{@name}") = 0 += 1 if [:upsert] += 2 if [:multi] .put_int() .put_array(BSON.serialize(selector, false, true).to_a) .put_array(BSON.serialize(document, false, true).to_a) if [:safe] @connection.(Mongo::Constants::OP_UPDATE, , @db.name, "db.#{@name}.update(#{selector.inspect}, #{document.inspect})") else @connection.(Mongo::Constants::OP_UPDATE, , "db.#{@name}.update(#{selector.inspect}, #{document.inspect})") end end |