mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 14:46:07 +00:00

This is an ongoing series of commits that are reformatting our Python code. This catches the last of the python files to reformat. Since they where so few I bunched them together. Reformatting is done with `black`. If you end up having problems merging this commit because you have made changes to a python file, the best way to handle that is to run git checkout --ours <yourfile> and then reformat it with black. If you run into any problems, post to discourse about it and we will try to help. RFC Thread below: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Reviewed By: jhenderson, #libc, Mordante, sivachandra Differential Revision: https://reviews.llvm.org/D150784
40 lines
987 B
Python
Executable File
40 lines
987 B
Python
Executable File
#!/usr/bin/env python3
|
|
import argparse
|
|
import os
|
|
import sys
|
|
|
|
BASE_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
HTML_TEMPLATE_NAME = "d3-graphviz-template.html"
|
|
HTML_TEMPLATE_PATH = os.path.join(BASE_PATH, HTML_TEMPLATE_NAME)
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument(
|
|
"dotfile",
|
|
nargs="?",
|
|
type=argparse.FileType("r"),
|
|
default=sys.stdin,
|
|
help="Input .dot file, reads from stdin if not set",
|
|
)
|
|
parser.add_argument(
|
|
"htmlfile",
|
|
nargs="?",
|
|
type=argparse.FileType("w"),
|
|
default=sys.stdout,
|
|
help="Output .html file, writes to stdout if not set",
|
|
)
|
|
args = parser.parse_args()
|
|
|
|
template = open(HTML_TEMPLATE_PATH, "r")
|
|
|
|
for line in template:
|
|
if "<INSERT_DOT>" in line:
|
|
print(args.dotfile.read(), file=args.htmlfile, end="")
|
|
else:
|
|
print(line, file=args.htmlfile, end="")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|