Salome HOME
bos #29482 Export of colors and names to STEP.
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_ExportFeature.cpp
index 30f690d1e241b26b1ace384424d33ca233688eee..54400c68680dcd2c1f5242bf3d192cabc3b04435 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+// 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
 #include <GeomAlgoAPI_CompoundBuilder.h>
 #include <GeomAlgoAPI_IGESExport.h>
 #include <GeomAlgoAPI_STEPExport.h>
+#include <GeomAlgoAPI_STLExport.h>
 #include <GeomAlgoAPI_Tools.h>
 #include <GeomAlgoAPI_XAOExport.h>
 
 #include <GeomAPI_Shape.h>
+#include <GeomAPI_ShapeExplorer.h>
+#include <GeomAPI_Trsf.h>
+
+#include <Locale_Convert.h>
 
 #include <ModelAPI_AttributeSelectionList.h>
 #include <ModelAPI_AttributeString.h>
 #include <ModelAPI_AttributeStringArray.h>
 #include <ModelAPI_AttributeIntArray.h>
 #include <ModelAPI_AttributeTables.h>
+#include <ModelAPI_AttributeDouble.h>
 #include <ModelAPI_Data.h>
 #include <ModelAPI_Document.h>
 #include <ModelAPI_Object.h>
 #include <ModelAPI_ResultBody.h>
+#include <ModelAPI_ResultPart.h>
 #include <ModelAPI_ResultGroup.h>
 #include <ModelAPI_ResultField.h>
 #include <ModelAPI_Session.h>
@@ -91,13 +98,48 @@ void ExchangePlugin_ExportFeature::initAttributes()
     ModelAPI_AttributeString::typeId());
   data()->addAttribute(ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID(),
     ModelAPI_AttributeString::typeId());
+  data()->addAttribute(ExchangePlugin_ExportFeature::XAO_SELECTION_LIST_ID(),
+    ModelAPI_AttributeSelectionList::typeId());
+  data()->addAttribute(ExchangePlugin_ExportFeature::STL_FILE_PATH_ID(),
+    ModelAPI_AttributeString::typeId());
+  data()->addAttribute(ExchangePlugin_ExportFeature::STL_OBJECT_SELECTED(),
+    ModelAPI_AttributeSelection::typeId());
+  data()->addAttribute(ExchangePlugin_ExportFeature::STL_DEFLECTION_TYPE(),
+   ModelAPI_AttributeString::typeId());
+  data()->addAttribute(ExchangePlugin_ExportFeature::STL_RELATIVE(),
+    ModelAPI_AttributeDouble::typeId());
+
+  double defelection = Config_PropManager::real("Visualization", "body_deflection");
+  real(ExchangePlugin_ExportFeature::STL_RELATIVE())->setValue(defelection);
+
+  data()->addAttribute(ExchangePlugin_ExportFeature::STL_ABSOLUTE(),
+    ModelAPI_AttributeDouble::typeId());
+  data()->addAttribute(ExchangePlugin_ExportFeature::STL_FILE_TYPE(),
+   ModelAPI_AttributeString::typeId());
 
   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(),
     ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID());
+  ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(),
+    ExchangePlugin_ExportFeature::STL_FILE_PATH_ID());
   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(),
     ExchangePlugin_ExportFeature::XAO_AUTHOR_ID());
   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(),
     ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID());
+  ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(),
+    ExchangePlugin_ExportFeature::XAO_SELECTION_LIST_ID());
+
+  // to support previous version of document, move the selection list
+  // if the type of export operation is XAO
+  AttributeStringPtr aTypeAttr = string(EXPORT_TYPE_ID());
+  if (aTypeAttr->isInitialized() && aTypeAttr->value() == "XAO") {
+    bool aWasBlocked = data()->blockSendAttributeUpdated(true, false);
+    AttributeSelectionListPtr aSelList = selectionList(SELECTION_LIST_ID());
+    AttributeSelectionListPtr aXAOSelList = selectionList(XAO_SELECTION_LIST_ID());
+    if (aSelList->size() > 0 && aXAOSelList->size() == 0)
+      aSelList->copyTo(aXAOSelList);
+    aSelList->clear();
+    data()->blockSendAttributeUpdated(aWasBlocked, false);
+  }
 }
 
 void ExchangePlugin_ExportFeature::attributeChanged(const std::string& theID)
