~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-06 16:21:16 UTC
  • mfrom: (1955.3.30 transport_bytes)
  • Revision ID: pqm@pqm.ubuntu.com-20060906162116-90b02cf97bcc11e8
(jam) create Transport.*_{file,bytes}

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
from zlib import adler32
31
31
 
32
32
import bzrlib
33
 
import bzrlib.errors as errors
 
33
from bzrlib import (
 
34
    errors,
 
35
    symbol_versioning,
 
36
    urlutils,
 
37
    )
34
38
from bzrlib.errors import BzrError, UnlistableStore, TransportNotPossible
35
 
from bzrlib.symbol_versioning import (deprecated_function, zero_eight)
 
39
from bzrlib.symbol_versioning import (
 
40
    deprecated_function,
 
41
    zero_eight,
 
42
    zero_eleven,
 
43
    )
36
44
from bzrlib.trace import mutter
37
45
from bzrlib.transport import Transport
38
46
from bzrlib.transport.local import LocalTransport
39
 
import bzrlib.urlutils as urlutils
40
47
 
41
48
######################################################################
42
49
# stores
164
171
    def add(self, f, fileid, suffix=None):
165
172
        """Add contents of a file into the store.
166
173
 
167
 
        f -- A file-like object, or string
 
174
        f -- A file-like object
168
175
        """
169
176
        mutter("add store entry %r", fileid)
 
177
        if isinstance(f, str):
 
178
            symbol_versioning.warn(zero_eleven % 'Passing a string to Store.add',
 
179
                DeprecationWarning, stacklevel=2)
 
180
            f = StringIO(f)
170
181
        
171
182
        names = self._id_to_names(fileid, suffix)
172
183
        if self._transport.has_any(names):
178
189
        # doesn't exist), then create the dir, and try again
179
190
        self._add(names[0], f)
180
191
 
181
 
 
182
192
    def _add(self, relpath, f):
183
193
        """Actually add the file to the given location.
184
194
        This should be overridden by children.