Salome HOME
Commit of the current operation if the preselection is activated.
[modules/shaper.git] / src / PartSetPlugin / PartSetPlugin_Duplicate.cpp
index 2307e09064e5478f142c72fe2187a13ea29ffb45..f92c0e912a895a79b195896df95811709a704f39 100644 (file)
@@ -8,6 +8,7 @@
 #include <ModelAPI_Data.h>
 #include <ModelAPI_Document.h>
 #include <ModelAPI_ResultPart.h>
+#include <ModelAPI_Session.h>
 
 using namespace std;
 
@@ -18,26 +19,28 @@ PartSetPlugin_Duplicate::PartSetPlugin_Duplicate()
 void PartSetPlugin_Duplicate::initAttributes()
 {
   PartSetPlugin_Part::initAttributes();
-  data()->addAttribute(PartSetPlugin_Duplicate::DOC_REF(), ModelAPI_AttributeRefAttr::type());
+  data()->addAttribute(ORIGIN_REF(), ModelAPI_AttributeRefAttr::type());
 
-  ResultPartPtr aResult = boost::dynamic_pointer_cast<ModelAPI_ResultPart>(firstResult());
-  boost::shared_ptr<ModelAPI_AttributeRefAttr> aRef = 
-    aResult->data()->refattr(ModelAPI_ResultPart::DOC_REF());
-  if (!aRef->attr()) { // create a copy: if not created yet attribute is not initialized
-    boost::shared_ptr<ModelAPI_PluginManager> aPManager = ModelAPI_PluginManager::get();
-    boost::shared_ptr<ModelAPI_Document> aRoot = aPManager->rootDocument();
-    boost::shared_ptr<PartSetPlugin_Part> aSource; // searching for source document attribute
-    for(int a = aRoot->size(getGroup()) - 1; a >= 0; a--) {
-      aSource = boost::dynamic_pointer_cast<PartSetPlugin_Part>(
-        aRoot->object(ModelAPI_Feature::group(), a));
-      if (aSource->data()->docRef(ModelAPI_ResultPart::DOC_REF())->value() == aPManager->currentDocument())
-        break;
-      aSource.reset();
-    }
-    if (aSource) {
-      boost::shared_ptr<ModelAPI_Document> aCopy = 
-        aPManager->copy(aSource->data()->docRef(ModelAPI_ResultPart::DOC_REF())->value(), data()->name());
-      aRef->setObject(aSource);
-    }
+  std::shared_ptr<ModelAPI_Session> aPManager = ModelAPI_Session::get();
+  std::shared_ptr<ModelAPI_Document> aRoot = aPManager->moduleDocument();
+  std::shared_ptr<ModelAPI_ResultPart> aSource;  // searching for source document attribute
+  for (int a = aRoot->size(getGroup()) - 1; a >= 0; a--) {
+    aSource = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aRoot->object(getGroup(), a));
+    if (aSource && aSource->data()
+        && aSource->data()->document(ModelAPI_ResultPart::DOC_REF())->value()
+            == aPManager->activeDocument())
+      break;
+    aSource.reset();
   }
+  if (aSource) {
+    std::shared_ptr<ModelAPI_Document> aCopy = aPManager->copy(
+        aSource->data()->document(ModelAPI_ResultPart::DOC_REF())->value(), data()->name());
+    data()->refattr(ORIGIN_REF())->setObject(aSource);
+  }
+}
+
+void PartSetPlugin_Duplicate::execute()
+{
+  if (data()->refattr(ORIGIN_REF())->object())
+    PartSetPlugin_Part::execute();
 }