+ ModeChangeMessage class
[rbot] / lib / rbot / registry.rb
1 require 'rbot/dbhash'
2
3 module Irc
4 class Bot
5
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
8   class Registry
9     def initialize(bot)
10       @bot = bot
11       upgrade_data
12       upgrade_data2
13     end
14
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.
18     def upgrade_data
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,
22                              "r+", 0600)
23         new = BDB::CIBtree.open("#{@bot.botclass}/plugin_registry.db", nil,
24                                 BDB::CREATE | BDB::EXCL,
25                                 0600)
26         old.each {|k,v|
27           new[k] = v
28         }
29         old.close
30         new.close
31         File.rename("#{@bot.botclass}/registry.db", "#{@bot.botclass}/registry.db.old")
32       end
33     end
34
35     def upgrade_data2
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)
39         dbs = Hash.new
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)
43         old.each {|k,v|
44           prefix,key = k.split("/", 2)
45           prefix.downcase!
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}")
54                 Dir.mkdir(dir)
55               end
56             }
57           end
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,
62               0600, "env" => env)
63           end
64           dbs[prefix][key] = v
65         }
66         old.close
67         File.rename("#{@bot.botclass}/plugin_registry.db", "#{@bot.botclass}/plugin_registry.db.old")
68         dbs.each {|k,v|
69           log _("closing db #{k}")
70           v.close
71         }
72         env.close
73       end
74     end
75
76
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
81   # Marshal.restore,
82   # for example:
83   #   blah = Hash.new
84   #   blah[:foo] = "fum"
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
91   # configuration.
92   #
93   # WARNING:
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
103
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):
107   #   def initialize
108   #     class << @registry
109   #       def store(val)
110   #         val
111   #       end
112   #       def restore(val)
113   #         val
114   #       end
115   #     end
116   #   end
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 Accessor
121
122     attr_accessor :recovery
123
124     # plugins don't call this - a Registry::Accessor is created for them and
125     # is accessible via @registry.
126     def initialize(bot, name)
127       @bot = bot
128       @name = name.downcase
129       @filename = "#{@bot.botclass}/registry/#{@name}"
130       dirs = File.dirname(@filename).split("/")
131       dirs.length.times { |i|
132         dir = dirs[0,i+1].join("/")+"/"
133         unless File.exist?(dir)
134           debug "creating subregistry directory #{dir}"
135           Dir.mkdir(dir)
136         end
137       }
138       @filename << ".db"
139       @registry = nil
140       @default = nil
141       @recovery = nil
142       # debug "initializing registry accessor with name #{@name}"
143     end
144
145     def registry
146         @registry ||= DBTree.new @bot, "registry/#{@name}"
147     end
148
149     def flush
150       # debug "fushing registry #{registry}"
151       return if !@registry
152       registry.flush
153       registry.sync
154     end
155
156     def close
157       # debug "closing registry #{registry}"
158       return if !@registry
159       registry.close
160     end
161
162     # convert value to string form for storing in the registry
163     # defaults to Marshal.dump(val) but you can override this in your module's
164     # registry object to use any method you like.
165     # For example, if you always just handle strings use:
166     #   def store(val)
167     #     val
168     #   end
169     def store(val)
170       Marshal.dump(val)
171     end
172
173     # restores object from string form, restore(store(val)) must return val.
174     # If you override store, you should override restore to reverse the
175     # action.
176     # For example, if you always just handle strings use:
177     #   def restore(val)
178     #     val
179     #   end
180     def restore(val)
181       begin
182         Marshal.restore(val)
183       rescue Exception => e
184         error _("failed to restore marshal data for #{val.inspect}, attempting recovery or fallback to default")
185         debug e
186         if defined? @recovery and @recovery
187           begin
188             return @recovery.call(val)
189           rescue Exception => ee
190             error _("marshal recovery failed, trying default")
191             debug ee
192           end
193         end
194         return default
195       end
196     end
197
198     # lookup a key in the registry
199     def [](key)
200       if File.exist?(@filename) && registry.has_key?(key)
201         return restore(registry[key])
202       else
203         return default
204       end
205     end
206
207     # set a key in the registry
208     def []=(key,value)
209       registry[key] = store(value)
210     end
211
212     # set the default value for registry lookups, if the key sought is not
213     # found, the default will be returned. The default default (har) is nil.
214     def set_default (default)
215       @default = default
216     end
217
218     def default
219       @default && (@default.dup rescue @default)
220     end
221
222     # just like Hash#each
223     def each(&block)
224       return nil unless File.exist?(@filename)
225       registry.each {|key,value|
226         block.call(key, restore(value))
227       }
228     end
229
230     # just like Hash#each_key
231     def each_key(&block)
232       return nil unless File.exist?(@filename)
233       registry.each {|key, value|
234         block.call(key)
235       }
236     end
237
238     # just like Hash#each_value
239     def each_value(&block)
240       return nil unless File.exist?(@filename)
241       registry.each {|key, value|
242         block.call(restore(value))
243       }
244     end
245
246     # just like Hash#has_key?
247     def has_key?(key)
248       return false unless File.exist?(@filename)
249       return registry.has_key?(key)
250     end
251     alias include? has_key?
252     alias member? has_key?
253     alias key? has_key?
254
255     # just like Hash#has_both?
256     def has_both?(key, value)
257       return false unless File.exist?(@filename)
258       return registry.has_both?(key, store(value))
259     end
260
261     # just like Hash#has_value?
262     def has_value?(value)
263       return false unless File.exist?(@filename)
264       return registry.has_value?(store(value))
265     end
266
267     # just like Hash#index?
268     def index(value)
269       return nil unless File.exist?(@filename)
270       ind = registry.index(store(value))
271       if ind
272         return ind
273       else
274         return nil
275       end
276     end
277
278     # delete a key from the registry
279     def delete(key)
280       return default unless File.exist?(@filename)
281       return registry.delete(key)
282     end
283
284     # returns a list of your keys
285     def keys
286       return [] unless File.exist?(@filename)
287       return registry.keys
288     end
289
290     # Return an array of all associations [key, value] in your namespace
291     def to_a
292       return [] unless File.exist?(@filename)
293       ret = Array.new
294       registry.each {|key, value|
295         ret << [key, restore(value)]
296       }
297       return ret
298     end
299
300     # Return an hash of all associations {key => value} in your namespace
301     def to_hash
302       return {} unless File.exist?(@filename)
303       ret = Hash.new
304       registry.each {|key, value|
305         ret[key] = restore(value)
306       }
307       return ret
308     end
309
310     # empties the registry (restricted to your namespace)
311     def clear
312       return true unless File.exist?(@filename)
313       registry.clear
314     end
315     alias truncate clear
316
317     # returns an array of the values in your namespace of the registry
318     def values
319       return [] unless File.exist?(@filename)
320       ret = Array.new
321       self.each {|k,v|
322         ret << restore(v)
323       }
324       return ret
325     end
326
327     def sub_registry(prefix)
328       return Accessor.new(@bot, @name + "/" + prefix.to_s)
329     end
330
331     # returns the number of keys in your registry namespace
332     def length
333       self.keys.length
334     end
335     alias size length
336
337   end
338
339   end
340 end
341 end