From 36eb37b47df3eccedd8dd0d7dd78cf0fb9305b66 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Mon, 11 Apr 2011 18:33:11 +0200 Subject: [PATCH] IMAP: reduce quickchanged() checks For each folder we were making a second IMAP request asking for the latest UID and compared that with the highest UID in our statusfolder. This catched the case that 1 mail has been deleted by someone else and another one has arrived since we checked, so that the total number of mails appears to not have changed. We don't capture anymore this case in the quickchanged() case. It improves my performance from 8 to about 7.5 seconds per check (with lots of variation) and we would benefit even more in the IMAP<->IMAP case as we do one additional IMAP lookup per folder on each side then. Do cleanups on whitespaces while in this file. Signed-off-by: Sebastian Spaeth Signed-off-by: Nicolas Sebrecht --- offlineimap/folder/IMAP.py | 38 ++++++++++---------------------------- 1 file changed, 10 insertions(+), 28 deletions(-) diff --git a/offlineimap/folder/IMAP.py b/offlineimap/folder/IMAP.py index f2d0dda..046c792 100644 --- a/offlineimap/folder/IMAP.py +++ b/offlineimap/folder/IMAP.py @@ -74,7 +74,7 @@ class IMAPFolder(BaseFolder): return long(imapobj._get_untagged_response('UIDVALIDITY', True)[0]) finally: self.imapserver.releaseconnection(imapobj) - + def quickchanged(self, statusfolder): # An IMAP folder has definitely changed if the number of # messages or the UID of the last message have changed. Otherwise @@ -97,26 +97,8 @@ class IMAPFolder(BaseFolder): if maxmsgid != statusfolder.getmessagecount(): return True - if maxmsgid < 1: - # No messages; return - return False - - # Now, get the UID for the last message. - response = imapobj.fetch('%d' % maxmsgid, '(UID)')[1] finally: self.imapserver.releaseconnection(imapobj) - - # Discard the message number. - messagestr = response[0].split(' ', 1)[1] - options = imaputil.flags2hash(messagestr) - if not options.has_key('UID'): - return True - uid = long(options['UID']) - saveduids = statusfolder.getmessageuidlist() - saveduids.sort() - if uid != saveduids[-1]: - return True - return False # TODO: Make this so that it can define a date that would be the oldest messages etc. @@ -216,13 +198,13 @@ class IMAPFolder(BaseFolder): self.ui.debug('imap', 'Returned object from fetching %d: %s' % \ (uid, str(initialresult))) return initialresult[1][0][1].replace("\r\n", "\n") - + finally: self.imapserver.releaseconnection(imapobj) def getmessagetime(self, uid): return self.messagelist[uid]['time'] - + def getmessageflags(self, uid): return self.messagelist[uid]['flags'] @@ -416,16 +398,16 @@ class IMAPFolder(BaseFolder): # get the date of the message file, so we can pass it to the server. date = self.getmessageinternaldate(content, rtime) self.ui.debug('imap', 'savemessage: using date %s' % date) - + content = re.sub("(?