]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_OperationMgr.cpp
Salome HOME
a643ef5a898c71f8b2190d9ffc4e45938aacbe52
[modules/shaper.git] / src / XGUI / XGUI_OperationMgr.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        XGUI_OperationMgr.cpp
4 // Created:     20 Apr 2014
5 // Author:      Natalia ERMOLAEVA
6
7 #include "XGUI_OperationMgr.h"
8 #include "XGUI_ModuleConnector.h"
9 #include "XGUI_Workshop.h"
10 #include "XGUI_ErrorMgr.h"
11
12 #include "ModuleBase_Operation.h"
13 #include "ModuleBase_IWorkshop.h"
14 #include "ModuleBase_IModule.h"
15 #include <ModuleBase_IViewer.h>
16 #include "ModuleBase_OperationDescription.h"
17 #include "ModuleBase_OperationFeature.h"
18
19 #include "ModelAPI_CompositeFeature.h"
20 #include "ModelAPI_Session.h"
21
22 #include <QMessageBox>
23 #include <QApplication>
24 #include <QKeyEvent>
25
26 XGUI_OperationMgr::XGUI_OperationMgr(QObject* theParent,
27                                      ModuleBase_IWorkshop* theWorkshop)
28 : QObject(theParent), myIsValidationLock(false), myIsApplyEnabled(false),
29   myWorkshop(theWorkshop)
30 {
31 }
32
33 XGUI_OperationMgr::~XGUI_OperationMgr()
34 {
35 }
36
37 ModuleBase_Operation* XGUI_OperationMgr::currentOperation() const
38 {
39   return myOperations.count() > 0 ? myOperations.last() : 0;
40 }
41
42 bool XGUI_OperationMgr::isCurrentOperation(ModuleBase_Operation* theOperation)
43 {
44   if(!hasOperation())
45     return false;
46   return currentOperation() == theOperation;
47 }
48
49 bool XGUI_OperationMgr::hasOperation() const
50 {
51   return !myOperations.isEmpty() && (myOperations.last() != NULL);
52 }
53
54 bool XGUI_OperationMgr::hasOperation(const QString& theId) const
55 {
56   foreach(ModuleBase_Operation* aOp, myOperations) {
57     if (aOp->id() == theId)
58       return true;
59   }
60   return false;
61 }
62
63 ModuleBase_Operation* XGUI_OperationMgr::findOperation(const QString& theId) const
64 {
65   foreach(ModuleBase_Operation* aOp, myOperations) {
66     if (aOp->id() == theId)
67       return aOp;
68   }
69   return 0;
70 }
71
72
73 int XGUI_OperationMgr::operationsCount() const
74 {
75   return myOperations.count();
76 }
77
78 QStringList XGUI_OperationMgr::operationList() const
79 {
80   QStringList result;
81   foreach(ModuleBase_Operation* eachOperation, myOperations) {
82     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>(eachOperation);
83     if (aFOperation) {
84       FeaturePtr aFeature = aFOperation->feature();
85       if(aFeature) {
86         result << QString::fromStdString(aFeature->getKind());
87       }
88     }
89   }
90   return result;
91 }
92
93 ModuleBase_Operation* XGUI_OperationMgr::previousOperation(ModuleBase_Operation* theOperation) const
94 {
95   int idx = myOperations.lastIndexOf(theOperation);
96   if(idx == -1 || idx == 0) {
97     return NULL;
98   }
99   return myOperations.at(idx - 1);
100 }
101
102 bool XGUI_OperationMgr::eventFilter(QObject *theObject, QEvent *theEvent)
103 {
104   if (theEvent->type() == QEvent::KeyRelease) {
105     QKeyEvent* aKeyEvent = dynamic_cast<QKeyEvent*>(theEvent);
106     if(aKeyEvent) {
107       return onKeyReleased(aKeyEvent);
108     }
109   }
110   return QObject::eventFilter(theObject, theEvent);
111 }
112
113 bool XGUI_OperationMgr::startOperation(ModuleBase_Operation* theOperation)
114 {
115   if (hasOperation())
116     currentOperation()->postpone();
117   myOperations.append(theOperation);
118
119   connect(theOperation, SIGNAL(beforeStarted()), SLOT(onBeforeOperationStarted()));
120   connect(theOperation, SIGNAL(beforeAborted()), SLOT(onBeforeOperationAborted()));
121   connect(theOperation, SIGNAL(beforeCommitted()), SLOT(onBeforeOperationCommitted()));
122
123   connect(theOperation, SIGNAL(started()), SLOT(onOperationStarted()));
124   connect(theOperation, SIGNAL(aborted()), SLOT(onOperationAborted()));
125   connect(theOperation, SIGNAL(committed()), SLOT(onOperationCommitted()));
126
127   connect(theOperation, SIGNAL(stopped()), SLOT(onOperationStopped()));
128   connect(theOperation, SIGNAL(resumed()), SLOT(onOperationResumed()));
129   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
130                                                                         (theOperation);
131   if (aFOperation)
132     connect(aFOperation, SIGNAL(activatedByPreselection()),
133             SIGNAL(operationActivatedByPreselection()));
134
135   theOperation->start();
136   onValidateOperation();
137   return true;
138 }
139
140 bool XGUI_OperationMgr::abortAllOperations()
141 {
142   bool aResult = true;
143   if(!hasOperation())
144     return aResult;
145
146   if (operationsCount() == 1) {
147     ModuleBase_Operation* aCurrentOperation = currentOperation();
148     if (canStopOperation(aCurrentOperation)) {
149       abortOperation(aCurrentOperation);
150     }
151     else
152       aResult = false;
153   }
154   else {
155     aResult = QMessageBox::question(qApp->activeWindow(),
156                                     tr("Abort operation"),
157                                     tr("All active operations will be aborted."),
158                                     QMessageBox::Ok | QMessageBox::Cancel,
159                                     QMessageBox::Cancel) == QMessageBox::Ok;
160     while(aResult && hasOperation()) {
161       abortOperation(currentOperation());
162     }
163   }
164   return aResult;
165 }
166
167 bool XGUI_OperationMgr::commitAllOperations()
168 {
169   bool isCompositeCommitted = false;
170   while (hasOperation()) {
171     ModuleBase_Operation* anOperation = currentOperation();
172     if (isApplyEnabled()) {
173       onCommitOperation();
174     } else {
175       abortOperation(anOperation);
176     }
177     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
178                                                                             (anOperation);
179     if (aFOperation) {
180       FeaturePtr aFeature = aFOperation->feature();
181       CompositeFeaturePtr aComposite = 
182           std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
183       isCompositeCommitted = aComposite.get();
184       if (isCompositeCommitted)
185         break;
186     }
187   }
188   return true;
189 }
190
191 void XGUI_OperationMgr::onValidateOperation()
192 {
193   if (!hasOperation())
194     return;
195   //ModuleBase_Operation* anOperation = currentOperation();
196   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
197                                                                           (currentOperation());
198   if(aFOperation && aFOperation->feature().get()) {
199     //bool aCanCommit = myWorkshop->module()->canCommitOperation();
200     //setApplyEnabled(!myIsValidationLock && aCanCommit && anOperation->isValid());
201     setApplyEnabled(myWorkshop->module()->getFeatureError(aFOperation->feature()).isEmpty());
202   }
203 }
204
205 void XGUI_OperationMgr::setLockValidating(bool toLock)
206 {
207   myIsValidationLock = toLock;
208   onValidateOperation();
209 }
210
211 void XGUI_OperationMgr::setApplyEnabled(const bool theEnabled)
212 {
213   myIsApplyEnabled = theEnabled;
214   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
215                                                                           (currentOperation());
216   if (aFOperation) {
217     workshop()->errorMgr()->updateActions(aFOperation->feature());
218   }
219   //emit validationStateChanged(theEnabled);
220 }
221
222 void XGUI_OperationMgr::updateApplyOfOperations(ModuleBase_Operation* theOperation)
223 {
224   XGUI_ErrorMgr* anErrorMgr = workshop()->errorMgr();
225   if (theOperation) {
226     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
227     if (aFOperation)
228       anErrorMgr->updateAcceptAllAction(aFOperation->feature());
229     //emit nestedStateChanged(theOperation->getDescription()->operationId().toStdString(),
230     //                        theOperation->isValid());
231   }
232   else {
233     foreach(ModuleBase_Operation* anOperation, myOperations) {
234       if (anOperation)
235         updateApplyOfOperations(anOperation);
236       //emit nestedStateChanged(anOperation->getDescription()->operationId().toStdString(),
237       //                        anOperation->isValid());
238     }
239   }
240 }
241
242 bool XGUI_OperationMgr::isApplyEnabled() const
243 {
244   return myIsApplyEnabled;
245 }
246
247 bool XGUI_OperationMgr::isParentOperationValid() const
248 {
249   bool isValid = false;
250   // the enable state of the parent operation of the nested one is defined by the rules that
251   // firstly there are nested operations and secondly the parent operation is valid
252   ModuleBase_Operation* aPrevOp = 0;
253   Operations::const_iterator anIt = myOperations.end();
254   if (anIt != myOperations.begin()) { // there are items in the operations list
255     --anIt;
256     aPrevOp = *anIt; // the last top operation, the operation which is started
257     if (anIt != myOperations.begin()) { // find the operation where the started operation is nested
258       --anIt;
259       aPrevOp = *anIt;
260     }
261   }
262   return aPrevOp && aPrevOp->isValid();
263 }
264
265 bool XGUI_OperationMgr::canStopOperation(ModuleBase_Operation* theOperation)
266 {
267   //in case of nested (sketch) operation no confirmation needed
268   if (isGrantedOperation(theOperation))
269     return true;
270   if (theOperation && theOperation->isModified()) {
271     QString aMessage = tr("%1 operation will be aborted.").arg(theOperation->id());
272     int anAnswer = QMessageBox::question(qApp->activeWindow(),
273                                          tr("Abort operation"),
274                                          aMessage,
275                                          QMessageBox::Ok | QMessageBox::Cancel,
276                                          QMessageBox::Cancel);
277     return anAnswer == QMessageBox::Ok;
278   }
279   return true;
280 }
281
282 bool XGUI_OperationMgr::commitOperation()
283 {
284   if (hasOperation() && currentOperation()->isValid()) {
285     onCommitOperation();
286     return true;
287   }
288   return false;
289 }
290
291 void XGUI_OperationMgr::resumeOperation(ModuleBase_Operation* theOperation)
292 {
293   theOperation->resume();
294 }
295
296 bool XGUI_OperationMgr::isGrantedOperation(ModuleBase_Operation* theOperation)
297 {
298   bool isGranted = false;
299
300   QListIterator<ModuleBase_Operation*> anIt(myOperations);
301   anIt.toBack();
302   ModuleBase_Operation* aPreviousOperation = 0;
303   while (anIt.hasPrevious()) {
304     ModuleBase_Operation* anOp = anIt.previous();
305     if (anOp == theOperation) {
306       if (anIt.hasPrevious())
307         aPreviousOperation = anIt.previous();
308       break;
309     }
310   }
311   if (aPreviousOperation)
312     isGranted = aPreviousOperation->isGranted(theOperation->id());
313
314   return isGranted;
315 }
316
317 void XGUI_OperationMgr::setCurrentFeature(const FeaturePtr& theFeature)
318 {
319   SessionPtr aMgr = ModelAPI_Session::get();
320   DocumentPtr aDoc = aMgr->activeDocument();
321   bool aIsOp = aMgr->isOperation();
322   if (!aIsOp)
323     aMgr->startOperation();
324   aDoc->setCurrentFeature(theFeature, false);
325   if (!aIsOp)
326     aMgr->finishOperation();
327 }
328
329 bool XGUI_OperationMgr::canStartOperation(const QString& theId, const bool isAdditionallyGranted)
330 {
331   bool aCanStart = true;
332   ModuleBase_Operation* aCurrentOp = currentOperation();
333   if (aCurrentOp) {
334     bool aGranted = aCurrentOp->isGranted(theId) || isAdditionallyGranted;
335     if (!aGranted) {
336       if (canStopOperation(aCurrentOp)) {
337         if (myIsApplyEnabled && aCurrentOp->isModified())
338           aCurrentOp->commit();
339         else
340           abortOperation(aCurrentOp);
341       } else {
342         aCanStart = false;
343       }
344     }
345   }
346   return aCanStart;
347 }
348
349 void XGUI_OperationMgr::abortOperation(ModuleBase_Operation* theOperation)
350 {
351   ModuleBase_Operation* aCurrentOperation = currentOperation();
352   if (theOperation == aCurrentOperation)
353     theOperation->abort();
354   else {
355     // it is possible to trigger upper operation(e.g. sketch, current is sketch line)
356     // all operation from the current to triggered should also be aborted
357     // operations over the parameter one are not aborted(e.g. extrusion cut, sketch abort)
358     while(hasOperation()) {
359       ModuleBase_Operation* aCurrentOperation = currentOperation();
360       aCurrentOperation->abort();
361       if(theOperation == aCurrentOperation)
362         break;
363     }
364   }
365 }
366
367 void XGUI_OperationMgr::onCommitOperation()
368 {
369   ModuleBase_Operation* anOperation = currentOperation();
370   if (anOperation)
371     anOperation->commit();
372 }
373
374 void XGUI_OperationMgr::onAbortOperation()
375 {
376   ModuleBase_Operation* aCurrentOperation = currentOperation();
377   if (aCurrentOperation && canStopOperation(aCurrentOperation)) {
378     abortOperation(aCurrentOperation);
379   }
380 }
381
382 void XGUI_OperationMgr::onBeforeOperationStarted()
383 {
384   ModuleBase_Operation* aCurrentOperation = dynamic_cast<ModuleBase_Operation*>(sender());
385   if (!aCurrentOperation)
386     return;
387
388   /// Set current feature and remeber old current feature
389   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>(aCurrentOperation);
390   if (aFOperation) {
391     SessionPtr aMgr = ModelAPI_Session::get();
392     DocumentPtr aDoc = aMgr->activeDocument();
393     // the parameter of current feature should be false, we should use all feature, not only visible
394     // in order to correctly save the previous feature of the nested operation, where the
395     // features can be not visible in the tree. The problem case is Edit sketch entitity(line)
396     // in the Sketch, created in ExtrusionCut operation. The entity disappears by commit.
397     // When sketch entity operation started, the sketch should be cashed here as the current.
398     // Otherwise(the flag is true), the ExtrusionCut is cashed, when commit happens, the sketch
399     // is disabled, sketch entity is disabled as extrusion cut is created earliest then sketch.
400     // As a result the sketch disappears from the viewer. However after commit it is displayed back.
401     aFOperation->setPreviousCurrentFeature(aDoc->currentFeature(false));
402     if (aFOperation->isEditOperation()) // it should be performed by the feature edit only
403       // in create operation, the current feature is changed by addFeature()
404       aDoc->setCurrentFeature(aFOperation->feature(), false);
405   }
406 }
407
408 void XGUI_OperationMgr::onOperationStarted()
409 {
410   ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
411   updateApplyOfOperations(aSenderOperation);
412   emit operationStarted(aSenderOperation);
413 }
414
415 void XGUI_OperationMgr::onBeforeOperationAborted()
416 {
417   onBeforeOperationCommitted();
418 }
419
420 void XGUI_OperationMgr::onOperationAborted()
421 {
422   ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
423   emit operationAborted(aSenderOperation);
424 }
425
426 void XGUI_OperationMgr::onBeforeOperationCommitted()
427 {
428   ModuleBase_Operation* aCurrentOperation = dynamic_cast<ModuleBase_Operation*>(sender());
429   if (!aCurrentOperation)
430     return;
431
432   /// Restore the previous current feature
433   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>(aCurrentOperation);
434   if (aFOperation) {
435     if (aFOperation->isEditOperation()) {
436       /// Restore the previous current feature
437       setCurrentFeature(aFOperation->previousCurrentFeature());
438     }
439     else { // create operation
440       // the Top created feature should stays the current. In nested operations, like Line in the Sketch or
441       // Sketch in ExtrusionCut, a previous feature should be restored on commit. It is performed here
442       // in order to perform it in the current transaction without opening a new one.
443       if (myOperations.front() != aFOperation)
444         setCurrentFeature(aFOperation->previousCurrentFeature());
445     }
446   }
447 }
448
449 void XGUI_OperationMgr::onOperationCommitted()
450 {
451   // apply state for all features from the stack of operations should be updated
452   updateApplyOfOperations();
453
454   ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
455   emit operationCommitted(aSenderOperation);
456 }
457
458 void XGUI_OperationMgr::onOperationResumed()
459 {
460   ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
461   emit operationResumed(aSenderOperation);
462 }
463
464 void XGUI_OperationMgr::onOperationStopped()
465 {
466   ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
467   ModuleBase_Operation* aCurrentOperation = currentOperation();
468   if (!aSenderOperation || !aCurrentOperation || aSenderOperation != aCurrentOperation)
469     return;
470
471   myOperations.removeAll(aCurrentOperation);
472   aCurrentOperation->deleteLater();
473
474   emit operationStopped(aCurrentOperation);
475
476   // get last operation which can be resumed
477   ModuleBase_Operation* aResultOp = 0;
478   QListIterator<ModuleBase_Operation*> anIt(myOperations);
479   anIt.toBack();
480   while (anIt.hasPrevious()) {
481     ModuleBase_Operation* anOp = anIt.previous();
482     if (anOp) {
483       aResultOp = anOp;
484       break;
485     }
486   }
487   if (aResultOp) {
488     bool isModified = aCurrentOperation->isModified();
489     aResultOp->setIsModified(aResultOp->isModified() || isModified);
490     resumeOperation(aResultOp);
491     onValidateOperation();
492   }
493 }
494
495 bool XGUI_OperationMgr::onKeyReleased(QKeyEvent* theEvent)
496 {
497   // Let the manager decide what to do with the given key combination.
498   ModuleBase_Operation* anOperation = currentOperation();
499   bool isAccepted = true;
500   switch (theEvent->key()) {
501     case Qt::Key_Return:
502     case Qt::Key_Enter: {
503       emit keyEnterReleased();
504       commitOperation();
505     }
506     case Qt::Key_N:
507     case Qt::Key_P: {
508       bool noModifiers = (theEvent->modifiers() == Qt::NoModifier);
509       if (noModifiers) {
510         ModuleBase_IViewer* aViewer = myWorkshop->viewer();
511         Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
512         if (!aContext.IsNull()) {
513           Handle(V3d_View) aView = aViewer->activeView();
514           if ((theEvent->key() == Qt::Key_N))
515             aContext->HilightNextDetected(aView);
516           else if ((theEvent->key() == Qt::Key_P))
517             aContext->HilightPreviousDetected(aView);
518         }
519       }
520     }
521
522     break;
523     default:
524       isAccepted = false;
525       break;
526   }
527   //if(anOperation) {
528   //  anOperation->keyReleased(theEvent->key());
529   //}
530   return isAccepted;
531 }
532
533 XGUI_Workshop* XGUI_OperationMgr::workshop() const
534 {
535   XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(myWorkshop);
536   return aConnector->workshop();
537 }
538