~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store.py

  • Committer: Martin Pool
  • Date: 2005-08-17 03:31:19 UTC
  • Revision ID: mbp@sourcefrog.net-20050817033119-1976931eac3199db
todo

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
 
# TODO: Could remember a bias towards whether a particular store is typically
18
 
# compressed or not.
19
 
 
20
17
"""
21
18
Stores are the main data-storage mechanism for Bazaar-NG.
22
19
 
24
21
unique ID.
25
22
"""
26
23
 
27
 
import os
28
 
from cStringIO import StringIO
29
 
import urllib
30
 
from zlib import adler32
31
 
 
32
 
import bzrlib
33
 
import bzrlib.errors as errors
34
 
from bzrlib.errors import BzrError, UnlistableStore, TransportNotPossible
35
 
from bzrlib.trace import mutter
36
 
import bzrlib.transport as transport
37
 
from bzrlib.transport.local import LocalTransport
 
24
import os, tempfile, types, osutils, gzip, errno
 
25
from stat import ST_SIZE
 
26
from StringIO import StringIO
 
27
from trace import mutter
38
28
 
39
29
######################################################################
40
30
# stores
43
33
    pass
44
34
 
45
35
 
46
 
class Store(object):
47
 
    """This class represents the abstract storage layout for saving information.
48
 
    
 
36
class ImmutableStore(object):
 
37
    """Store that holds files indexed by unique names.
 
38
 
49
39
    Files can be added, but not modified once they are in.  Typically
50
40
    the hash is used as the name, or something else known to be unique,
51
41
    such as a UUID.
 
42
 
 
43
    >>> st = ImmutableScratchStore()
 
44
 
 
45
    >>> st.add(StringIO('hello'), 'aa')
 
46
    >>> 'aa' in st
 
47
    True
 
48
    >>> 'foo' in st
 
49
    False
 
50
 
 
51
    You are not allowed to add an id that is already present.
 
52
 
 
53
    Entries can be retrieved as files, which may then be read.
 
54
 
 
55
    >>> st.add(StringIO('goodbye'), '123123')
 
56
    >>> st['123123'].read()
 
57
    'goodbye'
 
58
 
 
59
    TODO: Atomic add by writing to a temporary file and renaming.
 
60
 
 
61
    In bzr 0.0.5 and earlier, files within the store were marked
 
62
    readonly on disk.  This is no longer done but existing stores need
 
63
    to be accomodated.
52
64
    """
53
65
 
54
 
    def __len__(self):
55
 
        raise NotImplementedError('Children should define their length')
56
 
 
57
 
    def get(self, fileid, suffix=None):
58
 
        """Returns a file reading from a particular entry.
59
 
        
60
 
        If suffix is present, retrieve the named suffix for fileid.
61
 
        """
62
 
        raise NotImplementedError
63
 
 
64
 
    def __getitem__(self, fileid):
65
 
        """DEPRECATED. Please use .get(fileid) instead."""
66
 
        raise NotImplementedError
67
 
 
68
 
    #def __contains__(self, fileid):
69
 
    #    """Deprecated, please use has_id"""
70
 
    #    raise NotImplementedError
71
 
 
72
 
    def __iter__(self):
73
 
        raise NotImplementedError
74
 
 
75
 
    def add(self, f, fileid):
76
 
        """Add a file object f to the store accessible from the given fileid"""
77
 
        raise NotImplementedError('Children of Store must define their method of adding entries.')
78
 
 
79
 
    def has_id(self, fileid, suffix=None):
80
 
        """Return True or false for the presence of fileid in the store.
81
 
        
82
 
        suffix, if present, is a per file suffix, i.e. for digital signature 
83
 
        data."""
84
 
        raise NotImplementedError
85
 
 
86
 
    def listable(self):
87
 
        """Return True if this store is able to be listed."""
88
 
        return hasattr(self, "__iter__")
89
 
 
90
 
    def copy_multi(self, other, ids, pb=None, permit_failure=False):
 
66
    def __init__(self, basedir):
 
67
        self._basedir = basedir
 
68
 
 
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)
 
73
 
 
74
    def __repr__(self):
 
75
        return "%s(%r)" % (self.__class__.__name__, self._basedir)
 
76
 
 
77
    def add(self, f, fileid, compressed=True):
 
78
        """Add contents of a file into the store.
 
