~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/local.py

  • Committer: Martin Pool
  • Date: 2006-03-21 12:26:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1621.
  • Revision ID: mbp@sourcefrog.net-20060321122654-514047ed65795a17
New developer commands 'weave-list' and 'weave-join'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 2005, 2006 Canonical Ltd
2
 
#
 
2
 
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
#
 
7
 
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
#
 
12
 
13
13
# You should have received a copy of the GNU General Public License
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
17
"""Transport for the local filesystem.
18
18
 
19
 
This is a fairly thin wrapper on regular file IO.
20
 
"""
 
19
This is a fairly thin wrapper on regular file IO."""
21
20
 
22
21
import os
23
 
from stat import ST_MODE, S_ISDIR, ST_SIZE, S_IMODE
24
 
import sys
25
 
 
26
 
from bzrlib.lazy_import import lazy_import
27
 
lazy_import(globals(), """
28
 
import errno
29
22
import shutil
 
23
from stat import ST_MODE, S_ISDIR, ST_SIZE
 
24
import tempfile
 
25
import urllib
30
26
 
31
 
from bzrlib import (
32
 
    atomicfile,
33
 
    osutils,
34
 
    urlutils,
35
 
    symbol_versioning,
36
 
    )
37
27
from bzrlib.trace import mutter
38
 
from bzrlib.transport import LateReadError
39
 
""")
40
 
 
41
28
from bzrlib.transport import Transport, Server
42
 
 
43
 
 
44
 
_append_flags = os.O_CREAT | os.O_APPEND | os.O_WRONLY | osutils.O_BINARY
45
 
_put_non_atomic_flags = os.O_CREAT | os.O_TRUNC | os.O_WRONLY | osutils.O_BINARY
 
29
from bzrlib.osutils import abspath, realpath, normpath, pathjoin, rename
46
30
 
47
31
 
48
32
class LocalTransport(Transport):
50
34
 
51
35
    def __init__(self, base):
52
36
        """Set the base path where files will be stored."""
53
 
        if not base.startswith('file://'):
54
 
            symbol_versioning.warn(
55
 
                "Instantiating LocalTransport with a filesystem path"
56
 
                " is deprecated as of bzr 0.8."
57
 
                " Please use bzrlib.transport.get_transport()"
58
 
                " or pass in a file:// url.",
59
 
                 DeprecationWarning,
60
 
                 stacklevel=2
61
 
                 )
62
 
            base = urlutils.local_path_to_url(base)
 
37
        if base.startswith('file://'):
 
38
            base = base[len('file://'):]
 
39
        # realpath is incompatible with symlinks. When we traverse
 
40
        # up we might be able to normpath stuff. RBC 20051003
 
41
        base = normpath(abspath(base))
63
42
        if base[-1] != '/':
64
43
            base = base + '/'
65
44
        super(LocalTransport, self).__init__(base)
66
 
        self._local_base = urlutils.local_path_from_url(base)
67
45
 
68
46
    def should_cache(self):
69
47
        return False
76
54
        if offset is None:
77
55
            return LocalTransport(self.base)
78
56
        else:
79
 
            abspath = self.abspath(offset)
80
 
            if abspath == 'file://':
81
 
                # fix upwalk for UNC path
82
 
                # when clone from //HOST/path updir recursively
83
 
                # we should stop at least at //HOST part
84
 
                abspath = self.base
85
 
            return LocalTransport(abspath)
86
 
 
87
 
    def _abspath(self, relative_reference):
88
 
        """Return a path for use in os calls.
89
 
 
90
 
        Several assumptions are made:
91
 
         - relative_reference does not contain '..'
92
 
         - relative_reference is url escaped.
93
 
        """
94
 
        if relative_reference in ('.', ''):
95
 
            return self._local_base
96
 
        return self._local_base + urlutils.unescape(relative_reference)
 
57
            return LocalTransport(self.abspath(offset))
97
58
 
98
59
    def abspath(self, relpath):
99
 
        """Return the full url to the given relative URL."""
100
 
        # TODO: url escape the result. RBC 20060523.
 
60
        """Return the full url to the given relative URL.
 
61
        This can be supplied with a string or a list
 
