util: remove canon_path()

We've now re-worked the west internals to use pathlib everywhere that
platform-specific path magic was previously relying on canon_path()
or other os.path-based methods to do comparisons or otherwise
canonicalize paths.

We can therefore remove canon_path() and consider the internals of
path handling hopefully satisfactorily reworked. Any further issues
with path handling should be treated as bugs.

Fixes: #273
Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2020-06-30 17:15:50 -07:00 committed by Marti Bolivar
parent ef6cc1d3c4
commit f466818a95
1 changed files with 1 additions and 16 deletions

View File

@ -11,10 +11,7 @@ import shlex
import textwrap
from typing import List, Optional, Union
# What we would eventually like to accept for paths everywhere in
# west's APIs. However, right now, paths are 'str' in a variety of
# places, and we are using west.util.canon_path() to create strings we
# can compare with ==. See #273 on GitHub.
# What west's APIs accept for paths.
#
# Here, os.PathLike objects should return str from their __fspath__
# methods, not bytes. We could try to do something like the approach
@ -23,18 +20,6 @@ from typing import List, Optional, Union
# otherwise, but it doesn't seem worth it.
PathType = Union[str, os.PathLike]
def canon_path(path: str) -> str:
'''Returns a canonical version of the path.
This is currently ``os.path.normcase(os.path.abspath(path))``. The
path separator is converted to os.sep on platforms where that
matters (Windows).
:param path: path whose canonical name to return; need not
refer to an existing file.
'''
return os.path.normcase(os.path.abspath(path))
def escapes_directory(path: PathType, directory: PathType) -> bool:
'''Returns True if `path` escapes parent directory `directory`.