Salome HOME
[bos #30433] [CEA 30426] Shaper performance issue. Milti-translation.
authorjfa <jfa@opencascade.com>
Thu, 7 Jul 2022 06:41:56 +0000 (09:41 +0300)
committerjfa <jfa@opencascade.com>
Thu, 7 Jul 2022 06:41:56 +0000 (09:41 +0300)
src/FeaturesPlugin/FeaturesPlugin_MultiRotation.cpp
src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp
src/GeomAlgoAPI/CMakeLists.txt
src/GeomAlgoAPI/GeomAlgoAPI_MakeShapeSet.cpp [new file with mode: 0644]
src/GeomAlgoAPI/GeomAlgoAPI_MakeShapeSet.h [new file with mode: 0644]

index 16a2e16cbe66a30895f96fa8d1d23b0dd1346207..83f296653099c249456c86d8365451516819e112 100644 (file)
@@ -25,7 +25,7 @@
 #include <FeaturesPlugin_Tools.h>
 
 #include <GeomAlgoAPI_CompoundBuilder.h>
-#include <GeomAlgoAPI_MakeShapeList.h>
+#include <GeomAlgoAPI_MakeShapeSet.h>
 #include <GeomAlgoAPI_ShapeTools.h>
 #include <GeomAlgoAPI_Tools.h>
 #include <GeomAlgoAPI_Translation.h>
@@ -195,7 +195,7 @@ void FeaturesPlugin_MultiRotation::performRotation1D()
   }
 
   // Collect transformations for each object in a part.
-  std::shared_ptr<GeomAlgoAPI_MakeShapeList> aMakeShapeList(new GeomAlgoAPI_MakeShapeList);
+  std::shared_ptr<GeomAlgoAPI_MakeShapeSet> aMakeShapeList(new GeomAlgoAPI_MakeShapeSet);
   for (GeomAPI_ShapeHierarchy::iterator anObjectsIt = anObjects.begin();
        anObjectsIt != anObjects.end(); anObjectsIt++) {
     std::shared_ptr<GeomAPI_Shape> aBaseShape = *anObjectsIt;
index 5067c4ac8311871797f2cbf93302899175a5f946..fb71d07e105aa6930d25afd70e8625c5bdba4ed5 100644 (file)
@@ -21,7 +21,7 @@
 #include <FeaturesPlugin_Tools.h>
 
 #include <GeomAlgoAPI_CompoundBuilder.h>
-#include <GeomAlgoAPI_MakeShapeList.h>
+#include <GeomAlgoAPI_MakeShapeSet.h>
 #include <GeomAlgoAPI_Tools.h>
 #include <GeomAlgoAPI_Translation.h>
 
@@ -136,7 +136,7 @@ void FeaturesPlugin_MultiTranslation::execute()
   }
 
   // Collect transformations for each object in a part.
