forked from zephyrproject-rtos/zcbor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_helptext.py
53 lines (44 loc) · 1.24 KB
/
add_helptext.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#
# Copyright (c) 2022 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0
#
from subprocess import Popen, PIPE
from os import linesep
from re import sub, S
from pathlib import Path
from sys import argv
p_root = Path(__file__).absolute().parents[0]
p_README = Path(p_root, 'README.md')
pattern = r"""
Command line documentation
==========================
Added via `add_helptext.py`
"""
if __name__ == "__main__":
commands = [
["zcbor", "--help"],
["zcbor", "code", "--help"],
["zcbor", "validate", "--help"],
["zcbor", "convert", "--help"],
]
output = pattern
for cmd in commands:
stdout, _ = Popen(cmd, stdout=PIPE).communicate()
assert b"options:" in stdout, f"Seems like something went wrong: {stdout.decode('utf-8')}"
output += f"""
{" ".join(cmd)}
{"-" * len(" ".join(cmd))}
```
{stdout.decode('utf-8')}
```
"""
with open(p_README, 'r') as f:
readme_contents = f.read()
new_readme_contents = sub(pattern + r'.*', output, readme_contents, flags=S)
if len(argv) > 1 and argv[1] == "--check":
if new_readme_contents != readme_contents:
exit(9)
else:
with open(p_README, 'w') as f:
f.write(new_readme_contents)