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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
# Copyright (C) 2005 by Canonical Development 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
"""
An implementation the primary storage type CompressedTextStore.
This store keeps compressed versions of the full text. It does not
do any sort of delta compression.
"""
import os, tempfile, gzip
import bzrlib.store
from bzrlib.store import hash_prefix
from bzrlib.trace import mutter
from bzrlib.errors import BzrError, FileExists
from StringIO import StringIO
class CompressedTextStore(bzrlib.store.TransportStore):
"""Store that holds files indexed by unique names.
Files can be added, but not modified once they are in. Typically
the hash is used as the name, or something else known to be unique,
such as a UUID.
Files are stored gzip compressed, with no delta compression.
>>> st = ScratchCompressedTextStore()
>>> st.add(StringIO('hello'), 'aa')
>>> 'aa' in st
True
>>> 'foo' in st
False
You are not allowed to add an id that is already present.
Entries can be retrieved as files, which may then be read.
>>> st.add(StringIO('goodbye'), '123123')
>>> st.get('123123').read()
'goodbye'
"""
def _relpath(self, fileid, suffixes=[]):
suffixes = suffixes + ['gz']
return super(CompressedTextStore, self)._relpath(fileid, suffixes)
def _add(self, fn, f):
from cStringIO import StringIO
from bzrlib.osutils import pumpfile
if isinstance(f, basestring):
f = StringIO(f)
sio = StringIO()
gf = gzip.GzipFile(mode='wb', fileobj=sio)
# if pumpfile handles files that don't fit in ram,
# so will this function
if isinstance(f, basestring):
gf.write(f)
else:
pumpfile(f, gf)
gf.close()
sio.seek(0)
self._transport.put(fn, sio)
def _do_copy(self, other, to_copy, pb, permit_failure=False):
if isinstance(other, CompressedTextStore):
return self._copy_multi_text(other, to_copy, pb,
permit_failure=permit_failure)
return super(CompressedTextStore, self)._do_copy(other, to_copy,
pb, permit_failure=permit_failure)
def _copy_multi_text(self, other, to_copy, pb,
permit_failure=False):
# Because of _transport, we can no longer assume
# that they are on the same filesystem, we can, however
# assume that we only need to copy the exact bytes,
# we don't need to process the files.
failed = set()
if permit_failure:
new_to_copy = set()
for fileid, has in zip(to_copy, other.has(to_copy)):
if has:
new_to_copy.add(fileid)
else:
failed.add(fileid)
to_copy = new_to_copy
#mutter('_copy_multi_text copying %s, failed %s' % (to_copy, failed))
paths = [self._relpath(fileid) for fileid in to_copy]
count = other._transport.copy_to(paths, self._transport, pb=pb)
assert count == len(to_copy)
return count, failed
def __init__(self, transport, prefixed=False):
super(CompressedTextStore, self).__init__(transport, prefixed)
self.register_suffix('gz')
def __iter__(self):
for relpath, st in self._iter_relpaths():
if relpath.endswith(".gz"):
yield os.path.basename(relpath)[:-3]
else:
yield os.path.basename(relpath)
def _get(self, filename):
"""Returns a file reading from a particular entry."""
f = self._transport.get(filename)
# gzip.GzipFile.read() requires a tell() function
# but some transports return objects that cannot seek
# so buffer them in a StringIO instead
if hasattr(f, 'tell'):
return gzip.GzipFile(mode='rb', fileobj=f)
else:
from cStringIO import StringIO
sio = StringIO(f.read())
return gzip.GzipFile(mode='rb', fileobj=sio)
def ScratchTextStore():
return TextStore(ScratchTransport())
|