-
Notifications
You must be signed in to change notification settings - Fork 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
Example canonicalization for ConfigWorkflow #90
Conversation
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.
In my mind the core.Workflow
was the canonicalized version of the workflow and ConfigWorkflow
is the python representation of the yaml config with only minimal postprocessing to avoid invalid inputs. I think with time the Config*
classes became more distant to the yaml config file. But instead of introducing another level of workflow, I would put the logic that is in the canonicalize_workflow
function in the the processing from ConfigWorkflow
to core.Workflow
. What do you think?
def get_plugin_from_named_base_model(data: dict) -> str: | ||
if isinstance(data, (ConfigRootTask, ConfigShellTask, ConfigIconTask)): | ||
return data.plugin |
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 for the idempotence right? Maybe we then also change the input type data to
def get_plugin_from_named_base_model(data: dict) -> str: | |
if isinstance(data, (ConfigRootTask, ConfigShellTask, ConfigIconTask)): | |
return data.plugin | |
def get_plugin_from_named_base_model(data: dict | type[ConfigRootTask | ConfigShellTask | ConfigIconTask]) -> str: | |
if isinstance(data, (ConfigRootTask, ConfigShellTask, ConfigIconTask)): | |
return data.plugin |
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 will do that, or a version of it that clears when run through mypy.
I think there's room for a canonical workflow config in between because core.Workflow already creates the graph with core objects and dependency resolving. What we need are classes between yaml parsing and core objects that remove all ambiguities. |
Remember: my end goal is to separate data cleaning from graph unrolling. It seems you are proposing to tie them together even more. |
This represents the result of steps 4) - 8) in #88 for
ConfigWorkflow
.Note how it isolates the tests from syntactic changes in the YAML format, so that only changes in semantics require adapting tests (as I believe they should).
Changes:
ConfigWorkflow
from the need for unit testing by canonicalizing it intoCanonicalWorkflow
, which can be tested in isolation from the actual YAML format.ConfigWorkflow
to the canonicalization function