62
        """
101
63
        assert isinstance(relpath, basestring), (type(relpath), relpath)
102
 
        # jam 20060426 Using normpath on the real path, because that ensures
103
 
        #       proper handling of stuff like
104
 
        path = osutils.normpath(osutils.pathjoin(
105
 
                    self._local_base, urlutils.unescape(relpath)))
106
 
        return urlutils.local_path_to_url(path)
107
 
 
108
 
    def local_abspath(self, relpath):
109
 
        """Transform the given relative path URL into the actual path on disk
110
 
 
111
 
        This function only exists for the LocalTransport, since it is
112
 
        the only one that has direct local access.
113
 
        This is mostly for stuff like WorkingTree which needs to know
114
 
        the local working directory.
115
 
        
116
 
        This function is quite expensive: it calls realpath which resolves
117
 
        symlinks.
118
 
        """
119
 
        absurl = self.abspath(relpath)
120
 
        # mutter(u'relpath %s => base: %s, absurl %s', relpath, self.base, absurl)
121
 
        return urlutils.local_path_from_url(absurl)
 
64
        return pathjoin(self.base, urllib.unquote(relpath))
122
65
 
123
66
    def relpath(self, abspath):
124
67
        """Return the local path portion from a given absolute path.
125
68
        """
 
69
        from bzrlib.osutils import relpath
126
70
        if abspath is None:
127
71
            abspath = u'.'
128
 
 
129
 
        return urlutils.file_relpath(
130
 
            urlutils.strip_trailing_slash(self.base), 
131
 
            urlutils.strip_trailing_slash(abspath))
 
72
        if abspath.endswith('/'):
 
73
            abspath = abspath[:-1]
 
74
        return relpath(self.base[:-1], abspath)
132
75
 
133
76
    def has(self, relpath):
134
 
        return os.access(self._abspath(relpath), os.F_OK)
 
77
        return os.access(self.abspath(relpath), os.F_OK)
135
78
 
136
79
    def get(self, relpath):
137
80
        """Get the file at the given relative path.
139
82
        :param relpath: The relative path to the file
140
83
        """
141
84
        try:
142
 
            path = self._abspath(relpath)
 
85
            path = self.abspath(relpath)
143
86
            return open(path, 'rb')
144
87
        except (IOError, OSError),e:
145
 
            if e.errno == errno.EISDIR:
146
 
                return LateReadError(relpath)
147
88
            self._translate_error(e, path)
148
89
 
149
 
    def put_file(self, relpath, f, mode=None):
150
 
        """Copy the file-like object into the location.
 
90
    def put(self, relpath, f, mode=None):
 
91
        """Copy the file-like or string object into the location.
151
92
 
152
93
        :param relpath: Location to put the contents, relative to base.
153
 
        :param f:       File-like object.
154
 
        :param mode: The mode for the newly created file, 
155
 
                     None means just use the default
 
94
        :param f:       File-like or string object.
156
95
        """
 
96
        from bzrlib.atomicfile import AtomicFile
157
97
 
158
98
        path = relpath
159
99
        try:
160
 
            path = self._abspath(relpath)
161
 
            osutils.check_legal_path(path)
162
 
            fp = atomicfile.AtomicFile(path, 'wb', new_mode=mode)
 
100
            path = self.abspath(relpath)
 
101
            fp = AtomicFile(path, 'wb', new_mode=mode)
163
102
        except (IOError, OSError),e:
164
103
            self._translate_error(e, path)
165
104
        try:
168
107
        finally:
169
108
            fp.close()
170
109
 
171
 
    def put_bytes(self, relpath, bytes, mode=None):
172
 
        """Copy the string into the location.
173
 
 
174
 
        :param relpath: Location to put the contents, relative to base.
175
 
        :param bytes:   String
176
 
        """
177
 
 
178
 
        path = relpath
179
 
        try:
180
 
            path = self._abspath(relpath)
181
 
            osutils.check_legal_path(path)
182
 
            fp = atomicfile.AtomicFile(path, 'wb', new_mode=mode)
183
 
        except (IOError, OSError),e:
184
 
            self._translate_error(e, path)
185
 
        try:
186
 
            fp.write(bytes)
