]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModelHighAPI/ModelHighAPI_Dumper.h
Salome HOME
Issue #20274: No intersection point from python dump
[modules/shaper.git] / src / ModelHighAPI / ModelHighAPI_Dumper.h
1 // Copyright (C) 2014-2020  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef ModelHighAPI_Dumper_H_
21 #define ModelHighAPI_Dumper_H_
22
23 #include "ModelHighAPI.h"
24
25 #include <list>
26 #include <map>
27 #include <memory>
28 #include <set>
29 #include <sstream>
30 #include <stack>
31 #include <string>
32
33 class GeomAPI_Pnt;
34 class GeomAPI_Dir;
35
36 class GeomDataAPI_Dir;
37 class GeomDataAPI_Point;
38 class GeomDataAPI_Point2D;
39 class GeomDataAPI_Point2DArray;
40
41 class ModelAPI_Attribute;
42 class ModelAPI_AttributeBoolean;
43 class ModelAPI_AttributeDouble;
44 class ModelAPI_AttributeDoubleArray;
45 class ModelAPI_AttributeIntArray;
46 class ModelAPI_AttributeInteger;
47 class ModelAPI_AttributeRefAttr;
48 class ModelAPI_AttributeRefAttrList;
49 class ModelAPI_AttributeReference;
50 class ModelAPI_AttributeRefList;
51 class ModelAPI_AttributeSelection;
52 class ModelAPI_AttributeSelectionList;
53 class ModelAPI_AttributeString;
54 class ModelAPI_AttributeStringArray;
55 class ModelAPI_CompositeFeature;
56 class ModelAPI_Document;
57 class ModelAPI_Entity;
58 class ModelAPI_Feature;
59 class ModelAPI_Folder;
60 class ModelAPI_Object;
61 class ModelAPI_Result;
62
63 typedef std::shared_ptr<ModelAPI_Document> DocumentPtr;
64 typedef std::shared_ptr<ModelAPI_Entity>   EntityPtr;
65 typedef std::shared_ptr<ModelAPI_Feature>  FeaturePtr;
66 typedef std::shared_ptr<ModelAPI_Folder>   FolderPtr;
67 typedef std::shared_ptr<ModelAPI_Result>   ResultPtr;
68
69 typedef std::set<std::string>                                                ModulesSet;
70 typedef std::map<DocumentPtr, std::map<std::string, std::pair<int, int> > >  NbFeaturesMap;
71
72 /**\class ModelHighAPI_Dumper
73  * \ingroup CPPHighAPI
74  * \brief Dump engine for the model
75  *
76  * The dumper can be customized by the set of storages (DumpStorage), for example to identify
77  * dumped selected objects by their geometrical properties. By default, the dump is executed to
78  * store original names of the selected shapes.
79  */
80 class ModelHighAPI_Dumper
81 {
82 public:
83   /** \class DumpStorage
84    *  \ingroup CPPHighAPI
85    *  \brief Storage for the dumped data. Process selection attributes to be dumped by naming.
86    */
87   class DumpStorage
88   {
89   public:
90     DumpStorage() {}
91     MODELHIGHAPI_EXPORT DumpStorage(const DumpStorage& theOther);
92     MODELHIGHAPI_EXPORT const DumpStorage& operator=(const DumpStorage& theOther);
93
94     virtual ~DumpStorage() {}
95
96     void setFilenameSuffix(const std::string& theSuffix) { myFilenameSuffix = theSuffix; }
97
98   protected:
99     std::ostringstream& buffer() { return myDumpBuffer; }
100     std::ostringstream& fullDump() { return myFullDump; }
101
102     MODELHIGHAPI_EXPORT virtual void reserveBuffer();
103     MODELHIGHAPI_EXPORT virtual void restoreReservedBuffer();
104
105     MODELHIGHAPI_EXPORT
106     virtual void write(const std::shared_ptr<ModelAPI_AttributeSelection>& theAttrSelect);
107
108     MODELHIGHAPI_EXPORT
109     virtual bool exportTo(const std::string& theFilename, const ModulesSet& theUsedModules);
110
111   private:
112     std::string myFilenameSuffix;
113     std::ostringstream myDumpBuffer;
114     std::ostringstream myFullDump;
115
116     std::stack<std::string> myDumpBufferHideout;
117
118     friend class ModelHighAPI_Dumper;
119   };
120   typedef std::shared_ptr<DumpStorage> DumpStoragePtr;
121
122   /** \class DumpStorageGeom
123    *  \ingroup CPPHighAPI
124    *  \brief Process selection attributes to be dumped by geometric properties.
125    */
126   class DumpStorageGeom : public DumpStorage
127   {
128   protected:
129     MODELHIGHAPI_EXPORT
130     virtual void write(const std::shared_ptr<ModelAPI_AttributeSelection>& theAttrSelect);
131   };
132
133   /** \class DumpStorageWeak
134    *  \ingroup CPPHighAPI
135    *  \brief Process selection attributes to be dumped by weak naming.
136    */
137   class DumpStorageWeak : public DumpStorage
138   {
139   protected:
140     MODELHIGHAPI_EXPORT
141     virtual void write(const std::shared_ptr<ModelAPI_AttributeSelection>& theAttrSelect);
142   };
143
144 public:
145   /// Default constructor
146   MODELHIGHAPI_EXPORT
147   ModelHighAPI_Dumper();
148
149   /// Sets instance of a dumper
150   MODELHIGHAPI_EXPORT
151   static void setInstance(ModelHighAPI_Dumper* theDumper);
152
153   /// Returns instance of a dumper
154   MODELHIGHAPI_EXPORT
155   static ModelHighAPI_Dumper* getInstance();
156
157   /// Destructor
158   MODELHIGHAPI_EXPORT
159   virtual ~ModelHighAPI_Dumper();
160
161   /// Add custom storage to collect corresponding dump
162   MODELHIGHAPI_EXPORT
163   void addCustomStorage(const DumpStoragePtr& theStorage);
164   /// Clear custom storages list
165   MODELHIGHAPI_EXPORT
166   void clearCustomStorage();
167   /// Dump given document into the file
168   /// \return \c true, if succeed
169   MODELHIGHAPI_EXPORT
170   bool process(const std::shared_ptr<ModelAPI_Document>& theDoc, const std::string& theFileName);
171
172   /// Add module to list of imported modules
173   /// \param theModuleName  name of the module to be imported
174   MODELHIGHAPI_EXPORT
175   void importModule(const std::string& theModuleName);
176
177   /// Returns name of specified entity
178   /// \param theEntity        [in] named entity
179   /// \param theSaveNotDumped [in]
180   ///    if \c true, the entity should be stored as not dumped (will be dumped automatically)
181   /// \param theUseEntityName [in]
182   ///    if \c true, the entity name should be used "as is" without changing default name
183   /// \return name of the entity
184   MODELHIGHAPI_EXPORT
185   const std::string& name(const EntityPtr& theEntity, bool theSaveNotDumped = true,
186                           bool theUseEntityName = false, bool theSetIsDumped = false);
187
188   /// Returns name of parent composite feature for specified entity
189   MODELHIGHAPI_EXPORT
190   const std::string& parentName(const FeaturePtr& theFeature);
191
192   /// Dump parameter feature only
193   virtual void dumpParameter(const FeaturePtr& theFeature) = 0;
194   /// Dump given feature
195   virtual void dumpFeature(const FeaturePtr& theFeature, const bool theForce = false) = 0;
196   /// Dump folder
197   virtual void dumpFolder(const FolderPtr& theFolder) = 0;
198
199   /// Set feature postponed until all its dependencies are not dumped.
200   /// The name of the feature is stored anyway.
201   MODELHIGHAPI_EXPORT
202   void postpone(const EntityPtr& theEntity);
203
204   /// Set a feature that should not be dumped anyway
205   MODELHIGHAPI_EXPORT
206   void doNotDumpFeature(const FeaturePtr& theFeature)
207   { myFeaturesToSkip.insert(theFeature); }
208
209   /// Dump sub-feature name and color, without dumping feature creation.
210   /// Used for features which creates sub-features in their execute method.
211   /// \param theSubFeatureGet [in] method for getting sub-feature (e.g. "Feature_1.subFeature(0)")
212   /// \param theSubFeature    [in] sub-feature
213   MODELHIGHAPI_EXPORT
214   void dumpSubFeatureNameAndColor(const std::string theSubFeatureGet,
215                                   const FeaturePtr& theSubFeature);
216
217   /// Return name of getter for corresponding attribute
218   virtual std::string attributeGetter(const FeaturePtr& theFeature,
219                                       const std::string& theAttrName) const = 0;
220
221   /// Return name of wrapper feature
222   virtual std::string featureWrapper(const FeaturePtr& theFeature) const = 0;
223
224   /// Dump character
225   MODELHIGHAPI_EXPORT
226   ModelHighAPI_Dumper& operator<<(const char theChar);
227   /// Dump string
228   MODELHIGHAPI_EXPORT
229   ModelHighAPI_Dumper& operator<<(const char* theString);
230   /// Dump string
231   MODELHIGHAPI_EXPORT
232   ModelHighAPI_Dumper& operator<<(const std::string& theString);
233   /// Dump wstring
234   MODELHIGHAPI_EXPORT
235   ModelHighAPI_Dumper& operator<<(const std::wstring& theString);
236   /// Dump boolean
237   MODELHIGHAPI_EXPORT
238   ModelHighAPI_Dumper& operator<<(const bool theValue);
239   /// Dump integer
240   MODELHIGHAPI_EXPORT
241   ModelHighAPI_Dumper& operator<<(const int theValue);
242   /// Dump real
243   MODELHIGHAPI_EXPORT
244   ModelHighAPI_Dumper& operator<<(const double theValue);
245   /// Dump std::endl
246   friend
247   MODELHIGHAPI_EXPORT
248   ModelHighAPI_Dumper& operator<<(ModelHighAPI_Dumper& theDumper,
249                                 std::basic_ostream<char>& (*theEndl)(std::basic_ostream<char>&));
250
251   /// Print std::endl from Python
252   MODELHIGHAPI_EXPORT void newline();
253
254   /// Dump GeomAPI_Pnt in the following form:
255   /// "GeomAPI_Pnt(X, Y, Z)"
256   MODELHIGHAPI_EXPORT
257   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<GeomAPI_Pnt>& thePoint);
258   /// Dump GeomAPI_Dir
259   /// "GeomAPI_Dir(X, Y, Z)"
260   MODELHIGHAPI_EXPORT
261   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<GeomAPI_Dir>& theDir);
262
263   /// Dump GeomDataAPI_Dir in the following form:
264   /// "X, Y, Z"
265   MODELHIGHAPI_EXPORT
266   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<GeomDataAPI_Dir>& theDir);
267   /// Dump GeomDataAPI_Point in the following form:
268   /// "X, Y, Z"
269   MODELHIGHAPI_EXPORT
270   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<GeomDataAPI_Point>& thePoint);
271   /// Dump GeomDataAPI_Point2D in the following form:
272   /// "X, Y"
273   MODELHIGHAPI_EXPORT
274   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<GeomDataAPI_Point2D>& thePoint);
275   /// Dump GeomDataAPI_Point2DArray as a list of 2D points
276   MODELHIGHAPI_EXPORT
277   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<GeomDataAPI_Point2DArray>& thePointArray);
278
279   /// Dump AttributeBoolean
280   MODELHIGHAPI_EXPORT
281   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<ModelAPI_AttributeBoolean>& theAttrBool);
282   /// Dump AttributeInteger
283   MODELHIGHAPI_EXPORT
284   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<ModelAPI_AttributeInteger>& theAttrInt);
285   /// Dump AttributeIntArray
286   MODELHIGHAPI_EXPORT
287   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<ModelAPI_AttributeIntArray>& theArray);
288   /// Dump AttributeDouble
289   MODELHIGHAPI_EXPORT
290   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<ModelAPI_AttributeDouble>& theAttrReal);
291   /// Dump AttributeDoubleArray
292   MODELHIGHAPI_EXPORT
293   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<ModelAPI_AttributeDoubleArray>& theArray);
294   /// Dump AttributeString
295   MODELHIGHAPI_EXPORT
296   ModelHighAPI_Dumper& operator<<(const std::shared_ptr<ModelAPI_AttributeString>& theAttrStr);
297   /// Dump name of entity and remember to dump "setName" if the entity has user-defined name
298   MODELHIGHAPI_EXPORT
299   ModelHighAPI_Dumper& operator<<(const FeaturePtr& theEntity);
300
301   /// Dump folder
302   MODELHIGHAPI_EXPORT
303   ModelHighAPI_Dumper& operator<<(const FolderPtr& theFolder);
304
305   /// Dump result
306   MODELHIGHAPI_EXPORT
307   ModelHighAPI_Dumper& operator<<(const ResultPtr& theResult);
308
309   /// Dump a list of results
310   MODELHIGHAPI_EXPORT
311   ModelHighAPI_Dumper& operator<<(const std::list<ResultPtr>& theResults);
312
313   /// Dump Attribute
314   MODELHIGHAPI_EXPORT ModelHighAPI_Dumper&
315     operator<<(const std::shared_ptr<ModelAPI_Attribute>& theAttr);
316   /// Dump Object
317   MODELHIGHAPI_EXPORT ModelHighAPI_Dumper&
318     operator<<(const std::shared_ptr<ModelAPI_Object>& theObject);
319
320   /// Dump AttributeRefAttr
321   MODELHIGHAPI_EXPORT ModelHighAPI_Dumper&
322     operator<<(const std::shared_ptr<ModelAPI_AttributeRefAttr>& theRefAttr);
323   /// Dump AttributeRefAttrList as follows:
324   /// "[obj1, obj2, obj3, ...]"
325   MODELHIGHAPI_EXPORT ModelHighAPI_Dumper&
326     operator<<(const std::shared_ptr<ModelAPI_AttributeRefAttrList>& theRefAttrList);
327   /// Dump AttributeRefList as follows:
328   /// "[obj1, obj2, obj3, ...]"
329   MODELHIGHAPI_EXPORT ModelHighAPI_Dumper&
330     operator<<(const std::shared_ptr<ModelAPI_AttributeRefList>& theRefList);
331   /// Dump AttributeSelection
332   MODELHIGHAPI_EXPORT ModelHighAPI_Dumper&
333     operator<<(const std::shared_ptr<ModelAPI_AttributeSelection>& theAttrSelect);
334   /// Dump AttributeSelectionList
335   MODELHIGHAPI_EXPORT ModelHighAPI_Dumper&
336     operator<<(const std::shared_ptr<ModelAPI_AttributeSelectionList>& theAttrSelList);
337   /// Dump AttributeReference
338   MODELHIGHAPI_EXPORT ModelHighAPI_Dumper&
339   operator<<(const std::shared_ptr<ModelAPI_AttributeReference>& theReference);
340   /// Dump AttributeStringArray
341   MODELHIGHAPI_EXPORT ModelHighAPI_Dumper&
342     operator<<(const std::shared_ptr<ModelAPI_AttributeStringArray>& theArray);
343
344   /// clear list of not dumped entities
345   MODELHIGHAPI_EXPORT void clearNotDumped();
346
347   /// Check the entity is already dumped
348   MODELHIGHAPI_EXPORT
349   bool isDumped(const EntityPtr& theEntity) const;
350   /// Check theRefAttr is already dumped
351   MODELHIGHAPI_EXPORT
352   bool isDumped(const std::shared_ptr<ModelAPI_AttributeRefAttr>& theRefAttr) const;
353   /// Check all objects in theRefList are already dumped
354   MODELHIGHAPI_EXPORT
355   bool isDumped(const std::shared_ptr<ModelAPI_AttributeRefList>& theRefList) const;
356
357   /// Returns the index of the first object in the list which is not dumped yet.
358   MODELHIGHAPI_EXPORT
359   size_t indexOfFirstNotDumped(const std::shared_ptr<ModelAPI_AttributeRefList>& theRefList) const;
360
361   /// Export variables names to another module (calls exportVariable implemented in python)
362   MODELHIGHAPI_EXPORT virtual void exportVariables() const;
363
364   /// Export one variable name to another module (implemented in python)
365   MODELHIGHAPI_EXPORT virtual void exportVariable(const std::string& /*theEntry*/,
366                                                   const std::string& /*theVarName*/) const {}
367
368   /// Returns \c true if the special comment line to improve the readability
369   /// should be printed before the feature of the given kind.
370   MODELHIGHAPI_EXPORT bool dumpCommentBeforeFeature(const FeaturePtr& theFeature) const;
371
372 protected:
373   /// Dump "setName" command if last entity had user-defined name
374   MODELHIGHAPI_EXPORT void dumpEntitySetName();
375
376 private:
377   ModelHighAPI_Dumper(const ModelHighAPI_Dumper&);
378   const ModelHighAPI_Dumper& operator=(const ModelHighAPI_Dumper&);
379
380   /// Iterate all features in document and dump them into intermediate buffer
381   bool process(const std::shared_ptr<ModelAPI_Document>& theDoc);
382
383   /// Dump composite feature and all it sub-features
384   bool process(const std::shared_ptr<ModelAPI_CompositeFeature>& theComposite,
385                bool isForce = false,
386                bool isDumpModelDo = true);
387
388   /// Iterate all features in composite feature and dump them into intermediate buffer
389   /// \param theComposite   [in] parent composite feature
390   /// \param theDumpModelDo [in] shows that command "model.do()" should be written at the end
391   MODELHIGHAPI_EXPORT
392   bool processSubs(const std::shared_ptr<ModelAPI_CompositeFeature>& theComposite,
393                    bool theDumpModelDo = false);
394
395   /// Stores names of results for the given feature
396   void saveResultNames(const FeaturePtr& theFeature);
397
398   /// Check the result feature has default color
399   bool isDefaultColor(const ResultPtr& theResult) const;
400
401   /// Check the result feature has default deflection
402   bool isDefaultDeflection(const ResultPtr& theResult) const;
403
404   /// Check the result feature has default transparency
405   bool isDefaultTransparency(const ResultPtr& theResult) const;
406
407   /// Dump postponed entities
408   void dumpPostponed(bool theDumpFolders = false);
409
410 private:
411   struct EntityName {
412     std::string myCurrentName; ///< default name of current feature
413     std::string myUserName;    ///< user-defined name
414     bool        myIsDefault;   ///< \c true if the name is default
415     bool        myIsDumped;    ///< shows that the names of the feature are already stored
416
417     EntityName() {}
418
419     EntityName(const std::string& theCurName, const std::string& theUserName, bool theDefault)
420       : myCurrentName(theCurName),
421         myUserName(theUserName),
422         myIsDefault(theDefault),
423         myIsDumped(false)
424     {}
425   };
426   typedef std::map<EntityPtr, EntityName> EntityNameMap;
427
428   struct LastDumpedEntity {
429     EntityPtr            myEntity;   ///< last dumped entity
430     bool                 myUserName; ///< the entity hase user-defined name
431     /// results of this entity, which has user-defined names or specific colors
432     std::list<ResultPtr> myResults;
433
434     LastDumpedEntity(EntityPtr theEntity, bool theUserName,
435       const std::list<ResultPtr>& theResults = std::list<ResultPtr>())
436       : myEntity(theEntity), myUserName(theUserName), myResults(theResults)
437     {}
438   };
439   typedef std::stack<LastDumpedEntity> DumpStack;
440
441   static ModelHighAPI_Dumper* mySelf;
442
443   class DumpStorageBuffer;
444   DumpStorageBuffer*  myDumpStorage;        ///< storage of dumped data
445
446   ModulesSet          myModules;            ///< modules and entities to be imported
447   EntityNameMap       myNames;              ///< names of the entities
448   DumpStack           myEntitiesStack;      ///< stack of dumped entities
449
450   NbFeaturesMap       myFeatureCount;       ///< number of features of each kind
451
452   /// features which should not be dumped (like coincidence and tangency created by tangent arc)
453   std::set<FeaturePtr> myFeaturesToSkip;
454
455   std::list<EntityPtr> myPostponed; ///< list of postponed entities (sketch constraints or folders)
456   bool myDumpPostponedInProgress; ///< processing postponed is in progress
457
458 protected:
459   /// list of entities, used by other features but not dumped yet
460   std::set<EntityPtr> myNotDumpedEntities;
461
462   friend class SketchAPI_Sketch;
463   friend class ModelHighAPI_Folder;
464 };
465
466 #endif