pre-commit-hooks/pre_commit_hooks/check_executables_have_sheb...

86 lines
2.4 KiB
Python
Raw Normal View History

"""Check that executable text files have a shebang."""
from __future__ import annotations
import argparse
2020-02-06 03:10:42 +08:00
import shlex
import sys
from collections.abc import Generator
from collections.abc import Sequence
from typing import NamedTuple
2020-05-17 11:59:08 +08:00
from pre_commit_hooks.util import cmd_output
from pre_commit_hooks.util import zsplit
2020-05-17 11:59:08 +08:00
EXECUTABLE_VALUES = frozenset(('1', '3', '5', '7'))
def check_executables(paths: list[str]) -> int:
fs_tracks_executable_bit = cmd_output(
'git', 'config', 'core.fileMode', retcode=None,
).strip()
if fs_tracks_executable_bit == 'false': # pragma: win32 cover
2020-05-17 11:59:08 +08:00
return _check_git_filemode(paths)
else: # pragma: win32 no cover
retv = 0
for path in paths:
if not has_shebang(path):
2020-05-17 11:59:08 +08:00
_message(path)
retv = 1
return retv
class GitLsFile(NamedTuple):
mode: str
filename: str
def git_ls_files(paths: Sequence[str]) -> Generator[GitLsFile]:
outs = cmd_output('git', 'ls-files', '-z', '--stage', '--', *paths)
for out in zsplit(outs):
metadata, filename = out.split('\t')
mode, _, _ = metadata.split()
yield GitLsFile(mode, filename)
2020-05-17 11:59:08 +08:00
def _check_git_filemode(paths: Sequence[str]) -> int:
seen: set[str] = set()
for ls_file in git_ls_files(paths):
is_executable = any(b in EXECUTABLE_VALUES for b in ls_file.mode[-3:])
if is_executable and not has_shebang(ls_file.filename):
_message(ls_file.filename)
seen.add(ls_file.filename)
2020-05-17 11:59:08 +08:00
return int(bool(seen))
def has_shebang(path: str) -> int:
with open(path, 'rb') as f:
first_bytes = f.read(2)
2020-05-17 11:59:08 +08:00
return first_bytes == b'#!'
def _message(path: str) -> None:
print(
f'{path}: marked executable but has no (or invalid) shebang!\n'
f" If it isn't supposed to be executable, try: "
f'`chmod -x {shlex.quote(path)}`\n'
f' If on Windows, you may also need to: '
f'`git add --chmod=-x {shlex.quote(path)}`\n'
2020-05-17 11:59:08 +08:00
f' If it is supposed to be executable, double-check its shebang.',
file=sys.stderr,
)
def main(argv: Sequence[str] | None = None) -> int:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument('filenames', nargs='*')
args = parser.parse_args(argv)
2020-05-17 11:59:08 +08:00
return check_executables(args.filenames)
if __name__ == '__main__':
raise SystemExit(main())