~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store.py

  • Committer: Martin Pool
  • Date: 2005-07-04 12:11:40 UTC
  • Revision ID: mbp@sourcefrog.net-20050704121140-fc4ab493bedc2e2f
- Deferred patch that uses Python ndiff format.

  This highlights the changes within a line, which is rather nice.  But it also
  outputs the entire file, which is less good.

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)
113
109
            af.close()
114
110
 
115
111
 
116
 
    def copy_multi(self, other, ids, permit_failure=False):
 
112
    def copy_multi(self, other, ids):
117
113
        """Copy texts for ids from other into self.
118
114
 
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.
 
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).
123
117
        """
124
 
        pb = bzrlib.ui.ui_factory.progress_bar()
125
 
        
 
118
        from bzrlib.progress import ProgressBar
 
119
        pb = ProgressBar()
126
120
        pb.update('preparing to copy')
127
121
        to_copy = [id for id in ids if id not in self]
128
122
        if isinstance(other, ImmutableStore):
129
 
            return self.copy_multi_immutable(other, to_copy, pb, 
130
 
                                             permit_failure=permit_failure)
 
123
            return self.copy_multi_immutable(other, to_copy, pb)
131
124
        count = 0
132
 
        failed = set()
133
125
        for id in to_copy:
134
126
            count += 1
135
127
            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)
 
128
            self.add(other[id], id)
 
129
        assert count == len(to_copy)
148
130
        pb.clear()
149
 
        return count, failed
150
 
 
151
 
    def copy_multi_immutable(self, other, to_copy, pb, permit_failure=False):
 
131
        return count
 
132
 
 
133
 
 
134
    def copy_multi_immutable(self, other, to_copy, pb):
152
135
        from shutil import copyfile
153
136
        count = 0
154
 
        failed = set()
155
137
        for id in to_copy:
156
138
            p = self._path(id)
157
139
            other_p = other._path(id)
159
141
                copyfile(other_p, p)
160
142
            except IOError, e:
161
143
                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
 
144
                    copyfile(other_p+".gz", p+".gz")
172
145
                else:
173
146
                    raise
174
147
            
176
149
            pb.update('copy', count, len(to_copy))
177
150
        assert count == len(to_copy)
178
151
        pb.clear()
179
 
        return count, failed
 
152
        return count
180
153
    
181
154
 
182
155
    def __contains__(self, fileid):
198
171
    def __len__(self):
199
172
        return len(os.listdir(self._basedir))
200
173
 
201
 
 
202
174
    def __getitem__(self, fileid):
203
175
        """Returns a file reading from a particular entry."""
204
176
        p = self._path(fileid)
205
177
        try:
206
178
            return gzip.GzipFile(p + '.gz', 'rb')
207
179
        except IOError, e:
208
 
            if e.errno != errno.ENOENT:
209
 
                raise
210
 
 
211
 
        try:
212
 
            return file(p, 'rb')
213
 
        except IOError, e:
214
 
            if e.errno != errno.ENOENT:
215
 
                raise
216
 
 
217
 
        raise KeyError(fileid)
218
 
 
 
180
            if e.errno == errno.ENOENT:
 
181
                return file(p, 'rb')
 
182
            else:
 
183
                raise e
219
184
 
220
185
    def total_size(self):
221
186
        """Return (count, bytes)