Salome HOME
This is a code correction: this code is obsolete after the cleanContent() is called...
[modules/shaper.git] / src / ModuleBase / ModuleBase_OperationFeature.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * ModuleBase_OperationFeature.cpp
5  *
6  *  Created on: Apr 2, 2014
7  *      Author: sbh
8  */
9
10 #include "ModuleBase_OperationFeature.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_OperationFeature::ModuleBase_OperationFeature(const QString& theId, QObject* theParent)
41 : ModuleBase_Operation(theId, theParent),
42   myIsEditing(false)
43 {
44 }
45
46 ModuleBase_OperationFeature::~ModuleBase_OperationFeature()
47 {
48   clearPreselection();
49 }
50
51 FeaturePtr ModuleBase_OperationFeature::feature() const
52 {
53   return myFeature;
54 }
55
56 bool ModuleBase_OperationFeature::isValid() const
57 {
58   if (!myFeature || !myFeature->data()->isValid())
59     return true; // rename operation
60   if (myFeature->isAction())
61     return true;
62   //Get validators for the Id
63   SessionPtr aMgr = ModelAPI_Session::get();
64   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
65   bool aValid = aFactory->validate(myFeature);
66
67   // the feature exec state should be checked in order to do not apply features, which result can not
68   // be built. E.g. extrusion on sketch, where the "to" is a perpendicular plane to the sketch
69   bool isDone = ( myFeature->data()->execState() == ModelAPI_StateDone
70                || myFeature->data()->execState() == ModelAPI_StateMustBeUpdated );
71
72   return aValid && isDone;
73 }
74
75 FeaturePtr ModuleBase_OperationFeature::createFeature(const bool theFlushMessage)
76 {
77   if (myParentFeature.get()) {
78     myFeature = myParentFeature->addFeature(getDescription()->operationId().toStdString());
79   } else {
80     std::shared_ptr<ModelAPI_Document> aDoc = ModelAPI_Session::get()->activeDocument();
81     myFeature = aDoc->addFeature(getDescription()->operationId().toStdString());
82   }
83   if (myFeature) {  // TODO: generate an error if feature was not created
84     setIsModified(true);
85     // Model update should call "execute" of a feature.
86     //myFeature->execute();
87     // Init default values
88     /*QList<ModuleBase_ModelWidget*> aWidgets = getDescription()->modelWidgets();
89      QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end();
90      for (; anIt != aLast; anIt++) {
91      (*anIt)->storeValue(aFeature);
92      }*/
93   }
94
95   if (theFlushMessage)
96     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_CREATED));
97   return myFeature;
98 }
99
100 void ModuleBase_OperationFeature::setFeature(FeaturePtr theFeature)
101 {
102   myFeature = theFeature;
103   myIsEditing = true;
104 }
105
106 bool ModuleBase_OperationFeature::hasObject(ObjectPtr theObj) const
107 {
108   FeaturePtr aFeature = feature();
109   if (aFeature) {
110     if (aFeature == theObj)
111       return true;
112     std::list<ResultPtr> aResults = aFeature->results();
113     std::list<ResultPtr>::const_iterator aIt;
114     for (aIt = aResults.cbegin(); aIt != aResults.cend(); ++aIt) {
115       if (theObj == (*aIt))
116         return true;
117     }
118   }
119   return false;
120 }
121
122 void ModuleBase_OperationFeature::start()
123 {
124   setIsModified(false);
125   QString anId = getDescription()->operationId();
126   if (myIsEditing) {
127     anId = anId.append(EditSuffix());
128   }
129   ModelAPI_Session::get()->startOperation(anId.toStdString());
130
131   startOperation();
132
133   if (!myIsEditing) {
134     FeaturePtr aFeature = createFeature();
135     // if the feature is not created, there is no sense to start the operation
136     if (aFeature.get() == NULL) {
137       // it is necessary to abor the operation in the session and emit the aborted signal
138       // in order to update commands status in the workshop, to be exact the feature action
139       // to be unchecked
140       abort();
141       return;
142     }
143   }
144   /// Set current feature and remeber old current feature
145   if (myIsEditing) {
146     SessionPtr aMgr = ModelAPI_Session::get();
147     DocumentPtr aDoc = aMgr->activeDocument();
148     // the parameter of current feature should be false, we should use all feature, not only visible
149     // in order to correctly save the previous feature of the nested operation, where the
150     // features can be not visible in the tree. The problem case is Edit sketch entitity(line)
151     // in the Sketch, created in ExtrusionCut operation. The entity disappears by commit.
152     // When sketch entity operation started, the sketch should be cashed here as the current.
153     // Otherwise(the flag is true), the ExtrusionCut is cashed, when commit happens, the sketch
154     // is disabled, sketch entity is disabled as extrusion cut is created earliest then sketch.
155     // As a result the sketch disappears from the viewer. However after commit it is displayed back.
156     myPreviousCurrentFeature = aDoc->currentFeature(false);
157     aDoc->setCurrentFeature(feature(), false);
158   }
159
160   startOperation();
161   emit started();
162
163 }
164
165 void ModuleBase_OperationFeature::abort()
166 {
167   // the viewer update should be blocked in order to avoid the features blinking before they are
168   // hidden
169   std::shared_ptr<Events_Message> aMsg = std::shared_ptr<Events_Message>(
170       new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED)));
171   Events_Loop::loop()->send(aMsg);
172
173   // the widgets of property panel should not process any events come from data mode
174   // after abort clicked. Some signal such as redisplay/create influence on content
175   // of the object browser and viewer context. Therefore it influence to the current
176   // selection and if the active widget listens it, the attribute value is errnoneous
177   // changed.
178   ModuleBase_IPropertyPanel* aPropertyPanel = propertyPanel();
179   if (aPropertyPanel)
180     aPropertyPanel->cleanContent();
181
182   SessionPtr aMgr = ModelAPI_Session::get();
183   if (myIsEditing) {
184     DocumentPtr aDoc = aMgr->activeDocument();
185     bool aIsOp = aMgr->isOperation();
186     if (!aIsOp)
187       aMgr->startOperation();
188     aDoc->setCurrentFeature(myPreviousCurrentFeature, true);
189     if (!aIsOp)
190       aMgr->finishOperation();
191     myPreviousCurrentFeature = FeaturePtr();
192   }
193   abortOperation();
194
195   stopOperation();
196
197   aMgr->abortOperation();
198   emit stopped();
199   // the viewer update should be unblocked in order to avoid the features blinking before they are
200   // hidden
201   aMsg = std::shared_ptr<Events_Message>(
202                 new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED)));
203
204   Events_Loop::loop()->send(aMsg);
205
206   emit aborted();
207 }
208
209 bool ModuleBase_OperationFeature::commit()
210 {
211   if (canBeCommitted()) {
212     // the widgets of property panel should not process any events come from data mode
213     // after commit clicked. Some signal such as redisplay/create influence on content
214     // of the object browser and viewer context. Therefore it influence to the current
215     // selection and if the active widget listens it, the attribute value is errnoneous
216     // changed.
217     ModuleBase_IPropertyPanel* aPropertyPanel = propertyPanel();
218     if (aPropertyPanel)
219       aPropertyPanel->cleanContent();
220
221     SessionPtr aMgr = ModelAPI_Session::get();
222     /// Set current feature and remeber old current feature
223     if (myIsEditing) {
224       DocumentPtr aDoc = aMgr->activeDocument();
225       bool aIsOp = aMgr->isOperation();
226       if (!aIsOp)
227         aMgr->startOperation();
228       aDoc->setCurrentFeature(myPreviousCurrentFeature, true);
229       if (!aIsOp)
230         aMgr->finishOperation();
231       myPreviousCurrentFeature = FeaturePtr();
232     }
233     commitOperation();
234     aMgr->finishOperation();
235
236     stopOperation();
237     emit stopped();
238     emit committed();
239
240     afterCommitOperation();
241     return true;
242   }
243   return false;
244 }
245
246 void ModuleBase_OperationFeature::activateByPreselection()
247 {
248   if (myPreSelection.empty())
249     return;
250
251   ModuleBase_ModelWidget* aFilledWgt = 0;
252   ModuleBase_IPropertyPanel* aPropertyPanel = propertyPanel();
253   if (aPropertyPanel) {
254     const QList<ModuleBase_ModelWidget*>& aWidgets = aPropertyPanel->modelWidgets();
255     if (!aWidgets.empty()) {
256       ModuleBase_ModelWidget* aWgt = 0;
257       QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
258       bool isSet = false;
259       // 1. apply the selection to controls
260       for (aWIt = aWidgets.constBegin(); aWIt != aWidgets.constEnd(); ++aWIt) {
261         aWgt = (*aWIt);
262         if (!aWgt->canSetValue())
263           continue;
264         aPropertyPanel->setPreselectionWidget(aWgt);
265         if (!aWgt->setSelection(myPreSelection, true)) {
266           isSet = false;
267           break;
268         } else {
269           isSet = true;
270           aFilledWgt = aWgt;
271         }
272       }
273       aPropertyPanel->setPreselectionWidget(NULL);
274       // in order to redisplay object in the viewer, the update/redisplay signals should be flushed
275       // it is better to perform it not in setSelection of each widget, but do it here,
276       // after the preselection is processed
277       ModuleBase_ModelWidget::updateObject(myFeature);
278
279       // 3. a signal should be emitted before the next widget activation
280       // because, the activation of the next widget will give a focus to the widget. As a result
281       // the value of the widget is initialized. And commit may happens until the value is entered.
282       if (aFilledWgt)
283         emit activatedByPreselection();
284     }
285     // 4. activate the next obligatory widget
286     aPropertyPanel->activateNextWidget(aFilledWgt);
287   }
288
289   clearPreselection();
290 }
291
292 void ModuleBase_OperationFeature::setParentFeature(CompositeFeaturePtr theParent)
293 {
294   myParentFeature = theParent;
295 }
296
297 CompositeFeaturePtr ModuleBase_OperationFeature::parentFeature() const
298 {
299   return myParentFeature;
300 }
301
302 void ModuleBase_OperationFeature::initSelection(ModuleBase_ISelection* theSelection,
303                                          ModuleBase_IViewer* theViewer)
304 {
305   clearPreselection();
306
307   QList<ModuleBase_ViewerPrs> aPreSelected;
308   // Check that the selected result are not results of operation feature
309   FeaturePtr aFeature = feature();
310   if (aFeature) {
311     QList<ModuleBase_ViewerPrs> aSelected = theSelection->getSelected(ModuleBase_ISelection::AllControls);
312
313     std::list<ResultPtr> aResults = aFeature->results();
314     QObjectPtrList aResList;
315     std::list<ResultPtr>::const_iterator aIt;
316     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
317       aResList.append(*aIt);
318
319     foreach (ModuleBase_ViewerPrs aPrs, aSelected) {
320       if ((!aResList.contains(aPrs.object())) && (aPrs.object() != aFeature))
321         aPreSelected.append(aPrs);
322     }
323   } else
324     aPreSelected = theSelection->getSelected(ModuleBase_ISelection::AllControls);
325
326   myPreSelection = aPreSelected;
327 }
328
329 void ModuleBase_OperationFeature::clearPreselection()
330 {
331   myPreSelection.clear();
332 }
333
334 void ModuleBase_OperationFeature::setPropertyPanel(ModuleBase_IPropertyPanel* theProp) 
335 {
336   ModuleBase_Operation::setPropertyPanel(theProp);
337
338   theProp->setEditingMode(isEditOperation());
339
340   if (theProp) {
341     const QList<ModuleBase_ModelWidget*>& aWidgets = theProp->modelWidgets();
342     QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
343     for (aWIt = aWidgets.constBegin(); aWIt != aWidgets.constEnd(); ++aWIt) {
344       ModuleBase_ModelWidget* aWgt = (*aWIt);
345       connect(aWgt, SIGNAL(valuesChanged()), this, SLOT(onValuesChanged()));
346     }
347   }
348
349   // Do not activate widgets by default if the current operation is editing operation
350   // Because we don't know which widget is going to be edited. 
351   if (!isEditOperation()) {
352     // 4. activate the first obligatory widget
353     theProp->activateNextWidget(NULL);
354   }
355 }