@@ -106,6 +148,10 @@ void ExchangePlugin_ExportFeature::attributeChanged(const std::string& theID)
     string(ExchangePlugin_ExportFeature::FILE_PATH_ID())->setValue(
       string(ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID())->value());
   }
+  else if (theID == STL_FILE_PATH_ID()) {
+    string(ExchangePlugin_ExportFeature::FILE_PATH_ID())->setValue(
+      string(ExchangePlugin_ExportFeature::STL_FILE_PATH_ID())->value());
+  }
 }
 
 /*
@@ -140,8 +186,6 @@ void ExchangePlugin_ExportFeature::exportFile(const std::string& theFileName,
       aFormatName = "STEP";
     } else if (anExtension == "IGES" || anExtension == "IGS") {
       aFormatName = "IGES-5.1";
-    } else if (anExtension == "XAO") {
-      aFormatName = "XAO";
     } else {
       aFormatName = anExtension;
     }
@@ -150,28 +194,38 @@ void ExchangePlugin_ExportFeature::exportFile(const std::string& theFileName,
   if (aFormatName == "XAO") {
     exportXAO(theFileName);
     return;
+  }else if (aFormatName == "STL") {
+    exportSTL(theFileName);
+    return;
   }
 
   // make shape for export from selected shapes
   AttributeSelectionListPtr aSelectionListAttr =
       this->selectionList(ExchangePlugin_ExportFeature::SELECTION_LIST_ID());
   std::list<GeomShapePtr> aShapes;
+  std::list<ResultPtr> aContexts;
   for (int i = 0, aSize = aSelectionListAttr->size(); i < aSize; ++i) {
     AttributeSelectionPtr anAttrSelection = aSelectionListAttr->value(i);
+
+    /// do not export pictures
+    ResultPtr aBodyContext =
+      std::dynamic_pointer_cast<ModelAPI_Result>(anAttrSelection->context());
+    if (aBodyContext.get() && aBodyContext->hasTexture())
+      continue;
+
     std::shared_ptr<GeomAPI_Shape> aCurShape = anAttrSelection->value();
     if (aCurShape.get() == NULL)
       aCurShape = anAttrSelection->context()->shape();
     if (aCurShape.get() != NULL)
+    {
       aShapes.push_back(aCurShape);
+      aContexts.push_back(anAttrSelection->context());
+    }
   }
 
   // Store compound if we have more than one shape.
-  std::shared_ptr<GeomAPI_Shape> aShape;
-  if(aShapes.size() == 1) {
-    aShape = aShapes.front();
-  } else {
-    aShape = GeomAlgoAPI_CompoundBuilder::compound(aShapes);
-  }
+  std::shared_ptr<GeomAPI_Shape> aShape =
+    aShapes.size() == 1 ? aShapes.front() : GeomAlgoAPI_CompoundBuilder::compound(aShapes);
 
   // Perform the export
   std::string anError;
@@ -179,14 +233,14 @@ void ExchangePlugin_ExportFeature::exportFile(const std::string& theFileName,
   if (aFormatName == "BREP") {
     aResult = BREPExport(theFileName, aFormatName, aShape, anError);
   } else if (aFormatName == "STEP") {
-    aResult = STEPExport(theFileName, aFormatName, aShape, anError);
+    aResult = STEPExport(theFileName, aShapes, aContexts, anError);
   } else if (aFormatName.substr(0, 4) == "IGES") {
     aResult = IGESExport(theFileName, aFormatName, aShape, anError);
   } else {
     anError = "Unsupported format: " + aFormatName;
   }
 
-  if (!anError.empty()) {
+  if (!aResult || !anError.empty()) {
     setError("An error occurred while exporting " + theFileName + ": " + anError);
     return;
   }
@@ -213,37 +267,48 @@ static std::string valToString(const ModelAPI_AttributeTables::Value& theVal,
   return aStr.str();
 }
 
-/// Returns true if something in selection is presented in the results list
-static bool isInResults(AttributeSelectionListPtr theSelection,
-                        const std::list<ResultBodyPtr>& theResults,
-                        std::set<ResultBodyPtr>& theCashedResults)
+void ExchangePlugin_ExportFeature::exportSTL(const std::string& theFileName)
 {
-  // collect all results into a cashed set
-  if (theCashedResults.empty()) {
-    std::list<ResultPtr> aResults;
-    std::list<ResultBodyPtr>::const_iterator aRes = theResults.cbegin();
-    for(; aRes != theResults.cend(); aRes++) {
-      if (theCashedResults.count(*aRes))
-        continue;
-      else
-        theCashedResults.insert(*aRes);
-      std::list<ResultPtr> aResults;
-      ModelAPI_Tools::allSubs(*aRes, aResults, false);
-      for(std::list<ResultPtr>::iterator aR = aResults.begin(); aR != aResults.end(); aR++) {
-        theCashedResults.insert(std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aR));
-      }
-    }
+  // Get shape.
+  AttributeSelectionPtr aSelection = selection(STL_OBJECT_SELECTED());
+  GeomShapePtr aShape = aSelection->value();
+  if (!aShape.get()) {
+    aShape = aSelection->context()->shape();
+  }
+
+  // Get relative value and percent flag.
+  double aValue;
+  bool anIsRelative = false;
+  bool anIsASCII = false;
+
+  if (string(STL_DEFLECTION_TYPE())->value() == STL_DEFLECTION_TYPE_RELATIVE()) {
+    aValue = real(STL_RELATIVE())->value();
+    anIsRelative = true;
+  } else {
+    aValue = real(STL_ABSOLUTE())->value();
   }
-  // if context is in results, return true
-  for(int a = 0; a < theSelection->size(); a++) {
-    AttributeSelectionPtr anAttr = theSelection->value(a);
-    ResultBodyPtr aSelected= std::dynamic_pointer_cast<ModelAPI_ResultBody>(anAttr->context());
-    if (aSelected.get() && theCashedResults.count(aSelected))
-      return true;
+
+  if (string(STL_FILE_TYPE())->value() == STL_FILE_TYPE_ASCII()) {
+    anIsASCII = true;
+  }
+  // Perform the export
+  std::string anError;
+  bool aResult = false;
+
+  aResult = STLExport(theFileName,
+                      aShape,
+                      aValue,
+                      anIsRelative,
+                      anIsASCII,
+                      anError);
+
+  if (!aResult || !anError.empty()) {
+    setError("An error occurred while exporting " + theFileName + ": " + anError);
+    return;
   }
-  return false;
 }
 
+
 void ExchangePlugin_ExportFeature::exportXAO(const std::string& theFileName)
 {
   try {
@@ -258,21 +323,41 @@ void ExchangePlugin_ExportFeature::exportXAO(const std::string& theFileName)
 
   // make shape for export from all results
   std::list<GeomShapePtr> aShapes;
-  std::list<ResultBodyPtr> aResults;
+  std::list<ResultPtr> aResults;
+  std::list<DocumentPtr> aDocuments; /// documents of Parts selected and used in export
+  std::map<DocumentPtr, GeomTrsfPtr> aDocTrsf; /// translation of the part
 
-  AttributeSelectionListPtr aSelection = selectionList(SELECTION_LIST_ID());
+  bool anExCludedIsImage = false;
+  AttributeSelectionListPtr aSelection = selectionList(XAO_SELECTION_LIST_ID());
   bool aIsSelection = aSelection->isInitialized() && aSelection->size() > 0;
   if (aIsSelection) { // a mode for export to geom result by result
-    for(int a = 0; a < aSelection->size(); a++) {
+    for (int a = 0; a < aSelection->size(); a++) {
       AttributeSelectionPtr anAttr = aSelection->value(a);
-      ResultBodyPtr aBodyContext =
-        std::dynamic_pointer_cast<ModelAPI_ResultBody>(anAttr->context());
+      ResultPtr aBodyContext =
+        std::dynamic_pointer_cast<ModelAPI_Result>(anAttr->context());
       if (aBodyContext.get() && !aBodyContext->isDisabled() && aBodyContext->shape().get()) {
+          /// do not export pictures
+          if (aBodyContext->hasTexture()){
+            anExCludedIsImage = true;
+            continue;
+          }
         aResults.push_back(aBodyContext);
         GeomShapePtr aShape = anAttr->value();
         if (!aShape.get())
           aShape = aBodyContext->shape();
         aShapes.push_back(aShape);
+        if (aBodyContext->groupName() == ModelAPI_ResultPart::group()) {
+          ResultPartPtr aResPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aBodyContext);
+          DocumentPtr aPartDoc = aResPart->partDoc();
+          if (!aPartDoc.get() || !aPartDoc->isOpened()) { // document is not accessible
+            std::string msg = "Can not export XAO for not loaded part";
+            Events_InfoMessage("ExportFeature", msg, this).send();
+            return;
+          } else {
+            aDocuments.push_back(aPartDoc);
+            aDocTrsf[aPartDoc] = aResPart->summaryTrsf();
+          }
+        }
       }
     }
   } else {
@@ -288,7 +373,8 @@ void ExchangePlugin_ExportFeature::exportXAO(const std::string& theFileName)
     }
   }
   if (aShapes.empty()) {
-    setError("No shapes to export");
+    if(!anExCludedIsImage)
+      setError("No shapes to export");
     return;
   }
 
@@ -308,165 +394,171 @@ void ExchangePlugin_ExportFeature::exportXAO(const std::string& theFileName)
   std::string aGeometryName = string(ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID())->value();
   if (aGeometryName.empty() && aResults.size() == 1) {
     // get the name from the first result
-    ResultBodyPtr aResultBody = *aResults.begin();
-    aGeometryName = aResultBody->data()->name();
+    ResultPtr aResultBody = *aResults.begin();
+    aGeometryName = Locale::Convert::toString(aResultBody->data()->name());
   }
 
   aXao.getGeometry()->setName(aGeometryName);
 
-  std::set<ResultBodyPtr> allResultsCashed; // cash to speed up searching in all results selected
-
-  // groups
-  int aGroupCount = document()->size(ModelAPI_ResultGroup::group());
-  for (int aGroupIndex = 0; aGroupIndex < aGroupCount; ++aGroupIndex) {
-    ResultGroupPtr aResultGroup =
-        std::dynamic_pointer_cast<ModelAPI_ResultGroup>(
-            document()->object(ModelAPI_ResultGroup::group(), aGroupIndex));
-
-    FeaturePtr aGroupFeature = document()->feature(aResultGroup);
-
-    AttributeSelectionListPtr aSelectionList =
-        aGroupFeature->selectionList("group_list");
-
-    if (!isInResults(aSelectionList, aResults, allResultsCashed))// skip group not used in results
-      continue;
-
-    // conversion of dimension
-    std::string aSelectionType = aSelectionList->selectionType();
-    std::string aDimensionString =
-      ExchangePlugin_Tools::selectionType2xaoDimension(aSelectionType);
-    XAO::Dimension aGroupDimension = XAO::XaoUtils::stringToDimension(aDimensionString);
-
-    XAO::Group* aXaoGroup = aXao.addGroup(aGroupDimension,
-                                          aResultGroup->data()->name());
-
-    try {
-      for (int aSelectionIndex = 0; aSelectionIndex < aSelectionList->size(); ++aSelectionIndex) {
-        AttributeSelectionPtr aSelection = aSelectionList->value(aSelectionIndex);
-
-        // complex conversion of reference id to element index
-        // gives bad id in case the selection is done from python script
-        // => using GeomAlgoAPI_CompoundBuilder::id instead
-        // int aReferenceID_old = aSelection->Id();
-
-        int aReferenceID = GeomAlgoAPI_CompoundBuilder::id(aShape, aSelection->value());
+  std::set<ResultPtr> allResultsCashed; // cash to speed up searching in all results selected
+
+  // iterate all documents used
+  if (aDocuments.empty())
+    aDocuments.push_back(document());
+  std::list<DocumentPtr>::iterator aDoc = aDocuments.begin();
+  for(; aDoc != aDocuments.end(); aDoc++) {
+    // groups
+    int aGroupCount = (*aDoc)->size(ModelAPI_ResultGroup::group());
+    for (int aGroupIndex = 0; aGroupIndex < aGroupCount; ++aGroupIndex) {
+      ResultGroupPtr aResultGroup = std::dynamic_pointer_cast<ModelAPI_ResultGroup>(
+          (*aDoc)->object(ModelAPI_ResultGroup::group(), aGroupIndex));
+      if (!aResultGroup.get() || !aResultGroup->shape().get())
+        continue;
 
-        if (aReferenceID == 0) // selected value does not found in the exported shape
-          continue;
+      FeaturePtr aGroupFeature = (*aDoc)->feature(aResultGroup);
 
-        std::string aReferenceString = XAO::XaoUtils::intToString(aReferenceID);
-        int anElementID =
-          aXao.getGeometry()->getElementIndexByReference(aGroupDimension, aReferenceString);
+      AttributeSelectionListPtr aSelectionList =
+          aGroupFeature->selectionList("group_list");
+      if (!ModelAPI_Tools::isInResults(aSelectionList,
+                                       aResults,
+                                       allResultsCashed))// skip group not used in result
+        continue;
 
-        aXaoGroup->add(anElementID);
+      // conversion of dimension
+      std::string aSelectionType = aSelectionList->selectionType();
+      GeomAPI_Shape::ShapeType aSelType = GeomAPI_Shape::shapeTypeByStr(aSelectionType);
+      std::string aDimensionString =
+        ExchangePlugin_Tools::selectionType2xaoDimension(aSelectionType);
+      XAO::Dimension aGroupDimension = XAO::XaoUtils::stringToDimension(aDimensionString);
+
+      XAO::Group* aXaoGroup = aXao.addGroup(aGroupDimension,
+        Locale::Convert::toString(aResultGroup->data()->name()));
+
+      try {
+        GeomAPI_ShapeExplorer aGroupResExplorer(aResultGroup->shape(), aSelType);
+        for(; aGroupResExplorer.more(); aGroupResExplorer.next()) {
+          GeomShapePtr aGroupShape = aGroupResExplorer.current();
+          if (aDocTrsf.find(*aDoc) != aDocTrsf.end())
+            aGroupShape->move(aDocTrsf[*aDoc]);
+          int aReferenceID = GeomAlgoAPI_CompoundBuilder::id(aShape, aGroupShape);
+          if (aReferenceID == 0) // selected value does not found in the exported shape
+            continue;
+          std::string aReferenceString = XAO::XaoUtils::intToString(aReferenceID);
+          int anElementID =
+            aXao.getGeometry()->getElementIndexByReference(aGroupDimension, aReferenceString);
+          aXaoGroup->add(anElementID);
+        }
+      } catch (XAO::XAO_Exception& e) {
+        // LCOV_EXCL_START
+        std::string msg = "An error occurred while exporting group " +
+          Locale::Convert::toString(aResultGroup->data()->name());
+        msg += ".\n";
+        msg += e.what();
+        msg += "\n";
+        msg += "=> skipping this group from XAO export.";
+        Events_InfoMessage("ExportFeature", msg, this).send();
+        aXao.removeGroup(aXaoGroup);
+        // LCOV_EXCL_STOP
       }
-    } catch (XAO::XAO_Exception& e) {
-      // LCOV_EXCL_START
-      std::string msg = "An error occurred while exporting group " + aResultGroup->data()->name();
-      msg += ".\n";
-      msg += e.what();
-      msg += "\n";
-      msg += "=> skipping this group from XAO export.";
-      Events_InfoMessage("ExportFeature", msg, this).send();
-      aXao.removeGroup(aXaoGroup);
-      // LCOV_EXCL_STOP
     }
-  }
-
-  // fields
-  int aFieldCount = document()->size(ModelAPI_ResultField::group());
-  for (int aFieldIndex = 0; aFieldIndex < aFieldCount; ++aFieldIndex) {
-    ResultFieldPtr aResultField =
-        std::dynamic_pointer_cast<ModelAPI_ResultField>(
-            document()->object(ModelAPI_ResultField::group(), aFieldIndex));
-
-    FeaturePtr aFieldFeature = document()->feature(aResultField);
-
-    AttributeSelectionListPtr aSelectionList =
-        aFieldFeature->selectionList("selected");
-    std::string aSelectionType = aSelectionList->selectionType();
-    bool isWholePart = aSelectionType == "part";
-
-    if (!isWholePart &&
-        !isInResults(aSelectionList, aResults, allResultsCashed))// skip field not used in results
-      continue;
 
-    // conversion of dimension
-    std::string aDimensionString =
-      ExchangePlugin_Tools::selectionType2xaoDimension(aSelectionType);
-    XAO::Dimension aFieldDimension = XAO::XaoUtils::stringToDimension(aDimensionString);
-    // get tables and their type
-    std::shared_ptr<ModelAPI_AttributeTables> aTables = aFieldFeature->tables("values");
-    std::string aTypeString = ExchangePlugin_Tools::valuesType2xaoType(aTables->type());
-    XAO::Type aFieldType = XAO::XaoUtils::stringToFieldType(aTypeString);
-
-    XAO::Field* aXaoField = aXao.addField(aFieldType, aFieldDimension, aTables->columns(),
-                                          aResultField->data()->name());
-
-
-    try {
-      // set components names
-      AttributeStringArrayPtr aComponents = aFieldFeature->stringArray("components_names");
-      for(int aComp = 0; aComp < aComponents->size(); aComp++) {
-        std::string aName = aComponents->value(aComp);
-        aXaoField->setComponentName(aComp, aName);
-      }
-
-      AttributeIntArrayPtr aStamps = aFieldFeature->intArray("stamps");
-      for (int aStepIndex = 0; aStepIndex < aTables->tables(); aStepIndex++) {
-        XAO::Step* aStep = aXaoField->addNewStep(aStepIndex);
-        aStep->setStep(aStepIndex);
-        int aStampIndex = aStamps->value(aStepIndex);
-        aStep->setStamp(aStampIndex);
-        int aNumElements = isWholePart ? aXaoField->countElements() : aTables->rows();
-        int aNumComps = aTables->columns();
-        std::set<int> aFilledIDs; // to fill the rest by defaults
-        // omit default values first row
-        for(int aRow = isWholePart ? 0 : 1; aRow < aNumElements; aRow++) {
-          for(int aCol = 0; aCol < aNumComps; aCol++) {
-            int anElementID = 0;
-            if (!isWholePart) {
-              // element index actually is the ID of the selection
-              AttributeSelectionPtr aSelection = aSelectionList->value(aRow - 1);
-              int aReferenceID = GeomAlgoAPI_CompoundBuilder::id(aShape, aSelection->value());
-              if (aReferenceID == 0) // selected value does not found in the exported shape
-                continue;
-
-              std::string aReferenceString = XAO::XaoUtils::intToString(aReferenceID);
-              anElementID =
-                aXao.getGeometry()->getElementIndexByReference(aFieldDimension, aReferenceString);
-            }
+    // fields
+    int aFieldCount = (*aDoc)->size(ModelAPI_ResultField::group());
+    for (int aFieldIndex = 0; aFieldIndex < aFieldCount; ++aFieldIndex) {
+      ResultFieldPtr aResultField = std::dynamic_pointer_cast<ModelAPI_ResultField>(
+        (*aDoc)->object(ModelAPI_ResultField::group(), aFieldIndex));
+
+      FeaturePtr aFieldFeature = (*aDoc)->feature(aResultField);
+
+      AttributeSelectionListPtr aSelectionList =
+          aFieldFeature->selectionList("selected");
+      std::string aSelectionType = aSelectionList->selectionType();
+      bool isWholePart = aSelectionType == "part";
+      // skip field not used in results
+      if (!isWholePart &&
+          !ModelAPI_Tools::isInResults(aSelectionList, aResults, allResultsCashed))
+        continue;
 
-            ModelAPI_AttributeTables::Value aVal = aTables->value(
-              isWholePart ? 0 : aRow, aCol, aStepIndex);
-            std::string aStrVal = valToString(aVal, aTables->type());
-            aStep->setStringValue(isWholePart ? aRow : anElementID, aCol, aStrVal);
-            aFilledIDs.insert(anElementID);
-          }
+      // conversion of dimension
+      std::string aDimensionString =
+        ExchangePlugin_Tools::selectionType2xaoDimension(aSelectionType);
+      XAO::Dimension aFieldDimension = XAO::XaoUtils::stringToDimension(aDimensionString);
+      // get tables and their type
+      std::shared_ptr<ModelAPI_AttributeTables> aTables = aFieldFeature->tables("values");
+      std::string aTypeString = ExchangePlugin_Tools::valuesType2xaoType(aTables->type());
+      XAO::Type aFieldType = XAO::XaoUtils::stringToFieldType(aTypeString);
+
+      XAO::Field* aXaoField = aXao.addField(aFieldType, aFieldDimension, aTables->columns(),
+        Locale::Convert::toString(aResultField->data()->name()));
+
+
+      try {
+        // set components names
+        AttributeStringArrayPtr aComponents = aFieldFeature->stringArray("components_names");
+        for(int aComp = 0; aComp < aComponents->size(); aComp++) {
+          std::string aName = aComponents->value(aComp);
+          aXaoField->setComponentName(aComp, aName);
         }
-        if (!isWholePart) { // fill the rest values by default ones
-          XAO::GeometricElementList::iterator allElem = aXao.getGeometry()->begin(aFieldDimension);
-          for(; allElem != aXao.getGeometry()->end(aFieldDimension); allElem++) {
-            if (aFilledIDs.find(allElem->first) != aFilledIDs.end())
-              continue;
+
+        AttributeIntArrayPtr aStamps = aFieldFeature->intArray("stamps");
+        for (int aStepIndex = 0; aStepIndex < aTables->tables(); aStepIndex++) {
+          XAO::Step* aStep = aXaoField->addNewStep(aStepIndex + 1);
+          aStep->setStep(aStepIndex + 1);
+          int aStampIndex = aStamps->value(aStepIndex);
+          aStep->setStamp(aStampIndex);
+          int aNumElements = isWholePart ? aXaoField->countElements() : aTables->rows();
+          int aNumComps = aTables->columns();
+          std::set<int> aFilledIDs; // to fill the rest by defaults
+          // omit default values first row
+          for(int aRow = isWholePart ? 0 : 1; aRow < aNumElements; aRow++) {
             for(int aCol = 0; aCol < aNumComps; aCol++) {
-              ModelAPI_AttributeTables::Value aVal = aTables->value(0, aCol, aStepIndex); // default
+              int anElementID = 0;
+              if (!isWholePart) {
+                // element index actually is the ID of the selection
+                AttributeSelectionPtr aSel = aSelectionList->value(aRow - 1);
+                int aReferenceID = GeomAlgoAPI_CompoundBuilder::id(aShape, aSel->value());
+                if (aReferenceID == 0) // selected value does not found in the exported shape
+                  continue;
+
+                std::string aReferenceString = XAO::XaoUtils::intToString(aReferenceID);
+                anElementID = aXao.getGeometry()->
+                  getElementIndexByReference(aFieldDimension, aReferenceString);
+              }
+
+              ModelAPI_AttributeTables::Value aVal = aTables->value(
+                isWholePart ? 0 : aRow, aCol, aStepIndex);
               std::string aStrVal = valToString(aVal, aTables->type());
-              aStep->setStringValue(allElem->first, aCol, aStrVal);
+              aStep->setStringValue(isWholePart ? aRow : anElementID, aCol, aStrVal);
+              aFilledIDs.insert(anElementID);
+            }
+          }
+          if (!isWholePart) { // fill the rest values by default ones
+            XAO::GeometricElementList::iterator allElem =
+              aXao.getGeometry()->begin(aFieldDimension);
+            for(; allElem != aXao.getGeometry()->end(aFieldDimension); allElem++) {
+              if (aFilledIDs.find(allElem->first) != aFilledIDs.end())
+                continue;
+              for(int aCol = 0; aCol < aNumComps; aCol++) {
+                // default value
+                ModelAPI_AttributeTables::Value aVal = aTables->value(0, aCol, aStepIndex);
+                std::string aStrVal = valToString(aVal, aTables->type());
+                aStep->setStringValue(allElem->first, aCol, aStrVal);
+              }
             }
           }
         }
+      } catch (XAO::XAO_Exception& e) {
+        // LCOV_EXCL_START
+        std::string msg = "An error occurred while exporting field " +
+          Locale::Convert::toString(aResultField->data()->name());
+        msg += ".\n";
+        msg += e.what();
+        msg += "\n";
+        msg += "=> skipping this field from XAO export.";
+        Events_InfoMessage("ExportFeature", msg, this).send();
+        aXao.removeField(aXaoField);
+        // LCOV_EXCL_STOP
       }
-    } catch (XAO::XAO_Exception& e) {
-      // LCOV_EXCL_START
-      std::string msg = "An error occurred while exporting field " + aResultField->data()->name();
-      msg += ".\n";
-      msg += e.what();
-      msg += "\n";
-      msg += "=> skipping this field from XAO export.";
-      Events_InfoMessage("ExportFeature", msg, this).send();
-      aXao.removeField(aXaoField);
-      // LCOV_EXCL_STOP
     }
   }
 
@@ -486,3 +578,28 @@ void ExchangePlugin_ExportFeature::exportXAO(const std::string& theFileName)
   }
 // LCOV_EXCL_STOP
 }
+
+bool ExchangePlugin_ExportFeature::isMacro() const
+{
+  if (!data().get() || !data()->isValid())
+    return false;
+  ExchangePlugin_ExportFeature* aThis = ((ExchangePlugin_ExportFeature*)(this));
+  AttributeStringPtr aFormatAttr = aThis->string(FILE_FORMAT_ID());
+  std::string aFormat(aFormatAttr.get() ? aFormatAttr->value() : "");
+
+  if (aFormat.empty()) { // get default format for the extension
+    AttributeStringPtr aFilePathAttr = aThis->string(FILE_PATH_ID());
+    std::string aFilePath = aFilePathAttr->value();
+    if (!aFilePath.empty()) {
+      std::string anExtension = GeomAlgoAPI_Tools::File_Tools::extension(aFilePath);
+      aFormat = anExtension;
+    }
+  }
+
+  if (aFormat == "XAO") { // on export to GEOM the selection attribute is filled - this is
+                          // an exceptional case where export to XAO feature must be kept
+    AttributeSelectionListPtr aList = aThis->selectionList(XAO_SELECTION_LIST_ID());
+    return !aList->isInitialized() || aList->size() == 0;
+  }
+  return true;
+}