6 # This class is now used purely for upgrading from prior versions of rbot
7 # the new registry is split into multiple DBHash objects, one per plugin
15 # check for older versions of rbot with data formats that require updating
16 # NB this function is called _early_ in init(), pretty much all you have to
17 # work with is @bot.botclass.
19 if File.exist?("#{@bot.botclass}/registry.db")
20 log _("upgrading old-style (rbot 0.9.5 or earlier) plugin registry to new format")
21 old = BDB::Hash.open("#{@bot.botclass}/registry.db", nil,
23 new = BDB::CIBtree.open("#{@bot.botclass}/plugin_registry.db", nil,
24 BDB::CREATE | BDB::EXCL,
31 File.rename("#{@bot.botclass}/registry.db", "#{@bot.botclass}/registry.db.old")
36 if File.exist?("#{@bot.botclass}/plugin_registry.db")
37 Dir.mkdir("#{@bot.botclass}/registry") unless File.exist?("#{@bot.botclass}/registry")
38 env = BDB::Env.open("#{@bot.botclass}", BDB::INIT_TRANSACTION | BDB::CREATE | BDB::RECOVER)# | BDB::TXN_NOSYNC)
40 log _("upgrading previous (rbot 0.9.9 or earlier) plugin registry to new split format")
41 old = BDB::CIBtree.open("#{@bot.botclass}/plugin_registry.db", nil,
42 "r+", 0600, "env" => env)
44 prefix,key = k.split("/", 2)
46 # subregistries were split with a +, now they are in separate folders
47 if prefix.gsub!(/\+/, "/")
48 # Ok, this code needs to be put in the db opening routines
49 dirs = File.dirname("#{@bot.botclass}/registry/#{prefix}.db").split("/")
50 dirs.length.times { |i|
51 dir = dirs[0,i+1].join("/")+"/"
52 unless File.exist?(dir)
53 log _("creating subregistry directory #{dir}")
58 unless dbs.has_key?(prefix)
59 log _("creating db #{@bot.botclass}/registry/#{prefix}.db")
60 dbs[prefix] = BDB::CIBtree.open("#{@bot.botclass}/registry/#{prefix}.db",
61 nil, BDB::CREATE | BDB::EXCL,
67 File.rename("#{@bot.botclass}/plugin_registry.db", "#{@bot.botclass}/plugin_registry.db.old")
69 log _("closing db #{k}")
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 Registry#[]
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.
122 attr_accessor :recovery
124 # plugins don't call this - a Registry::Accessor is created for them and
125 # is accessible via @registry.
126 def initialize(bot, name)
128 @name = name.downcase
129 dirs = File.dirname("#{@bot.botclass}/registry/#{@name}").split("/")
130 dirs.length.times { |i|
131 dir = dirs[0,i+1].join("/")+"/"
132 unless File.exist?(dir)
133 debug "creating subregistry directory #{dir}"
140 # debug "initializing registry accessor with name #{@name}"
144 @registry ||= DBTree.new @bot, "registry/#{@name}"
148 # debug "fushing registry #{registry}"
155 # debug "closing registry #{registry}"
160 # convert value to string form for storing in the registry
161 # defaults to Marshal.dump(val) but you can override this in your module's
162 # registry object to use any method you like.
163 # For example, if you always just handle strings use:
171 # restores object from string form, restore(store(val)) must return val.
172 # If you override store, you should override restore to reverse the
174 # For example, if you always just handle strings use:
181 rescue Exception => e
182 error _("failed to restore marshal data for #{val.inspect}, attempting recovery or fallback to default")
184 if defined? @recovery and @recovery
186 return @recovery.call(val)
187 rescue Exception => ee
188 error _("marshal recovery failed, trying default")
194 return Marshal.restore(@default)
204 # lookup a key in the registry
206 if registry.has_key?(key)
207 return restore(registry[key])
208 elsif @default != nil
209 return restore(@default)
215 # set a key in the registry
217 registry[key] = store(value)
220 # set the default value for registry lookups, if the key sought is not
221 # found, the default will be returned. The default default (har) is nil.
222 def set_default (default)
223 @default = store(default)
226 # just like Hash#each
228 registry.each {|key,value|
229 block.call(key, restore(value))
233 # just like Hash#each_key
235 registry.each {|key, value|
240 # just like Hash#each_value
241 def each_value(&block)
242 registry.each {|key, value|
243 block.call(restore(value))
247 # just like Hash#has_key?
249 return registry.has_key?(key)
251 alias include? has_key?
252 alias member? has_key?
254 # just like Hash#has_both?
255 def has_both?(key, value)
256 return registry.has_both?(key, store(value))
259 # just like Hash#has_value?
260 def has_value?(value)
261 return registry.has_value?(store(value))
264 # just like Hash#index?
266 ind = registry.index(store(value))
274 # delete a key from the registry
276 return registry.delete(key)
279 # returns a list of your keys
284 # Return an array of all associations [key, value] in your namespace
287 registry.each {|key, value|
288 ret << [key, restore(value)]
293 # Return an hash of all associations {key => value} in your namespace
296 registry.each {|key, value|
297 ret[key] = restore(value)
302 # empties the registry (restricted to your namespace)
308 # returns an array of the values in your namespace of the registry
317 def sub_registry(prefix)
318 return Accessor.new(@bot, @name + "/" + prefix.to_s)
321 # returns the number of keys in your registry namespace