~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/ftp.py

  • Committer: Aaron Bentley
  • Date: 2007-12-12 15:17:13 UTC
  • mto: This revision was merged to the branch mainline in revision 3113.
  • Revision ID: abentley@panoramicfeedback.com-20071212151713-ox5n8rlx8m3nsspy
Add support for reconfiguring repositories into branches or trees

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Canonical Ltd
2
 
 
 
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 
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
24
24
active, in which case aftp:// will be your friend.
25
25
"""
26
26
 
27
 
from bzrlib.transport import Transport
28
 
 
29
 
from bzrlib.errors import (TransportNotPossible, TransportError,
30
 
                           NoSuchFile, FileExists)
31
 
 
32
 
import os, errno
33
27
from cStringIO import StringIO
 
28
import errno
34
29
import ftplib
 
30
import getpass
 
31
import os
 
32
import os.path
35
33
import urlparse
36
 
import urllib
 
34
import socket
37
35
import stat
38
 
 
39
 
from bzrlib.branch import Branch
40
 
from bzrlib.trace import mutter
 
36
import time
 
37
import random
 
38
from warnings import warn
 
39
 
 
40
from bzrlib import (
 
41
    config,
 
42
    errors,
 
43
    osutils,
 
44
    urlutils,
 
45
    )
 
46
from bzrlib.trace import mutter, warning
 
47
from bzrlib.transport import (
 
48
    AppendBasedFileStream,
 
49
    ConnectedTransport,
 
50
    _file_streams,
 
51
    register_urlparse_netloc_protocol,
 
52
    Server,
 
53
    )
 
54
from bzrlib.transport.local import LocalURLServer
 
55
import bzrlib.ui
 
56
 
 
57
 
 
58
register_urlparse_netloc_protocol('aftp')
 
59
 
 
60
 
 
61
class FtpPathError(errors.PathError):
 
62
    """FTP failed for path: %(path)s%(extra)s"""
41
63
 
42
64
 
43
65
class FtpStatResult(object):
54
76
                f.cwd(pwd)
55
77
 
56
78
 
57
 
class FtpTransport(Transport):
 
79
_number_of_retries = 2
 
80
_sleep_between_retries = 5
 
81
 
 
82
# FIXME: there are inconsistencies in the way temporary errors are
 
83
# handled. Sometimes we reconnect, sometimes we raise an exception. Care should
 
84
# be taken to analyze the implications for write operations (read operations
 
85
# are safe to retry). Overall even some read operations are never
 
86
# retried. --vila 20070720 (Bug #127164)
 
87
class FtpTransport(ConnectedTransport):
58
88
    """This is the transport agent for ftp:// access."""
59
89
 
60
 
    def __init__(self, base, _provided_instance=None):
 
90
    def __init__(self, base, _from_transport=None):
61
91
        """Set the base path where files will be stored."""
62
92
        assert base.startswith('ftp://') or base.startswith('aftp://')
63
 
        super(FtpTransport, self).__init__(base)
64
 
        self.is_active = base.startswith('aftp://')
65
 
        if self.is_active:
66
 
            base = base[1:]
67
 
        (self._proto, self._host,
68
 
            self._path, self._parameters,
69
 
            self._query, self._fragment) = urlparse.urlparse(self.base)
70
 
        self._FTP_instance = _provided_instance
71
 
 
 
93
        super(FtpTransport, self).__init__(base,
 
94
                                           _from_transport=_from_transport)
 
95
        self._unqualified_scheme = 'ftp'
 
96
        if self._scheme == 'aftp':
 
97
            self.is_active = True
 
98
        else:
 
99
            self.is_active = False
72
100
 
73
101
    def _get_FTP(self):
74
102
        """Return the ftplib.FTP instance for this object."""
75
 
        if self._FTP_instance is not None:
76
 
            return self._FTP_instance
77
 
        
 
103
        # Ensures that a connection is established
 
104
        connection = self._get_connection()
 
