-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathargparse2help.py
79 lines (75 loc) · 2.37 KB
/
argparse2help.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import sys
import importlib
import os
def getLongest():
longestSize = 0
for arg in listArgs:
if (len(arg.option_strings)==0):
size = len(arg.dest)
else:
size = len(", ".join(arg.option_strings))
longestSize = max(longestSize, size)
return longestSize
def write_header(parser, fileName):
longestSize = getLongest()
file= open(fileName, "w+")
splitPath = sys.argv[2].split("/")
file.write("#ifndef ROOT_{}\n".format(splitPath[len(splitPath)-1].partition(".")[0]))
file.write("#define ROOT_{}\n".format(splitPath[len(splitPath)-1].partition(".")[0]))
file.write("constexpr static const char kCommandLineOptionsHelp[] = R\"RAW(\n")
file.write(parser.format_usage() + "\n")
if parser.description is not None:
file.write(parser.description + "\n\n")
file.write("OPTIONS:\n")
for arg in listArgs:
options = ""
help = arg.help
if (len(arg.option_strings)==0):
listOptions = [arg.dest]
else:
listOptions = arg.option_strings
options = ", ".join(listOptions)
spaces = " " * (12 + longestSize - len(options))
if help != None:
help = help.replace("\n", "\n {}".format(" "*(len(options)) + spaces))
file.write(" {}{}{}\n".format(options, spaces, help))
else:
file.write(" {}\n".format(options))
if parser.epilog is not None:
file.write("\n" + parser.epilog + "\n")
file.write(")RAW\";\n")
file.write("#endif\n")
file.close()
def write_man(parser, fileName):
file= open(fileName, "w+")
file.write(".TH {} 1 \n".format(parser.prog))
file.write(".SH SYNOPSIS\n")
file.write(parser.format_usage() + "\n")
file.write(".SH DESCRIPTION\n")
file.write(parser.description + "\n")
file.write(".SH OPTIONS\n")
for arg in listArgs:
options = ""
help = arg.help
if (len(arg.option_strings)==0):
listOptions = [arg.dest]
else:
listOptions = arg.option_strings
options = " ".join(listOptions)
if help != None:
file.write(".IP {}\n".format(options))
file.write(help.replace("\n","\n.IP\n")+ "\n")
else:
file.write(".IP {}\n\n".format(options))
file.close()
if __name__ == "__main__":
path = os.path.expanduser(sys.argv[1])
sys.path.insert(0, os.path.abspath(os.path.dirname(path)))
i = importlib.import_module(os.path.splitext(os.path.basename(path))[0])
parser = i.get_argparse()
listArgs = parser._actions
ext = sys.argv[2][-2:]
if (ext == ".h"):
write_header(parser, sys.argv[2])
elif (ext == ".1"):
write_man(parser, sys.argv[2])