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