105
        if connection is None:
 
106
            # First connection ever
 
107
            connection, credentials = self._create_connection()
 
108
            self._set_connection(connection, credentials)
 
109
        return connection
 
110
 
 
111
    def _create_connection(self, credentials=None):
 
112
        """Create a new connection with the provided credentials.
 
113
 
 
114
        :param credentials: The credentials needed to establish the connection.
 
115
 
 
116
        :return: The created connection and its associated credentials.
 
117
 
 
118
        The credentials are only the password as it may have been entered
 
119
        interactively by the user and may be different from the one provided
 
120
        in base url at transport creation time.
 
121
        """
 
122
        if credentials is None:
 
123
            user, password = self._user, self._password
 
124
        else:
 
125
            user, password = credentials
 
126
 
 
127
        auth = config.AuthenticationConfig()
 
128
        if user is None:
 
129
            user = auth.get_user('ftp', self._host, port=self._port)
 
130
            if user is None:
 
131
                # Default to local user
 
132
                user = getpass.getuser()
 
133
 
 
134
        mutter("Constructing FTP instance against %r" %
 
135
               ((self._host, self._port, user, '********',
 
136
                self.is_active),))
78
137
        try:
79
 
            username = ''
80
 
            password = ''
81
 
            hostname = self._host
82
 
            if '@' in hostname:
83
 
                username, hostname = hostname.split("@", 1)
84
 
            if ':' in username:
85
 
                username, password = username.split(":", 1)
86
 
 
87
 
            mutter("Constructing FTP instance")
88
 
            self._FTP_instance = ftplib.FTP(hostname, username, password)
89
 
            self._FTP_instance.set_pasv(not self.is_active)
90
 
            return self._FTP_instance
 
138
            connection = ftplib.FTP()
 
139
            connection.connect(host=self._host, port=self._port)
 
140
            if user and user != 'anonymous' and \
 
141
                    password is None: # '' is a valid password
 
142
                password = auth.get_password('ftp', self._host, user,
 
143
                                             port=self._port)
 
144
            connection.login(user=user, passwd=password)
 
145
            connection.set_pasv(not self.is_active)
 
146
        except socket.error, e:
 
147
            raise errors.SocketConnectionError(self._host, self._port,
 
148
                                               msg='Unable to connect to',
 
149
                                               orig_error= e)
91
150
        except ftplib.error_perm, e:
92
 
            raise TransportError(msg="Error setting up connection: %s"
93
 
                                    % str(e), orig_error=e)
94
 
 
95
 
    def should_cache(self):
96
 
        """Return True if the data pulled across should be cached locally.
97
 
        """
98
 
        return True
99
 
 
100
 
    def clone(self, offset=None):
101
 
        """Return a new FtpTransport with root at self.base + offset.
102
 
        """
103
 
        mutter("FTP clone")
104
 
        if offset is None:
105
 
            return FtpTransport(self.base, self._FTP_instance)
106
 
        else:
107
 
            return FtpTransport(self.abspath(offset), self._FTP_instance)
108
 
 
109
 
    def _abspath(self, relpath):
110
 
        assert isinstance(relpath, basestring)
111
 
        relpath = urllib.unquote(relpath)
112
 
        if isinstance(relpath, basestring):
113
 
            relpath_parts = relpath.split('/')
114
 
        else:
115
 
            # TODO: Don't call this with an array - no magic interfaces
116
 
            relpath_parts = relpath[:]
117
 
        if len(relpath_parts) > 1:
118
 
            if relpath_parts[0] == '':
119
 
                raise ValueError("path %r within branch %r seems to be absolute"
120
 
                                 % (relpath, self._path))
121
 
        basepath = self._path.split('/')
122
 
        if len(basepath) > 0 and basepath[-1] == '':
123
 
            basepath = basepath[:-1]
124
 
        for p in relpath_parts:
125
 
            if p == '..':
126
 
                if len(basepath) == 0:
