|
|
|
@ -31,10 +31,17 @@ class FSModule(ExtensionModule): |
|
|
|
|
super().__init__(interpreter) |
|
|
|
|
self.snippets.add('generate_dub_file') |
|
|
|
|
|
|
|
|
|
def _resolve_dir(self, state: 'ModuleState', arg: str) -> Path: |
|
|
|
|
""" |
|
|
|
|
resolves (makes absolute) a directory relative to calling meson.build, |
|
|
|
|
if not already absolute |
|
|
|
|
""" |
|
|
|
|
return Path(state.source_root) / state.subdir / Path(arg).expanduser() |
|
|
|
|
|
|
|
|
|
def _check(self, check: str, state: 'ModuleState', args: typing.Sequence[str]) -> ModuleReturnValue: |
|
|
|
|
if len(args) != 1: |
|
|
|
|
MesonException('fs.{} takes exactly one argument.'.format(check)) |
|
|
|
|
test_file = Path(state.source_root) / state.subdir / Path(args[0]).expanduser() |
|
|
|
|
test_file = self._resolve_dir(state, args[0]) |
|
|
|
|
return ModuleReturnValue(getattr(test_file, check)(), []) |
|
|
|
|
|
|
|
|
|
@stringArgs |
|
|
|
@ -62,7 +69,7 @@ class FSModule(ExtensionModule): |
|
|
|
|
def hash(self, state: 'ModuleState', args: typing.Sequence[str], kwargs: dict) -> ModuleReturnValue: |
|
|
|
|
if len(args) != 2: |
|
|
|
|
MesonException('method takes exactly two arguments.') |
|
|
|
|
file = Path(state.source_root) / state.subdir / Path(args[0]).expanduser() |
|
|
|
|
file = self._resolve_dir(state, args[0]) |
|
|
|
|
if not file.is_file(): |
|
|
|
|
raise MesonException('{} is not a file and therefore cannot be hashed'.format(file)) |
|
|
|
|
try: |
|
|
|
@ -73,6 +80,35 @@ class FSModule(ExtensionModule): |
|
|
|
|
h.update(file.read_bytes()) |
|
|
|
|
return ModuleReturnValue(h.hexdigest(), []) |
|
|
|
|
|
|
|
|
|
@stringArgs |
|
|
|
|
@noKwargs |
|
|
|
|
def size(self, state: 'ModuleState', args: typing.Sequence[str], kwargs: dict) -> ModuleReturnValue: |
|
|
|
|
if len(args) != 1: |
|
|
|
|
MesonException('method takes exactly one argument.') |
|
|
|
|
file = self._resolve_dir(state, args[0]) |
|
|
|
|
if not file.is_file(): |
|
|
|
|
raise MesonException('{} is not a file and therefore cannot be sized'.format(file)) |
|
|
|
|
try: |
|
|
|
|
return ModuleReturnValue(file.stat().st_size, []) |
|
|
|
|
except ValueError: |
|
|
|
|
raise MesonException('{} size could not be determined'.format(args[0])) |
|
|
|
|
|
|
|
|
|
@stringArgs |
|
|
|
|
@noKwargs |
|
|
|
|
def samefile(self, state: 'ModuleState', args: typing.Sequence[str], kwargs: dict) -> ModuleReturnValue: |
|
|
|
|
if len(args) != 2: |
|
|
|
|
MesonException('method takes exactly two arguments.') |
|
|
|
|
file1 = self._resolve_dir(state, args[0]) |
|
|
|
|
file2 = self._resolve_dir(state, args[1]) |
|
|
|
|
if not file1.exists(): |
|
|
|
|
raise MesonException('{} is not a file, symlink or directory and therefore cannot be compared'.format(file1)) |
|
|
|
|
if not file2.exists(): |
|
|
|
|
raise MesonException('{} is not a file, symlink or directory and therefore cannot be compared'.format(file2)) |
|
|
|
|
try: |
|
|
|
|
return ModuleReturnValue(file1.samefile(file2), []) |
|
|
|
|
except OSError: |
|
|
|
|
raise MesonException('{} could not be compared to {}'.format(file1, file2)) |
|
|
|
|
|
|
|
|
|
@stringArgs |
|
|
|
|
@noKwargs |
|
|
|
|
def with_suffix(self, state: 'ModuleState', args: typing.Sequence[str], kwargs: dict) -> ModuleReturnValue: |
|
|
|
|