Skip to content
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

[BLOCKED]: sphinx extension for workchain documentation #748

Closed
wants to merge 34 commits into from

Conversation

greschd
Copy link
Member

@greschd greschd commented Oct 9, 2017

Blocked because it depends on the expose_inputs and expose_outputs / PortNamespace implementation, which is not merged yet.

Fixes #721.

It defines a sphinx directive aiida-workchain, which produces documentation like this:

image

The tests are run separately (using pytest) from the main AiiDA tests.

Tests fail because of the unresolved issue about duplicate links.

sphuber and others added 30 commits August 24, 2017 19:06
This change was implemented to accommodate the new functionality that
allows a Process to expose the inputs of another Process. The goal
for WorkChain design should be to write well defined abstract components
that can then be composed together by wrapping workchains. To prevent
to having to manually copy over the input specification of a sub workchain
we provide the 'expose_inputs' method that will do this automatically.

To allow for inputs to be separated, we change the inputs of the ProcessSpec
to be a PortNamespace, which allows for arbitrary nesting of Ports.
This option allows the exposing of only a particular subset
of inputs of a Process.
A common use case is for a wrapping Process to run multiple instances
of another sub Process and therefore wants to expose its inputs.
However, the required inputs for the sub Process instances may differ
for some inputs, while others can be shared. To accomplish this one
can expose the inputs twice in separate namespaces and expose the
shared inputs on the top level namespace. To simplify the specification
of which inputs to expose where, we introduce the 'include' parameter
for the ProcessSpec.expose_inputs method.

To simply the gathering of inputs from the parsed inputs for a given
sub process over multiple namespaces, we adapt the behaviour of the
exposed_inputs methods to traverse down the namespace tree, collecting
all inputs that are common to the process in question. This agglomerating
behavior can be prevented by passing the argument agglomerate=False
Change the default for 'include' to None.
Add test where the same dict is passed for two namespaces
The exclude / include functionality is factored out into a filter
function. What's missing for the expose_outputs implementation is
the ability to add namespaces.
@greschd
Copy link
Member Author

greschd commented Oct 16, 2017

Update: Added integration with sphinx.ext.autodoc. This means that using automodule will automatically use the aiida-workchain command for WorkChain subclasses.

To make this possible, the directive is now

.. aiida-workchain:: MyWorkChain
    :module: my_plugin.sub_module

instead of

.. aiida-workchain:: my_plugin.sub_module.MyWorkChain

@greschd greschd changed the title [WIP]: sphinx extension for workchain documentation [BLOCKED]: sphinx extension for workchain documentation Oct 19, 2017
@greschd
Copy link
Member Author

greschd commented Feb 20, 2018

Closing in favor of #1155.

@greschd greschd closed this Feb 20, 2018
@greschd greschd deleted the sphinxext branch June 12, 2018 07:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Sphinx extensions for workflow documentation.
2 participants