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

231 lines
7.7 KiB
Ruby
Raw Normal View History

2008-11-22 01:00:51 +00:00
# Copyright (C) 2008 10gen Inc.
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License, version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
# for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
require 'socket'
require 'mongo/collection'
require 'mongo/message'
require 'mongo/query'
require 'mongo/util/ordered_hash.rb'
2008-11-22 01:00:51 +00:00
module XGen
module Mongo
module Driver
class DB
SYSTEM_NAMESPACE_COLLECTION = "system.namespaces"
SYSTEM_INDEX_COLLECTION = "system.indexes"
SYSTEM_COMMAND_COLLECTION = "$cmd"
# Strict mode means that trying to access a collection that does not
# exist will raise an error. Strict mode is off (false) by default.
attr_writer :strict
# Returns the value of the +strict+ flag.
def strict?; @strict; end
2008-11-22 01:00:51 +00:00
attr_reader :name, :socket
def initialize(db_name, host, port)
raise "Invalid DB name" if !db_name || (db_name && db_name.length > 0 && db_name.include?("."))
@name, @host, @port = db_name, host, port
@socket = TCPSocket.new(@host, @port)
@strict = false
2008-11-22 01:00:51 +00:00
end
def collection_names
names = collections_info.collect { |doc| doc['name'] || '' }
names.delete('')
names
end
def collections_info(coll_name=nil)
selector = {}
selector[:name] = "#{@name}.#{coll_name}" if coll_name
query(SYSTEM_NAMESPACE_COLLECTION, Query.new(selector))
end
# Create a collection. If +strict+ is false, will return existing or
# new collection. If +strict+ is true, will raise an error if
# collection +name+ does not already exist.
2008-11-22 01:00:51 +00:00
def create_collection(name, options={})
# First check existence
if collection_names.include?(full_coll_name(name))
if strict?
raise "Collection #{name} already exists. Currently in strict mode."
else
return Collection.new(self, name)
end
end
2008-11-22 01:00:51 +00:00
# Create new collection
oh = OrderedHash.new
oh[:create] = name
doc = db_command(oh.merge(options))
2008-12-16 22:35:31 +00:00
ok = doc['ok']
return Collection.new(self, name) if ok.kind_of?(Numeric) && (ok.to_i == 1 || ok.to_i == 0)
2008-11-22 01:00:51 +00:00
raise "Error creating collection: #{doc.inspect}"
end
def admin
2008-12-02 12:22:32 +00:00
# TODO
raise "not implemented"
2008-11-22 01:00:51 +00:00
Admin.new(self)
end
# Return a collection. If +strict+ is false, will return existing or
# new collection. If +strict+ is true, will raise an error if
# collection +name+ already exists.
2008-11-22 01:00:51 +00:00
def collection(name)
return Collection.new(self, name) if collection_names.include?(full_coll_name(name))
if strict?
raise "Collection #{name} doesn't exist. Currently in strict mode."
else
create_collection(name)
end
2008-11-22 01:00:51 +00:00
end
def drop_collection(name)
coll = collection(name)
return true if coll == nil
2008-12-02 12:20:29 +00:00
coll.drop_indexes # Mongo requires that we drop indexes manually
2008-11-22 01:00:51 +00:00
2008-12-16 22:35:31 +00:00
ok?(db_command(:drop => name))
end
# Returns true if this database is a master (or is not paired with any
# other database), false if it is a slave.
def master?
doc = db_command(:ismaster => 1)
is_master = doc['ismaster']
ok?(doc) && is_master.kind_of?(Numeric) && is_master.to_i == 1
2008-11-22 01:00:51 +00:00
end
def close
@socket.close
end
def send_message(msg)
send_to_db(MsgMessage.new(msg))
end
def query(collection_name, query)
2008-11-22 01:00:51 +00:00
# TODO synchronize
send_to_db(QueryMessage.new(@name, collection_name, query))
return Cursor.new(self, collection_name)
2008-11-22 01:00:51 +00:00
end
def remove_from_db(collection_name, selector)
2008-11-22 01:00:51 +00:00
# TODO synchronize
send_to_db(RemoveMessage.new(@name, collection_name, selector))
2008-11-22 01:00:51 +00:00
end
def replace_in_db(collection_name, selector, obj)
2008-11-22 01:00:51 +00:00
# TODO synchronize
send_to_db(UpdateMessage.new(@name, collection_name, selector, obj, false))
2008-11-22 01:00:51 +00:00
end
alias_method :modify_in_db, :replace_in_db
def repsert_in_db(collection_name, selector, obj)
2008-11-22 01:00:51 +00:00
# TODO if PKInjector, inject
# TODO synchronize
send_to_db(UpdateMessage.new(@name, collection_name, selector, obj, true))
2008-11-22 01:00:51 +00:00
obj
end
def count(collection_name, selector)
oh = OrderedHash.new
oh[:count] = collection_name
oh[:query] = selector
doc = db_command(oh)
2008-12-16 22:35:31 +00:00
return doc['n'].to_i if ok?(doc)
raise "Error with count command: #{doc.inspect}"
2008-11-22 01:00:51 +00:00
end
def drop_index(collection_name, name)
oh = OrderedHash.new
oh[:deleteIndexes] = collection_name
oh[:index] = name
doc = db_command(oh)
2008-12-16 22:35:31 +00:00
raise "Error with drop_index command: #{doc.inspect}" unless ok?(doc)
2008-11-22 01:00:51 +00:00
end
def index_information(collection_name)
sel = {:ns => full_coll_name(collection_name)}
2008-11-22 01:00:51 +00:00
# TODO synchronize
query(SYSTEM_INDEX_COLLECTION, Query.new(sel)).collect { |row|
h = {:name => row['name']}
raise "Name of index on return from db was nil. Coll = #{full_coll_name(collection_name)}" unless h[:name]
2008-11-22 01:00:51 +00:00
2008-12-08 13:33:29 +00:00
h[:keys] = row['key']
raise "Keys for index on return from db was nil. Coll = #{full_coll_name(collection_name)}" unless h[:keys]
2008-11-22 01:00:51 +00:00
h[:ns] = row['ns']
raise "Namespace for index on return from db was nil. Coll = #{full_coll_name(collection_name)}" unless h[:ns]
2008-11-22 01:00:51 +00:00
h[:ns].sub!(/.*\./, '')
raise "Error: ns != collection" unless h[:ns] == collection_name
2008-11-22 01:00:51 +00:00
h
}
end
def create_index(collection_name, index_name, fields)
sel = {:name => index_name, :ns => full_coll_name(collection_name)}
2008-11-22 01:00:51 +00:00
field_h = {}
fields.each { |f| field_h[f] = 1 }
sel[:key] = field_h
2008-11-22 01:00:51 +00:00
# TODO synchronize
send_to_db(InsertMessage.new(@name, SYSTEM_INDEX_COLLECTION, sel))
end
def insert_into_db(collection_name, objects)
2008-11-22 01:00:51 +00:00
# TODO synchronize
objects.each { |o| send_to_db(InsertMessage.new(@name, collection_name, o)) }
2008-11-22 01:00:51 +00:00
end
def send_to_db(message)
@socket.print(message.buf.to_s)
end
def full_coll_name(collection_name)
"#{@name}.#{collection_name}"
2008-11-22 01:00:51 +00:00
end
protected
2008-12-16 22:35:31 +00:00
def ok?(doc)
ok = doc['ok']
ok.kind_of?(Numeric) && ok.to_i == 1
end
# DB commands need to be ordered, so selector must be an OrderedHash
# (or a Hash with only one element). What DB commands really need is
# that the "command" key be first.
2008-11-22 01:00:51 +00:00
def db_command(selector)
if !selector.kind_of?(OrderedHash)
if !selector.kind_of?(Hash) || selector.keys.length > 1
raise "db_command must be given an OrderedHash when there is more than one key"
end
end
2008-11-22 01:00:51 +00:00
# TODO synchronize
q = Query.new(selector)
q.number_to_return = 1
query(SYSTEM_COMMAND_COLLECTION, q).next_object
end
end
end
end
end