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 <GeomAPI_Pnt.h>
11 #include <GeomAPI_Dir.h>
13 #include <GeomDataAPI_Dir.h>
14 #include <GeomDataAPI_Point.h>
15 #include <GeomDataAPI_Point2D.h>
17 #include <ModelAPI_AttributeBoolean.h>
18 #include <ModelAPI_AttributeDouble.h>
19 #include <ModelAPI_AttributeIntArray.h>
20 #include <ModelAPI_AttributeInteger.h>
21 #include <ModelAPI_AttributeRefAttr.h>
22 #include <ModelAPI_AttributeRefAttrList.h>
23 #include <ModelAPI_AttributeReference.h>
24 #include <ModelAPI_AttributeRefList.h>
25 #include <ModelAPI_AttributeSelection.h>
26 #include <ModelAPI_AttributeSelectionList.h>
27 #include <ModelAPI_AttributeString.h>
28 #include <ModelAPI_CompositeFeature.h>
29 #include <ModelAPI_Document.h>
30 #include <ModelAPI_Entity.h>
31 #include <ModelAPI_Feature.h>
32 #include <ModelAPI_Result.h>
33 #include <ModelAPI_ResultPart.h>
35 #include <PartSetPlugin_Part.h>
37 #include <OSD_OpenFile.hxx>
41 static int gCompositeStackDepth = 0;
43 ModelHighAPI_Dumper* ModelHighAPI_Dumper::mySelf = 0;
45 ModelHighAPI_Dumper::ModelHighAPI_Dumper()
50 void ModelHighAPI_Dumper::setInstance(ModelHighAPI_Dumper* theDumper)
56 ModelHighAPI_Dumper* ModelHighAPI_Dumper::getInstance()
61 void ModelHighAPI_Dumper::clear(bool bufferOnly)
64 myDumpBuffer << std::setprecision(16);
70 myFullDump << std::setprecision(16);
74 myFeatureCount.clear();
75 while (!myEntitiesStack.empty())
76 myEntitiesStack.pop();
80 void ModelHighAPI_Dumper::clearNotDumped()
82 myNotDumpedEntities.clear();
85 const std::string& ModelHighAPI_Dumper::name(const EntityPtr& theEntity,
86 bool theSaveNotDumped,
87 bool theUseEntityName)
89 EntityNameMap::const_iterator aFound = myNames.find(theEntity);
90 if (aFound != myNames.end())
91 return aFound->second.first;
93 // entity is not found, store it
95 std::ostringstream aDefaultName;
96 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theEntity);
98 aName = aFeature->name();
99 const std::string& aKind = aFeature->getKind();
100 DocumentPtr aDoc = aFeature->document();
101 int& aNbFeatures = myFeatureCount[aDoc][aKind];
104 size_t anIndex = aName.find(aKind);
105 if (anIndex == 0 && aName[aKind.length()] == '_') { // name starts with "FeatureKind_"
106 std::string anIdStr = aName.substr(aKind.length() + 1);
107 int anId = std::stoi(anIdStr);
109 // Check number of already registered objects of such kind. Index of current object
110 // should be the same to identify feature's name as automatically generated.
111 if (aNbFeatures == anId) {
112 // name is not user-defined
117 // obtain default name for the feature
118 if (theUseEntityName)
119 aDefaultName << aName;
122 NbFeaturesMap::const_iterator aFIt = myFeatureCount.begin();
123 for (; aFIt != myFeatureCount.end(); ++aFIt) {
124 std::map<std::string, int>::const_iterator aFound = aFIt->second.find(aKind);
125 if (aFound != aFIt->second.end())
126 aFullIndex += aFound->second;
128 aDefaultName << aKind << "_" << aFullIndex;
132 myNames[theEntity] = std::pair<std::string, std::string>(aDefaultName.str(), aName);
133 if (theSaveNotDumped)
134 myNotDumpedEntities.insert(theEntity);
136 // store names of results
138 saveResultNames(aFeature);
140 return myNames[theEntity].first;
143 const std::string& ModelHighAPI_Dumper::parentName(const FeaturePtr& theEntity)
145 const std::set<AttributePtr>& aRefs = theEntity->data()->refsToMe();
146 std::set<AttributePtr>::const_iterator aRefIt = aRefs.begin();
147 for (; aRefIt != aRefs.end(); ++aRefIt) {
148 CompositeFeaturePtr anOwner = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(
149 ModelAPI_Feature::feature((*aRefIt)->owner()));
151 return name(anOwner);
154 static const std::string DUMMY;
158 void ModelHighAPI_Dumper::saveResultNames(const FeaturePtr& theFeature)
160 const std::string& aFeatureName = myNames[theFeature].first;
161 const std::list<ResultPtr>& aResults = theFeature->results();
162 std::list<ResultPtr>::const_iterator aResIt = aResults.begin();
163 for (int i = 1; aResIt != aResults.end(); ++aResIt, ++i) {
164 bool isUserDefined = true;
165 std::string aResName = (*aResIt)->data()->name();
166 size_t anIndex = aResName.find(aFeatureName);
168 std::string aSuffix = aResName.substr(aFeatureName.length());
169 if (aSuffix.empty() && i == 1) // first result may not constain index in the name
170 isUserDefined = false;
172 if (aSuffix[0] == '_' && std::stoi(aSuffix.substr(1)) == i)
173 isUserDefined = false;
177 myNames[*aResIt] = std::pair<std::string, std::string>(aResName,
178 isUserDefined ? aResName : std::string());
182 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_Document>& theDoc,
183 const std::string& theFileName)
185 // dump top level document feature
186 static const std::string aDocName("partSet");
187 myNames[theDoc] = std::pair<std::string, std::string>(aDocName, std::string());
188 *this << aDocName << " = model.moduleDocument()" << std::endl;
190 // dump subfeatures and store result to file
191 return process(theDoc) && exportTo(theFileName);
194 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_Document>& theDoc)
197 std::list<FeaturePtr> aFeatures = theDoc->allFeatures();
198 std::list<FeaturePtr>::const_iterator aFeatIt = aFeatures.begin();
199 // firstly, dump all parameters
200 for (; aFeatIt != aFeatures.end(); ++ aFeatIt)
201 dumpParameter(*aFeatIt);
202 // dump all other features
203 for (aFeatIt = aFeatures.begin(); aFeatIt != aFeatures.end(); ++aFeatIt) {
204 CompositeFeaturePtr aCompFeat = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(*aFeatIt);
205 if (aCompFeat) // iteratively process composite features
206 isOk = process(aCompFeat) && isOk;
207 else if (!isDumped(*aFeatIt)) // dump common feature
208 dumpFeature(*aFeatIt);
213 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_CompositeFeature>& theComposite, bool isForce)
215 // increase composite features stack
216 ++gCompositeStackDepth;
217 // dump composite itself
218 if (!isDumped(theComposite) || isForce)
219 dumpFeature(theComposite, isForce);
221 // sub-part is processed independently, because it provides separate document
222 if (theComposite->getKind() == PartSetPlugin_Part::ID()) {
223 // decrease composite features stack because we run into separate document
224 --gCompositeStackDepth;
226 ResultPartPtr aPartResult =
227 std::dynamic_pointer_cast<ModelAPI_ResultPart>(theComposite->lastResult());
230 DocumentPtr aSubDoc = aPartResult->partDoc();
233 // set name of document
234 const std::string& aPartName = myNames[theComposite].first;
235 std::string aDocName = aPartName + "_doc";
236 myNames[aSubDoc] = std::pair<std::string, std::string>(aDocName, std::string());
238 // dump document in a separate line
239 *this << aDocName << " = " << aPartName << ".document()" << std::endl;
240 // dump features in the document
241 return process(aSubDoc);
245 bool isOk = processSubs(theComposite);
246 // decrease composite features stack
247 --gCompositeStackDepth;
252 bool ModelHighAPI_Dumper::processSubs(const std::shared_ptr<ModelAPI_CompositeFeature>& theComposite,
256 // dump all sub-features;
257 int aNbSubs = theComposite->numberOfSubs();
258 for (int anIndex = 0; anIndex < aNbSubs; ++anIndex) {
259 FeaturePtr aFeature = theComposite->subFeature(anIndex);
260 if (isDumped(aFeature))
263 CompositeFeaturePtr aCompFeat = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
264 if (aCompFeat) // iteratively process composite features
265 isOk = process(aCompFeat) && isOk;
267 dumpFeature(aFeature, true);
270 bool isDumpSetName = !myEntitiesStack.empty() &&
271 myEntitiesStack.top().myEntity == EntityPtr(theComposite);
272 bool isForceModelDo = isDumpSetName &&
273 (myEntitiesStack.top().myUserName || !myEntitiesStack.top().myResults.empty());
274 // It is necessary for the sketch to create its result when complete (command "model.do()").
275 // This option is set by flat theDumpModelDo.
276 // However, nested sketches are rebuilt by parent feature, so, they do not need
277 // explicit call of "model.do()". This will be controlled by the depth of the stack.
278 if (isForceModelDo || (theDumpModelDo && gCompositeStackDepth <= 1))
279 *this << "model.do()" << std::endl;
281 // dump "setName" for composite feature
287 bool ModelHighAPI_Dumper::exportTo(const std::string& theFileName)
290 OSD_OpenStream(aFile, theFileName.c_str(), std::ofstream::out);
291 if (!aFile.is_open())
295 for (ModulesMap::const_iterator aModIt = myModules.begin();
296 aModIt != myModules.end(); ++aModIt) {
297 aFile << "from " << aModIt->first << " import ";
298 if (aModIt->second.empty() ||
299 aModIt->second.find(std::string()) != aModIt->second.end())
300 aFile << "*"; // import whole module
302 // import specific features
303 std::set<std::string>::const_iterator anObjIt = aModIt->second.begin();
305 for (++anObjIt; anObjIt != aModIt->second.end(); ++anObjIt)
306 aFile << ", " << *anObjIt;
310 if (!myModules.empty())
313 aFile << "import model" << std::endl << std::endl;
314 aFile << "model.begin()" << std::endl;
316 // dump collected data
317 aFile << myFullDump.str();
318 aFile << myDumpBuffer.str();
321 aFile << "model.end()" << std::endl;
329 void ModelHighAPI_Dumper::importModule(const std::string& theModuleName,
330 const std::string& theObject)
332 myModules[theModuleName].insert(theObject);
335 void ModelHighAPI_Dumper::dumpEntitySetName()
337 const LastDumpedEntity& aLastDumped = myEntitiesStack.top();
339 // dump "setName" for the entity
340 if (aLastDumped.myUserName) {
341 std::pair<std::string, std::string> anEntityNames = myNames[aLastDumped.myEntity];
342 if (!anEntityNames.second.empty())
343 myDumpBuffer << anEntityNames.first << ".setName(\"" << anEntityNames.second << "\")" << std::endl;
344 anEntityNames.second.clear(); // don't dump "setName" for the entity twice
346 // dump "setName" for results
347 std::list<ResultPtr>::const_iterator aResIt = aLastDumped.myResults.begin();
348 std::list<ResultPtr>::const_iterator aResEnd = aLastDumped.myResults.end();
349 for (; aResIt != aResEnd; ++aResIt) {
351 std::pair<std::string, std::string> anEntityNames = myNames[*aResIt];
352 if (!anEntityNames.second.empty()) {
354 myDumpBuffer << ".setName(\"" << anEntityNames.second << "\")" << std::endl;
355 anEntityNames.second.clear(); // don't dump "setName" for the entity twice
358 if (!isDefaultColor(*aResIt)) {
359 AttributeIntArrayPtr aColor = (*aResIt)->data()->intArray(ModelAPI_Result::COLOR_ID());
360 if (aColor && aColor->isInitialized()) {
362 myDumpBuffer << ".setColor(" << aColor->value(0) << ", " << aColor->value(1)
363 << ", " << aColor->value(2) << ")" << std::endl;
368 myEntitiesStack.pop();
371 bool ModelHighAPI_Dumper::isDumped(const EntityPtr& theEntity) const
373 EntityNameMap::const_iterator aFound = myNames.find(theEntity);
374 return aFound != myNames.end();
377 bool ModelHighAPI_Dumper::isDefaultColor(const ResultPtr& theResult) const
379 AttributeIntArrayPtr aColor = theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
380 if (!aColor || !aColor->isInitialized())
383 std::string aSection, aName, aDefault;
384 theResult->colorConfigInfo(aSection, aName, aDefault);
386 // dump current color
387 std::ostringstream aColorInfo;
388 aColorInfo << aColor->value(0) << "," << aColor->value(1) << "," << aColor->value(2);
390 return aDefault == aColorInfo.str();
393 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const char theChar)
395 myDumpBuffer << theChar;
399 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const char* theString)
401 myDumpBuffer << theString;
405 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::string& theString)
407 myDumpBuffer << theString;
411 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const bool theValue)
413 myDumpBuffer << (theValue ? "True" : "False");
417 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const int theValue)
419 myDumpBuffer << theValue;
423 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const double theValue)
425 myDumpBuffer << theValue;
429 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::shared_ptr<GeomAPI_Pnt>& thePoint)
431 importModule("GeomAPI", "GeomAPI_Pnt");
432 myDumpBuffer << "GeomAPI_Pnt(" << thePoint->x() << ", "
433 << thePoint->y() << ", " << thePoint->z() << ")";
437 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::shared_ptr<GeomAPI_Dir>& theDir)
439 importModule("GeomAPI", "GeomAPI_Dir");
440 myDumpBuffer << "GeomAPI_Dir(" << theDir->x() << ", "
441 << theDir->y() << ", " << theDir->z() << ")";
445 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
446 const std::shared_ptr<GeomDataAPI_Dir>& theDir)
448 myDumpBuffer << theDir->x() << ", " << theDir->y() << ", " << theDir->z();
452 static void dumpArray(std::ostringstream& theOutput, int theSize,
453 double* theValues, std::string* theTexts)
455 for (int i = 0; i < theSize; ++i) {
458 if (theTexts[i].empty())
459 theOutput << theValues[i];
461 theOutput << "\"" << theTexts[i] << "\"";
465 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
466 const std::shared_ptr<GeomDataAPI_Point>& thePoint)
468 static const int aSize = 3;
469 double aValues[aSize] = {thePoint->x(), thePoint->y(), thePoint->z()};
470 std::string aTexts[aSize] = {thePoint->textX(), thePoint->textY(), thePoint->textZ()};
471 dumpArray(myDumpBuffer, aSize, aValues, aTexts);
475 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
476 const std::shared_ptr<GeomDataAPI_Point2D>& thePoint)
478 static const int aSize = 2;
479 double aValues[aSize] = {thePoint->x(), thePoint->y()};
480 std::string aTexts[aSize] = {thePoint->textX(), thePoint->textY()};
481 dumpArray(myDumpBuffer, aSize, aValues, aTexts);
485 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
486 const std::shared_ptr<ModelAPI_AttributeBoolean>& theAttrBool)
488 myDumpBuffer << (theAttrBool->value() ? "True" : "False");
492 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
493 const std::shared_ptr<ModelAPI_AttributeInteger>& theAttrInt)
495 std::string aText = theAttrInt->text();
497 myDumpBuffer << theAttrInt->value();
499 myDumpBuffer << "\"" << aText << "\"";
503 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
504 const std::shared_ptr<ModelAPI_AttributeDouble>& theAttrReal)
506 std::string aText = theAttrReal->text();
508 myDumpBuffer << theAttrReal->value();
510 myDumpBuffer << "\"" << aText << "\"";
514 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
515 const std::shared_ptr<ModelAPI_AttributeString>& theAttrStr)
517 myDumpBuffer << "\"" << theAttrStr->value() << "\"";
521 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const FeaturePtr& theEntity)
523 myDumpBuffer << name(theEntity);
525 bool isUserDefinedName = !myNames[theEntity].second.empty();
526 // store results if they have user-defined names or colors
527 std::list<ResultPtr> aResultsWithNameOrColor;
528 const std::list<ResultPtr>& aResults = theEntity->results();
529 std::list<ResultPtr>::const_iterator aResIt = aResults.begin();
530 for (; aResIt != aResults.end(); ++aResIt)
531 if (!myNames[*aResIt].second.empty() || !isDefaultColor(*aResIt))
532 aResultsWithNameOrColor.push_back(*aResIt);
533 // store just dumped entity to stack
534 myEntitiesStack.push(LastDumpedEntity(theEntity, isUserDefinedName, aResultsWithNameOrColor));
536 // remove entity from the list of not dumped items
537 myNotDumpedEntities.erase(theEntity);
541 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const ResultPtr& theResult)
543 FeaturePtr aFeature = ModelAPI_Feature::feature(theResult);
545 std::list<ResultPtr> aResults = aFeature->results();
546 for(std::list<ResultPtr>::const_iterator anIt = aResults.cbegin(); anIt != aResults.cend(); ++anIt, ++anIndex) {
547 if(theResult->isSame(*anIt)) {
551 myDumpBuffer << name(aFeature) << ".result()[" << anIndex << "]";
555 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const ObjectPtr& theObject)
557 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObject);
559 myDumpBuffer << name(aFeature);
563 ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
572 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const AttributePtr& theAttr)
574 FeaturePtr anOwner = ModelAPI_Feature::feature(theAttr->owner());
575 myDumpBuffer << name(anOwner) << "." << attributeGetter(anOwner, theAttr->id()) << "()";
579 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
580 const std::shared_ptr<ModelAPI_AttributeRefAttr>& theRefAttr)
582 if (theRefAttr->isObject())
583 *this << theRefAttr->object();
585 *this << theRefAttr->attr();
589 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
590 const std::shared_ptr<ModelAPI_AttributeRefAttrList>& theRefAttrList)
593 std::list<std::pair<ObjectPtr, AttributePtr> > aList = theRefAttrList->list();
594 bool isAdded = false;
595 std::list<std::pair<ObjectPtr, AttributePtr> >::const_iterator anIt = aList.begin();
596 for (; anIt != aList.end(); ++anIt) {
598 myDumpBuffer << ", ";
602 *this << anIt->first;
603 else if (anIt->second)
604 * this << anIt->second;
610 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
611 const std::shared_ptr<ModelAPI_AttributeReference>& theReference)
613 *this << theReference->value();
617 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
618 const std::shared_ptr<ModelAPI_AttributeRefList>& theRefList)
620 static const int aThreshold = 2;
621 // if number of elements in the list if greater than a threshold,
622 // dump it in a separate line with specific name
623 std::string aDumped = myDumpBuffer.str();
624 if (aDumped.empty() || theRefList->size() <= aThreshold) {
626 std::list<ObjectPtr> aList = theRefList->list();
627 bool isAdded = false;
628 std::list<ObjectPtr>::const_iterator anIt = aList.begin();
629 for (; anIt != aList.end(); ++anIt) {
631 myDumpBuffer << ", ";
639 // clear buffer and store list "as is"
640 myDumpBuffer.str("");
642 // save buffer and clear it again
643 std::string aDumpedList = myDumpBuffer.str();
644 myDumpBuffer.str("");
645 // obtain name of list
646 FeaturePtr anOwner = ModelAPI_Feature::feature(theRefList->owner());
647 std::string aListName = name(anOwner) + "_objects";
648 // store all previous data
649 myDumpBuffer << aListName << " = " << aDumpedList << std::endl
650 << aDumped << aListName;
655 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
656 const std::shared_ptr<ModelAPI_AttributeSelection>& theAttrSelect)
658 myDumpBuffer << "model.selection(";
660 if(!theAttrSelect->isInitialized()) {
665 GeomShapePtr aShape = theAttrSelect->value();
667 aShape = theAttrSelect->context()->shape();
675 myDumpBuffer << "\"" << aShape->shapeTypeStr() << "\", \"" << theAttrSelect->namingName() << "\")";
679 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
680 const std::shared_ptr<ModelAPI_AttributeSelectionList>& theAttrSelList)
685 std::string aShapeTypeStr;
687 bool isAdded = false;
689 for(int anIndex = 0; anIndex < theAttrSelList->size(); ++anIndex) {
690 AttributeSelectionPtr anAttribute = theAttrSelList->value(anIndex);
691 aShape = anAttribute->value();
693 aShape = anAttribute->context()->shape();
701 myDumpBuffer << ", ";
705 myDumpBuffer << "model.selection(\"" << aShape->shapeTypeStr() << "\", \"" << anAttribute->namingName() << "\")";
714 ModelHighAPI_Dumper& operator<<(ModelHighAPI_Dumper& theDumper,
715 std::basic_ostream<char>& (*theEndl)(std::basic_ostream<char>&))
717 theDumper.myDumpBuffer << theEndl;
719 if (!theDumper.myEntitiesStack.empty()) {
720 // Name for composite feature is dumped when all sub-entities are dumped
721 // (see method ModelHighAPI_Dumper::processSubs).
722 const ModelHighAPI_Dumper::LastDumpedEntity& aLastDumped = theDumper.myEntitiesStack.top();
723 CompositeFeaturePtr aComposite =
724 std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aLastDumped.myEntity);
726 theDumper.dumpEntitySetName();
729 // store all not-dumped entities first
730 std::set<EntityPtr> aNotDumped = theDumper.myNotDumpedEntities;
731 std::string aBufCopy = theDumper.myDumpBuffer.str();
732 theDumper.clear(true);
733 std::set<EntityPtr>::const_iterator anIt = aNotDumped.begin();
734 for (; anIt != aNotDumped.end(); ++anIt) {
735 // if the feature is composite, dump it with all subs
736 CompositeFeaturePtr aCompFeat =
737 std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(*anIt);
739 theDumper.process(aCompFeat, true);
741 FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(*anIt);
742 theDumper.dumpFeature(aFeature, true);
746 // avoid multiple empty lines
747 size_t anInd = std::string::npos;
748 while ((anInd = aBufCopy.find("\n\n\n")) != std::string::npos)
749 aBufCopy.erase(anInd, 1);
750 // then store currently dumped string
751 theDumper.myFullDump << aBufCopy;