Salome HOME
Make import XAO with groups
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_ImportFeature.cpp
index 45ebda1f4a9fe7e2c23d09e0d8f09018fe70cc1d..037c300e7113ec599c08f342f2cb92a7a1fd61f2 100644 (file)
@@ -1,37 +1,40 @@
 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 
-/*
- * ExchangePlugin_ImportFeature.cpp
- *
- *  Created on: Aug 28, 2014
- *      Author: sbh
- */
+// File:    ExchangePlugin_ImportFeature.cpp
+// Created: Aug 28, 2014
+// Author:  Sergey BELASH
 
 #include <ExchangePlugin_ImportFeature.h>
+
+#include <algorithm>
+#include <string>
+#ifdef _DEBUG
+#include <iostream>
+#include <ostream>
+#endif
+
+#include <Config_Common.h>
+#include <Config_PropManager.h>
+
 #include <GeomAlgoAPI_BREPImport.h>
-#include <GeomAlgoAPI_STEPImport.h>
 #include <GeomAlgoAPI_IGESImport.h>
+#include <GeomAlgoAPI_STEPImport.h>
+#include <GeomAlgoAPI_XAOImport.h>
+#include <GeomAlgoAPI_Tools.h>
 
 #include <GeomAPI_Shape.h>
-#include <Config_Common.h>
-#include <Config_PropManager.h>
 
 #include <ModelAPI_AttributeString.h>
+#include <ModelAPI_AttributeSelectionList.h>
+#include <ModelAPI_BodyBuilder.h>
 #include <ModelAPI_Data.h>
 #include <ModelAPI_Document.h>
 #include <ModelAPI_Object.h>
 #include <ModelAPI_ResultBody.h>
-#include <TCollection_AsciiString.hxx>
-#include <TDF_Label.hxx>
-#include <TopoDS_Shape.hxx>
-#include <OSD_Path.hxx>
+#include <ModelAPI_ResultGroup.h>
 
-#include <algorithm>
-#include <string>
-#ifdef _DEBUG
-#include <iostream>
-#include <ostream>
-#endif
+#include <XAO_Xao.hxx>
+#include <XAO_Group.hxx>
 
 ExchangePlugin_ImportFeature::ExchangePlugin_ImportFeature()
 {
@@ -75,44 +78,73 @@ void ExchangePlugin_ImportFeature::execute()
 bool ExchangePlugin_ImportFeature::importFile(const std::string& theFileName)
 {
   // retrieve the file and plugin library names
-  TCollection_AsciiString aFileName(theFileName.c_str());
-  OSD_Path aPath(aFileName);
-  TCollection_AsciiString anExtension = aPath.Extension();
-  // ".brep" -> "BREP", TCollection_AsciiString are numbered from 1
-  anExtension = anExtension.SubString(2, anExtension.Length());
-  anExtension.UpperCase();
+  // ".brep" -> "BREP"
+  std::string anExtension = GeomAlgoAPI_Tools::File_Tools::extension(theFileName);
 
   // Perform the import
-  TCollection_AsciiString anError;
+  std::string anError;
 
-  TopoDS_Shape aShape;
-  if (anExtension == "BREP") {
-    aShape = BREPImport::Import(aFileName, anExtension, anError);
+  std::shared_ptr<GeomAPI_Shape> aGeomShape;
+  std::shared_ptr<XAO::Xao> aXao;
+  if (anExtension == "BREP" || anExtension == "BRP") {
+    aGeomShape = BREPImport(theFileName, anExtension, anError);
   } else if (anExtension == "STEP" || anExtension == "STP") {
-    aShape = STEPImport::Import(aFileName, anExtension, anError);
+    aGeomShape = STEPImport(theFileName, anExtension, anError);
   } else if (anExtension == "IGES" || anExtension == "IGS") {
-    aShape = IGESImport::Import(aFileName, anExtension, anError);
+    aGeomShape = IGESImport(theFileName, anExtension, anError);
+  } else if (anExtension == "XAO") {
+    std::shared_ptr<XAO::Xao> aTmpXao(new XAO::Xao);
+    aGeomShape = XAOImport(theFileName, anExtension, anError, aTmpXao.get());
+    if (!aGeomShape->isNull())
+      aXao = aTmpXao;
+  }
+
+  // Check if shape is valid
+  if (aGeomShape->isNull()) {
+    const static std::string aShapeError =
+      "An error occurred while importing " + theFileName + ": " + anError;
+    setError(aShapeError);
+    return false;
   }
-   // Check if shape is valid
-  if ( aShape.IsNull() ) {
-     const static std::string aShapeError =
-       "An error occurred while importing " + theFileName + ": " + anError.ToCString();
-     setError(aShapeError);
-     return false;
-   }
 
   // Pass the results into the model
-  std::string anObjectName = aPath.Name().ToCString();
+  std::string anObjectName = GeomAlgoAPI_Tools::File_Tools::name(theFileName);
   data()->setName(anObjectName);
   std::shared_ptr<ModelAPI_ResultBody> aResultBody = document()->createBody(data());
-  std::shared_ptr<GeomAPI_Shape> aGeomShape(new GeomAPI_Shape);
-  aGeomShape->setImpl(new TopoDS_Shape(aShape));
 
   //LoadNamingDS of the imported shape
   loadNamingDS(aGeomShape, aResultBody);
 
   setResult(aResultBody);
 
+  if (aXao.get()) {
+    XAO::Geometry* aXaoGeometry = aXao->getGeometry();
+
+    // Creates group results
+    for (int aGroupIndex = 0; aGroupIndex < aXao->countGroups(); ++aGroupIndex) {
+      XAO::Group* aXaoGroup = aXao->getGroup(aGroupIndex);
+
+      std::shared_ptr<ModelAPI_Feature> aGroupFeature = document()->addFeature("Group", false);
+      if (aGroupFeature) {
+        if (!aXaoGroup->getName().empty())
+          aGroupFeature->data()->setName(aXaoGroup->getName());
+        AttributeSelectionListPtr aSelectionList = aGroupFeature->selectionList("group_list");
+        aSelectionList->setSelectionType(XAO::XaoUtils::dimensionToString(aXaoGroup->getDimension()));
+
+        for (int anElementIndex = 0; anElementIndex < aXaoGroup->count(); ++anElementIndex) {
+          aSelectionList->append(aResultBody, GeomShapePtr());
+          int anElementID = aXaoGroup->get(anElementIndex);
+          std::string aReferenceString =
+              aXaoGeometry->getElementReference(aXaoGroup->getDimension(), anElementID);
+          int aReferenceID = XAO::XaoUtils::stringToInt(aReferenceString);
+          aSelectionList->value(anElementIndex)->setId(aReferenceID);
+        }
+
+        document()->setCurrentFeature(aGroupFeature, true);
+      }
+    }
+  }
+
   return true;
 }