File hierarchy added
[imap-fix-internaldate] / src / caching_data.py
CommitLineData
8301e589
PD
1'''
2caching_data.py - The module contains the CachingData class.
3
4Copyright (c) 2012 Intra2net AG
5Author: Plamen Dimitrov
6
7This program is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16'''
7a1d4c35 17import os, tempfile
8301e589 18import pickle
8fe4e3ff 19import logging
7a1d4c35
PD
20from mailbox_state import MailboxState
21
8fe4e3ff 22CACHE_FILENAME = "message_cache.dat"
8a9d4c89 23CACHE_VERSION = 1
8301e589
PD
24
25class CachingData:
26 """This class is responsible for the caching of data."""
7a1d4c35
PD
27
28 # class attributes
29 # integer for version of the cache
30 version = None
31 # dictionary of usernames as keys and dictionaries as values
32 # the second dictionaries have unique mailbox keys and mailboxes as values
33 data = None
8301e589
PD
34
35 def __init__(self):
8fe4e3ff 36 # open data file or create one and initialize date if not found
8301e589 37 try:
8fe4e3ff
PD
38 cachefile = open(CACHE_FILENAME, 'rb')
39 self.version, self.data = pickle.load(cachefile)
8a9d4c89
PD
40 if(self.version != CACHE_VERSION):
41 logging.warning("Cache file has version %s and the script version is %s.",
428052f4 42 self.version, CACHE_VERSION)
8a9d4c89 43 raise IOError
8fe4e3ff
PD
44 logging.info("Cache version %s", self.version)
45 logging.debug("%s users found.", len(self.data))
8301e589 46 except IOError:
8a9d4c89 47 self.version = CACHE_VERSION
8301e589 48 self.data = {}
8fe4e3ff 49 with open(CACHE_FILENAME, 'wb') as cachefile:
428052f4 50 pickle.dump((self.version, self.data), cachefile)
8301e589
PD
51
52 def __del__(self):
7a1d4c35 53 # create temporary file first
8fe4e3ff 54 location = os.path.dirname(CACHE_FILENAME)
7a1d4c35 55 file_descriptor, tmpname = tempfile.mkstemp(dir=location)
8fe4e3ff
PD
56 try:
57 cachefile = os.fdopen(file_descriptor, 'wb')
58
59 # prepare data based on a save flag
60 saved_data = {}
61 for user in self.data:
62 saved_data[user] = {}
63 for box_key in self.data[user]:
64 if(self.data[user][box_key].needs_save):
65 saved_data[user][box_key] = self.data[user][box_key]
66 logging.debug("The mailbox %s will be saved.", saved_data[user][box_key].name)
67 if(len(saved_data[user])==0):
68 del saved_data[user]
69 logging.debug("The user %s will not be saved.", user)
70 self.data = saved_data
71
72 # avoid test mode or cases where nothing needs saving
73 if(len(saved_data)==0):
74 os.unlink(tmpname)
75 return
76
77 # serialize in file
8fe4e3ff
PD
78 pickle.dump((self.version, self.data), cachefile)
79 logging.debug("%s users stored.", len(self.data))
80 cachefile.close()
81 os.rename(tmpname, CACHE_FILENAME)
82 except:
83 os.unlink(tmpname)
8301e589 84
7a1d4c35
PD
85 def retrieve_cached_mailbox(self, name, uidvalidity, user):
86 """Retrieve a cached mailbox or create it."""
87 box_key = name.strip('"') + uidvalidity
88 if(user not in self.data):
89 self.data[user] = {}
8fe4e3ff 90 logging.debug("New user %s cached.", user)
7a1d4c35
PD
91 if(box_key not in self.data[user]):
92 self.data[user][box_key] = MailboxState(name, uidvalidity, user)
8fe4e3ff 93 logging.debug("New mailbox %s cached.", box_key)
7a1d4c35
PD
94 return self.data[user][box_key]
95
3b81023f 96 def report_conflicts(self):
7a1d4c35
PD
97 """Write a date conflicts report in a file."""
98 with open("conflict_stats.txt", 'w') as statsfile:
99 owner_total_conflicts = {}
100 owner_total_missing = {}
101 for user in self.data:
102 owner_total_conflicts[user] = 0
103 owner_total_missing[user] = 0
104 for box_key in self.data[user]:
105 owner_total_conflicts[user] += self.data[user][box_key].date_conflicts
106 owner_total_missing[user] += self.data[user][box_key].no_received_field
107 statsfile.write("Total date conflicts to be corrected in a mailbox {0} are {1}.\n"\
108 .format(self.data[user][box_key].name, self.data[user][box_key].date_conflicts))
474b47d4 109 statsfile.write("Total messages without received headers in a mailbox {0} are {1}.\n"\
7a1d4c35
PD
110 .format(self.data[user][box_key].name, self.data[user][box_key].no_received_field))
111 statsfile.write("Total date conflicts to be corrected for user {0} are {1}.\n\n"\
112 .format(user, owner_total_missing[user]))
8301e589 113 return