Salome HOME
Improve code coverage for elliptic arcs.
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_ExportFeature.cpp
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include <ExchangePlugin_ExportFeature.h>
21
22 #include <algorithm>
23 #include <iterator>
24 #include <string>
25 #ifdef _DEBUG
26 #include <iostream>
27 #include <ostream>
28 #endif
29
30 #include <Config_Common.h>
31 #include <Config_PropManager.h>
32
33 #include <GeomAlgoAPI_BREPExport.h>
34 #include <GeomAlgoAPI_CompoundBuilder.h>
35 #include <GeomAlgoAPI_IGESExport.h>
36 #include <GeomAlgoAPI_STEPExport.h>
37 #include <GeomAlgoAPI_Tools.h>
38 #include <GeomAlgoAPI_XAOExport.h>
39
40 #include <GeomAPI_Shape.h>
41 #include <GeomAPI_ShapeExplorer.h>
42
43 #include <ModelAPI_AttributeSelectionList.h>
44 #include <ModelAPI_AttributeString.h>
45 #include <ModelAPI_AttributeStringArray.h>
46 #include <ModelAPI_AttributeIntArray.h>
47 #include <ModelAPI_AttributeTables.h>
48 #include <ModelAPI_Data.h>
49 #include <ModelAPI_Document.h>
50 #include <ModelAPI_Object.h>
51 #include <ModelAPI_ResultBody.h>
52 #include <ModelAPI_ResultPart.h>
53 #include <ModelAPI_ResultGroup.h>
54 #include <ModelAPI_ResultField.h>
55 #include <ModelAPI_Session.h>
56 #include <ModelAPI_Validator.h>
57 #include <ModelAPI_Tools.h>
58
59 #include <Events_InfoMessage.h>
60
61 #include <XAO_Group.hxx>
62 #include <XAO_Field.hxx>
63 #include <XAO_Xao.hxx>
64 #include <XAO_Geometry.hxx>
65
66 #include <ExchangePlugin_Tools.h>
67
68 ExchangePlugin_ExportFeature::ExchangePlugin_ExportFeature()
69 {
70 }
71
72 ExchangePlugin_ExportFeature::~ExchangePlugin_ExportFeature()
73 {
74   // TODO Auto-generated destructor stub
75 }
76
77 /*
78  * Request for initialization of data model of the feature: adding all attributes
79  */
80 void ExchangePlugin_ExportFeature::initAttributes()
81 {
82   data()->addAttribute(ExchangePlugin_ExportFeature::EXPORT_TYPE_ID(),
83     ModelAPI_AttributeString::typeId());
84   data()->addAttribute(ExchangePlugin_ExportFeature::FILE_PATH_ID(),
85     ModelAPI_AttributeString::typeId());
86   data()->addAttribute(ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID(),
87     ModelAPI_AttributeString::typeId());
88   data()->addAttribute(ExchangePlugin_ExportFeature::FILE_FORMAT_ID(),
89     ModelAPI_AttributeString::typeId());
90   data()->addAttribute(ExchangePlugin_ExportFeature::SELECTION_LIST_ID(),
91     ModelAPI_AttributeSelectionList::typeId());
92   data()->addAttribute(ExchangePlugin_ExportFeature::XAO_AUTHOR_ID(),
93     ModelAPI_AttributeString::typeId());
94   data()->addAttribute(ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID(),
95     ModelAPI_AttributeString::typeId());
96
97   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(),
98     ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID());
99   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(),
100     ExchangePlugin_ExportFeature::XAO_AUTHOR_ID());
101   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(),
102     ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID());
103 }
104
105 void ExchangePlugin_ExportFeature::attributeChanged(const std::string& theID)
106 {
107   if (theID == XAO_FILE_PATH_ID()) {
108     string(ExchangePlugin_ExportFeature::FILE_PATH_ID())->setValue(
109       string(ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID())->value());
110   }
111 }
112
113 /*
114  * Computes or recomputes the results
115  */
116 void ExchangePlugin_ExportFeature::execute()
117 {
118   AttributeStringPtr aFormatAttr =
119       this->string(ExchangePlugin_ExportFeature::FILE_FORMAT_ID());
120   std::string aFormat = aFormatAttr->value();
121
122   AttributeStringPtr aFilePathAttr =
123       this->string(ExchangePlugin_ExportFeature::FILE_PATH_ID());
124   std::string aFilePath = aFilePathAttr->value();
125   if (aFilePath.empty())
126     return;
127
128   exportFile(aFilePath, aFormat);
129 }
130
131 void ExchangePlugin_ExportFeature::exportFile(const std::string& theFileName,
132                                               const std::string& theFormat)
133 {
134   std::string aFormatName = theFormat;
135
136   if (aFormatName.empty()) { // get default format for the extension
137     // ".brep" -> "BREP"
138     std::string anExtension = GeomAlgoAPI_Tools::File_Tools::extension(theFileName);
139     if (anExtension == "BREP" || anExtension == "BRP") {
140       aFormatName = "BREP";
141     } else if (anExtension == "STEP" || anExtension == "STP") {
142       aFormatName = "STEP";
143     } else if (anExtension == "IGES" || anExtension == "IGS") {
144       aFormatName = "IGES-5.1";
145     } else {
146       aFormatName = anExtension;
147     }
148   }
149
150   if (aFormatName == "XAO") {
151     exportXAO(theFileName);
152     return;
153   }
154
155   // make shape for export from selected shapes
156   AttributeSelectionListPtr aSelectionListAttr =
157       this->selectionList(ExchangePlugin_ExportFeature::SELECTION_LIST_ID());
158   std::list<GeomShapePtr> aShapes;
159   for (int i = 0, aSize = aSelectionListAttr->size(); i < aSize; ++i) {
160     AttributeSelectionPtr anAttrSelection = aSelectionListAttr->value(i);
161     std::shared_ptr<GeomAPI_Shape> aCurShape = anAttrSelection->value();
162     if (aCurShape.get() == NULL)
163       aCurShape = anAttrSelection->context()->shape();
164     if (aCurShape.get() != NULL)
165       aShapes.push_back(aCurShape);
166   }
167
168   // Store compound if we have more than one shape.
169   std::shared_ptr<GeomAPI_Shape> aShape =
170     aShapes.size() == 1 ? aShapes.front() : GeomAlgoAPI_CompoundBuilder::compound(aShapes);
171
172   // Perform the export
173   std::string anError;
174   bool aResult = false;
175   if (aFormatName == "BREP") {
176     aResult = BREPExport(theFileName, aFormatName, aShape, anError);
177   } else if (aFormatName == "STEP") {
178     aResult = STEPExport(theFileName, aFormatName, aShape, anError);
179   } else if (aFormatName.substr(0, 4) == "IGES") {
180     aResult = IGESExport(theFileName, aFormatName, aShape, anError);
181   } else {
182     anError = "Unsupported format: " + aFormatName;
183   }
184
185   if (!anError.empty()) {
186     setError("An error occurred while exporting " + theFileName + ": " + anError);
187     return;
188   }
189 }
190
191 /// Returns XAO string by the value from the table
192 static std::string valToString(const ModelAPI_AttributeTables::Value& theVal,
193   const ModelAPI_AttributeTables::ValueType& theType) {
194   std::ostringstream aStr; // the resulting string value
195   switch(theType) {
196   case ModelAPI_AttributeTables::BOOLEAN:
197     aStr<<(theVal.myBool ? "true" : "false");
198     break;
199   case ModelAPI_AttributeTables::INTEGER:
200     aStr<<theVal.myInt;
201     break;
202   case ModelAPI_AttributeTables::DOUBLE:
203     aStr<<theVal.myDouble;
204     break;
205   case ModelAPI_AttributeTables::STRING:
206     aStr<<theVal.myStr;
207     break;
208   }
209   return aStr.str();
210 }
211
212 /// Returns true if something in selection is presented in the results list
213 static bool isInResults(AttributeSelectionListPtr theSelection,
214                         const std::list<ResultPtr>& theResults,
215                         std::set<ResultPtr>& theCashedResults)
216 {
217   // collect all results into a cashed set
218   if (theCashedResults.empty()) {
219     std::list<ResultPtr> aResults;
220     std::list<ResultPtr>::const_iterator aRes = theResults.cbegin();
221     for(; aRes != theResults.cend(); aRes++) {
222       if (theCashedResults.count(*aRes))
223         continue;
224       else
225         theCashedResults.insert(*aRes);
226       if ((*aRes)->groupName() == ModelAPI_ResultBody::group()) {
227         ResultBodyPtr aResBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aRes);
228         std::list<ResultPtr> aResults;
229         ModelAPI_Tools::allSubs(aResBody, aResults, false);
230         for(std::list<ResultPtr>::iterator aR = aResults.begin(); aR != aResults.end(); aR++) {
231           theCashedResults.insert(std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aR));
232         }
233       } else if ((*aRes)->groupName() == ModelAPI_ResultPart::group()) { // all results of the part
234         ResultPartPtr aResPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(*aRes);
235         DocumentPtr aPartDoc = aResPart->partDoc();
236         if (!aPartDoc.get() || !aPartDoc->isOpened()) { // document is not accessible
237           return false;
238         }
239         int aBodyCount = aPartDoc->size(ModelAPI_ResultBody::group());
240         for (int aBodyIndex = 0; aBodyIndex < aBodyCount; ++aBodyIndex) {
241           ResultBodyPtr aResBody =
242             std::dynamic_pointer_cast<ModelAPI_ResultBody>(
243               aPartDoc->object(ModelAPI_ResultBody::group(), aBodyIndex));
244           if (aResBody.get()) {
245             theCashedResults.insert(aResBody);
246             std::list<ResultPtr> aResults;
247             ModelAPI_Tools::allSubs(aResBody, aResults, false);
248             for(std::list<ResultPtr>::iterator aR = aResults.begin(); aR != aResults.end(); aR++) {
249               theCashedResults.insert(std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aR));
250             }
251           }
252         }
253       }
254     }
255   }
256   // if context is in results, return true
257   for(int a = 0; a < theSelection->size(); a++) {
258     AttributeSelectionPtr anAttr = theSelection->value(a);
259     ResultPtr aContext = anAttr->context();
260     // check is it group selected for groups BOP
261     if (aContext.get() && aContext->groupName() == ModelAPI_ResultGroup::group()) {
262       // it is impossible by used results check which result is used in this group result,
263       // so check the results shapes is it in results of this document or not
264       FeaturePtr aSelFeature =
265         std::dynamic_pointer_cast<ModelAPI_Feature>(theSelection->owner());
266       if (!aSelFeature.get() || aSelFeature->results().empty())
267         continue;
268       GeomShapePtr aGroupResShape = aSelFeature->firstResult()->shape();
269
270       std::set<ResultPtr>::iterator allResultsIter = theCashedResults.begin();
271       for(; allResultsIter != theCashedResults.end(); allResultsIter++) {
272         GeomShapePtr aResultShape = (*allResultsIter)->shape();
273
274         GeomAPI_Shape::ShapeType aType =
275           GeomAPI_Shape::shapeTypeByStr(theSelection->selectionType());
276         GeomAPI_ShapeExplorer aGroupResExp(aGroupResShape, aType);
277         for(; aGroupResExp.more(); aGroupResExp.next()) {
278           if (aResultShape->isSubShape(aGroupResExp.current(), false))
279             return true; // at least one shape of the group is in the used results
280         }
281       }
282     }
283     ResultBodyPtr aSelected = std::dynamic_pointer_cast<ModelAPI_ResultBody>(anAttr->context());
284     if (!aSelected.get()) { // try to get selected feature and all its results
285       FeaturePtr aContextFeature = anAttr->contextFeature();
286       if (aContextFeature.get() && !aContextFeature->results().empty()) {
287         const std::list<ResultPtr>& allResluts = aContextFeature->results();
288         std::list<ResultPtr>::const_iterator aResIter = allResluts.cbegin();
289         for(; aResIter != allResluts.cend(); aResIter++) {
290           if (aResIter->get() && theCashedResults.count(*aResIter))
291             return true;
292         }
293       }
294     } else if (aSelected.get() && theCashedResults.count(aSelected))
295       return true;
296   }
297   return false;
298 }
299
300 void ExchangePlugin_ExportFeature::exportXAO(const std::string& theFileName)
301 {
302   try {
303
304   std::string anError;
305   XAO::Xao aXao;
306
307   // author
308
309   std::string anAuthor = string(ExchangePlugin_ExportFeature::XAO_AUTHOR_ID())->value();
310   aXao.setAuthor(anAuthor);
311
312   // make shape for export from all results
313   std::list<GeomShapePtr> aShapes;
314   std::list<ResultPtr> aResults;
315   std::list<DocumentPtr> aDocuments; /// documents of Parts selected and used in export
316
317   AttributeSelectionListPtr aSelection = selectionList(SELECTION_LIST_ID());
318   bool aIsSelection = aSelection->isInitialized() && aSelection->size() > 0;
319   if (aIsSelection) { // a mode for export to geom result by result
320     for(int a = 0; a < aSelection->size(); a++) {
321       AttributeSelectionPtr anAttr = aSelection->value(a);
322       ResultPtr aBodyContext =
323         std::dynamic_pointer_cast<ModelAPI_Result>(anAttr->context());
324       if (aBodyContext.get() && !aBodyContext->isDisabled() && aBodyContext->shape().get()) {
325         aResults.push_back(aBodyContext);
326         GeomShapePtr aShape = anAttr->value();
327         if (!aShape.get())
328           aShape = aBodyContext->shape();
329         aShapes.push_back(aShape);
330         if (aBodyContext->groupName() == ModelAPI_ResultPart::group()) {
331           ResultPartPtr aResPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aBodyContext);
332           DocumentPtr aPartDoc = aResPart->partDoc();
333           if (!aPartDoc.get() || !aPartDoc->isOpened()) { // document is not accessible
334             std::string msg = "Can not export XAO for not loaded part";
335             Events_InfoMessage("ExportFeature", msg, this).send();
336             return;
337           } else {
338             aDocuments.push_back(aPartDoc);
339           }
340         }
341       }
342     }
343   } else {
344     int aBodyCount = document()->size(ModelAPI_ResultBody::group());
345     for (int aBodyIndex = 0; aBodyIndex < aBodyCount; ++aBodyIndex) {
346       ResultBodyPtr aResultBody =
347           std::dynamic_pointer_cast<ModelAPI_ResultBody>(
348               document()->object(ModelAPI_ResultBody::group(), aBodyIndex));
349       if (!aResultBody.get())
350         continue;
351       aShapes.push_back(aResultBody->shape());
352       aResults.push_back(aResultBody);
353     }
354   }
355   if (aShapes.empty()) {
356     setError("No shapes to export");
357     return;
358   }
359
360
361   GeomShapePtr aShape = (aShapes.size() == 1)
362       ? *aShapes.begin()
363       : GeomAlgoAPI_CompoundBuilder::compound(aShapes);
364
365   SetShapeToXAO(aShape, &aXao, anError);
366
367   if (!anError.empty()) {
368     setError("An error occurred while exporting " + theFileName + ": " + anError);
369     return;
370   }
371
372   // geometry name
373   std::string aGeometryName = string(ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID())->value();
374   if (aGeometryName.empty() && aResults.size() == 1) {
375     // get the name from the first result
376     ResultPtr aResultBody = *aResults.begin();
377     aGeometryName = aResultBody->data()->name();
378   }
379
380   aXao.getGeometry()->setName(aGeometryName);
381
382   std::set<ResultPtr> allResultsCashed; // cash to speed up searching in all results selected
383
384   // iterate all documents used
385   if (aDocuments.empty())
386     aDocuments.push_back(document());
387   std::list<DocumentPtr>::iterator aDoc = aDocuments.begin();
388   for(; aDoc != aDocuments.end(); aDoc++) {
389     // groups
390     int aGroupCount = (*aDoc)->size(ModelAPI_ResultGroup::group());
391     for (int aGroupIndex = 0; aGroupIndex < aGroupCount; ++aGroupIndex) {
392       ResultGroupPtr aResultGroup = std::dynamic_pointer_cast<ModelAPI_ResultGroup>(
393           (*aDoc)->object(ModelAPI_ResultGroup::group(), aGroupIndex));
394       if (!aResultGroup.get() || !aResultGroup->shape().get())
395         continue;
396
397       FeaturePtr aGroupFeature = (*aDoc)->feature(aResultGroup);
398
399       AttributeSelectionListPtr aSelectionList =
400           aGroupFeature->selectionList("group_list");
401       if (!isInResults(aSelectionList, aResults, allResultsCashed))// skip group not used in result
402         continue;
403
404       // conversion of dimension
405       std::string aSelectionType = aSelectionList->selectionType();
406       GeomAPI_Shape::ShapeType aSelType = GeomAPI_Shape::shapeTypeByStr(aSelectionType);
407       std::string aDimensionString =
408         ExchangePlugin_Tools::selectionType2xaoDimension(aSelectionType);
409       XAO::Dimension aGroupDimension = XAO::XaoUtils::stringToDimension(aDimensionString);
410
411       XAO::Group* aXaoGroup = aXao.addGroup(aGroupDimension,
412                                             aResultGroup->data()->name());
413
414       try {
415         GeomAPI_ShapeExplorer aGroupResExplorer(aResultGroup->shape(), aSelType);
416         for(; aGroupResExplorer.more(); aGroupResExplorer.next()) {
417           int aReferenceID = GeomAlgoAPI_CompoundBuilder::id(aShape, aGroupResExplorer.current());
418           if (aReferenceID == 0) // selected value does not found in the exported shape
419             continue;
420           std::string aReferenceString = XAO::XaoUtils::intToString(aReferenceID);
421           int anElementID =
422             aXao.getGeometry()->getElementIndexByReference(aGroupDimension, aReferenceString);
423           aXaoGroup->add(anElementID);
424         }
425       } catch (XAO::XAO_Exception& e) {
426         // LCOV_EXCL_START
427         std::string msg = "An error occurred while exporting group " +
428           aResultGroup->data()->name();
429         msg += ".\n";
430         msg += e.what();
431         msg += "\n";
432         msg += "=> skipping this group from XAO export.";
433         Events_InfoMessage("ExportFeature", msg, this).send();
434         aXao.removeGroup(aXaoGroup);
435         // LCOV_EXCL_STOP
436       }
437     }
438
439     // fields
440     int aFieldCount = (*aDoc)->size(ModelAPI_ResultField::group());
441     for (int aFieldIndex = 0; aFieldIndex < aFieldCount; ++aFieldIndex) {
442       ResultFieldPtr aResultField = std::dynamic_pointer_cast<ModelAPI_ResultField>(
443         (*aDoc)->object(ModelAPI_ResultField::group(), aFieldIndex));
444
445       FeaturePtr aFieldFeature = (*aDoc)->feature(aResultField);
446
447       AttributeSelectionListPtr aSelectionList =
448           aFieldFeature->selectionList("selected");
449       std::string aSelectionType = aSelectionList->selectionType();
450       bool isWholePart = aSelectionType == "part";
451       // skip field not used in results
452       if (!isWholePart && !isInResults(aSelectionList, aResults, allResultsCashed))
453         continue;
454
455       // conversion of dimension
456       std::string aDimensionString =
457         ExchangePlugin_Tools::selectionType2xaoDimension(aSelectionType);
458       XAO::Dimension aFieldDimension = XAO::XaoUtils::stringToDimension(aDimensionString);
459       // get tables and their type
460       std::shared_ptr<ModelAPI_AttributeTables> aTables = aFieldFeature->tables("values");
461       std::string aTypeString = ExchangePlugin_Tools::valuesType2xaoType(aTables->type());
462       XAO::Type aFieldType = XAO::XaoUtils::stringToFieldType(aTypeString);
463
464       XAO::Field* aXaoField = aXao.addField(aFieldType, aFieldDimension, aTables->columns(),
465                                             aResultField->data()->name());
466
467
468       try {
469         // set components names
470         AttributeStringArrayPtr aComponents = aFieldFeature->stringArray("components_names");
471         for(int aComp = 0; aComp < aComponents->size(); aComp++) {
472           std::string aName = aComponents->value(aComp);
473           aXaoField->setComponentName(aComp, aName);
474         }
475
476         AttributeIntArrayPtr aStamps = aFieldFeature->intArray("stamps");
477         for (int aStepIndex = 0; aStepIndex < aTables->tables(); aStepIndex++) {
478           XAO::Step* aStep = aXaoField->addNewStep(aStepIndex + 1);
479           aStep->setStep(aStepIndex + 1);
480           int aStampIndex = aStamps->value(aStepIndex);
481           aStep->setStamp(aStampIndex);
482           int aNumElements = isWholePart ? aXaoField->countElements() : aTables->rows();
483           int aNumComps = aTables->columns();
484           std::set<int> aFilledIDs; // to fill the rest by defaults
485           // omit default values first row
486           for(int aRow = isWholePart ? 0 : 1; aRow < aNumElements; aRow++) {
487             for(int aCol = 0; aCol < aNumComps; aCol++) {
488               int anElementID = 0;
489               if (!isWholePart) {
490                 // element index actually is the ID of the selection
491                 AttributeSelectionPtr aSelection = aSelectionList->value(aRow - 1);
492                 int aReferenceID = GeomAlgoAPI_CompoundBuilder::id(aShape, aSelection->value());
493                 if (aReferenceID == 0) // selected value does not found in the exported shape
494                   continue;
495
496                 std::string aReferenceString = XAO::XaoUtils::intToString(aReferenceID);
497                 anElementID = aXao.getGeometry()->
498                   getElementIndexByReference(aFieldDimension, aReferenceString);
499               }
500
501               ModelAPI_AttributeTables::Value aVal = aTables->value(
502                 isWholePart ? 0 : aRow, aCol, aStepIndex);
503               std::string aStrVal = valToString(aVal, aTables->type());
504               aStep->setStringValue(isWholePart ? aRow : anElementID, aCol, aStrVal);
505               aFilledIDs.insert(anElementID);
506             }
507           }
508           if (!isWholePart) { // fill the rest values by default ones
509             XAO::GeometricElementList::iterator allElem =
510               aXao.getGeometry()->begin(aFieldDimension);
511             for(; allElem != aXao.getGeometry()->end(aFieldDimension); allElem++) {
512               if (aFilledIDs.find(allElem->first) != aFilledIDs.end())
513                 continue;
514               for(int aCol = 0; aCol < aNumComps; aCol++) {
515                 // default value
516                 ModelAPI_AttributeTables::Value aVal = aTables->value(0, aCol, aStepIndex);
517                 std::string aStrVal = valToString(aVal, aTables->type());
518                 aStep->setStringValue(allElem->first, aCol, aStrVal);
519               }
520             }
521           }
522         }
523       } catch (XAO::XAO_Exception& e) {
524         // LCOV_EXCL_START
525         std::string msg = "An error occurred while exporting field " +
526           aResultField->data()->name();
527         msg += ".\n";
528         msg += e.what();
529         msg += "\n";
530         msg += "=> skipping this field from XAO export.";
531         Events_InfoMessage("ExportFeature", msg, this).send();
532         aXao.removeField(aXaoField);
533         // LCOV_EXCL_STOP
534       }
535     }
536   }
537
538   // exporting
539   XAOExport(theFileName, &aXao, anError);
540
541   if (!anError.empty()) {
542     setError("An error occurred while exporting " + theFileName + ": " + anError);
543     return;
544   }
545
546 // LCOV_EXCL_START
547   } catch (XAO::XAO_Exception& e) {
548     std::string anError = e.what();
549     setError("An error occurred while exporting " + theFileName + ": " + anError);
550     return;
551   }
552 // LCOV_EXCL_STOP
553 }
554
555 bool ExchangePlugin_ExportFeature::isMacro() const
556 {
557   if (!data().get() || !data()->isValid())
558     return false;
559   ExchangePlugin_ExportFeature* aThis = ((ExchangePlugin_ExportFeature*)(this));
560   AttributeStringPtr aFormatAttr = aThis->string(FILE_FORMAT_ID());
561   std::string aFormat(aFormatAttr.get() ? aFormatAttr->value() : "");
562
563   if (aFormat.empty()) { // get default format for the extension
564     AttributeStringPtr aFilePathAttr = aThis->string(FILE_PATH_ID());
565     std::string aFilePath = aFilePathAttr->value();
566     if (!aFilePath.empty()) {
567       std::string anExtension = GeomAlgoAPI_Tools::File_Tools::extension(aFilePath);
568       aFormat = anExtension;
569     }
570   }
571
572   if (aFormat == "XAO") { // on export to GEOm the selection attribute is filled - this is
573                           // an exceptional case where export to XAO feature must be kept
574     AttributeSelectionListPtr aList = aThis->selectionList(SELECTION_LIST_ID());
575     return !aList->isInitialized() || aList->size() == 0;
576   }
577   return true;
578 }