/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1553.5.13 by Martin Pool
New Transport.rename that mustn't overwrite
1
# Copyright (C) 2005, 2006 Canonical Ltd
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
2
#
1185.11.19 by John Arbash Meinel
Testing put and append, also testing agaist file-like objects as well as strings.
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
7
#
1185.11.19 by John Arbash Meinel
Testing put and append, also testing agaist file-like objects as well as strings.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
12
#
1185.11.19 by John Arbash Meinel
Testing put and append, also testing agaist file-like objects as well as strings.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
1185.16.72 by Martin Pool
[merge] from robert and fix up tests
16
17
"""Transport for the local filesystem.
18
1755.1.3 by Robert Collins
Fix regression in LocalTransport to allow merging.
19
This is a fairly thin wrapper on regular file IO.
20
"""
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
21
1442.1.42 by Robert Collins
rebuild ScratchBranch on top of ScratchTransport
22
import os
23
import shutil
1608.2.5 by Martin Pool
Add Transport.supports_unix_modebits, so tests can
24
import sys
1908.4.2 by John Arbash Meinel
Delay evaluating PathError.extra, and use fstat() instead of seek + tell, and we can check if we need to chmod(). Saves about 3/90 seconds of commit time
25
from stat import ST_MODE, S_ISDIR, ST_SIZE, S_IMODE
1442.1.42 by Robert Collins
rebuild ScratchBranch on top of ScratchTransport
26
import tempfile
27
1908.4.2 by John Arbash Meinel
Delay evaluating PathError.extra, and use fstat() instead of seek + tell, and we can check if we need to chmod(). Saves about 3/90 seconds of commit time
28
from bzrlib import (
29
    osutils,
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
30
    urlutils,
1908.4.2 by John Arbash Meinel
Delay evaluating PathError.extra, and use fstat() instead of seek + tell, and we can check if we need to chmod(). Saves about 3/90 seconds of commit time
31
    )
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
32
from bzrlib.osutils import (abspath, realpath, normpath, pathjoin, rename,
1685.1.52 by John Arbash Meinel
[merge] bzr.dev 1704
33
                            check_legal_path, rmtree)
1685.1.9 by John Arbash Meinel
Updated LocalTransport so that it's base is now a URL rather than a local path. This helps consistency with all other functions. To do so, I added local_abspath() which returns the local path, and local_path_to/from_url
34
from bzrlib.symbol_versioning import warn
1685.1.45 by John Arbash Meinel
Moved url functions into bzrlib.urlutils
35
from bzrlib.trace import mutter
36
from bzrlib.transport import Transport, Server
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
37
38
39
_append_flags = os.O_CREAT | os.O_APPEND | os.O_WRONLY | osutils.O_BINARY
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
40
1442.1.42 by Robert Collins
rebuild ScratchBranch on top of ScratchTransport
41
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
42
class LocalTransport(Transport):
43
    """This is the transport agent for local filesystem access."""
44
45
    def __init__(self, base):
46
        """Set the base path where files will be stored."""
1685.1.9 by John Arbash Meinel
Updated LocalTransport so that it's base is now a URL rather than a local path. This helps consistency with all other functions. To do so, I added local_abspath() which returns the local path, and local_path_to/from_url
47
        if not base.startswith('file://'):
48
            warn("Instantiating LocalTransport with a filesystem path"
49
                " is deprecated as of bzr 0.8."
50
                " Please use bzrlib.transport.get_transport()"
51
                " or pass in a file:// url.",
52
                 DeprecationWarning,
53
                 stacklevel=2
54
                 )
1685.1.45 by John Arbash Meinel
Moved url functions into bzrlib.urlutils
55
            base = urlutils.local_path_to_url(base)
1530.1.3 by Robert Collins
transport implementations now tested consistently.
56
        if base[-1] != '/':
57
            base = base + '/'
58
        super(LocalTransport, self).__init__(base)
1685.1.45 by John Arbash Meinel
Moved url functions into bzrlib.urlutils
59
        self._local_base = urlutils.local_path_from_url(base)
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
60
907.1.32 by John Arbash Meinel
Renaming is_remote to should_cache as it is more appropriate.
61
    def should_cache(self):
