-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extended build examples #118
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6dcf16c
Refactor build_examples.py
formatc1702 aeadd75
Add actions to compare against and restore from the latest commit
kvid 1d7ed6f
Make all actions honor the optional argument -g or --group
kvid 21fcd4c
Restructure the group dict initialization
kvid add227d
Move group loop into build_generated() for consistency
kvid 45122b1
Add CLI option -c that allows comparing Graphviz output also
kvid 39487ca
Fix change requests from owner as descibed in PR #118
kvid File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,113 +1,150 @@ | ||
#!/usr/bin/python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
import argparse | ||
import os | ||
import sys | ||
from fnmatch import fnmatch | ||
|
||
# noinspection PyUnresolvedReferences | ||
from wv_helper import open_file_write, open_file_read | ||
import os | ||
from pathlib import Path | ||
|
||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) | ||
script_path = Path(__file__).absolute() | ||
|
||
sys.path.insert(0, str(script_path.parent.parent)) # to find wireviz module | ||
from wireviz import wireviz | ||
from wv_helper import open_file_write, open_file_read, open_file_append | ||
|
||
examples_path = os.path.join('..','..','examples') | ||
tutorials_path = os.path.join('..','..','tutorial') | ||
demos_path = examples_path | ||
|
||
readme = 'readme.md' | ||
groups = { | ||
'examples': { | ||
'path': Path(script_path).parent.parent.parent / 'examples', | ||
'prefix': 'ex', | ||
readme: [], # Include no files | ||
'title': 'Example Gallery', | ||
}, | ||
'tutorial' : { | ||
'path': Path(script_path).parent.parent.parent / 'tutorial', | ||
'prefix': 'tutorial', | ||
readme: ['md', 'yml'], # Include .md and .yml files | ||
'title': 'WireViz Tutorial', | ||
}, | ||
'demos' : { | ||
'path': Path(script_path).parent.parent.parent / 'examples', | ||
'prefix': 'demo', | ||
}, | ||
} | ||
|
||
|
||
def build_demos(): | ||
for fn in sorted(os.listdir(demos_path)): | ||
if fnmatch(fn, "demo*.yml"): | ||
abspath = os.path.join(demos_path, fn) | ||
|
||
print(abspath) | ||
wireviz.parse_file(abspath) | ||
|
||
def build_examples(): | ||
with open_file_write(os.path.join(examples_path, readme)) as file: | ||
file.write('# Example gallery\n') | ||
for fn in sorted(os.listdir(examples_path)): | ||
if fnmatch(fn, "ex*.yml"): | ||
i = ''.join(filter(str.isdigit, fn)) | ||
|
||
abspath = os.path.join(examples_path, fn) | ||
outfile_name = abspath.split(".yml")[0] | ||
|
||
|
||
print(abspath) | ||
wireviz.parse_file(abspath) | ||
|
||
file.write(f'## Example {i}\n') | ||
file.write(f'![]({outfile_name}.png)\n\n') | ||
file.write(f'[Source]({fn}) - [Bill of Materials]({outfile_name}.bom.tsv)\n\n\n') | ||
|
||
def build_tutorials(): | ||
with open_file_write(os.path.join(tutorials_path, readme)) as file: | ||
file.write('# WireViz Tutorial\n') | ||
for fn in sorted(os.listdir(tutorials_path)): | ||
if fnmatch(fn, "tutorial*.yml"): | ||
i = ''.join(filter(str.isdigit, fn)) | ||
abspath = os.path.join(tutorials_path, fn) | ||
print(abspath) | ||
|
||
wireviz.parse_file(abspath) | ||
|
||
outfile_name = abspath.split(".yml")[0] | ||
|
||
with open_file_read(outfile_name + '.md') as info: | ||
input_extensions = ['.yml'] | ||
extensions_not_containing_graphviz_output = ['.gv', '.bom.tsv'] | ||
extensions_containing_graphviz_output = ['.png', '.svg', '.html'] | ||
generated_extensions = extensions_not_containing_graphviz_output + extensions_containing_graphviz_output | ||
|
||
|
||
def collect_filenames(description, groupkey, ext_list): | ||
path = groups[groupkey]['path'] | ||
patterns = [f"{groups[groupkey]['prefix']}*{ext}" for ext in ext_list] | ||
if ext_list != input_extensions and readme in groups[groupkey]: | ||
patterns.append(readme) | ||
print(f'{description} {groupkey} in "{path}"') | ||
return sorted([filename for pattern in patterns for filename in path.glob(pattern)]) | ||
|
||
|
||
def build_generated(groupkeys): | ||
for key in groupkeys: | ||
# preparation | ||
path = groups[key]['path'] | ||
build_readme = readme in groups[key] | ||
if build_readme: | ||
include_readme = 'md' in groups[key][readme] | ||
include_source = 'yml' in groups[key][readme] | ||
with open_file_write(path / readme) as out: | ||
out.write(f'# {groups[key]["title"]}\n\n') | ||
# collect and iterate input YAML files | ||
for yaml_file in collect_filenames('Building', key, input_extensions): | ||
print(f' "{yaml_file}"') | ||
wireviz.parse_file(yaml_file) | ||
|
||
if build_readme: | ||
i = ''.join(filter(str.isdigit, yaml_file.stem)) | ||
|
||
with open_file_append(path / readme) as out: | ||
if include_readme: | ||
with open_file_read(yaml_file.with_suffix('.md')) as info: | ||
for line in info: | ||
file.write(line.replace('## ', '## {} - '.format(i))) | ||
file.write(f'\n[Source]({fn}):\n\n') | ||
|
||
with open_file_read(abspath) as src: | ||
file.write('```yaml\n') | ||
out.write(line.replace('## ', f'## {i} - ')) | ||
out.write('\n\n') | ||
else: | ||
out.write(f'## Example {i}\n') | ||
|
||
if include_source: | ||
with open_file_read(yaml_file) as src: | ||
out.write('```yaml\n') | ||
for line in src: | ||
file.write(line) | ||
file.write('```\n') | ||
file.write('\n') | ||
|
||
file.write('\nOutput:\n\n'.format(i)) | ||
|
||
file.write(f'![](tutorial{outfile_name}.png)\n\n') | ||
|
||
file.write(f'[Bill of Materials](tutorial{outfile_name}.bom.tsv)\n\n\n') | ||
|
||
def clean_examples(): | ||
generated_extensions = ['.gv', '.png', '.svg', '.html', '.bom.tsv'] | ||
|
||
for filepath in [examples_path, demos_path, tutorials_path]: | ||
print(filepath) | ||
for file in sorted(os.listdir(filepath)): | ||
if os.path.exists(os.path.join(filepath, file)): | ||
if list(filter(file.endswith, generated_extensions)) or file == 'readme.md': | ||
print('rm ' + os.path.join(filepath, file)) | ||
os.remove(os.path.join(filepath, file)) | ||
out.write(line) | ||
out.write('```\n') | ||
out.write('\n') | ||
|
||
out.write(f'![]({yaml_file.stem}.png)\n\n') | ||
out.write(f'[Source]({yaml_file.name}) - [Bill of Materials]({yaml_file.stem}.bom.tsv)\n\n\n') | ||
|
||
|
||
def clean_generated(groupkeys): | ||
for key in groupkeys: | ||
# collect and remove files | ||
for filename in collect_filenames('Cleaning', key, generated_extensions): | ||
if filename.is_file(): | ||
print(f' rm "{filename}"') | ||
os.remove(filename) | ||
|
||
|
||
def compare_generated(groupkeys, include_graphviz_output = False): | ||
compare_extensions = generated_extensions if include_graphviz_output else extensions_not_containing_graphviz_output | ||
for key in groupkeys: | ||
# collect and compare files | ||
for filename in collect_filenames('Comparing', key, compare_extensions): | ||
cmd = f'git --no-pager diff "{filename}"' | ||
print(f' {cmd}') | ||
os.system(cmd) | ||
|
||
|
||
def restore_generated(groupkeys): | ||
for key in groupkeys: | ||
# collect input YAML files | ||
filename_list = collect_filenames('Restoring', key, input_extensions) | ||
# collect files to restore | ||
filename_list = [fn.with_suffix(ext) for fn in filename_list for ext in generated_extensions] | ||
if readme in groups[key]: | ||
filename_list.append(groups[key]['path'] / readme) | ||
# restore files | ||
for filename in filename_list: | ||
cmd = f'git checkout -- "{filename}"' | ||
print(f' {cmd}') | ||
os.system(cmd) | ||
|
||
|
||
def parse_args(): | ||
parser = argparse.ArgumentParser( | ||
description='Wireviz Example Manager', | ||
) | ||
parser.add_argument('action', nargs='?', action='store', default='build') | ||
parser.add_argument('-generate', nargs='*', choices=['examples', 'demos', 'tutorials'], default=['examples', 'demos', 'tutorials']) | ||
parser = argparse.ArgumentParser(description='Wireviz Example Manager',) | ||
parser.add_argument('action', nargs='?', action='store', | ||
choices=['build','clean','compare','restore'], default='build', | ||
help='what to do with the generated files (default: build)') | ||
parser.add_argument('-c', '--compare-graphviz-output', action='store_true', | ||
help='the Graphviz output is also compared (default: False)') | ||
parser.add_argument('-g', '--groups', nargs='+', | ||
choices=groups.keys(), default=groups.keys(), | ||
help='the groups of generated files (default: all)') | ||
return parser.parse_args() | ||
|
||
|
||
def main(): | ||
args = parse_args() | ||
if args.action == 'build': | ||
generate_types = { | ||
'examples': build_examples, | ||
'demos': build_demos, | ||
'tutorials': build_tutorials | ||
} | ||
for gentype in args.generate: | ||
if gentype in generate_types: | ||
generate_types.get(gentype) () | ||
build_generated(args.groups) | ||
elif args.action == 'clean': | ||
clean_examples() | ||
clean_generated(args.groups) | ||
elif args.action == 'compare': | ||
compare_generated(args.groups, args.compare_graphviz_output) | ||
elif args.action == 'restore': | ||
restore_generated(args.groups) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is by no means mandatory, but if we're using the
Click
package for CLI parsing inwireviz.py
, maybe it makes sense to use it here too, for consistency?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, that's why I wrote in the PR description:
I will have a look at that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think I have the time to complete this today. Is it better to finish this PR without click?
I have looked into click, but I didn't find a way to implement the
--groups
option. The documentation is not very detailed. Here is what I have tried so far, but I also got a lot of errors (e.g.SyntaxError: invalid syntax
) I couldn't figure out right now:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps the discussion on #123 might help you. It seems
click
requires one-g
for each group you want to include. Not sure if it's a limitation, or a feature, and what reason it might have.