import cPickle import hashlib import os import sys import zlib NS_ARCHIVES = 'ARCHIVES' NS_CHUNKS = 'CHUNKS' class Cache(object): """Client Side cache """ def __init__(self, store): self.store = store self.path = os.path.join(os.path.expanduser('~'), '.dedupestore', 'cache', '%s.cache' % self.store.uuid) self.tid = -1 self.open() if self.tid != self.store.tid: self.init() def open(self): if not os.path.exists(self.path): return print 'Loading cache: ', self.path, '...' data = cPickle.loads(zlib.decompress(open(self.path, 'rb').read())) if data['uuid'] != self.store.uuid: print >> sys.stderr, 'Cache UUID mismatch' return self.chunkmap = data['chunkmap'] self.archives = data['archives'] self.tid = data['tid'] print 'done' def init(self): """Initializes cache by fetching and reading all archive indicies """ self.chunkmap = {} self.archives = [] self.tid = self.store.tid if self.store.tid == 0: return print 'Recreating cache...' for id in list(self.store.list(NS_ARCHIVES)): archive = cPickle.loads(zlib.decompress(self.store.get(NS_ARCHIVES, id))) self.archives.append(archive['name']) for id, csize, osize in archive['chunks']: if self.seen_chunk(id): self.chunk_incref(id) else: self.init_chunk(id, csize, osize) print 'done' def save(self): assert self.store.state == self.store.OPEN print 'saving cache' data = {'uuid': self.store.uuid, 'chunkmap': self.chunkmap, 'tid': self.store.tid, 'archives': self.archives} print 'Saving cache as:', self.path cachedir = os.path.dirname(self.path) if not os.path.exists(cachedir): os.makedirs(cachedir) with open(self.path, 'wb') as fd: fd.write(zlib.compress(cPickle.dumps(data))) print 'done' def add_chunk(self, data): osize = len(data) data = zlib.compress(data) id = hashlib.sha1(data).digest() if self.seen_chunk(id): return self.chunk_incref(id) csize = len(data) self.store.put(NS_CHUNKS, id, data) return self.init_chunk(id, csize, osize) def init_chunk(self, id, csize, osize): self.chunkmap[id] = (1, csize, osize) return id, csize, osize def seen_chunk(self, id): count, csize, osize = self.chunkmap.get(id, (0, 0, 0)) return count def chunk_incref(self, id): count, csize, osize = self.chunkmap[id] self.chunkmap[id] = (count + 1, csize, osize) return id, csize, osize def chunk_decref(self, id): count, csize, osize = self.chunkmap[id] if count == 1: del self.chunkmap[id] self.store.delete(NS_CHUNKS, id) else: self.chunkmap[id] = (count - 1, csize, osize)