79
 
 
80
        f -- An open file, or file-like object."""
 
81
        # FIXME: Only works on files that will fit in memory
 
82
        
 
83
        from bzrlib.atomicfile import AtomicFile
 
84
        
 
85
        mutter("add store entry %r" % (fileid))
 
86
        if isinstance(f, types.StringTypes):
 
87
            content = f
 
88
        else:
 
89
            content = f.read()
 
90
            
 
91
        p = self._path(fileid)
 
92
        if os.access(p, os.F_OK) or os.access(p + '.gz', os.F_OK):
 
93
            from bzrlib.errors import bailout
 
94
            raise BzrError("store %r already contains id %r" % (self._basedir, fileid))
 
95
 
 
96
        fn = p
 
97
        if compressed:
 
98
            fn = fn + '.gz'
 
99
            
 
100
        af = AtomicFile(fn, 'wb')
 
101
        try:
 
102
            if compressed:
 
103
                gf = gzip.GzipFile(mode='wb', fileobj=af)
 
104
                gf.write(content)
 
105
                gf.close()
 
106
            else:
 
107
                af.write(content)
 
108
            af.commit()
 
109
        finally:
 
110
            af.close()
 
111
 
 
112
 
 
113
    def copy_multi(self, other, ids):
91
114
        """Copy texts for ids from other into self.
92
115
 
93
116
        If an id is present in self, it is skipped.  A count of copied
94
117
        ids is returned, which may be less than len(ids).
95
 
 
96
 
        :param other: Another Store object
97
 
        :param ids: A list of entry ids to be copied
98
 
        :param pb: A ProgressBar object, if none is given, the default will be created.
99
 
        :param permit_failure: Allow missing entries to be ignored
100
 
        :return: (n_copied, [failed]) The number of entries copied successfully,
101
 
            followed by a list of entries which could not be copied (because they
102
 
            were missing)
103
118
        """
104
 
        if pb is None:
105
 
            pb = bzrlib.ui.ui_factory.progress_bar()
 
119
        from bzrlib.progress import ProgressBar
 
120
        pb = ProgressBar()
106
121
        pb.update('preparing to copy')
107
 
        failed = set()
 
122
        to_copy = [id for id in ids if id not in self]
 
123
        if isinstance(other, ImmutableStore):
 
124
            return self.copy_multi_immutable(other, to_copy, pb)
108
125
        count = 0
109
 
        ids = list(ids) # get the list for showing a length.
110
 
        for fileid in ids:
 
126
        for id in to_copy:
111
127
            count += 1
112
 
            if self.has_id(fileid):
113
 
                continue
 
128
            pb.update('copy', count, len(to_copy))
 
129
            self.add(other[id], id)
 
130
        assert count == len(to_copy)
 
131
        pb.clear()
 
132
        return count
 
133
 
 
134
 
 
135
    def copy_multi_immutable(self, other, to_copy, pb):
 
136
        from shutil import copyfile
 
137
        count = 0
 
138
        for id in to_copy:
 
139
            p = self._path(id)
 
140
            other_p = other._path(id)
114
141
            try:
115
 
                self._copy_one(fileid, None, other, pb)
116
 
                for suffix in self._suffixes:
117
 
                    try:
118
 
                        self._copy_one(fileid, suffix, other, pb)
119
 
                    except KeyError:
120
 
                        pass
121
 
                pb.update('copy', count, len(ids))
122
 
            except KeyError:
123
 
                if permit_failure:
124
 
                    failed.add(fileid)
 
142
                copyfile(other_p, p)
 
143
            except IOError, e:
 
144
                if e.errno == errno.ENOENT:
 
145
                    copyfile(other_p+".gz", p+".gz")
125
146
                else:
126
147
                    raise
127
 
        assert count == len(ids)
 
148
            
 
149
            count += 1
 
150
            pb.update('copy', count, len(to_copy))
 
151
        assert count == len(to_copy)
128
152
        pb.clear()
129
 
        return count, failed
130
 
 
131
 
    def _copy_one(self, fileid, suffix, other, pb):
132
 
        """Most generic copy-one object routine.
133
 
        
134
 
        Subclasses can override this to provide an optimised
135
 
        copy between their own instances. Such overriden routines
136
 
        should call this if they have no optimised facility for a 
137
 
        specific 'other'.
138
 
        """
139
 
        mutter('Store._copy_one: %r', fileid)
140
 
        f = other.get(fileid, suffix)
141
 
        self.add(f, fileid, suffix)
142
 
 
143
 
 
144
 
class TransportStore(Store):
145
 
    """A TransportStore is a Store superclass for Stores that use Transports."""
146
 
 
147
 
    def add(self, f, fileid, suffix=None):
148
 
        """Add contents of a file into the store.
149
 
 
150
 
        f -- A file-like object, or string
