Salome HOME
#1083 errors in parameter
[modules/shaper.git] / src / ModuleBase / ModuleBase_Operation.cpp
index c1ed4b0d0b2648f55ac2922302a3f79c296bbd78..66b0a51aaea3e7bba7235649affbb0df5912f54d 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 /*
  * ModuleBase_Operation.cpp
  *
 
 #include "ModuleBase_OperationDescription.h"
 #include "ModuleBase_ModelWidget.h"
+#include "ModuleBase_ViewerPrs.h"
+#include "ModuleBase_IPropertyPanel.h"
+#include "ModuleBase_ISelection.h"
+#include "ModuleBase_IViewer.h"
 
 #include <ModelAPI_AttributeDouble.h>
 #include <ModelAPI_Document.h>
 #include <ModelAPI_Feature.h>
 #include <ModelAPI_Data.h>
 #include <ModelAPI_Document.h>
-#include <Model_Events.h>
+#include <ModelAPI_Events.h>
+#include <ModelAPI_Result.h>
+#include <ModelAPI_Object.h>
+#include <ModelAPI_Validator.h>
+#include <ModelAPI_Session.h>
+
+#include <GeomAPI_Pnt2d.h>
 
 #include <Events_Loop.h>
 
+#include <QTimer>
+
 #ifdef _DEBUG
 #include <QDebug>
 #endif
 
 ModuleBase_Operation::ModuleBase_Operation(const QString& theId, QObject* theParent)
-: ModuleBase_IOperation(theId, theParent)
+    : QObject(theParent),
+      myIsModified(false),
+      myPropertyPanel(NULL)
 {
+  myDescription = new ModuleBase_OperationDescription(theId);
 }
 
 ModuleBase_Operation::~ModuleBase_Operation()
 {
+  delete myDescription;
 }
 
-QString ModuleBase_Operation::id() const
+const QStringList& ModuleBase_Operation::grantedOperationIds() const
 {
-  return getDescription()->operationId();
+  return myGrantedIds;
 }
 
-FeaturePtr ModuleBase_Operation::feature() const
+void ModuleBase_Operation::setGrantedOperationIds(const QStringList& theList)
 {
-  return myFeature;
+  myGrantedIds = theList;
 }
 
-bool ModuleBase_Operation::isNestedOperationsEnabled() const
+QString ModuleBase_Operation::id() const
 {
-  return true;
+  return getDescription()->operationId();
 }
 
-void ModuleBase_Operation::storeCustomValue()
+bool ModuleBase_Operation::isValid() const
 {
-  if(!myFeature){
-    #ifdef _DEBUG
-    qDebug() << "ModuleBase_Operation::storeCustom: " <<
-        "trying to store value without opening a transaction.";
-    #endif
-    return;
-  }
-
-  ModuleBase_ModelWidget* aCustom = dynamic_cast<ModuleBase_ModelWidget*>(sender());
-  if (aCustom)
-    aCustom->storeValue(myFeature);
+  return true;
 }
 
-void ModuleBase_Operation::onWidgetActivated(ModuleBase_ModelWidget* theWidget)
+bool ModuleBase_Operation::canBeCommitted() const
 {
+  return isValid();
 }
 
-void ModuleBase_Operation::startOperation()
+void ModuleBase_Operation::start()
 {
-  if (!myIsEditing)
-    setFeature(createFeature());
-  //emit callSlot();
-  //commit();
-}
+  myIsModified = false;
 
-void ModuleBase_Operation::stopOperation()
-{
-}
+  ModelAPI_Session::get()->startOperation(id().toStdString());
 
-void ModuleBase_Operation::abortOperation()
-{
+  startOperation();
+  emit started();
 }
 
-void ModuleBase_Operation::commitOperation()
+void ModuleBase_Operation::postpone()
 {
-  if (myFeature) myFeature->execute();
+  postponeOperation();
+  emit postponed();
 }
 
-void ModuleBase_Operation::afterCommitOperation()
+void ModuleBase_Operation::resume()
 {
+  resumeOperation();
+  emit resumed();
 }
 
-void ModuleBase_Operation::flushUpdated()
+void ModuleBase_Operation::abort()
 {
-  Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_FEATURE_UPDATED));
-}
+  // the viewer update should be blocked in order to avoid the features blinking before they are
+  // hidden
+  //std::shared_ptr<Events_Message> aMsg = std::shared_ptr<Events_Message>(
+  //    new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED)));
+  //Events_Loop::loop()->send(aMsg);
 
-void ModuleBase_Operation::flushCreated()
-{
-  Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_FEATURE_CREATED));
+  ModelAPI_Session::get()->abortOperation();
+
+  emit stopped();
+  // the viewer update should be unblocked in order to avoid the features blinking before they are
+  // hidden
+  //aMsg = std::shared_ptr<Events_Message>(
+  //              new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED)));
+  //Events_Loop::loop()->send(aMsg);
+
+  emit aborted();
 }
 
-FeaturePtr ModuleBase_Operation::createFeature(const bool theFlushMessage)
+bool ModuleBase_Operation::commit()
 {
-  boost::shared_ptr<ModelAPI_Document> aDoc = document();
-  FeaturePtr aFeature = aDoc->addFeature(getDescription()->operationId().toStdString());
-  if (aFeature) { // TODO: generate an error if feature was not created
-    myIsModified = true;
-    aFeature->execute();
-    // Init default values
-    /*QList<ModuleBase_ModelWidget*> aWidgets = getDescription()->modelWidgets();
-    QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin(), aLast = aWidgets.end();
-    for (; anIt != aLast; anIt++) {
-      (*anIt)->storeValue(aFeature);
-    }*/
-  }
+  if (canBeCommitted()) {
+    SessionPtr aMgr = ModelAPI_Session::get();
+
+    commitOperation();
+    aMgr->finishOperation();
+
+    stopOperation();
+    emit stopped();
+    emit committed();
 
-  if (theFlushMessage)
-    flushCreated();
-  return aFeature;
+    afterCommitOperation();
+    return true;
+  }
+  return false;
 }
 
-void ModuleBase_Operation::setFeature(FeaturePtr theFeature)
+void ModuleBase_Operation::onValuesChanged()
 {
-  myFeature = theFeature;
+  myIsModified = true;
+}
+
+void ModuleBase_Operation::setPropertyPanel(ModuleBase_IPropertyPanel* theProp) 
+{ 
+  myPropertyPanel = theProp; 
 }
 
-void ModuleBase_Operation::setEditingFeature(FeaturePtr theFeature)
+bool ModuleBase_Operation::isGranted(QString theId) const
 {
-  setFeature(theFeature);
-  myIsEditing = true;
+  return myGrantedIds.contains(theId);
 }