Salome HOME
Add CPPHighAPI for export to XAO
authorspo <sergey.pokhodenko@opencascade.com>
Wed, 22 Jun 2016 13:03:10 +0000 (16:03 +0300)
committerspo <sergey.pokhodenko@opencascade.com>
Wed, 22 Jun 2016 13:03:10 +0000 (16:03 +0300)
src/ExchangeAPI/ExchangeAPI_Export.cpp
src/ExchangeAPI/ExchangeAPI_Export.h
src/PythonAPI/model/exchange/__init__.py

index 263f14d89ea79a65ce23cfbcf6423eb40496d497..176df43ccbb063fcd0c5b67ac1706e82b6a38a47 100644 (file)
@@ -9,58 +9,30 @@
 //--------------------------------------------------------------------------------------
 #include <ModelHighAPI_Tools.h>
 //--------------------------------------------------------------------------------------
-ExchangeAPI_Export::ExchangeAPI_Export(
-    const std::shared_ptr<ModelAPI_Feature> & theFeature)
-: ModelHighAPI_Interface(theFeature)
+void exportToFile(const std::shared_ptr<ModelAPI_Document> & thePart,
+                  const std::string & theFilePath,
+                  const std::list<ModelHighAPI_Selection> & theSelectionList,
+                  const std::string & theFileFormat)
 {
-  initialize();
-}
-
-ExchangeAPI_Export::ExchangeAPI_Export(
-    const std::shared_ptr<ModelAPI_Feature> & theFeature,
-    const std::string & theFilePath,
-    const std::string & theFileFormat,
-    const std::list<ModelHighAPI_Selection> & theSelectionList)
-: ModelHighAPI_Interface(theFeature)
-{
-  if (initialize()) {
-    setFilePath(theFilePath);
-    setFileFormat(theFileFormat);
-    setSelectionList(theSelectionList);
-    execute();
-  }
-}
-
-ExchangeAPI_Export::~ExchangeAPI_Export()
-{
-
-}
-
-//--------------------------------------------------------------------------------------
-void ExchangeAPI_Export::setFilePath(const std::string & theFilePath)
-{
-  fillAttribute(theFilePath, myfilePath);
-}
-
-void ExchangeAPI_Export::setFileFormat(const std::string & theFileFormat)
-{
-  fillAttribute(theFileFormat, myfileFormat);
+  // TODO(spo): check that thePart is not empty
+  std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(ExchangePlugin_ExportFeature::ID());
+  fillAttribute(theFilePath, aFeature->string(ExchangePlugin_ExportFeature::FILE_PATH_ID()));
+  fillAttribute(theSelectionList, aFeature->selectionList(ExchangePlugin_ExportFeature::SELECTION_LIST_ID()));
+  fillAttribute(theFileFormat, aFeature->string(ExchangePlugin_ExportFeature::FILE_FORMAT_ID()));
+  aFeature->execute();
 }
 
-void ExchangeAPI_Export::setSelectionList(
-    const std::list<ModelHighAPI_Selection> & theSelectionList)
+void exportToXAO(const std::shared_ptr<ModelAPI_Document> & thePart,
+                 const std::string & theFilePath,
+                 const std::string & theAuthor,
+                 const std::string & theGeometryName)
 {
-  fillAttribute(theSelectionList, myselectionList);
+  // TODO(spo): check that thePart is not empty
+  std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(ExchangePlugin_ExportFeature::ID());
+  fillAttribute(theFilePath, aFeature->string(ExchangePlugin_ExportFeature::FILE_PATH_ID()));
+  fillAttribute(theAuthor, aFeature->string(ExchangePlugin_ExportFeature::XAO_AUTHOR_ID()));
+  fillAttribute(theGeometryName, aFeature->string(ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID()));
+  aFeature->execute();
 }
 
 //--------------------------------------------------------------------------------------
-ExportPtr exportToFile(
-    const std::shared_ptr<ModelAPI_Document> & thePart,
-    const std::string & theFilePath,
-    const std::string & theFileFormat,
-    const std::list<ModelHighAPI_Selection> & theSelectionList)
-{
-  // TODO(spo): check that thePart is not empty
-  std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(ExchangeAPI_Export::ID());
-  return ExportPtr(new ExchangeAPI_Export(aFeature, theFilePath, theFileFormat, theSelectionList));
-}
index bb336c94cf1887943ecfe10fbdc4783f659c83b1..9846f5cf6d6360194aea451d97cbe644891f438f 100644 (file)
 //--------------------------------------------------------------------------------------
 class ModelHighAPI_Selection;
 //--------------------------------------------------------------------------------------
-/**\class ExchangeAPI_Export
- * \ingroup CPPHighAPI
- * \brief Interface for Export feature
+/**\ingroup CPPHighAPI
+ * \brief Export to file
  */
-class ExchangeAPI_Export : public ModelHighAPI_Interface
-{
-public:
-  /// Constructor without values
-  EXCHANGEAPI_EXPORT
-  explicit ExchangeAPI_Export(const std::shared_ptr<ModelAPI_Feature> & theFeature);
-  /// Constructor with values
-  EXCHANGEAPI_EXPORT
-  ExchangeAPI_Export(const std::shared_ptr<ModelAPI_Feature> & theFeature,
-                     const std::string & theFilePath,
-                     const std::string & theFileFormat,
-                     const std::list<ModelHighAPI_Selection> & theSelectionList);
-  /// Destructor
-  EXCHANGEAPI_EXPORT
-  virtual ~ExchangeAPI_Export();
-
-  INTERFACE_3(ExchangePlugin_ExportFeature::ID(),
-              filePath, ExchangePlugin_ExportFeature::FILE_PATH_ID(), ModelAPI_AttributeString, /** File path */,
-              fileFormat, ExchangePlugin_ExportFeature::FILE_FORMAT_ID(), ModelAPI_AttributeString, /** File format */,
-              selectionList, ExchangePlugin_ExportFeature::SELECTION_LIST_ID(), ModelAPI_AttributeSelectionList, /** Selection list */
-  )
-
-  /// Set file path (without execute)
-  EXCHANGEAPI_EXPORT
-  void setFilePath(const std::string & theFilePath);
-
-  /// Set file format (without execute)
-  EXCHANGEAPI_EXPORT
-  void setFileFormat(const std::string & theFileFormat);
-
-
-  /// Set selection list (without execute)
-  EXCHANGEAPI_EXPORT
-  void setSelectionList(const std::list<ModelHighAPI_Selection> & theSelectionList);
-};
-
-//! Pointer on Export object
-typedef std::shared_ptr<ExchangeAPI_Export> ExportPtr;
+EXCHANGEAPI_EXPORT
+void exportToFile(const std::shared_ptr<ModelAPI_Document> & thePart,
+                  const std::string & theFilePath,
+                  const std::list<ModelHighAPI_Selection> & theSelectionList,
+                  const std::string & theFileFormat = std::string());
 
 /**\ingroup CPPHighAPI
- * \brief Create Export feature
+ * \brief Export XAO
  */
 EXCHANGEAPI_EXPORT
-ExportPtr exportToFile(const std::shared_ptr<ModelAPI_Document> & thePart,
-                       const std::string & theFilePath,
-                       const std::string & theFileFormat,
-                       const std::list<ModelHighAPI_Selection> & theSelectionList);
+void exportToXAO(const std::shared_ptr<ModelAPI_Document> & thePart,
+                 const std::string & theFilePath,
+                 const std::string & theAuthor = std::string(),
+                 const std::string & theGeometryName = std::string());
 
 //--------------------------------------------------------------------------------------
 //--------------------------------------------------------------------------------------
index af7cc78c4559fc3d06068a6f85b186c8125dc102..29d652e5286d99a6df0ddee00e6e52ca965d8b05 100644 (file)
@@ -1,4 +1,4 @@
 """Package for Exchange plugin for the Parametric Geometry API of the Modeler.
 """
 
-from ExchangeAPI import addImport, exportToFile
\ No newline at end of file
+from ExchangeAPI import addImport, exportToFile, exportToXAO
\ No newline at end of file