X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=lib%2Frbot%2Fdbhash.rb;h=3220fb7f8cf0918ed3281217010bb24784e28b52;hb=26856c6742be2b79524533e7fd2b9cb3a93faa82;hp=e687cebf8ee4e2224862348a64a1e9c7f2caaa8b;hpb=5b55193a4263464efd71279dddf57a1a14dd22e4;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/lib/rbot/dbhash.rb b/lib/rbot/dbhash.rb index e687cebf..3220fb7f 100644 --- a/lib/rbot/dbhash.rb +++ b/lib/rbot/dbhash.rb @@ -1,16 +1,31 @@ begin require 'bdb' rescue Exception => e - puts "Got exception: "+e - puts "rbot couldn't load the bdb module, perhaps you need to install it? try: http://www.ruby-lang.org/en/raa-list.rhtml?name=bdb" + error "Got exception: #{e.pretty_inspect}" + error "rbot couldn't load the bdb module, perhaps you need to install it? try: http://www.ruby-lang.org/en/raa-list.rhtml?name=bdb" exit 2 end +if BDB::VERSION_MAJOR < 4 + fatal "Your bdb (Berkeley DB) version #{BDB::VERSION} is too old!" + fatal "rbot will only run with bdb version 4 or higher, please upgrade." + fatal "For maximum reliability, upgrade to version 4.2 or higher." + raise BDB::Fatal, BDB::VERSION + " is too old" +end + +if BDB::VERSION_MAJOR == 4 and BDB::VERSION_MINOR < 2 + warning "Your bdb (Berkeley DB) version #{BDB::VERSION} may not be reliable." + warning "If possible, try upgrade version 4.2 or later." +end + # make BTree lookups case insensitive module BDB class CIBtree < Btree def bdb_bt_compare(a, b) - a.downcase <=> b.downcase + if a == nil || b == nil + warning "CIBTree: comparing #{a.inspect} (#{self[a].inspect}) with #{b.inspect} (#{self[b].inspect})" + end + (a||'').downcase <=> (b||'').downcase end end end @@ -66,7 +81,7 @@ module Irc @@env=nil # TODO: make this customizable # Note that it must be at least four times lg_bsize - @@lg_max = 2*1024*1024 + @@lg_max = 8*1024*1024 # absfilename:: use +key+ as an actual filename, don't prepend the bot's # config path and don't append ".db" def initialize(bot, key, absfilename=false) @@ -77,7 +92,7 @@ module Irc @@env = BDB::Env.open("#{@bot.botclass}", BDB::INIT_TRANSACTION | BDB::CREATE | BDB::RECOVER, "set_lg_max" => @@lg_max) debug "DBTree: environment opened with max log size #{@@env.conf['lg_max']}" rescue => e - debug "DBTree: failed to open environment: #{e}. Retrying ..." + debug "DBTree: failed to open environment: #{e.pretty_inspect}. Retrying ..." @@env = BDB::Env.open("#{@bot.botclass}", BDB::INIT_TRANSACTION | BDB::CREATE | BDB::RECOVER) end #@@env = BDB::Env.open("#{@bot.botclass}", BDB::CREATE | BDB::INIT_MPOOL | BDB::RECOVER) @@ -116,8 +131,8 @@ module Irc begin debug "DBTree: checkpointing ..." @@env.checkpoint - rescue => e - debug "Failed: #{e}" + rescue Exception => e + debug "Failed: #{e.pretty_inspect}" end begin debug "DBTree: flushing log ..." @@ -127,8 +142,23 @@ module Irc logs.each { |log| File.delete(log) } - rescue => e - debug "Failed: #{e}" + rescue Exception => e + debug "Failed: #{e.pretty_inspect}" + end + end + + def DBTree.stats() + begin + debug "General stats:" + debug @@env.stat + debug "Lock stats:" + debug @@env.lock_stat + debug "Log stats:" + debug @@env.log_stat + debug "Txn stats:" + debug @@env.txn_stat + rescue + debug "Couldn't dump stats" end end @@ -137,7 +167,7 @@ module Irc debug "DBTree: checking transactions ..." has_active_txn = @@env.txn_stat["st_nactive"] > 0 if has_active_txn - debug "DBTree: WARNING: not all transactions completed!" + warning "DBTree: not all transactions completed!" end DBTree.cleanup_logs debug "DBTree: closing environment #{@@env}" @@ -150,8 +180,8 @@ module Irc debug "DBTree: cleaning up environment in #{path}" BDB::Env.remove("#{path}") end - rescue => e - debug "Failed: #{e}" + rescue Exception => e + error "failed to clean up environment: #{e.pretty_inspect}" end end