Mercurial > hg-stable
changeset 23581:aed981c7bebf
vfs: add a 'reljoin' function for joining relative paths
The vfs.join method only works for absolute paths. We need something
that works for relative paths too when transforming filenames. Since
os.path.join may misbehave in tricky encoding situations, encapsulate
the new join method in our vfs abstraction. The default implementation
remains os.path.join, but this opens the door to other VFSes doing
something more intelligent based on their needs.
In the same go, we replace the usage of 'os.path.join' in transaction code.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Mon, 15 Dec 2014 13:27:46 -0800 |
parents | e20f36ad092e |
children | 7559dc8c4238 |
files | mercurial/scmutil.py mercurial/transaction.py |
diffstat | 2 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/scmutil.py Thu Dec 18 12:07:03 2014 -0600 +++ b/mercurial/scmutil.py Mon Dec 15 13:27:46 2014 -0800 @@ -261,6 +261,13 @@ def islink(self, path=None): return os.path.islink(self.join(path)) + def reljoin(self, *paths): + """join various elements of a path together (as os.path.join would do) + + The vfs base is not injected so that path stay relative. This exists + to allow handling of strange encoding if needed.""" + return os.path.join(*paths) + def lexists(self, path=None): return os.path.lexists(self.join(path))
--- a/mercurial/transaction.py Thu Dec 18 12:07:03 2014 -0600 +++ b/mercurial/transaction.py Mon Dec 15 13:27:46 2014 -0800 @@ -200,8 +200,8 @@ return dirname, filename = os.path.split(file) backupfilename = "%s.backup.%s" % (self.journal, filename) - backupfile = os.path.join(dirname, backupfilename) vfs = self._vfsmap[location] + backupfile = vfs.reljoin(dirname, backupfilename) if vfs.exists(file): filepath = vfs.join(file) backuppath = vfs.join(backupfile)