187
 
            fp.commit()
188
 
        finally:
189
 
            fp.close()
190
 
 
191
 
    def _put_non_atomic_helper(self, relpath, writer,
192
 
                               mode=None,
193
 
                               create_parent_dir=False,
194
 
                               dir_mode=None):
195
 
        """Common functionality information for the put_*_non_atomic.
196
 
 
197
 
        This tracks all the create_parent_dir stuff.
198
 
 
199
 
        :param relpath: the path we are putting to.
200
 
        :param writer: A function that takes an os level file descriptor
201
 
            and writes whatever data it needs to write there.
202
 
        :param mode: The final file mode.
203
 
        :param create_parent_dir: Should we be creating the parent directory
204
 
            if it doesn't exist?
205
 
        """
206
 
        abspath = self._abspath(relpath)
207
 
        if mode is None:
208
 
            # os.open() will automatically use the umask
209
 
            local_mode = 0666
210
 
        else:
211
 
            local_mode = mode
212
 
        try:
213
 
            fd = os.open(abspath, _put_non_atomic_flags, local_mode)
214
 
        except (IOError, OSError),e:
215
 
            # We couldn't create the file, maybe we need to create
216
 
            # the parent directory, and try again
217
 
            if (not create_parent_dir
218
 
                or e.errno not in (errno.ENOENT,errno.ENOTDIR)):
219
 
                self._translate_error(e, relpath)
220
 
            parent_dir = os.path.dirname(abspath)
221
 
            if not parent_dir:
222
 
                self._translate_error(e, relpath)
223
 
            self._mkdir(parent_dir, mode=dir_mode)
224
 
            # We created the parent directory, lets try to open the
225
 
            # file again
226
 
            try:
227
 
                fd = os.open(abspath, _put_non_atomic_flags, local_mode)
228
 
            except (IOError, OSError), e:
229
 
                self._translate_error(e, relpath)
230
 
        try:
231
 
            st = os.fstat(fd)
232
 
            if mode is not None and mode != S_IMODE(st.st_mode):
233
 
                # Because of umask, we may still need to chmod the file.
234
 
                # But in the general case, we won't have to
235
 
                os.chmod(abspath, mode)
236
 
            writer(fd)
237
 
        finally:
238
 
            os.close(fd)
239
 
 
240
 
    def put_file_non_atomic(self, relpath, f, mode=None,
241
 
                            create_parent_dir=False,
242
 
                            dir_mode=None):
243
 
        """Copy the file-like object into the target location.
244
 
 
245
 
        This function is not strictly safe to use. It is only meant to
246
 
        be used when you already know that the target does not exist.
247
 
        It is not safe, because it will open and truncate the remote
248
 
        file. So there may be a time when the file has invalid contents.
249
 
 
250
 
        :param relpath: The remote location to put the contents.
251
 
        :param f:       File-like object.
252
 
        :param mode:    Possible access permissions for new file.
253
 
                        None means do not set remote permissions.
254
 
        :param create_parent_dir: If we cannot create the target file because
255
 
                        the parent directory does not exist, go ahead and
256
 
                        create it, and then try again.
257
 
        """
258
 
        def writer(fd):
259
 
            self._pump_to_fd(f, fd)
260
 
        self._put_non_atomic_helper(relpath, writer, mode=mode,
261
 
                                    create_parent_dir=create_parent_dir,
262
 
                                    dir_mode=dir_mode)
263
 
 
264
 
    def put_bytes_non_atomic(self, relpath, bytes, mode=None,
265
 
                             create_parent_dir=False, dir_mode=None):
266
 
        def writer(fd):
267
 
            os.write(fd, bytes)
268
 
        self._put_non_atomic_helper(relpath, writer, mode=mode,
269
 
                                    create_parent_dir=create_parent_dir,
270
 
                                    dir_mode=dir_mode)
271
 
 
272
110
    def iter_files_recursive(self):
273
111
        """Iter the relative paths of files in the transports sub-tree."""
274
112
        queue = list(self.list_dir(u'.'))
281
119
            else:
282
120
                yield relpath
283
121
 
284
 
    def _mkdir(self, abspath, mode=None):