907.1.22 by John Arbash Meinel
Fixed some encoding issues, added is_remote function for Transport objects.
62
        return False
63
907.1.2 by John Arbash Meinel
Working on making Branch() do all of it's work over a Transport.
64
    def clone(self, offset=None):
65
        """Return a new LocalTransport with root at self.base + offset
66
        Because the local filesystem does not require a connection, 
67
        we can just return a new object.
68
        """
69
        if offset is None:
70
            return LocalTransport(self.base)
71
        else:
72
            return LocalTransport(self.abspath(offset))
73
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
74
    def _abspath(self, relative_reference):
75
        """Return a path for use in os calls.
76
77
        Several assumptions are made:
78
         - relative_reference does not contain '..'
79
         - relative_reference is url escaped.
80
        """
1755.1.3 by Robert Collins
Fix regression in LocalTransport to allow merging.
81
        if relative_reference in ('.', ''):
82
            return self._local_base
1755.1.2 by Robert Collins
(robertc, ab)Merge some commit and fetch tuning steps.
83
        return self._local_base + urlutils.unescape(relative_reference)
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
84
907.1.8 by John Arbash Meinel
Changed the format for abspath. Updated branch to use a hidden _transport
85
    def abspath(self, relpath):
1636.1.1 by Robert Collins
Fix calling relpath() and abspath() on transports at their root.
86
        """Return the full url to the given relative URL."""
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
87
        # TODO: url escape the result. RBC 20060523.
1185.12.70 by Aaron Bentley
Removed b
88
        assert isinstance(relpath, basestring), (type(relpath), relpath)
1685.1.12 by John Arbash Meinel
Some more work to get LocalTransport to only support URLs
89
        # jam 20060426 Using normpath on the real path, because that ensures
90
        #       proper handling of stuff like
1685.1.45 by John Arbash Meinel
Moved url functions into bzrlib.urlutils
91
        path = normpath(pathjoin(self._local_base, urlutils.unescape(relpath)))
92
        return urlutils.local_path_to_url(path)
1685.1.9 by John Arbash Meinel
Updated LocalTransport so that it's base is now a URL rather than a local path. This helps consistency with all other functions. To do so, I added local_abspath() which returns the local path, and local_path_to/from_url
93
94
    def local_abspath(self, relpath):
95
        """Transform the given relative path URL into the actual path on disk
96
97
        This function only exists for the LocalTransport, since it is
98
        the only one that has direct local access.
99
        This is mostly for stuff like WorkingTree which needs to know
100
        the local working directory.
1725.2.9 by Robert Collins
Merge current head.
101
        
102
        This function is quite expensive: it calls realpath which resolves
103
        symlinks.
1685.1.9 by John Arbash Meinel
Updated LocalTransport so that it's base is now a URL rather than a local path. This helps consistency with all other functions. To do so, I added local_abspath() which returns the local path, and local_path_to/from_url
104
        """
105
        absurl = self.abspath(relpath)
106
        # mutter(u'relpath %s => base: %s, absurl %s', relpath, self.base, absurl)
1685.1.45 by John Arbash Meinel
Moved url functions into bzrlib.urlutils
107
        return urlutils.local_path_from_url(absurl)
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
108
907.1.24 by John Arbash Meinel
Remote functionality work.
109
    def relpath(self, abspath):
110
        """Return the local path portion from a given absolute path.
111
        """
1442.1.64 by Robert Collins
Branch.open_containing now returns a tuple (Branch, relative-path).
112
        if abspath is None:
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
113
            abspath = u'.'
1551.2.53 by abentley
Strip trailing slashes in a platform-sensible way
114
1685.1.45 by John Arbash Meinel
Moved url functions into bzrlib.urlutils
115
        return urlutils.file_relpath(
116
            urlutils.strip_trailing_slash(self.base), 
117
            urlutils.strip_trailing_slash(abspath))
907.1.24 by John Arbash Meinel
Remote functionality work.
118
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
119
    def has(self, relpath):
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
120
        return os.access(self._abspath(relpath), os.F_OK)
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
121
907.1.50 by John Arbash Meinel
Removed encode/decode from Transport.put/get, added more exceptions that can be thrown.
122
    def get(self, relpath):
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
123
        """Get the file at the given relative path.
907.1.20 by John Arbash Meinel
Removed Transport.open(), making get + put encode/decode to utf-8
124
125
        :param relpath: The relative path to the file
126
        """