127
 
                    # In most filesystems, a request for the parent
128
 
                    # of root, just returns root.
129
 
                    continue
130
 
                basepath.pop()
131
 
            elif p == '.' or p == '':
132
 
                continue # No-op
133
 
            else:
134
 
                basepath.append(p)
135
 
        # Possibly, we could use urlparse.urljoin() here, but
136
 
        # I'm concerned about when it chooses to strip the last
137
 
        # portion of the path, and when it doesn't.
138
 
        return '/'.join(basepath)
139
 
    
140
 
    def abspath(self, relpath):
141
 
        """Return the full url to the given relative path.
142
 
        This can be supplied with a string or a list
143
 
        """
144
 
        path = self._abspath(relpath)
145
 
        return urlparse.urlunparse((self._proto,
146
 
                self._host, path, '', '', ''))
 
151
            raise errors.TransportError(msg="Error setting up connection:"
 
152
                                        " %s" % str(e), orig_error=e)
 
153
        return connection, (user, password)
 
154
 
 
155
    def _reconnect(self):
 
156
        """Create a new connection with the previously used credentials"""
 
157
        credentials = self._get_credentials()
 
158
        connection, credentials = self._create_connection(credentials)
 
159
        self._set_connection(connection, credentials)
 
160
 
 
161
    def _translate_perm_error(self, err, path, extra=None,
 
162
                              unknown_exc=FtpPathError):
 
163
        """Try to translate an ftplib.error_perm exception.
 
164
 
 
165
        :param err: The error to translate into a bzr error
 
166
        :param path: The path which had problems
 
167
        :param extra: Extra information which can be included
 
168
        :param unknown_exc: If None, we will just raise the original exception
 
169
                    otherwise we raise unknown_exc(path, extra=extra)
 
170
        """
 
171
        s = str(err).lower()
 
172
        if not extra:
 
173
            extra = str(err)
 
174
        else:
 
175
            extra += ': ' + str(err)
 
176
        if ('no such file' in s
 
177
            or 'could not open' in s
 
178
            or 'no such dir' in s
 
179
            or 'could not create file' in s # vsftpd
 
180
            or 'file doesn\'t exist' in s
 
181
            or 'file/directory not found' in s # filezilla server
 
182
            ):
 
183
            raise errors.NoSuchFile(path, extra=extra)
 
184
        if ('file exists' in s):
 
185
            raise errors.FileExists(path, extra=extra)
 
186
        if ('not a directory' in s):
 
187
            raise errors.PathError(path, extra=extra)
 
188
 
 
189
        mutter('unable to understand error for path: %s: %s', path, err)
 
190
 
 
191
        if unknown_exc:
 
192
            raise unknown_exc(path, extra=extra)
 
193
        # TODO: jam 20060516 Consider re-raising the error wrapped in 
 
194
        #       something like TransportError, but this loses the traceback
 
195
        #       Also, 'sftp' has a generic 'Failure' mode, which we use failure_exc
 
196
        #       to handle. Consider doing something like that here.
 
197
        #raise TransportError(msg='Error for path: %s' % (path,), orig_error=e)
 
198
        raise
 
199
 
 
200
    def _remote_path(self, relpath):
 
201
        # XXX: It seems that ftplib does not handle Unicode paths
 
202
        # at the same time, medusa won't handle utf8 paths So if
 
203
        # we .encode(utf8) here (see ConnectedTransport
 
204
        # implementation), then we get a Server failure.  while
 
205
        # if we use str(), we get a UnicodeError, and the test
 
206
        # suite just skips testing UnicodePaths.
 
207
        relative = str(urlutils.unescape(relpath))
 
208
        remote_path = self._combine_paths(self._path, relative)
 
209
        return remote_path
147
210
 
148
211
    def has(self, relpath):
149
 
        """Does the target location exist?
150
 
 
151
 
        XXX: I assume we're never asked has(dirname) and thus I use
152
 
        the FTP size command and assume that if it doesn't raise,
153
 
        all is good.
154
 
        """
 
