]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModuleBase/ModuleBase_Operation.cpp
Salome HOME
History menu: improvments and bugfixes
[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       myIsEditing(false),
43       myIsModified(false),
44       myPropertyPanel(NULL)
45 {
46   myDescription = new ModuleBase_OperationDescription(theId);
47 }
48
49 ModuleBase_Operation::~ModuleBase_Operation()
50 {
51   delete myDescription;
52   clearPreselection();
53 }
54
55 QString ModuleBase_Operation::id() const
56 {
57   return getDescription()->operationId();
58 }
59
60 FeaturePtr ModuleBase_Operation::feature() const
61 {
62   return myFeature;
63 }
64
65 bool ModuleBase_Operation::isValid() const
66 {
67   if (!myFeature)
68     return true; // rename operation
69   if (myFeature->isAction())
70     return true;
71   //Get validators for the Id
72   SessionPtr aMgr = ModelAPI_Session::get();
73   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
74   return aFactory->validate(myFeature);
75 }
76
77
78 bool ModuleBase_Operation::canBeCommitted() const
79 {
80   return isValid();
81 }
82
83 void ModuleBase_Operation::flushUpdated()
84 {
85   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
86 }
87
88 void ModuleBase_Operation::flushCreated()
89 {
90   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_CREATED));
91 }
92
93 FeaturePtr ModuleBase_Operation::createFeature(const bool theFlushMessage)
94 {
95   if (myParentFeature.get()) {
96     myFeature = myParentFeature->addFeature(getDescription()->operationId().toStdString());
97   } else {
98     std::shared_ptr<ModelAPI_Document> aDoc = document();
99     myFeature = aDoc->addFeature(getDescription()->operationId().toStdString());
100   }
101   if (myFeature) {  // TODO: generate an error if feature was not created
102     myIsModified = true;
103     // Model update should call "execute" of a feature.
104     //myFeature->execute();
105     // Init default values
106     /*QList<ModuleBase_ModelWidget*> aWidgets = getDescription()->modelWidgets();
107      QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end();
108      for (; anIt != aLast; anIt++) {
109      (*anIt)->storeValue(aFeature);
110      }*/
111   }
112
113   if (theFlushMessage)
114     flushCreated();
115   return myFeature;
116 }
117
118 void ModuleBase_Operation::setFeature(FeaturePtr theFeature)
119 {
120   myFeature = theFeature;
121   myIsEditing = true;
122 }
123
124 bool ModuleBase_Operation::hasObject(ObjectPtr theObj) const
125 {
126   FeaturePtr aFeature = feature();
127   if (aFeature) {
128     if (aFeature == theObj)
129       return true;
130     std::list<ResultPtr> aResults = aFeature->results();
131     std::list<ResultPtr>::const_iterator aIt;
132     for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
133       if (theObj == (*aIt))
134         return true;
135     }
136   }
137   return false;
138 }
139
140
141 std::shared_ptr<ModelAPI_Document> ModuleBase_Operation::document() const
142 {
143   return ModelAPI_Session::get()->moduleDocument();
144 }
145
146
147 void ModuleBase_Operation::start()
148 {
149   QString anId = getDescription()->operationId();
150   if (myIsEditing) {
151       anId = anId.append(EditSuffix());
152   }
153   ModelAPI_Session::get()->startOperation(anId.toStdString());
154
155   if (!myIsEditing)
156     createFeature();
157
158   startOperation();
159   emit started();
160
161 }
162
163 void ModuleBase_Operation::postpone()
164 {
165   postponeOperation();
166   emit postponed();
167 }
168
169 void ModuleBase_Operation::resume()
170 {
171   resumeOperation();
172   emit resumed();
173 }
174
175 void ModuleBase_Operation::abort()
176 {
177   abortOperation();
178   emit aborted();
179
180   stopOperation();
181
182   ModelAPI_Session::get()->abortOperation();
183   emit stopped();
184 }
185
186 bool ModuleBase_Operation::commit()
187 {
188   if (canBeCommitted()) {
189     commitOperation();
190     // check whether there are modifications performed during the current operation
191     // in the model
192     // in case if there are no modifications, do not increase the undo/redo stack
193     if (ModelAPI_Session::get()->isModified())
194       ModelAPI_Session::get()->finishOperation();
195     else
196       ModelAPI_Session::get()->abortOperation();
197
198     stopOperation();
199     emit stopped();
200     emit committed();
201
202     afterCommitOperation();
203     return true;
204   }
205   return false;
206 }
207
208 void ModuleBase_Operation::setRunning(bool theState)
209 {
210   if (!theState) {
211     abort();
212   }
213 }
214
215 void ModuleBase_Operation::activateByPreselection()
216 {
217   if (!myPropertyPanel || myPreSelection.empty()) {
218     myPropertyPanel->activateNextWidget(NULL);
219     return;
220   }
221   const QList<ModuleBase_ModelWidget*>& aWidgets = myPropertyPanel->modelWidgets();
222   if (aWidgets.empty()) {
223     myPropertyPanel->activateNextWidget(NULL);
224     return;
225   }
226   
227   ModuleBase_ModelWidget* aWgt, *aFilledWgt = 0;
228   QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
229   QList<ModuleBase_ViewerPrs>::const_iterator aPIt;
230   bool isSet = false;
231   for (aWIt = aWidgets.constBegin(), aPIt = myPreSelection.constBegin();
232        (aWIt != aWidgets.constEnd()) && (aPIt != myPreSelection.constEnd());
233        ++aWIt) {
234     aWgt = (*aWIt);
235     ModuleBase_ViewerPrs aValue = (*aPIt);
236     if (!aWgt->canSetValue())
237       continue;
238
239     ++aPIt;
240     if (!aWgt->setSelection(aValue)) {
241       isSet = false;
242       break;
243     } else {
244       isSet = true;
245       aFilledWgt = aWgt;
246     }
247   }
248
249   myPropertyPanel->activateNextWidget(aFilledWgt);
250   if (aFilledWgt)
251     emit activatedByPreselection();
252
253 }
254
255 void ModuleBase_Operation::setParentFeature(CompositeFeaturePtr theParent)
256 {
257   myParentFeature = theParent;
258 }
259
260 CompositeFeaturePtr ModuleBase_Operation::parentFeature() const
261 {
262   return myParentFeature;
263 }
264
265 void ModuleBase_Operation::initSelection(ModuleBase_ISelection* theSelection,
266                                          ModuleBase_IViewer* theViewer)
267 {
268   clearPreselection();
269
270   QList<ModuleBase_ViewerPrs> aPreSelected;
271   // Check that the selected result are not results of operation feature
272   FeaturePtr aFeature = feature();
273   if (aFeature) {
274     QList<ModuleBase_ViewerPrs> aSelected = theSelection->getSelected();
275
276     std::list<ResultPtr> aResults = aFeature->results();
277     QObjectPtrList aResList;
278     std::list<ResultPtr>::const_iterator aIt;
279     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
280       aResList.append(*aIt);
281
282     foreach (ModuleBase_ViewerPrs aPrs, aSelected) {
283       if ((!aResList.contains(aPrs.object())) && (aPrs.object() != aFeature))
284         aPreSelected.append(aPrs);
285     }
286   } else
287     aPreSelected = theSelection->getSelected();
288
289   // convert the selection values to the values, which are set to the operation widgets
290
291   //Handle(V3d_View) aView = theViewer->activeView();
292   //foreach (ModuleBase_ViewerPrs aPrs, aPreSelected) {
293   //  ModuleBase_WidgetValueFeature* aValue = new ModuleBase_WidgetValueFeature();
294   //  aValue->setObject(aPrs.object());
295
296   //  double aX, anY;
297   //  if (getViewerPoint(aPrs, theViewer, aX, anY))
298   //    aValue->setPoint(std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(aX, anY)));
299   //  myPreSelection.append(aValue);
300   //}
301   myPreSelection = aPreSelected;
302 }
303
304 //void ModuleBase_Operation::onWidgetActivated(ModuleBase_ModelWidget* theWidget)
305 //{
306 //  //activateByPreselection();
307 //  //if (theWidget && myPropertyPanel) {
308 //  //  myPropertyPanel->activateNextWidget();
309 //  ////  //emit activateNextWidget(myActiveWidget);
310 //  //}
311 //}
312
313 //bool ModuleBase_Operation::setWidgetValue(ObjectPtr theFeature, double theX, double theY)
314 //{
315 //  ModuleBase_ModelWidget* aActiveWgt = myPropertyPanel->activeWidget();
316 //  if (!aActiveWgt)
317 //    return false;
318 //  ModuleBase_WidgetValueFeature* aValue = new ModuleBase_WidgetValueFeature();
319 //  aValue->setObject(theFeature);
320 //  aValue->setPoint(std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(theX, theY)));
321 //  bool isApplyed = aActiveWgt->setValue(aValue);
322 //
323 //  delete aValue;
324 //  myIsModified = (myIsModified || isApplyed);
325 //  return isApplyed;
326 //}
327
328 bool ModuleBase_Operation::getViewerPoint(ModuleBase_ViewerPrs thePrs,
329                                                ModuleBase_IViewer* theViewer,
330                                                double& theX, double& theY)
331 {
332   return false;
333 }
334
335 void ModuleBase_Operation::clearPreselection()
336 {
337   myPreSelection.clear();
338 }
339
340 void ModuleBase_Operation::setPropertyPanel(ModuleBase_IPropertyPanel* theProp) 
341
342   myPropertyPanel = theProp; 
343   myPropertyPanel->setEditingMode(isEditOperation());
344
345   // Do not activate widgets by default if the current operation is editing operation
346   // Because we don't know which widget is going to be edited. 
347   if (!isEditOperation())
348     activateByPreselection();
349 }
350
351 bool ModuleBase_Operation::isGranted(QString theId) const
352 {
353   return myNestedFeatures.contains(theId);
354 }