Difference between revisions of "Projects:ARRA:SlicerEM:Developer:WorkflowManager"

From NAMIC Wiki
Jump to: navigation, search
Line 4: Line 4:
 
* Need a mechanism to validate user input and transition appropriately between steps of the workflow
 
* Need a mechanism to validate user input and transition appropriately between steps of the workflow
 
* Should be dependent on Qt only (and not VTK)
 
* Should be dependent on Qt only (and not VTK)
* Current plan (subject to change) = use Qt's state machine implementation, with our own workflow manager on top
+
* Current plan (subject to change) = use Qt's state machine implementation, with our own workflow manager on top (Qt Wizard doesn't quite work in harmony with the Qt state machine framework, and the UI itself can't be embedded in a pre-existing top-level)
  
 
== Previous workflow manager implementation in KWWidgets ==
 
== Previous workflow manager implementation in KWWidgets ==
Line 15: Line 15:
 
== Transition from KWWidgets state machines to Qt state machines ==
 
== Transition from KWWidgets state machines to Qt state machines ==
  
* Core functionality in KWWidgets state machines that would be replicated for a "straight-forward" conversion:
+
* Core functionality in KWWidgets state machines that would be replicated for a "straight-forward" conversion (In Progress):
 
{| border="1"
 
{| border="1"
 
|- bgcolor="#abcdef"
 
|- bgcolor="#abcdef"
Line 28: Line 28:
 
| Clusters of states || ???
 
| Clusters of states || ???
 
|-
 
|-
| Can save transition history || ???
+
| Can save history of encountered steps and/or transitions || ???
 
|-
 
|-
 
| Can define custom inputs || ???
 
| Can define custom inputs || ???
|-
 
|  || ???
 
 
|}
 
|}
 +
 +
* If some of these components are not available in Qt's state machine framework, it means some more refactoring/restructuring work
  
 
== Transition from KWWidgets workflow manager to a workflow manager using Qt's state machines ==
 
== Transition from KWWidgets workflow manager to a workflow manager using Qt's state machines ==
Line 51: Line 51:
 
== Concepts to keep in mind ==
 
== Concepts to keep in mind ==
 
* Undo / redo and forward/back transitions
 
* Undo / redo and forward/back transitions
* Branching workflows / skipped states
+
* Branching workflows / skipped states ("GoToSelf" in KWWidgets)
 
* Design / output of state machines in a graphical format
 
* Design / output of state machines in a graphical format
* Logging state transitions, user actions, inputs and results thoughout
+
* Logging state transitions, user actions, inputs and results thoughout (logging states?)
  
 
== Additional ideas and questions ==
 
== Additional ideas and questions ==
 
* Image processing throughout - need to deal with failures in image processing that are unrelated to the GUI
 
* Image processing throughout - need to deal with failures in image processing that are unrelated to the GUI
 
* Would be a good idea to make the workflow manager as general as possible for CTK - ex. use for management of IGT workflows in Slicer, where you may be coordinating several modules (ex. calibration module -> registration module -> tracking module), and may need to notify other components of current state (ex. over OpenIGTLink) (ex see [http://hdl.handle.net/10380/3075 this IJ paper])
 
* Would be a good idea to make the workflow manager as general as possible for CTK - ex. use for management of IGT workflows in Slicer, where you may be coordinating several modules (ex. calibration module -> registration module -> tracking module), and may need to notify other components of current state (ex. over OpenIGTLink) (ex see [http://hdl.handle.net/10380/3075 this IJ paper])
 +
** Ex. make a workflow step more generic: instead of an "interaction" state and a "validation" state, could think about a "do stuff" state and a "validation" state, where "do stuff" can be user interaction, image processing, etc.
 +
** In validation states, could also have "borderline" success, where you may want to warn the user and allow them to choose whether to go ahead to the next step or to redo the current step with different inputs
 
* May even like to provide the option to save the MRML tree at the end of each step (to restore state if there is a crash, for example
 
* May even like to provide the option to save the MRML tree at the end of each step (to restore state if there is a crash, for example

Revision as of 18:47, 14 July 2010

Home < Projects:ARRA:SlicerEM:Developer:WorkflowManager

Summary

  • EMSegmenter has a fairly complicated workflow
  • Need a mechanism to validate user input and transition appropriately between steps of the workflow
  • Should be dependent on Qt only (and not VTK)
  • Current plan (subject to change) = use Qt's state machine implementation, with our own workflow manager on top (Qt Wizard doesn't quite work in harmony with the Qt state machine framework, and the UI itself can't be embedded in a pre-existing top-level)

Previous workflow manager implementation in KWWidgets

Uses:

  • KWWidgets state machines - incorporates states (ex. user interaction within a workflow step, validation of the user input within a workflow step), transitions (between states), and inputs (pushed onto a queue to trigger transitions)
  • KWWidgets wizard workflow - provides additional functionality to manage workflow using a state machine (ex. bundles pairs of user interaction and validation states into a workflow "step", handles a navigation stack of steps encountered along the way that triggers updates of widgets and/or dialogs)

Transition from KWWidgets state machines to Qt state machines

  • Core functionality in KWWidgets state machines that would be replicated for a "straight-forward" conversion (In Progress):
KWWidgets functionality Present in Qt?
States have enter/leave events ???
Transitions have start/stop events ???
State events are processed before transition events ???
Clusters of states ???
Can save history of encountered steps and/or transitions ???
Can define custom inputs ???
  • If some of these components are not available in Qt's state machine framework, it means some more refactoring/restructuring work

Transition from KWWidgets workflow manager to a workflow manager using Qt's state machines

GUI implementation in Qt

  • qStackedWidget (and/or qTabWidget)
  • simply connect signal to the stacked widget's setCurrentIndex(int) slot to change the displayed widget
  • plus qDialog as well
  • in Qt Designer - could have one .ui file for the entire stacked widget, or, for widgets representing complicated steps, could have a separate .ui

Concepts to keep in mind

  • Undo / redo and forward/back transitions
  • Branching workflows / skipped states ("GoToSelf" in KWWidgets)
  • Design / output of state machines in a graphical format
  • Logging state transitions, user actions, inputs and results thoughout (logging states?)

Additional ideas and questions

  • Image processing throughout - need to deal with failures in image processing that are unrelated to the GUI
  • Would be a good idea to make the workflow manager as general as possible for CTK - ex. use for management of IGT workflows in Slicer, where you may be coordinating several modules (ex. calibration module -> registration module -> tracking module), and may need to notify other components of current state (ex. over OpenIGTLink) (ex see this IJ paper)
    • Ex. make a workflow step more generic: instead of an "interaction" state and a "validation" state, could think about a "do stuff" state and a "validation" state, where "do stuff" can be user interaction, image processing, etc.
    • In validation states, could also have "borderline" success, where you may want to warn the user and allow them to choose whether to go ahead to the next step or to redo the current step with different inputs
  • May even like to provide the option to save the MRML tree at the end of each step (to restore state if there is a crash, for example