1 // Copyright (C) 2016-20xx CEA/DEN, EDF R&D -->
3 // File: ModelHighAPI_Dumper.cpp
4 // Created: 1 August 2016
5 // Author: Artem ZHIDKOV
7 //--------------------------------------------------------------------------------------
8 #include "ModelHighAPI_Dumper.h"
10 #include <Config_PropManager.h>
12 #include <GeomAPI_Pnt.h>
13 #include <GeomAPI_Dir.h>
14 #include <GeomAPI_ShapeExplorer.h>
16 #include <GeomDataAPI_Dir.h>
17 #include <GeomDataAPI_Point.h>
18 #include <GeomDataAPI_Point2D.h>
20 #include <ModelAPI_AttributeBoolean.h>
21 #include <ModelAPI_AttributeDouble.h>
22 #include <ModelAPI_AttributeIntArray.h>
23 #include <ModelAPI_AttributeInteger.h>
24 #include <ModelAPI_AttributeRefAttr.h>
25 #include <ModelAPI_AttributeRefAttrList.h>
26 #include <ModelAPI_AttributeReference.h>
27 #include <ModelAPI_AttributeRefList.h>
28 #include <ModelAPI_AttributeSelection.h>
29 #include <ModelAPI_AttributeSelectionList.h>
30 #include <ModelAPI_AttributeString.h>
31 #include <ModelAPI_CompositeFeature.h>
32 #include <ModelAPI_Document.h>
33 #include <ModelAPI_Entity.h>
34 #include <ModelAPI_Feature.h>
35 #include <ModelAPI_Result.h>
36 #include <ModelAPI_ResultBody.h>
37 #include <ModelAPI_ResultConstruction.h>
38 #include <ModelAPI_ResultPart.h>
40 #include <PartSetPlugin_Part.h>
42 #include <OSD_OpenFile.hxx>
46 #define DEBUG_DEFLECTION
48 static int gCompositeStackDepth = 0;
50 ModelHighAPI_Dumper* ModelHighAPI_Dumper::mySelf = 0;
52 ModelHighAPI_Dumper::ModelHighAPI_Dumper()
57 void ModelHighAPI_Dumper::setInstance(ModelHighAPI_Dumper* theDumper)
63 ModelHighAPI_Dumper* ModelHighAPI_Dumper::getInstance()
68 void ModelHighAPI_Dumper::clear(bool bufferOnly)
71 myDumpBuffer << std::setprecision(16);
77 myFullDump << std::setprecision(16);
81 myFeatureCount.clear();
82 while (!myEntitiesStack.empty())
83 myEntitiesStack.pop();
87 void ModelHighAPI_Dumper::clearNotDumped()
89 myNotDumpedEntities.clear();
92 const std::string& ModelHighAPI_Dumper::name(const EntityPtr& theEntity,
93 bool theSaveNotDumped,
94 bool theUseEntityName)
96 EntityNameMap::const_iterator aFound = myNames.find(theEntity);
97 if (aFound != myNames.end())
98 return aFound->second.myCurrentName;
100 // entity is not found, store it
102 bool isDefaultName = false;
103 std::ostringstream aDefaultName;
104 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theEntity);
106 aName = aFeature->name();
107 const std::string& aKind = aFeature->getKind();
108 DocumentPtr aDoc = aFeature->document();
109 int& aNbFeatures = myFeatureCount[aDoc][aKind];
112 size_t anIndex = aName.find(aKind);
113 if (anIndex == 0 && aName[aKind.length()] == '_') { // name starts with "FeatureKind_"
114 std::string anIdStr = aName.substr(aKind.length() + 1);
115 int anId = std::stoi(anIdStr);
117 // Check number of already registered objects of such kind. Index of current object
118 // should be the same to identify feature's name as automatically generated.
119 if (aNbFeatures == anId) {
120 // name is not user-defined
121 isDefaultName = true;
125 // obtain default name for the feature
126 if (theUseEntityName)
127 aDefaultName << aName;
130 NbFeaturesMap::const_iterator aFIt = myFeatureCount.begin();
131 for (; aFIt != myFeatureCount.end(); ++aFIt) {
132 std::map<std::string, int>::const_iterator aFound = aFIt->second.find(aKind);
133 if (aFound != aFIt->second.end())
134 aFullIndex += aFound->second;
136 aDefaultName << aKind << "_" << aFullIndex;
140 myNames[theEntity] = EntityName(aDefaultName.str(), aName, isDefaultName);
141 if (theSaveNotDumped)
142 myNotDumpedEntities.insert(theEntity);
144 // store names of results
146 saveResultNames(aFeature);
148 return myNames[theEntity].myCurrentName;
151 const std::string& ModelHighAPI_Dumper::parentName(const FeaturePtr& theEntity)
153 const std::set<AttributePtr>& aRefs = theEntity->data()->refsToMe();
154 std::set<AttributePtr>::const_iterator aRefIt = aRefs.begin();
155 for (; aRefIt != aRefs.end(); ++aRefIt) {
156 CompositeFeaturePtr anOwner = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(
157 ModelAPI_Feature::feature((*aRefIt)->owner()));
159 return name(anOwner);
162 static const std::string DUMMY;
166 void ModelHighAPI_Dumper::saveResultNames(const FeaturePtr& theFeature)
168 // Default name of the feature
169 const std::string& aKind = theFeature->getKind();
170 DocumentPtr aDoc = theFeature->document();
171 int aNbFeatures = myFeatureCount[aDoc][aKind];
172 std::ostringstream aNameStream;
173 aNameStream << aKind << "_" << aNbFeatures;
174 std::string aFeatureName = aNameStream.str();
176 // Save only names of results which is not correspond to default feature name
177 const std::list<ResultPtr>& aResults = theFeature->results();
178 std::list<ResultPtr>::const_iterator aResIt = aResults.begin();
179 for (int i = 1; aResIt != aResults.end(); ++aResIt, ++i) {
180 bool isUserDefined = true;
181 std::string aResName = (*aResIt)->data()->name();
182 size_t anIndex = aResName.find(aFeatureName);
184 std::string aSuffix = aResName.substr(aFeatureName.length());
185 if (aSuffix.empty() && i == 1) // first result may not constain index in the name
186 isUserDefined = false;
188 if (aSuffix[0] == '_' && std::stoi(aSuffix.substr(1)) == i)
189 isUserDefined = false;
193 myNames[*aResIt] = EntityName(aResName,
194 (isUserDefined ? aResName : std::string()), !isUserDefined);
198 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_Document>& theDoc,
199 const std::string& theFileName)
201 // dump top level document feature
202 static const std::string aDocName("partSet");
203 myNames[theDoc] = EntityName(aDocName, std::string(), true);
204 *this << aDocName << " = model.moduleDocument()" << std::endl;
206 // dump subfeatures and store result to file
207 return process(theDoc) && exportTo(theFileName);
210 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_Document>& theDoc)
213 std::list<FeaturePtr> aFeatures = theDoc->allFeatures();
214 std::list<FeaturePtr>::const_iterator aFeatIt = aFeatures.begin();
215 // firstly, dump all parameters
216 for (; aFeatIt != aFeatures.end(); ++ aFeatIt)
217 dumpParameter(*aFeatIt);
218 // dump all other features
219 for (aFeatIt = aFeatures.begin(); aFeatIt != aFeatures.end(); ++aFeatIt) {
220 CompositeFeaturePtr aCompFeat = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(*aFeatIt);
221 if (aCompFeat) // iteratively process composite features
222 isOk = process(aCompFeat) && isOk;
223 else if (!isDumped(*aFeatIt)) // dump common feature
224 dumpFeature(*aFeatIt);
229 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_CompositeFeature>& theComposite, bool isForce)
231 // increase composite features stack
232 ++gCompositeStackDepth;
233 // dump composite itself
234 if (!isDumped(theComposite) || isForce)
235 dumpFeature(FeaturePtr(theComposite), isForce);
237 // sub-part is processed independently, because it provides separate document
238 if (theComposite->getKind() == PartSetPlugin_Part::ID()) {
239 // decrease composite features stack because we run into separate document
240 --gCompositeStackDepth;
242 ResultPartPtr aPartResult =
243 std::dynamic_pointer_cast<ModelAPI_ResultPart>(theComposite->lastResult());
246 DocumentPtr aSubDoc = aPartResult->partDoc();
249 // set name of document
250 const std::string& aPartName = myNames[theComposite].myCurrentName;
251 std::string aDocName = aPartName + "_doc";
252 myNames[aSubDoc] = EntityName(aDocName, std::string(), true);
254 // dump document in a separate line
255 *this << aDocName << " = " << aPartName << ".document()" << std::endl;
256 // dump features in the document
257 return process(aSubDoc);
261 bool isOk = processSubs(theComposite);
262 // decrease composite features stack
263 --gCompositeStackDepth;
268 bool ModelHighAPI_Dumper::processSubs(const std::shared_ptr<ModelAPI_CompositeFeature>& theComposite,
272 // dump all sub-features;
273 bool isSubDumped = false;
274 int aNbSubs = theComposite->numberOfSubs();
275 for (int anIndex = 0; anIndex < aNbSubs; ++anIndex) {
276 FeaturePtr aFeature = theComposite->subFeature(anIndex);
277 if (isDumped(aFeature))
281 CompositeFeaturePtr aCompFeat = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
282 if (aCompFeat) // iteratively process composite features
283 isOk = process(aCompFeat) && isOk;
285 dumpFeature(aFeature, true);
288 bool isDumpSetName = !myEntitiesStack.empty() &&
289 myEntitiesStack.top().myEntity == EntityPtr(theComposite);
290 bool isForceModelDo = isSubDumped && isDumpSetName &&
291 (myEntitiesStack.top().myUserName || !myEntitiesStack.top().myResults.empty());
292 // It is necessary for the sketch to create its result when complete (command "model.do()").
293 // This option is set by flat theDumpModelDo.
294 // However, nested sketches are rebuilt by parent feature, so, they do not need
295 // explicit call of "model.do()". This will be controlled by the depth of the stack.
296 if (isForceModelDo || (theDumpModelDo && gCompositeStackDepth <= 1))
297 *this << "model.do()" << std::endl;
299 // dump "setName" for composite feature
305 void ModelHighAPI_Dumper::dumpSubFeatureNameAndColor(const std::string theSubFeatureGet,
306 const FeaturePtr& theSubFeature)
308 name(theSubFeature, false);
309 myNames[theSubFeature] = EntityName(theSubFeatureGet, theSubFeature->name(), false);
311 // store results if they have user-defined names or colors
312 std::list<ResultPtr> aResultsWithNameOrColor;
313 const std::list<ResultPtr>& aResults = theSubFeature->results();
314 std::list<ResultPtr>::const_iterator aResIt = aResults.begin();
315 for (; aResIt != aResults.end(); ++aResIt) {
316 std::string aResName = (*aResIt)->data()->name();
317 myNames[*aResIt] = EntityName(aResName, aResName, false);
318 aResultsWithNameOrColor.push_back(*aResIt);
321 // store just dumped entity to stack
322 myEntitiesStack.push(LastDumpedEntity(theSubFeature, true, aResultsWithNameOrColor));
327 bool ModelHighAPI_Dumper::exportTo(const std::string& theFileName)
330 OSD_OpenStream(aFile, theFileName.c_str(), std::ofstream::out);
331 if (!aFile.is_open())
335 for (ModulesMap::const_iterator aModIt = myModules.begin();
336 aModIt != myModules.end(); ++aModIt) {
337 aFile << "from " << aModIt->first << " import ";
338 if (aModIt->second.empty() ||
339 aModIt->second.find(std::string()) != aModIt->second.end())
340 aFile << "*"; // import whole module
342 // import specific features
343 std::set<std::string>::const_iterator anObjIt = aModIt->second.begin();
345 for (++anObjIt; anObjIt != aModIt->second.end(); ++anObjIt)
346 aFile << ", " << *anObjIt;
350 if (!myModules.empty())
353 aFile << "import model" << std::endl << std::endl;
354 aFile << "model.begin()" << std::endl;
356 // dump collected data
357 aFile << myFullDump.str();
358 aFile << myDumpBuffer.str();
361 aFile << "model.end()" << std::endl;
369 void ModelHighAPI_Dumper::importModule(const std::string& theModuleName,
370 const std::string& theObject)
372 myModules[theModuleName].insert(theObject);
375 void ModelHighAPI_Dumper::dumpEntitySetName()
377 const LastDumpedEntity& aLastDumped = myEntitiesStack.top();
379 // dump "setName" for the entity
380 if (aLastDumped.myUserName) {
381 EntityName& anEntityNames = myNames[aLastDumped.myEntity];
382 if (!anEntityNames.myIsDefault)
383 myDumpBuffer << anEntityNames.myCurrentName << ".setName(\""
384 << anEntityNames.myUserName << "\")" << std::endl;
385 // don't dump "setName" for the entity twice
386 anEntityNames.myUserName.clear();
387 anEntityNames.myIsDefault = true;
389 // dump "setName" for results
390 std::list<ResultPtr>::const_iterator aResIt = aLastDumped.myResults.begin();
391 std::list<ResultPtr>::const_iterator aResEnd = aLastDumped.myResults.end();
392 for (; aResIt != aResEnd; ++aResIt) {
394 EntityName& anEntityNames = myNames[*aResIt];
395 if (!anEntityNames.myIsDefault) {
397 myDumpBuffer << ".setName(\"" << anEntityNames.myUserName << "\")" << std::endl;
398 // don't dump "setName" for the entity twice
399 anEntityNames.myUserName.clear();
400 anEntityNames.myIsDefault = true;
403 if (!isDefaultColor(*aResIt)) {
404 AttributeIntArrayPtr aColor = (*aResIt)->data()->intArray(ModelAPI_Result::COLOR_ID());
405 if (aColor && aColor->isInitialized()) {
407 myDumpBuffer << ".setColor(" << aColor->value(0) << ", " << aColor->value(1)
408 << ", " << aColor->value(2) << ")" << std::endl;
411 // set result deflection
412 if (!isDefaultDeflection(*aResIt)) {
413 AttributeDoublePtr aDeflectionAttr = (*aResIt)->data()->real(ModelAPI_Result::DEFLECTION_ID());
414 if(aDeflectionAttr && aDeflectionAttr->isInitialized()) {
416 myDumpBuffer << ".setDeflection(" << aDeflectionAttr->value() << ")" << std::endl;
421 myEntitiesStack.pop();
424 bool ModelHighAPI_Dumper::isDumped(const EntityPtr& theEntity) const
426 EntityNameMap::const_iterator aFound = myNames.find(theEntity);
427 return aFound != myNames.end();
430 bool ModelHighAPI_Dumper::isDefaultColor(const ResultPtr& theResult) const
432 AttributeIntArrayPtr aColor = theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
433 if (!aColor || !aColor->isInitialized())
436 std::string aSection, aName, aDefault;
437 theResult->colorConfigInfo(aSection, aName, aDefault);
439 // dump current color
440 std::ostringstream aColorInfo;
441 aColorInfo << aColor->value(0) << "," << aColor->value(1) << "," << aColor->value(2);
443 return aDefault == aColorInfo.str();
446 bool ModelHighAPI_Dumper::isDefaultDeflection(const ResultPtr& theResult) const
448 AttributeDoublePtr aDeflectionAttr = theResult->data()->real(ModelAPI_Result::DEFLECTION_ID());
449 if(!aDeflectionAttr || !aDeflectionAttr->isInitialized()) {
453 double aCurrent = aDeflectionAttr->value();
454 double aDefault = -1;
456 bool isConstruction = false;
457 std::string aResultGroup = theResult->groupName();
458 if (aResultGroup == ModelAPI_ResultConstruction::group())
459 isConstruction = true;
460 else if (aResultGroup == ModelAPI_ResultBody::group()) {
461 GeomShapePtr aGeomShape = theResult->shape();
462 if (aGeomShape.get()) {
463 // if the shape could not be exploded on faces, it contains only wires, edges, and vertices
464 // correction of deviation for them should not influence to the application performance
465 GeomAPI_ShapeExplorer anExp(aGeomShape, GeomAPI_Shape::FACE);
466 isConstruction = !anExp.more();
470 aDefault = Config_PropManager::real("Visualization", "construction_deflection",
471 ModelAPI_ResultConstruction::DEFAULT_DEFLECTION());
473 aDefault = Config_PropManager::real("Visualization", "body_deflection",
474 ModelAPI_ResultBody::DEFAULT_DEFLECTION());
476 #ifdef DEBUG_DEFLECTION
477 std::cout << "Current deflection: " << aCurrent << std::endl;
478 std::cout << "Default deflection: " << aDefault << std::endl;
482 return abs(aCurrent - aDefault) < 1.e-12;
485 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const char theChar)
487 myDumpBuffer << theChar;
491 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const char* theString)
493 myDumpBuffer << theString;
497 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::string& theString)
499 myDumpBuffer << theString;
503 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const bool theValue)
505 myDumpBuffer << (theValue ? "True" : "False");
509 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const int theValue)
511 myDumpBuffer << theValue;
515 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const double theValue)
517 myDumpBuffer << theValue;
521 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::shared_ptr<GeomAPI_Pnt>& thePoint)
523 importModule("GeomAPI", "GeomAPI_Pnt");
524 myDumpBuffer << "GeomAPI_Pnt(" << thePoint->x() << ", "
525 << thePoint->y() << ", " << thePoint->z() << ")";
529 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::shared_ptr<GeomAPI_Dir>& theDir)
531 importModule("GeomAPI", "GeomAPI_Dir");
532 myDumpBuffer << "GeomAPI_Dir(" << theDir->x() << ", "
533 << theDir->y() << ", " << theDir->z() << ")";
537 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
538 const std::shared_ptr<GeomDataAPI_Dir>& theDir)
540 myDumpBuffer << theDir->x() << ", " << theDir->y() << ", " << theDir->z();
544 static void dumpArray(std::ostringstream& theOutput, int theSize,
545 double* theValues, std::string* theTexts)
547 for (int i = 0; i < theSize; ++i) {
550 if (theTexts[i].empty())
551 theOutput << theValues[i];
553 theOutput << "\"" << theTexts[i] << "\"";
557 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
558 const std::shared_ptr<GeomDataAPI_Point>& thePoint)
560 static const int aSize = 3;
561 double aValues[aSize] = {thePoint->x(), thePoint->y(), thePoint->z()};
562 std::string aTexts[aSize] = {thePoint->textX(), thePoint->textY(), thePoint->textZ()};
563 dumpArray(myDumpBuffer, aSize, aValues, aTexts);
567 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
568 const std::shared_ptr<GeomDataAPI_Point2D>& thePoint)
570 static const int aSize = 2;
571 double aValues[aSize] = {thePoint->x(), thePoint->y()};
572 std::string aTexts[aSize] = {thePoint->textX(), thePoint->textY()};
573 dumpArray(myDumpBuffer, aSize, aValues, aTexts);
577 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
578 const std::shared_ptr<ModelAPI_AttributeBoolean>& theAttrBool)
580 myDumpBuffer << (theAttrBool->value() ? "True" : "False");
584 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
585 const std::shared_ptr<ModelAPI_AttributeInteger>& theAttrInt)
587 std::string aText = theAttrInt->text();
589 myDumpBuffer << theAttrInt->value();
591 myDumpBuffer << "\"" << aText << "\"";
595 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
596 const std::shared_ptr<ModelAPI_AttributeDouble>& theAttrReal)
598 std::string aText = theAttrReal->text();
600 myDumpBuffer << theAttrReal->value();
602 myDumpBuffer << "\"" << aText << "\"";
606 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
607 const std::shared_ptr<ModelAPI_AttributeString>& theAttrStr)
609 myDumpBuffer << "\"" << theAttrStr->value() << "\"";
613 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const FeaturePtr& theEntity)
615 myDumpBuffer << name(theEntity);
617 bool isUserDefinedName = !myNames[theEntity].myIsDefault;
618 // store results if they have user-defined names or colors
619 std::list<ResultPtr> aResultsWithNameOrColor;
620 const std::list<ResultPtr>& aResults = theEntity->results();
621 std::list<ResultPtr>::const_iterator aResIt = aResults.begin();
622 for (; aResIt != aResults.end(); ++aResIt)
623 if (!myNames[*aResIt].myIsDefault || !isDefaultColor(*aResIt) || !isDefaultDeflection(*aResIt))
624 aResultsWithNameOrColor.push_back(*aResIt);
625 // store just dumped entity to stack
626 myEntitiesStack.push(LastDumpedEntity(theEntity, isUserDefinedName, aResultsWithNameOrColor));
628 // remove entity from the list of not dumped items
629 myNotDumpedEntities.erase(theEntity);
633 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const ResultPtr& theResult)
635 FeaturePtr aFeature = ModelAPI_Feature::feature(theResult);
637 std::list<ResultPtr> aResults = aFeature->results();
638 for(std::list<ResultPtr>::const_iterator anIt = aResults.cbegin(); anIt != aResults.cend(); ++anIt, ++anIndex) {
639 if(theResult->isSame(*anIt)) {
643 myDumpBuffer << name(aFeature) << ".result()[" << anIndex << "]";
647 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const ObjectPtr& theObject)
649 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObject);
651 myDumpBuffer << name(aFeature);
655 ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
664 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const AttributePtr& theAttr)
666 FeaturePtr anOwner = ModelAPI_Feature::feature(theAttr->owner());
668 std::string aWrapperPrefix, aWrapperSuffix;
669 // Check the attribute belongs to copied (in multi-translation or multi-rotation) feature.
670 // In this case we need to cast explicitly feature to appropriate type.
671 AttributeBooleanPtr isCopy = anOwner->boolean("Copy");
672 if (isCopy.get() && isCopy->value()) {
673 aWrapperPrefix = featureWrapper(anOwner) + "(";
674 aWrapperSuffix = ")";
675 importModule("SketchAPI");
678 myDumpBuffer << aWrapperPrefix << name(anOwner) << aWrapperSuffix
679 << "." << attributeGetter(anOwner, theAttr->id()) << "()";
683 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
684 const std::shared_ptr<ModelAPI_AttributeRefAttr>& theRefAttr)
686 if (theRefAttr->isObject())
687 *this << theRefAttr->object();
689 *this << theRefAttr->attr();
693 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
694 const std::shared_ptr<ModelAPI_AttributeRefAttrList>& theRefAttrList)
697 std::list<std::pair<ObjectPtr, AttributePtr> > aList = theRefAttrList->list();
698 bool isAdded = false;
699 std::list<std::pair<ObjectPtr, AttributePtr> >::const_iterator anIt = aList.begin();
700 for (; anIt != aList.end(); ++anIt) {
702 myDumpBuffer << ", ";
706 *this << anIt->first;
707 else if (anIt->second)
708 * this << anIt->second;
714 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
715 const std::shared_ptr<ModelAPI_AttributeReference>& theReference)
717 *this << theReference->value();
721 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
722 const std::shared_ptr<ModelAPI_AttributeRefList>& theRefList)
724 static const int aThreshold = 2;
725 // if number of elements in the list if greater than a threshold,
726 // dump it in a separate line with specific name
727 std::string aDumped = myDumpBuffer.str();
728 if (aDumped.empty() || theRefList->size() <= aThreshold) {
730 std::list<ObjectPtr> aList = theRefList->list();
731 bool isAdded = false;
732 std::list<ObjectPtr>::const_iterator anIt = aList.begin();
733 for (; anIt != aList.end(); ++anIt) {
735 myDumpBuffer << ", ";
743 // clear buffer and store list "as is"
744 myDumpBuffer.str("");
746 // save buffer and clear it again
747 std::string aDumpedList = myDumpBuffer.str();
748 myDumpBuffer.str("");
749 // obtain name of list
750 FeaturePtr anOwner = ModelAPI_Feature::feature(theRefList->owner());
751 std::string aListName = name(anOwner) + "_objects";
752 // store all previous data
753 myDumpBuffer << aListName << " = " << aDumpedList << std::endl
754 << aDumped << aListName;
759 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
760 const std::shared_ptr<ModelAPI_AttributeSelection>& theAttrSelect)
762 myDumpBuffer << "model.selection(";
764 if(!theAttrSelect->isInitialized()) {
769 GeomShapePtr aShape = theAttrSelect->value();
771 aShape = theAttrSelect->context()->shape();
779 myDumpBuffer << "\"" << aShape->shapeTypeStr() << "\", \"" << theAttrSelect->namingName() << "\")";
783 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
784 const std::shared_ptr<ModelAPI_AttributeSelectionList>& theAttrSelList)
789 std::string aShapeTypeStr;
791 bool isAdded = false;
793 for(int anIndex = 0; anIndex < theAttrSelList->size(); ++anIndex) {
794 AttributeSelectionPtr anAttribute = theAttrSelList->value(anIndex);
795 aShape = anAttribute->value();
797 aShape = anAttribute->context()->shape();
805 myDumpBuffer << ", ";
809 myDumpBuffer << "model.selection(\"" << aShape->shapeTypeStr() << "\", \"" << anAttribute->namingName() << "\")";
818 ModelHighAPI_Dumper& operator<<(ModelHighAPI_Dumper& theDumper,
819 std::basic_ostream<char>& (*theEndl)(std::basic_ostream<char>&))
821 theDumper.myDumpBuffer << theEndl;
823 if (!theDumper.myEntitiesStack.empty()) {
824 // Name for composite feature is dumped when all sub-entities are dumped
825 // (see method ModelHighAPI_Dumper::processSubs).
826 const ModelHighAPI_Dumper::LastDumpedEntity& aLastDumped = theDumper.myEntitiesStack.top();
827 CompositeFeaturePtr aComposite =
828 std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aLastDumped.myEntity);
830 theDumper.dumpEntitySetName();
833 // store all not-dumped entities first
834 std::set<EntityPtr> aNotDumped = theDumper.myNotDumpedEntities;
835 std::string aBufCopy = theDumper.myDumpBuffer.str();
836 theDumper.clear(true);
837 std::set<EntityPtr>::const_iterator anIt = aNotDumped.begin();
838 for (; anIt != aNotDumped.end(); ++anIt) {
839 // if the feature is composite, dump it with all subs
840 CompositeFeaturePtr aCompFeat =
841 std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(*anIt);
843 theDumper.process(aCompFeat, true);
845 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(*anIt);
846 theDumper.dumpFeature(aFeature, true);
850 // avoid multiple empty lines
851 size_t anInd = std::string::npos;
852 while ((anInd = aBufCopy.find("\n\n\n")) != std::string::npos)
853 aBufCopy.erase(anInd, 1);
854 // then store currently dumped string
855 theDumper.myFullDump << aBufCopy;