mongo-ruby-driver/lib/mongo/db.rb

574 lines
19 KiB
Ruby
Raw Normal View History

# encoding: UTF-8
2008-12-17 16:49:06 +00:00
# --
2010-02-19 22:41:36 +00:00
# Copyright (C) 2008-2010 10gen Inc.
2008-11-22 01:00:51 +00:00
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
2008-11-22 01:00:51 +00:00
#
# http://www.apache.org/licenses/LICENSE-2.0
2008-11-22 01:00:51 +00:00
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2008-12-17 16:49:06 +00:00
# ++
2008-11-22 01:00:51 +00:00
require 'socket'
2009-11-20 22:48:41 +00:00
require 'timeout'
2009-10-19 15:46:59 +00:00
require 'thread'
2008-11-22 01:00:51 +00:00
module Mongo
2010-01-09 00:11:49 +00:00
# A MongoDB database.
class DB
SYSTEM_NAMESPACE_COLLECTION = "system.namespaces"
SYSTEM_INDEX_COLLECTION = "system.indexes"
SYSTEM_PROFILE_COLLECTION = "system.profile"
SYSTEM_USER_COLLECTION = "system.users"
SYSTEM_COMMAND_COLLECTION = "$cmd"
# Counter for generating unique request ids.
@@current_request_id = 0
# Strict mode enforces collection existence checks. When +true+,
# asking for a collection that does not exist, or trying to create a
# collection that already exists, raises an error.
#
# Strict mode is disabled by default, but enabled (+true+) at any time.
attr_writer :strict
# Returns the value of the +strict+ flag.
def strict?; @strict; end
2008-11-22 01:00:51 +00:00
# The name of the database.
attr_reader :name
2009-01-21 16:26:18 +00:00
# The Mongo::Connection instance connecting to the MongoDB server.
attr_reader :connection
2009-12-16 19:03:15 +00:00
# Instances of DB are normally obtained by calling Mongo#db.
#
# @param [String] db_name the database name.
# @param [Mongo::Connection] connection a connection object pointing to MongoDB. Note
# that databases are usually instantiated via the Connection class. See the examples below.
#
2010-03-30 17:35:36 +00:00
# @option options [Boolean] :strict (False) If true, collections must exist to be accessed and must
# not exist to be created. See DB#collection and DB#create_collection.
#
2010-03-30 17:33:03 +00:00
# @option options [Object, #create_pk(doc)] :pk (Mongo::ObjectID) A primary key factory object,
# which should take a hash and return a hash which merges the original hash with any primary key
# fields the factory wishes to inject. (NOTE: if the object already has a primary key,
# the factory should not inject a new key).
2010-02-08 17:12:18 +00:00
#
# @core databases constructor_details
def initialize(db_name, connection, options={})
@name = Mongo::Support.validate_db_name(db_name)
@connection = connection
@strict = options[:strict]
@pk_factory = options[:pk]
end
2008-12-16 22:35:31 +00:00
# Authenticate with the given username and password. Note that mongod
# must be started with the --auth option for authentication to be enabled.
#
# @param [String] username
# @param [String] password
2010-03-01 15:39:50 +00:00
# @param [Boolean] save_auth
# Save this authentication to the connection object using Connection#add_auth. This
# will ensure that the authentication will be applied on database reconnect.
#
# @return [Boolean]
2010-02-08 17:12:18 +00:00
#
# @raise [AuthenticationError]
#
2010-02-08 17:12:18 +00:00
# @core authenticate authenticate-instance_method
2010-03-01 15:39:50 +00:00
def authenticate(username, password, save_auth=true)
doc = command(:getnonce => 1)
raise "error retrieving nonce: #{doc}" unless ok?(doc)
nonce = doc['nonce']
2010-05-07 01:25:18 +00:00
auth = BSON::OrderedHash.new
auth['authenticate'] = 1
auth['user'] = username
auth['nonce'] = nonce
auth['key'] = Mongo::Support.auth_key(username, password, nonce)
2010-02-25 19:58:32 +00:00
if ok?(command(auth))
2010-03-01 17:18:57 +00:00
if save_auth
2010-02-25 19:58:32 +00:00
@connection.add_auth(@name, username, password)
end
true
else
raise(Mongo::AuthenticationError, "Failed to authenticate user '#{username}' on db '#{self.name}'")
end
end
# Adds a user to this database for use with authentication. If the user already
# exists in the system, the password will be updated.
#
# @param [String] username
# @param [String] password
#
# @return [Hash] an object representing the user.
def add_user(username, password)
users = self[SYSTEM_USER_COLLECTION]
user = users.find_one({:user => username}) || {:user => username}
user['pwd'] = Mongo::Support.hash_password(username, password)
users.save(user)
return user
end
# Remove the given user from this database. Returns false if the user
# doesn't exist in the system.
#
# @param [String] username
#
# @return [Boolean]
def remove_user(username)
if self[SYSTEM_USER_COLLECTION].find_one({:user => username})
self[SYSTEM_USER_COLLECTION].remove({:user => username}, :safe => true)
else
return false
end
end
2010-02-25 19:58:32 +00:00
# Deauthorizes use for this database for this connection. Also removes
# any saved authorization in the connection class associated with this
# database.
#
# @raise [MongoDBError] if logging out fails.
#
# @return [Boolean]
def logout
doc = command(:logout => 1)
2010-02-25 19:58:32 +00:00
if ok?(doc)
@connection.remove_auth(@name)
true
else
raise MongoDBError, "error logging out: #{doc.inspect}"
end
end
# Get an array of collection names in this database.
#
# @return [Array]
def collection_names
names = collections_info.collect { |doc| doc['name'] || '' }
names = names.delete_if {|name| name.index(@name).nil? || name.index('$')}
names.map {|name| name.sub(@name + '.', '')}
end
# Get an array of Collection instances, one for each collection in this database.
#
# @return [Array<Mongo::Collection>]
def collections
collection_names.map do |collection_name|
Collection.new(self, collection_name)
end
end
# Get info on system namespaces (collections). This method returns
# a cursor which can be iterated over. For each collection, a hash
# will be yielded containing a 'name' string and, optionally, an 'options' hash.
#
# @param [String] coll_name return info for the specifed collection only.
#
# @return [Mongo::Cursor]
def collections_info(coll_name=nil)
selector = {}
selector[:name] = full_collection_name(coll_name) if coll_name
Cursor.new(Collection.new(self, SYSTEM_NAMESPACE_COLLECTION), :selector => selector)
end
# Create a collection.
#
# new collection. If +strict+ is true, will raise an error if
# collection +name+ already exists.
#
# @param [String] name the name of the new collection.
#
# @option options [Boolean] :capped (False) created a capped collection.
#
# @option options [Integer] :size (Nil) If +capped+ is +true+, specifies the maximum number of
# bytes for the capped collection. If +false+, specifies the number of bytes allocated
# for the initial extent of the collection.
#
# @option options [Integer] :max (Nil) If +capped+ is +true+, indicates the maximum number of records
# in a capped collection.
#
# @raise [MongoDBError] raised under two conditions: either we're in +strict+ mode and the collection
# already exists or collection creation fails on the server.
#
# @return [Mongo::Collection]
def create_collection(name, options={})
# Does the collection already exist?
if collection_names.include?(name)
if strict?
raise MongoDBError, "Collection #{name} already exists. Currently in strict mode."
else
return Collection.new(self, name)
2008-11-22 01:00:51 +00:00
end
end
2008-11-22 01:00:51 +00:00
# Create a new collection.
2010-05-07 01:25:18 +00:00
oh = BSON::OrderedHash.new
oh[:create] = name
doc = command(oh.merge(options || {}))
ok = doc['ok']
return Collection.new(self, name, @pk_factory) if ok.kind_of?(Numeric) && (ok.to_i == 1 || ok.to_i == 0)
raise MongoDBError, "Error creating collection: #{doc.inspect}"
end
2009-01-13 18:08:04 +00:00
# Get a collection by name.
#
# @param [String] name the collection name.
#
# @raise [MongoDBError] if collection does not already exist and we're in +strict+ mode.
#
# @return [Mongo::Collection]
def collection(name)
return Collection.new(self, name, @pk_factory) if !strict? || collection_names.include?(name)
2010-04-05 15:07:01 +00:00
raise Mongo::MongoDBError, "Collection #{name} doesn't exist. Currently in strict mode."
end
alias_method :[], :collection
2008-11-22 01:00:51 +00:00
# Drop a collection by +name+.
#
# @param [String] name
#
# @return [Boolean] True on success or if the collection names doesn't exist.
def drop_collection(name)
return true unless collection_names.include?(name)
ok?(command(:drop => name))
end
# Get the error message from the most recently executed database
# operation for this connection.
#
2010-05-04 20:00:05 +00:00
# @option opts [Boolean] :fsync (false)
# @option opts [Integer] :w (nil)
# @option opts [Integer] :wtimeout (nil)
#
# @return [String, Nil] either the text describing an error or nil if no
# error has occurred.
2010-05-04 20:00:05 +00:00
def error(opts={})
opts.assert_valid_keys(:w, :wtimeout, :fsync)
2010-05-07 01:25:18 +00:00
cmd = BSON::OrderedHash.new
2010-05-04 20:00:05 +00:00
cmd[:getlasterror] = 1
cmd.merge!(opts) unless opts.empty?
doc = command(cmd)
raise MongoDBError, "error retrieving last error: #{doc.inspect}" unless ok?(doc)
doc['err']
end
2009-10-01 16:01:37 +00:00
# Get status information from the last operation on this connection.
#
# @return [Hash] a hash representing the status of the last db op.
2009-10-01 16:01:37 +00:00
def last_status
command(:getlasterror => 1)
2009-10-01 16:01:37 +00:00
end
# Return +true+ if an error was caused by the most recently executed
# database operation.
#
# @return [Boolean]
def error?
error != nil
end
2008-11-22 01:00:51 +00:00
# Get the most recent error to have occured on this database.
#
# This command only returns errors that have occured since the last call to
# DB#reset_error_history - returns +nil+ if there is no such error.
#
# @return [String, Nil] the text of the error or +nil+ if no error has occurred.
def previous_error
error = command(:getpreverror => 1)
if error["err"]
error
else
nil
end
end
2008-11-22 01:00:51 +00:00
# Reset the error history of this database
#
# Calls to DB#previous_error will only return errors that have occurred
# since the most recent call to this method.
#
# @return [Hash]
def reset_error_history
command(:reseterror => 1)
end
2009-04-28 18:55:36 +00:00
# @deprecated please use Collection#find to create queries.
#
# Returns a Cursor over the query results.
#
# Note that the query gets sent lazily; the cursor calls
# Connection#send_message when needed. If the caller never requests an
# object from the cursor, the query never gets sent.
def query(collection, query, admin=false)
Cursor.new(self, collection, query, admin)
end
2009-08-04 18:16:02 +00:00
# Dereference a DBRef, returning the document it points to.
#
# @param [Mongo::DBRef] dbref
#
# @return [Hash] the document indicated by the db reference.
#
# @see http://www.mongodb.org/display/DOCS/DB+Ref MongoDB DBRef spec.
def dereference(dbref)
collection(dbref.namespace).find_one("_id" => dbref.object_id)
end
2008-12-16 22:35:31 +00:00
# Evaluate a JavaScript expression in MongoDB.
#
# @param [String, Code] code a JavaScript expression to evaluate server-side.
# @param [Integer, Hash] args any additional argument to be passed to the +code+ expression when
# it's run on the server.
#
# @return [String] the return value of the function.
def eval(code, *args)
2010-04-05 15:07:01 +00:00
if not code.is_a? BSON::Code
code = BSON::Code.new(code)
end
2010-05-07 01:25:18 +00:00
oh = BSON::OrderedHash.new
oh[:$eval] = code
oh[:args] = args
doc = command(oh)
return doc['retval'] if ok?(doc)
raise OperationFailure, "eval failed: #{doc['errmsg']}"
end
2008-11-22 01:00:51 +00:00
# Rename a collection.
#
# @param [String] from original collection name.
# @param [String] to new collection name.
#
# @return [True] returns +true+ on success.
#
# @raise MongoDBError if there's an error renaming the collection.
def rename_collection(from, to)
2010-05-07 01:25:18 +00:00
oh = BSON::OrderedHash.new
oh[:renameCollection] = "#{@name}.#{from}"
oh[:to] = "#{@name}.#{to}"
doc = command(oh, true)
ok?(doc) || raise(MongoDBError, "Error renaming collection: #{doc.inspect}")
end
2009-08-10 20:10:52 +00:00
# Drop an index from a given collection. Normally called from
# Collection#drop_index or Collection#drop_indexes.
#
# @param [String] collection_name
# @param [String] index_name
#
# @return [True] returns +true+ on success.
#
# @raise MongoDBError if there's an error renaming the collection.
def drop_index(collection_name, index_name)
2010-05-07 01:25:18 +00:00
oh = BSON::OrderedHash.new
oh[:deleteIndexes] = collection_name
oh[:index] = index_name
doc = command(oh)
ok?(doc) || raise(MongoDBError, "Error with drop_index command: #{doc.inspect}")
end
2009-01-21 16:26:18 +00:00
# Get information on the indexes for the given collection.
# Normally called by Collection#index_information.
#
# @param [String] collection_name
#
# @return [Hash] keys are index names and the values are lists of [key, direction] pairs
# defining the index.
def index_information(collection_name)
sel = {:ns => full_collection_name(collection_name)}
info = {}
Cursor.new(Collection.new(self, SYSTEM_INDEX_COLLECTION), :selector => sel).each do |index|
info[index['name']] = index
end
info
end
2010-04-06 22:29:39 +00:00
# Return stats on this database. Uses MongoDB's dbstats command.
#
# @return [Hash]
def stats
self.command({:dbstats => 1})
end
# Create a new index on the given collection.
# Normally called by Collection#create_index.
#
# @param [String] collection_name
# @param [String, Array] field_or_spec either either a single field name
# or an array of [field name, direction] pairs. Directions should be specified as
# Mongo::ASCENDING or Mongo::DESCENDING.
# @param [Boolean] unique if +true+, the created index will enforce a uniqueness constraint.
#
# @return [String] the name of the index created.
#
# @deprecated
def create_index(collection_name, field_or_spec, unique=false)
warn "DB#create_index is now deprecated. Please use Collection#create_index instead."
self.collection(collection_name).create_index(field_or_spec, :unique => unique)
end
2009-12-16 19:03:15 +00:00
# Return +true+ if the supplied +doc+ contains an 'ok' field with the value 1.
#
# @param [Hash] doc
#
# @return [Boolean]
def ok?(doc)
ok = doc['ok']
ok.kind_of?(Numeric) && ok.to_i == 1
end
# Send a command to the database.
#
# Note: DB commands must start with the "command" key. For this reason,
# any selector containing more than one key must be an OrderedHash.
#
2010-03-02 17:24:52 +00:00
# Note also that a command in MongoDB is just a kind of query
# that occurs on the system command collection ($cmd). Examine this method's implementation
# to see how it works.
#
# @param [OrderedHash, Hash] selector an OrderedHash, or a standard Hash with just one
# key, specifying the command to be performed.
#
# @param [Boolean] admin If +true+, the command will be executed on the admin
# collection.
#
# @param [Boolean] check_response If +true+, will raise an exception if the
# command fails.
#
# @param [Socket] sock a socket to use. This is mainly for internal use.
#
# @return [Hash]
2010-02-08 17:12:18 +00:00
#
# @core commands command_instance-method
def command(selector, admin=false, check_response=false, sock=nil)
raise MongoArgumentError, "command must be given a selector" unless selector.is_a?(Hash) && !selector.empty?
2009-12-16 19:03:15 +00:00
if selector.class.eql?(Hash) && selector.keys.length > 1
raise MongoArgumentError, "DB#command requires an OrderedHash when hash contains multiple keys"
end
2009-12-16 19:03:15 +00:00
result = Cursor.new(system_command_collection, :admin => admin,
:limit => -1, :selector => selector, :socket => sock).next_document
if check_response && !ok?(result)
raise OperationFailure, "Database command '#{selector.keys.first}' failed: #{result.inspect}"
else
result
end
end
# A shortcut returning db plus dot plus collection name.
#
# @param [String] collection_name
#
# @return [String]
def full_collection_name(collection_name)
"#{@name}.#{collection_name}"
end
2010-01-09 00:11:49 +00:00
# The primary key factory object (or +nil+).
#
# @return [Object, Nil]
2010-01-09 00:11:49 +00:00
def pk_factory
@pk_factory
end
# Specify a primary key factory if not already set.
#
# @raise [MongoArgumentError] if the primary key factory has already been set.
def pk_factory=(pk_factory)
if @pk_factory
raise MongoArgumentError, "Cannot change primary key factory once it's been set"
end
@pk_factory = pk_factory
end
# Return the current database profiling level. If profiling is enabled, you can
# get the results using DB#profiling_info.
#
# @return [Symbol] :off, :slow_only, or :all
2010-02-08 17:12:18 +00:00
#
# @core profiling profiling_level-instance_method
def profiling_level
2010-05-07 01:25:18 +00:00
oh = BSON::OrderedHash.new
oh[:profile] = -1
doc = command(oh)
raise "Error with profile command: #{doc.inspect}" unless ok?(doc) && doc['was'].kind_of?(Numeric)
case doc['was'].to_i
when 0
:off
when 1
:slow_only
when 2
:all
else
raise "Error: illegal profiling level value #{doc['was']}"
end
end
# Set this database's profiling level. If profiling is enabled, you can
# get the results using DB#profiling_info.
#
# @param [Symbol] level acceptable options are +:off+, +:slow_only+, or +:all+.
def profiling_level=(level)
2010-05-07 01:25:18 +00:00
oh = BSON::OrderedHash.new
oh[:profile] = case level
when :off
0
when :slow_only
1
when :all
2
else
raise "Error: illegal profiling level value #{level}"
end
doc = command(oh)
ok?(doc) || raise(MongoDBError, "Error with profile command: #{doc.inspect}")
end
# Get the current profiling information.
#
# @return [Array] a list of documents containing profiling information.
def profiling_info
Cursor.new(Collection.new(self, DB::SYSTEM_PROFILE_COLLECTION), :selector => {}).to_a
end
# Validate a named collection.
#
# @param [String] name the collection name.
#
# @return [Hash] validation information.
#
# @raise [MongoDBError] if the command fails or there's a problem with the validation
# data, or if the collection is invalid.
def validate_collection(name)
doc = command(:validate => name)
raise MongoDBError, "Error with validate command: #{doc.inspect}" unless ok?(doc)
result = doc['result']
raise MongoDBError, "Error with validation data: #{doc.inspect}" unless result.kind_of?(String)
raise MongoDBError, "Error: invalid collection #{name}: #{doc.inspect}" if result =~ /\b(exception|corrupt)\b/i
doc
end
private
def system_command_collection
Collection.new(self, SYSTEM_COMMAND_COLLECTION)
end
2008-11-22 01:00:51 +00:00
end
end