285
 
        """Create a real directory, filtering through mode"""
286
 
        if mode is None:
287
 
            # os.mkdir() will filter through umask
288
 
            local_mode = 0777
289
 
        else:
290
 
            local_mode = mode
291
 
        try:
292
 
            os.mkdir(abspath, local_mode)
293
 
            if mode is not None:
294
 
                # It is probably faster to just do the chmod, rather than
295
 
                # doing a stat, and then trying to compare
296
 
                os.chmod(abspath, mode)
297
 
        except (IOError, OSError),e:
298
 
            self._translate_error(e, abspath)
299
 
 
300
122
    def mkdir(self, relpath, mode=None):
301
123
        """Create a directory at the given path."""
302
 
        self._mkdir(self._abspath(relpath), mode=mode)
 
124
        path = relpath
 
125
        try:
 
126
            path = self.abspath(relpath)
 
127
            os.mkdir(path)
 
128
            if mode is not None:
 
129
                os.chmod(path, mode)
 
130
        except (IOError, OSError),e:
 
131
            self._translate_error(e, path)
303
132
 
304
 
    def _get_append_file(self, relpath, mode=None):
305
 
        """Call os.open() for the given relpath"""
306
 
        file_abspath = self._abspath(relpath)
307
 
        if mode is None:
308
 
            # os.open() will automatically use the umask
309
 
            local_mode = 0666
310
 
        else:
311
 
            local_mode = mode
 
133
    def append(self, relpath, f):
 
134
        """Append the text in the file-like object into the final
 
135
        location.
 
136
        """
312
137
        try:
313
 
            return file_abspath, os.open(file_abspath, _append_flags, local_mode)
 
138
            fp = open(self.abspath(relpath), 'ab')
314
139
        except (IOError, OSError),e:
315
140
            self._translate_error(e, relpath)
316
 
 
317
 
    def _check_mode_and_size(self, file_abspath, fd, mode=None):
318
 
        """Check the mode of the file, and return the current size"""
319
 
        st = os.fstat(fd)
320
 
        if mode is not None and mode != S_IMODE(st.st_mode):
321
 
            # Because of umask, we may still need to chmod the file.
322
 
            # But in the general case, we won't have to
323
 
            os.chmod(file_abspath, mode)
324
 
        return st.st_size
325
 
 
326
 
    def append_file(self, relpath, f, mode=None):
327
 
        """Append the text in the file-like object into the final location."""
328
 
        file_abspath, fd = self._get_append_file(relpath, mode=mode)
329
 
        try:
330
 
            result = self._check_mode_and_size(file_abspath, fd, mode=mode)
331
 
            self._pump_to_fd(f, fd)
332
 
        finally:
333
 
            os.close(fd)
334
 
        return result
335
 
 
336
 
    def append_bytes(self, relpath, bytes, mode=None):
337
 
        """Append the text in the string into the final location."""
338
 
        file_abspath, fd = self._get_append_file(relpath, mode=mode)
339
 
        try:
340
 
            result = self._check_mode_and_size(file_abspath, fd, mode=mode)
341
 
            os.write(fd, bytes)
342
 
        finally:
343
 
            os.close(fd)
344
 
        return result
345
 
 
346
 
    def _pump_to_fd(self, fromfile, to_fd):
347
 
        """Copy contents of one file to another."""
348
 
        BUFSIZE = 32768
349
 
        while True:
350
 
            b = fromfile.read(BUFSIZE)
351
 
            if not b:
352
 
                break
353
 
            os.write(to_fd, b)
 
141
        result = fp.tell()
 
142
        self._pump(f, fp)
 
143
        return result
354
144
 
355
145
    def copy(self, rel_from, rel_to):
356
146
        """Copy the item at rel_from to the location at rel_to"""
357
 
        path_from = self._abspath(rel_from)
358
 
        path_to = self._abspath(rel_to)
 
147
        import shutil
 
148
        path_from = self.abspath(rel_from)
 
149
        path_to = self.abspath(rel_to)
359
150
        try:
360
151
            shutil.copy(path_from, path_to)
361
152
        except (IOError, OSError),e:
363
154
            self._translate_error(e, path_from)
364
155
 
