Salome HOME
A fix for the bug: it is possible to apply extrusion even if the algorithm is failed...
[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 || !myFeature->data().get())
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   bool aValid = aFactory->validate(myFeature);
75
76   // the feature exec state should be checked in order to do not apply features, which result can not
77   // be built. E.g. extrusion on sketch, where the "to" is a perpendicular plane to the sketch
78   bool isDone = myFeature->data()->execState() == ModelAPI_StateDone;
79
80   return aValid && isDone;
81 }
82
83
84 bool ModuleBase_Operation::canBeCommitted() const
85 {
86   return isValid();
87 }
88
89 FeaturePtr ModuleBase_Operation::createFeature(const bool theFlushMessage)
90 {
91   if (myParentFeature.get()) {
92     myFeature = myParentFeature->addFeature(getDescription()->operationId().toStdString());
93   } else {
94     std::shared_ptr<ModelAPI_Document> aDoc = ModelAPI_Session::get()->activeDocument();
95     myFeature = aDoc->addFeature(getDescription()->operationId().toStdString());
96   }
97   if (myFeature) {  // TODO: generate an error if feature was not created
98     myIsModified = true;
99     // Model update should call "execute" of a feature.
100     //myFeature->execute();
101     // Init default values
102     /*QList<ModuleBase_ModelWidget*> aWidgets = getDescription()->modelWidgets();
103      QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end();
104      for (; anIt != aLast; anIt++) {
105      (*anIt)->storeValue(aFeature);
106      }*/
107   }
108
109   if (theFlushMessage)
110     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_CREATED));
111   return myFeature;
112 }
113
114 void ModuleBase_Operation::setFeature(FeaturePtr theFeature)
115 {
116   myFeature = theFeature;
117   myIsEditing = true;
118 }
119
120 bool ModuleBase_Operation::hasObject(ObjectPtr theObj) const
121 {
122   FeaturePtr aFeature = feature();
123   if (aFeature) {
124     if (aFeature == theObj)
125       return true;
126     std::list<ResultPtr> aResults = aFeature->results();
127     std::list<ResultPtr>::const_iterator aIt;
128     for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
129       if (theObj == (*aIt))
130         return true;
131     }
132   }
133   return false;
134 }
135
136 void ModuleBase_Operation::start()
137 {
138   QString anId = getDescription()->operationId();
139   if (myIsEditing) {
140     anId = anId.append(EditSuffix());
141   }
142   ModelAPI_Session::get()->startOperation(anId.toStdString());
143
144   if (!myIsEditing) {
145     FeaturePtr aFeature = createFeature();
146     // if the feature is not created, there is no sense to start the operation
147     if (aFeature.get() == NULL) {
148       // it is necessary to abor the operation in the session and emit the aborted signal
149       // in order to update commands status in the workshop, to be exact the feature action
150       // to be unchecked
151       abort();
152       return;
153     }
154   }
155   /// Set current feature and remeber old current feature
156   if (myIsEditing) {
157     SessionPtr aMgr = ModelAPI_Session::get();
158     DocumentPtr aDoc = aMgr->activeDocument();
159     myCurrentFeature = aDoc->currentFeature(true);
160     aDoc->setCurrentFeature(feature(), false);
161   }
162
163   startOperation();
164   emit started();
165
166 }
167
168 void ModuleBase_Operation::postpone()
169 {
170   postponeOperation();
171   emit postponed();
172 }
173
174 void ModuleBase_Operation::resume()
175 {
176   resumeOperation();
177   emit resumed();
178 }
179
180 void ModuleBase_Operation::abort()
181 {
182   if (myIsEditing) {
183     SessionPtr aMgr = ModelAPI_Session::get();
184     DocumentPtr aDoc = aMgr->activeDocument();
185     aDoc->setCurrentFeature(myCurrentFeature, true);
186     myCurrentFeature = FeaturePtr();
187   }
188   abortOperation();
189   emit aborted();
190
191   stopOperation();
192
193   ModelAPI_Session::get()->abortOperation();
194   emit stopped();
195 }
196
197 bool ModuleBase_Operation::commit()
198 {
199   if (canBeCommitted()) {
200     /// Set current feature and remeber old current feature
201     if (myIsEditing) {
202       SessionPtr aMgr = ModelAPI_Session::get();
203       DocumentPtr aDoc = aMgr->activeDocument();
204       aDoc->setCurrentFeature(myCurrentFeature, true);
205       myCurrentFeature = FeaturePtr();
206     }
207     commitOperation();
208     // check whether there are modifications performed during the current operation
209     // in the model
210     // in case if there are no modifications, do not increase the undo/redo stack
211     if (ModelAPI_Session::get()->isModified())
212       ModelAPI_Session::get()->finishOperation();
213     else
214       ModelAPI_Session::get()->abortOperation();
215
216     stopOperation();
217     emit stopped();
218     emit committed();
219
220     afterCommitOperation();
221     return true;
222   }
223   return false;
224 }
225
226 void ModuleBase_Operation::setRunning(bool theState)
227 {
228   emit triggered(theState);
229 }
230
231 void ModuleBase_Operation::activateByPreselection()
232 {
233   if (!myPropertyPanel || myPreSelection.empty()) {
234     myPropertyPanel->activateNextWidget(NULL);
235     return;
236   }
237   const QList<ModuleBase_ModelWidget*>& aWidgets = myPropertyPanel->modelWidgets();
238   if (aWidgets.empty()) {
239     myPropertyPanel->activateNextWidget(NULL);
240     return;
241   }
242   
243   ModuleBase_ModelWidget* aWgt, *aFilledWgt = 0;
244   QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
245   bool isSet = false;
246   // 1. apply the selection to controls
247   int aCurrentPosition = 0;
248   for (aWIt = aWidgets.constBegin(); aWIt != aWidgets.constEnd(); ++aWIt) {
249     aWgt = (*aWIt);
250     if (!aWgt->canSetValue())
251       continue;
252
253     if (!aWgt->setSelection(myPreSelection, aCurrentPosition/*aValue*/)) {
254       isSet = false;
255       break;
256     } else {
257       isSet = true;
258       aFilledWgt = aWgt;
259     }
260   }
261   // 2. ignore not obligatory widgets
262   /*for (; aWIt != aWidgets.constEnd(); ++aWIt) {
263     aWgt = (*aWIt);
264     if (aWgt && aWgt->isObligatory())
265       continue;
266     aFilledWgt = aWgt;
267   }*/
268
269   // 3. activate the next obligatory widget
270   myPropertyPanel->activateNextWidget(aFilledWgt);
271   if (aFilledWgt)
272     emit activatedByPreselection();
273
274 }
275
276 void ModuleBase_Operation::setParentFeature(CompositeFeaturePtr theParent)
277 {
278   myParentFeature = theParent;
279 }
280
281 CompositeFeaturePtr ModuleBase_Operation::parentFeature() const
282 {
283   return myParentFeature;
284 }
285
286 void ModuleBase_Operation::initSelection(ModuleBase_ISelection* theSelection,
287                                          ModuleBase_IViewer* theViewer)
288 {
289   clearPreselection();
290
291   QList<ModuleBase_ViewerPrs> aPreSelected;
292   // Check that the selected result are not results of operation feature
293   FeaturePtr aFeature = feature();
294   if (aFeature) {
295     QList<ModuleBase_ViewerPrs> aSelected = theSelection->getSelected();
296
297     std::list<ResultPtr> aResults = aFeature->results();
298     QObjectPtrList aResList;
299     std::list<ResultPtr>::const_iterator aIt;
300     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
301       aResList.append(*aIt);
302
303     foreach (ModuleBase_ViewerPrs aPrs, aSelected) {
304       if ((!aResList.contains(aPrs.object())) && (aPrs.object() != aFeature))
305         aPreSelected.append(aPrs);
306     }
307   } else
308     aPreSelected = theSelection->getSelected();
309
310   // convert the selection values to the values, which are set to the operation widgets
311
312   //Handle(V3d_View) aView = theViewer->activeView();
313   //foreach (ModuleBase_ViewerPrs aPrs, aPreSelected) {
314   //  ModuleBase_WidgetValueFeature* aValue = new ModuleBase_WidgetValueFeature();
315   //  aValue->setObject(aPrs.object());
316
317   //  double aX, anY;
318   //  if (getViewerPoint(aPrs, theViewer, aX, anY))
319   //    aValue->setPoint(std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(aX, anY)));
320   //  myPreSelection.append(aValue);
321   //}
322   myPreSelection = aPreSelected;
323 }
324
325 //void ModuleBase_Operation::onWidgetActivated(ModuleBase_ModelWidget* theWidget)
326 //{
327 //  //activateByPreselection();
328 //  //if (theWidget && myPropertyPanel) {
329 //  //  myPropertyPanel->activateNextWidget();
330 //  ////  //emit activateNextWidget(myActiveWidget);
331 //  //}
332 //}
333
334 //bool ModuleBase_Operation::setWidgetValue(ObjectPtr theFeature, double theX, double theY)
335 //{
336 //  ModuleBase_ModelWidget* aActiveWgt = myPropertyPanel->activeWidget();
337 //  if (!aActiveWgt)
338 //    return false;
339 //  ModuleBase_WidgetValueFeature* aValue = new ModuleBase_WidgetValueFeature();
340 //  aValue->setObject(theFeature);
341 //  aValue->setPoint(std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(theX, theY)));
342 //  bool isApplyed = aActiveWgt->setValue(aValue);
343 //
344 //  delete aValue;
345 //  myIsModified = (myIsModified || isApplyed);
346 //  return isApplyed;
347 //}
348
349 bool ModuleBase_Operation::getViewerPoint(ModuleBase_ViewerPrs thePrs,
350                                                ModuleBase_IViewer* theViewer,
351                                                double& theX, double& theY)
352 {
353   return false;
354 }
355
356 void ModuleBase_Operation::clearPreselection()
357 {
358   myPreSelection.clear();
359 }
360
361 void ModuleBase_Operation::setPropertyPanel(ModuleBase_IPropertyPanel* theProp) 
362
363   myPropertyPanel = theProp; 
364   myPropertyPanel->setEditingMode(isEditOperation());
365
366   // Do not activate widgets by default if the current operation is editing operation
367   // Because we don't know which widget is going to be edited. 
368   if (!isEditOperation())
369     activateByPreselection();
370 }
371
372 bool ModuleBase_Operation::isGranted(QString theId) const
373 {
374   return myNestedFeatures.contains(theId);
375 }