CustusX  15.8
An IGT application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
cxWorkflowState.cpp
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) 2008-2014, SINTEF Department of Medical Technology
5 All rights reserved.
6 
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9 
10 1. Redistributions of source code must retain the above copyright notice,
11  this list of conditions and the following disclaimer.
12 
13 2. Redistributions in binary form must reproduce the above copyright notice,
14  this list of conditions and the following disclaimer in the documentation
15  and/or other materials provided with the distribution.
16 
17 3. Neither the name of the copyright holder nor the names of its contributors
18  may be used to endorse or promote products derived from this software
19  without specific prior written permission.
20 
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 =========================================================================*/
32 
33 #include "cxWorkflowState.h"
34 #include "cxStateService.h"
35 #include "cxSettings.h"
36 #include "cxTrackingService.h"
37 #include "cxTool.h"
38 #include "cxVideoService.h"
39 #include "cxStateServiceBackend.h"
40 #include "cxPatientModelService.h"
41 #include "cxLogger.h"
42 
43 namespace cx
44 {
45 
46 void WorkflowState::onEntry(QEvent * event)
47 {
48  report("Workflow change to [" + mName + "]");
49  if (mAction)
50  mAction->setChecked(true);
51 }
52 
53 void WorkflowState::onExit(QEvent * event)
54 {
55  emit aboutToExit();
56 }
57 
58 std::vector<WorkflowState*> WorkflowState::getChildStates()
59 {
60  QObjectList childrenList = this->children();
61  std::vector<WorkflowState*> retval;
62  for (int i = 0; i < childrenList.size(); ++i)
63  {
64  WorkflowState* state = dynamic_cast<WorkflowState*>(childrenList[i]);
65  if (state)
66  retval.push_back(state);
67  }
68  return retval;
69 }
70 
71 QAction* WorkflowState::createAction(QActionGroup* group)
72 {
73  if (mAction)
74  return mAction;
75 
76  mAction = new QAction(this->getName(), group);
77  mAction->setIcon(this->getIcon());
78  mAction->setStatusTip(this->getName());
79  mAction->setCheckable(true);
80  mAction->setData(QVariant(this->getUid()));
81  this->canEnterSlot();
82 
83  connect(mAction, SIGNAL(triggered()), this, SLOT(setActionSlot()));
84 
85  return mAction;
86 }
87 
89 {
90  if (mAction)
91  mAction->setEnabled(this->canEnter());
92 }
93 
95 {
96  this->machine()->postEvent(new RequestEnterStateEvent(this->getUid()));
97 }
98 
99 
101 {
102  if (settings()->value("Automation/autoStartTracking").toBool())
103  mBackend->getToolManager()->setState(Tool::tsTRACKING);
104  if (settings()->value("Automation/autoStartStreaming").toBool())
105  mBackend->getVideoService()->openConnection();
106 }
107 
108 // --------------------------------------------------------
109 // --------------------------------------------------------
110 
111 // --------------------------------------------------------
112 // --------------------------------------------------------
113 
115  WorkflowState(parent, "NavigationUid", "Navigation", backend)
116 {
117  connect(mBackend->getPatientService().get(), SIGNAL(patientChanged()), this, SLOT(canEnterSlot()));
118 }
119 
121 {
122  this->autoStartHardware();
123 }
124 
126 {
127  return mBackend->getPatientService()->isPatientValid();
128 }
129 
130 // --------------------------------------------------------
131 // --------------------------------------------------------
132 
133 // --------------------------------------------------------
134 // --------------------------------------------------------
135 
137  WorkflowState(parent, "RegistrationUid", "Registration", backend)
138 {
139  connect(mBackend->getPatientService().get(), SIGNAL(patientChanged()), this, SLOT(canEnterSlot()));
140 }
141 ;
142 
144 {
145 // We need to perform patient orientation prior to
146 // running and us acq. Thus we need access to the reg mode.
147  return mBackend->getPatientService()->isPatientValid();
148 }
149 ;
150 
151 // --------------------------------------------------------
152 // --------------------------------------------------------
153 
154 // --------------------------------------------------------
155 // --------------------------------------------------------
156 
158  WorkflowState(parent, "PreOpPlanningUid", "Preoperative Planning", backend)
159 {
160  connect(mBackend->getPatientService().get(), SIGNAL(dataAddedOrRemoved()), this, SLOT(canEnterSlot()));
161 }
162 
164 {
165  return !mBackend->getPatientService()->getData().empty();
166 }
167 
168 // --------------------------------------------------------
169 // --------------------------------------------------------
170 
171 // --------------------------------------------------------
172 // --------------------------------------------------------
173 
175  WorkflowState(parent, "IntraOpImagingUid", "Intraoperative Imaging", backend)
176 {
177  connect(mBackend->getPatientService().get(), SIGNAL(patientChanged()), this, SLOT(canEnterSlot()));
178 }
179 
181 {
182  this->autoStartHardware();
183 }
184 
186 {
187  return mBackend->getPatientService()->isPatientValid();
188 }
189 
190 // --------------------------------------------------------
191 // --------------------------------------------------------
192 
193 // --------------------------------------------------------
194 // --------------------------------------------------------
195 
197  WorkflowState(parent, "PostOpControllUid", "Postoperative Control", backend)
198 {
199  connect(mBackend->getPatientService().get(), SIGNAL(dataAddedOrRemoved()), this, SLOT(canEnterSlot()));
200 }
201 
203 {
204  return !mBackend->getPatientService()->getData().empty();
205 }
206 
207 }
208 
NavigationWorkflowState(QState *parent, StateServiceBackendPtr backend)
virtual void onEntry(QEvent *event)
RegistrationWorkflowState(QState *parent, StateServiceBackendPtr backend)
virtual QString getName() const
PreOpPlanningWorkflowState(QState *parent, StateServiceBackendPtr backend)
virtual QString getUid() const
virtual bool canEnter() const
virtual void onEntry(QEvent *event)
Utility class for StateService states.
IntraOpImagingWorkflowState(QState *parent, StateServiceBackendPtr backend)
StateServiceBackendPtr mBackend
virtual bool canEnter() const
boost::shared_ptr< class StateServiceBackend > StateServiceBackendPtr
virtual void onEntry(QEvent *event)
std::vector< WorkflowState * > getChildStates()
virtual bool canEnter() const
virtual bool canEnter() const
Settings * settings()
Shortcut for accessing the settings instance.
Definition: cxSettings.cpp:42
QAction * createAction(QActionGroup *group)
void report(QString msg)
Definition: cxLogger.cpp:90
State in a WorkflowStateMachine.
PostOpControllWorkflowState(QState *parent, StateServiceBackendPtr backend)
virtual void onExit(QEvent *event)
emitting tracking data
Definition: cxTool.h:83
virtual bool canEnter() const =0
virtual QIcon getIcon() const =0