~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store.py

  • Committer: mbp at sourcefrog
  • Date: 2005-04-05 08:20:03 UTC
  • Revision ID: mbp@sourcefrog.net-20050405082003-2843e7b2e22e3df2
Start of shell-based black-box testing in test.sh

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
 
1
#! /usr/bin/env python
 
2
# -*- coding: UTF-8 -*-
2
3
 
3
4
# This program is free software; you can redistribute it and/or modify
4
5
# it under the terms of the GNU General Public License as published by
34
35
    pass
35
36
 
36
37
 
37
 
class ImmutableStore(object):
 
38
class ImmutableStore:
38
39
    """Store that holds files indexed by unique names.
39
40
 
40
41
    Files can be added, but not modified once they are in.  Typically
57
58
    >>> st['123123'].read()
58
59
    'goodbye'
59
60
 
60
 
    TODO: Atomic add by writing to a temporary file and renaming.
 
61
    :todo: Atomic add by writing to a temporary file and renaming.
61
62
 
62
 
    TODO: Perhaps automatically transform to/from XML in a method?
 
63
    :todo: Perhaps automatically transform to/from XML in a method?
63
64
           Would just need to tell the constructor what class to
64
65
           use...
65
66
 
66
 
    TODO: Even within a simple disk store like this, we could
 
67
    :todo: Even within a simple disk store like this, we could
67
68
           gzip the files.  But since many are less than one disk
68
69
           block, that might not help a lot.
69
70
 
74
75
        self._basedir = basedir
75
76
 
76
77
    def _path(self, id):
77
 
        assert '/' not in id
78
78
        return os.path.join(self._basedir, id)
79
79
 
80
80
    def __repr__(self):
83
83
    def add(self, f, fileid, compressed=True):
84
84
        """Add contents of a file into the store.
85
85
 
86
 
        f -- An open file, or file-like object."""
 
86
        :param f: An open file, or file-like object."""
87
87
        # FIXME: Only works on smallish files
88
88
        # TODO: Can be optimized by copying at the same time as
89
89
        # computing the sum.
107
107
        f.write(content)
108
108
        f.close()
109
109
 
110
 
    def copy_multi(self, other, ids):
111
 
        """Copy texts for ids from other into self.
112
 
 
113
 
        If an id is present in self, it is skipped.  A count of copied
114
 
        ids is returned, which may be less than len(ids).
115
 
        """
116
 
        count = 0
117
 
        for id in ids:
118
 
            if id in self:
119
 
                continue
120
 
            self.add(other[id], id)
121
 
            count += 1
122
 
        return count
123
110
 
124
111
    def __contains__(self, fileid):
125
112
        """"""