1 // Copyright (C) 2014-2019 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include <ExchangePlugin_ExportFeature.h>
30 #include <Config_Common.h>
31 #include <Config_PropManager.h>
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>
40 #include <GeomAPI_Shape.h>
41 #include <GeomAPI_ShapeExplorer.h>
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>
59 #include <Events_InfoMessage.h>
61 #include <XAO_Group.hxx>
62 #include <XAO_Field.hxx>
63 #include <XAO_Xao.hxx>
64 #include <XAO_Geometry.hxx>
66 #include <ExchangePlugin_Tools.h>
68 ExchangePlugin_ExportFeature::ExchangePlugin_ExportFeature()
72 ExchangePlugin_ExportFeature::~ExchangePlugin_ExportFeature()
74 // TODO Auto-generated destructor stub
78 * Request for initialization of data model of the feature: adding all attributes
80 void ExchangePlugin_ExportFeature::initAttributes()
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());
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());
105 void ExchangePlugin_ExportFeature::attributeChanged(const std::string& theID)
107 if (theID == XAO_FILE_PATH_ID()) {
108 string(ExchangePlugin_ExportFeature::FILE_PATH_ID())->setValue(
109 string(ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID())->value());
114 * Computes or recomputes the results
116 void ExchangePlugin_ExportFeature::execute()
118 AttributeStringPtr aFormatAttr =
119 this->string(ExchangePlugin_ExportFeature::FILE_FORMAT_ID());
120 std::string aFormat = aFormatAttr->value();
122 AttributeStringPtr aFilePathAttr =
123 this->string(ExchangePlugin_ExportFeature::FILE_PATH_ID());
124 std::string aFilePath = aFilePathAttr->value();
125 if (aFilePath.empty())
128 exportFile(aFilePath, aFormat);
131 void ExchangePlugin_ExportFeature::exportFile(const std::string& theFileName,
132 const std::string& theFormat)
134 std::string aFormatName = theFormat;
136 if (aFormatName.empty()) { // get default format for the extension
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";
146 aFormatName = anExtension;
150 if (aFormatName == "XAO") {
151 exportXAO(theFileName);
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);
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);
172 // Perform the export
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);
182 anError = "Unsupported format: " + aFormatName;
185 if (!anError.empty()) {
186 setError("An error occurred while exporting " + theFileName + ": " + anError);
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
196 case ModelAPI_AttributeTables::BOOLEAN:
197 aStr<<(theVal.myBool ? "true" : "false");
199 case ModelAPI_AttributeTables::INTEGER:
202 case ModelAPI_AttributeTables::DOUBLE:
203 aStr<<theVal.myDouble;
205 case ModelAPI_AttributeTables::STRING:
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)
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))
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));
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
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));
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())
268 GeomShapePtr aGroupResShape = aSelFeature->firstResult()->shape();
270 std::set<ResultPtr>::iterator allResultsIter = theCashedResults.begin();
271 for(; allResultsIter != theCashedResults.end(); allResultsIter++) {
272 GeomShapePtr aResultShape = (*allResultsIter)->shape();
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
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))
294 } else if (aSelected.get() && theCashedResults.count(aSelected))
300 void ExchangePlugin_ExportFeature::exportXAO(const std::string& theFileName)
309 std::string anAuthor = string(ExchangePlugin_ExportFeature::XAO_AUTHOR_ID())->value();
310 aXao.setAuthor(anAuthor);
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
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();
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();
338 aDocuments.push_back(aPartDoc);
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())
351 aShapes.push_back(aResultBody->shape());
352 aResults.push_back(aResultBody);
355 if (aShapes.empty()) {
356 setError("No shapes to export");
361 GeomShapePtr aShape = (aShapes.size() == 1)
363 : GeomAlgoAPI_CompoundBuilder::compound(aShapes);
365 SetShapeToXAO(aShape, &aXao, anError);
367 if (!anError.empty()) {
368 setError("An error occurred while exporting " + theFileName + ": " + anError);
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();
380 aXao.getGeometry()->setName(aGeometryName);
382 std::set<ResultPtr> allResultsCashed; // cash to speed up searching in all results selected
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++) {
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())
397 FeaturePtr aGroupFeature = (*aDoc)->feature(aResultGroup);
399 AttributeSelectionListPtr aSelectionList =
400 aGroupFeature->selectionList("group_list");
401 if (!isInResults(aSelectionList, aResults, allResultsCashed))// skip group not used in result
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);
411 XAO::Group* aXaoGroup = aXao.addGroup(aGroupDimension,
412 aResultGroup->data()->name());
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
420 std::string aReferenceString = XAO::XaoUtils::intToString(aReferenceID);
422 aXao.getGeometry()->getElementIndexByReference(aGroupDimension, aReferenceString);
423 aXaoGroup->add(anElementID);
425 } catch (XAO::XAO_Exception& e) {
427 std::string msg = "An error occurred while exporting group " +
428 aResultGroup->data()->name();
432 msg += "=> skipping this group from XAO export.";
433 Events_InfoMessage("ExportFeature", msg, this).send();
434 aXao.removeGroup(aXaoGroup);
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));
445 FeaturePtr aFieldFeature = (*aDoc)->feature(aResultField);
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))
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);
464 XAO::Field* aXaoField = aXao.addField(aFieldType, aFieldDimension, aTables->columns(),
465 aResultField->data()->name());
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);
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++) {
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
496 std::string aReferenceString = XAO::XaoUtils::intToString(aReferenceID);
497 anElementID = aXao.getGeometry()->
498 getElementIndexByReference(aFieldDimension, aReferenceString);
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);
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())
514 for(int aCol = 0; aCol < aNumComps; aCol++) {
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);
523 } catch (XAO::XAO_Exception& e) {
525 std::string msg = "An error occurred while exporting field " +
526 aResultField->data()->name();
530 msg += "=> skipping this field from XAO export.";
531 Events_InfoMessage("ExportFeature", msg, this).send();
532 aXao.removeField(aXaoField);
539 XAOExport(theFileName, &aXao, anError);
541 if (!anError.empty()) {
542 setError("An error occurred while exporting " + theFileName + ": " + anError);
547 } catch (XAO::XAO_Exception& e) {
548 std::string anError = e.what();
549 setError("An error occurred while exporting " + theFileName + ": " + anError);
555 bool ExchangePlugin_ExportFeature::isMacro() const
557 if (!data().get() || !data()->isValid())
559 ExchangePlugin_ExportFeature* aThis = ((ExchangePlugin_ExportFeature*)(this));
560 AttributeStringPtr aFormatAttr = aThis->string(FILE_FORMAT_ID());
561 std::string aFormat(aFormatAttr.get() ? aFormatAttr->value() : "");
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;
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;