2008-12-17 16:49:06 +00:00
|
|
|
# --
|
2009-01-06 15:51:01 +00:00
|
|
|
# Copyright (C) 2008-2009 10gen Inc.
|
2008-11-22 01:00:51 +00:00
|
|
|
#
|
|
|
|
# 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/>.
|
2008-12-17 16:49:06 +00:00
|
|
|
# ++
|
2008-11-22 01:00:51 +00:00
|
|
|
|
|
|
|
require 'mongo/db'
|
|
|
|
|
|
|
|
module XGen
|
|
|
|
module Mongo
|
|
|
|
module Driver
|
|
|
|
|
2008-12-17 16:43:08 +00:00
|
|
|
# Represents a Mongo database server.
|
2008-11-22 01:00:51 +00:00
|
|
|
class Mongo
|
|
|
|
|
|
|
|
DEFAULT_PORT = 27017
|
|
|
|
|
2008-12-17 16:43:08 +00:00
|
|
|
# Host default is 'localhost', port default is DEFAULT_PORT.
|
2008-11-22 01:00:51 +00:00
|
|
|
def initialize(host='localhost', port=DEFAULT_PORT)
|
|
|
|
@host, @port = host, port
|
|
|
|
end
|
|
|
|
|
2008-12-17 16:43:08 +00:00
|
|
|
# Return the XGen::Mongo::Driver::DB named +db_name+.
|
2008-11-22 01:00:51 +00:00
|
|
|
def db(db_name)
|
|
|
|
XGen::Mongo::Driver::DB.new(db_name, @host, @port)
|
|
|
|
end
|
|
|
|
|
2008-12-17 16:43:08 +00:00
|
|
|
# Not implemented.
|
2008-11-22 01:00:51 +00:00
|
|
|
def clone_database(from)
|
|
|
|
raise "not implemented"
|
|
|
|
end
|
|
|
|
|
2008-12-17 16:43:08 +00:00
|
|
|
# Not implemented.
|
2008-11-22 01:00:51 +00:00
|
|
|
def copy_database(from_host, from_db, to_db)
|
|
|
|
raise "not implemented"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|