907.1.48 by John Arbash Meinel
Updated LocalTransport by passing it through the transport_test suite, and got it to pass.
127
        try:
1908.4.11 by John Arbash Meinel
reverting changes to errors.py and local transport.
128
            path = self._abspath(relpath)
907.1.50 by John Arbash Meinel
Removed encode/decode from Transport.put/get, added more exceptions that can be thrown.
129
            return open(path, 'rb')
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
130
        except (IOError, OSError),e:
131
            self._translate_error(e, path)
907.1.20 by John Arbash Meinel
Removed Transport.open(), making get + put encode/decode to utf-8
132
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
133
    def put(self, relpath, f, mode=None):
907.1.20 by John Arbash Meinel
Removed Transport.open(), making get + put encode/decode to utf-8
134
        """Copy the file-like or string object into the location.
135
136
        :param relpath: Location to put the contents, relative to base.
137
        :param f:       File-like or string object.
138
        """
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
139
        from bzrlib.atomicfile import AtomicFile
140
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
141
        path = relpath
907.1.48 by John Arbash Meinel
Updated LocalTransport by passing it through the transport_test suite, and got it to pass.
142
        try:
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
143
            path = self._abspath(relpath)
1551.2.56 by Aaron Bentley
Better illegal pathname check for Windows
144
            check_legal_path(path)
1185.58.2 by John Arbash Meinel
Added mode to the appropriate transport functions, and tests to make sure they work.
145
            fp = AtomicFile(path, 'wb', new_mode=mode)
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
146
        except (IOError, OSError),e:
147
            self._translate_error(e, path)
907.1.2 by John Arbash Meinel
Working on making Branch() do all of it's work over a Transport.
148
        try:
149
            self._pump(f, fp)
150
            fp.commit()
151
        finally:
152
            fp.close()
153
1442.1.44 by Robert Collins
Many transport related tweaks:
154
    def iter_files_recursive(self):
155
        """Iter the relative paths of files in the transports sub-tree."""
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
156
        queue = list(self.list_dir(u'.'))
1442.1.44 by Robert Collins
Many transport related tweaks:
157
        while queue:
1608.1.1 by Martin Pool
[patch] LocalTransport.list_dir should return url-quoted strings (ddaa)
158
            relpath = queue.pop(0)
1442.1.44 by Robert Collins
Many transport related tweaks:
159
            st = self.stat(relpath)
160
            if S_ISDIR(st[ST_MODE]):
161
                for i, basename in enumerate(self.list_dir(relpath)):
162
                    queue.insert(i, relpath+'/'+basename)
163
            else:
164
                yield relpath
165
1185.58.2 by John Arbash Meinel
Added mode to the appropriate transport functions, and tests to make sure they work.
166
    def mkdir(self, relpath, mode=None):
907.1.2 by John Arbash Meinel
Working on making Branch() do all of it's work over a Transport.
167
        """Create a directory at the given path."""
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
168
        path = relpath
907.1.48 by John Arbash Meinel
Updated LocalTransport by passing it through the transport_test suite, and got it to pass.
169
        try:
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
170
            if mode is None:
1755.3.9 by John Arbash Meinel
Make AtomicFile not do anything if not supplied a mode, clean up LocalTransport now that we do the right thing for None
171
                # os.mkdir() will filter through umask
172
                local_mode = 0777
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
173
            else:
174
                local_mode = mode
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
175
            path = self._abspath(relpath)
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
176
            os.mkdir(path, local_mode)
1185.58.2 by John Arbash Meinel
Added mode to the appropriate transport functions, and tests to make sure they work.
177
            if mode is not None:
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
178
                # It is probably faster to just do the chmod, rather than
179
                # doing a stat, and then trying to compare
1185.58.2 by John Arbash Meinel
Added mode to the appropriate transport functions, and tests to make sure they work.
180
                os.chmod(path, mode)
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
181
        except (IOError, OSError),e:
182
            self._translate_error(e, path)
