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 "ModelHighAPI_Dumper.h"
22 #include <Config_PropManager.h>
24 #include <GeomAPI_Pnt.h>
25 #include <GeomAPI_Dir.h>
26 #include <GeomAPI_ShapeExplorer.h>
27 #include <GeomAPI_ShapeIterator.h>
28 #include <GeomAlgoAPI_NExplode.h>
30 #include <GeomDataAPI_Dir.h>
31 #include <GeomDataAPI_Point.h>
32 #include <GeomDataAPI_Point2D.h>
34 #include <ModelAPI_AttributeBoolean.h>
35 #include <ModelAPI_AttributeDouble.h>
36 #include <ModelAPI_AttributeIntArray.h>
37 #include <ModelAPI_AttributeInteger.h>
38 #include <ModelAPI_AttributeRefAttr.h>
39 #include <ModelAPI_AttributeRefAttrList.h>
40 #include <ModelAPI_AttributeReference.h>
41 #include <ModelAPI_AttributeRefList.h>
42 #include <ModelAPI_AttributeSelection.h>
43 #include <ModelAPI_AttributeSelectionList.h>
44 #include <ModelAPI_AttributeString.h>
45 #include <ModelAPI_AttributeStringArray.h>
46 #include <ModelAPI_CompositeFeature.h>
47 #include <ModelAPI_Document.h>
48 #include <ModelAPI_Entity.h>
49 #include <ModelAPI_Feature.h>
50 #include <ModelAPI_FiltersFeature.h>
51 #include <ModelAPI_Folder.h>
52 #include <ModelAPI_Result.h>
53 #include <ModelAPI_ResultBody.h>
54 #include <ModelAPI_ResultConstruction.h>
55 #include <ModelAPI_ResultGroup.h>
56 #include <ModelAPI_ResultPart.h>
57 #include <ModelAPI_Session.h>
58 #include <ModelAPI_Tools.h>
60 #include <ModelGeomAlgo_Shape.h>
62 #include <PartSetPlugin_Part.h>
64 #include <OSD_OpenFile.hxx>
68 // =========== Implementation of storage of dumped data ===========
69 static const int THE_DUMP_PRECISION = 16;
71 class ModelHighAPI_Dumper::DumpStorageBuffer : public ModelHighAPI_Dumper::DumpStorage
74 void addStorage(const ModelHighAPI_Dumper::DumpStoragePtr& theStorage)
75 { myStorageArray.push_back(theStorage); }
77 void clear() { myStorageArray.clear(); }
81 return myStorageArray.empty() || myStorageArray.front()->buffer().str().empty();
86 std::list<ModelHighAPI_Dumper::DumpStoragePtr>::iterator anIt = myStorageArray.begin();
87 for (; anIt != myStorageArray.end(); ++anIt) {
88 // avoid multiple empty lines
89 std::string aBuf = (*anIt)->buffer().str();
90 size_t anInd = std::string::npos;
91 while ((anInd = aBuf.find("\n\n\n")) != std::string::npos)
94 (*anIt)->fullDump() << aBuf;
95 (*anIt)->buffer().str("");
99 void write(const std::string& theValue)
101 if (myStorageArray.empty())
102 addStorage(DumpStoragePtr(new DumpStorage));
104 std::list<ModelHighAPI_Dumper::DumpStoragePtr>::iterator anIt = myStorageArray.begin();
105 for (; anIt != myStorageArray.end(); ++anIt)
106 (*anIt)->buffer() << theValue;
109 DumpStorageBuffer& operator<<(const char theChar)
111 std::ostringstream out;
117 DumpStorageBuffer& operator<<(const char* theString)
123 DumpStorageBuffer& operator<<(const std::string& theString)
129 DumpStorageBuffer& operator<<(const bool theValue)
131 std::ostringstream out;
137 DumpStorageBuffer& operator<<(const int theValue)
139 std::ostringstream out;
145 DumpStorageBuffer& operator<<(const double theValue)
147 std::ostringstream out;
148 out << std::setprecision(THE_DUMP_PRECISION) << theValue;
154 DumpStorageBuffer& operator<<(DumpStorageBuffer& theBuffer,
155 std::basic_ostream<char>& (*theEndl)(std::basic_ostream<char>&))
157 theBuffer.write("\n");
161 void dumpArray(int theSize, double* theValues, std::string* theTexts)
163 std::ostringstream anOutput;
164 anOutput << std::setprecision(THE_DUMP_PRECISION);
165 for (int i = 0; i < theSize; ++i) {
168 if (theTexts[i].empty())
169 anOutput << theValues[i];
171 anOutput << "\"" << theTexts[i] << "\"";
173 write(anOutput.str());
176 virtual void write(const std::shared_ptr<ModelAPI_AttributeSelection>& theAttrSelect)
178 if (myStorageArray.empty())
179 addStorage(DumpStoragePtr(new DumpStorage));
181 std::list<ModelHighAPI_Dumper::DumpStoragePtr>::iterator anIt = myStorageArray.begin();
182 for (; anIt != myStorageArray.end(); ++anIt)
183 (*anIt)->write(theAttrSelect);
186 virtual void reserveBuffer()
188 std::list<ModelHighAPI_Dumper::DumpStoragePtr>::iterator anIt = myStorageArray.begin();
189 for (; anIt != myStorageArray.end(); ++anIt)
190 (*anIt)->reserveBuffer();
193 virtual void restoreReservedBuffer()
195 std::list<ModelHighAPI_Dumper::DumpStoragePtr>::iterator anIt = myStorageArray.begin();
196 for (; anIt != myStorageArray.end(); ++anIt)
197 (*anIt)->restoreReservedBuffer();
200 virtual bool exportTo(const std::string& theFilename, const ModulesSet& theUsedModules)
202 static const std::string THE_EXT = ".py";
203 std::string aFilenameBase = theFilename;
204 if (aFilenameBase.rfind(THE_EXT) == aFilenameBase.size() - THE_EXT.size())
205 aFilenameBase = aFilenameBase.substr(0, aFilenameBase.size() - THE_EXT.size());
208 std::list<ModelHighAPI_Dumper::DumpStoragePtr>::iterator anIt = myStorageArray.begin();
209 for (; anIt != myStorageArray.end(); ++anIt) {
210 std::string aFilename = aFilenameBase + (*anIt)->myFilenameSuffix + THE_EXT;
211 isOk = (*anIt)->exportTo(aFilename, theUsedModules) && isOk;
217 std::list<ModelHighAPI_Dumper::DumpStoragePtr> myStorageArray;
221 ModelHighAPI_Dumper::DumpStorage::DumpStorage(const DumpStorage& theOther)
222 : myFilenameSuffix(theOther.myFilenameSuffix),
223 myDumpBufferHideout(theOther.myDumpBufferHideout)
225 myFullDump.str(theOther.myFullDump.str());
226 myDumpBuffer.str(theOther.myDumpBuffer.str());
229 const ModelHighAPI_Dumper::DumpStorage&
230 ModelHighAPI_Dumper::DumpStorage::operator=(const ModelHighAPI_Dumper::DumpStorage& theOther)
232 myFilenameSuffix = theOther.myFilenameSuffix;
233 myFullDump.str(theOther.myFullDump.str());
234 myDumpBuffer.str(theOther.myDumpBuffer.str());
235 myDumpBufferHideout = theOther.myDumpBufferHideout;
239 void ModelHighAPI_Dumper::DumpStorage::reserveBuffer()
241 myDumpBufferHideout.push(myDumpBuffer.str());
242 myDumpBuffer.str("");
245 void ModelHighAPI_Dumper::DumpStorage::restoreReservedBuffer()
247 myDumpBuffer << myDumpBufferHideout.top();
248 myDumpBufferHideout.pop();
251 bool ModelHighAPI_Dumper::DumpStorage::exportTo(const std::string& theFilename,
252 const ModulesSet& theUsedModules)
255 OSD_OpenStream(aFile, theFilename.c_str(), std::ofstream::out);
256 if (!aFile.is_open())
259 // standard header imported modules
260 for (ModulesSet::const_iterator aModIt = theUsedModules.begin();
261 aModIt != theUsedModules.end(); ++aModIt) {
262 aFile << "from " << *aModIt << " import *" << std::endl;
264 if (!theUsedModules.empty())
267 aFile << "from salome.shaper import model" << std::endl << std::endl;
268 aFile << "model.begin()" << std::endl;
270 // dump collected data
271 aFile << myFullDump.str();
272 aFile << myDumpBuffer.str();
275 aFile << "model.end()" << std::endl;
281 static void getShapeAndContext(const AttributeSelectionPtr& theAttrSelect,
282 GeomShapePtr& theShape, ResultPtr& theContext)
284 if (theAttrSelect->isInitialized()) {
285 theShape = theAttrSelect->value();
286 theContext = theAttrSelect->context();
288 theShape = theContext->shape();
290 if (theAttrSelect->isGeometricalSelection() &&
291 theShape.get() && theShape->shapeType() == GeomAPI_Shape::COMPOUND &&
292 theContext.get() && !theShape->isEqual(theContext->shape()) &&
293 theContext->groupName() != ModelAPI_ResultPart::group() &&
294 theContext->groupName() != ModelAPI_ResultGroup::group()) {
295 GeomAPI_ShapeIterator anIt(theShape);
296 theShape = anIt.current();
301 void ModelHighAPI_Dumper::DumpStorage::write(const AttributeSelectionPtr& theAttrSelect)
303 myDumpBuffer << "model.selection(";
307 getShapeAndContext(theAttrSelect, aShape, aContext);
310 myDumpBuffer << "\"" << aShape->shapeTypeStr() << "\", \""
311 << theAttrSelect->namingName() << "\"";
317 static int possibleSelectionsByPoint(const GeomPointPtr& thePoint,
318 const ResultPtr& theResult,
319 const GeomShapePtr& theShape,
320 const FeaturePtr& theStartFeature,
321 const FeaturePtr& theEndFeature)
323 DocumentPtr aDoc1 = theStartFeature->document();
324 DocumentPtr aDoc2 = theEndFeature->document();
326 std::list<FeaturePtr> aFeatures = aDoc1->allFeatures();
327 if (aDoc1 != aDoc2) {
328 std::list<FeaturePtr> anAdditionalFeatures = aDoc2->allFeatures();
329 aFeatures.insert(aFeatures.end(), anAdditionalFeatures.begin(), anAdditionalFeatures.end());
332 CompositeFeaturePtr aLastCompositeFeature;
334 std::list<FeaturePtr>::const_iterator aFIt = aFeatures.begin();
335 while (aFIt != aFeatures.end() && *aFIt != theStartFeature) {
336 CompositeFeaturePtr aCompFeat = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(*aFIt);
338 aLastCompositeFeature = aCompFeat;
342 // collect the list of composite features, containing the last feature;
343 // these features should be excluded from searching,
344 // because the feature cannot select sub-shapes from its parent
345 std::set<FeaturePtr> aEndFeatureParents = ModelAPI_Tools::getParents(theEndFeature);
347 int aNbPossibleSelections = 0;
348 for (; aFIt != aFeatures.end() && *aFIt != theEndFeature; ++aFIt) {
349 bool isSkipFeature = false;
350 if (aLastCompositeFeature && aLastCompositeFeature->isSub(*aFIt))
351 isSkipFeature = true;
352 CompositeFeaturePtr aCompFeat = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(*aFIt);
354 ResultPartPtr aPartRes =
355 std::dynamic_pointer_cast<ModelAPI_ResultPart>(aCompFeat->firstResult());
357 aLastCompositeFeature = aCompFeat;
358 if (aEndFeatureParents.find(aCompFeat) != aEndFeatureParents.end()) {
359 // do not process the parent for the last feature,
360 // because it cannot select objects from its parent
361 isSkipFeature = true;
367 std::list<ModelGeomAlgo_Shape::SubshapeOfResult> anApproproate;
368 if (ModelGeomAlgo_Shape::findSubshapeByPoint(*aFIt, thePoint, theShape->shapeType(),
370 std::list<ModelGeomAlgo_Shape::SubshapeOfResult>::iterator anApIt = anApproproate.begin();
371 for (; anApIt != anApproproate.end(); ++anApIt) {
372 ++aNbPossibleSelections;
374 // stop if the target shape and result are found
375 GeomShapePtr aCurShape = anApIt->mySubshape;
377 aCurShape = anApIt->myResult->shape();
379 if (anApIt->myResult->isSame(theResult) && aCurShape->isSame(theShape))
384 return aNbPossibleSelections;
387 void ModelHighAPI_Dumper::DumpStorageGeom::write(const AttributeSelectionPtr& theAttrSelect)
391 getShapeAndContext(theAttrSelect, aShape, aContext);
393 // how to dump selection: construction features are dumped by name always
394 FeaturePtr aSelectedFeature;
395 FeaturePtr aFeature = theAttrSelect->contextFeature();
396 if (aShape && aContext && !aFeature)
397 aSelectedFeature = ModelAPI_Feature::feature(aContext->data()->owner());
398 bool isDumpByGeom = aSelectedFeature && aSelectedFeature->isInHistory();
401 myDumpBuffer << "model.selection(\"" << aShape->shapeTypeStr();
402 // check the selected item is a ResultPart;
403 // in this case it is necessary to get shape with full transformation
404 // for correct calculation of the middle point
405 ResultPartPtr aResPart =
406 std::dynamic_pointer_cast<ModelAPI_ResultPart>(theAttrSelect->context());
407 if (aResPart && aShape->shapeType() == GeomAPI_Shape::COMPOUND)
408 aShape = aResPart->shape();
409 GeomPointPtr aMiddlePoint = aShape->middlePoint();
410 // calculate number of features, which could be selected by the same point
411 FeaturePtr anOwner = ModelAPI_Feature::feature(theAttrSelect->owner());
412 int aNbPossibleSelections = possibleSelectionsByPoint(aMiddlePoint,
413 theAttrSelect->context(), aShape, aSelectedFeature, anOwner);
415 // produce the index if the number of applicable features is greater than 1
417 if (aNbPossibleSelections > 1) {
418 std::ostringstream anOutput;
419 anOutput << "_" << aNbPossibleSelections;
420 anIndex = anOutput.str();
423 myDumpBuffer << std::setprecision(THE_DUMP_PRECISION)
424 << anIndex << "\", ("
425 << aMiddlePoint->x() << ", "
426 << aMiddlePoint->y() << ", "
427 << aMiddlePoint->z() << ")";
431 DumpStorage::write(theAttrSelect);
434 void ModelHighAPI_Dumper::DumpStorageWeak::write(const AttributeSelectionPtr& theAttrSelect)
438 getShapeAndContext(theAttrSelect, aShape, aContext);
440 bool aStandardDump = true;
441 if (aShape.get() && aContext.get() &&
442 aShape != aContext->shape()) { // weak naming for local selection only
443 GeomAlgoAPI_NExplode aNExplode(aContext->shape(), aShape->shapeType());
444 int anIndex = aNExplode.index(aShape);
445 if (anIndex != 0) { // found a week-naming index, so, export it
446 myDumpBuffer << "model.selection(\"" << aShape->shapeTypeStr() << "\", \""
447 << theAttrSelect->contextName(aContext) << "\", " << anIndex << ")";
448 aStandardDump = false;
452 DumpStorage::write(theAttrSelect);
454 // ======================================================================
457 static int gCompositeStackDepth = 0;
459 ModelHighAPI_Dumper* ModelHighAPI_Dumper::mySelf = 0;
461 ModelHighAPI_Dumper::ModelHighAPI_Dumper()
462 : myDumpStorage(new DumpStorageBuffer),
463 myDumpPostponedInProgress(false)
467 ModelHighAPI_Dumper::~ModelHighAPI_Dumper()
469 delete myDumpStorage;
472 void ModelHighAPI_Dumper::setInstance(ModelHighAPI_Dumper* theDumper)
478 ModelHighAPI_Dumper* ModelHighAPI_Dumper::getInstance()
483 void ModelHighAPI_Dumper::addCustomStorage(const ModelHighAPI_Dumper::DumpStoragePtr& theStorage)
485 myDumpStorage->addStorage(theStorage);
488 void ModelHighAPI_Dumper::clearCustomStorage()
490 myDumpStorage->clear();
494 myFeatureCount.clear();
496 while (!myEntitiesStack.empty())
497 myEntitiesStack.pop();
501 void ModelHighAPI_Dumper::clearNotDumped()
503 myNotDumpedEntities.clear();
506 // Convert string to integer. If the string is not a number, return -1
507 static int toInt(const std::string& theString)
509 std::string::const_iterator aChar = theString.begin();
510 for (; aChar != theString.end(); ++aChar)
511 if (!std::isdigit(*aChar))
513 if (aChar != theString.end())
514 return -1; // not a number
515 return std::stoi(theString);
518 const std::string& ModelHighAPI_Dumper::name(const EntityPtr& theEntity,
519 bool theSaveNotDumped,
520 bool theUseEntityName)
522 EntityNameMap::const_iterator aFound = myNames.find(theEntity);
523 if (aFound != myNames.end())
524 return aFound->second.myCurrentName;
526 // entity is not found, store it
527 std::string aName, aKind;
528 bool isDefaultName = false;
529 bool isSaveNotDumped = theSaveNotDumped;
530 std::ostringstream aDefaultName;
531 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theEntity);
533 aName = aFeature->name();
534 aKind = aFeature->getKind();
536 FolderPtr aFolder = std::dynamic_pointer_cast<ModelAPI_Folder>(theEntity);
538 aName = aFolder->data()->name();
539 aKind = ModelAPI_Folder::ID();
540 isSaveNotDumped = false;
544 ObjectPtr anObject = std::dynamic_pointer_cast<ModelAPI_Object>(theEntity);
546 DocumentPtr aDoc = anObject->document();
547 std::pair<int, int>& aNbFeatures = myFeatureCount[aDoc][aKind];
548 aNbFeatures.first += 1;
550 size_t anIndex = aName.find(aKind);
551 if (anIndex == 0 && aName[aKind.length()] == '_') { // name starts with "FeatureKind_"
552 std::string anIdStr = aName.substr(aKind.length() + 1);
553 int anId = toInt(anIdStr);
555 // Check number of already registered objects of such kind. Index of current object
556 // should be the same to identify feature's name as automatically generated.
557 if (aNbFeatures.first == anId && aNbFeatures.second < anId) {
558 // name is not user-defined
559 isDefaultName = true;
561 // check there are postponed features of this kind,
562 // dump their names, because the sequence of features may be changed
563 for (std::list<EntityPtr>::const_iterator aPpIt = myPostponed.begin();
564 aPpIt != myPostponed.end(); ++aPpIt) {
565 FeaturePtr aCurFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(*aPpIt);
566 if (aCurFeature && aCurFeature->getKind() == aKind) {
567 myNames[*aPpIt].myIsDefault = false;
568 isDefaultName = false;
573 if (anId > aNbFeatures.second)
574 aNbFeatures.second = anId;
577 // obtain default name for the feature
578 if (theUseEntityName)
579 aDefaultName << aName;
582 NbFeaturesMap::const_iterator aFIt = myFeatureCount.begin();
583 for (; aFIt != myFeatureCount.end(); ++aFIt) {
584 std::map<std::string, std::pair<int, int> >::const_iterator aFound =
585 aFIt->second.find(aKind);
586 if (aFound != aFIt->second.end())
587 aFullIndex += aFound->second.first;
589 aDefaultName << aKind << "_" << aFullIndex;
593 myNames[theEntity] = EntityName(aDefaultName.str(), aName, isDefaultName);
595 myNotDumpedEntities.insert(theEntity);
597 // store names of results
599 saveResultNames(aFeature);
601 return myNames[theEntity].myCurrentName;
604 const std::string& ModelHighAPI_Dumper::parentName(const FeaturePtr& theEntity)
606 const std::set<AttributePtr>& aRefs = theEntity->data()->refsToMe();
607 std::set<AttributePtr>::const_iterator aRefIt = aRefs.begin();
608 for (; aRefIt != aRefs.end(); ++aRefIt) {
609 CompositeFeaturePtr anOwner = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(
610 ModelAPI_Feature::feature((*aRefIt)->owner()));
612 return name(anOwner);
615 static const std::string DUMMY;
619 void ModelHighAPI_Dumper::saveResultNames(const FeaturePtr& theFeature)
621 // Default name of the feature
622 bool isFeatureDefaultName = myNames[theFeature].myIsDefault;
624 // Save only names of results which is not correspond to default feature name
625 const std::list<ResultPtr>& aResults = theFeature->results();
626 std::list<ResultPtr> allRes;
627 ModelAPI_Tools::allResults(theFeature, allRes);
628 for(std::list<ResultPtr>::iterator aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
629 std::pair<std::string, bool> aName = ModelAPI_Tools::getDefaultName(*aRes);
630 std::string aDefaultName = aName.first;
631 std::string aResName = (*aRes)->data()->name();
632 bool isUserDefined = !(isFeatureDefaultName && aDefaultName == aResName);
634 EntityName(aResName, (isUserDefined ? aResName : std::string()), !isUserDefined);
638 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_Document>& theDoc,
639 const std::string& theFileName)
641 // dump top level document feature
642 static const std::string aDocName("partSet");
643 myNames[theDoc] = EntityName(aDocName, std::string(), true);
644 *this << aDocName << " = model.moduleDocument()" << std::endl;
646 // dump subfeatures and store result to file
647 bool isOk = process(theDoc) && myDumpStorage->exportTo(theFileName, myModules);
648 clearCustomStorage();
652 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_Document>& theDoc)
655 std::list<ObjectPtr> anObjects = theDoc->allObjects();
656 std::list<ObjectPtr>::const_iterator anObjIt = anObjects.begin();
657 // firstly, dump all parameters
658 for (; anObjIt != anObjects.end(); ++ anObjIt) {
659 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(*anObjIt);
661 dumpParameter(aFeature);
663 // dump all other features
664 for (anObjIt = anObjects.begin(); anObjIt != anObjects.end(); ++anObjIt) {
665 CompositeFeaturePtr aCompFeat = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(*anObjIt);
666 if (aCompFeat) // iteratively process composite features
667 isOk = process(aCompFeat) && isOk;
668 else if (!isDumped(EntityPtr(*anObjIt))) {
670 FolderPtr aFolder = std::dynamic_pointer_cast<ModelAPI_Folder>(*anObjIt);
674 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(*anObjIt);
675 if (aFeature) // dump common feature
676 dumpFeature(aFeature);
680 // dump folders if any
685 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_CompositeFeature>& theComposite,
688 // increase composite features stack
689 ++gCompositeStackDepth;
690 // dump composite itself
691 if (!isDumped(EntityPtr(theComposite)) || isForce)
692 dumpFeature(FeaturePtr(theComposite), isForce);
694 // sub-part is processed independently, because it provides separate document
695 if (theComposite->getKind() == PartSetPlugin_Part::ID()) {
696 // dump name of the part if it is different from default
697 if (!myEntitiesStack.empty())
700 // decrease composite features stack because we run into separate document
701 --gCompositeStackDepth;
703 ResultPartPtr aPartResult =
704 std::dynamic_pointer_cast<ModelAPI_ResultPart>(theComposite->lastResult());
707 DocumentPtr aSubDoc = aPartResult->partDoc();
710 // set name of document
711 const std::string& aPartName = myNames[theComposite].myCurrentName;
712 std::string aDocName = aPartName + "_doc";
713 myNames[aSubDoc] = EntityName(aDocName, std::string(), true);
715 // dump document in a separate line
716 *this << aDocName << " = " << aPartName << ".document()" << std::endl;
717 // dump features in the document
718 bool aRes = process(aSubDoc);
719 *this << "model.do()" << std::endl;
724 bool isOk = processSubs(theComposite);
725 // decrease composite features stack
726 --gCompositeStackDepth;
731 bool ModelHighAPI_Dumper::processSubs(
732 const std::shared_ptr<ModelAPI_CompositeFeature>& theComposite,
736 // dump all sub-features;
737 bool isSubDumped = false;
738 int aNbSubs = theComposite->numberOfSubs();
739 for (int anIndex = 0; anIndex < aNbSubs; ++anIndex) {
740 FeaturePtr aFeature = theComposite->subFeature(anIndex);
741 if (isDumped(EntityPtr(aFeature)))
745 CompositeFeaturePtr aCompFeat = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
746 if (aCompFeat) // iteratively process composite features
747 isOk = process(aCompFeat) && isOk;
749 dumpFeature(aFeature, true);
752 bool isDumpSetName = !myEntitiesStack.empty() &&
753 myEntitiesStack.top().myEntity == EntityPtr(theComposite);
754 bool isForceModelDo = isSubDumped && isDumpSetName &&
755 (myEntitiesStack.top().myUserName || !myEntitiesStack.top().myResults.empty());
756 // It is necessary for the sketch to create its result when complete (command "model.do()").
757 // This option is set by flat theDumpModelDo.
758 // However, nested sketches are rebuilt by parent feature, so, they do not need
759 // explicit call of "model.do()". This will be controlled by the depth of the stack.
760 if (isForceModelDo || (theDumpModelDo && gCompositeStackDepth <= 1))
761 *this << "model.do()" << std::endl;
763 // dump "setName" for composite feature
769 void ModelHighAPI_Dumper::postpone(const EntityPtr& theEntity)
772 name(theEntity, false);
773 myPostponed.push_back(theEntity);
776 void ModelHighAPI_Dumper::dumpPostponed(bool theDumpFolders)
778 if (myDumpPostponedInProgress)
781 myDumpPostponedInProgress = true;
782 // make a copy of postponed entities, because the list will be updated
783 // if some features are not able to be dumped
784 std::list<EntityPtr> aPostponedCopy = myPostponed;
787 // iterate over postponed entities and try to dump them
788 std::list<EntityPtr>::const_iterator anIt = aPostponedCopy.begin();
789 for (; anIt != aPostponedCopy.end(); ++anIt) {
790 FolderPtr aFolder = std::dynamic_pointer_cast<ModelAPI_Folder>(*anIt);
795 myPostponed.push_back(*anIt);
798 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(*anIt);
800 dumpFeature(aFeature, true);
803 myDumpPostponedInProgress = false;
806 void ModelHighAPI_Dumper::dumpSubFeatureNameAndColor(const std::string theSubFeatureGet,
807 const FeaturePtr& theSubFeature)
809 name(theSubFeature, false);
810 myNames[theSubFeature] = EntityName(theSubFeatureGet, theSubFeature->name(), false);
812 // store results if they have user-defined names or colors
813 std::list<ResultPtr> aResultsWithNameOrColor;
814 const std::list<ResultPtr>& aResults = theSubFeature->results();
815 std::list<ResultPtr>::const_iterator aResIt = aResults.begin();
816 for (; aResIt != aResults.end(); ++aResIt) {
817 std::string aResName = (*aResIt)->data()->name();
818 myNames[*aResIt] = EntityName(aResName, aResName, false);
819 aResultsWithNameOrColor.push_back(*aResIt);
822 // store just dumped entity to stack
823 myEntitiesStack.push(LastDumpedEntity(theSubFeature, true, aResultsWithNameOrColor));
828 void ModelHighAPI_Dumper::importModule(const std::string& theModuleName)
830 myModules.insert(theModuleName);
833 void ModelHighAPI_Dumper::dumpEntitySetName()
835 const LastDumpedEntity& aLastDumped = myEntitiesStack.top();
836 bool isBufferEmpty = myDumpStorage->isBufferEmpty();
838 // dump "setName" for the entity
839 if (aLastDumped.myUserName) {
840 EntityName& anEntityNames = myNames[aLastDumped.myEntity];
841 if (!anEntityNames.myIsDefault)
842 *myDumpStorage << anEntityNames.myCurrentName << ".setName(\""
843 << anEntityNames.myUserName << "\")\n";
844 // don't dump "setName" for the entity twice
845 anEntityNames.myUserName.clear();
846 anEntityNames.myIsDefault = true;
848 // dump "setName" for results
849 std::list<ResultPtr>::const_iterator aResIt = aLastDumped.myResults.begin();
850 std::list<ResultPtr>::const_iterator aResEnd = aLastDumped.myResults.end();
851 for (; aResIt != aResEnd; ++aResIt) {
853 EntityName& anEntityNames = myNames[*aResIt];
854 if (!anEntityNames.myIsDefault) {
856 *myDumpStorage << ".setName(\"" << anEntityNames.myUserName << "\")\n";
857 // don't dump "setName" for the entity twice
858 anEntityNames.myUserName.clear();
859 anEntityNames.myIsDefault = true;
862 if (!isDefaultColor(*aResIt)) {
863 AttributeIntArrayPtr aColor = (*aResIt)->data()->intArray(ModelAPI_Result::COLOR_ID());
864 if (aColor && aColor->isInitialized()) {
866 *myDumpStorage << ".setColor(" << aColor->value(0) << ", " << aColor->value(1)
867 << ", " << aColor->value(2) << ")\n";
870 // set result deflection
871 if (!isDefaultDeflection(*aResIt)) {
872 AttributeDoublePtr aDeflectionAttr =
873 (*aResIt)->data()->real(ModelAPI_Result::DEFLECTION_ID());
874 if(aDeflectionAttr.get() && aDeflectionAttr->isInitialized()) {
876 *myDumpStorage << ".setDeflection(" << aDeflectionAttr->value() << ")\n";
879 // set result transparency
880 if (!isDefaultTransparency(*aResIt)) {
881 AttributeDoublePtr aTransparencyAttr =
882 (*aResIt)->data()->real(ModelAPI_Result::TRANSPARENCY_ID());
883 if(aTransparencyAttr.get() && aTransparencyAttr->isInitialized()) {
885 *myDumpStorage << ".setTransparency(" << aTransparencyAttr->value() << ")\n";
890 myNames[aLastDumped.myEntity].myIsDumped = true;
891 myEntitiesStack.pop();
893 // clean buffer if it was clear before
895 myDumpStorage->mergeBuffer();
898 bool ModelHighAPI_Dumper::isDumped(const EntityPtr& theEntity) const
900 EntityNameMap::const_iterator aFound = myNames.find(theEntity);
901 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theEntity);
902 return (aFound != myNames.end() && aFound->second.myIsDumped) ||
903 myFeaturesToSkip.find(aFeature) != myFeaturesToSkip.end();
906 bool ModelHighAPI_Dumper::isDumped(const AttributeRefAttrPtr& theRefAttr) const
909 if (theRefAttr->isObject())
910 aFeature = ModelAPI_Feature::feature(theRefAttr->object());
912 aFeature = ModelAPI_Feature::feature(theRefAttr->attr()->owner());
913 return aFeature && isDumped(EntityPtr(aFeature));
916 bool ModelHighAPI_Dumper::isDumped(const AttributeRefListPtr& theRefList) const
918 std::list<ObjectPtr> aRefs = theRefList->list();
919 std::list<ObjectPtr>::iterator anIt = aRefs.begin();
920 for (; anIt != aRefs.end(); ++anIt) {
921 FeaturePtr aFeature = ModelAPI_Feature::feature(*anIt);
922 if (aFeature && !isDumped(EntityPtr(aFeature)))
928 static bool isSketchSub(const FeaturePtr& theFeature)
930 static const std::string SKETCH("Sketch");
931 CompositeFeaturePtr anOwner = ModelAPI_Tools::compositeOwner(theFeature);
932 return anOwner && anOwner->getKind() == SKETCH;
935 bool ModelHighAPI_Dumper::isDefaultColor(const ResultPtr& theResult) const
937 AttributeIntArrayPtr aColor = theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
938 if (!aColor || !aColor->isInitialized())
941 // check the result belongs to sketch entity, do not dump color in this way
942 ResultConstructionPtr aResConstr =
943 std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(theResult);
945 FeaturePtr aFeature = ModelAPI_Feature::feature(theResult->data()->owner());
946 if (isSketchSub(aFeature))
950 std::string aSection, aName, aDefault;
951 theResult->colorConfigInfo(aSection, aName, aDefault);
953 // dump current color
954 std::ostringstream aColorInfo;
955 aColorInfo << aColor->value(0) << "," << aColor->value(1) << "," << aColor->value(2);
957 return aDefault == aColorInfo.str();
960 bool ModelHighAPI_Dumper::isDefaultDeflection(const ResultPtr& theResult) const
962 AttributeDoublePtr aDeflectionAttr = theResult->data()->real(ModelAPI_Result::DEFLECTION_ID());
963 if(!aDeflectionAttr || !aDeflectionAttr->isInitialized()) {
967 double aCurrent = aDeflectionAttr->value();
968 double aDefault = -1;
970 bool isConstruction = false;
971 std::string aResultGroup = theResult->groupName();
972 if (aResultGroup == ModelAPI_ResultConstruction::group())
973 isConstruction = true;
974 else if (aResultGroup == ModelAPI_ResultBody::group()) {
975 GeomShapePtr aGeomShape = theResult->shape();
976 if (aGeomShape.get()) {
977 // if the shape could not be exploded on faces, it contains only wires, edges, and vertices
978 // correction of deviation for them should not influence to the application performance
979 GeomAPI_ShapeExplorer anExp(aGeomShape, GeomAPI_Shape::FACE);
980 isConstruction = !anExp.more();
984 aDefault = Config_PropManager::real("Visualization", "construction_deflection");
986 aDefault = Config_PropManager::real("Visualization", "body_deflection");
988 return fabs(aCurrent - aDefault) < 1.e-12;
991 bool ModelHighAPI_Dumper::isDefaultTransparency(const ResultPtr& theResult) const
993 AttributeDoublePtr anAttribute = theResult->data()->real(ModelAPI_Result::TRANSPARENCY_ID());
994 if(!anAttribute || !anAttribute->isInitialized()) {
997 return fabs(anAttribute->value()) < 1.e-12;
1000 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const char theChar)
1002 *myDumpStorage << theChar;
1006 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const char* theString)
1008 *myDumpStorage << theString;
1012 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::string& theString)
1014 *myDumpStorage << theString;
1018 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const bool theValue)
1020 *myDumpStorage << (theValue ? "True" : "False");
1024 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const int theValue)
1026 *myDumpStorage << theValue;
1030 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const double theValue)
1032 *myDumpStorage << theValue;
1036 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::shared_ptr<GeomAPI_Pnt>& thePoint)
1038 importModule("GeomAPI");
1039 *myDumpStorage << "GeomAPI_Pnt(" << thePoint->x() << ", "
1040 << thePoint->y() << ", " << thePoint->z() << ")";
1044 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::shared_ptr<GeomAPI_Dir>& theDir)
1046 importModule("GeomAPI");
1047 *myDumpStorage << "GeomAPI_Dir(" << theDir->x() << ", "
1048 << theDir->y() << ", " << theDir->z() << ")";
1052 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1053 const std::shared_ptr<GeomDataAPI_Dir>& theDir)
1055 *myDumpStorage << theDir->x() << ", " << theDir->y() << ", " << theDir->z();
1059 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1060 const std::shared_ptr<GeomDataAPI_Point>& thePoint)
1062 static const int aSize = 3;
1063 double aValues[aSize] = {thePoint->x(), thePoint->y(), thePoint->z()};
1064 std::string aTexts[aSize] = {thePoint->textX(), thePoint->textY(), thePoint->textZ()};
1065 myDumpStorage->dumpArray(aSize, aValues, aTexts);
1069 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1070 const std::shared_ptr<GeomDataAPI_Point2D>& thePoint)
1072 static const int aSize = 2;
1073 double aValues[aSize] = {thePoint->x(), thePoint->y()};
1074 std::string aTexts[aSize] = {thePoint->textX(), thePoint->textY()};
1075 myDumpStorage->dumpArray(aSize, aValues, aTexts);
1079 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1080 const std::shared_ptr<ModelAPI_AttributeBoolean>& theAttrBool)
1082 *myDumpStorage << (theAttrBool->value() ? "True" : "False");
1086 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1087 const std::shared_ptr<ModelAPI_AttributeInteger>& theAttrInt)
1089 std::string aText = theAttrInt->text();
1091 *myDumpStorage << theAttrInt->value();
1093 *myDumpStorage << "\"" << aText << "\"";
1097 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1098 const std::shared_ptr<ModelAPI_AttributeDouble>& theAttrReal)
1100 std::string aText = theAttrReal->text();
1102 *myDumpStorage << theAttrReal->value();
1104 *myDumpStorage << "\"" << aText << "\"";
1108 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1109 const std::shared_ptr<ModelAPI_AttributeString>& theAttrStr)
1111 *myDumpStorage << "\"" << theAttrStr->value() << "\"";
1115 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const FolderPtr& theFolder)
1117 *myDumpStorage << name(theFolder);
1119 // add dumped folder to a stack
1120 if (!myNames[theFolder].myIsDumped &&
1121 (myEntitiesStack.empty() || myEntitiesStack.top().myEntity != theFolder))
1122 myEntitiesStack.push(LastDumpedEntity(theFolder, !myNames[theFolder].myIsDefault));
1127 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const FeaturePtr& theEntity)
1129 *myDumpStorage << name(theEntity);
1131 if (!myNames[theEntity].myIsDumped) {
1132 bool isUserDefinedName = !myNames[theEntity].myIsDefault;
1133 // store results if they have user-defined names or colors
1134 std::list<ResultPtr> aResultsWithNameOrColor;
1135 std::list<ResultPtr> allRes;
1136 ModelAPI_Tools::allResults(theEntity, allRes);
1137 for(std::list<ResultPtr>::iterator aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
1138 if(!myNames[*aRes].myIsDefault || !isDefaultColor(*aRes) ||
1139 !isDefaultDeflection(*aRes) || !isDefaultTransparency(*aRes))
1140 aResultsWithNameOrColor.push_back(*aRes);
1142 // store just dumped entity to stack
1143 if (myEntitiesStack.empty() || myEntitiesStack.top().myEntity != theEntity)
1144 myEntitiesStack.push(
1145 LastDumpedEntity(theEntity, isUserDefinedName, aResultsWithNameOrColor));
1148 // remove entity from the list of not dumped items
1149 myNotDumpedEntities.erase(theEntity);
1153 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const ResultPtr& theResult)
1155 // iterate in the structure of sub-results to the parent
1156 ResultPtr aCurRes = theResult;
1157 FeaturePtr aFeature = ModelAPI_Feature::feature(theResult);
1158 std::list<int> anIndices; // indexes of results in the parent result, starting from topmost
1159 while(aCurRes.get()) {
1160 ResultBodyPtr aParent = ModelAPI_Tools::bodyOwner(aCurRes);
1162 anIndices.push_front(ModelAPI_Tools::bodyIndex(aCurRes));
1163 } else { // index of the result in the feature
1164 std::list<ResultPtr>::const_iterator aRes = aFeature->results().cbegin();
1165 for(int anIndex = 0; aRes != aFeature->results().cend(); aRes++, anIndex++) {
1166 if (*aRes == aCurRes) {
1167 anIndices.push_front(anIndex);
1175 *myDumpStorage << name(aFeature);
1176 for (std::list<int>::iterator anI = anIndices.begin(); anI != anIndices.end(); anI++) {
1177 if (anI == anIndices.begin()) {
1179 *myDumpStorage << ".result()";
1182 *myDumpStorage << ".results()[" << *anI << "]";
1185 *myDumpStorage << ".subResult(" << *anI << ")";
1192 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::list<ResultPtr>& theResults)
1195 for (std::list<ResultPtr>::const_iterator anIt = theResults.begin();
1196 anIt != theResults.end(); ++anIt) {
1197 if (anIt != theResults.begin())
1205 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const ObjectPtr& theObject)
1207 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObject);
1208 if(aFeature.get()) {
1209 *myDumpStorage << name(aFeature);
1213 ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
1222 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const AttributePtr& theAttr)
1224 FeaturePtr anOwner = ModelAPI_Feature::feature(theAttr->owner());
1226 std::string aWrapperPrefix, aWrapperSuffix;
1227 // Check the attribute belongs to copied (in multi-translation or multi-rotation) feature.
1228 // In this case we need to cast explicitly feature to appropriate type.
1229 AttributeBooleanPtr isCopy = anOwner->boolean("Copy");
1230 if (isCopy.get() && isCopy->value()) {
1231 aWrapperPrefix = featureWrapper(anOwner) + "(";
1232 aWrapperSuffix = ")";
1233 importModule("SketchAPI");
1236 *myDumpStorage << aWrapperPrefix << name(anOwner) << aWrapperSuffix
1237 << "." << attributeGetter(anOwner, theAttr->id()) << "()";
1241 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1242 const std::shared_ptr<ModelAPI_AttributeRefAttr>& theRefAttr)
1244 if (theRefAttr->isObject())
1245 *this << theRefAttr->object();
1247 *this << theRefAttr->attr();
1251 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1252 const std::shared_ptr<ModelAPI_AttributeRefAttrList>& theRefAttrList)
1254 *myDumpStorage << "[";
1255 std::list<std::pair<ObjectPtr, AttributePtr> > aList = theRefAttrList->list();
1256 bool isAdded = false;
1257 std::list<std::pair<ObjectPtr, AttributePtr> >::const_iterator anIt = aList.begin();
1258 for (; anIt != aList.end(); ++anIt) {
1260 *myDumpStorage << ", ";
1264 *this << anIt->first;
1265 else if (anIt->second)
1266 * this << anIt->second;
1268 *myDumpStorage << "]";
1272 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1273 const std::shared_ptr<ModelAPI_AttributeReference>& theReference)
1275 *this << theReference->value();
1279 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1280 const std::shared_ptr<ModelAPI_AttributeRefList>& theRefList)
1282 static const int aThreshold = 2;
1283 static bool aDumpAsIs = false;
1284 // if number of elements in the list if greater than a threshold,
1285 // dump it in a separate line with specific name
1286 if (aDumpAsIs || theRefList->size() <= aThreshold) {
1287 *myDumpStorage << "[";
1288 std::list<ObjectPtr> aList = theRefList->list();
1289 bool isAdded = false;
1290 std::list<ObjectPtr>::const_iterator anIt = aList.begin();
1291 for (; anIt != aList.end(); ++anIt) {
1293 *myDumpStorage << ", ";
1299 *myDumpStorage << "]";
1302 FeaturePtr anOwner = ModelAPI_Feature::feature(theRefList->owner());
1303 std::string aListName = name(anOwner) + "_objects";
1304 // reserve dumped buffer and store list "as is"
1305 myDumpStorage->reserveBuffer();
1307 *this << aListName << " = " << theRefList << "\n";
1309 // append reserved data to the end of the current buffer
1310 myDumpStorage->restoreReservedBuffer();
1311 *myDumpStorage << aListName;
1316 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1317 const std::shared_ptr<ModelAPI_AttributeSelection>& theAttrSelect)
1319 myDumpStorage->write(theAttrSelect);
1323 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1324 const std::shared_ptr<ModelAPI_AttributeSelectionList>& theAttrSelList)
1326 static const int aThreshold = 2;
1327 static bool aDumpAsIs = false;
1328 // if number of elements in the list if greater than a threshold,
1329 // dump it in a separate line with specific name
1330 if (aDumpAsIs || theAttrSelList->size() <= aThreshold) {
1331 *myDumpStorage << "[";
1333 GeomShapePtr aShape;
1334 std::string aShapeTypeStr;
1336 bool isAdded = false;
1338 for(int anIndex = 0; anIndex < theAttrSelList->size(); ++anIndex) {
1339 AttributeSelectionPtr anAttribute = theAttrSelList->value(anIndex);
1340 aShape = anAttribute->value();
1342 ResultPtr aContext = anAttribute->context();
1344 aShape = aContext->shape();
1352 *myDumpStorage << ", ";
1356 *this << anAttribute;
1359 // check selection list is obtained by filters
1360 FiltersFeaturePtr aFilters = theAttrSelList->filters();
1362 if (theAttrSelList->size() > 0)
1363 *myDumpStorage << ", ";
1364 dumpFeature(aFilters, true);
1367 *myDumpStorage << "]";
1369 // obtain name of list (the feature may contain several selection lists)
1370 FeaturePtr anOwner = ModelAPI_Feature::feature(theAttrSelList->owner());
1371 std::string aListName = name(anOwner) + "_objects";
1372 std::list<AttributePtr> aSelLists =
1373 anOwner->data()->attributes(ModelAPI_AttributeSelectionList::typeId());
1374 if (aSelLists.size() > 1) {
1376 for (std::list<AttributePtr>::iterator aSIt = aSelLists.begin();
1377 aSIt != aSelLists.end(); ++aSIt, ++anIndex)
1378 if ((*aSIt).get() == theAttrSelList.get())
1380 std::ostringstream aSStream;
1381 aSStream << aListName << "_" << anIndex;
1382 aListName = aSStream.str();
1384 // reserve dumped buffer and store list "as is"
1385 myDumpStorage->reserveBuffer();
1387 *this << aListName << " = " << theAttrSelList << "\n";
1389 // append reserved data to the end of the current buffer
1390 myDumpStorage->restoreReservedBuffer();
1391 *myDumpStorage << aListName;
1396 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
1397 const std::shared_ptr<ModelAPI_AttributeStringArray>& theArray)
1399 std::ostringstream aBuffer;
1401 for(int anIndex = 0; anIndex < theArray->size(); ++anIndex) {
1405 aBuffer << "\"" << theArray->value(anIndex) << "\"";
1409 myDumpStorage->write(aBuffer.str());
1414 ModelHighAPI_Dumper& operator<<(ModelHighAPI_Dumper& theDumper,
1415 std::basic_ostream<char>& (*theEndl)(std::basic_ostream<char>&))
1417 *theDumper.myDumpStorage << theEndl;
1419 if (!theDumper.myEntitiesStack.empty()) {
1421 // all copies have been stored into stack, pop them all
1424 // Name for composite feature is dumped when all sub-entities are dumped
1425 // (see method ModelHighAPI_Dumper::processSubs).
1426 const ModelHighAPI_Dumper::LastDumpedEntity& aLastDumped = theDumper.myEntitiesStack.top();
1427 CompositeFeaturePtr aComposite =
1428 std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aLastDumped.myEntity);
1430 theDumper.dumpEntitySetName();
1431 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aLastDumped.myEntity);
1433 AttributeBooleanPtr aCopyAttr = aFeature->boolean("Copy");
1434 isCopy = aCopyAttr.get() && aCopyAttr->value();
1437 } while (isCopy && !theDumper.myEntitiesStack.empty());
1440 // store all not-dumped entities first
1441 std::set<EntityPtr> aNotDumped = theDumper.myNotDumpedEntities;
1442 theDumper.myDumpStorage->reserveBuffer();
1443 std::set<EntityPtr>::const_iterator anIt = aNotDumped.begin();
1444 for (; anIt != aNotDumped.end(); ++anIt) {
1445 // if the feature is composite, dump it with all subs
1446 CompositeFeaturePtr aCompFeat =
1447 std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(*anIt);
1449 theDumper.process(aCompFeat, true);
1451 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(*anIt);
1452 theDumper.dumpFeature(aFeature, true);
1453 // dump the Projection feature which produces this "Copy" entity
1454 AttributeBooleanPtr aCopyAttr = aFeature->boolean("Copy");
1455 if (aCopyAttr.get() && aCopyAttr->value())
1457 const std::set<AttributePtr>& aRefs = aFeature->data()->refsToMe();
1458 std::set<AttributePtr>::iterator aRefIt = aRefs.begin();
1459 for (; aRefIt != aRefs.end(); ++aRefIt)
1460 if ((*aRefIt)->id() == "ProjectedFeature")
1461 { // process projection only
1462 FeaturePtr anOwner = ModelAPI_Feature::feature((*aRefIt)->owner());
1463 if (anOwner && !theDumper.isDumped(EntityPtr(anOwner)))
1464 theDumper.dumpFeature(anOwner, true);
1470 // then store the reserved data
1471 theDumper.myDumpStorage->restoreReservedBuffer();
1472 theDumper.myDumpStorage->mergeBuffer();
1474 // now, store all postponed features
1475 theDumper.dumpPostponed();