Salome HOME
Issue #851 Show only action should not hide sketch entities when the sketch operation...
[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   // is is necessary to deactivate current widgets before the model operation is aborted
197   // because abort removes the feature and activated filters should not check it
198   propertyPanel()->cleanContent();
199
200   aMgr->abortOperation();
201   emit stopped();
202   // the viewer update should be unblocked in order to avoid the features blinking before they are
203   // hidden
204   aMsg = std::shared_ptr<Events_Message>(
205                 new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED)));
206
207   Events_Loop::loop()->send(aMsg);
208
209   emit aborted();
210 }
211
212 bool ModuleBase_OperationFeature::commit()
213 {
214   if (canBeCommitted()) {
215     // the widgets of property panel should not process any events come from data mode
216     // after commit clicked. Some signal such as redisplay/create influence on content
217     // of the object browser and viewer context. Therefore it influence to the current
218     // selection and if the active widget listens it, the attribute value is errnoneous
219     // changed.
220     ModuleBase_IPropertyPanel* aPropertyPanel = propertyPanel();
221     if (aPropertyPanel)
222       aPropertyPanel->cleanContent();
223
224     SessionPtr aMgr = ModelAPI_Session::get();
225     /// Set current feature and remeber old current feature
226     if (myIsEditing) {
227       DocumentPtr aDoc = aMgr->activeDocument();
228       bool aIsOp = aMgr->isOperation();
229       if (!aIsOp)
230         aMgr->startOperation();
231       aDoc->setCurrentFeature(myPreviousCurrentFeature, true);
232       if (!aIsOp)
233         aMgr->finishOperation();
234       myPreviousCurrentFeature = FeaturePtr();
235     }
236     commitOperation();
237     aMgr->finishOperation();
238
239     stopOperation();
240     emit stopped();
241     emit committed();
242
243     afterCommitOperation();
244     return true;
245   }
246   return false;
247 }
248
249 void ModuleBase_OperationFeature::activateByPreselection()
250 {
251   if (myPreSelection.empty())
252     return;
253
254   ModuleBase_ModelWidget* aFilledWgt = 0;
255   ModuleBase_IPropertyPanel* aPropertyPanel = propertyPanel();
256   if (aPropertyPanel) {
257     const QList<ModuleBase_ModelWidget*>& aWidgets = aPropertyPanel->modelWidgets();
258     if (!aWidgets.empty()) {
259       ModuleBase_ModelWidget* aWgt = 0;
260       QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
261       bool isSet = false;
262       // 1. apply the selection to controls
263       for (aWIt = aWidgets.constBegin(); aWIt != aWidgets.constEnd(); ++aWIt) {
264         aWgt = (*aWIt);
265         if (!aWgt->canSetValue())
266           continue;
267         aPropertyPanel->setPreselectionWidget(aWgt);
268         if (!aWgt->setSelection(myPreSelection, true)) {
269           isSet = false;
270           break;
271         } else {
272           isSet = true;
273           aFilledWgt = aWgt;
274         }
275       }
276       aPropertyPanel->setPreselectionWidget(NULL);
277       // in order to redisplay object in the viewer, the update/redisplay signals should be flushed
278       // it is better to perform it not in setSelection of each widget, but do it here,
279       // after the preselection is processed
280       ModuleBase_ModelWidget::updateObject(myFeature);
281
282       // 3. a signal should be emitted before the next widget activation
283       // because, the activation of the next widget will give a focus to the widget. As a result
284       // the value of the widget is initialized. And commit may happens until the value is entered.
285       if (aFilledWgt)
286         emit activatedByPreselection();
287     }
288     // 4. activate the next obligatory widget
289     aPropertyPanel->activateNextWidget(aFilledWgt);
290   }
291
292   clearPreselection();
293 }
294
295 void ModuleBase_OperationFeature::setParentFeature(CompositeFeaturePtr theParent)
296 {
297   myParentFeature = theParent;
298 }
299
300 CompositeFeaturePtr ModuleBase_OperationFeature::parentFeature() const
301 {
302   return myParentFeature;
303 }
304
305 void ModuleBase_OperationFeature::initSelection(ModuleBase_ISelection* theSelection,
306                                          ModuleBase_IViewer* theViewer)
307 {
308   clearPreselection();
309
310   QList<ModuleBase_ViewerPrs> aPreSelected;
311   // Check that the selected result are not results of operation feature
312   FeaturePtr aFeature = feature();
313   if (aFeature) {
314     QList<ModuleBase_ViewerPrs> aSelected = theSelection->getSelected(ModuleBase_ISelection::AllControls);
315
316     std::list<ResultPtr> aResults = aFeature->results();
317     QObjectPtrList aResList;
318     std::list<ResultPtr>::const_iterator aIt;
319     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt)
320       aResList.append(*aIt);
321
322     foreach (ModuleBase_ViewerPrs aPrs, aSelected) {
323       if ((!aResList.contains(aPrs.object())) && (aPrs.object() != aFeature))
324         aPreSelected.append(aPrs);
325     }
326   } else
327     aPreSelected = theSelection->getSelected(ModuleBase_ISelection::AllControls);
328
329   myPreSelection = aPreSelected;
330 }
331
332 void ModuleBase_OperationFeature::clearPreselection()
333 {
334   myPreSelection.clear();
335 }
336
337 void ModuleBase_OperationFeature::setPropertyPanel(ModuleBase_IPropertyPanel* theProp) 
338 {
339   ModuleBase_Operation::setPropertyPanel(theProp);
340
341   theProp->setEditingMode(isEditOperation());
342
343   if (theProp) {
344     const QList<ModuleBase_ModelWidget*>& aWidgets = theProp->modelWidgets();
345     QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
346     for (aWIt = aWidgets.constBegin(); aWIt != aWidgets.constEnd(); ++aWIt) {
347       ModuleBase_ModelWidget* aWgt = (*aWIt);
348       connect(aWgt, SIGNAL(valuesChanged()), this, SLOT(onValuesChanged()));
349     }
350   }
351
352   // Do not activate widgets by default if the current operation is editing operation
353   // Because we don't know which widget is going to be edited. 
354   if (!isEditOperation()) {
355     // 4. activate the first obligatory widget
356     theProp->activateNextWidget(NULL);
357   }
358 }