]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModelHighAPI/ModelHighAPI_Dumper.cpp
Salome HOME
c49b84114ae5e69da972f7d6eb6147e5c4425ba5
[modules/shaper.git] / src / ModelHighAPI / ModelHighAPI_Dumper.cpp
1 // Copyright (C) 2016-20xx CEA/DEN, EDF R&D -->
2
3 // File:        ModelHighAPI_Dumper.cpp
4 // Created:     1 August 2016
5 // Author:      Artem ZHIDKOV
6
7 //--------------------------------------------------------------------------------------
8 #include "ModelHighAPI_Dumper.h"
9
10 #include <Config_PropManager.h>
11
12 #include <GeomAPI_Pnt.h>
13 #include <GeomAPI_Dir.h>
14 #include <GeomAPI_ShapeExplorer.h>
15
16 #include <GeomDataAPI_Dir.h>
17 #include <GeomDataAPI_Point.h>
18 #include <GeomDataAPI_Point2D.h>
19
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>
39
40 #include <PartSetPlugin_Part.h>
41
42 #include <OSD_OpenFile.hxx>
43
44 #include <fstream>
45
46 #define DEBUG_DEFLECTION
47
48 static int gCompositeStackDepth = 0;
49
50 ModelHighAPI_Dumper* ModelHighAPI_Dumper::mySelf = 0;
51
52 ModelHighAPI_Dumper::ModelHighAPI_Dumper()
53 {
54   clear();
55 }
56
57 void ModelHighAPI_Dumper::setInstance(ModelHighAPI_Dumper* theDumper)
58 {
59   if (mySelf == 0)
60     mySelf = theDumper;
61 }
62
63 ModelHighAPI_Dumper* ModelHighAPI_Dumper::getInstance()
64 {
65   return mySelf;
66 }
67
68 void ModelHighAPI_Dumper::clear(bool bufferOnly)
69 {
70   myDumpBuffer.str("");
71   myDumpBuffer << std::setprecision(16);
72
73   clearNotDumped();
74
75   if (!bufferOnly) {
76     myFullDump.str("");
77     myFullDump << std::setprecision(16);
78
79     myNames.clear();
80     myModules.clear();
81     myFeatureCount.clear();
82     while (!myEntitiesStack.empty())
83       myEntitiesStack.pop();
84   }
85 }
86
87 void ModelHighAPI_Dumper::clearNotDumped()
88 {
89   myNotDumpedEntities.clear();
90 }
91
92 const std::string& ModelHighAPI_Dumper::name(const EntityPtr& theEntity,
93                                              bool theSaveNotDumped,
94                                              bool theUseEntityName)
95 {
96   EntityNameMap::const_iterator aFound = myNames.find(theEntity);
97   if (aFound != myNames.end())
98     return aFound->second.myCurrentName;
99
100   // entity is not found, store it
101   std::string aName;
102   bool isDefaultName = false;
103   std::ostringstream aDefaultName;
104   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theEntity);
105   if (aFeature) {
106     aName = aFeature->name();
107     const std::string& aKind = aFeature->getKind();
108     DocumentPtr aDoc = aFeature->document();
109     int& aNbFeatures = myFeatureCount[aDoc][aKind];
110     aNbFeatures += 1;
111
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);
116
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;
122       }
123     }
124
125     // obtain default name for the feature
126     if (theUseEntityName)
127       aDefaultName << aName;
128     else {
129       int aFullIndex = 0;
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;
135       }
136       aDefaultName << aKind << "_" << aFullIndex;
137     }
138   }
139
140   myNames[theEntity] = EntityName(aDefaultName.str(), aName, isDefaultName);
141   if (theSaveNotDumped)
142     myNotDumpedEntities.insert(theEntity);
143
144   // store names of results
145   if (aFeature)
146     saveResultNames(aFeature);
147
148   return myNames[theEntity].myCurrentName;
149 }
150
151 const std::string& ModelHighAPI_Dumper::parentName(const FeaturePtr& theEntity)
152 {
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()));
158     if (anOwner)
159       return name(anOwner);
160   }
161
162   static const std::string DUMMY;
163   return DUMMY;
164 }
165
166 void ModelHighAPI_Dumper::saveResultNames(const FeaturePtr& theFeature)
167 {
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();
175
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);
183     if (anIndex == 0) {
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;
187       else {
188         if (aSuffix[0] == '_' && std::stoi(aSuffix.substr(1)) == i)
189           isUserDefined = false;
190       }
191     }
192
193     myNames[*aResIt] = EntityName(aResName,
194         (isUserDefined ? aResName : std::string()), !isUserDefined);
195   }
196 }
197
198 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_Document>& theDoc,
199                                   const std::string& theFileName)
200 {
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;
205
206   // dump subfeatures and store result to file
207   return process(theDoc) && exportTo(theFileName);
208 }
209
210 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_Document>& theDoc)
211 {
212   bool isOk = true;
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);
225   }
226   return isOk;
227 }
228
229 bool ModelHighAPI_Dumper::process(const std::shared_ptr<ModelAPI_CompositeFeature>& theComposite, bool isForce)
230 {
231   // increase composite features stack
232   ++gCompositeStackDepth;
233   // dump composite itself
234   if (!isDumped(theComposite) || isForce)
235     dumpFeature(FeaturePtr(theComposite), isForce);
236
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;
241
242     ResultPartPtr aPartResult =
243         std::dynamic_pointer_cast<ModelAPI_ResultPart>(theComposite->lastResult());
244     if (!aPartResult)
245       return false;
246     DocumentPtr aSubDoc = aPartResult->partDoc();
247     if (!aSubDoc)
248       return false;
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);
253
254     // dump document in a separate line
255     *this << aDocName << " = " << aPartName << ".document()" << std::endl;
256     // dump features in the document
257     return process(aSubDoc);
258   }
259
260   // dump sub-features
261   bool isOk = processSubs(theComposite);
262   // decrease composite features stack
263   --gCompositeStackDepth;
264
265   return isOk;
266 }
267
268 bool ModelHighAPI_Dumper::processSubs(const std::shared_ptr<ModelAPI_CompositeFeature>& theComposite,
269                                       bool theDumpModelDo)
270 {
271   bool isOk = true;
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))
278       continue;
279
280     isSubDumped = true;
281     CompositeFeaturePtr aCompFeat = std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
282     if (aCompFeat) // iteratively process composite features
283       isOk = process(aCompFeat) && isOk;
284     else
285       dumpFeature(aFeature, true);
286   }
287
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;
298
299   // dump "setName" for composite feature
300   if (isDumpSetName)
301     dumpEntitySetName();
302   return isOk;
303 }
304
305 void ModelHighAPI_Dumper::dumpSubFeatureNameAndColor(const std::string theSubFeatureGet,
306                                                      const FeaturePtr& theSubFeature)
307 {
308   name(theSubFeature, false);
309   myNames[theSubFeature] = EntityName(theSubFeatureGet, theSubFeature->name(), false);
310
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);
319   }
320
321   // store just dumped entity to stack
322   myEntitiesStack.push(LastDumpedEntity(theSubFeature, true, aResultsWithNameOrColor));
323
324   dumpEntitySetName();
325 }
326
327 bool ModelHighAPI_Dumper::exportTo(const std::string& theFileName)
328 {
329   std::ofstream aFile;
330   OSD_OpenStream(aFile, theFileName.c_str(), std::ofstream::out);
331   if (!aFile.is_open())
332     return false;
333
334   // standard header
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
341     else {
342       // import specific features
343       std::set<std::string>::const_iterator anObjIt = aModIt->second.begin();
344       aFile << *anObjIt;
345       for (++anObjIt; anObjIt != aModIt->second.end(); ++anObjIt)
346         aFile << ", " << *anObjIt;
347     }
348     aFile << std::endl;
349   }
350   if (!myModules.empty())
351     aFile << std::endl;
352
353   aFile << "import model" << std::endl << std::endl;
354   aFile << "model.begin()" << std::endl;
355
356   // dump collected data
357   aFile << myFullDump.str();
358   aFile << myDumpBuffer.str();
359
360   // standard footer
361   aFile << "model.end()" << std::endl;
362
363   aFile.close();
364   clear();
365
366   return true;
367 }
368
369 void ModelHighAPI_Dumper::importModule(const std::string& theModuleName,
370                                        const std::string& theObject)
371 {
372   myModules[theModuleName].insert(theObject);
373 }
374
375 void ModelHighAPI_Dumper::dumpEntitySetName()
376 {
377   const LastDumpedEntity& aLastDumped = myEntitiesStack.top();
378
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;
388   }
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) {
393     // set result name
394     EntityName& anEntityNames = myNames[*aResIt];
395     if (!anEntityNames.myIsDefault) {
396       *this << *aResIt;
397       myDumpBuffer << ".setName(\"" << anEntityNames.myUserName << "\")" << std::endl;
398       // don't dump "setName" for the entity twice
399       anEntityNames.myUserName.clear();
400       anEntityNames.myIsDefault = true;
401     }
402     // set result color
403     if (!isDefaultColor(*aResIt)) {
404       AttributeIntArrayPtr aColor = (*aResIt)->data()->intArray(ModelAPI_Result::COLOR_ID());
405       if (aColor && aColor->isInitialized()) {
406         *this << *aResIt;
407         myDumpBuffer << ".setColor(" << aColor->value(0) << ", " << aColor->value(1)
408                      << ", " << aColor->value(2) << ")" << std::endl;
409       }
410     }
411     // set result deflection
412     if (!isDefaultDeflection(*aResIt)) {
413       AttributeDoublePtr aDeflectionAttr = (*aResIt)->data()->real(ModelAPI_Result::DEFLECTION_ID());
414       #ifdef DEBUG_DEFLECTION
415         std::cout << "aDeflectionAttr.get(): " << (aDeflectionAttr.get() == NULL ? "Empty" : "Not empty") << std::endl;
416         std::cout << "aDeflectionAttr->isInitialized(): " << aDeflectionAttr->isInitialized() << std::endl;
417       #endif
418       if(aDeflectionAttr.get() && aDeflectionAttr->isInitialized()) {
419         *this << *aResIt;
420         #ifdef DEBUG_DEFLECTION
421           std::cout << "Dump deflection" << std::endl;
422         #endif
423         myDumpBuffer << ".setDeflection(" << aDeflectionAttr->value() << ")" << std::endl;
424       }
425     }
426   }
427
428   myEntitiesStack.pop();
429 }
430
431 bool ModelHighAPI_Dumper::isDumped(const EntityPtr& theEntity) const
432 {
433   EntityNameMap::const_iterator aFound = myNames.find(theEntity);
434   return aFound != myNames.end();
435 }
436
437 bool ModelHighAPI_Dumper::isDefaultColor(const ResultPtr& theResult) const
438 {
439   AttributeIntArrayPtr aColor = theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
440   if (!aColor || !aColor->isInitialized())
441     return true;
442
443   std::string aSection, aName, aDefault;
444   theResult->colorConfigInfo(aSection, aName, aDefault);
445
446   // dump current color
447   std::ostringstream aColorInfo;
448   aColorInfo << aColor->value(0) << "," << aColor->value(1) << "," << aColor->value(2);
449
450   return aDefault == aColorInfo.str();
451 }
452
453 bool ModelHighAPI_Dumper::isDefaultDeflection(const ResultPtr& theResult) const
454 {
455   AttributeDoublePtr aDeflectionAttr = theResult->data()->real(ModelAPI_Result::DEFLECTION_ID());
456   if(!aDeflectionAttr || !aDeflectionAttr->isInitialized()) {
457     return true;
458   }
459
460   double aCurrent = aDeflectionAttr->value();
461   double aDefault = -1;
462
463   bool isConstruction = false;
464   std::string aResultGroup = theResult->groupName();
465   if (aResultGroup == ModelAPI_ResultConstruction::group())
466     isConstruction = true;
467   else if (aResultGroup == ModelAPI_ResultBody::group()) {
468     GeomShapePtr aGeomShape = theResult->shape();
469     if (aGeomShape.get()) {
470       // if the shape could not be exploded on faces, it contains only wires, edges, and vertices
471       // correction of deviation for them should not influence to the application performance
472       GeomAPI_ShapeExplorer anExp(aGeomShape, GeomAPI_Shape::FACE);
473       isConstruction = !anExp.more();
474     }
475   }
476   if (isConstruction)
477     aDefault = Config_PropManager::real("Visualization", "construction_deflection",
478                                         ModelAPI_ResultConstruction::DEFAULT_DEFLECTION());
479   else
480     aDefault = Config_PropManager::real("Visualization", "body_deflection",
481                                         ModelAPI_ResultBody::DEFAULT_DEFLECTION());
482
483 #ifdef DEBUG_DEFLECTION
484   std::cout << "Current deflection: " << aCurrent << std::endl;
485   std::cout << "Default deflection: " << aDefault << std::endl;
486   std::cout << "fabs(aCurrent - aDefault): " << fabs(aCurrent - aDefault) << std::endl;
487 #endif
488
489
490   return fabs(aCurrent - aDefault) < 1.e-12;
491 }
492
493 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const char theChar)
494 {
495   myDumpBuffer << theChar;
496   return *this;
497 }
498
499 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const char* theString)
500 {
501   myDumpBuffer << theString;
502   return *this;
503 }
504
505 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::string& theString)
506 {
507   myDumpBuffer << theString;
508   return *this;
509 }
510
511 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const bool theValue)
512 {
513   myDumpBuffer << (theValue ? "True" : "False");
514   return *this;
515 }
516
517 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const int theValue)
518 {
519   myDumpBuffer << theValue;
520   return *this;
521 }
522
523 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const double theValue)
524 {
525   myDumpBuffer << theValue;
526   return *this;
527 }
528
529 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::shared_ptr<GeomAPI_Pnt>& thePoint)
530 {
531   importModule("GeomAPI", "GeomAPI_Pnt");
532   myDumpBuffer << "GeomAPI_Pnt(" << thePoint->x() << ", "
533                << thePoint->y() << ", " << thePoint->z() << ")";
534   return *this;
535 }
536
537 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const std::shared_ptr<GeomAPI_Dir>& theDir)
538 {
539   importModule("GeomAPI", "GeomAPI_Dir");
540   myDumpBuffer << "GeomAPI_Dir(" << theDir->x() << ", "
541                << theDir->y() << ", " << theDir->z() << ")";
542   return *this;
543 }
544
545 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
546     const std::shared_ptr<GeomDataAPI_Dir>& theDir)
547 {
548   myDumpBuffer << theDir->x() << ", " << theDir->y() << ", " << theDir->z();
549   return *this;
550 }
551
552 static void dumpArray(std::ostringstream& theOutput, int theSize,
553                       double* theValues, std::string* theTexts)
554 {
555   for (int i = 0; i < theSize; ++i) {
556     if (i > 0)
557       theOutput << ", ";
558     if (theTexts[i].empty())
559       theOutput << theValues[i];
560     else
561       theOutput << "\"" << theTexts[i] << "\"";
562   }
563 }
564
565 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
566     const std::shared_ptr<GeomDataAPI_Point>& thePoint)
567 {
568   static const int aSize = 3;
569   double aValues[aSize] = {thePoint->x(), thePoint->y(), thePoint->z()};
570   std::string aTexts[aSize] = {thePoint->textX(), thePoint->textY(), thePoint->textZ()};
571   dumpArray(myDumpBuffer, aSize, aValues, aTexts);
572   return *this;
573 }
574
575 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
576     const std::shared_ptr<GeomDataAPI_Point2D>& thePoint)
577 {
578   static const int aSize = 2;
579   double aValues[aSize] = {thePoint->x(), thePoint->y()};
580   std::string aTexts[aSize] = {thePoint->textX(), thePoint->textY()};
581   dumpArray(myDumpBuffer, aSize, aValues, aTexts);
582   return *this;
583 }
584
585 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
586     const std::shared_ptr<ModelAPI_AttributeBoolean>& theAttrBool)
587 {
588   myDumpBuffer << (theAttrBool->value() ? "True" : "False");
589   return *this;
590 }
591
592 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
593     const std::shared_ptr<ModelAPI_AttributeInteger>& theAttrInt)
594 {
595   std::string aText = theAttrInt->text();
596   if (aText.empty())
597     myDumpBuffer << theAttrInt->value();
598   else
599     myDumpBuffer << "\"" << aText << "\"";
600   return *this;
601 }
602
603 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
604     const std::shared_ptr<ModelAPI_AttributeDouble>& theAttrReal)
605 {
606   std::string aText = theAttrReal->text();
607   if (aText.empty())
608     myDumpBuffer << theAttrReal->value();
609   else
610     myDumpBuffer << "\"" << aText << "\"";
611   return *this;
612 }
613
614 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
615     const std::shared_ptr<ModelAPI_AttributeString>& theAttrStr)
616 {
617   myDumpBuffer << "\"" << theAttrStr->value() << "\"";
618   return *this;
619 }
620
621 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const FeaturePtr& theEntity)
622 {
623   myDumpBuffer << name(theEntity);
624
625   bool isUserDefinedName = !myNames[theEntity].myIsDefault;
626   // store results if they have user-defined names or colors
627   std::list<ResultPtr> aResultsWithNameOrColor;
628   const std::list<ResultPtr>& aResults = theEntity->results();
629   std::list<ResultPtr>::const_iterator aResIt = aResults.begin();
630   for (; aResIt != aResults.end(); ++aResIt)
631     if (!myNames[*aResIt].myIsDefault || !isDefaultColor(*aResIt) || !isDefaultDeflection(*aResIt))
632       aResultsWithNameOrColor.push_back(*aResIt);
633   // store just dumped entity to stack
634   myEntitiesStack.push(LastDumpedEntity(theEntity, isUserDefinedName, aResultsWithNameOrColor));
635
636   // remove entity from the list of not dumped items
637   myNotDumpedEntities.erase(theEntity);
638   return *this;
639 }
640
641 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const ResultPtr& theResult)
642 {
643   FeaturePtr aFeature = ModelAPI_Feature::feature(theResult);
644   int anIndex = 0;
645   std::list<ResultPtr> aResults = aFeature->results();
646   for(std::list<ResultPtr>::const_iterator anIt = aResults.cbegin(); anIt != aResults.cend(); ++anIt, ++anIndex) {
647     if(theResult->isSame(*anIt)) {
648       break;
649     }
650   }
651   myDumpBuffer << name(aFeature) << ".result()[" << anIndex << "]";
652   return *this;
653 }
654
655 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const ObjectPtr& theObject)
656 {
657   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(theObject);
658   if(aFeature.get()) {
659     myDumpBuffer << name(aFeature);
660     return *this;
661   }
662
663   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
664   if(aResult.get()) {
665     *this << aResult;
666     return *this;
667   }
668
669   return *this;
670 }
671
672 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(const AttributePtr& theAttr)
673 {
674   FeaturePtr anOwner = ModelAPI_Feature::feature(theAttr->owner());
675
676   std::string aWrapperPrefix, aWrapperSuffix;
677   // Check the attribute belongs to copied (in multi-translation or multi-rotation) feature.
678   // In this case we need to cast explicitly feature to appropriate type.
679   AttributeBooleanPtr isCopy = anOwner->boolean("Copy");
680   if (isCopy.get() && isCopy->value()) {
681     aWrapperPrefix = featureWrapper(anOwner) + "(";
682     aWrapperSuffix = ")";
683     importModule("SketchAPI");
684   }
685
686   myDumpBuffer << aWrapperPrefix << name(anOwner) << aWrapperSuffix
687                << "." << attributeGetter(anOwner, theAttr->id()) << "()";
688   return *this;
689 }
690
691 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
692     const std::shared_ptr<ModelAPI_AttributeRefAttr>& theRefAttr)
693 {
694   if (theRefAttr->isObject())
695     *this << theRefAttr->object();
696   else
697     *this << theRefAttr->attr();
698   return *this;
699 }
700
701 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
702     const std::shared_ptr<ModelAPI_AttributeRefAttrList>& theRefAttrList)
703 {
704   myDumpBuffer << "[";
705   std::list<std::pair<ObjectPtr, AttributePtr> > aList = theRefAttrList->list();
706   bool isAdded = false;
707   std::list<std::pair<ObjectPtr, AttributePtr> >::const_iterator anIt = aList.begin();
708   for (; anIt != aList.end(); ++anIt) {
709     if (isAdded)
710       myDumpBuffer << ", ";
711     else
712       isAdded = true;
713     if (anIt->first)
714       *this << anIt->first;
715     else if (anIt->second)
716       * this << anIt->second;
717   }
718   myDumpBuffer << "]";
719   return *this;
720 }
721
722 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
723     const std::shared_ptr<ModelAPI_AttributeReference>& theReference)
724 {
725   *this << theReference->value();
726   return *this;
727 }
728
729 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
730     const std::shared_ptr<ModelAPI_AttributeRefList>& theRefList)
731 {
732   static const int aThreshold = 2;
733   // if number of elements in the list if greater than a threshold,
734   // dump it in a separate line with specific name
735   std::string aDumped = myDumpBuffer.str();
736   if (aDumped.empty() || theRefList->size() <= aThreshold) {
737     myDumpBuffer << "[";
738     std::list<ObjectPtr> aList = theRefList->list();
739     bool isAdded = false;
740     std::list<ObjectPtr>::const_iterator anIt = aList.begin();
741     for (; anIt != aList.end(); ++anIt) {
742       if (isAdded)
743         myDumpBuffer << ", ";
744       else
745         isAdded = true;
746
747       *this << *anIt;
748     }
749     myDumpBuffer << "]";
750   } else {
751     // clear buffer and store list "as is"
752     myDumpBuffer.str("");
753     *this << theRefList;
754     // save buffer and clear it again
755     std::string aDumpedList = myDumpBuffer.str();
756     myDumpBuffer.str("");
757     // obtain name of list
758     FeaturePtr anOwner = ModelAPI_Feature::feature(theRefList->owner());
759     std::string aListName = name(anOwner) + "_objects";
760     // store all previous data
761     myDumpBuffer << aListName << " = " << aDumpedList << std::endl
762                  << aDumped << aListName;
763   }
764   return *this;
765 }
766
767 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
768     const std::shared_ptr<ModelAPI_AttributeSelection>& theAttrSelect)
769 {
770   myDumpBuffer << "model.selection(";
771
772   if(!theAttrSelect->isInitialized()) {
773     myDumpBuffer << ")";
774     return *this;
775   }
776
777   GeomShapePtr aShape = theAttrSelect->value();
778   if(!aShape.get()) {
779     aShape = theAttrSelect->context()->shape();
780   }
781
782   if(!aShape.get()) {
783     myDumpBuffer << ")";
784     return *this;
785   }
786
787   myDumpBuffer << "\"" << aShape->shapeTypeStr() << "\", \"" << theAttrSelect->namingName() << "\")";
788   return *this;
789 }
790
791 ModelHighAPI_Dumper& ModelHighAPI_Dumper::operator<<(
792     const std::shared_ptr<ModelAPI_AttributeSelectionList>& theAttrSelList)
793 {
794   myDumpBuffer << "[";
795
796   GeomShapePtr aShape;
797   std::string aShapeTypeStr;
798
799   bool isAdded = false;
800
801   for(int anIndex = 0; anIndex < theAttrSelList->size(); ++anIndex) {
802     AttributeSelectionPtr anAttribute = theAttrSelList->value(anIndex);
803     aShape = anAttribute->value();
804     if(!aShape.get()) {
805       aShape = anAttribute->context()->shape();
806     }
807
808     if(!aShape.get()) {
809       continue;
810     }
811
812     if(isAdded) {
813       myDumpBuffer << ", ";
814     } else {
815       isAdded = true;
816     }
817     myDumpBuffer << "model.selection(\"" << aShape->shapeTypeStr() << "\", \"" << anAttribute->namingName() << "\")";
818   }
819
820   myDumpBuffer << "]";
821   return *this;
822 }
823
824 /// Dump std::endl
825 MODELHIGHAPI_EXPORT
826 ModelHighAPI_Dumper& operator<<(ModelHighAPI_Dumper& theDumper,
827                                 std::basic_ostream<char>& (*theEndl)(std::basic_ostream<char>&))
828 {
829   theDumper.myDumpBuffer << theEndl;
830
831   if (!theDumper.myEntitiesStack.empty()) {
832     // Name for composite feature is dumped when all sub-entities are dumped
833     // (see method ModelHighAPI_Dumper::processSubs).
834     const ModelHighAPI_Dumper::LastDumpedEntity& aLastDumped = theDumper.myEntitiesStack.top();
835     CompositeFeaturePtr aComposite =
836         std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aLastDumped.myEntity);
837     if (!aComposite)
838       theDumper.dumpEntitySetName();
839   }
840
841   // store all not-dumped entities first
842   std::set<EntityPtr> aNotDumped = theDumper.myNotDumpedEntities;
843   std::string aBufCopy = theDumper.myDumpBuffer.str();
844   theDumper.clear(true);
845   std::set<EntityPtr>::const_iterator anIt = aNotDumped.begin();
846   for (; anIt != aNotDumped.end(); ++anIt) {
847     // if the feature is composite, dump it with all subs
848     CompositeFeaturePtr aCompFeat =
849         std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(*anIt);
850     if (aCompFeat)
851       theDumper.process(aCompFeat, true);
852     else {
853       FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(*anIt);
854       theDumper.dumpFeature(aFeature, true);
855     }
856   }
857
858   // avoid multiple empty lines
859   size_t anInd = std::string::npos;
860   while ((anInd = aBufCopy.find("\n\n\n")) != std::string::npos)
861     aBufCopy.erase(anInd, 1);
862   // then store currently dumped string
863   theDumper.myFullDump << aBufCopy;
864
865   return theDumper;
866 }