Skip to content
Snippets Groups Projects
Commit 8f4ad6b9 authored by Stefano Borini's avatar Stefano Borini
Browse files

Make workflow accessible via application

parent 29c66451
No related branches found
No related tags found
1 merge request!167Make workflow accessible via application
This commit is part of merge request !167. Comments created here will be created in the context of that merge request.
...@@ -6,8 +6,9 @@ from stevedore.exception import NoMatches ...@@ -6,8 +6,9 @@ from stevedore.exception import NoMatches
from envisage.api import Application from envisage.api import Application
from envisage.core_plugin import CorePlugin from envisage.core_plugin import CorePlugin
from traits.api import Unicode, Bool from traits.api import Unicode, Bool, Property
from force_bdss.ids import InternalPluginID
from .factory_registry_plugin import FactoryRegistryPlugin from .factory_registry_plugin import FactoryRegistryPlugin
from .core_evaluation_driver import CoreEvaluationDriver from .core_evaluation_driver import CoreEvaluationDriver
from .core_mco_driver import CoreMCODriver from .core_mco_driver import CoreMCODriver
...@@ -28,6 +29,9 @@ class BDSSApplication(Application): ...@@ -28,6 +29,9 @@ class BDSSApplication(Application):
#: coordination of the MCO itself. See design notes for more details. #: coordination of the MCO itself. See design notes for more details.
evaluate = Bool() evaluate = Bool()
#: Gives the currently opened workflow
workflow = Property()
def __init__(self, evaluate, workflow_filepath): def __init__(self, evaluate, workflow_filepath):
self.evaluate = evaluate self.evaluate = evaluate
self.workflow_filepath = workflow_filepath self.workflow_filepath = workflow_filepath
...@@ -53,6 +57,15 @@ class BDSSApplication(Application): ...@@ -53,6 +57,15 @@ class BDSSApplication(Application):
super(BDSSApplication, self).__init__(plugins=plugins) super(BDSSApplication, self).__init__(plugins=plugins)
def _get_workflow(self):
if self.evaluate:
plugin = self.get_plugin(
InternalPluginID.CORE_EVALUATION_DRIVER_ID)
else:
plugin = self.get_plugin(InternalPluginID.CORE_MCO_DRIVER_ID)
return plugin.workflow
def _import_extensions(plugins, ext): def _import_extensions(plugins, ext):
"""Service routine extracted for testing. """Service routine extracted for testing.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment