Salome HOME
Providing Action class to have a common approach to start/finish/abort model transact...
[modules/shaper.git] / src / ModuleBase / ModuleBase_Operation.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * ModuleBase_Operation.cpp
5  *
6  *  Created on: Apr 2, 2014
7  *      Author: sbh
8  */
9
10 #include "ModuleBase_Operation.h"
11
12 #include "ModuleBase_OperationDescription.h"
13 #include "ModuleBase_ModelWidget.h"
14 #include "ModuleBase_ViewerPrs.h"
15 #include "ModuleBase_IPropertyPanel.h"
16 #include "ModuleBase_ISelection.h"
17 #include "ModuleBase_IViewer.h"
18
19 #include <ModelAPI_AttributeDouble.h>
20 #include <ModelAPI_Document.h>
21 #include <ModelAPI_Feature.h>
22 #include <ModelAPI_Data.h>
23 #include <ModelAPI_Document.h>
24 #include <ModelAPI_Events.h>
25 #include <ModelAPI_Result.h>
26 #include <ModelAPI_Object.h>
27 #include <ModelAPI_Validator.h>
28 #include <ModelAPI_Session.h>
29
30 #include <GeomAPI_Pnt2d.h>
31
32 #include <Events_Loop.h>
33
34 #include <QTimer>
35
36 #ifdef _DEBUG
37 #include <QDebug>
38 #endif
39
40 ModuleBase_Operation::ModuleBase_Operation(const QString& theId, QObject* theParent)
41     : QObject(theParent),
42       myIsModified(false),
43       myPropertyPanel(NULL)
44 {
45   myDescription = new ModuleBase_OperationDescription(theId);
46 }
47
48 ModuleBase_Operation::~ModuleBase_Operation()
49 {
50   delete myDescription;
51 }
52
53 const QStringList& ModuleBase_Operation::grantedOperationIds() const
54 {
55   return myGrantedIds;
56 }
57
58 void ModuleBase_Operation::setGrantedOperationIds(const QStringList& theList)
59 {
60   myGrantedIds = theList;
61 }
62
63 void ModuleBase_Operation::addGrantedOperationId(const QString& theId)
64 {
65   myGrantedIds.append(theId);
66 }
67
68 void ModuleBase_Operation::removeGrantedOperationId(const QString& theId)
69 {
70   myGrantedIds.removeAll(theId);
71 }
72
73 QString ModuleBase_Operation::id() const
74 {
75   return getDescription()->operationId();
76 }
77
78 bool ModuleBase_Operation::isValid() const
79 {
80   return true;
81 }
82
83 bool ModuleBase_Operation::canBeCommitted() const
84 {
85   return isValid();
86 }
87
88 void ModuleBase_Operation::start()
89 {
90   myIsModified = false;
91
92   ModelAPI_Session::get()->startOperation(id().toStdString());
93
94   startOperation();
95   emit started();
96 }
97
98 void ModuleBase_Operation::postpone()
99 {
100   postponeOperation();
101   emit postponed();
102 }
103
104 void ModuleBase_Operation::resume()
105 {
106   resumeOperation();
107   emit resumed();
108 }
109
110 void ModuleBase_Operation::abort()
111 {
112   // the viewer update should be blocked in order to avoid the features blinking before they are
113   // hidden
114   //std::shared_ptr<Events_Message> aMsg = std::shared_ptr<Events_Message>(
115   //    new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED)));
116   //Events_Loop::loop()->send(aMsg);
117
118   ModelAPI_Session::get()->abortOperation();
119
120   emit stopped();
121   // the viewer update should be unblocked in order to avoid the features blinking before they are
122   // hidden
123   //aMsg = std::shared_ptr<Events_Message>(
124   //              new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED)));
125   //Events_Loop::loop()->send(aMsg);
126
127   emit aborted();
128 }
129
130 bool ModuleBase_Operation::commit()
131 {
132   if (canBeCommitted()) {
133     SessionPtr aMgr = ModelAPI_Session::get();
134
135     commitOperation();
136     aMgr->finishOperation();
137
138     stopOperation();
139     emit stopped();
140     emit committed();
141
142     afterCommitOperation();
143     return true;
144   }
145   return false;
146 }
147
148 void ModuleBase_Operation::onValuesChanged()
149 {
150   myIsModified = true;
151 }
152
153 void ModuleBase_Operation::setPropertyPanel(ModuleBase_IPropertyPanel* theProp) 
154
155   myPropertyPanel = theProp; 
156 }
157
158 bool ModuleBase_Operation::isGranted(QString theId) const
159 {
160   return myGrantedIds.contains(theId);
161 }