2011-06-23 20:47:51 +00:00
|
|
|
from __future__ import with_statement
|
2010-12-21 20:29:09 +00:00
|
|
|
from ConfigParser import RawConfigParser
|
|
|
|
import fcntl
|
2010-10-17 20:04:50 +00:00
|
|
|
import msgpack
|
2010-10-20 19:08:46 +00:00
|
|
|
import os
|
2010-12-21 20:29:09 +00:00
|
|
|
import shutil
|
2010-10-21 19:21:43 +00:00
|
|
|
|
2011-08-15 20:32:26 +00:00
|
|
|
from .archive import Archive
|
2011-08-06 11:01:58 +00:00
|
|
|
from .helpers import error_callback, get_cache_dir
|
2011-07-30 19:13:48 +00:00
|
|
|
from .hashindex import ChunkIndex
|
2010-03-06 17:25:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Cache(object):
|
|
|
|
"""Client Side cache
|
|
|
|
"""
|
|
|
|
|
2011-07-30 19:13:48 +00:00
|
|
|
def __init__(self, store, key):
|
2010-12-21 20:29:09 +00:00
|
|
|
self.txn_active = False
|
2010-03-06 17:25:35 +00:00
|
|
|
self.store = store
|
2011-07-30 19:13:48 +00:00
|
|
|
self.key = key
|
2011-08-15 20:32:26 +00:00
|
|
|
self.path = os.path.join(get_cache_dir(), store.meta['id'])
|
2010-12-21 20:29:09 +00:00
|
|
|
if not os.path.exists(self.path):
|
|
|
|
self.create()
|
2010-03-06 17:25:35 +00:00
|
|
|
self.open()
|
2011-08-15 20:32:26 +00:00
|
|
|
if self.manifest != store.meta['manifest']:
|
2010-12-21 20:29:09 +00:00
|
|
|
self.sync()
|
2011-07-30 19:13:48 +00:00
|
|
|
self.commit()
|
2010-03-06 17:25:35 +00:00
|
|
|
|
2010-12-21 20:29:09 +00:00
|
|
|
def create(self):
|
|
|
|
"""Create a new empty store at `path`
|
|
|
|
"""
|
2011-01-04 22:00:39 +00:00
|
|
|
os.makedirs(self.path)
|
2010-12-21 20:29:09 +00:00
|
|
|
with open(os.path.join(self.path, 'README'), 'wb') as fd:
|
|
|
|
fd.write('This is a DARC cache')
|
|
|
|
config = RawConfigParser()
|
|
|
|
config.add_section('cache')
|
|
|
|
config.set('cache', 'version', '1')
|
2011-08-15 20:32:26 +00:00
|
|
|
config.set('cache', 'store', self.store.meta['id'])
|
|
|
|
config.set('cache', 'manifest', '')
|
2010-12-21 20:29:09 +00:00
|
|
|
with open(os.path.join(self.path, 'config'), 'wb') as fd:
|
|
|
|
config.write(fd)
|
2011-07-30 19:13:48 +00:00
|
|
|
ChunkIndex.create(os.path.join(self.path, 'chunks'))
|
2010-12-21 20:29:09 +00:00
|
|
|
with open(os.path.join(self.path, 'files'), 'wb') as fd:
|
|
|
|
pass # empty file
|
|
|
|
|
2010-03-06 17:25:35 +00:00
|
|
|
def open(self):
|
2010-12-21 20:29:09 +00:00
|
|
|
if not os.path.isdir(self.path):
|
|
|
|
raise Exception('%s Does not look like a darc cache' % self.path)
|
|
|
|
self.lock_fd = open(os.path.join(self.path, 'README'), 'r+')
|
|
|
|
fcntl.flock(self.lock_fd, fcntl.LOCK_EX)
|
|
|
|
self.rollback()
|
|
|
|
self.config = RawConfigParser()
|
|
|
|
self.config.read(os.path.join(self.path, 'config'))
|
|
|
|
if self.config.getint('cache', 'version') != 1:
|
|
|
|
raise Exception('%s Does not look like a darc cache')
|
2011-08-15 20:32:26 +00:00
|
|
|
self.id = self.config.get('cache', 'store')
|
|
|
|
self.manifest = self.config.get('cache', 'manifest')
|
2011-07-30 19:13:48 +00:00
|
|
|
self.chunks = ChunkIndex(os.path.join(self.path, 'chunks'))
|
2011-07-06 20:11:01 +00:00
|
|
|
self.files = None
|
2011-07-02 18:39:35 +00:00
|
|
|
|
|
|
|
def _read_files(self):
|
2011-07-06 20:23:41 +00:00
|
|
|
self.files = {}
|
2010-12-21 20:29:09 +00:00
|
|
|
with open(os.path.join(self.path, 'files'), 'rb') as fd:
|
|
|
|
u = msgpack.Unpacker()
|
|
|
|
while True:
|
|
|
|
data = fd.read(64 * 1024)
|
|
|
|
if not data:
|
|
|
|
break
|
|
|
|
u.feed(data)
|
|
|
|
for hash, item in u:
|
2011-08-14 12:50:56 +00:00
|
|
|
if item[0] < 10:
|
2010-12-21 20:29:09 +00:00
|
|
|
self.files[hash] = (item[0] + 1,) + item[1:]
|
|
|
|
|
|
|
|
def begin_txn(self):
|
|
|
|
# Initialize transaction snapshot
|
|
|
|
txn_dir = os.path.join(self.path, 'txn.tmp')
|
|
|
|
os.mkdir(txn_dir)
|
|
|
|
shutil.copy(os.path.join(self.path, 'config'), txn_dir)
|
|
|
|
shutil.copy(os.path.join(self.path, 'chunks'), txn_dir)
|
|
|
|
shutil.copy(os.path.join(self.path, 'files'), txn_dir)
|
|
|
|
os.rename(os.path.join(self.path, 'txn.tmp'),
|
|
|
|
os.path.join(self.path, 'txn.active'))
|
|
|
|
self.txn_active = True
|
|
|
|
|
|
|
|
def commit(self):
|
|
|
|
"""Commit transaction
|
|
|
|
"""
|
2011-01-04 22:16:55 +00:00
|
|
|
if not self.txn_active:
|
|
|
|
return
|
2011-07-06 20:11:01 +00:00
|
|
|
if self.files is not None:
|
|
|
|
with open(os.path.join(self.path, 'files'), 'wb') as fd:
|
|
|
|
for item in self.files.iteritems():
|
|
|
|
msgpack.pack(item, fd)
|
2011-08-15 20:32:26 +00:00
|
|
|
self.config.set('cache', 'manifest', self.store.meta['manifest'])
|
2010-12-21 20:29:09 +00:00
|
|
|
with open(os.path.join(self.path, 'config'), 'w') as fd:
|
|
|
|
self.config.write(fd)
|
|
|
|
self.chunks.flush()
|
|
|
|
os.rename(os.path.join(self.path, 'txn.active'),
|
|
|
|
os.path.join(self.path, 'txn.tmp'))
|
|
|
|
shutil.rmtree(os.path.join(self.path, 'txn.tmp'))
|
|
|
|
self.txn_active = False
|
|
|
|
|
|
|
|
def rollback(self):
|
|
|
|
"""Roll back partial and aborted transactions
|
|
|
|
"""
|
|
|
|
# Roll back active transaction
|
|
|
|
txn_dir = os.path.join(self.path, 'txn.active')
|
|
|
|
if os.path.exists(txn_dir):
|
|
|
|
shutil.copy(os.path.join(txn_dir, 'config'), self.path)
|
|
|
|
shutil.copy(os.path.join(txn_dir, 'chunks'), self.path)
|
|
|
|
shutil.copy(os.path.join(txn_dir, 'files'), self.path)
|
2011-08-14 12:50:56 +00:00
|
|
|
os.rename(txn_dir, os.path.join(self.path, 'txn.tmp'))
|
|
|
|
# Remove partial transaction
|
|
|
|
if os.path.exists(os.path.join(self.path, 'txn.tmp')):
|
|
|
|
shutil.rmtree(os.path.join(self.path, 'txn.tmp'))
|
2010-12-21 20:29:09 +00:00
|
|
|
self.txn_active = False
|
|
|
|
|
|
|
|
def sync(self):
|
2010-03-06 17:25:35 +00:00
|
|
|
"""Initializes cache by fetching and reading all archive indicies
|
|
|
|
"""
|
2011-08-03 15:31:22 +00:00
|
|
|
def cb(chunk, error, id):
|
|
|
|
assert not error
|
2011-08-15 20:32:26 +00:00
|
|
|
data = self.key.decrypt(id, chunk)
|
|
|
|
try:
|
|
|
|
count, size, csize = self.chunks[id]
|
|
|
|
self.chunks[id] = count + 1, size, csize
|
|
|
|
except KeyError:
|
|
|
|
self.chunks[id] = 1, len(data), len(chunk)
|
2011-08-03 15:31:22 +00:00
|
|
|
unpacker.feed(data)
|
|
|
|
for item in unpacker:
|
|
|
|
try:
|
|
|
|
for id, size, csize in item['chunks']:
|
|
|
|
try:
|
|
|
|
count, size, csize = self.chunks[id]
|
|
|
|
self.chunks[id] = count + 1, size, csize
|
|
|
|
except KeyError:
|
|
|
|
self.chunks[id] = 1, size, csize
|
|
|
|
pass
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2010-12-21 20:29:09 +00:00
|
|
|
self.begin_txn()
|
2010-10-30 11:44:25 +00:00
|
|
|
print 'Initializing cache...'
|
2011-06-18 09:25:29 +00:00
|
|
|
self.chunks.clear()
|
2011-08-15 20:32:26 +00:00
|
|
|
# Add manifest chunk to chunk index
|
|
|
|
mid = self.store.meta['manifest'].decode('hex')
|
|
|
|
cdata = self.store.get(mid)
|
|
|
|
mdata = self.key.decrypt(mid, cdata)
|
|
|
|
self.chunks[mid] = 1, len(mdata), len(cdata)
|
2011-07-30 19:13:48 +00:00
|
|
|
unpacker = msgpack.Unpacker()
|
2011-08-15 20:32:26 +00:00
|
|
|
for name, (id, _) in Archive.read_manifest(self.store, self.key).items():
|
|
|
|
cdata = self.store.get(id)
|
|
|
|
data = self.key.decrypt(id, cdata)
|
|
|
|
try:
|
|
|
|
count, size, csize = self.chunks[id]
|
|
|
|
self.chunks[id] = count + 1, size, csize
|
|
|
|
except KeyError:
|
|
|
|
self.chunks[id] = 1, len(data), len(cdata)
|
2011-07-30 19:13:48 +00:00
|
|
|
archive = msgpack.unpackb(data)
|
|
|
|
print 'Analyzing archive:', archive['name']
|
2011-08-15 20:32:26 +00:00
|
|
|
for id in archive['items']:
|
|
|
|
self.store.get(id, callback=cb, callback_data=id)
|
2011-08-03 15:31:22 +00:00
|
|
|
self.store.flush_rpc()
|
2010-03-06 17:25:35 +00:00
|
|
|
|
2011-08-07 15:10:21 +00:00
|
|
|
def add_chunk(self, id, data, stats):
|
2010-12-21 20:29:09 +00:00
|
|
|
if not self.txn_active:
|
|
|
|
self.begin_txn()
|
2010-03-15 20:23:34 +00:00
|
|
|
if self.seen_chunk(id):
|
2011-08-07 15:10:21 +00:00
|
|
|
return self.chunk_incref(id, stats)
|
2011-07-30 19:13:48 +00:00
|
|
|
size = len(data)
|
2011-08-15 20:32:26 +00:00
|
|
|
data = self.key.encrypt(data)
|
2010-03-15 20:23:34 +00:00
|
|
|
csize = len(data)
|
2011-08-15 20:32:26 +00:00
|
|
|
self.store.put(id, data, callback=error_callback)
|
2011-07-30 19:13:48 +00:00
|
|
|
self.chunks[id] = (1, size, csize)
|
2011-08-07 15:10:21 +00:00
|
|
|
stats.update(size, csize, True)
|
2011-07-30 19:13:48 +00:00
|
|
|
return id, size, csize
|
2010-03-06 17:25:35 +00:00
|
|
|
|
2010-03-15 20:23:34 +00:00
|
|
|
def seen_chunk(self, id):
|
2011-07-30 19:13:48 +00:00
|
|
|
return self.chunks.get(id, (0, 0, 0))[0]
|
2010-03-06 17:25:35 +00:00
|
|
|
|
2011-08-07 15:10:21 +00:00
|
|
|
def chunk_incref(self, id, stats):
|
2010-12-21 20:29:09 +00:00
|
|
|
if not self.txn_active:
|
|
|
|
self.begin_txn()
|
2011-07-30 19:13:48 +00:00
|
|
|
count, size, csize = self.chunks[id]
|
|
|
|
self.chunks[id] = (count + 1, size, csize)
|
2011-08-07 15:10:21 +00:00
|
|
|
stats.update(size, csize, False)
|
2011-07-30 19:13:48 +00:00
|
|
|
return id, size, csize
|
2010-03-06 17:25:35 +00:00
|
|
|
|
|
|
|
def chunk_decref(self, id):
|
2010-12-21 20:29:09 +00:00
|
|
|
if not self.txn_active:
|
|
|
|
self.begin_txn()
|
2011-07-30 19:13:48 +00:00
|
|
|
count, size, csize = self.chunks[id]
|
2010-03-15 20:23:34 +00:00
|
|
|
if count == 1:
|
2010-12-21 20:29:09 +00:00
|
|
|
del self.chunks[id]
|
2011-08-15 20:32:26 +00:00
|
|
|
self.store.delete(id, callback=error_callback)
|
2010-03-15 20:23:34 +00:00
|
|
|
else:
|
2011-07-30 19:13:48 +00:00
|
|
|
self.chunks[id] = (count - 1, size, csize)
|
2010-10-13 20:07:55 +00:00
|
|
|
|
2010-10-25 20:31:18 +00:00
|
|
|
def file_known_and_unchanged(self, path_hash, st):
|
2011-07-06 20:11:01 +00:00
|
|
|
if self.files is None:
|
2011-07-02 18:39:35 +00:00
|
|
|
self._read_files()
|
2010-12-21 20:29:09 +00:00
|
|
|
entry = self.files.get(path_hash)
|
2010-10-26 18:50:30 +00:00
|
|
|
if (entry and entry[3] == st.st_mtime
|
|
|
|
and entry[2] == st.st_size and entry[1] == st.st_ino):
|
|
|
|
# reset entry age
|
2010-12-21 20:29:09 +00:00
|
|
|
self.files[path_hash] = (0,) + entry[1:]
|
2011-07-30 19:13:48 +00:00
|
|
|
return entry[4]
|
2010-10-25 20:31:18 +00:00
|
|
|
else:
|
2011-07-30 19:13:48 +00:00
|
|
|
return None
|
2010-10-25 20:31:18 +00:00
|
|
|
|
2010-12-21 20:29:09 +00:00
|
|
|
def memorize_file(self, path_hash, st, ids):
|
2010-10-25 20:31:18 +00:00
|
|
|
# Entry: Age, inode, size, mtime, chunk ids
|
2010-12-21 20:29:09 +00:00
|
|
|
self.files[path_hash] = 0, st.st_ino, st.st_size, st.st_mtime, ids
|
2010-10-13 20:07:55 +00:00
|
|
|
|