907.1.2 by John Arbash Meinel
Working on making Branch() do all of it's work over a Transport.
183
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
184
    def append(self, relpath, f, mode=None):
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
185
        """Append the text in the file-like object into the final location."""
186
        abspath = self._abspath(relpath)
1755.3.3 by Robert Collins
allow None == 0666 for mode.
187
        if mode is None:
1755.3.9 by John Arbash Meinel
Make AtomicFile not do anything if not supplied a mode, clean up LocalTransport now that we do the right thing for None
188
            # os.open() will automatically use the umask
189
            local_mode = 0666
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
190
        else:
191
            local_mode = mode
1530.1.4 by Robert Collins
integrate Memory tests into transport interface tests.
192
        try:
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
193
            fd = os.open(abspath, _append_flags, local_mode)
1530.1.4 by Robert Collins
integrate Memory tests into transport interface tests.
194
        except (IOError, OSError),e:
195
            self._translate_error(e, relpath)
1755.3.1 by Robert Collins
Tune the time to build our kernel_like tree : make LocalTransport.put faster, AtomicFile faster, LocalTransport.append faster.
196
        try:
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
197
            st = os.fstat(fd)
1908.4.2 by John Arbash Meinel
Delay evaluating PathError.extra, and use fstat() instead of seek + tell, and we can check if we need to chmod(). Saves about 3/90 seconds of commit time
198
            result = st.st_size
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
199
            if mode is not None and mode != S_IMODE(st.st_mode):
200
                # Because of umask, we may still need to chmod the file.
201
                # But in the general case, we won't have to
202
                os.chmod(abspath, mode)
1755.3.1 by Robert Collins
Tune the time to build our kernel_like tree : make LocalTransport.put faster, AtomicFile faster, LocalTransport.append faster.
203
            self._pump_to_fd(f, fd)
1711.7.25 by John Arbash Meinel
try/finally to close files, _KnitData was keeping a handle to a file it never used again, and using transport.rename() when it wanted transport.move()
204
        finally:
1755.3.1 by Robert Collins
Tune the time to build our kernel_like tree : make LocalTransport.put faster, AtomicFile faster, LocalTransport.append faster.
205
            os.close(fd)
1563.2.3 by Robert Collins
Change the return signature of transport.append and append_multi to return the length of the pre-append content.
206
        return result
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
207
1755.3.1 by Robert Collins
Tune the time to build our kernel_like tree : make LocalTransport.put faster, AtomicFile faster, LocalTransport.append faster.
208
    def _pump_to_fd(self, fromfile, to_fd):
209
        """Copy contents of one file to another."""
210
        BUFSIZE = 32768
211
        while True:
212
            b = fromfile.read(BUFSIZE)
213
            if not b:
214
                break
215
            os.write(to_fd, b)
216
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
217
    def copy(self, rel_from, rel_to):
218
        """Copy the item at rel_from to the location at rel_to"""
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
219
        path_from = self._abspath(rel_from)
220
        path_to = self._abspath(rel_to)
907.1.48 by John Arbash Meinel
Updated LocalTransport by passing it through the transport_test suite, and got it to pass.
221
        try:
222
            shutil.copy(path_from, path_to)
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
223
        except (IOError, OSError),e:
224
            # TODO: What about path_to?
225
            self._translate_error(e, path_from)
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
226
1553.5.13 by Martin Pool
New Transport.rename that mustn't overwrite
227
    def rename(self, rel_from, rel_to):
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
228
        path_from = self._abspath(rel_from)
1553.5.13 by Martin Pool
New Transport.rename that mustn't overwrite
229
        try:
230
            # *don't* call bzrlib.osutils.rename, because we want to 
231
            # detect errors on rename
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
232
            os.rename(path_from, self._abspath(rel_to))
1553.5.13 by Martin Pool
New Transport.rename that mustn't overwrite
233
        except (IOError, OSError),e:
234
            # TODO: What about path_to?
235
            self._translate_error(e, path_from)
236
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
237
    def move(self, rel_from, rel_to):
238
        """Move the item at rel_from to the location at rel_to"""
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
239
        path_from = self._abspath(rel_from)