151
 
        """
152
 
        mutter("add store entry %r", fileid)
153
 
        
154
 
        names = self._id_to_names(fileid, suffix)
155
 
        if self._transport.has_any(names):
156
 
            raise BzrError("store %r already contains id %r" 
157
 
                           % (self._transport.base, fileid))
158
 
 
159
 
        # Most of the time, just adding the file will work
160
 
        # if we find a time where it fails, (because the dir
161
 
        # doesn't exist), then create the dir, and try again
162
 
        self._add(names[0], f)
163
 
 
164
 
 
165
 
    def _add(self, relpath, f):
166
 
        """Actually add the file to the given location.
167
 
        This should be overridden by children.
168
 
        """
169
 
        raise NotImplementedError('children need to implement this function.')
170
 
 
171
 
    def _check_fileid(self, fileid):
172
 
        if not isinstance(fileid, basestring):
173
 
            raise TypeError('Fileids should be a string type: %s %r' % (type(fileid), fileid))
174
 
        if '\\' in fileid or '/' in fileid:
175
 
            raise ValueError("invalid store id %r" % fileid)
176
 
 
177
 
    def _id_to_names(self, fileid, suffix):
178
 
        """Return the names in the expected order"""
179
 
        if suffix is not None:
180
 
            fn = self._relpath(fileid, [suffix])
181
 
        else:
182
 
            fn = self._relpath(fileid)
183
 
 
184
 
        # FIXME RBC 20051128 this belongs in TextStore.
185
 
        fn_gz = fn + '.gz'
186
 
        if self._compressed:
187
 
            return fn_gz, fn
188
 
        else:
189
 
            return fn, fn_gz
190
 
 
191
 
    def has_id(self, fileid, suffix=None):
192
 
        """See Store.has_id."""
193
 
        return self._transport.has_any(self._id_to_names(fileid, suffix))
194
 
 
195
 
    def _get_name(self, fileid, suffix=None):
196
 
        """A special check, which returns the name of an existing file.
197
 
        
198
 
        This is similar in spirit to 'has_id', but it is designed
199
 
        to return information about which file the store has.
200
 
        """
201
 
        for name in self._id_to_names(fileid, suffix=suffix):
202
 
            if self._transport.has(name):
203
 
                return name
204
 
        return None
205
 
 
206
 
    def _get(self, filename):
207
 
        """Return an vanilla file stream for clients to read from.
208
 
 
209
 
        This is the body of a template method on 'get', and should be 
210
 
        implemented by subclasses.
