aboutsummaryrefslogtreecommitdiffstats
path: root/cloud_mdir_sync/messages.py
diff options
context:
space:
mode:
Diffstat (limited to 'cloud_mdir_sync/messages.py')
-rw-r--r--cloud_mdir_sync/messages.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/cloud_mdir_sync/messages.py b/cloud_mdir_sync/messages.py
index d7044ae..73cbf80 100644
--- a/cloud_mdir_sync/messages.py
+++ b/cloud_mdir_sync/messages.py
@@ -281,6 +281,13 @@ class MessageDB(object):
self.alt_file_hashes[msg.content_hash].add(fn)
msg.fill_email_id()
+ def update_inode_cache(self, msg):
+ """After the message has been hardlinked or the times adjusted,
+ the inode cache needs to be updated with the new times"""
+ st = os.stat(msg.fn)
+ inode = (st.st_ino, st.st_size, st.st_mtime, st.st_ctime)
+ self.inode_hashes[inode] = msg.content_hash
+
def write_content(self, content_hash, dest_fn):
"""Make the filename dest_fn contain content_hash's content"""
assert content_hash in self.file_hashes