Salome HOME
Task 3.3. Recovering Compsolids and Compounds
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Recover.cpp
index 484db22caa956b442a956d46e6c0fcea5a4e340d..6a99ac3bbc942b525c10cbd427f3e76dcdaa5ef9 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -12,9 +12,9 @@
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #include "FeaturesAPI_Recover.h"
@@ -33,10 +33,15 @@ FeaturesAPI_Recover::FeaturesAPI_Recover(const std::shared_ptr<ModelAPI_Feature>
 //=================================================================================================
 FeaturesAPI_Recover::FeaturesAPI_Recover(const std::shared_ptr<ModelAPI_Feature>& theFeature,
   const ModelHighAPI_Reference& theBaseFeature,
-  const std::list<ModelHighAPI_Selection>& theRecoveredList, const bool thePersistent)
+  const std::list<ModelHighAPI_Selection>& theRecoveredList,
+  const bool theRecoverCompound)
 : ModelHighAPI_Interface(theFeature)
 {
   if(initialize()) {
+    std::string aMethod = theRecoverCompound ? FeaturesPlugin_Recover::METHOD_COMPOUND()
+                                             : FeaturesPlugin_Recover::METHOD_DEFAULT();
+    fillAttribute(aMethod, theFeature->string(FeaturesPlugin_Recover::METHOD()));
+
     setBaseFeature(theBaseFeature);
     setRecoveredList(theRecoveredList);
   }
@@ -75,15 +80,22 @@ void FeaturesAPI_Recover::dump(ModelHighAPI_Dumper& theDumper) const
   FeaturePtr aFeature = ModelAPI_Feature::feature(anAttrBaseFeature->value());
 
   theDumper << aBase << " = model.addRecover(" << aDocName << ", "
-            << aFeature << ", " << anAttrRecoveredEntities << ")" << std::endl;
+            << aFeature << ", " << anAttrRecoveredEntities;
+
+  AttributeStringPtr aMethod = aBase->string(FeaturesPlugin_Recover::METHOD());
+  if (aMethod && aMethod->isInitialized() &&
+      aMethod->value() != FeaturesPlugin_Recover::METHOD_DEFAULT())
+    theDumper << ", " << true;
+
+  theDumper << ")" << std::endl;
 }
 
 //=================================================================================================
 RecoverPtr addRecover(const std::shared_ptr<ModelAPI_Document>& thePart,
   const ModelHighAPI_Reference& theBaseFeature,
-  const std::list<ModelHighAPI_Selection>& theRecoveredList, const bool thePersistent)
+  const std::list<ModelHighAPI_Selection>& theRecoveredList, const bool theRecoverCompound)
 {
   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(FeaturesAPI_Recover::ID());
   return RecoverPtr(new FeaturesAPI_Recover(
-    aFeature, theBaseFeature, theRecoveredList, thePersistent));
+    aFeature, theBaseFeature, theRecoveredList, theRecoverCompound));
 }