24
24
import os, tempfile, types, osutils, gzip, errno
25
25
from stat import ST_SIZE
26
26
from StringIO import StringIO
27
from trace import mutter
27
from bzrlib.errors import BzrError
28
from bzrlib.trace import mutter
29
31
######################################################################
112
def copy_multi(self, other, ids):
114
def copy_multi(self, other, ids, permit_failure=False):
113
115
"""Copy texts for ids from other into self.
115
If an id is present in self, it is skipped. A count of copied
116
ids is returned, which may be less than len(ids).
117
If an id is present in self, it is skipped.
119
Returns (count_copied, failed), where failed is a collection of ids
120
that could not be copied.
118
from bzrlib.progress import ProgressBar
122
pb = bzrlib.ui.ui_factory.progress_bar()
120
124
pb.update('preparing to copy')
121
125
to_copy = [id for id in ids if id not in self]
125
pb.update('copy', count, len(to_copy))
126
self.add(other[id], id)
126
if isinstance(other, ImmutableStore):
127
return self.copy_multi_immutable(other, to_copy, pb)
132
pb.update('copy', count, len(to_copy))
133
if not permit_failure:
134
self.add(other[id], id)
143
if not permit_failure:
144
assert count == len(to_copy)
148
def copy_multi_immutable(self, other, to_copy, pb, permit_failure=False):
149
from shutil import copyfile
154
other_p = other._path(id)
158
if e.errno == errno.ENOENT:
159
if not permit_failure:
160
copyfile(other_p+".gz", p+".gz")
163
copyfile(other_p+".gz", p+".gz")
165
if e.errno == errno.ENOENT:
173
pb.update('copy', count, len(to_copy))
127
174
assert count == len(to_copy)
132
179
def __contains__(self, fileid):
148
195
def __len__(self):
149
196
return len(os.listdir(self._basedir))
151
199
def __getitem__(self, fileid):
152
200
"""Returns a file reading from a particular entry."""
153
201
p = self._path(fileid)
155
203
return gzip.GzipFile(p + '.gz', 'rb')
156
204
except IOError, e:
157
if e.errno == errno.ENOENT:
205
if e.errno != errno.ENOENT:
211
if e.errno != errno.ENOENT:
214
raise IndexError(fileid)
162
217
def total_size(self):
163
218
"""Return (count, bytes)