mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-23 19:22:45 +01:00
Converted ChannelsDictionary to use a PersistentDictionary.
This commit is contained in:
parent
7d960ca4c6
commit
44227181b7
15
src/ircdb.py
15
src/ircdb.py
@ -41,6 +41,7 @@ import debug
|
||||
import utils
|
||||
import world
|
||||
import ircutils
|
||||
from structures import PersistentDictionary
|
||||
|
||||
def fromChannelCapability(capability):
|
||||
"""Returns a (channel, capability) tuple from a channel capability."""
|
||||
@ -488,14 +489,8 @@ class UsersDB(object):
|
||||
class ChannelsDictionary(object):
|
||||
def __init__(self, filename):
|
||||
self.filename = filename
|
||||
if os.path.exists(filename):
|
||||
fd = file(filename, 'r')
|
||||
s = fd.read()
|
||||
fd.close()
|
||||
Set = sets.Set
|
||||
self.dict = eval(_normalize(s))
|
||||
else:
|
||||
self.dict = {}
|
||||
Set = sets.Set
|
||||
self.dict = PersistentDictionary(filename, globals(), locals())
|
||||
|
||||
def getChannel(self, channel):
|
||||
"""Returns an IrcChannel object for the given channel."""
|
||||
@ -514,9 +509,7 @@ class ChannelsDictionary(object):
|
||||
|
||||
def flush(self):
|
||||
"""Flushes the channel database to its file."""
|
||||
fd = file(self.filename, 'w')
|
||||
fd.write(repr(self.dict))
|
||||
fd.close()
|
||||
self.dict.flush()
|
||||
|
||||
def reload(self):
|
||||
"""Reloads the channel database from its file."""
|
||||
|
Loading…
Reference in New Issue
Block a user