212
        """Does the target location exist?"""
 
213
        # FIXME jam 20060516 We *do* ask about directories in the test suite
 
214
        #       We don't seem to in the actual codebase
 
215
        # XXX: I assume we're never asked has(dirname) and thus I use
 
216
        # the FTP size command and assume that if it doesn't raise,
 
217
        # all is good.
 
218
        abspath = self._remote_path(relpath)
155
219
        try:
156
220
            f = self._get_FTP()
157
 
            s = f.size(self._abspath(relpath))
158
 
            mutter("FTP has: %s" % self._abspath(relpath))
 
221
            mutter('FTP has check: %s => %s', relpath, abspath)
 
222
            s = f.size(abspath)
 
223
            mutter("FTP has: %s", abspath)
159
224
            return True
160
 
        except ftplib.error_perm:
161
 
            mutter("FTP has not: %s" % self._abspath(relpath))
 
225
        except ftplib.error_perm, e:
 
226
            if ('is a directory' in str(e).lower()):
 
227
                mutter("FTP has dir: %s: %s", abspath, e)
 
228
                return True
 
229
            mutter("FTP has not: %s: %s", abspath, e)
162
230
            return False
163
231
 
164
 
    def get(self, relpath, decode=False):
 
232
    def get(self, relpath, decode=False, retries=0):
165
233
        """Get the file at the given relative path.
166
234
 
167
235
        :param relpath: The relative path to the file
 
236
        :param retries: Number of retries after temporary failures so far
 
237
                        for this operation.
168
238
 
169
239
        We're meant to return a file-like object which bzr will
170
240
        then read from. For now we do this via the magic of StringIO
171
241
        """
 
242
        # TODO: decode should be deprecated
172
243
        try:
173
 
            mutter("FTP get: %s" % self._abspath(relpath))
 
244
            mutter("FTP get: %s", self._remote_path(relpath))
174
245
            f = self._get_FTP()
175
246
            ret = StringIO()
176
 
            f.retrbinary('RETR '+self._abspath(relpath), ret.write, 8192)
 
247
            f.retrbinary('RETR '+self._remote_path(relpath), ret.write, 8192)
177
248
            ret.seek(0)
178
249
            return ret
179
250
        except ftplib.error_perm, e:
180
 
            raise NoSuchFile(self.abspath(relpath), extra=extra)
 
251
            raise errors.NoSuchFile(self.abspath(relpath), extra=str(e))
 
252
        except ftplib.error_temp, e:
 
253
            if retries > _number_of_retries:
 
254
                raise errors.TransportError(msg="FTP temporary error during GET %s. Aborting."
 
255
                                     % self.abspath(relpath),
 
256
                                     orig_error=e)
 
257
            else:
 
258
                warning("FTP temporary error: %s. Retrying.", str(e))
 
259
                self._reconnect()
 
260
                return self.get(relpath, decode, retries+1)
 
261
        except EOFError, e:
 
262
            if retries > _number_of_retries:
 
263
                raise errors.TransportError("FTP control connection closed during GET %s."
 
264
                                     % self.abspath(relpath),
 
265
                                     orig_error=e)
 
266
            else:
 
267
                warning("FTP control connection closed. Trying to reopen.")
 
268
                time.sleep(_sleep_between_retries)
 
269
                self._reconnect()
 
270
                return self.get(relpath, decode, retries+1)
181
271
 
182
 
    def put(self, relpath, fp, mode=None):
 
272
    def put_file(self, relpath, fp, mode=None, retries=0):
183
273
        """Copy the file-like or string object into the location.
184
274
 
185
275
        :param relpath: Location to put the contents, relative to base.
186
 
        :param f:       File-like or string object.
187
 
        TODO: jam 20051215 This should be an atomic put, not overwritting files in place
188
 
        TODO: jam 20051215 ftp as a protocol seems to support chmod, but ftplib does not
 
276
        :param fp:       File-like or string object.
 
277
        :param retries: Number of retries after temporary failures so far
 
278
                        for this operation.
 
279
 
 
280
        TODO: jam 20051215 ftp as a protocol seems to support chmod, but
 
281
        ftplib does not
189
282
        """
