]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOM/GEOM_Engine.cxx
Salome HOME
1293fd8ed24f81f6adf1059cf83ccb8b3f76a038
[modules/geom.git] / src / GEOM / GEOM_Engine.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifdef WIN32
24 #pragma warning( disable:4786 )
25 #endif
26
27 #include "GEOM_Engine.hxx"
28
29 #include "GEOM_Field.hxx"
30 #include "GEOM_Function.hxx"
31 #include "GEOM_ISubShape.hxx"
32 #include "GEOM_PythonDump.hxx"
33 #include "GEOM_Solver.hxx"
34 #include "GEOM_SubShapeDriver.hxx"
35 #include "Sketcher_Profile.hxx"
36
37 #include <Basics_OCCTVersion.hxx>
38
39 #include "utilities.h"
40
41 #include <Basics_Utils.hxx>
42
43 #include <TDF_Tool.hxx>
44 #include <TDF_Data.hxx>
45 #include <TDF_Reference.hxx>
46 #include <TDF_LabelSequence.hxx>
47 #include <TDataStd_Integer.hxx>
48 #include <TDataStd_ChildNodeIterator.hxx>
49 #include <TFunction_Driver.hxx>
50 #include <TFunction_DriverTable.hxx>
51 #include <TDataStd_ByteArray.hxx>
52 #include <TDataStd_UAttribute.hxx>
53 #include <TDF_ChildIterator.hxx>
54 #include <TDataStd_Comment.hxx>
55
56 #include <TopExp.hxx>
57 #include <TopTools_IndexedMapOfShape.hxx>
58
59 #include <TCollection_AsciiString.hxx>
60 #include <TCollection_ExtendedString.hxx>
61 #include <TColStd_SequenceOfAsciiString.hxx>
62 #include <TColStd_MapOfTransient.hxx>
63 #include <TColStd_HSequenceOfInteger.hxx>
64
65 #include <TColStd_DataMapIteratorOfDataMapOfIntegerTransient.hxx>
66
67 #include <Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString.hxx>
68
69 #if OCC_VERSION_LARGE > 0x07000000
70 #include <BinDrivers.hxx>
71 #include <StdDrivers_DocumentRetrievalDriver.hxx>
72 #include <PCDM_StorageDriver.hxx>
73 #endif
74
75 #include <set>
76
77 #include <Standard_Failure.hxx>
78 #include <Standard_ErrorHandler.hxx> // CAREFUL ! position of this file is critic : see Lucien PIGNOLONI / OCC
79
80 #define COMMA ','
81 #define O_BRACKET '('
82 #define C_BRACKET ')'
83 #define O_SQR_BRACKET '['
84 #define C_SQR_BRACKET ']'
85 #define PY_NULL "None"
86
87 #ifdef _DEBUG_
88 static int MYDEBUG = 0;
89 #else
90 static int MYDEBUG = 0;
91 #endif
92
93 typedef std::map< TCollection_AsciiString, TCollection_AsciiString > TSting2StringMap;
94 typedef std::map< TCollection_AsciiString, TObjectData >             TSting2ObjDataMap;
95 typedef std::map< TCollection_AsciiString, TObjectData* >            TSting2ObjDataPtrMap;
96 typedef std::map< int, std::list < int > >                           TIntToListIntMap;
97
98 static GEOM_Engine* TheEngine = NULL;
99
100
101 static TCollection_AsciiString BuildIDFromObject(Handle(GEOM_BaseObject)& theObject)
102 {
103   TCollection_AsciiString anEntry;
104   TDF_Tool::Entry(theObject->GetEntry(), anEntry);
105   return anEntry;
106 }
107
108 bool ProcessFunction(Handle(GEOM_Function)&             theFunction,
109                      TCollection_AsciiString&           theScript,
110                      TCollection_AsciiString&           theAfterScript,
111                      const TVariablesList&              theVariables,
112                      const bool                         theIsPublished,
113                      TDF_LabelMap&                      theProcessed,
114                      std::set<TCollection_AsciiString>& theIgnoreObjs,
115                      bool&                              theIsDumpCollected);
116
117 static int GetTag(const TCollection_AsciiString &theEntry);
118
119 static void FillMapOfRef(const Handle(GEOM_Function) &theFunction,
120                                TIntToListIntMap      &theRefMap);
121
122 void ReplaceVariables(TCollection_AsciiString& theCommand,
123                       const TVariablesList&    theVariables);
124
125 Handle(TColStd_HSequenceOfInteger) FindEntries(TCollection_AsciiString& theString);
126
127 void ReplaceEntriesByNames (TCollection_AsciiString&                  theScript,
128                             TSting2ObjDataMap&                        aEntry2ObjData,
129                             const bool                                theIsPublished,
130                             TColStd_SequenceOfAsciiString&            theObjListToPublish,
131                             Standard_Integer&                         objectCounter,
132                             Resource_DataMapOfAsciiStringAsciiString& aNameToEntry);
133
134 void AddObjectColors (TCollection_AsciiString& theScript,
135                       const TSting2ObjDataMap& theEntry2ObjData);
136
137 void AddTextures (TCollection_AsciiString& theScript);
138
139 void PublishObject (TObjectData&                              theObjectData,
140                     TSting2ObjDataMap&                        theEntry2ObjData,
141                     const TSting2ObjDataPtrMap&               theStEntry2ObjDataPtr,
142                     Resource_DataMapOfAsciiStringAsciiString& theNameToEntry,
143                     std::map< int, TCollection_AsciiString >& theEntryToCmdMap,
144                     std::set<TCollection_AsciiString>&        theMapOfPublished);
145
146 static TCollection_AsciiString GetPublishCommands
147                    (const int                                       theTag,
148                     const std::map< int, TCollection_AsciiString > &theEntryToCmdMap,
149                     const TIntToListIntMap                         &theMapRefs,
150                           std::set< int >                          &thePublished);
151
152 //================================================================================
153 /*!
154  * \brief Fix up the name of python variable
155  */
156 //================================================================================
157
158 void GEOM_Engine::healPyName( TCollection_AsciiString&                  pyName,
159                               const TCollection_AsciiString&            anEntry,
160                               Resource_DataMapOfAsciiStringAsciiString& aNameToEntry)
161 {
162   const TCollection_AsciiString allowedChars
163     ("qwertyuioplkjhgfdsazxcvbnmQWERTYUIOPLKJHGFDSAZXCVBNM0987654321_");
164
165   if ( pyName.IsIntegerValue() ) { // pyName must not start with a digit
166     pyName.Insert( 1, 'a' );
167   }
168   int p, p2=1; // replace not allowed chars
169   while ((p = pyName.FirstLocationNotInSet(allowedChars, p2, pyName.Length()))) {
170     pyName.SetValue(p, '_');
171     p2=p;
172   }
173   if ( aNameToEntry.IsBound( pyName ) && anEntry != aNameToEntry( pyName ))
174     {  // diff objects have same name - make a new name by appending a digit
175       TCollection_AsciiString aName2;
176       Standard_Integer i = 0;
177       do {
178         aName2 = pyName + "_" + ++i;
179       } while ( aNameToEntry.IsBound( aName2 ) && anEntry != aNameToEntry( aName2 ));
180       pyName = aName2;
181     }
182 }
183
184 //=======================================================================
185 //function : GetTextureGUID
186 //purpose  :
187 //=======================================================================
188 const Standard_GUID& GEOM_Engine::GetTextureGUID()
189 {
190   static Standard_GUID anID("FF1BBB01-5D14-4df2-980B-3A668264EA17");
191   return anID;
192 }
193
194 //=============================================================================
195 /*!
196  *  GetEngine
197  */
198 //=============================================================================
199 GEOM_Engine* GEOM_Engine::GetEngine() { return TheEngine; }
200
201 //=============================================================================
202 /*!
203  *  SetEngine
204  */
205 //=============================================================================
206 void GEOM_Engine::SetEngine(GEOM_Engine* theEngine) { TheEngine = theEngine; }
207
208 //=============================================================================
209 /*!
210  *  Constructor
211  */
212 //=============================================================================
213 GEOM_Engine::GEOM_Engine()
214 {
215   TFunction_DriverTable::Get()->AddDriver(GEOM_Object::GetSubShapeID(), new GEOM_SubShapeDriver());
216   
217   _OCAFApp = new GEOM_Application();
218 #if OCC_VERSION_LARGE > 0x07000000
219   _OCAFApp->DefineFormat("SALOME_GEOM", "GEOM Document Version 1.0", "sgd",
220                          new StdDrivers_DocumentRetrievalDriver, 0);
221   BinDrivers::DefineFormat(_OCAFApp);
222 #endif
223   _UndoLimit = 0;
224 }
225
226 /*!
227  *  Destructor
228  */
229 GEOM_Engine::~GEOM_Engine()
230 {
231   GEOM_DataMapIteratorOfDataMapOfAsciiStringTransient It(_objects);
232   std::list< Handle(GEOM_Object) > objs;
233   for(; It.More(); It.Next())
234     objs.push_back( Handle(GEOM_Object)::DownCast(It.Value()) );
235   std::list< Handle(GEOM_Object) >::iterator objit;
236   for(objit = objs.begin(); objit != objs.end(); ++objit)
237     RemoveObject(*objit);
238
239   //Close document
240   Close();
241   _objects.Clear();
242 }
243
244 //=============================================================================
245 /*!
246  *  GetDocument
247  */
248 //=============================================================================
249 Handle(TDocStd_Document) GEOM_Engine::GetDocument(bool force)
250 {
251   Handle(TDocStd_Document) aDoc;
252   if (_document) {
253     aDoc = _document;
254   }
255   else if (force) {
256 #if OCC_VERSION_MAJOR > 6
257     _OCAFApp->NewDocument("BinOcaf", aDoc);
258 #else
259     _OCAFApp->NewDocument("SALOME_GEOM", aDoc);
260 #endif
261     aDoc->SetUndoLimit(_UndoLimit);
262     _document = aDoc;
263   }
264   return aDoc;
265 }
266
267 //=============================================================================
268 /*!
269  *  GetObject
270  */
271 //=============================================================================
272
273 Handle(GEOM_BaseObject) GEOM_Engine::GetObject(const char* theEntry, bool force)
274 {
275   Handle(GEOM_BaseObject) anObject;
276
277   if (_objects.IsBound(theEntry)) {
278     anObject = Handle(GEOM_BaseObject)::DownCast(_objects(theEntry));
279   }
280   else if (force) {
281     Handle(TDocStd_Document) aDoc = GetDocument(force);
282     if ( !aDoc.IsNull()) {
283       TDF_Label aLabel;
284       TDF_Tool::Label(aDoc->Main().Data(), theEntry, aLabel, Standard_True);
285       if ( !aLabel.IsNull() ) {
286         int objType = GEOM_BaseObject::GetType( aLabel );
287         switch ( objType ) {
288         case GEOM_FIELD_OBJTYPE:      anObject = new GEOM_Field    (aLabel); break;
289         case GEOM_FIELD_STEP_OBJTYPE: anObject = new GEOM_FieldStep(aLabel); break;
290         default:                      anObject = new GEOM_Object   (aLabel);
291         }
292         _objects.Bind(theEntry, anObject);
293       }
294     }
295   }
296
297   return anObject;
298 }
299
300 //=============================================================================
301 /*!
302  *  AddBaseObject
303  */
304 //=============================================================================
305
306 Handle(GEOM_BaseObject) GEOM_Engine::AddBaseObject(int theType)
307 {
308   Handle(TDocStd_Document) aDoc = GetDocument();
309   Handle(TDataStd_TreeNode) aRoot = TDataStd_TreeNode::Set(aDoc->Main());
310
311   // NPAL18604: use existing label to decrease memory usage,
312   //            if this label has been freed (object deleted)
313   bool useExisting = false;
314   TDF_Label aChild;
315   if (!_freeLabels.empty()) {
316     useExisting = true;
317     aChild = _freeLabels.front();
318     _freeLabels.pop_front();
319   }
320   if (!useExisting) {
321     // create new label
322     aChild = TDF_TagSource::NewChild(aDoc->Main());
323   }
324
325   Handle(GEOM_BaseObject) anObject;
326   switch ( theType ) {
327   case GEOM_FIELD_OBJTYPE:      anObject = new GEOM_Field    (aChild, theType); break;
328   case GEOM_FIELD_STEP_OBJTYPE: anObject = new GEOM_FieldStep(aChild, theType); break;
329   default:                      anObject = new GEOM_Object   (aChild, theType);
330   }
331
332   //Put an object in the map of created objects
333   TCollection_AsciiString anID = BuildIDFromObject(anObject);
334   if(_objects.IsBound(anID)) _objects.UnBind(anID);
335   _objects.Bind(anID, anObject);
336
337   return anObject;
338 }
339
340 //================================================================================
341 /*!
342  * \brief Adds a new object of the type theType in the OCAF document
343  */
344 //================================================================================
345
346 Handle(GEOM_Object) GEOM_Engine::AddObject(int theType)
347 {
348   return Handle(GEOM_Object)::DownCast( AddBaseObject(theType) );
349 }
350
351 //=============================================================================
352 /*!
353  *  AddSubShape
354  */
355 //=============================================================================
356
357 Handle(GEOM_Object) GEOM_Engine::AddSubShape(Handle(GEOM_Object)              theMainShape,
358                                              Handle(TColStd_HArray1OfInteger) theIndices,
359                                              bool isStandaloneOperation)
360 {
361   if (theMainShape.IsNull() || theIndices.IsNull()) return NULL;
362
363   Handle(TDocStd_Document) aDoc = GetDocument();
364   Handle(TDataStd_TreeNode) aRoot = TDataStd_TreeNode::Set(aDoc->Main());
365
366   // NPAL18604: use existing label to decrease memory usage,
367   //            if this label has been freed (object deleted)
368   bool useExisting = false;
369   TDF_Label aChild;;
370   if (!_freeLabels.empty()) {
371     useExisting = true;
372     aChild = _freeLabels.front();
373     _freeLabels.pop_front();
374   }
375   if (!useExisting) {
376     // create new label
377     aChild = TDF_TagSource::NewChild(aDoc->Main());
378   }
379
380   Handle(GEOM_Function) aMainShape = theMainShape->GetLastFunction();
381   Handle(GEOM_Object) anObject = new GEOM_Object (aChild, 28); //28 is SUBSHAPE type
382   Handle(GEOM_Function) aFunction = anObject->AddFunction(GEOM_Object::GetSubShapeID(), 1);
383
384   GEOM_ISubShape aSSI (aFunction);
385   aSSI.SetMainShape(aMainShape);
386   aSSI.SetIndices(theIndices);
387
388   try {
389     OCC_CATCH_SIGNALS;
390     GEOM_Solver aSolver (GEOM_Engine::GetEngine());
391     if (!aSolver.ComputeFunction(aFunction)) {
392       MESSAGE("GEOM_Engine::AddSubShape Error: Can't build a sub shape");
393       return NULL;
394     }
395   }
396   catch (Standard_Failure) {
397     Handle(Standard_Failure) aFail = Standard_Failure::Caught();
398     MESSAGE("GEOM_Engine::AddSubShape Error: " << aFail->GetMessageString());
399     return NULL;
400   }
401
402   // Put an object in the map of created objects
403   TCollection_AsciiString anID = BuildIDFromObject(anObject);
404   if (_objects.IsBound(anID)) _objects.UnBind(anID);
405   _objects.Bind(anID, anObject);
406
407   // Put this sub-shape in the list of sub-shapes of theMainShape
408   aMainShape->AddSubShapeReference(aFunction);
409
410   GEOM::TPythonDump pd (aFunction);
411
412   if (isStandaloneOperation) {
413     pd << anObject << " = geompy.GetSubShape(" << theMainShape << ", [";
414     Standard_Integer i = theIndices->Lower(), up = theIndices->Upper();
415     for (; i <= up - 1; i++) {
416       pd << theIndices->Value(i) << ", ";
417     }
418     pd << theIndices->Value(up) << "])";
419   }
420   else
421     pd << "None";
422
423   return anObject;
424 }
425
426 //=============================================================================
427 /*!
428  *  RemoveObject
429  */
430 //=============================================================================
431 bool GEOM_Engine::RemoveObject(Handle(GEOM_BaseObject)& theObject)
432 {
433   if (theObject.IsNull()) return false;
434
435   if(!_document)
436     return false;  // document is closed...
437
438   //Remove an object from the map of available objects
439   TCollection_AsciiString anID = BuildIDFromObject(theObject);
440   if (_objects.IsBound(anID)) {
441     Handle(GEOM_BaseObject) anObject = Handle(GEOM_BaseObject)::DownCast(_objects(anID));
442     if ( anObject != theObject )
443       anObject->_label = anObject->_label.Root();
444     _objects.UnBind(anID);
445   }
446
447   // If sub-shape, remove it from the list of sub-shapes of its main shape
448   Handle(GEOM_Object) aGO = Handle(GEOM_Object)::DownCast( theObject );
449   if ( !aGO.IsNull() && !aGO->IsMainShape()) {
450     Handle(GEOM_Function) aFunction = theObject->GetFunction(1);
451     GEOM_ISubShape aSSI (aFunction);
452     Handle(GEOM_Function) aMainShape = aSSI.GetMainShape();
453     //If main shape is not null, then remove
454     if(!aMainShape.IsNull())
455       aMainShape->RemoveSubShapeReference(aFunction);
456   }
457
458   int nb = theObject->GetNbFunctions();
459   Handle(TDataStd_TreeNode) aNode;
460   for (int i = 1; i <= nb; i++) {
461     Handle(GEOM_Function) aFunction = theObject->GetFunction(i);
462     if (aFunction->GetEntry().FindAttribute(GEOM_Function::GetFunctionTreeID(), aNode))
463       aNode->Remove();
464   }
465
466   TDF_Label aLabel = theObject->GetEntry();
467   aLabel.ForgetAllAttributes(Standard_True);
468
469   // Remember the label to reuse it then
470   if ( _freeLabels.empty() || _freeLabels.back() != aLabel )
471     _freeLabels.push_back(aLabel);
472
473   // we can't explicitely delete theObject. At least prevent its functioning
474   // as an alive object when aLabel is reused for a new object
475   theObject->_label = aLabel.Root();
476   theObject->_ior.Clear();
477   theObject->_parameters.Clear();;
478
479   theObject.Nullify();
480
481   return true;
482 }
483
484 //=============================================================================
485 /*!
486  *  Undo
487  */
488 //=============================================================================
489 void GEOM_Engine::Undo()
490 {
491   GetDocument()->Undo();
492 }
493
494 //=============================================================================
495 /*!
496  *  Redo
497  */
498 //=============================================================================
499 void GEOM_Engine::Redo()
500 {
501   GetDocument()->Redo();
502 }
503
504 //=============================================================================
505 /*!
506  *  Save
507  */
508 //=============================================================================
509 bool GEOM_Engine::Save(const char* theFileName)
510 {
511   if(!_document) return false;
512
513   _OCAFApp->SaveAs(_document, theFileName);
514
515   return true;
516 }
517
518 //=============================================================================
519 /*!
520  *  Load
521  */
522 //=============================================================================
523 bool GEOM_Engine::Load(const char* theFileName)
524 {
525   Handle(TDocStd_Document) aDoc;
526   if (_OCAFApp->Open(theFileName, aDoc) != PCDM_RS_OK) {
527     return false;
528   }
529
530 #if OCC_VERSION_MAJOR > 6
531   // Replace old document format by the new one.
532   if (aDoc->StorageFormat().IsEqual("SALOME_GEOM")) {
533     aDoc->ChangeStorageFormat("BinOcaf");
534   }
535 #endif
536
537   aDoc->SetUndoLimit(_UndoLimit);
538
539   _document = aDoc;
540
541   return true;
542 }
543
544 //=============================================================================
545 /*!
546  *  Close
547  */
548 //=============================================================================
549 void GEOM_Engine::Close()
550 {
551   if (_document) {
552     //Remove all GEOM Objects associated to the document
553     TColStd_SequenceOfAsciiString aSeq;
554     GEOM_DataMapIteratorOfDataMapOfAsciiStringTransient It (_objects);
555     for (; It.More(); It.Next()) {
556       aSeq.Append(It.Key());
557     }
558     for (Standard_Integer i=1; i<=aSeq.Length(); i++) {
559       _objects.UnBind(aSeq.Value(i));
560     }
561
562     // Forget free labels for document
563     _freeLabels.clear();
564
565     _OCAFApp->Close(_document);
566     _document.Nullify();
567   }
568 }
569
570 //=============================================================================
571 /*!
572  *  DumpPython
573  */
574 //=============================================================================
575 TCollection_AsciiString GEOM_Engine::DumpPython(std::vector<TObjectData>& theObjectData,
576                                                 TVariablesList theVariables,
577                                                 bool isPublished,
578                                                 bool isMultiFile, 
579                                                 bool& aValidScript)
580 {
581   // Set "C" numeric locale to save numbers correctly
582   Kernel_Utils::Localizer loc;
583
584   TCollection_AsciiString aScript;
585   Handle(TDocStd_Document) aDoc = GetDocument();
586
587   if (aDoc.IsNull())
588   {
589     TCollection_AsciiString anEmptyScript;
590     if( isMultiFile )
591       anEmptyScript = "def RebuildData(): pass\n";
592     return anEmptyScript;
593   }
594   
595   if( isMultiFile )
596     aScript  = "import salome\n";
597
598   aScript += "import GEOM\n";
599   aScript += "from salome.geom import geomBuilder\n";
600   aScript += "import math\n";
601   aScript += "import SALOMEDS\n\n";
602   if( isMultiFile )
603     aScript += "def RebuildData():";
604
605   aScript += "\n\tgeompy = geomBuilder.New()\n";
606
607   AddTextures(aScript);
608
609   Standard_Integer posToInsertGlobalVars = aScript.Length() + 1;
610
611   // a map containing copies of TObjectData from theObjectData
612   TSting2ObjDataMap    aEntry2ObjData;
613   // contains pointers to TObjectData of either aEntry2ObjData or theObjectData; the latter
614   // occures when several StudyEntries correspond to one Entry
615   TSting2ObjDataPtrMap aStEntry2ObjDataPtr;
616
617   //Resource_DataMapOfAsciiStringAsciiString aEntry2StEntry, aStEntry2Entry, theObjectNames;
618   for (unsigned i = 0; i < theObjectData.size(); ++i )
619   {
620     TObjectData& data = theObjectData[i];
621     // look for an object by entry
622     TDF_Label L;
623     TDF_Tool::Label( aDoc->GetData(), data._entry, L );
624     if ( L.IsNull() ) continue;
625     Handle(GEOM_BaseObject) obj = GEOM_BaseObject::GetObject( L );
626     // fill maps
627     if ( !obj.IsNull() ) {
628       TSting2ObjDataMap::iterator ent2Data =
629         aEntry2ObjData.insert( std::make_pair( data._entry, data )).first;
630
631       if ( ent2Data->second._studyEntry == data._studyEntry ) // Entry encounters 1st time
632         aStEntry2ObjDataPtr.insert( std::make_pair( data._studyEntry, & ent2Data->second ));
633       else
634         aStEntry2ObjDataPtr.insert( std::make_pair( data._studyEntry, & data ));
635     }
636   }
637
638   // collect objects entries to be published
639   TColStd_SequenceOfAsciiString aObjListToPublish;
640
641   // iterates on functions till critical (that requiers publication of objects)
642   Handle(TDataStd_TreeNode) aNode, aRoot;
643   Handle(GEOM_Function) aFunction;
644   TDF_LabelMap aCheckedFuncMap;
645   std::set< TCollection_AsciiString > anIgnoreObjMap;
646
647   TCollection_AsciiString aFuncScript;
648
649   // Mantis issue 0020768
650   Standard_Integer objectCounter = 0;
651   Resource_DataMapOfAsciiStringAsciiString aNameToEntry;
652   TIntToListIntMap                         aRefMap;
653
654   if (aDoc->Main().FindAttribute(GEOM_Function::GetFunctionTreeID(), aRoot)) {
655     TDataStd_ChildNodeIterator Itr(aRoot);
656     for (; Itr.More(); Itr.Next()) {
657       aNode = Itr.Value();
658       aFunction = GEOM_Function::GetFunction(aNode->Label());
659       if (aFunction.IsNull()) {
660         MESSAGE ( "Null function !!!!" );
661         continue;
662       }
663       bool isDumpCollected = false;
664       TCollection_AsciiString aCurScript, anAfterScript;
665       if (!ProcessFunction(aFunction, aCurScript, anAfterScript, theVariables,
666                            isPublished, aCheckedFuncMap, anIgnoreObjMap,
667                            isDumpCollected ))
668         continue;
669       // add function description before dump
670       if (!aCurScript.IsEmpty())
671       {
672         if ( aFunction->GetDriverGUID() == GEOM_Object::GetSubShapeID() &&
673              aFuncScript.Length() > aCurScript.Length() )
674           // avoid repeated SubShape...() command at the end
675           if (aFuncScript.Location( aCurScript,
676                                     aFuncScript.Length() - aCurScript.Length(),
677                                     aFuncScript.Length()))
678             continue; // aCurScript is already at the end of aFuncScript
679         aFuncScript += aCurScript;
680       }
681
682       // Fill the map of references.
683       FillMapOfRef(aFunction, aRefMap);
684
685       if (isDumpCollected ) {
686         // Replace entries by the names
687         ReplaceEntriesByNames( aFuncScript, aEntry2ObjData, isPublished,
688                                aObjListToPublish, objectCounter, aNameToEntry );
689
690         // publish collected objects
691         std::map< int, TCollection_AsciiString > anEntryToCmdMap; // sort publishing commands by study entry
692         int i = 1, n = aObjListToPublish.Length();
693         for ( ; i <= n; i++ )
694         {
695           const TCollection_AsciiString& aEntry = aObjListToPublish.Value(i);
696           PublishObject( aEntry2ObjData[aEntry], aEntry2ObjData, aStEntry2ObjDataPtr,
697                          aNameToEntry, anEntryToCmdMap, anIgnoreObjMap );
698         }
699         // add publishing commands to the script
700         std::set< int >                                    aPublished;
701         std::map< int, TCollection_AsciiString >::iterator anEntryToCmd = anEntryToCmdMap.begin();
702
703         for ( ; anEntryToCmd != anEntryToCmdMap.end(); ++anEntryToCmd ) {
704           const TCollection_AsciiString aPublishCmds =
705               GetPublishCommands(anEntryToCmd->first, anEntryToCmdMap,
706                                  aRefMap, aPublished);
707
708           aFuncScript += aPublishCmds;
709         }
710
711         // PTv, 0020001 add result objects from RestoreGivenSubShapes into ignore list,
712         //  because they will be published during command execution
713         int indx = anAfterScript.Search( "RestoreGivenSubShapes" );
714         if ( indx == -1 )
715           indx = anAfterScript.Search( "RestoreSubShapes" );
716         if ( indx != -1 ) {
717           TCollection_AsciiString aSubStr = anAfterScript.SubString(1, indx);
718           Handle(TColStd_HSequenceOfInteger) aSeq = FindEntries(aSubStr);
719           i = 1, n = aSeq->Length();
720           for ( ; i <= n; i+=2) {
721             TCollection_AsciiString anEntry =
722               aSubStr.SubString(aSeq->Value(i), aSeq->Value(i+1));
723             anIgnoreObjMap.insert(anEntry.ToCString());
724           }
725         }
726
727         aObjListToPublish.Clear();
728         aScript += aFuncScript;
729         aFuncScript.Clear();
730       }
731       aFuncScript += anAfterScript;
732     }
733   }
734
735   // Replace entries by the names
736   aObjListToPublish.Clear();
737   ReplaceEntriesByNames( aFuncScript, aEntry2ObjData, isPublished, aObjListToPublish,
738                          objectCounter, aNameToEntry );
739
740   aScript += aFuncScript;
741
742   // ouv : NPAL12872
743   AddObjectColors(aScript, aEntry2ObjData );
744
745   // Make script to publish in study
746   TSting2ObjDataPtrMap::iterator aStEntry2ObjDataPtrIt;
747   if ( isPublished )
748   {
749     std::map< int, TCollection_AsciiString > anEntryToCmdMap; // sort publishing commands by object entry
750
751     for (aStEntry2ObjDataPtrIt  = aStEntry2ObjDataPtr.begin();
752          aStEntry2ObjDataPtrIt != aStEntry2ObjDataPtr.end();
753          ++aStEntry2ObjDataPtrIt)
754     {
755       TObjectData* data = aStEntry2ObjDataPtrIt->second;
756       if ( anIgnoreObjMap.count( data->_entry ))
757         continue; // should not be dumped
758       PublishObject( *data, aEntry2ObjData, aStEntry2ObjDataPtr,
759                      aNameToEntry, anEntryToCmdMap, anIgnoreObjMap );
760     }
761     // add publishing commands to the script
762     std::set< int >                                    aPublished;
763     std::map< int, TCollection_AsciiString >::iterator anEntryToCmd = anEntryToCmdMap.begin();
764
765     for ( ; anEntryToCmd != anEntryToCmdMap.end(); ++anEntryToCmd ) {
766       const TCollection_AsciiString aPublishCmds =
767           GetPublishCommands(anEntryToCmd->first, anEntryToCmdMap,
768                              aRefMap, aPublished);
769
770       aScript += aPublishCmds;
771     }
772   }
773
774   //RNV: issue 16219: EDF PAL 469: "RemoveFromStudy" Function
775   //Add unpublish command if need
776   TCollection_AsciiString unpublishCmd("\n");
777   if(isMultiFile)
778     unpublishCmd += "\t";
779   unpublishCmd += "geompy.hideInStudy(";
780   
781   for (aStEntry2ObjDataPtrIt  = aStEntry2ObjDataPtr.begin();
782        aStEntry2ObjDataPtrIt != aStEntry2ObjDataPtr.end();
783        ++aStEntry2ObjDataPtrIt)
784     {
785       TObjectData* data = aStEntry2ObjDataPtrIt->second;      
786       if ( data->_unpublished && !data->_pyName.IsEmpty() ) {
787         aScript +=  unpublishCmd + data->_pyName + ")";
788       }
789     }    
790   
791   //aScript += "\n\tpass\n";
792   aScript += "\n";
793   aValidScript = true;
794
795   // fill _studyEntry2NameMap and build globalVars
796   TCollection_AsciiString globalVars;
797   _studyEntry2NameMap.Clear();
798   for (aStEntry2ObjDataPtrIt  = aStEntry2ObjDataPtr.begin();
799        aStEntry2ObjDataPtrIt != aStEntry2ObjDataPtr.end();
800        ++aStEntry2ObjDataPtrIt)
801   {
802     const TCollection_AsciiString& studyEntry = aStEntry2ObjDataPtrIt->first;
803     const TObjectData*                   data = aStEntry2ObjDataPtrIt->second;
804     _studyEntry2NameMap.Bind ( studyEntry, data->_pyName );
805     if ( !globalVars.IsEmpty() )
806       globalVars += ", ";
807     globalVars += data->_pyName;
808   }
809   if ( isMultiFile && !globalVars.IsEmpty() ) {
810     globalVars.Insert( 1, "\n\tglobal " );
811     aScript.Insert( posToInsertGlobalVars, globalVars );
812   }
813
814   return aScript;
815 }
816
817 //=======================================================================
818 //function : GetDumpName
819 //purpose  :
820 //=======================================================================
821
822 const char* GEOM_Engine::GetDumpName (const char* theStudyEntry) const
823 {
824   if ( _studyEntry2NameMap.IsBound( (char*)theStudyEntry ))
825     return _studyEntry2NameMap( (char*)theStudyEntry ).ToCString();
826
827   return NULL;
828 }
829
830 //=======================================================================
831 //function : GetAllDumpNames
832 //purpose  :
833 //=======================================================================
834
835 Handle(TColStd_HSequenceOfAsciiString) GEOM_Engine::GetAllDumpNames() const
836 {
837   Handle(TColStd_HSequenceOfAsciiString) aRetSeq = new TColStd_HSequenceOfAsciiString;
838
839   Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString it (_studyEntry2NameMap);
840   for (; it.More(); it.Next()) {
841     aRetSeq->Append(it.Value());
842   }
843
844   return aRetSeq;
845 }
846
847 #define TEXTURE_LABEL_ID       1
848 #define TEXTURE_LABEL_FILE     2
849 #define TEXTURE_LABEL_WIDTH    3
850 #define TEXTURE_LABEL_HEIGHT   4
851 #define TEXTURE_LABEL_DATA     5
852
853 int GEOM_Engine::addTexture(int theWidth, int theHeight,
854                             const Handle(TColStd_HArray1OfByte)& theTexture,
855                             const TCollection_AsciiString& theFileName)
856 {
857   Handle(TDocStd_Document) aDoc = GetDocument();
858   Handle(TDataStd_TreeNode) aRoot = TDataStd_TreeNode::Set(aDoc->Main());
859
860   // NPAL18604: use existing label to decrease memory usage,
861   //            if this label has been freed (object deleted)
862   bool useExisting = false;
863   TDF_Label aChild;
864   if (!_freeLabels.empty()) {
865     useExisting = true;
866     aChild = _freeLabels.front();
867     _freeLabels.pop_front();
868   }
869   if (!useExisting) {
870     // create new label
871     aChild = TDF_TagSource::NewChild(aDoc->Main());
872   }
873
874   aChild.ForgetAllAttributes(Standard_True);
875   Handle(TDataStd_TreeNode) node;
876   if ( !aChild.FindAttribute(TDataStd_TreeNode::GetDefaultTreeID(), node ) )
877     node = TDataStd_TreeNode::Set(aChild);
878   TDataStd_UAttribute::Set(aChild, GetTextureGUID());
879
880   static int aTextureID = 0;
881
882   TDataStd_Integer::Set(aChild.FindChild(TEXTURE_LABEL_ID),     ++aTextureID);
883   TDataStd_Comment::Set(aChild.FindChild(TEXTURE_LABEL_FILE),   theFileName);
884   TDataStd_Integer::Set(aChild.FindChild(TEXTURE_LABEL_WIDTH),  theWidth);
885   TDataStd_Integer::Set(aChild.FindChild(TEXTURE_LABEL_HEIGHT), theHeight);
886
887   Handle(TDataStd_ByteArray) anAttr =
888     TDataStd_ByteArray::Set(aChild.FindChild(TEXTURE_LABEL_DATA),
889                             theTexture.IsNull() ? 0 : theTexture->Lower(),
890                             theTexture.IsNull() ? 0 : theTexture->Upper());
891   anAttr->ChangeArray(theTexture);
892
893   return aTextureID;
894 }
895
896 Handle(TColStd_HArray1OfByte) GEOM_Engine::getTexture(int theTextureID,
897                                                       int& theWidth, int& theHeight,
898                                                       TCollection_AsciiString& theFileName)
899 {
900   Handle(TColStd_HArray1OfByte) anArray;
901   theWidth = theHeight = 0;
902
903   Handle(TDocStd_Document) aDoc = GetDocument();
904
905   TDF_ChildIterator anIterator(aDoc->Main(), Standard_True);
906   bool found = false;
907   for (; anIterator.More() && !found; anIterator.Next()) {
908     TDF_Label aTextureLabel = anIterator.Value();
909     if (aTextureLabel.IsAttribute( GetTextureGUID())) {
910       TDF_Label anIDLabel = aTextureLabel.FindChild(TEXTURE_LABEL_ID, Standard_False);
911       Handle(TDataStd_Integer) anIdAttr;
912       if(!anIDLabel.IsNull() && anIDLabel.FindAttribute(TDataStd_Integer::GetID(), anIdAttr) &&
913          anIdAttr->Get() == theTextureID) {
914         TDF_Label aFileLabel   = aTextureLabel.FindChild(TEXTURE_LABEL_FILE,    Standard_False);
915         TDF_Label aWidthLabel  = aTextureLabel.FindChild(TEXTURE_LABEL_WIDTH,   Standard_False);
916         TDF_Label aHeightLabel = aTextureLabel.FindChild(TEXTURE_LABEL_HEIGHT,  Standard_False);
917         TDF_Label aDataLabel   = aTextureLabel.FindChild(TEXTURE_LABEL_DATA,    Standard_False);
918         Handle(TDataStd_Integer) aWidthAttr, aHeightAttr;
919         Handle(TDataStd_ByteArray) aTextureAttr;
920         Handle(TDataStd_Comment) aFileAttr;
921         if (!aWidthLabel.IsNull()  && aWidthLabel.FindAttribute(TDataStd_Integer::GetID(),  aWidthAttr) &&
922             !aHeightLabel.IsNull() && aHeightLabel.FindAttribute(TDataStd_Integer::GetID(), aHeightAttr) &&
923             !aDataLabel.IsNull()   && aDataLabel.FindAttribute(TDataStd_ByteArray::GetID(), aTextureAttr)) {
924           theWidth = aWidthAttr->Get();
925           theHeight = aHeightAttr->Get();
926           anArray = aTextureAttr->InternalArray();
927         }
928         if (!aFileLabel.IsNull() && aFileLabel.FindAttribute(TDataStd_Comment::GetID(), aFileAttr))
929           theFileName = aFileAttr->Get();
930         found = true;
931       }
932     }
933   }
934   return anArray;
935 }
936
937 std::list<int> GEOM_Engine::getAllTextures()
938 {
939   std::list<int> id_list;
940
941   Handle(TDocStd_Document) aDoc = GetDocument();
942
943   TDF_ChildIterator anIterator(aDoc->Main(), Standard_True);
944   for (; anIterator.More(); anIterator.Next()) {
945     TDF_Label aTextureLabel = anIterator.Value();
946     if (aTextureLabel.IsAttribute( GetTextureGUID())) {
947       TDF_Label anIDLabel = aTextureLabel.FindChild(TEXTURE_LABEL_ID, Standard_False);
948       Handle(TDataStd_Integer) anIdAttr;
949       if(!anIDLabel.IsNull() && anIDLabel.FindAttribute(TDataStd_Integer::GetID(), anIdAttr))
950         id_list.push_back((int)anIdAttr->Get());
951     }
952   }
953   return id_list;
954 }
955
956 //===========================================================================
957 //                     Internal functions
958 //===========================================================================
959
960 //=============================================================================
961 /*!
962  *  MakeCommandfor3DSketcher: Make new command for 3DSketcher
963  */
964 //=============================================================================
965 TCollection_AsciiString MakeCommandfor3DSketcher (const TCollection_AsciiString& theDescr )
966 {
967     TCollection_AsciiString aNewDescr;
968     int i = 1;
969     TCollection_AsciiString aSubStr = theDescr.Token("\n\t", i);
970     for (; !aSubStr.IsEmpty(); aSubStr = theDescr.Token("\n\t", i)) {
971       if (aSubStr.Search( "Make3DSketcherCommand" ) != -1) {
972         TCollection_AsciiString aResult = aSubStr.Token(" ", 1);
973         // "3DSketcher:CMD[:CMD[:CMD...]]"
974         TCollection_AsciiString aCommand = aSubStr.Token("\"", 2);
975
976         // Split the command string to separate CMDs
977         int icmd = 2;
978         TColStd_SequenceOfAsciiString aSequence;
979         if (aCommand.Length()) {
980           TCollection_AsciiString aToken = aCommand.Token(":", icmd);
981           while (aToken.Length() > 0) {
982             aSequence.Append(aToken);
983             aToken = aCommand.Token(":", ++icmd);
984           }
985         }
986
987         if (aSequence.Length() > 0) {
988           if (i > 1)
989             aNewDescr += "\n\t";
990
991           aNewDescr += "\nsk = geompy.Sketcher3D()";
992           int nbCMDs = aSequence.Length();
993           for (icmd = 1; icmd <= nbCMDs; icmd++) {
994             aNewDescr += "\n\t";
995
996             TCollection_AsciiString aCMD = aSequence.Value(icmd);
997
998             // Split the CMD into string values
999             TColStd_SequenceOfAsciiString aStrVals;
1000             int ival = 1;
1001             TCollection_AsciiString aToken = aCMD.Token(" ", ival);
1002             while (aToken.Length() > 0) {
1003               aStrVals.Append(aToken);
1004               aToken = aCMD.Token(" ", ++ival);
1005             }
1006
1007             TCollection_AsciiString aCMDpref = aStrVals.Value(1);
1008             if (aCMDpref == "TT") {
1009               aNewDescr += "sk.addPointsAbsolute(";
1010               aNewDescr += aStrVals.Value(2) + ", " + aStrVals.Value(3) + ", " + aStrVals.Value(4) + ")";
1011             }
1012             else if (aCMDpref == "T") {
1013               aNewDescr += "sk.addPointsRelative(";
1014               aNewDescr += aStrVals.Value(2) + ", " + aStrVals.Value(3) + ", " + aStrVals.Value(4) + ")";
1015             }
1016             else if (aCMDpref == "WW") {
1017               aNewDescr += "sk.close()";
1018             }
1019             else if (aCMDpref.Value(1) == 'O'){
1020               TCollection_AsciiString aCMDtrunc = aStrVals.Value(1);
1021               aCMDtrunc.Trunc(3);
1022               if (aCMDpref.Value(4) == 'C')
1023                 aNewDescr += "sk.addPointRadiusAngleH";
1024               else
1025                 aNewDescr += "sk.addPointRadiusAngles";
1026               if (aCMDpref.Value(5) == 'A')
1027                 aNewDescr += "Absolute(";
1028               else
1029                 aNewDescr += "Relative(";
1030               aNewDescr +=  aStrVals.Value(4) + ", " +
1031                 aStrVals.Value(2) + ", " + aStrVals.Value(3) + ", " + "\""+aCMDtrunc+"\"" + ")";
1032             }
1033           }
1034           aNewDescr += "\n\t";
1035           aNewDescr += aResult + " = sk.wire()";
1036         }
1037       } // Make3DSketcherCommand
1038       else if (aSubStr.Search( "Make3DSketcher" ) != -1) {
1039         TCollection_AsciiString aResult = aSubStr.Token(" ", 1);
1040         TCollection_AsciiString aCommand = aSubStr.Token("[", 2);
1041         aCommand = aCommand.Token("]", 1);
1042         if (i > 1)
1043           aNewDescr += "\n\t";
1044         aNewDescr += "\nsk = geompy.Sketcher3D()";
1045         aNewDescr += "\n\t";
1046         aNewDescr += "sk.addPointsAbsolute(";
1047         aNewDescr += aCommand + ")";
1048         aNewDescr += "\n\t";
1049         aNewDescr += aResult + " = sk.wire()";
1050       }
1051       else {
1052         if (i > 1)
1053           aNewDescr += "\n\t";
1054         aNewDescr += aSubStr;
1055       }
1056       i++;
1057     }
1058     return aNewDescr;
1059 }
1060
1061 //=============================================================================
1062 /*!
1063  *  ProcessFunction: Dump function description into script
1064  */
1065 //=============================================================================
1066 bool ProcessFunction(Handle(GEOM_Function)&             theFunction,
1067                      TCollection_AsciiString&           theScript,
1068                      TCollection_AsciiString&           theAfterScript,
1069                      const TVariablesList&              theVariables,
1070                      const bool                         theIsPublished,
1071                      TDF_LabelMap&                      theProcessed,
1072                      std::set<TCollection_AsciiString>& theIgnoreObjs,
1073                      bool&                              theIsDumpCollected)
1074 {
1075   theIsDumpCollected = false;
1076   if (theFunction.IsNull()) return false;
1077
1078   if (theProcessed.Contains(theFunction->GetEntry())) return false;
1079
1080   // pass functions, that depends on nonexisting ones
1081   bool doNotProcess = false;
1082   TDF_LabelSequence aSeq;
1083   theFunction->GetDependency(aSeq);
1084   Standard_Integer aLen = aSeq.Length();
1085   for (Standard_Integer i = 1; i <= aLen && !doNotProcess; i++) {
1086     TDF_Label aRefLabel = aSeq.Value(i);
1087     Handle(TDF_Reference) aRef;
1088     if (!aRefLabel.FindAttribute(TDF_Reference::GetID(), aRef)) {
1089       doNotProcess = true;
1090     }
1091     else {
1092       if (aRef.IsNull() || aRef->Get().IsNull()) {
1093         doNotProcess = true;
1094       }
1095       else {
1096         Handle(TDataStd_TreeNode) aT;
1097         if (!TDataStd_TreeNode::Find(aRef->Get(), aT)) {
1098           doNotProcess = true;
1099         }
1100         else {
1101           TDF_Label aDepLabel = aT->Label();
1102           Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(aDepLabel);
1103
1104           if (aFunction.IsNull()) doNotProcess = true;
1105           else if (!theProcessed.Contains(aDepLabel)) doNotProcess = true;
1106         }
1107       }
1108     }
1109   }
1110
1111   if (doNotProcess) {
1112     TCollection_AsciiString anObjEntry;
1113     TDF_Tool::Entry(theFunction->GetOwnerEntry(), anObjEntry);
1114     theIgnoreObjs.insert(anObjEntry);
1115     return false;
1116   }
1117   theProcessed.Add(theFunction->GetEntry());
1118
1119   TCollection_AsciiString aDescr = theFunction->GetDescription();
1120   if(aDescr.Length() == 0) return false;
1121
1122   //Check if its internal function which doesn't requires dumping
1123   if(aDescr == "None") return false;
1124
1125   //Check the very specific case of RestoreShape function,
1126   //which is not dumped, but the result can be published by the user.
1127   //We do not publish such objects to decrease danger of dumped script failure.
1128   if(aDescr.Value(1) == '#') {
1129     TCollection_AsciiString anObjEntry;
1130     TDF_Tool::Entry(theFunction->GetOwnerEntry(), anObjEntry);
1131     theIgnoreObjs.insert(anObjEntry);
1132     return false;
1133   }
1134
1135   // 0020001 PTv, check for critical functions, which require dump of objects
1136   if (theIsPublished)
1137   {
1138     // currently, there is only one function "RestoreGivenSubShapes",
1139     // later this check could be replaced by iterations on list of such functions
1140     if (aDescr.Search( "RestoreGivenSubShapes" ) != -1)
1141       theIsDumpCollected = true;
1142     else if (aDescr.Search( "RestoreSubShapes" ) != -1)
1143       theIsDumpCollected = true;
1144   }
1145
1146   //Replace parameter by notebook variables
1147   ReplaceVariables(aDescr,theVariables);
1148
1149   //Process sketcher functions, replacing string command by calls to Sketcher interface
1150   if ( ( aDescr.Search( "MakeSketcherOnPlane" ) != -1 ) || ( aDescr.Search( "MakeSketcher" ) != -1 ) ) {
1151     Sketcher_Profile aProfile( aDescr.ToCString());
1152     // Make new command for SketcherOnPlane and for Sketcher
1153     aDescr = aProfile.GetDump();
1154   }
1155   if (aDescr.Search( "Make3DSketcher" ) != -1) {
1156     aDescr = MakeCommandfor3DSketcher ( aDescr );
1157   }
1158
1159   if ( theIsDumpCollected ) {
1160     int i = 1;
1161     bool isBefore = true;
1162     TCollection_AsciiString aSubStr = aDescr.Token("\n\t", i++);
1163     while (!aSubStr.IsEmpty()) {
1164       if (isBefore &&
1165           aSubStr.Search( "RestoreGivenSubShapes" ) == -1 &&
1166           aSubStr.Search( "RestoreSubShapes" ) == -1)
1167         theScript += TCollection_AsciiString("\n\t") + aSubStr;
1168       else
1169         theAfterScript += TCollection_AsciiString("\n\t") + aSubStr;
1170       aSubStr = aDescr.Token("\n\t", i++);
1171     }
1172   }
1173   else {
1174     theScript += "\n\t";
1175     theScript += aDescr;
1176   }
1177   return true;
1178 }
1179
1180 //=============================================================================
1181 /*!
1182  *  GetTag: Returns the tag from entry
1183  */
1184 //=============================================================================
1185 int GetTag(const TCollection_AsciiString &theEntry)
1186 {
1187   const int aGeomObjDepth = 3;
1188   const int aTag          = theEntry.Token(":", aGeomObjDepth).IntegerValue();
1189
1190   return aTag;
1191 }
1192
1193 //=============================================================================
1194 /*!
1195  *  FillMapOfRef: Fill the map of references
1196  */
1197 //=============================================================================
1198 void FillMapOfRef(const Handle(GEOM_Function) &theFunction,
1199                         TIntToListIntMap      &theRefMap)
1200 {
1201   TDF_LabelSequence       aSeq;
1202   TCollection_AsciiString anObjEntry;
1203   int                     anObjTag;
1204
1205   TDF_Tool::Entry(theFunction->GetOwnerEntry(), anObjEntry);
1206   anObjTag = GetTag(anObjEntry);
1207   theFunction->GetDependency(aSeq);
1208
1209   const Standard_Integer aLen = aSeq.Length();
1210   Standard_Integer       i;
1211
1212   for (i = 1; i <= aLen; i++) {
1213     TDF_Label             aRefLabel = aSeq.Value(i);
1214     Handle(TDF_Reference) aRef;
1215
1216     if (aRefLabel.FindAttribute(TDF_Reference::GetID(), aRef)) {
1217       if (!aRef.IsNull() && !aRef->Get().IsNull()) {
1218         Handle(TDataStd_TreeNode) aT;
1219
1220         if (TDataStd_TreeNode::Find(aRef->Get(), aT)) {
1221           TDF_Label             aDepLabel = aT->Label();
1222           Handle(GEOM_Function) aRefFunct = GEOM_Function::GetFunction(aDepLabel);
1223
1224           if (!aRefFunct.IsNull()) {
1225             // Get entry of the referenced object.
1226             TDF_Tool::Entry(aRefFunct->GetOwnerEntry(), anObjEntry);
1227
1228             const int aRefTag = GetTag(anObjEntry);
1229
1230             if (anObjTag != aRefTag) {
1231               // Avoid making references for operations without copy.
1232               theRefMap[anObjTag].push_back(aRefTag);
1233             }
1234           }
1235         }
1236       }
1237     }
1238   }
1239 }
1240
1241 //=============================================================================
1242 /*!
1243  *  FindEntries: Returns a sequence of start/end positions of entries in the string
1244  */
1245 //=============================================================================
1246 Handle(TColStd_HSequenceOfInteger) FindEntries(TCollection_AsciiString& theString)
1247 {
1248   Handle(TColStd_HSequenceOfInteger) aSeq = new TColStd_HSequenceOfInteger;
1249   Standard_Integer aLen = theString.Length();
1250   Standard_Boolean isFound = Standard_False;
1251
1252   const char* arr = theString.ToCString();
1253   Standard_Integer i = 0, j;
1254
1255   while(i < aLen) {
1256     int c = (int)arr[i];
1257     j = i+1;
1258     if(c >= 48 && c <= 57) { //Is digit?
1259
1260       isFound = Standard_False;
1261       while((j < aLen) && ((c >= 48 && c <= 57) || c == 58) ) { //Check if it is an entry
1262         c = (int)arr[j++];
1263         if(c == 58) isFound = Standard_True;
1264       }
1265
1266       if(isFound && arr[j-2] != 58) { // last char should be a diggit
1267         aSeq->Append(i+1); // +1 because AsciiString starts from 1
1268         aSeq->Append(j-1);
1269       }
1270     }
1271
1272     i = j;
1273   }
1274
1275   return aSeq;
1276 }
1277
1278 //=============================================================================
1279 /*!
1280  *  ReplaceVariables: Replace parameters of the function by variales from
1281  *                    Notebook if need
1282  */
1283 //=============================================================================
1284 void ReplaceVariables(TCollection_AsciiString& theCommand,
1285                       const TVariablesList&    theVariables)
1286 {
1287   if (MYDEBUG)
1288     cout<<"Command : "<<theCommand<<endl;
1289
1290   if (MYDEBUG) {
1291     cout<<"All Entries:"<<endl;
1292     TVariablesList::const_iterator it = theVariables.begin();
1293     for(;it != theVariables.end();it++)
1294       cout<<"\t'"<<(*it).first<<"'"<<endl;
1295   }
1296
1297   //Additional case - multi-row commands
1298   int aCommandIndex = 1;
1299   while( aCommandIndex < 10 ) { // tmp check
1300     TCollection_AsciiString aCommand = theCommand.Token("\n",aCommandIndex);
1301     if( aCommand.Length() == 0 )
1302       break;
1303
1304     if (MYDEBUG)
1305       cout<<"Sub-command : "<<aCommand<<endl;
1306
1307     Standard_Integer aStartCommandPos = theCommand.Location(aCommand,1,theCommand.Length());
1308     Standard_Integer aEndCommandPos = aStartCommandPos + aCommand.Length();
1309
1310     //Get Entry of the result object
1311     TCollection_AsciiString anEntry;
1312     if( aCommand.Search("=") != -1 ) // command returns an object
1313       anEntry = aCommand.Token("=",1);
1314     else { // command modifies the object
1315       if (int aStartEntryPos = aCommand.Location(1,'(',1,aCommand.Length()))
1316         if (int aEndEntryPos = aCommand.Location(1,',',aStartEntryPos,aCommand.Length()))
1317           anEntry = aCommand.SubString(aStartEntryPos+1, aEndEntryPos-1);
1318     }
1319     //Remove white spaces
1320     anEntry.RightAdjust();
1321     anEntry.LeftAdjust();
1322     if(MYDEBUG)
1323       cout<<"Result entry : '" <<anEntry<<"'"<<endl;
1324
1325     if ( anEntry.IsEmpty() ) {
1326       aCommandIndex++;
1327       continue;
1328     }
1329
1330     //Check if result is list of entries - enough to get the first entry in this case
1331     int aNbEntries = 1;
1332     if( anEntry.Value( 1 ) == O_SQR_BRACKET && anEntry.Value( anEntry.Length() ) == C_SQR_BRACKET ) {
1333       while(anEntry.Location(aNbEntries,COMMA,1,anEntry.Length()))
1334         aNbEntries++;
1335       TCollection_AsciiString aSeparator(COMMA);
1336       anEntry = anEntry.Token(aSeparator.ToCString(),1);
1337       anEntry.Remove( 1, 1 );
1338       anEntry.RightAdjust();
1339       anEntry.LeftAdjust();
1340       if(MYDEBUG)
1341         cout<<"Sub-entry : '" <<anEntry<<"'"<<endl;
1342     }
1343
1344     //Find variables used for object construction
1345     ObjectStates* aStates = 0;
1346     TVariablesList::const_iterator it = theVariables.find(anEntry);
1347     if( it != theVariables.end() )
1348       aStates = (*it).second;
1349
1350     if(!aStates) {
1351       if(MYDEBUG)
1352         cout<<"Valiables list empty!!!"<<endl;
1353       aCommandIndex++;
1354       continue;
1355     }
1356
1357     TState aVariables = aStates->GetCurrectState();
1358
1359     if(MYDEBUG) {
1360       cout<<"Variables from SObject:"<<endl;
1361       for (int i = 0; i < aVariables.size();i++)
1362         cout<<"\t Variable["<<i<<"] = "<<aVariables[i].myVariable<<endl;
1363     }
1364
1365     //Calculate total number of parameters
1366     Standard_Integer aTotalNbParams = 1;
1367     while(aCommand.Location(aTotalNbParams,COMMA,1,aCommand.Length()))
1368       aTotalNbParams++;
1369
1370     if(MYDEBUG)
1371       cout<<"aTotalNbParams = "<<aTotalNbParams<<endl;
1372
1373     Standard_Integer aFirstParam = aNbEntries;
1374
1375     //Replace parameters by variables
1376     Standard_Integer aStartPos = 0;
1377     Standard_Integer aEndPos = 0;
1378     int iVar = 0;
1379     TCollection_AsciiString aVar, aReplacedVar;
1380     for(Standard_Integer i=aFirstParam;i <= aTotalNbParams;i++) {
1381       //Replace first parameter (bettwen '(' character and first ',' character)
1382       if(i == aFirstParam)
1383       {
1384         aStartPos = aCommand.Location(O_BRACKET, 1, aCommand.Length()) + 1;
1385         if(aTotalNbParams - aNbEntries > 0 )
1386           aEndPos = aCommand.Location(aFirstParam, COMMA, 1, aCommand.Length());
1387         else
1388           aEndPos = aCommand.Location(C_BRACKET, 1, aCommand.Length());
1389       }
1390       //Replace last parameter (bettwen ',' character and ')' character)
1391       else if(i == aTotalNbParams)
1392       {
1393         aStartPos = aCommand.Location(i-1, COMMA, 1, aCommand.Length()) + 2;
1394         aEndPos = aCommand.Location(C_BRACKET, aStartPos , aCommand.Length());
1395       }
1396       //Replace other parameters (bettwen two ',' characters)
1397       else if(i != aFirstParam && i != aTotalNbParams )
1398       {
1399         aStartPos = aCommand.Location(i-1, COMMA, 1, aCommand.Length()) + 2;
1400         aEndPos = aCommand.Location(i, COMMA, 1, aCommand.Length());
1401       }
1402
1403       if( aCommand.Value( aStartPos ) == O_SQR_BRACKET )
1404         aStartPos++;
1405       if( aCommand.Value( aEndPos-1 ) == C_SQR_BRACKET )
1406         aEndPos--;
1407       if ( aStartPos == aEndPos )
1408         continue; // PAL20889: for "[]"
1409
1410       if(MYDEBUG)
1411         cout<<"aStartPos = "<<aStartPos<<", aEndPos = "<<aEndPos<<endl;
1412
1413       aVar = aCommand.SubString(aStartPos, aEndPos-1);
1414       aVar.RightAdjust();
1415       aVar.LeftAdjust();
1416
1417       if(MYDEBUG)
1418         cout<<"Variable: '"<< aVar <<"'"<<endl;
1419
1420       // specific case for sketcher
1421       if(aVar.Location( TCollection_AsciiString("Sketcher:"), 1, aVar.Length() ) != 0) {
1422         Standard_Integer aNbSections = 1;
1423         while( aVar.Location( aNbSections, ':', 1, aVar.Length() ) )
1424           aNbSections++;
1425         aNbSections--;
1426
1427         int aStartSectionPos = 0, aEndSectionPos = 0;
1428         TCollection_AsciiString aSection, aReplacedSection;
1429         for(Standard_Integer aSectionIndex = 1; aSectionIndex <= aNbSections; aSectionIndex++) {
1430           aStartSectionPos = aVar.Location( aSectionIndex, ':', 1, aVar.Length() ) + 1;
1431           if( aSectionIndex != aNbSections )
1432             aEndSectionPos = aVar.Location( aSectionIndex + 1, ':', 1, aVar.Length() );
1433           else
1434             aEndSectionPos = aVar.Length();
1435
1436           aSection = aVar.SubString(aStartSectionPos, aEndSectionPos-1);
1437           if(MYDEBUG)
1438             cout<<"aSection: "<<aSection<<endl;
1439
1440           Standard_Integer aNbParams = 1;
1441           while( aSection.Location( aNbParams, ' ', 1, aSection.Length() ) )
1442             aNbParams++;
1443           aNbParams--;
1444
1445           int aStartParamPos = 0, aEndParamPos = 0;
1446           TCollection_AsciiString aParameter, aReplacedParameter;
1447           for(Standard_Integer aParamIndex = 1; aParamIndex <= aNbParams; aParamIndex++) {
1448             aStartParamPos = aSection.Location( aParamIndex, ' ', 1, aSection.Length() ) + 1;
1449             if( aParamIndex != aNbParams )
1450               aEndParamPos = aSection.Location( aParamIndex + 1, ' ', 1, aSection.Length() );
1451             else
1452               aEndParamPos = aSection.Length() + 1;
1453
1454             if(MYDEBUG)
1455               cout<<"aParamIndex: "<<aParamIndex<<" aStartParamPos: " <<aStartParamPos<<" aEndParamPos: "<<aEndParamPos<<endl;
1456
1457             if ( aStartParamPos == aEndParamPos)
1458               continue;
1459
1460             aParameter = aSection.SubString(aStartParamPos, aEndParamPos-1);
1461             if(MYDEBUG)
1462               cout<<"aParameter: "<<aParameter<<endl;
1463
1464             if(iVar >= aVariables.size())
1465               continue;
1466
1467             aReplacedParameter = aVariables[iVar].myVariable;
1468             if(aReplacedParameter.IsEmpty()) {
1469               iVar++;
1470               continue;
1471             }
1472
1473             if(aVariables[iVar].isVariable) {
1474               aReplacedParameter.InsertBefore(1,"'");
1475               aReplacedParameter.InsertAfter(aReplacedParameter.Length(),"'");
1476             }
1477
1478             if(MYDEBUG)
1479               cout<<"aSection before : "<<aSection<<endl;
1480             aSection.Remove(aStartParamPos, aEndParamPos - aStartParamPos);
1481             aSection.Insert(aStartParamPos, aReplacedParameter);
1482             if(MYDEBUG)
1483               cout<<"aSection after  : "<<aSection<<endl<<endl;
1484             iVar++;
1485           }
1486           if(MYDEBUG)
1487             cout<<"aVar before : "<<aVar<<endl;
1488           aVar.Remove(aStartSectionPos, aEndSectionPos - aStartSectionPos);
1489           aVar.Insert(aStartSectionPos, aSection);
1490           if(MYDEBUG)
1491             cout<<"aVar after  : "<<aVar<<endl<<endl;
1492         }
1493
1494         if(MYDEBUG)
1495           cout<<"aCommand before : "<<aCommand<<endl;
1496         aCommand.Remove(aStartPos, aEndPos - aStartPos);
1497         aCommand.Insert(aStartPos, aVar);
1498         if(MYDEBUG)
1499           cout<<"aCommand after  : "<<aCommand<<endl;
1500
1501         break;
1502       } // end of specific case for sketcher
1503
1504       //If parameter is entry or 'None', skip it
1505       if(theVariables.find(aVar) != theVariables.end() || aVar.Search(":") != -1 || aVar == PY_NULL)
1506         continue;
1507
1508       if(iVar >= aVariables.size())
1509         continue;
1510
1511       aReplacedVar = aVariables[iVar].myVariable;
1512       if(aReplacedVar.IsEmpty()) {
1513         iVar++;
1514         continue;
1515       }
1516
1517       if(aVariables[iVar].isVariable) {
1518         aReplacedVar.InsertBefore(1,"\"");
1519         aReplacedVar.InsertAfter(aReplacedVar.Length(),"\"");
1520       }
1521
1522       aCommand.Remove(aStartPos, aEndPos - aStartPos);
1523       aCommand.Insert(aStartPos, aReplacedVar);
1524       iVar++;
1525     }
1526
1527     theCommand.Remove(aStartCommandPos, aEndCommandPos - aStartCommandPos);
1528     theCommand.Insert(aStartCommandPos, aCommand);
1529
1530     aCommandIndex++;
1531
1532     aStates->IncrementState();
1533   }
1534
1535   if (MYDEBUG)
1536     cout<<"Command : "<<theCommand<<endl;
1537 }
1538
1539 //=============================================================================
1540 /*!
1541  *  ReplaceEntriesByNames: Replace object entries by their names
1542  */
1543 //=============================================================================
1544 void ReplaceEntriesByNames (TCollection_AsciiString&                  theScript,
1545                             TSting2ObjDataMap&                        aEntry2ObjData,
1546                             const bool                                theIsPublished,
1547                             TColStd_SequenceOfAsciiString&            theObjListToPublish,
1548                             Standard_Integer&                         objectCounter,
1549                             Resource_DataMapOfAsciiStringAsciiString& aNameToEntry)
1550 {
1551   GEOM_Engine* engine = GEOM_Engine::GetEngine();
1552   Handle(TColStd_HSequenceOfInteger) aSeq = FindEntries(theScript);
1553   Standard_Integer aLen = aSeq->Length(), aStart = 1, aScriptLength = theScript.Length();
1554
1555   //Replace entries by the names
1556   TCollection_AsciiString anUpdatedScript, anEntry, aName, aBaseName("geomObj_"),
1557     allowedChars ("qwertyuioplkjhgfdsazxcvbnmQWERTYUIOPLKJHGFDSAZXCVBNM0987654321_");
1558   if (aLen == 0) anUpdatedScript = theScript;
1559
1560   for (Standard_Integer i = 1; i <= aLen; i+=2) {
1561     anUpdatedScript += theScript.SubString(aStart, aSeq->Value(i)-1);
1562     anEntry = theScript.SubString(aSeq->Value(i), aSeq->Value(i+1));
1563     theObjListToPublish.Append( anEntry );
1564     
1565     TObjectData& data = aEntry2ObjData[ anEntry ];
1566     if ( data._pyName.IsEmpty() ) { // encounted for the 1st time
1567       if ( !data._name.IsEmpty() ) { // published object
1568         data._pyName = data._name;
1569         engine->healPyName( data._pyName, anEntry, aNameToEntry);
1570       }
1571       else {
1572         do {
1573           data._pyName = aBaseName + TCollection_AsciiString(++objectCounter);
1574         } while(aNameToEntry.IsBound(data._pyName));
1575       }
1576     }
1577     
1578     aNameToEntry.Bind(data._pyName, anEntry); // to detect same name of diff objects
1579     
1580     anUpdatedScript += data._pyName;
1581     aStart = aSeq->Value(i+1) + 1;
1582   }
1583   
1584   //Add final part of the script
1585   if (aLen && aSeq->Value(aLen) < aScriptLength)
1586     anUpdatedScript += theScript.SubString(aSeq->Value(aLen)+1, aScriptLength); // mkr : IPAL11865
1587   
1588   theScript = anUpdatedScript;
1589 }
1590
1591 //=============================================================================
1592 /*!
1593  *  AddObjectColors: Add color to objects
1594  */
1595 //=============================================================================
1596 void AddObjectColors (TCollection_AsciiString& theScript,
1597                       const TSting2ObjDataMap& theEntry2ObjData)
1598 {
1599   GEOM_Engine* engine = GEOM_Engine::GetEngine();
1600   Handle(TDocStd_Document) aDoc = engine->GetDocument();
1601
1602   TSting2ObjDataMap::const_iterator anEntryToNameIt;
1603   for (anEntryToNameIt = theEntry2ObjData.begin();
1604        anEntryToNameIt!= theEntry2ObjData.end();
1605        ++anEntryToNameIt)
1606   {
1607     const TCollection_AsciiString& aEntry = anEntryToNameIt->first;
1608     const TCollection_AsciiString& aName = anEntryToNameIt->second._pyName;
1609
1610     TDF_Label L;
1611     TDF_Tool::Label( aDoc->GetData(), aEntry, L );
1612     if ( L.IsNull() )
1613       continue;
1614
1615     Handle(GEOM_Object) obj = GEOM_Object::GetObject( L );
1616     if ( obj.IsNull() )
1617       continue;
1618
1619     bool anAutoColor = obj->GetAutoColor();
1620     if ( anAutoColor )
1621     {
1622       TCollection_AsciiString aCommand( "\n\t" );
1623       aCommand += aName + ".SetAutoColor(1)";
1624       theScript += aCommand.ToCString();
1625     }
1626
1627     GEOM_Object::Color aColor = obj->GetColor();
1628     if ( aColor.R >= 0 && aColor.G >= 0 && aColor.B >= 0 )
1629     {
1630       TCollection_AsciiString aCommand( "\n\t" );
1631       aCommand += aName + ".SetColor(SALOMEDS.Color(" + aColor.R + "," + aColor.G + "," + aColor.B + "))";
1632       theScript += aCommand.ToCString();
1633     }
1634
1635     Aspect_TypeOfMarker aMarkerType = obj->GetMarkerType();
1636     if (aMarkerType >= Aspect_TOM_POINT && aMarkerType < Aspect_TOM_USERDEFINED) {
1637       TCollection_AsciiString aCommand( "\n\t" );
1638       aCommand += aName + ".SetMarkerStd(";
1639       switch (aMarkerType) {
1640       case Aspect_TOM_POINT:   aCommand += "GEOM.MT_POINT";   break;
1641       case Aspect_TOM_PLUS:    aCommand += "GEOM.MT_PLUS";    break;
1642       case Aspect_TOM_STAR:    aCommand += "GEOM.MT_STAR";    break;
1643       case Aspect_TOM_X:       aCommand += "GEOM.MT_X";       break;
1644       case Aspect_TOM_O:       aCommand += "GEOM.MT_O";       break;
1645       case Aspect_TOM_O_POINT: aCommand += "GEOM.MT_O_POINT"; break;
1646       case Aspect_TOM_O_PLUS:  aCommand += "GEOM.MT_O_PLUS";  break;
1647       case Aspect_TOM_O_STAR:  aCommand += "GEOM.MT_O_STAR";  break;
1648       case Aspect_TOM_O_X:     aCommand += "GEOM.MT_O_X";     break;
1649       case Aspect_TOM_RING1:   aCommand += "GEOM.MT_RING1";   break;
1650       case Aspect_TOM_RING2:   aCommand += "GEOM.MT_RING2";   break;
1651       case Aspect_TOM_RING3:   aCommand += "GEOM.MT_RING3";   break;
1652       case Aspect_TOM_BALL:    aCommand += "GEOM.MT_BALL";    break;
1653       default:                 aCommand += "GEOM.MT_NONE";    break; // just for completeness, should not get here
1654       }
1655       aCommand += ", ";
1656       int aSize = (int)( obj->GetMarkerSize()/0.5 ) - 1;
1657       switch (aSize) {
1658       case  1: aCommand += "GEOM.MS_10";   break;
1659       case  2: aCommand += "GEOM.MS_15";   break;
1660       case  3: aCommand += "GEOM.MS_20";   break;
1661       case  4: aCommand += "GEOM.MS_25";   break;
1662       case  5: aCommand += "GEOM.MS_30";   break;
1663       case  6: aCommand += "GEOM.MS_35";   break;
1664       case  7: aCommand += "GEOM.MS_40";   break;
1665       case  8: aCommand += "GEOM.MS_45";   break;
1666       case  9: aCommand += "GEOM.MS_50";   break;
1667       case 10: aCommand += "GEOM.MS_55";   break;
1668       case 11: aCommand += "GEOM.MS_60";   break;
1669       case 12: aCommand += "GEOM.MS_65";   break;
1670       case 13: aCommand += "GEOM.MS_70";   break;
1671       default: aCommand += "GEOM.MS_NONE"; break;
1672       }
1673       aCommand += ")";
1674       theScript += aCommand.ToCString();
1675     }
1676     else if (aMarkerType == Aspect_TOM_USERDEFINED) {
1677       int aMarkerTextureID = obj->GetMarkerTexture();
1678       if (aMarkerTextureID >= 0) {
1679         TCollection_AsciiString aCommand( "\n\t" );
1680         aCommand += aName + ".SetMarkerTexture(texture_map[";
1681         aCommand += aMarkerTextureID;
1682         aCommand += "])";
1683         theScript += aCommand.ToCString();
1684       }
1685     }
1686   }
1687 }
1688
1689 static TCollection_AsciiString pack_data (const Handle(TColStd_HArray1OfByte)& aData)
1690 {
1691   TCollection_AsciiString stream;
1692   if (!aData.IsNull()) {
1693     for (Standard_Integer i = aData->Lower(); i <= aData->Upper(); i++) {
1694       Standard_Byte byte = aData->Value(i);
1695       TCollection_AsciiString strByte = "";
1696       for (int j = 0; j < 8; j++)
1697         strByte.Prepend((byte & (1<<j)) ? "1" : "0");
1698       stream += strByte;
1699     }
1700   }
1701   return stream;
1702 }
1703
1704 void AddTextures (TCollection_AsciiString& theScript)
1705 {
1706   GEOM_Engine* engine = GEOM_Engine::GetEngine();
1707   std::list<int> allTextures = engine->getAllTextures();
1708   std::list<int>::const_iterator it;
1709
1710   if (allTextures.size() > 0) {
1711     theScript += "\n\ttexture_map = {}\n";
1712
1713     for (it = allTextures.begin(); it != allTextures.end(); ++it) {
1714       if (*it <= 0) continue;
1715       Standard_Integer aWidth, aHeight;
1716       TCollection_AsciiString aFileName;
1717       Handle(TColStd_HArray1OfByte) aTexture =
1718         engine->getTexture(*it, aWidth, aHeight, aFileName);
1719       if (aWidth > 0 && aHeight > 0 && !aTexture.IsNull() && aTexture->Length() > 0 ) {
1720         TCollection_AsciiString aCommand = "\n\t";
1721         aCommand += "texture_map["; aCommand += *it; aCommand += "] = ";
1722         if (aFileName != "" ) {
1723           aCommand += "geompy.LoadTexture(\"";
1724           aCommand += aFileName.ToCString();
1725           aCommand += "\")";
1726         }
1727         else {
1728           aCommand += "geompy.AddTexture(";
1729           aCommand += aWidth; aCommand += ", "; aCommand += aHeight; aCommand += ", \"";
1730           aCommand += pack_data(aTexture);
1731           aCommand += "\")";
1732         }
1733         theScript += aCommand;
1734       }
1735     }
1736     theScript += "\n";
1737   }
1738 }
1739
1740 //=============================================================================
1741 /*!
1742  *  PublishObject: publish object in study script
1743  */
1744 //=============================================================================
1745 void PublishObject (TObjectData&                              theObjectData,
1746                     TSting2ObjDataMap&                        theEntry2ObjData,
1747                     const TSting2ObjDataPtrMap&               theStEntry2ObjDataPtr,
1748                     Resource_DataMapOfAsciiStringAsciiString& theNameToEntry,
1749                     std::map< int, TCollection_AsciiString >& theEntryToCmdMap,
1750                     std::set< TCollection_AsciiString>&       theIgnoreMap)
1751 {
1752   GEOM_Engine* engine = GEOM_Engine::GetEngine();
1753   if ( theObjectData._studyEntry.IsEmpty() )
1754     return; // was not published
1755   if ( theIgnoreMap.count( theObjectData._entry ) )
1756     return; // not to publish
1757
1758   TCollection_AsciiString aCommand("\n\tgeompy.");
1759
1760   // find a father entry
1761   TObjectData* aFatherData = 0;
1762   TCollection_AsciiString aFatherStudyEntry =
1763     theObjectData._studyEntry.SubString( 1, theObjectData._studyEntry.SearchFromEnd(":") - 1 );
1764   TSting2ObjDataPtrMap::const_iterator stEntry2DataPtr =
1765     theStEntry2ObjDataPtr.find( aFatherStudyEntry );
1766   if ( stEntry2DataPtr != theStEntry2ObjDataPtr.end() )
1767     aFatherData = stEntry2DataPtr->second;
1768
1769   // treat multiply published object
1770   if ( theObjectData._pyName.IsEmpty() )
1771   {
1772     TObjectData& data0 = theEntry2ObjData[ theObjectData._entry ];
1773     if ( data0._pyName.IsEmpty() ) return; // something wrong
1774
1775     theObjectData._pyName = theObjectData._name;
1776     engine->healPyName( theObjectData._pyName, theObjectData._entry, theNameToEntry);
1777
1778     TCollection_AsciiString aCreationCommand("\n\t");
1779     aCreationCommand += theObjectData._pyName + " = " + data0._pyName;
1780
1781     // store aCreationCommand before publishing commands
1782     int tag = GetTag(theObjectData._entry);
1783     theEntryToCmdMap.insert( std::make_pair( tag + 2*theEntry2ObjData.size(), aCreationCommand ));
1784   }
1785
1786   // make a command
1787   if ( aFatherData && !aFatherData->_pyName.IsEmpty() ) {
1788     aCommand += "addToStudyInFather( ";
1789     aCommand += aFatherData->_pyName + ", ";
1790   }
1791   else {
1792     aCommand += "addToStudy( ";
1793   }
1794   aCommand += theObjectData._pyName + ", '" + theObjectData._name + "' )";
1795
1796   // bind a command to the study entry
1797   int tag = GetTag(theObjectData._entry);
1798   theEntryToCmdMap.insert( std::make_pair( tag, aCommand ));
1799
1800   theObjectData._studyEntry.Clear(); // not to publish any more
1801 }
1802
1803 //================================================================================
1804 /*!
1805  * \brief Returns the string of publishing commands. Take into account that
1806  *  references should be published prior to the objects refer to them.
1807  */
1808 //================================================================================
1809 TCollection_AsciiString GetPublishCommands
1810                    (const int                                       theTag,
1811                     const std::map< int, TCollection_AsciiString > &theEntryToCmdMap,
1812                     const TIntToListIntMap                         &theMapRefs,
1813                           std::set< int >                          &thePublished)
1814 {
1815   TCollection_AsciiString aResult;
1816
1817   if (!thePublished.count(theTag)) {
1818     // This object is not published yet.
1819     std::map< int, TCollection_AsciiString >::const_iterator anIt =
1820       theEntryToCmdMap.find(theTag);
1821
1822     if (anIt != theEntryToCmdMap.end()) {
1823       // There is a pubish cmd.
1824       TIntToListIntMap::const_iterator aRefIt = theMapRefs.find(theTag);
1825
1826       if (aRefIt != theMapRefs.end()) {
1827         // Recursively publish all references.
1828         std::list< int >::const_iterator aRefTagIt = aRefIt->second.begin();
1829
1830         for(; aRefTagIt != aRefIt->second.end(); ++aRefTagIt) {
1831           const TCollection_AsciiString aRefCmd = GetPublishCommands
1832             (*aRefTagIt, theEntryToCmdMap, theMapRefs, thePublished);
1833
1834           aResult += aRefCmd;
1835         }
1836       }
1837
1838       // Add the object command.
1839       aResult += anIt->second;
1840     }
1841
1842     thePublished.insert(theTag);
1843   }
1844
1845   return aResult;
1846 }
1847
1848 //================================================================================
1849 /*!
1850  * \brief Constructor
1851  */
1852 //================================================================================
1853 ObjectStates::ObjectStates()
1854 {
1855   _dumpstate = 0;
1856 }
1857
1858 //================================================================================
1859 /*!
1860  * \brief Destructor
1861  */
1862 //================================================================================
1863 ObjectStates::~ObjectStates()
1864 {
1865 }
1866
1867 //================================================================================
1868 /*!
1869  * \brief Return current object state
1870  * \retval state - Object state (vector of notebook variable)
1871  */
1872 //================================================================================
1873 TState ObjectStates::GetCurrectState() const
1874 {
1875   if(_states.size() > _dumpstate)
1876     return _states[_dumpstate];
1877   return TState();
1878 }
1879
1880 //================================================================================
1881 /*!
1882  * \brief Add new object state
1883  * \param theState - Object state (vector of notebook variable)
1884  */
1885 //================================================================================
1886 void ObjectStates::AddState(const TState &theState)
1887 {
1888   _states.push_back(theState);
1889 }
1890
1891 //================================================================================
1892 /*!
1893  * \brief Increment object state
1894  */
1895 //================================================================================
1896 void ObjectStates::IncrementState()
1897 {
1898   _dumpstate++;
1899 }