From: Voker57 Date: Sun, 14 Mar 2010 21:13:37 +0000 (+0300) Subject: DB backend option X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=ca51b3d47107c385fd6f7ece8893787179ac8acb;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git DB backend option --- diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb index 5aae4dbe..68dd4b34 100644 --- a/lib/rbot/ircbot.rb +++ b/lib/rbot/ircbot.rb @@ -153,7 +153,6 @@ require 'rbot/timer' require 'rbot/plugins' require 'rbot/message' require 'rbot/language' -require 'rbot/registry/bdb' module Irc @@ -418,6 +417,12 @@ class Bot bot.socket.penalty_pct = v }, :desc => "Percentage of IRC penalty to consider when sending messages to prevent being disconnected for excess flood. Set to 0 to disable penalty control.") + Config.register Config::StringValue.new('core.db', + :default => "bdb", + :wizard => true, :default => "bdb", + :validate => Proc.new { |v| ["bdb"].include? v }, + :requires_restart => true, + :desc => "DB adaptor to use for storing settings and plugin data. Options are: bdb (Berkeley DB, stable adaptor, but troublesome to install and unmaintained)") @argv = params[:argv] @run_dir = params[:run_dir] || Dir.pwd @@ -486,6 +491,12 @@ class Bot if @config['core.run_as_daemon'] $daemonize = true end + case @config["core.db"] + when "bdb" + require 'rbot/registry/bdb' + else + raise _("Unknown DB adaptor: %s") % @config["core.db"] + end @logfile = @config['log.file'] if @logfile.class!=String || @logfile.empty?