~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store.py

  • Committer: Robert Collins
  • Date: 2005-08-24 07:40:52 UTC
  • mto: (974.1.50) (1185.1.10) (1092.3.1)
  • mto: This revision was merged to the branch mainline in revision 1139.
  • Revision ID: robertc@robertcollins.net-20050824074052-2e9ec0dd13958d20
make tests stop at the first failure, preventing multi-page omgs

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
68
66
    def __init__(self, basedir):
69
67
        self._basedir = basedir
70
68
 
71
 
    def _path(self, entry_id):
72
 
        if not isinstance(entry_id, basestring):
73
 
            raise TypeError(type(entry_id))
74
 
        if '\\' in entry_id or '/' in entry_id:
75
 
            raise ValueError("invalid store id %r" % entry_id)
76
 
        return os.path.join(self._basedir, entry_id)
 
69
    def _path(self, id):
 
70
        if '\\' in id or '/' in id:
 
71
            raise ValueError("invalid store id %r" % id)
 
72
        return os.path.join(self._basedir, id)
77
73
 
78
74
    def __repr__(self):
79
75
        return "%s(%r)" % (self.__class__.__name__, self._basedir)
94
90
            
95
91
        p = self._path(fileid)
96
92
        if os.access(p, os.F_OK) or os.access(p + '.gz', os.F_OK):
 
93
            from bzrlib.errors import bailout
97
94
            raise BzrError("store %r already contains id %r" % (self._basedir, fileid))
98
95
 
99
96
        fn = p
113
110
            af.close()
114
111
 
115
112
 
116
 
    def copy_multi(self, other, ids, permit_failure=False):
 
113
    def copy_multi(self, other, ids):
117
114
        """Copy texts for ids from other into self.
118
115
 
119
 
        If an id is present in self, it is skipped.
120
 
 
121
 
        Returns (count_copied, failed), where failed is a collection of ids
122
 
        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).
123
118
        """
124
 
        pb = bzrlib.ui.ui_factory.progress_bar()
125
 
        
 
119
        from bzrlib.progress import ProgressBar
 
120
        pb = ProgressBar()
126
121
        pb.update('preparing to copy')
127
122
        to_copy = [id for id in ids if id not in self]
128
123
        if isinstance(other, ImmutableStore):
129
 
            return self.copy_multi_immutable(other, to_copy, pb, 
130
 
                                             permit_failure=permit_failure)
 
124
            return self.copy_multi_immutable(other, to_copy, pb)
131
125
        count = 0
132
 
        failed = set()
133
126
        for id in to_copy:
134
127
            count += 1
135
128
            pb.update('copy', count, len(to_copy))
136
 
            if not permit_failure:
137
 
                self.add(other[id], id)
138
 
            else:
139
 
                try:
140
 
                    entry = other[id]
141
 
                except KeyError:
142
 
                    failed.add(id)
143
 
                    continue
144
 
                self.add(entry, id)
145
 
                
146
 
        if not permit_failure:
147
 
            assert count == len(to_copy)
 
129
            self.add(other[id], id)
 
130
        assert count == len(to_copy)
148
131
        pb.clear()
149
 
        return count, failed
150
 
 
151
 
    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):
152
136
        from shutil import copyfile
153
137
        count = 0
154
 
        failed = set()
155
138
        for id in to_copy:
156
139
            p = self._path(id)
157
140
            other_p = other._path(id)
159
142
                copyfile(other_p, p)
160
143
            except IOError, e:
161
144
                if e.errno == errno.ENOENT:
162
 
                    if not permit_failure:
163
 
                        copyfile(other_p+".gz", p+".gz")
164
 
                    else:
165
 
                        try:
166
 
                            copyfile(other_p+".gz", p+".gz")
167
 
                        except IOError, e:
168
 
                            if e.errno == errno.ENOENT:
169
 
                                failed.add(id)
170
 
                            else:
171
 
                                raise
 
145
                    copyfile(other_p+".gz", p+".gz")
172
146
                else:
173
147
                    raise
174
148
            
176
150
            pb.update('copy', count, len(to_copy))
177
151
        assert count == len(to_copy)
178
152
        pb.clear()
179
 
        return count, failed
 
153
        return count
180
154
    
181
155
 
182
156
    def __contains__(self, fileid):
214
188
            if e.errno != errno.ENOENT:
215
189
                raise
216
190
 
217
 
        raise KeyError(fileid)
 
191
        raise IndexError(fileid)
218
192
 
219
193
 
220
194
    def total_size(self):