211
 
        """
212
 
        raise NotImplementedError
213
 
 
214
 
    def get(self, fileid, suffix=None):
215
 
        """See Store.get()."""
216
 
        names = self._id_to_names(fileid, suffix)
217
 
        for name in names:
218
 
            try:
219
 
                return self._get(name)
220
 
            except errors.NoSuchFile:
221
 
                pass
222
 
        raise KeyError(fileid)
223
 
 
224
 
    def __init__(self, a_transport, prefixed=False, compressed=False,
225
 
                 dir_mode=None, file_mode=None):
226
 
        assert isinstance(a_transport, transport.Transport)
227
 
        super(TransportStore, self).__init__()
228
 
        self._transport = a_transport
229
 
        self._prefixed = prefixed
230
 
        # FIXME RBC 20051128 this belongs in TextStore.
231
 
        self._compressed = compressed
232
 
        self._suffixes = set()
233
 
 
234
 
        # It is okay for these to be None, it just means they
235
 
        # will just use the filesystem defaults
236
 
        self._dir_mode = dir_mode
237
 
        self._file_mode = file_mode
238
 
 
239
 
    def _iter_files_recursive(self):
240
 
        """Iterate through the files in the transport."""
241
 
        for quoted_relpath in self._transport.iter_files_recursive():
242
 
            yield urllib.unquote(quoted_relpath)
 
153
        return count
 
154
    
 
155
 
 
156
    def __contains__(self, fileid):
 
157
        """"""
 
158
        p = self._path(fileid)
 
159
        return (os.access(p, os.R_OK)
 
160
                or os.access(p + '.gz', os.R_OK))
 
161
 
 
162
    # TODO: Guard against the same thing being stored twice, compressed and uncompresse
243
163
 
244
164
    def __iter__(self):
245
 
        for relpath in self._iter_files_recursive():
246
 
            # worst case is one of each suffix.
247
 
            name = os.path.basename(relpath)
248
 
            if name.endswith('.gz'):
249
 
                name = name[:-3]
250
 
            skip = False
251
 
            for count in range(len(self._suffixes)):
252
 
                for suffix in self._suffixes:
253
 
                    if name.endswith('.' + suffix):
254
 
                        skip = True
255
 
            if not skip:
256
 
                yield name
 
165
        for f in os.listdir(self._basedir):
 
166
            if f[-3:] == '.gz':
 
167
                # TODO: case-insensitive?
 
168
                yield f[:-3]
 
169
            else:
 
170
                yield f
257
171
 
258
172
    def __len__(self):
259
 
        return len(list(self.__iter__()))
260
 
 
261
 
    def _relpath(self, fileid, suffixes=None):
262
 
        self._check_fileid(fileid)
263
 
        if suffixes:
264
 
            for suffix in suffixes:
265
 
                if not suffix in self._suffixes:
266
 
                    raise ValueError("Unregistered suffix %r" % suffix)
267
 
                self._check_fileid(suffix)
268
 
        else:
269
 
            suffixes = []
270
 
        if self._prefixed:
271
 
            path = [hash_prefix(fileid) + fileid]
272
 
        else:
273
 
            path = [fileid]
274
 
        path.extend(suffixes)
275
 
        return transport.urlescape(u'.'.join(path))
276
 
 
277
 
    def __repr__(self):
278
 
        if self._transport is None:
279
 
            return "%s(None)" % (self.__class__.__name__)
280
 
        else:
281
 
            return "%s(%r)" % (self.__class__.__name__, self._transport.base)
282
 
 
283
 
    __str__ = __repr__
284
 
 
285
 
    def listable(self):
286
 
        """Return True if this store is able to be listed."""
287
 
        return self._transport.listable()
288
 
 
289
 
    def register_suffix(self, suffix):
290
 
        """Register a suffix as being expected in this store."""
291
 
        self._check_fileid(suffix)
292
 
        if suffix == 'gz':
293
 
            raise ValueError('You cannot register the "gz" suffix.')
294
 
        self._suffixes.add(suffix)
 
173
        return len(os.listdir(self._basedir))
 
174
 
 
175
 
 
176
    def __getitem__(self, fileid):
 
177
        """Returns a file reading from a particular entry."""
 
178
        p = self._path(fileid)
 
179
        try:
 
180
            return gzip.GzipFile(p + '.gz', 'rb')
 
181
        except IOError, e:
 
182
            if e.errno != errno.ENOENT:
 
183
                raise
 
184
 
 
185
        try:
 
186
            return file(p, 'rb')
 
187
        except IOError, e:
 
188
            if e.errno != errno.ENOENT:
 
189
                raise
 
190
 
 
191
        raise IndexError(fileid)
 
192
 
295
193
 
296
194
    def total_size(self):
297
195
        """Return (count, bytes)
300
198
        the content."""
301
199
        total = 0
302
200
        count = 0
303
 
        for relpath in self._transport.iter_files_recursive():
 
201
        for fid in self:
304
202
            count += 1
305
 
            total += self._transport.stat(relpath).st_size
 
203
            p = self._path(fid)
 
204
            try:
 
205
                total += os.stat(p)[ST_SIZE]
 
206
            except OSError:
 
207
                total += os.stat(p + '.gz')[ST_SIZE]
306
208
                
307
209
        return count, total
308
210
 
309
211
 
310
 
def ImmutableMemoryStore():
311
 
    return bzrlib.store.text.TextStore(transport.memory.MemoryTransport())
312
 
        
313
 
 
314
 
def copy_all(store_from, store_to):
315
 
    """Copy all ids from one store to another."""
316
 
    # TODO: Optional progress indicator
317
 
    if not store_from.listable():
318
 
        raise UnlistableStore(store_from)
319
 
    ids = [f for f in store_from]
320
 
    mutter('copy_all ids: %r', ids)
321
 
    store_to.copy_multi(store_from, ids)
322
 
 
323
 
def hash_prefix(fileid):
324
 
    return "%02x/" % (adler32(fileid) & 0xff)
325
 
 
 
212
 
 
213
 
 
214
class ImmutableScratchStore(ImmutableStore):
 
215
    """Self-destructing test subclass of ImmutableStore.
 
216
 
 
217
    The Store only exists for the lifetime of the Python object.
 
218
 Obviously you should not put anything precious in it.
 
219
    """
 
220
    def __init__(self):
 
221
        ImmutableStore.__init__(self, tempfile.mkdtemp())
 
222
 
 
223
    def __del__(self):
 
224
        for f in os.listdir(self._basedir):
 
225
            fpath = os.path.join(self._basedir, f)
 
226
            # needed on windows, and maybe some other filesystems
 
227
            os.chmod(fpath, 0600)
 
228
            os.remove(fpath)
 
229
        os.rmdir(self._basedir)
 
230
        mutter("%r destroyed" % self)