-  std::shared_ptr<GeomAlgoAPI_MakeShapeList> aMakeShapeList(new GeomAlgoAPI_MakeShapeList);
+  std::shared_ptr<GeomAlgoAPI_MakeShapeSet> aMakeShapeList(new GeomAlgoAPI_MakeShapeSet);
   for (GeomAPI_ShapeHierarchy::iterator anObjectsIt = anObjects.begin();
        anObjectsIt != anObjects.end(); anObjectsIt++) {
     std::shared_ptr<GeomAPI_Shape> aBaseShape = *anObjectsIt;
index ef574969ce2bffa2ec7e5d47e5cdf4e633ea2754..86ee8fe7ca671ceaa56f8d6231e5615e2efee1ee 100644 (file)
@@ -39,6 +39,7 @@ SET(PROJECT_HEADERS
     GeomAlgoAPI_MakeShape.h
     GeomAlgoAPI_MakeShapeCustom.h
     GeomAlgoAPI_MakeShapeList.h
+    GeomAlgoAPI_MakeShapeSet.h
     GeomAlgoAPI_MakeSweep.h
     GeomAlgoAPI_MakeVolume.h
     GeomAlgoAPI_DFLoader.h
@@ -112,6 +113,7 @@ SET(PROJECT_SOURCES
     GeomAlgoAPI_MakeShape.cpp
     GeomAlgoAPI_MakeShapeCustom.cpp
     GeomAlgoAPI_MakeShapeList.cpp
+    GeomAlgoAPI_MakeShapeSet.cpp
     GeomAlgoAPI_MakeSweep.cpp
     GeomAlgoAPI_MakeVolume.cpp
     GeomAlgoAPI_DFLoader.cpp
diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_MakeShapeSet.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_MakeShapeSet.cpp
new file mode 100644 (file)
index 0000000..f624da5
--- /dev/null
@@ -0,0 +1,71 @@
+// Copyright (C) 2014-2022  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
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// 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
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#include "GeomAlgoAPI_MakeShapeSet.h"
+
+
+#include <NCollection_List.hxx>
+#include <NCollection_Map.hxx>
+#include <TopoDS_Shape.hxx>
+
+//==================================================================================================
+GeomAlgoAPI_MakeShapeSet::GeomAlgoAPI_MakeShapeSet()
+: GeomAlgoAPI_MakeShapeList()
+{}
+
+//==================================================================================================
+GeomAlgoAPI_MakeShapeSet::GeomAlgoAPI_MakeShapeSet(const ListOfMakeShape& theMakeShapeSet)
+: GeomAlgoAPI_MakeShapeList(theMakeShapeSet)
+{
+}
+
+//==================================================================================================
+void GeomAlgoAPI_MakeShapeSet::generated(const GeomShapePtr theOldShape,
+                                         ListOfShape& theNewShapes)
+{
+  if (myListOfMakeShape.empty()) {
+    return;
+  }
+
+  for (ListOfMakeShape::iterator aBuilderIt = myListOfMakeShape.begin();
+      aBuilderIt != myListOfMakeShape.end();
+      ++aBuilderIt)
+  {
+    GeomMakeShapePtr aMakeShape = *aBuilderIt;
+    aMakeShape->generated(theOldShape, theNewShapes);
+  }
+}
+
+//==================================================================================================
+void GeomAlgoAPI_MakeShapeSet::modified(const GeomShapePtr theOldShape,
+                                        ListOfShape& theNewShapes)
+{
+  if (myListOfMakeShape.empty()) {
+    return;
+  }
+
+  for (ListOfMakeShape::iterator aBuilderIt = myListOfMakeShape.begin();
+      aBuilderIt != myListOfMakeShape.end();
+      ++aBuilderIt)
+  {
+    GeomMakeShapePtr aMakeShape = *aBuilderIt;
+    ListOfShape aModifiedShapes;
+    aMakeShape->modified(theOldShape, theNewShapes);
+  }
+}
diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_MakeShapeSet.h b/src/GeomAlgoAPI/GeomAlgoAPI_MakeShapeSet.h
new file mode 100644 (file)
index 0000000..5f15225
--- /dev/null
@@ -0,0 +1,51 @@
+// Copyright (C) 2014-2022  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
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// 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
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#ifndef GeomAlgoAPI_MakeShapeSet_H_
+#define GeomAlgoAPI_MakeShapeSet_H_
+
+#include <GeomAPI_Shape.h>
+#include <GeomAlgoAPI.h>
+#include <GeomAlgoAPI_MakeShapeList.h>
+
+#include <memory>
+
+/// \class GeomAlgoAPI_MakeShapeSet
+/// \ingroup DataAlgo
+/// \brief Set of independent topological shapes constructions
+class GeomAlgoAPI_MakeShapeSet : public GeomAlgoAPI_MakeShapeList
+{
+public:
+  /// Default constructor
+  GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShapeSet();
+
+  /// \brief Constructor
+  /// \param[in] theMakeShapeSet list of algorithms.
+  GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShapeSet(const ListOfMakeShape& theMakeShapeSet);
+
+  /// \return the list of shapes generated from the shape \a theShape
+  GEOMALGOAPI_EXPORT virtual void generated(const GeomShapePtr theShape,
+                                            ListOfShape& theHistory);
+
+  /// \return the list of shapes modified from the shape \a theShape
+  GEOMALGOAPI_EXPORT virtual void modified(const GeomShapePtr theShape,
+                                           ListOfShape& theHistory);
+};
+
+#endif