5 # this class is now used purely for upgrading from prior versions of rbot
6 # the new registry is split into multiple DBHash objects, one per plugin
14 # check for older versions of rbot with data formats that require updating
15 # NB this function is called _early_ in init(), pretty much all you have to
16 # work with is @bot.botclass.
18 if File.exist?("#{@bot.botclass}/registry.db")
19 log "upgrading old-style (rbot 0.9.5 or earlier) plugin registry to new format"
20 old = BDB::Hash.open("#{@bot.botclass}/registry.db", nil,
22 new = BDB::CIBtree.open("#{@bot.botclass}/plugin_registry.db", nil,
23 BDB::CREATE | BDB::EXCL,
30 File.rename("#{@bot.botclass}/registry.db", "#{@bot.botclass}/registry.db.old")
35 if File.exist?("#{@bot.botclass}/plugin_registry.db")
36 Dir.mkdir("#{@bot.botclass}/registry") unless File.exist?("#{@bot.botclass}/registry")
37 env = BDB::Env.open("#{@bot.botclass}", BDB::INIT_TRANSACTION | BDB::CREATE | BDB::RECOVER)# | BDB::TXN_NOSYNC)
39 log "upgrading previous (rbot 0.9.9 or earlier) plugin registry to new split format"
40 old = BDB::CIBtree.open("#{@bot.botclass}/plugin_registry.db", nil,
41 "r+", 0600, "env" => env)
43 prefix,key = k.split("/", 2)
45 # subregistries were split with a +, now they are in separate folders
46 if prefix.gsub!(/\+/, "/")
47 # Ok, this code needs to be put in the db opening routines
48 dirs = File.dirname("#{@bot.botclass}/registry/#{prefix}.db").split("/")
49 dirs.length.times { |i|
50 dir = dirs[0,i+1].join("/")+"/"
51 unless File.exist?(dir)
52 log "creating subregistry directory #{dir}"
57 unless dbs.has_key?(prefix)
58 log "creating db #{@bot.botclass}/registry/#{prefix}.db"
59 dbs[prefix] = BDB::CIBtree.open("#{@bot.botclass}/registry/#{prefix}.db",
60 nil, BDB::CREATE | BDB::EXCL,
66 File.rename("#{@bot.botclass}/plugin_registry.db", "#{@bot.botclass}/plugin_registry.db.old")
77 # This class provides persistent storage for plugins via a hash interface.
78 # The default mode is an object store, so you can store ruby objects and
79 # reference them with hash keys. This is because the default store/restore
80 # methods of the plugins' RegistryAccessor are calls to Marshal.dump and
85 # @registry[:blah] = blah
86 # then, even after the bot is shut down and disconnected, on the next run you
87 # can access the blah object as it was, with:
88 # blah = @registry[:blah]
89 # The registry can of course be used to store simple strings, fixnums, etc as
90 # well, and should be useful to store or cache plugin data or dynamic plugin
94 # in object store mode, don't make the mistake of treating it like a live
95 # object, e.g. (using the example above)
96 # @registry[:blah][:foo] = "flump"
97 # will NOT modify the object in the registry - remember that BotRegistry#[]
98 # returns a Marshal.restore'd object, the object you just modified in place
99 # will disappear. You would need to:
100 # blah = @registry[:blah]
101 # blah[:foo] = "flump"
102 # @registry[:blah] = blah
104 # If you don't need to store objects, and strictly want a persistant hash of
105 # strings, you can override the store/restore methods to suit your needs, for
106 # example (in your plugin):
117 # Your plugins section of the registry is private, it has its own namespace
118 # (derived from the plugin's class name, so change it and lose your data).
119 # Calls to registry.each etc, will only iterate over your namespace.
120 class BotRegistryAccessor
121 # plugins don't call this - a BotRegistryAccessor is created for them and
122 # is accessible via @registry.
123 def initialize(bot, name)
125 @name = name.downcase
126 dirs = File.dirname("#{@bot.botclass}/registry/#{@name}").split("/")
127 dirs.length.times { |i|
128 dir = dirs[0,i+1].join("/")+"/"
129 unless File.exist?(dir)
130 debug "creating subregistry directory #{dir}"
134 @registry = DBTree.new bot, "registry/#{@name}"
136 # debug "initializing registry accessor with name #{@name}"
140 # debug "fushing registry #{@registry}"
146 # debug "closing registry #{@registry}"
150 # convert value to string form for storing in the registry
151 # defaults to Marshal.dump(val) but you can override this in your module's
152 # registry object to use any method you like.
153 # For example, if you always just handle strings use:
161 # restores object from string form, restore(store(val)) must return val.
162 # If you override store, you should override restore to reverse the
164 # For example, if you always just handle strings use:
171 rescue Exception => e
172 warning "failed to restore marshal data for #{val.inspect}, falling back to default"
174 debug e.backtrace.join("\n")
177 return Marshal.restore(@default)
187 # lookup a key in the registry
189 if @registry.has_key?(key)
190 return restore(@registry[key])
191 elsif @default != nil
192 return restore(@default)
198 # set a key in the registry
200 @registry[key] = store(value)
203 # set the default value for registry lookups, if the key sought is not
204 # found, the default will be returned. The default default (har) is nil.
205 def set_default (default)
206 @default = store(default)
209 # just like Hash#each
211 @registry.each {|key,value|
212 block.call(key, restore(value))
216 # just like Hash#each_key
218 @registry.each {|key, value|
223 # just like Hash#each_value
224 def each_value(&block)
225 @registry.each {|key, value|
226 block.call(restore(value))
230 # just like Hash#has_key?
232 return @registry.has_key?(key)
234 alias include? has_key?
235 alias member? has_key?
237 # just like Hash#has_both?
238 def has_both?(key, value)
239 return @registry.has_both?(key, store(value))
242 # just like Hash#has_value?
243 def has_value?(value)
244 return @registry.has_value?(store(value))
247 # just like Hash#index?
249 ind = @registry.index(store(value))
257 # delete a key from the registry
259 return @registry.delete(key)
262 # returns a list of your keys
264 return @registry.keys
267 # Return an array of all associations [key, value] in your namespace
270 @registry.each {|key, value|
271 ret << [key, restore(value)]
276 # Return an hash of all associations {key => value} in your namespace
279 @registry.each {|key, value|
280 ret[key] = restore(value)
285 # empties the registry (restricted to your namespace)
291 # returns an array of the values in your namespace of the registry
300 def sub_registry(prefix)
301 return BotRegistryAccessor.new(@bot, @name + "/" + prefix.to_s)
304 # returns the number of keys in your registry namespace