Salome HOME
Merge branch 'Dev_1.2.0' of newgeom:newgeom into Dev_1.2.0
[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     SessionPtr aMgr = ModelAPI_Session::get();
201     /// Set current feature and remeber old current feature
202     if (myIsEditing) {
203       DocumentPtr aDoc = aMgr->activeDocument();
204       bool aIsOp = aMgr->isOperation();
205       if (!aIsOp)
206         aMgr->startOperation();
207       aDoc->setCurrentFeature(myCurrentFeature, true);
208       if (!aIsOp)
209         aMgr->finishOperation();
210       myCurrentFeature = FeaturePtr();
211     }
212     commitOperation();
213     // check whether there are modifications performed during the current operation
214     // in the model
215     // in case if there are no modifications, do not increase the undo/redo stack
216     if (aMgr->isModified())
217       aMgr->finishOperation();
218     else
219       aMgr->abortOperation();
220
221     stopOperation();
222     emit stopped();
223     emit committed();
224
225     afterCommitOperation();
226     return true;
227   }
228   return false;
229 }
230
231 void ModuleBase_Operation::setRunning(bool theState)
232 {
233   emit triggered(theState);
234 }
235
236 void ModuleBase_Operation::activateByPreselection()
237 {
238   if (!myPropertyPanel || myPreSelection.empty()) {
239     myPropertyPanel->activateNextWidget(NULL);
240     return;
241   }
242   const QList<ModuleBase_ModelWidget*>& aWidgets = myPropertyPanel->modelWidgets();
243   if (aWidgets.empty()) {
244     myPropertyPanel->activateNextWidget(NULL);
245     return;
246   }
247   
248   ModuleBase_ModelWidget* aWgt, *aFilledWgt = 0;
249   QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
250   bool isSet = false;
251   // 1. apply the selection to controls
252   int aCurrentPosition = 0;
253   for (aWIt = aWidgets.constBegin(); aWIt != aWidgets.constEnd(); ++aWIt) {
254     aWgt = (*aWIt);
255     if (!aWgt->canSetValue())
256       continue;
257
258     if (!aWgt->setSelection(myPreSelection, aCurrentPosition/*aValue*/)) {
259       isSet = false;
260       break;
261     } else {
262       isSet = true;
263       aFilledWgt = aWgt;
264     }
265   }
266   // 2. ignore not obligatory widgets
267   /*for (; aWIt != aWidgets.constEnd(); ++aWIt) {
268     aWgt = (*aWIt);
269     if (aWgt && aWgt->isObligatory())
270       continue;
271     aFilledWgt = aWgt;
272   }*/
273
274   // 3. activate the next obligatory widget
275   myPropertyPanel->activateNextWidget(aFilledWgt);
276   if (aFilledWgt)
277     emit activatedByPreselection();
278
279 }
280
281 void ModuleBase_Operation::setParentFeature(CompositeFeaturePtr theParent)
282 {
283   myParentFeature = theParent;
284 }
285
286 CompositeFeaturePtr ModuleBase_Operation::parentFeature() const
287 {
288   return myParentFeature;
289 }
290
291 void ModuleBase_Operation::initSelection(ModuleBase_ISelection* theSelection,
292                                          ModuleBase_IViewer* theViewer)
293 {
294   clearPreselection();
295
296   QList<ModuleBase_ViewerPrs> aPreSelected;
297   // Check that the selected result are not results of operation feature
298   FeaturePtr aFeature = feature();
299   if (aFeature) {
300     QList<ModuleBase_ViewerPrs> aSelected = theSelection->getSelected();
301
302     std::list<ResultPtr> aResults = aFeature->results();
303     QObjectPtrList aResList;
304     std::list<ResultPtr>::const_iterator aIt;
305     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
306       aResList.append(*aIt);
307
308     foreach (ModuleBase_ViewerPrs aPrs, aSelected) {
309       if ((!aResList.contains(aPrs.object())) && (aPrs.object() != aFeature))
310         aPreSelected.append(aPrs);
311     }
312   } else
313     aPreSelected = theSelection->getSelected();
314
315   // convert the selection values to the values, which are set to the operation widgets
316
317   //Handle(V3d_View) aView = theViewer->activeView();
318   //foreach (ModuleBase_ViewerPrs aPrs, aPreSelected) {
319   //  ModuleBase_WidgetValueFeature* aValue = new ModuleBase_WidgetValueFeature();
320   //  aValue->setObject(aPrs.object());
321
322   //  double aX, anY;
323   //  if (getViewerPoint(aPrs, theViewer, aX, anY))
324   //    aValue->setPoint(std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(aX, anY)));
325   //  myPreSelection.append(aValue);
326   //}
327   myPreSelection = aPreSelected;
328 }
329
330 //void ModuleBase_Operation::onWidgetActivated(ModuleBase_ModelWidget* theWidget)
331 //{
332 //  //activateByPreselection();
333 //  //if (theWidget && myPropertyPanel) {
334 //  //  myPropertyPanel->activateNextWidget();
335 //  ////  //emit activateNextWidget(myActiveWidget);
336 //  //}
337 //}
338
339 //bool ModuleBase_Operation::setWidgetValue(ObjectPtr theFeature, double theX, double theY)
340 //{
341 //  ModuleBase_ModelWidget* aActiveWgt = myPropertyPanel->activeWidget();
342 //  if (!aActiveWgt)
343 //    return false;
344 //  ModuleBase_WidgetValueFeature* aValue = new ModuleBase_WidgetValueFeature();
345 //  aValue->setObject(theFeature);
346 //  aValue->setPoint(std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(theX, theY)));
347 //  bool isApplyed = aActiveWgt->setValue(aValue);
348 //
349 //  delete aValue;
350 //  myIsModified = (myIsModified || isApplyed);
351 //  return isApplyed;
352 //}
353
354 bool ModuleBase_Operation::getViewerPoint(ModuleBase_ViewerPrs thePrs,
355                                                ModuleBase_IViewer* theViewer,
356                                                double& theX, double& theY)
357 {
358   return false;
359 }
360
361 void ModuleBase_Operation::clearPreselection()
362 {
363   myPreSelection.clear();
364 }
365
366 void ModuleBase_Operation::setPropertyPanel(ModuleBase_IPropertyPanel* theProp) 
367
368   myPropertyPanel = theProp; 
369   myPropertyPanel->setEditingMode(isEditOperation());
370
371   // Do not activate widgets by default if the current operation is editing operation
372   // Because we don't know which widget is going to be edited. 
373   if (!isEditOperation())
374     activateByPreselection();
375 }
376
377 bool ModuleBase_Operation::isGranted(QString theId) const
378 {
379   return myNestedFeatures.contains(theId);
380 }