Source code for aiida.engine.processes.workchains.workchain

# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved.                     #
# This file is part of the AiiDA code.                                    #
#                                                                         #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida-core #
# For further information on the license, see the LICENSE.txt file        #
# For further information please visit http://www.aiida.net               #
###########################################################################
"""Components for the WorkChain concept of the workflow engine."""

import collections
import functools

import plumpy
from plumpy import auto_persist, Wait, Continue
from plumpy.workchains import if_, while_, return_, _PropagateReturn

from aiida.common import exceptions
from aiida.common.extendeddicts import AttributeDict
from aiida.common.lang import override
from aiida.orm import Node, WorkChainNode
from aiida.orm.utils import load_node

from ..exit_code import ExitCode
from ..process_spec import ProcessSpec
from ..process import Process, ProcessState
from .awaitable import AwaitableTarget, AwaitableAction, construct_awaitable

__all__ = ('WorkChain', 'if_', 'while_', 'return_')


class WorkChainSpec(ProcessSpec, plumpy.WorkChainSpec):
    pass


[docs]@auto_persist('_awaitables') class WorkChain(Process): """The `WorkChain` class is the principle component to implement workflows in AiiDA.""" _node_class = WorkChainNode _spec_class = WorkChainSpec _STEPPER_STATE = 'stepper_state' _CONTEXT = 'CONTEXT'
[docs] def __init__(self, inputs=None, logger=None, runner=None, enable_persistence=True): """Construct a WorkChain instance. Construct the instance only if it is a sub class of `WorkChain`, otherwise raise `InvalidOperation`. :param inputs: work chain inputs :type inputs: dict :param logger: aiida logger :type logger: :class:`logging.Logger` :param runner: work chain runner :type: :class:`aiida.engine.runners.Runner` :param enable_persistence: whether to persist this work chain :type enable_persistence: bool """ if self.__class__ == WorkChain: raise exceptions.InvalidOperation('cannot construct or launch a base `WorkChain` class.') super().__init__(inputs, logger, runner, enable_persistence=enable_persistence) self._stepper = None self._awaitables = [] self._context = AttributeDict()
@property def ctx(self): """Get context. :rtype: :class:`aiida.common.extendeddicts.AttributeDict` """ return self._context
[docs] @override def save_instance_state(self, out_state, save_context): """Save instance stace. :param out_state: state to save in :param save_context: :type save_context: :class:`!plumpy.persistence.LoadSaveContext` """ super().save_instance_state(out_state, save_context) # Save the context out_state[self._CONTEXT] = self.ctx # Ask the stepper to save itself if self._stepper is not None: out_state[self._STEPPER_STATE] = self._stepper.save()
[docs] @override def load_instance_state(self, saved_state, load_context): super().load_instance_state(saved_state, load_context) # Load the context self._context = saved_state[self._CONTEXT] # Recreate the stepper self._stepper = None stepper_state = saved_state.get(self._STEPPER_STATE, None) if stepper_state is not None: self._stepper = self.spec().get_outline().recreate_stepper(stepper_state, self) self.set_logger(self.node.logger) if self._awaitables: self.action_awaitables()
[docs] def on_run(self): super().on_run() self.node.set_stepper_state_info(str(self._stepper))
[docs] def insert_awaitable(self, awaitable): """Insert an awaitable that should be terminated before before continuing to the next step. :param awaitable: the thing to await :type awaitable: :class:`aiida.engine.processes.workchains.awaitable.Awaitable` """ self._awaitables.append(awaitable) self._update_process_status()
[docs] def remove_awaitable(self, awaitable): """Remove an awaitable. Precondition: must be an awaitable that was previously inserted. :param awaitable: the awaitable to remove """ self._awaitables.remove(awaitable) self._update_process_status()
[docs] def to_context(self, **kwargs): """Add a dictionary of awaitables to the context. This is a convenience method that provides syntactic sugar, for a user to add multiple intersteps that will assign a certain value to the corresponding key in the context of the work chain. """ for key, value in kwargs.items(): awaitable = construct_awaitable(value) awaitable.key = key self.insert_awaitable(awaitable)
[docs] def _update_process_status(self): """Set the process status with a message accounting the current sub processes that we are waiting for.""" if self._awaitables: status = 'Waiting for child processes: {}'.format(', '.join([str(_.pk) for _ in self._awaitables])) self.node.set_process_status(status) else: self.node.set_process_status(None)
[docs] @override def run(self): self._stepper = self.spec().get_outline().create_stepper(self) return self._do_step()
[docs] def _do_step(self): """Execute the next step in the outline and return the result. If the stepper returns a non-finished status and the return value is of type ToContext, the contents of the ToContext container will be turned into awaitables if necessary. If any awaitables were created, the process will enter in the Wait state, otherwise it will go to Continue. When the stepper returns that it is done, the stepper result will be converted to None and returned, unless it is an integer or instance of ExitCode. """ from .context import ToContext self._awaitables = [] result = None try: finished, stepper_result = self._stepper.step() except _PropagateReturn as exception: finished, result = True, exception.exit_code else: # Set result to None unless stepper_result was non-zero positive integer or ExitCode with similar status if isinstance(stepper_result, int) and stepper_result > 0: result = ExitCode(stepper_result) elif isinstance(stepper_result, ExitCode) and stepper_result.status > 0: result = stepper_result else: result = None # If the stepper said we are finished or the result is an ExitCode, we exit by returning if finished or isinstance(result, ExitCode): return result if isinstance(stepper_result, ToContext): self.to_context(**stepper_result) if self._awaitables: return Wait(self._do_step, 'Waiting before next step') return Continue(self._do_step)
[docs] def _store_nodes(self, data): """Recurse through a data structure and store any unstored nodes that are found along the way :param data: a data structure potentially containing unstored nodes """ if isinstance(data, Node) and not data.is_stored: data.store() elif isinstance(data, collections.Mapping): for _, value in data.items(): self._store_nodes(value) elif isinstance(data, collections.Sequence) and not isinstance(data, str): for value in data: self._store_nodes(value)
[docs] @override def on_exiting(self): """Ensure that any unstored nodes in the context are stored, before the state is exited After the state is exited the next state will be entered and if persistence is enabled, a checkpoint will be saved. If the context contains unstored nodes, the serialization necessary for checkpointing will fail. """ super().on_exiting() try: self._store_nodes(self.ctx) except Exception: # pylint: disable=broad-except # An uncaught exception here will have bizarre and disastrous consequences self.logger.exception('exception in _store_nodes called in on_exiting')
[docs] def on_wait(self, awaitables): super().on_wait(awaitables) if self._awaitables: self.action_awaitables() else: self.call_soon(self.resume)
[docs] def action_awaitables(self): """Handle the awaitables that are currently registered with the work chain Depending on the class type of the awaitable's target a different callback function will be bound with the awaitable and the runner will be asked to call it when the target is completed """ for awaitable in self._awaitables: if awaitable.target == AwaitableTarget.PROCESS: callback = functools.partial(self._run_task, self.on_process_finished, awaitable) self.runner.call_on_calculation_finish(awaitable.pk, callback) else: assert "invalid awaitable target '{}'".format(awaitable.target)
[docs] def on_process_finished(self, awaitable, pk): """Callback function called by the runner when the process instance identified by pk is completed. The awaitable will be effectuated on the context of the work chain and removed from the internal list. If all awaitables have been dealt with, the work chain process is resumed. :param awaitable: an Awaitable instance :param pk: the pk of the awaitable's target :type pk: int """ try: node = load_node(pk) except (exceptions.MultipleObjectsError, exceptions.NotExistent): raise ValueError('provided pk<{}> could not be resolved to a valid Node instance'.format(pk)) if awaitable.outputs: value = {entry.link_label: entry.node for entry in node.get_outgoing()} else: value = node if awaitable.action == AwaitableAction.ASSIGN: self.ctx[awaitable.key] = value elif awaitable.action == AwaitableAction.APPEND: self.ctx.setdefault(awaitable.key, []).append(value) else: assert "invalid awaitable action '{}'".format(awaitable.action) self.remove_awaitable(awaitable) if self.state == ProcessState.WAITING and not self._awaitables: self.resume()