240
        path_to = self._abspath(rel_to)
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
241
907.1.48 by John Arbash Meinel
Updated LocalTransport by passing it through the transport_test suite, and got it to pass.
242
        try:
1553.5.13 by Martin Pool
New Transport.rename that mustn't overwrite
243
            # this version will delete the destination if necessary
1185.31.58 by John Arbash Meinel
Updating for new transport tests so that they pass on win32
244
            rename(path_from, path_to)
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
245
        except (IOError, OSError),e:
246
            # TODO: What about path_to?
247
            self._translate_error(e, path_from)
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
248
249
    def delete(self, relpath):
250
        """Delete the item at relpath"""
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
251
        path = relpath
907.1.48 by John Arbash Meinel
Updated LocalTransport by passing it through the transport_test suite, and got it to pass.
252
        try:
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
253
            path = self._abspath(relpath)
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
254
            os.remove(path)
255
        except (IOError, OSError),e:
256
            self._translate_error(e, path)
907.1.1 by John Arbash Meinel
Reworking the Branch and Store code to support an abstracted filesystem layer.
257
1185.58.2 by John Arbash Meinel
Added mode to the appropriate transport functions, and tests to make sure they work.
258
    def copy_to(self, relpaths, other, mode=None, pb=None):
907.1.28 by John Arbash Meinel
Added pb to function that were missing, implemented a basic double-dispatch copy_to function.
259
        """Copy a set of entries from self into another Transport.
260
261
        :param relpaths: A list/generator of entries to be copied.
262
        """
263
        if isinstance(other, LocalTransport):
264
            # Both from & to are on the local filesystem
265
            # Unfortunately, I can't think of anything faster than just
266
            # copying them across, one by one :(
267
            total = self._get_total(relpaths)
268
            count = 0
269
            for path in relpaths:
270
                self._update_pb(pb, 'copy-to', count, total)
1185.16.158 by John Arbash Meinel
Added a test that copy_to raises NoSuchFile when a directory is missing (not IOError)
271
                try:
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
272
                    mypath = self._abspath(path)
273
                    otherpath = other._abspath(path)
1185.58.2 by John Arbash Meinel
Added mode to the appropriate transport functions, and tests to make sure they work.
274
                    shutil.copy(mypath, otherpath)
275
                    if mode is not None:
276
                        os.chmod(otherpath, mode)
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
277
                except (IOError, OSError),e:
278
                    self._translate_error(e, path)
907.1.28 by John Arbash Meinel
Added pb to function that were missing, implemented a basic double-dispatch copy_to function.
279
                count += 1
280
            return count
281
        else:
1185.58.2 by John Arbash Meinel
Added mode to the appropriate transport functions, and tests to make sure they work.
282
            return super(LocalTransport, self).copy_to(relpaths, other, mode=mode, pb=pb)
907.1.28 by John Arbash Meinel
Added pb to function that were missing, implemented a basic double-dispatch copy_to function.
283
1400.1.1 by Robert Collins
implement a basic test for the ui branch command from http servers
284
    def listable(self):
285
        """See Transport.listable."""
286
        return True
907.1.28 by John Arbash Meinel
Added pb to function that were missing, implemented a basic double-dispatch copy_to function.
287
907.1.2 by John Arbash Meinel
Working on making Branch() do all of it's work over a Transport.
288
    def list_dir(self, relpath):
289
        """Return a list of all files at the given location.
290
        WARNING: many transports do not support this, so trying avoid using
291
        it if at all possible.
292
        """
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
293
        path = self._abspath(relpath)
907.1.48 by John Arbash Meinel
Updated LocalTransport by passing it through the transport_test suite, and got it to pass.
294
        try:
1685.1.45 by John Arbash Meinel
Moved url functions into bzrlib.urlutils
295
            return [urlutils.escape(entry) for entry in os.listdir(path)]
1607.1.3 by Robert Collins
Apply David Allouches list_dir quoting fix.
296
        except (IOError, OSError), e:
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
297
            self._translate_error(e, path)
907.1.2 by John Arbash Meinel
Working on making Branch() do all of it's work over a Transport.
298
299
    def stat(self, relpath):
300
        """Return the stat information for a file.
301
        """
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
302
        path = relpath
