~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store.py

  • Committer: Martin Pool
  • Date: 2005-07-22 23:32:00 UTC
  • Revision ID: mbp@sourcefrog.net-20050722233200-ccdeca985093a9fb
- now needs python 2.4
- update instructions for running selftest

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
import os, tempfile, types, osutils, gzip, errno
25
25
from stat import ST_SIZE
26
26
from StringIO import StringIO
27
 
from bzrlib.errors import BzrError
28
 
from bzrlib.trace import mutter
29
 
import bzrlib.ui
 
27
from trace import mutter
30
28
 
31
29
######################################################################
32
30
# stores
92
90
            
93
91
        p = self._path(fileid)
94
92
        if os.access(p, os.F_OK) or os.access(p + '.gz', os.F_OK):
 
93
            from bzrlib.errors import bailout
95
94
            raise BzrError("store %r already contains id %r" % (self._basedir, fileid))
96
95
 
97
96
        fn = p
111
110
            af.close()
112
111
 
113
112
 
114
 
    def copy_multi(self, other, ids, permit_failure=False):
 
113
    def copy_multi(self, other, ids):
115
114
        """Copy texts for ids from other into self.
116
115
 
117
 
        If an id is present in self, it is skipped.
118
 
 
119
 
        Returns (count_copied, failed), where failed is a collection of ids
120
 
        that could not be copied.
 
116
        If an id is present in self, it is skipped.  A count of copied
 
117
        ids is returned, which may be less than len(ids).
121
118
        """
122
 
        pb = bzrlib.ui.ui_factory.progress_bar()
123
 
        
 
119
        from bzrlib.progress import ProgressBar
 
120
        pb = ProgressBar()
124
121
        pb.update('preparing to copy')
125
122
        to_copy = [id for id in ids if id not in self]
126
123
        if isinstance(other, ImmutableStore):
127
124
            return self.copy_multi_immutable(other, to_copy, pb)
128
125
        count = 0
129
 
        failed = set()
130
126
        for id in to_copy:
131
127
            count += 1
132
128
            pb.update('copy', count, len(to_copy))
133
 
            if not permit_failure:
134
 
                self.add(other[id], id)
135
 
            else:
136
 
                try:
137
 
                    entry = other[id]
138
 
                except IndexError:
139
 
                    failed.add(id)
140
 
                    continue
141
 
                self.add(entry, id)
142
 
                
143
 
        if not permit_failure:
144
 
            assert count == len(to_copy)
 
129
            self.add(other[id], id)
 
130
        assert count == len(to_copy)
145
131
        pb.clear()
146
 
        return count, failed
147
 
 
148
 
    def copy_multi_immutable(self, other, to_copy, pb, permit_failure=False):
 
132
        return count
 
133
 
 
134
 
 
135
    def copy_multi_immutable(self, other, to_copy, pb):
149
136
        from shutil import copyfile
150
137
        count = 0
151
 
        failed = set()
152
138
        for id in to_copy:
153
139
            p = self._path(id)
154
140
            other_p = other._path(id)
156
142
                copyfile(other_p, p)
157
143
            except IOError, e:
158
144
                if e.errno == errno.ENOENT:
159
 
                    if not permit_failure:
160
 
                        copyfile(other_p+".gz", p+".gz")
161
 
                    else:
162
 
                        try:
163
 
                            copyfile(other_p+".gz", p+".gz")
164
 
                        except IOError, e:
165
 
                            if e.errno == errno.ENOENT:
166
 
                                failed.add(id)
167
 
                            else:
168
 
                                raise
 
145
                    copyfile(other_p+".gz", p+".gz")
169
146
                else:
170
147
                    raise
171
148
            
173
150
            pb.update('copy', count, len(to_copy))
174
151
        assert count == len(to_copy)
175
152
        pb.clear()
176
 
        return count, failed
 
153
        return count
177
154
    
178
155
 
179
156
    def __contains__(self, fileid):
195
172
    def __len__(self):
196
173
        return len(os.listdir(self._basedir))
197
174
 
198
 
 
199
175
    def __getitem__(self, fileid):
200
176
        """Returns a file reading from a particular entry."""
201
177
        p = self._path(fileid)
202
178
        try:
203
179
            return gzip.GzipFile(p + '.gz', 'rb')
204
180
        except IOError, e:
205
 
            if e.errno != errno.ENOENT:
206
 
                raise
207
 
 
208
 
        try:
209
 
            return file(p, 'rb')
210
 
        except IOError, e:
211
 
            if e.errno != errno.ENOENT:
212
 
                raise
213
 
 
214
 
        raise IndexError(fileid)
215
 
 
 
181
            if e.errno == errno.ENOENT:
 
182
                return file(p, 'rb')
 
183
            else:
 
184
                raise e
216
185
 
217
186
    def total_size(self):
218
187
        """Return (count, bytes)