190
 
        if not hasattr(fp, 'read'):
191
 
            fp = StringIO(fp)
 
283
        abspath = self._remote_path(relpath)
 
284
        tmp_abspath = '%s.tmp.%.9f.%d.%d' % (abspath, time.time(),
 
285
                        os.getpid(), random.randint(0,0x7FFFFFFF))
 
286
        bytes = None
 
287
        if getattr(fp, 'read', None) is None:
 
288
            # hand in a string IO
 
289
            bytes = fp
 
290
            fp = StringIO(bytes)
 
291
        else:
 
292
            # capture the byte count; .read() may be read only so
 
293
            # decorate it.
 
294
            class byte_counter(object):
 
295
                def __init__(self, fp):
 
296
                    self.fp = fp
 
297
                    self.counted_bytes = 0
 
298
                def read(self, count):
 
299
                    result = self.fp.read(count)
 
300
                    self.counted_bytes += len(result)
 
301
                    return result
 
302
            fp = byte_counter(fp)
192
303
        try:
193
 
            mutter("FTP put: %s" % self._abspath(relpath))
 
304
            mutter("FTP put: %s", abspath)
194
305
            f = self._get_FTP()
195
 
            f.storbinary('STOR '+self._abspath(relpath), fp, 8192)
 
306
            try:
 
307
                f.storbinary('STOR '+tmp_abspath, fp)
 
308
                self._rename_and_overwrite(tmp_abspath, abspath, f)
 
309
                if bytes is not None:
 
310
                    return len(bytes)
 
311
                else:
 
312
                    return fp.counted_bytes
 
313
            except (ftplib.error_temp,EOFError), e:
 
314
                warning("Failure during ftp PUT. Deleting temporary file.")
 
315
                try:
 
316
                    f.delete(tmp_abspath)
 
317
                except:
 
318
                    warning("Failed to delete temporary file on the"
 
319
                            " server.\nFile: %s", tmp_abspath)
 
320
                    raise e
 
321
                raise
196
322
        except ftplib.error_perm, e:
197
 
            raise TransportError(orig_error=e)
 
323
            self._translate_perm_error(e, abspath, extra='could not store',
 
324
                                       unknown_exc=errors.NoSuchFile)
 
325
        except ftplib.error_temp, e:
 
326
            if retries > _number_of_retries:
 
327
                raise errors.TransportError("FTP temporary error during PUT %s. Aborting."
 
328
                                     % self.abspath(relpath), orig_error=e)
 
329
            else:
 
330
                warning("FTP temporary error: %s. Retrying.", str(e))
 
331
                self._reconnect()
 
332
                self.put_file(relpath, fp, mode, retries+1)
 
333
        except EOFError:
 
334
            if retries > _number_of_retries:
 
335
                raise errors.TransportError("FTP control connection closed during PUT %s."
 
336
                                     % self.abspath(relpath), orig_error=e)
 
337
            else:
 
338
                warning("FTP control connection closed. Trying to reopen.")
 
339
                time.sleep(_sleep_between_retries)
 
340
                self._reconnect()
 
341
                self.put_file(relpath, fp, mode, retries+1)
198
342
 
199
343
    def mkdir(self, relpath, mode=None):
200
344
        """Create a directory at the given path."""
201
 
        try:
202
 
            mutter("FTP mkd: %s" % self._abspath(relpath))
203
 
            f = self._get_FTP()
204
 
            try:
205
 
                f.mkd(self._abspath(relpath))
206
 
            except ftplib.error_perm, e:
207
 
                s = str(e)
208
 
                if 'File exists' in s:
209
 
                    raise FileExists(self.abspath(relpath), extra=s)
210
 
                else:
211
 
                    raise
212
 
        except ftplib.error_perm, e:
213
 
            raise TransportError(orig_error=e)
214
 
 
215
 
    def append(self, relpath, f):
 
345
        abspath = self._remote_path(relpath)
 
346
        try:
 
347
            mutter("FTP mkd: %s", abspath)
 
348
            f = self._get_FTP()
 
349
            f.mkd(abspath)
 
350
        except ftplib.error_perm, e:
 
351
            self._translate_perm_error(e, abspath,
 
352
                unknown_exc=errors.FileExists)
 
353
 
 
354
    def open_write_stream(self, relpath, mode=None):
 
355
        """See Transport.open_write_stream."""
 
356
        self.put_bytes(relpath, "", mode)
 
357
        result = AppendBasedFileStream(self, relpath)
 
358
        _file_streams[self.abspath(relpath)] = result
 
359
        return result
 
360
 
 
361
    def recommended_page_size(self):
 
362
        """See Transport.recommended_page_size().
 
363
 
 
364
        For FTP we suggest a large page size to reduce the overhead
 
365
        introduced by latency.
 
366
        """
 
367
        return 64 * 1024
 
368
 
 
369
    def rmdir(self, rel_path):
 
370
        """Delete the directory at rel_path"""
 
371
        abspath = self._remote_path(rel_path)
 
372
        try:
 
373
            mutter("FTP rmd: %s", abspath)
 
374
            f = self._get_FTP()
 
375
            f.rmd(abspath)
 
376
        except ftplib.error_perm, e:
 
377
            self._translate_perm_error(e, abspath, unknown_exc=errors.PathError)
 
378
 
 
379
    def append_file(self, relpath, f, mode=None):
216
380
        """Append the text in the file-like object into the final
217
381
        location.
218
382
        """
219
 
        raise TransportNotPossible('ftp does not support append()')
220
 
 
221
 
    def copy(self, rel_from, rel_to):
222
 
        """Copy the item at rel_from to the location at rel_to"""
223
 
        raise TransportNotPossible('ftp does not (yet) support copy()')
 
383
        abspath = self._remote_path(relpath)
 
384
        if self.has(relpath):
 
385
            ftp = self._get_FTP()
 
386
            result = ftp.size(abspath)
 
387
        else:
 
388
            result = 0
 
389
 
 
390
        mutter("FTP appe to %s", abspath)
 
391
        self._try_append(relpath, f.read(), mode)
 
392
 
 
393
        return result
 
394
 
 
395
    def _try_append(self, relpath, text, mode=None, retries=0):
 
396
        """Try repeatedly to append the given text to the file at relpath.
 
397
        
 
398
        This is a recursive function. On errors, it will be called until the
 
399
        number of retries is exceeded.
 
400
        """
 
401
        try:
 
402
            abspath = self._remote_path(relpath)
 
403
            mutter("FTP appe (try %d) to %s", retries, abspath)
 
404
            ftp = self._get_FTP()
 
405
            ftp.voidcmd("TYPE I")
 
406
            cmd = "APPE %s" % abspath
 
407
            conn = ftp.transfercmd(cmd)
 
408
            conn.sendall(text)
 
409
            conn.close()
 
410
            if mode:
 
411
                self._setmode(relpath, mode)
 
412
            ftp.getresp()
 
413
        except ftplib.error_perm, e:
 
414
            self._translate_perm_error(e, abspath, extra='error appending',
 
415
                unknown_exc=errors.NoSuchFile)
 
416
        except ftplib.error_temp, e:
 
417
            if retries > _number_of_retries:
 
418
                raise errors.TransportError("FTP temporary error during APPEND %s." \
 
419
                        "Aborting." % abspath, orig_error=e)
 
420
            else:
 
421
                warning("FTP temporary error: %s. Retrying.", str(e))
 
422
                self._reconnect()
 
423
                self._try_append(relpath, text, mode, retries+1)
 