907.1.48 by John Arbash Meinel
Updated LocalTransport by passing it through the transport_test suite, and got it to pass.
303
        try:
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
304
            path = self._abspath(relpath)
1185.31.44 by John Arbash Meinel
Cleaned up Exceptions for all transports.
305
            return os.stat(path)
306
        except (IOError, OSError),e:
307
            self._translate_error(e, path)
907.1.2 by John Arbash Meinel
Working on making Branch() do all of it's work over a Transport.
308
907.1.24 by John Arbash Meinel
Remote functionality work.
309
    def lock_read(self, relpath):
310
        """Lock the given file for shared (read) access.
311
        :return: A lock object, which should be passed to Transport.unlock()
312
        """
313
        from bzrlib.lock import ReadLock
1185.65.29 by Robert Collins
Implement final review suggestions.
314
        path = relpath
315
        try:
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
316
            path = self._abspath(relpath)
1185.65.29 by Robert Collins
Implement final review suggestions.
317
            return ReadLock(path)
318
        except (IOError, OSError), e:
319
            self._translate_error(e, path)
907.1.24 by John Arbash Meinel
Remote functionality work.
320
321
    def lock_write(self, relpath):
322
        """Lock the given file for exclusive (write) access.
323
        WARNING: many transports do not support this, so trying avoid using it
324
325
        :return: A lock object, which should be passed to Transport.unlock()
326
        """
327
        from bzrlib.lock import WriteLock
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
328
        return WriteLock(self._abspath(relpath))
907.1.24 by John Arbash Meinel
Remote functionality work.
329
1534.4.15 by Robert Collins
Remove shutil dependency in upgrade - create a delete_tree method for transports.
330
    def rmdir(self, relpath):
331
        """See Transport.rmdir."""
332
        path = relpath
333
        try:
1725.2.1 by Robert Collins
Make LocalTransport faster by not normpathing every internal path translation.
334
            path = self._abspath(relpath)
1534.4.15 by Robert Collins
Remove shutil dependency in upgrade - create a delete_tree method for transports.
335
            os.rmdir(path)
336
        except (IOError, OSError),e:
337
            self._translate_error(e, path)
1442.1.41 by Robert Collins
move duplicate scratch logic into a scratch transport
338
1608.2.7 by Martin Pool
Rename supports_unix_modebits to _can_roundtrip_unix_modebits for clarity
339
    def _can_roundtrip_unix_modebits(self):
1608.2.5 by Martin Pool
Add Transport.supports_unix_modebits, so tests can
340
        if sys.platform == 'win32':
341
            # anyone else?
342
            return False
343
        else:
344
            return True
345
346
1530.1.3 by Robert Collins
transport implementations now tested consistently.
347
class LocalRelpathServer(Server):
1530.1.1 by Robert Collins
Minimal infrastructure to test TransportTestProviderAdapter.
348
    """A pretend server for local transports, using relpaths."""
349
1530.1.3 by Robert Collins
transport implementations now tested consistently.
350
    def get_url(self):
351
        """See Transport.Server.get_url."""
352
        return "."
353
354
355
class LocalAbspathServer(Server):
1530.1.1 by Robert Collins
Minimal infrastructure to test TransportTestProviderAdapter.
356
    """A pretend server for local transports, using absolute paths."""
357
1530.1.3 by Robert Collins
transport implementations now tested consistently.
358
    def get_url(self):
359
        """See Transport.Server.get_url."""
360
        return os.path.abspath("")
361
362
363
class LocalURLServer(Server):
1530.1.1 by Robert Collins
Minimal infrastructure to test TransportTestProviderAdapter.
364
    """A pretend server for local transports, using file:// urls."""
1530.1.3 by Robert Collins
transport implementations now tested consistently.
365
366
    def get_url(self):
367
        """See Transport.Server.get_url."""
1685.1.45 by John Arbash Meinel
Moved url functions into bzrlib.urlutils
368
        return urlutils.local_path_to_url('')
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
369
370
371
def get_test_permutations():
372
    """Return the permutations to be used in testing."""
373
    return [(LocalTransport, LocalRelpathServer),
374
            (LocalTransport, LocalAbspathServer),
375
            (LocalTransport, LocalURLServer),
376
            ]