From dc433fea2a937e651729013ac30341b83176f168 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 12 Mar 2010 18:26:00 -0600 Subject: [PATCH] Limiting the size of the cache --- src/gvoice/conversations.py | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/gvoice/conversations.py b/src/gvoice/conversations.py index fed382b..5f3d371 100644 --- a/src/gvoice/conversations.py +++ b/src/gvoice/conversations.py @@ -21,6 +21,9 @@ _moduleLogger = logging.getLogger(__name__) class Conversations(object): + OLDEST_COMPATIBLE_FORMAT_VERSION = misc_utils.parse_version("0.8.0") + OLDEST_MESSAGE_WINDOW = datetime.timedelta(days=60) + def __init__(self, getter): self._get_raw_conversations = getter self._conversations = {} @@ -41,7 +44,7 @@ class Conversations(object): return if misc_utils.compare_versions( - misc_utils.parse_version("0.8.0"), + self.OLDEST_COMPATIBLE_FORMAT_VERSION, misc_utils.parse_version(fileVersion), ) <= 0: self._conversations = convs @@ -54,6 +57,8 @@ class Conversations(object): def save(self, path): try: + for conv in self._conversations.itervalues(): + conv.compress(self.OLDEST_MESSAGE_WINDOW) dataToDump = (constants.__version__, constants.__build__, self._conversations) with open(path, "wb") as f: pickle.dump(dataToDump, f, pickle.HIGHEST_PROTOCOL) @@ -141,6 +146,21 @@ class MergedConversations(object): def conversations(self): return self._conversations + def compress(self, timedelta): + now = datetime.datetime.now() + oldNumConvs = len(self._conversations) + oldConvs = self._conversations + self._conversations = [ + conv + for conv in self._conversations + if (now - conv.time) < timedelta + ] + newNumConvs = len(self._conversations) + if oldNumConvs != newNumConvs: + _moduleLogger.debug("Compressed conversations from %s to %s" % (oldNumConvs, newNumConvs)) + else: + _moduleLogger.debug("Did not compress, %s" % (newNumConvs)) + def _validate(self, newConversation): if not self._conversations: return -- 1.7.9.5