-
Notifications
You must be signed in to change notification settings - Fork 1
➕ Add script to utilize ebdamame and rebdhuhn #4
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
Merged
Merged
Changes from 3 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
35508f7
➕ Add script to utilize ebdamame and rebdhuhn
OLILHR 603c852
Merge branch 'main' into ebdamame-rebdhuhn-script
hf-kklein 5aef234
Update pyproject.toml
hf-kklein abfb38a
🐋 Add kroki docker container
OLILHR 8426d11
➕ Add `click` and `cattrs` dependencies
OLILHR 0dd57d5
Remove pylint comment disabling import error checks
OLILHR dd97b6a
isort
OLILHR e5267cf
Merge branch 'main' into ebdamame-rebdhuhn-script
OLILHR 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 hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,169 @@ | ||
| """ | ||
| A small click-based script to extract all EBDs from a given .docx file (available at edi-energy.de). | ||
| """ | ||
|
|
||
| # invoke like this: | ||
| # main.py -i unittests/test_data/ebd20230619_v33.docx | ||
| # -o ../machine-readable_entscheidungsbaumdiagramme/FV2304 | ||
| # -t json -t dot -t svg -t puml | ||
| # | ||
| # or | ||
| # | ||
| # main.py -i unittests/test_data/ebd20230629_v34.docx | ||
| # -o ../machine-readable_entscheidungsbaumdiagramme/FV2310 | ||
| # -t json -t dot -t svg -t puml | ||
|
|
||
| import json | ||
| from pathlib import Path | ||
| from typing import Literal | ||
|
|
||
| import cattrs | ||
| import click | ||
|
|
||
| # pylint:disable=import-error | ||
|
OLILHR marked this conversation as resolved.
Outdated
|
||
| from ebdamame import TableNotFoundError, get_all_ebd_keys, get_ebd_docx_tables | ||
| from ebdamame.docxtableconverter import DocxTableConverter | ||
| from rebdhuhn.graph_conversion import convert_table_to_graph | ||
| from rebdhuhn.graphviz import convert_dot_to_svg_kroki, convert_graph_to_dot | ||
| from rebdhuhn.models.ebd_graph import EbdGraph | ||
| from rebdhuhn.models.ebd_table import EbdTable | ||
| from rebdhuhn.models.errors import ( | ||
| EbdCrossReferenceNotSupportedError, | ||
| EndeInWrongColumnError, | ||
| GraphTooComplexForPlantumlError, | ||
| NotExactlyTwoOutgoingEdgesError, | ||
| OutcomeCodeAmbiguousError, | ||
| PathsNotGreaterThanOneError, | ||
| ) | ||
| from rebdhuhn.plantuml import convert_graph_to_plantuml | ||
|
|
||
|
|
||
| def _dump_puml(puml_path: Path, ebd_graph: EbdGraph) -> None: | ||
| plantuml_code = convert_graph_to_plantuml(ebd_graph) | ||
| with open(puml_path, "w+", encoding="utf-8") as uml_file: | ||
| uml_file.write(plantuml_code) | ||
|
|
||
|
|
||
| def _dump_dot(dot_path: Path, ebd_graph: EbdGraph) -> None: | ||
| dot_code = convert_graph_to_dot(ebd_graph) | ||
| with open(dot_path, "w+", encoding="utf-8") as uml_file: | ||
| uml_file.write(dot_code) | ||
|
|
||
|
|
||
| def _dump_svg(svg_path: Path, ebd_graph: EbdGraph) -> None: | ||
| dot_code = convert_graph_to_dot(ebd_graph) | ||
| svg_code = convert_dot_to_svg_kroki(dot_code) | ||
| with open(svg_path, "w+", encoding="utf-8") as svg_file: | ||
| svg_file.write(svg_code) | ||
|
|
||
|
|
||
| def _dump_json(json_path: Path, ebd_table: EbdTable) -> None: | ||
| with open(json_path, "w+", encoding="utf-8") as json_file: | ||
| json.dump(cattrs.unstructure(ebd_table), json_file, ensure_ascii=False, indent=2, sort_keys=True) | ||
|
|
||
|
|
||
| @click.command() | ||
| @click.option( | ||
| "-i", | ||
| "--input_path", | ||
| type=click.Path(exists=True, dir_okay=False, file_okay=True, path_type=Path), | ||
| prompt="Input DOCX File", | ||
| help="Path of a .docx file from which the EBDs shall be extracted", | ||
| ) | ||
| @click.option( | ||
| "-o", | ||
| "--output_path", | ||
| type=click.Path(exists=False, dir_okay=True, file_okay=False, path_type=Path), | ||
| default="output", | ||
| prompt="Output directory", | ||
| help="Define the path where you want to save the generated files", | ||
| ) | ||
| @click.option( | ||
| "-t", | ||
| "--export_types", | ||
| type=click.Choice(["puml", "dot", "json", "svg"], case_sensitive=False), | ||
| multiple=True, | ||
| help="Choose which file you'd like to create", | ||
| ) | ||
| # pylint:disable=too-many-locals, too-many-branches, too-many-statements, | ||
| def main(input_path: Path, output_path: Path, export_types: list[Literal["puml", "dot", "json", "svg"]]): | ||
| """ | ||
| A program to get a machine-readable version of the AHBs docx files published by edi@energy. | ||
| """ | ||
| if output_path.exists(): | ||
| click.secho(f"The output directory '{output_path}' exists already.", fg="yellow") | ||
| else: | ||
| output_path.mkdir(parents=True) | ||
| click.secho(f"Created a new directory at {output_path}", fg="green") | ||
| all_ebd_keys = get_all_ebd_keys(input_path) | ||
| error_sources: dict[type, list[str]] = {} | ||
|
|
||
| def handle_known_error(error: Exception, ebd_key: str) -> None: | ||
| click.secho(f"Error while processing EBD {ebd_key}: {error}", fg="yellow") | ||
| if type(error) not in error_sources: | ||
| error_sources[type(error)] = [] | ||
| error_sources[type(error)].append(ebd_key) | ||
|
|
||
| for ebd_key, (ebd_title, ebd_kapitel) in all_ebd_keys.items(): | ||
| click.secho(f"Processing EBD {ebd_kapitel} '{ebd_key}' ({ebd_title})") | ||
| try: | ||
| docx_tables = get_ebd_docx_tables(docx_file_path=input_path, ebd_key=ebd_key) | ||
| except TableNotFoundError as table_not_found_error: | ||
| click.secho(f"Table not found: {ebd_key}: {str(table_not_found_error)}; Skip!", fg="yellow") | ||
| continue | ||
| assert ebd_kapitel is not None | ||
| try: | ||
| converter = DocxTableConverter( | ||
| docx_tables, | ||
| ebd_key=ebd_key, | ||
| chapter=ebd_kapitel.chapter_title, # type:ignore[arg-type] | ||
| # pylint:disable=line-too-long | ||
| sub_chapter=f"{ebd_kapitel.chapter}.{ebd_kapitel.section}.{ebd_kapitel.subsection}: {ebd_kapitel.section_title}", | ||
| ) | ||
| ebd_table = converter.convert_docx_tables_to_ebd_table() | ||
| except Exception as scraping_error: # pylint:disable=broad-except | ||
| click.secho(f"Error while scraping {ebd_key}: {str(scraping_error)}; Skip!", fg="red") | ||
| continue | ||
| if "json" in export_types: | ||
| _dump_json(output_path / Path(f"{ebd_key}.json"), ebd_table) | ||
| click.secho(f"💾 Successfully exported '{ebd_key}.json'") | ||
| try: | ||
| ebd_graph = convert_table_to_graph(ebd_table) | ||
| except (EbdCrossReferenceNotSupportedError, EndeInWrongColumnError, OutcomeCodeAmbiguousError) as known_issue: | ||
| handle_known_error(known_issue, ebd_key) | ||
| continue | ||
| except Exception as unknown_error: # pylint:disable=broad-except | ||
| click.secho(f"Error while graphing {ebd_key}: {str(unknown_error)}; Skip!", fg="red") | ||
| continue | ||
| if "puml" in export_types: | ||
| try: | ||
| _dump_puml(output_path / Path(f"{ebd_key}.puml"), ebd_graph) | ||
| click.secho(f"💾 Successfully exported '{ebd_key}.puml'") | ||
| except AssertionError as assertion_error: | ||
| # https://github.com/Hochfrequenz/rebdhuhn/issues/35 | ||
| click.secho(str(assertion_error), fg="red") | ||
| except (NotExactlyTwoOutgoingEdgesError, GraphTooComplexForPlantumlError) as known_issue: | ||
| handle_known_error(known_issue, ebd_key) | ||
| except Exception as general_error: # pylint:disable=broad-exception-caught | ||
| click.secho(f"Error while exporting {ebd_key} as UML: {str(general_error)}; Skip!", fg="yellow") | ||
|
|
||
| try: | ||
| if "dot" in export_types: | ||
| _dump_dot(output_path / Path(f"{ebd_key}.dot"), ebd_graph) | ||
| click.secho(f"💾 Successfully exported '{ebd_key}.dot'") | ||
| if "svg" in export_types: | ||
| _dump_svg(output_path / Path(f"{ebd_key}.svg"), ebd_graph) | ||
| click.secho(f"💾 Successfully exported '{ebd_key}.svg'") | ||
| except PathsNotGreaterThanOneError as known_issue: | ||
| handle_known_error(known_issue, ebd_key) | ||
| except AssertionError as assertion_error: | ||
| # e.g. AssertionError: If indegree > 1, the number of paths should always be greater than 1 too. | ||
| click.secho(str(assertion_error), fg="red") | ||
| # both the SVG and dot path require graphviz to work, hence the common error handling block | ||
| click.secho(json.dumps({str(k): v for k, v in error_sources.items()}, indent=4)) | ||
| click.secho("🏁Finished") | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| # the parameter arguments gets provided over the CLI | ||
| main() # pylint:disable=no-value-for-parameter | ||
This file contains hidden or 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,23 +1,23 @@ | ||
| """ | ||
| This a docstring for the module. | ||
| """ | ||
|
|
||
|
|
||
| class MyClass: # pylint: disable=too-few-public-methods | ||
| """ | ||
| This is a docstring for the class. | ||
| """ | ||
|
|
||
| def __init__(self): | ||
| """ | ||
| Initialize for the sake of initializing | ||
| """ | ||
| self.my_instance_var: str = "abc" | ||
|
|
||
| def do_something(self) -> str: | ||
| """ | ||
| Actually does nothing. | ||
| :return: the value of an instance variable | ||
| """ | ||
| # this is a super long line with: 100 < line length <= 120 to demonstrate the purpose of pyproject.toml | ||
| return self.my_instance_var | ||
| """ | ||
| This a docstring for the module. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hast du andere line endings? CRLF statt LF oder so? |
||
| """ | ||
| class MyClass: # pylint: disable=too-few-public-methods | ||
| """ | ||
| This is a docstring for the class. | ||
| """ | ||
| def __init__(self): | ||
| """ | ||
| Initialize for the sake of initializing | ||
| """ | ||
| self.my_instance_var: str = "abc" | ||
| def do_something(self) -> str: | ||
| """ | ||
| Actually does nothing. | ||
| :return: the value of an instance variable | ||
| """ | ||
| # this is a super long line with: 100 < line length <= 120 to demonstrate the purpose of pyproject.toml | ||
| return self.my_instance_var | ||
This file contains hidden or 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,11 +1,11 @@ | ||
| from ebd_toolchain.mymodule import MyClass | ||
|
|
||
|
|
||
| class TestMyClass: | ||
| """ | ||
| A class with pytest unit tests. | ||
| """ | ||
|
|
||
| def test_something(self): | ||
| my_class = MyClass() | ||
| assert my_class.do_something() == "abc" | ||
| from ebd_toolchain.mymodule import MyClass | ||
| class TestMyClass: | ||
| """ | ||
| A class with pytest unit tests. | ||
| """ | ||
| def test_something(self): | ||
| my_class = MyClass() | ||
| assert my_class.do_something() == "abc" |
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.
Uh oh!
There was an error while loading. Please reload this page.