1
# Copyright (C) 2005, 2006 Canonical Ltd
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.
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.
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
17
"""Transport for the local filesystem.
19
This is a fairly thin wrapper on regular file IO."""
23
from stat import ST_MODE, S_ISDIR, ST_SIZE
27
from bzrlib.trace import mutter
28
from bzrlib.transport import Transport, Server
29
from bzrlib.osutils import abspath, realpath, normpath, pathjoin, rename
32
class LocalTransport(Transport):
33
"""This is the transport agent for local filesystem access."""
35
def __init__(self, base):
36
"""Set the base path where files will be stored."""
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))
44
super(LocalTransport, self).__init__(base)
46
def should_cache(self):
49
def clone(self, offset=None):
50
"""Return a new LocalTransport with root at self.base + offset
51
Because the local filesystem does not require a connection,
52
we can just return a new object.
55
return LocalTransport(self.base)
57
return LocalTransport(self.abspath(offset))
59
def abspath(self, relpath):
60
"""Return the full url to the given relative URL.
61
This can be supplied with a string or a list
63
assert isinstance(relpath, basestring), (type(relpath), relpath)
64
return pathjoin(self.base, urllib.unquote(relpath))
66
def relpath(self, abspath):
67
"""Return the local path portion from a given absolute path.
69
from bzrlib.osutils import relpath
72
if abspath.endswith('/'):
73
abspath = abspath[:-1]
74
return relpath(self.base[:-1], abspath)
76
def has(self, relpath):
77
return os.access(self.abspath(relpath), os.F_OK)
79
def get(self, relpath):
80
"""Get the file at the given relative path.
82
:param relpath: The relative path to the file
85
path = self.abspath(relpath)
86
return open(path, 'rb')
87
except (IOError, OSError),e:
88
self._translate_error(e, path)
90
def put(self, relpath, f, mode=None):
91
"""Copy the file-like or string object into the location.
93
:param relpath: Location to put the contents, relative to base.
94
:param f: File-like or string object.
96
from bzrlib.atomicfile import AtomicFile
100
path = self.abspath(relpath)
101
fp = AtomicFile(path, 'wb', new_mode=mode)
102
except (IOError, OSError),e:
103
self._translate_error(e, path)
110
def iter_files_recursive(self):
111
"""Iter the relative paths of files in the transports sub-tree."""
112
queue = list(self.list_dir(u'.'))
114
relpath = queue.pop(0)
115
st = self.stat(relpath)
116
if S_ISDIR(st[ST_MODE]):
117
for i, basename in enumerate(self.list_dir(relpath)):
118
queue.insert(i, relpath+'/'+basename)
122
def mkdir(self, relpath, mode=None):
123
"""Create a directory at the given path."""
126
path = self.abspath(relpath)
130
except (IOError, OSError),e:
131
self._translate_error(e, path)
133
def append(self, relpath, f):
134
"""Append the text in the file-like object into the final
138
fp = open(self.abspath(relpath), 'ab')
139
except (IOError, OSError),e:
140
self._translate_error(e, relpath)
141
# win32 workaround (tell on an unwritten file returns 0)
147
def copy(self, rel_from, rel_to):
148
"""Copy the item at rel_from to the location at rel_to"""
150
path_from = self.abspath(rel_from)
151
path_to = self.abspath(rel_to)
153
shutil.copy(path_from, path_to)
154
except (IOError, OSError),e:
155
# TODO: What about path_to?
156
self._translate_error(e, path_from)
158
def rename(self, rel_from, rel_to):
159
path_from = self.abspath(rel_from)
161
# *don't* call bzrlib.osutils.rename, because we want to
162
# detect errors on rename
163
os.rename(path_from, self.abspath(rel_to))
164
except (IOError, OSError),e:
165
# TODO: What about path_to?
166
self._translate_error(e, path_from)
168
def move(self, rel_from, rel_to):
169
"""Move the item at rel_from to the location at rel_to"""
170
path_from = self.abspath(rel_from)
171
path_to = self.abspath(rel_to)
174
# this version will delete the destination if necessary
175
rename(path_from, path_to)
176
except (IOError, OSError),e:
177
# TODO: What about path_to?
178
self._translate_error(e, path_from)
180
def delete(self, relpath):
181
"""Delete the item at relpath"""
184
path = self.abspath(relpath)
186
except (IOError, OSError),e:
187
# TODO: What about path_to?
188
self._translate_error(e, path)
190
def copy_to(self, relpaths, other, mode=None, pb=None):
191
"""Copy a set of entries from self into another Transport.
193
:param relpaths: A list/generator of entries to be copied.
195
if isinstance(other, LocalTransport):
196
# Both from & to are on the local filesystem
197
# Unfortunately, I can't think of anything faster than just
198
# copying them across, one by one :(
201
total = self._get_total(relpaths)
203
for path in relpaths:
204
self._update_pb(pb, 'copy-to', count, total)
206
mypath = self.abspath(path)
207
otherpath = other.abspath(path)
208
shutil.copy(mypath, otherpath)
210
os.chmod(otherpath, mode)
211
except (IOError, OSError),e:
212
self._translate_error(e, path)
216
return super(LocalTransport, self).copy_to(relpaths, other, mode=mode, pb=pb)
219
"""See Transport.listable."""
222
def list_dir(self, relpath):
223
"""Return a list of all files at the given location.
224
WARNING: many transports do not support this, so trying avoid using
225
it if at all possible.
227
path = self.abspath(relpath)
229
return [urllib.quote(entry) for entry in os.listdir(path)]
230
except (IOError, OSError), e:
231
self._translate_error(e, path)
233
def stat(self, relpath):
234
"""Return the stat information for a file.
238
path = self.abspath(relpath)
240
except (IOError, OSError),e:
241
self._translate_error(e, path)
243
def lock_read(self, relpath):
244
"""Lock the given file for shared (read) access.
245
:return: A lock object, which should be passed to Transport.unlock()
247
from bzrlib.lock import ReadLock
250
path = self.abspath(relpath)
251
return ReadLock(path)
252
except (IOError, OSError), e:
253
self._translate_error(e, path)
255
def lock_write(self, relpath):
256
"""Lock the given file for exclusive (write) access.
257
WARNING: many transports do not support this, so trying avoid using it
259
:return: A lock object, which should be passed to Transport.unlock()
261
from bzrlib.lock import WriteLock
262
return WriteLock(self.abspath(relpath))
264
def rmdir(self, relpath):
265
"""See Transport.rmdir."""
268
path = self.abspath(relpath)
270
except (IOError, OSError),e:
271
self._translate_error(e, path)
274
class ScratchTransport(LocalTransport):
275
"""A transport that works in a temporary dir and cleans up after itself.
277
The dir only exists for the lifetime of the Python object.
278
Obviously you should not put anything precious in it.
281
def __init__(self, base=None):
283
base = tempfile.mkdtemp()
284
super(ScratchTransport, self).__init__(base)
287
shutil.rmtree(self.base, ignore_errors=True)
288
mutter("%r destroyed" % self)
291
class LocalRelpathServer(Server):
292
"""A pretend server for local transports, using relpaths."""
295
"""See Transport.Server.get_url."""
299
class LocalAbspathServer(Server):
300
"""A pretend server for local transports, using absolute paths."""
303
"""See Transport.Server.get_url."""
304
return os.path.abspath("")
307
class LocalURLServer(Server):
308
"""A pretend server for local transports, using file:// urls."""
311
"""See Transport.Server.get_url."""
312
# FIXME: \ to / on windows
313
return "file://%s" % os.path.abspath("")
316
def get_test_permutations():
317
"""Return the permutations to be used in testing."""
318
return [(LocalTransport, LocalRelpathServer),
319
(LocalTransport, LocalAbspathServer),
320
(LocalTransport, LocalURLServer),