365
156
    def rename(self, rel_from, rel_to):
366
 
        path_from = self._abspath(rel_from)
 
157
        path_from = self.abspath(rel_from)
367
158
        try:
368
159
            # *don't* call bzrlib.osutils.rename, because we want to 
369
160
            # detect errors on rename
370
 
            os.rename(path_from, self._abspath(rel_to))
 
161
            os.rename(path_from, self.abspath(rel_to))
371
162
        except (IOError, OSError),e:
372
163
            # TODO: What about path_to?
373
164
            self._translate_error(e, path_from)
374
165
 
375
166
    def move(self, rel_from, rel_to):
376
167
        """Move the item at rel_from to the location at rel_to"""
377
 
        path_from = self._abspath(rel_from)
378
 
        path_to = self._abspath(rel_to)
 
168
        path_from = self.abspath(rel_from)
 
169
        path_to = self.abspath(rel_to)
379
170
 
380
171
        try:
381
172
            # this version will delete the destination if necessary
382
 
            osutils.rename(path_from, path_to)
 
173
            rename(path_from, path_to)
383
174
        except (IOError, OSError),e:
384
175
            # TODO: What about path_to?
385
176
            self._translate_error(e, path_from)
388
179
        """Delete the item at relpath"""
389
180
        path = relpath
390
181
        try:
391
 
            path = self._abspath(relpath)
 
182
            path = self.abspath(relpath)
392
183
            os.remove(path)
393
184
        except (IOError, OSError),e:
 
185
            # TODO: What about path_to?
394
186
            self._translate_error(e, path)
395
187
 
396
188
    def copy_to(self, relpaths, other, mode=None, pb=None):
402
194
            # Both from & to are on the local filesystem
403
195
            # Unfortunately, I can't think of anything faster than just
404
196
            # copying them across, one by one :(
 
197
            import shutil
 
198
 
405
199
            total = self._get_total(relpaths)
406
200
            count = 0
407
201
            for path in relpaths:
408
202
                self._update_pb(pb, 'copy-to', count, total)
409
203
                try:
410
 
                    mypath = self._abspath(path)
411
 
                    otherpath = other._abspath(path)
 
204
                    mypath = self.abspath(path)
 
205
                    otherpath = other.abspath(path)
412
206
                    shutil.copy(mypath, otherpath)
413
207
                    if mode is not None:
414
208
                        os.chmod(otherpath, mode)
428
222
        WARNING: many transports do not support this, so trying avoid using
429
223
        it if at all possible.
430
224
        """
431
 
        path = self._abspath(relpath)
 
225
        path = self.abspath(relpath)
432
226
        try:
433
 
            entries = os.listdir(path)
 
227
            return [urllib.quote(entry) for entry in os.listdir(path)]
434
228
        except (IOError, OSError), e:
435
229
            self._translate_error(e, path)
436
 
        return [urlutils.escape(entry) for entry in entries]
437
230
 
438
231
    def stat(self, relpath):
439
232
        """Return the stat information for a file.
440
233
        """
441
234
        path = relpath
442
235
        try:
443
 
            path = self._abspath(relpath)
 
236
            path = self.abspath(relpath)
444
237
            return os.stat(path)
445
238
        except (IOError, OSError),e:
446
239
            self._translate_error(e, path)
452
245
        from bzrlib.lock import ReadLock
453
246
        path = relpath
454
247
        try:
455
 
            path = self._abspath(relpath)
 
248
            path = self.abspath(relpath)
456
249
            return ReadLock(path)
457
250
        except (IOError, OSError), e:
458
251
            self._translate_error(e, path)
464
257
        :return: A lock object, which should be passed to Transport.unlock()
465
258
        """
466
259
        from bzrlib.lock import WriteLock
467
 
        return WriteLock(self._abspath(relpath))
 
260
        return WriteLock(self.abspath(relpath))
468
261
 
469
262
    def rmdir(self, relpath):
470
263
        """See Transport.rmdir."""
471
264
        path = relpath
472
265
        try:
473
 
            path = self._abspath(relpath)
 
266
            path = self.abspath(relpath)
474
267
            os.rmdir(path)
475
268
        except (IOError, OSError),e:
