Fix path creation when upgrading 0.9.9 or earlier single-db registry
[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.delete("#{@bot.botclass}/registry.db")
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)
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             dirs = File.dirname("#{@bot.botclass}/registry/#{prefix}.db").split("/")
48             dirs.length.times { |i|
49               dir = dirs[0,i+1].join("/")+"/"
50               unless File.exist?(dir)
51                 log "creating subregistry directory #{dir}"
52                 Dir.mkdir(dir) 
53               end
54             }
55           end
56           unless dbs.has_key?(prefix)
57             log "creating db #{@bot.botclass}/registry/#{prefix}.db"
58             dbs[prefix] = BDB::CIBtree.open("#{@bot.botclass}/registry/#{prefix}.db",
59               nil, BDB::CREATE | BDB::EXCL,
60               0600, "env" => env)
61           end
62           dbs[prefix][key] = v
63         }
64         old.close
65         File.rename("#{@bot.botclass}/plugin_registry.db", "#{@bot.botclass}/plugin_registry.db.old")
66         dbs.each {|k,v|
67           log "closing db #{k}"
68           v.close
69         }
70         env.close
71       end
72     end
73   end
74
75
76   # This class provides persistent storage for plugins via a hash interface.
77   # The default mode is an object store, so you can store ruby objects and
78   # reference them with hash keys. This is because the default store/restore
79   # methods of the plugins' RegistryAccessor are calls to Marshal.dump and
80   # Marshal.restore,
81   # for example:
82   #   blah = Hash.new
83   #   blah[:foo] = "fum"
84   #   @registry[:blah] = blah
85   # then, even after the bot is shut down and disconnected, on the next run you
86   # can access the blah object as it was, with:
87   #   blah = @registry[:blah]
88   # The registry can of course be used to store simple strings, fixnums, etc as
89   # well, and should be useful to store or cache plugin data or dynamic plugin
90   # configuration.
91   #
92   # WARNING:
93   # in object store mode, don't make the mistake of treating it like a live
94   # object, e.g. (using the example above)
95   #   @registry[:blah][:foo] = "flump"
96   # will NOT modify the object in the registry - remember that BotRegistry#[]
97   # returns a Marshal.restore'd object, the object you just modified in place
98   # will disappear. You would need to:
99   #   blah = @registry[:blah]
100   #   blah[:foo] = "flump"
101   #   @registry[:blah] = blah
102
103   # If you don't need to store objects, and strictly want a persistant hash of
104   # strings, you can override the store/restore methods to suit your needs, for
105   # example (in your plugin):
106   #   def initialize
107   #     class << @registry
108   #       def store(val)
109   #         val
110   #       end
111   #       def restore(val)
112   #         val
113   #       end
114   #     end
115   #   end
116   # Your plugins section of the registry is private, it has its own namespace
117   # (derived from the plugin's class name, so change it and lose your data).
118   # Calls to registry.each etc, will only iterate over your namespace.
119   class BotRegistryAccessor
120     # plugins don't call this - a BotRegistryAccessor is created for them and
121     # is accessible via @registry.
122     def initialize(bot, name)
123       @bot = bot
124       @name = name.downcase
125       @registry = DBTree.new bot, "registry/#{@name}"
126       @default = nil
127       # debug "initializing registry accessor with name #{@name}"
128     end
129
130     def flush
131       @registry.flush
132       @registry.sync
133     end
134
135     def close
136       @registry.close
137     end
138
139     # convert value to string form for storing in the registry
140     # defaults to Marshal.dump(val) but you can override this in your module's
141     # registry object to use any method you like.
142     # For example, if you always just handle strings use:
143     #   def store(val)
144     #     val
145     #   end
146     def store(val)
147       Marshal.dump(val)
148     end
149
150     # restores object from string form, restore(store(val)) must return val.
151     # If you override store, you should override restore to reverse the
152     # action.
153     # For example, if you always just handle strings use:
154     #   def restore(val)
155     #     val
156     #   end
157     def restore(val)
158       begin
159         Marshal.restore(val)
160       rescue Exception => e
161         warning "failed to restore marshal data for #{val.inspect}, falling back to default"
162         debug e.inspect
163         debug e.backtrace.join("\n")
164         if @default != nil
165           begin
166             return Marshal.restore(@default)
167           rescue
168             return nil
169           end
170         else
171           return nil
172         end
173       end
174     end
175
176     # lookup a key in the registry
177     def [](key)
178       if @registry.has_key?(key)
179         return restore(@registry[key])
180       elsif @default != nil
181         return restore(@default)
182       else
183         return nil
184       end
185     end
186
187     # set a key in the registry
188     def []=(key,value)
189       @registry[key] = store(value)
190     end
191
192     # set the default value for registry lookups, if the key sought is not
193     # found, the default will be returned. The default default (har) is nil.
194     def set_default (default)
195       @default = store(default)
196     end
197
198     # just like Hash#each
199     def each(&block)
200       @registry.each {|key,value|
201         block.call(key, restore(value))
202       }
203     end
204
205     # just like Hash#each_key
206     def each_key(&block)
207       @registry.each {|key, value|
208         block.call(key)
209       }
210     end
211
212     # just like Hash#each_value
213     def each_value(&block)
214       @registry.each {|key, value|
215         block.call(restore(value))
216       }
217     end
218
219     # just like Hash#has_key?
220     def has_key?(key)
221       return @registry.has_key?(key)
222     end
223     alias include? has_key?
224     alias member? has_key?
225
226     # just like Hash#has_both?
227     def has_both?(key, value)
228       return @registry.has_both?(key, store(value))
229     end
230
231     # just like Hash#has_value?
232     def has_value?(value)
233       return @registry.has_value?(store(value))
234     end
235
236     # just like Hash#index?
237     def index(value)
238       ind = @registry.index(store(value))
239       if ind
240         return ind
241       else
242         return nil
243       end
244     end
245
246     # delete a key from the registry
247     def delete(key)
248       return @registry.delete(key)
249     end
250
251     # returns a list of your keys
252     def keys
253       return @registry.keys
254     end
255
256     # Return an array of all associations [key, value] in your namespace
257     def to_a
258       ret = Array.new
259       @registry.each {|key, value|
260         ret << [key, restore(value)]
261       }
262       return ret
263     end
264
265     # Return an hash of all associations {key => value} in your namespace
266     def to_hash
267       ret = Hash.new
268       @registry.each {|key, value|
269         ret[key] = restore(value)
270       }
271       return ret
272     end
273
274     # empties the registry (restricted to your namespace)
275     def clear
276       @registry.clear
277     end
278     alias truncate clear
279
280     # returns an array of the values in your namespace of the registry
281     def values
282       ret = Array.new
283       self.each {|k,v|
284         ret << restore(v)
285       }
286       return ret
287     end
288
289     def sub_registry(prefix)
290       return BotRegistryAccessor.new(@bot, @name + "/" + prefix)
291     end
292
293     # returns the number of keys in your registry namespace
294     def length
295       self.keys.length
296     end
297     alias size length
298
299   end
300
301 end