1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright (C) 2005 by Canonical Ltd
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from trace import mutter
from bzrlib.store import Storage, CompressedTextStore
from bzrlib.local_transport import LocalTransport
try:
set
except NameError:
from sets import Set as set
class CachedStore(Storage):
"""A store that caches data locally, to avoid repeated downloads.
The precacache method should be used to avoid server round-trips for
every piece of data.
"""
def __init__(self, store, cache_dir):
self.source_store = store
self.cache_store = CompressedTextStore(LocalTransport(cache_dir))
def __getitem__(self, id):
mutter("Cache add %s" % id)
if id not in self.cache_store:
self.cache_store.add(self.source_store[id], id)
return self.cache_store[id]
def __contains__(self, fileid):
if fileid in self.cache_store:
return True
if fileid in self.source_store:
# We could copy at this time
return True
return False
def get(self, fileids, pb=None):
fileids = list(fileids)
hasids = self.cache_store.has(fileids)
needs = set()
for has, fileid in zip(hasids, fileids):
if not has:
needs.add(fileid)
if needs:
self.cache_store.copy_multi(self.source_store, needs)
return self.cache_store.get(fileids, pb=pb)
def prefetch(self, ids):
"""Copy a series of ids into the cache, before they are used.
For remote stores that support pipelining or async downloads, this can
increase speed considerably.
"""
mutter("Prefetch of ids %s" % ",".join(ids))
self.cache_store.copy_multi(self.source_store, ids)
|