424
 
 
425
    def _setmode(self, relpath, mode):
 
426
        """Set permissions on a path.
 
427
 
 
428
        Only set permissions if the FTP server supports the 'SITE CHMOD'
 
429
        extension.
 
430
        """
 
431
        try:
 
432
            mutter("FTP site chmod: setting permissions to %s on %s",
 
433
                str(mode), self._remote_path(relpath))
 
434
            ftp = self._get_FTP()
 
435
            cmd = "SITE CHMOD %s %s" % (self._remote_path(relpath), str(mode))
 
436
            ftp.sendcmd(cmd)
 
437
        except ftplib.error_perm, e:
 
438
            # Command probably not available on this server
 
439
            warning("FTP Could not set permissions to %s on %s. %s",
 
440
                    str(mode), self._remote_path(relpath), str(e))
 
441
 
 
442
    # TODO: jam 20060516 I believe ftp allows you to tell an ftp server
 
443
    #       to copy something to another machine. And you may be able
 
444
    #       to give it its own address as the 'to' location.
 
445
    #       So implement a fancier 'copy()'
 
446
 
 
447
    def rename(self, rel_from, rel_to):
 
448
        abs_from = self._remote_path(rel_from)
 
449
        abs_to = self._remote_path(rel_to)
 
450
        mutter("FTP rename: %s => %s", abs_from, abs_to)
 
451
        f = self._get_FTP()
 
452
        return self._rename(abs_from, abs_to, f)
 
453
 
 
454
    def _rename(self, abs_from, abs_to, f):
 
455
        try:
 
456
            f.rename(abs_from, abs_to)
 
457
        except ftplib.error_perm, e:
 
458
            self._translate_perm_error(e, abs_from,
 
459
                ': unable to rename to %r' % (abs_to))
224
460
 
225
461
    def move(self, rel_from, rel_to):
226
462
        """Move the item at rel_from to the location at rel_to"""
 
463
        abs_from = self._remote_path(rel_from)
 
464
        abs_to = self._remote_path(rel_to)
227
465
        try:
228
 
            mutter("FTP mv: %s => %s" % (self._abspath(rel_from),
229
 
                                         self._abspath(rel_to)))
 
466
            mutter("FTP mv: %s => %s", abs_from, abs_to)
230
467
            f = self._get_FTP()
231
 
            f.rename(self._abspath(rel_from), self._abspath(rel_to))
 
468
            self._rename_and_overwrite(abs_from, abs_to, f)
232
469
        except ftplib.error_perm, e:
233
 
            raise TransportError(orig_error=e)
 
470
            self._translate_perm_error(e, abs_from,
 
471
                extra='unable to rename to %r' % (rel_to,), 
 
472
                unknown_exc=errors.PathError)
 
473
 
 
474
    def _rename_and_overwrite(self, abs_from, abs_to, f):
 
475
        """Do a fancy rename on the remote server.
 
476
 
 
477
        Using the implementation provided by osutils.
 
478
        """
 
479
        osutils.fancy_rename(abs_from, abs_to,
 
480
            rename_func=lambda p1, p2: self._rename(p1, p2, f),
 
481
            unlink_func=lambda p: self._delete(p, f))
234
482
 
235
483
    def delete(self, relpath):
236
484
        """Delete the item at relpath"""
 
485
        abspath = self._remote_path(relpath)
 
486
        f = self._get_FTP()
 
487
        self._delete(abspath, f)
 
488
 
 
489
    def _delete(self, abspath, f):
237
490
        try:
238
 
            mutter("FTP rm: %s" % self._abspath(relpath))
239
 
            f = self._get_FTP()
240
 
            f.delete(self._abspath(relpath))
 
491
            mutter("FTP rm: %s", abspath)
 
492
            f.delete(abspath)
241
493
        except ftplib.error_perm, e:
242
 
            raise TransportError(orig_error=e)
 
494
            self._translate_perm_error(e, abspath, 'error deleting',
 
495
                unknown_exc=errors.NoSuchFile)
 