476
269
            self._translate_error(e, path)
477
270
 
478
 
    def _can_roundtrip_unix_modebits(self):
479
 
        if sys.platform == 'win32':
480
 
            # anyone else?
481
 
            return False
482
 
        else:
483
 
            return True
484
 
 
485
 
 
486
 
class EmulatedWin32LocalTransport(LocalTransport):
487
 
    """Special transport for testing Win32 [UNC] paths on non-windows"""
488
 
 
489
 
    def __init__(self, base):
490
 
        if base[-1] != '/':
491
 
            base = base + '/'
492
 
        super(LocalTransport, self).__init__(base)
493
 
        self._local_base = urlutils._win32_local_path_from_url(base)
494
 
 
495
 
    def abspath(self, relpath):
496
 
        assert isinstance(relpath, basestring), (type(relpath), relpath)
497
 
        path = osutils.normpath(osutils.pathjoin(
498
 
                    self._local_base, urlutils.unescape(relpath)))
499
 
        return urlutils._win32_local_path_to_url(path)
500
 
 
501
 
    def clone(self, offset=None):
502
 
        """Return a new LocalTransport with root at self.base + offset
503
 
        Because the local filesystem does not require a connection, 
504
 
        we can just return a new object.
505
 
        """
506
 
        if offset is None:
507
 
            return EmulatedWin32LocalTransport(self.base)
508
 
        else:
509
 
            abspath = self.abspath(offset)
510
 
            if abspath == 'file://':
511
 
                # fix upwalk for UNC path
512
 
                # when clone from //HOST/path updir recursively
513
 
                # we should stop at least at //HOST part
514
 
                abspath = self.base
515
 
            return EmulatedWin32LocalTransport(abspath)
516
 
 
517
 
 
518
 
class LocalURLServer(Server):
519
 
    """A pretend server for local transports, using file:// urls.
 
271
 
 
272
class ScratchTransport(LocalTransport):
 
273
    """A transport that works in a temporary dir and cleans up after itself.
520
274
    
521
 
    Of course no actual server is required to access the local filesystem, so
522
 
    this just exists to tell the test code how to get to it.
 
275
    The dir only exists for the lifetime of the Python object.
 
276
    Obviously you should not put anything precious in it.
523
277
    """
524
278
 
525
 
    def setUp(self):
526
 
        """Setup the server to service requests.
527
 
        
528
 
        :param decorated_transport: ignored by this implementation.
529
 
        """
530
 
 
531
 
    def get_url(self):
532
 
        """See Transport.Server.get_url."""
533
 
        return urlutils.local_path_to_url('')
 
279
    def __init__(self, base=None):
 
280
        if base is None:
 
281
            base = tempfile.mkdtemp()
 
282
        super(ScratchTransport, self).__init__(base)
 
283
 
 
284
    def __del__(self):
 
285
        shutil.rmtree(self.base, ignore_errors=True)
 
286
        mutter("%r destroyed" % self)
 
287
 
 
288
 
 
289
class LocalRelpathServer(Server):
 
290
    """A pretend server for local transports, using relpaths."""
 
291
 
 
292
    def get_url(self):
 
293
        """See Transport.Server.get_url."""
 
294
        return "."
 
295
 
 
296
 
 
297
class LocalAbspathServer(Server):
 
298
    """A pretend server for local transports, using absolute paths."""
 
299
 
 
300
    def get_url(self):
 
301
        """See Transport.Server.get_url."""
 
302
        return os.path.abspath("")
 
303
 
 
304
 
 
305
class LocalURLServer(Server):
 
306
    """A pretend server for local transports, using file:// urls."""
 
307
 
 
308
    def get_url(self):
 
309
        """See Transport.Server.get_url."""
 
310
        # FIXME: \ to / on windows
 
311
        return "file://%s" % os.path.abspath("")
534
312
 
535
313
 
536
314
def get_test_permutations():
537
315
    """Return the permutations to be used in testing."""
538
 
    return [
 
316
    return [(LocalTransport, LocalRelpathServer),
 
317
            (LocalTransport, LocalAbspathServer),
539
318
            (LocalTransport, LocalURLServer),
540
319
            ]