496
 
 
497
    def external_url(self):
 
498
        """See bzrlib.transport.Transport.external_url."""
 
499
        # FTP URL's are externally usable.
 
500
        return self.base
243
501
 
244
502
    def listable(self):
245
503
        """See Transport.listable."""
247
505
 
248
506
    def list_dir(self, relpath):
249
507
        """See Transport.list_dir."""
 
508
        basepath = self._remote_path(relpath)
 
509
        mutter("FTP nlst: %s", basepath)
 
510
        f = self._get_FTP()
250
511
        try:
251
 
            mutter("FTP nlst: %s" % self._abspath(relpath))
252
 
            f = self._get_FTP()
253
 
            basepath = self._abspath(relpath)
254
 
            # FTP.nlst returns paths prefixed by relpath, strip 'em
255
 
            the_list = f.nlst(basepath)
256
 
            stripped = [path[len(basepath)+1:] for path in the_list]
257
 
            # Remove . and .. if present, and return
258
 
            return [path for path in stripped if path not in (".", "..")]
 
512
            paths = f.nlst(basepath)
259
513
        except ftplib.error_perm, e:
260
 
            raise TransportError(orig_error=e)
 
514
            self._translate_perm_error(e, relpath, extra='error with list_dir')
 
515
        # If FTP.nlst returns paths prefixed by relpath, strip 'em
 
516
        if paths and paths[0].startswith(basepath):
 
517
            entries = [path[len(basepath)+1:] for path in paths]
 
518
        else:
 
519
            entries = paths
 
520
        # Remove . and .. if present
 
521
        return [urlutils.escape(entry) for entry in entries
 
522
                if entry not in ('.', '..')]
261
523
 
262
524
    def iter_files_recursive(self):
263
525
        """See Transport.iter_files_recursive.
266
528
        mutter("FTP iter_files_recursive")
267
529
        queue = list(self.list_dir("."))
268
530
        while queue:
269
 
            relpath = urllib.quote(queue.pop(0))
 
531
            relpath = queue.pop(0)
270
532
            st = self.stat(relpath)
271
533
            if stat.S_ISDIR(st.st_mode):
272
534
                for i, basename in enumerate(self.list_dir(relpath)):
275
537
                yield relpath
276
538
 
277
539
    def stat(self, relpath):
278
 
        """Return the stat information for a file.
279
 
        """
 
540
        """Return the stat information for a file."""
 
541
        abspath = self._remote_path(relpath)
280
542
        try:
281
 
            mutter("FTP stat: %s" % self._abspath(relpath))
 
543
            mutter("FTP stat: %s", abspath)
282
544
            f = self._get_FTP()
283
 
            return FtpStatResult(f, self._abspath(relpath))
 
545
            return FtpStatResult(f, abspath)
284
546
        except ftplib.error_perm, e:
285
 
            raise TransportError(orig_error=e)
 
547
            self._translate_perm_error(e, abspath, extra='error w/ stat')
286
548
 
287
549
    def lock_read(self, relpath):
288
550
        """Lock the given file for shared (read) access.
304
566
        :return: A lock object, which should be passed to Transport.unlock()
305
567
        """
306
568
        return self.lock_read(relpath)
 
569
 
 
570
 
 
571
def get_test_permutations():
 
572
    """Return the permutations to be used in testing."""
 
573
    from bzrlib import tests
 
574
    if tests.FTPServerFeature.available():
 
575
        from bzrlib.tests import ftp_server
 
576
        return [(FtpTransport, ftp_server.FTPServer)]
 
577
    else:
 
578
        # Dummy server to have the test suite report the number of tests
 
579
        # needing that feature.
 
580
        class UnavailableFTPServer(object):
 
581
            def setUp(self):
 
582
                raise tests.UnavailableFeature(tests.FTPServerFeature)
 
583
 
 
584
        return [(FtpTransport, UnavailableFTPServer)]