]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOM/GEOM_Engine.cxx
Salome HOME
CMake porting
[modules/geom.git] / src / GEOM / GEOM_Engine.cxx
1 // Copyright (C) 2007-2013  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.
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 WNT
24 #pragma warning( disable:4786 )
25 #endif
26
27 #include "GEOM_Engine.hxx"
28
29 #include "GEOM_Solver.hxx"
30 #include "GEOM_Function.hxx"
31 #include "GEOM_ISubShape.hxx"
32 #include "GEOM_SubShapeDriver.hxx"
33 #include "GEOM_DataMapIteratorOfDataMapOfAsciiStringTransient.hxx"
34 #include "GEOM_PythonDump.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 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
66 #include <TColStd_HArray1OfByte.hxx>
67 #include <TColStd_DataMapIteratorOfDataMapOfIntegerTransient.hxx>
68 #else
69 #include <TDataStd_HArray1OfByte.hxx>
70 #include <Interface_DataMapIteratorOfDataMapOfIntegerTransient.hxx>
71 #endif
72
73 #include <Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString.hxx>
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
97 static GEOM_Engine* TheEngine = NULL;
98
99
100 static TCollection_AsciiString BuildIDFromObject(Handle(GEOM_Object)& theObject)
101 {
102   TCollection_AsciiString anID(theObject->GetDocID()), anEntry;
103   TDF_Tool::Entry(theObject->GetEntry(), anEntry);
104   anID+=(TCollection_AsciiString("_")+anEntry);
105   return anID;
106 }
107
108 static TCollection_AsciiString BuildID(Standard_Integer theDocID, char* theEntry)
109 {
110   TCollection_AsciiString anID(theDocID);
111   anID+=(TCollection_AsciiString("_")+theEntry);
112   return anID;
113 }
114
115 static Standard_Integer ExtractDocID(TCollection_AsciiString& theID)
116 {
117   TCollection_AsciiString aDocID = theID.Token("_");
118   if(aDocID.Length() < 1) return -1;
119   return aDocID.IntegerValue();
120 }
121
122 bool ProcessFunction(Handle(GEOM_Function)&             theFunction,
123                      TCollection_AsciiString&           theScript,
124                      TCollection_AsciiString&           theAfterScript,
125                      const TVariablesList&              theVariables,
126                      const bool                         theIsPublished,
127                      TDF_LabelMap&                      theProcessed,
128                      std::set<TCollection_AsciiString>& theIgnoreObjs,
129                      bool&                              theIsDumpCollected);
130
131 void ReplaceVariables(TCollection_AsciiString& theCommand,
132                       const TVariablesList&    theVariables);
133
134 Handle(TColStd_HSequenceOfInteger) FindEntries(TCollection_AsciiString& theString);
135
136 void ReplaceEntriesByNames (TCollection_AsciiString&                  theScript,
137                             TSting2ObjDataMap&                        aEntry2ObjData,
138                             const bool                                theIsPublished,
139                             TColStd_SequenceOfAsciiString&            theObjListToPublish,
140                             Standard_Integer&                         objectCounter,
141                             Resource_DataMapOfAsciiStringAsciiString& aNameToEntry);
142
143 void AddObjectColors (int                      theDocID,
144                       TCollection_AsciiString& theScript,
145                       const TSting2ObjDataMap& theEntry2ObjData);
146
147 void AddTextures (int theDocID, TCollection_AsciiString& theScript);
148
149 void PublishObject (TObjectData&                              theObjectData,
150                     TSting2ObjDataMap&                        theEntry2ObjData,
151                     const TSting2ObjDataPtrMap&               theStEntry2ObjDataPtr,
152                     Resource_DataMapOfAsciiStringAsciiString& theNameToEntry,
153                     std::map< int, TCollection_AsciiString >& theEntryToCmdMap,
154                     std::set<TCollection_AsciiString>&        theMapOfPublished);
155
156 //================================================================================
157 /*!
158  * \brief Fix up the name of python variable
159  */
160 //================================================================================
161
162 void GEOM_Engine::healPyName( TCollection_AsciiString&                  pyName,
163                               const TCollection_AsciiString&            anEntry,
164                               Resource_DataMapOfAsciiStringAsciiString& aNameToEntry)
165 {
166   const TCollection_AsciiString allowedChars
167     ("qwertyuioplkjhgfdsazxcvbnmQWERTYUIOPLKJHGFDSAZXCVBNM0987654321_");
168
169   if ( pyName.IsIntegerValue() ) { // pyName must not start with a digit
170     pyName.Insert( 1, 'a' );
171   }
172   int p, p2=1; // replace not allowed chars
173   while ((p = pyName.FirstLocationNotInSet(allowedChars, p2, pyName.Length()))) {
174     pyName.SetValue(p, '_');
175     p2=p;
176   }
177   if ( aNameToEntry.IsBound( pyName ) && anEntry != aNameToEntry( pyName ))
178     {  // diff objects have same name - make a new name by appending a digit
179       TCollection_AsciiString aName2;
180       Standard_Integer i = 0;
181       do {
182         aName2 = pyName + "_" + ++i;
183       } while ( aNameToEntry.IsBound( aName2 ) && anEntry != aNameToEntry( aName2 ));
184       pyName = aName2;
185     }
186 }
187
188 //=======================================================================
189 //function : GetTextureGUID
190 //purpose  :
191 //=======================================================================
192 const Standard_GUID& GEOM_Engine::GetTextureGUID()
193 {
194   static Standard_GUID anID("FF1BBB01-5D14-4df2-980B-3A668264EA17");
195   return anID;
196 }
197
198 //=============================================================================
199 /*!
200  *  GetEngine
201  */
202 //=============================================================================
203 GEOM_Engine* GEOM_Engine::GetEngine() { return TheEngine; }
204
205 //=============================================================================
206 /*!
207  *  SetEngine
208  */
209 //=============================================================================
210 void GEOM_Engine::SetEngine(GEOM_Engine* theEngine) { TheEngine = theEngine; }
211
212 //=============================================================================
213 /*!
214  *  Constructor
215  */
216 //=============================================================================
217 GEOM_Engine::GEOM_Engine()
218 {
219   TFunction_DriverTable::Get()->AddDriver(GEOM_Object::GetSubShapeID(), new GEOM_SubShapeDriver());
220   
221   _OCAFApp = new GEOM_Application();
222   _UndoLimit = 10;
223 }
224
225 /*!
226  *  Destructor
227  */
228 GEOM_Engine::~GEOM_Engine()
229 {
230   GEOM_DataMapIteratorOfDataMapOfAsciiStringTransient It(_objects);
231   std::list< Handle(GEOM_Object) > objs;
232   for(; It.More(); It.Next())
233     objs.push_back( Handle(GEOM_Object)::DownCast(It.Value()) );
234   std::list< Handle(GEOM_Object) >::iterator objit;
235   for(objit = objs.begin(); objit != objs.end(); ++objit)
236     RemoveObject(*objit);
237
238   //Close all documents not closed
239 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
240   TColStd_DataMapIteratorOfDataMapOfIntegerTransient anItr (_mapIDDocument);
241 #else
242   Interface_DataMapIteratorOfDataMapOfIntegerTransient anItr (_mapIDDocument);
243 #endif
244   for (; anItr.More(); anItr.Next())
245   {
246     Close(anItr.Key());
247     anItr.Initialize( _mapIDDocument ); // anItr becomes invalid at _mapIDDocument.UnBind(docId)
248   }
249   _mapIDDocument.Clear();
250   _objects.Clear();
251 }
252
253 //=============================================================================
254 /*!
255  *  GetDocument
256  */
257 //=============================================================================
258 Handle(TDocStd_Document) GEOM_Engine::GetDocument(int theDocID, bool force)
259 {
260   Handle(TDocStd_Document) aDoc;
261   if(_mapIDDocument.IsBound(theDocID)) {
262     aDoc = Handle(TDocStd_Document)::DownCast(_mapIDDocument(theDocID));
263   }
264   else if (force) {
265     _OCAFApp->NewDocument("SALOME_GEOM", aDoc);
266     aDoc->SetUndoLimit(_UndoLimit);
267     _mapIDDocument.Bind(theDocID, aDoc);
268     TDataStd_Integer::Set(aDoc->Main(), theDocID);
269   }
270   return aDoc;
271 }
272
273 //=============================================================================
274 /*!
275  *  GetDocID
276  */
277 //=============================================================================
278 int GEOM_Engine::GetDocID(Handle(TDocStd_Document) theDocument)
279 {
280   if (theDocument.IsNull()) return -1;
281 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
282   TColStd_DataMapIteratorOfDataMapOfIntegerTransient anItr (_mapIDDocument);
283 #else
284   Interface_DataMapIteratorOfDataMapOfIntegerTransient anItr (_mapIDDocument);
285 #endif
286   for (; anItr.More(); anItr.Next())
287     if (anItr.Value() == theDocument) return anItr.Key();
288
289   return -1;
290 }
291
292 //=============================================================================
293 /*!
294  *  GetObject
295  */
296 //=============================================================================
297 Handle(GEOM_Object) GEOM_Engine::GetObject(int theDocID, char* theEntry, bool force)
298 {
299   Handle(GEOM_Object) anObject;
300
301   TCollection_AsciiString anID = BuildID(theDocID, theEntry);
302
303   if (_objects.IsBound(anID)) {
304     anObject = Handle(GEOM_Object)::DownCast(_objects(anID));
305   }
306   else if (force) {
307     Handle(TDocStd_Document) aDoc = GetDocument(theDocID, force);
308     if ( !aDoc.IsNull()) {
309       TDF_Label aLabel;
310       TDF_Tool::Label(aDoc->Main().Data(), theEntry, aLabel, Standard_True);
311       anObject = new GEOM_Object(aLabel);
312       _objects.Bind(anID, anObject);
313     }
314   }
315
316   return anObject;
317 }
318
319 //=============================================================================
320 /*!
321  *  AddObject
322  */
323 //=============================================================================
324 Handle(GEOM_Object) GEOM_Engine::AddObject(int theDocID, int theType)
325 {
326   Handle(TDocStd_Document) aDoc = GetDocument(theDocID);
327   Handle(TDataStd_TreeNode) aRoot = TDataStd_TreeNode::Set(aDoc->Main());
328
329   // NPAL18604: use existing label to decrease memory usage,
330   //            if this label has been freed (object deleted)
331   bool useExisting = false;
332   TDF_Label aChild;
333   if (_freeLabels.find(theDocID) != _freeLabels.end()) {
334     std::list<TDF_Label>& aFreeLabels = _freeLabels[theDocID];
335     if (!aFreeLabels.empty()) {
336       useExisting = true;
337       aChild = aFreeLabels.front();
338       aFreeLabels.pop_front();
339     }
340   }
341   if (!useExisting) {
342     // create new label
343     aChild = TDF_TagSource::NewChild(aDoc->Main());
344   }
345
346   Handle(GEOM_Object) anObject = new GEOM_Object(aChild, theType);
347
348   //Put an object in the map of created objects
349   TCollection_AsciiString anID = BuildIDFromObject(anObject);
350   if(_objects.IsBound(anID)) _objects.UnBind(anID);
351   _objects.Bind(anID, anObject);
352
353   return anObject;
354 }
355
356 //=============================================================================
357 /*!
358  *  AddSubShape
359  */
360 //=============================================================================
361 Handle(GEOM_Object) GEOM_Engine::AddSubShape(Handle(GEOM_Object) theMainShape,
362                                              Handle(TColStd_HArray1OfInteger) theIndices,
363                                              bool isStandaloneOperation)
364 {
365   if (theMainShape.IsNull() || theIndices.IsNull()) return NULL;
366
367   Handle(TDocStd_Document) aDoc = GetDocument(theMainShape->GetDocID());
368   Handle(TDataStd_TreeNode) aRoot = TDataStd_TreeNode::Set(aDoc->Main());
369
370   // NPAL18604: use existing label to decrease memory usage,
371   //            if this label has been freed (object deleted)
372   bool useExisting = false;
373   TDF_Label aChild;
374   int aDocID = theMainShape->GetDocID();
375   if (_freeLabels.find(aDocID) != _freeLabels.end()) {
376     std::list<TDF_Label>& aFreeLabels = _freeLabels[aDocID];
377     if (!aFreeLabels.empty()) {
378       useExisting = true;
379       aChild = aFreeLabels.front();
380       aFreeLabels.pop_front();
381     }
382   }
383   if (!useExisting) {
384     // create new label
385     aChild = TDF_TagSource::NewChild(aDoc->Main());
386   }
387
388   Handle(GEOM_Function) aMainShape = theMainShape->GetLastFunction();
389   Handle(GEOM_Object) anObject = new GEOM_Object (aChild, 28); //28 is SUBSHAPE type
390   Handle(GEOM_Function) aFunction = anObject->AddFunction(GEOM_Object::GetSubShapeID(), 1);
391
392   GEOM_ISubShape aSSI (aFunction);
393   aSSI.SetMainShape(aMainShape);
394   aSSI.SetIndices(theIndices);
395
396   try {
397 #if OCC_VERSION_LARGE > 0x06010000
398     OCC_CATCH_SIGNALS;
399 #endif
400     GEOM_Solver aSolver (GEOM_Engine::GetEngine());
401     if (!aSolver.ComputeFunction(aFunction)) {
402       MESSAGE("GEOM_Engine::AddSubShape Error: Can't build a sub shape");
403       return NULL;
404     }
405   }
406   catch (Standard_Failure) {
407     Handle(Standard_Failure) aFail = Standard_Failure::Caught();
408     MESSAGE("GEOM_Engine::AddSubShape Error: " << aFail->GetMessageString());
409     return NULL;
410   }
411
412   // Put an object in the map of created objects
413   TCollection_AsciiString anID = BuildIDFromObject(anObject);
414   if (_objects.IsBound(anID)) _objects.UnBind(anID);
415   _objects.Bind(anID, anObject);
416
417   // Put this sub-shape in the list of sub-shapes of theMainShape
418   aMainShape->AddSubShapeReference(aFunction);
419
420   GEOM::TPythonDump pd (aFunction);
421
422   if (isStandaloneOperation) {
423     pd << anObject << " = geompy.GetSubShape(" << theMainShape << ", [";
424     Standard_Integer i = theIndices->Lower(), up = theIndices->Upper();
425     for (; i <= up - 1; i++) {
426       pd << theIndices->Value(i) << ", ";
427     }
428     pd << theIndices->Value(up) << "])";
429   }
430   else
431     pd << "None";
432
433   return anObject;
434 }
435
436 //=============================================================================
437 /*!
438  *  RemoveObject
439  */
440 //=============================================================================
441 bool GEOM_Engine::RemoveObject(Handle(GEOM_Object) theObject)
442 {
443   if (theObject.IsNull()) return false;
444
445   int aDocID = theObject->GetDocID();
446   if(!_mapIDDocument.IsBound(aDocID))
447     return false;  // document is closed...
448
449   //Remove an object from the map of available objects
450   TCollection_AsciiString anID = BuildIDFromObject(theObject);
451   if (_objects.IsBound(anID)) _objects.UnBind(anID);
452
453   // If sub-shape, remove it from the list of sub-shapes of its main shape
454   if (!theObject->IsMainShape()) {
455     Handle(GEOM_Function) aFunction = theObject->GetFunction(1);
456     GEOM_ISubShape aSSI (aFunction);
457     Handle(GEOM_Function) aMainShape = aSSI.GetMainShape();
458     //If main shape is not null, then remove
459     if(!aMainShape.IsNull())
460       aMainShape->RemoveSubShapeReference(aFunction);
461   }
462
463   int nb = theObject->GetNbFunctions();
464   Handle(TDataStd_TreeNode) aNode;
465   for (int i = 1; i <= nb; i++) {
466     Handle(GEOM_Function) aFunction = theObject->GetFunction(i);
467     if (aFunction->GetEntry().FindAttribute(GEOM_Function::GetFunctionTreeID(), aNode))
468       aNode->Remove();
469   }
470
471   TDF_Label aLabel = theObject->GetEntry();
472   aLabel.ForgetAllAttributes(Standard_True);
473
474   // Remember the label to reuse it then
475   std::list<TDF_Label>& aFreeLabels = _freeLabels[aDocID];
476   aFreeLabels.push_back(aLabel);
477
478   theObject.Nullify();
479
480   return true;
481 }
482
483 //=============================================================================
484 /*!
485  *  Undo
486  */
487 //=============================================================================
488 void GEOM_Engine::Undo(int theDocID)
489 {
490   GetDocument(theDocID)->Undo();
491 }
492
493 //=============================================================================
494 /*!
495  *  Redo
496  */
497 //=============================================================================
498 void GEOM_Engine::Redo(int theDocID)
499 {
500   GetDocument(theDocID)->Redo();
501 }
502
503 //=============================================================================
504 /*!
505  *  Save
506  */
507 //=============================================================================
508 bool GEOM_Engine::Save(int theDocID, char* theFileName)
509 {
510   if(!_mapIDDocument.IsBound(theDocID)) return false;
511   Handle(TDocStd_Document) aDoc = Handle(TDocStd_Document)::DownCast(_mapIDDocument(theDocID));
512
513   _OCAFApp->SaveAs(aDoc, theFileName);
514
515   return true;
516 }
517
518 //=============================================================================
519 /*!
520  *  Load
521  */
522 //=============================================================================
523 bool GEOM_Engine::Load(int theDocID, char* theFileName)
524 {
525   Handle(TDocStd_Document) aDoc;
526 #if OCC_VERSION_LARGE > 0x06050100 // For OCCT6.5.2 and higher
527   if (_OCAFApp->Open(theFileName, aDoc) != PCDM_RS_OK) {
528 #else
529   if (_OCAFApp->Open(theFileName, aDoc) != CDF_RS_OK) {
530 #endif
531     return false;
532   }
533
534   aDoc->SetUndoLimit(_UndoLimit);
535
536   if(_mapIDDocument.IsBound(theDocID)) _mapIDDocument.UnBind(theDocID);
537   _mapIDDocument.Bind(theDocID, aDoc);
538
539   TDataStd_Integer::Set(aDoc->Main(), theDocID);
540
541   return true;
542 }
543
544 //=============================================================================
545 /*!
546  *  Close
547  */
548 //=============================================================================
549 void GEOM_Engine::Close(int theDocID)
550 {
551   if (_mapIDDocument.IsBound(theDocID)) {
552     Handle(TDocStd_Document) aDoc = Handle(TDocStd_Document)::DownCast(_mapIDDocument(theDocID));
553
554     //Remove all GEOM Objects associated to the given document
555     TColStd_SequenceOfAsciiString aSeq;
556     GEOM_DataMapIteratorOfDataMapOfAsciiStringTransient It (_objects);
557     for (; It.More(); It.Next()) {
558       TCollection_AsciiString anObjID (It.Key());
559       Standard_Integer anID = ExtractDocID(anObjID);
560       if (theDocID == anID) aSeq.Append(It.Key());
561     }
562     for (Standard_Integer i=1; i<=aSeq.Length(); i++) _objects.UnBind(aSeq.Value(i));
563
564     // Forget free labels for this document
565     TFreeLabelsList::iterator anIt = _freeLabels.find(theDocID);
566     if (anIt != _freeLabels.end()) {
567       _freeLabels.erase(anIt);
568     }
569
570     _mapIDDocument.UnBind(theDocID);
571     _OCAFApp->Close(aDoc);
572     aDoc.Nullify();
573   }
574 }
575
576 //=============================================================================
577 /*!
578  *  DumpPython
579  */
580 //=============================================================================
581 TCollection_AsciiString GEOM_Engine::DumpPython(int theDocID,
582                                                 std::vector<TObjectData>& theObjectData,
583                                                 TVariablesList theVariables,
584                                                 bool isPublished,
585                                                 bool isMultiFile, 
586                                                 bool& aValidScript)
587 {
588   // Set "C" numeric locale to save numbers correctly
589   Kernel_Utils::Localizer loc;
590
591   TCollection_AsciiString aScript;
592   Handle(TDocStd_Document) aDoc = GetDocument(theDocID);
593
594   if (aDoc.IsNull())
595   {
596     TCollection_AsciiString anEmptyScript;
597     if( isMultiFile )
598       anEmptyScript = "def RebuildData(theStudy): pass\n";
599     return anEmptyScript;
600   }
601
602   aScript  = "import GEOM\n";
603   aScript += "from salome.geom import geomBuilder\n";
604   aScript += "import math\n";
605   aScript += "import SALOMEDS\n\n";
606   if( isMultiFile )
607     aScript += "def RebuildData(theStudy):";
608
609   aScript += "\n\tgeompy = geomBuilder.New(theStudy)\n";
610
611   AddTextures(theDocID, aScript);
612
613   Standard_Integer posToInsertGlobalVars = aScript.Length() + 1;
614
615   // a map containing copies of TObjectData from theObjectData
616   TSting2ObjDataMap    aEntry2ObjData;
617   // contains pointers to TObjectData of either aEntry2ObjData or theObjectData; the latter
618   // occures when several StudyEntries correspond to one Entry
619   TSting2ObjDataPtrMap aStEntry2ObjDataPtr;
620
621   //Resource_DataMapOfAsciiStringAsciiString aEntry2StEntry, aStEntry2Entry, theObjectNames;
622   for (unsigned i = 0; i < theObjectData.size(); ++i )
623   {
624     TObjectData& data = theObjectData[i];
625     // look for an object by entry
626     TDF_Label L;
627     TDF_Tool::Label( aDoc->GetData(), data._entry, L );
628     if ( L.IsNull() ) continue;
629     Handle(GEOM_Object) obj = GEOM_Object::GetObject( L );
630     // fill maps
631     if ( !obj.IsNull() ) {
632       TSting2ObjDataMap::iterator ent2Data =
633         aEntry2ObjData.insert( std::make_pair( data._entry, data )).first;
634
635       if ( ent2Data->second._studyEntry == data._studyEntry ) // Entry encounters 1st time
636         aStEntry2ObjDataPtr.insert( std::make_pair( data._studyEntry, & ent2Data->second ));
637       else
638         aStEntry2ObjDataPtr.insert( std::make_pair( data._studyEntry, & data ));
639     }
640   }
641
642   // collect objects entries to be published
643   TColStd_SequenceOfAsciiString aObjListToPublish;
644
645   // iterates on functions till critical (that requiers publication of objects)
646   Handle(TDataStd_TreeNode) aNode, aRoot;
647   Handle(GEOM_Function) aFunction;
648   TDF_LabelMap aCheckedFuncMap;
649   std::set< TCollection_AsciiString > anIgnoreObjMap;
650
651   TCollection_AsciiString aFuncScript;
652
653   // Mantis issue 0020768
654   Standard_Integer objectCounter = 0;
655   Resource_DataMapOfAsciiStringAsciiString aNameToEntry;
656
657   if (aDoc->Main().FindAttribute(GEOM_Function::GetFunctionTreeID(), aRoot)) {
658     TDataStd_ChildNodeIterator Itr(aRoot);
659     for (; Itr.More(); Itr.Next()) {
660       aNode = Itr.Value();
661       aFunction = GEOM_Function::GetFunction(aNode->Label());
662       if (aFunction.IsNull()) {
663         MESSAGE ( "Null function !!!!" );
664         continue;
665       }
666       bool isDumpCollected = false;
667       TCollection_AsciiString aCurScript, anAfterScript;
668       if (!ProcessFunction(aFunction, aCurScript, anAfterScript, theVariables,
669                            isPublished, aCheckedFuncMap, anIgnoreObjMap,
670                            isDumpCollected ))
671         continue;
672       // add function description before dump
673       if (!aCurScript.IsEmpty())
674       {
675         if ( aFunction->GetDriverGUID() == GEOM_Object::GetSubShapeID() &&
676              aFuncScript.Length() > aCurScript.Length() )
677           // avoid repeated SubShape...() command at the end
678           if (aFuncScript.Location( aCurScript,
679                                     aFuncScript.Length() - aCurScript.Length(),
680                                     aFuncScript.Length()))
681             continue; // aCurScript is already at the end of aFuncScript
682         aFuncScript += aCurScript;
683       }
684       if (isDumpCollected ) {
685         // Replace entries by the names
686         ReplaceEntriesByNames( aFuncScript, aEntry2ObjData, isPublished,
687                                aObjListToPublish, objectCounter, aNameToEntry );
688
689         // publish collected objects
690         std::map< int, TCollection_AsciiString > anEntryToCmdMap; // sort publishing commands by study entry
691         int i = 1, n = aObjListToPublish.Length();
692         for ( ; i <= n; i++ )
693         {
694           const TCollection_AsciiString& aEntry = aObjListToPublish.Value(i);
695           PublishObject( aEntry2ObjData[aEntry], aEntry2ObjData, aStEntry2ObjDataPtr,
696                          aNameToEntry, anEntryToCmdMap, anIgnoreObjMap );
697         }
698         // add publishing commands to the script
699         std::map< int, TCollection_AsciiString >::iterator anEntryToCmd = anEntryToCmdMap.begin();
700         for ( ; anEntryToCmd != anEntryToCmdMap.end(); ++anEntryToCmd )
701           aFuncScript += anEntryToCmd->second;
702
703         // PTv, 0020001 add result objects from RestoreGivenSubShapes into ignore list,
704         //  because they will be published during command execution
705         int indx = anAfterScript.Search( "RestoreGivenSubShapes" );
706         if ( indx == -1 )
707           indx = anAfterScript.Search( "RestoreSubShapes" );
708         if ( indx != -1 ) {
709           TCollection_AsciiString aSubStr = anAfterScript.SubString(1, indx);
710           Handle(TColStd_HSequenceOfInteger) aSeq = FindEntries(aSubStr);
711           i = 1, n = aSeq->Length();
712           for ( ; i <= n; i+=2) {
713             TCollection_AsciiString anEntry =
714               aSubStr.SubString(aSeq->Value(i), aSeq->Value(i+1));
715             anIgnoreObjMap.insert(anEntry.ToCString());
716           }
717         }
718
719         aObjListToPublish.Clear();
720         aScript += aFuncScript;
721         aFuncScript.Clear();
722       }
723       aFuncScript += anAfterScript;
724     }
725   }
726
727   // Replace entries by the names
728   aObjListToPublish.Clear();
729   ReplaceEntriesByNames( aFuncScript, aEntry2ObjData, isPublished, aObjListToPublish,
730                          objectCounter, aNameToEntry );
731
732   aScript += aFuncScript;
733
734   // ouv : NPAL12872
735   AddObjectColors( theDocID, aScript, aEntry2ObjData );
736
737   // Make script to publish in study
738   TSting2ObjDataPtrMap::iterator aStEntry2ObjDataPtrIt;
739   if ( isPublished )
740   {
741     std::map< int, TCollection_AsciiString > anEntryToCmdMap; // sort publishing commands by object entry
742
743     for (aStEntry2ObjDataPtrIt  = aStEntry2ObjDataPtr.begin();
744          aStEntry2ObjDataPtrIt != aStEntry2ObjDataPtr.end();
745          ++aStEntry2ObjDataPtrIt)
746     {
747       TObjectData* data = aStEntry2ObjDataPtrIt->second;
748       if ( anIgnoreObjMap.count( data->_entry ))
749         continue; // should not be dumped
750       PublishObject( *data, aEntry2ObjData, aStEntry2ObjDataPtr,
751                      aNameToEntry, anEntryToCmdMap, anIgnoreObjMap );
752     }
753     // add publishing commands to the script
754     std::map< int, TCollection_AsciiString >::iterator anEntryToCmd = anEntryToCmdMap.begin();
755     for ( ; anEntryToCmd != anEntryToCmdMap.end(); ++anEntryToCmd )
756       aScript += anEntryToCmd->second;
757   }
758
759   //RNV: issue 16219: EDF PAL 469: "RemoveFromStudy" Function
760   //Add unpublish command if need
761   TCollection_AsciiString unpublishCmd("\n");
762   if(isMultiFile)
763     unpublishCmd += "\t";
764   unpublishCmd += "geompy.hideInStudy(";
765   
766   for (aStEntry2ObjDataPtrIt  = aStEntry2ObjDataPtr.begin();
767        aStEntry2ObjDataPtrIt != aStEntry2ObjDataPtr.end();
768        ++aStEntry2ObjDataPtrIt)
769     {
770       TObjectData* data = aStEntry2ObjDataPtrIt->second;      
771       if ( data->_unpublished && !data->_pyName.IsEmpty() ) {
772         aScript +=  unpublishCmd + data->_pyName + ")";
773       }
774     }    
775   
776   //aScript += "\n\tpass\n";
777   aScript += "\n";
778   aValidScript = true;
779
780   // fill _studyEntry2NameMap and build globalVars
781   TCollection_AsciiString globalVars;
782   _studyEntry2NameMap.Clear();
783   for (aStEntry2ObjDataPtrIt  = aStEntry2ObjDataPtr.begin();
784        aStEntry2ObjDataPtrIt != aStEntry2ObjDataPtr.end();
785        ++aStEntry2ObjDataPtrIt)
786   {
787     const TCollection_AsciiString& studyEntry = aStEntry2ObjDataPtrIt->first;
788     const TObjectData*                   data = aStEntry2ObjDataPtrIt->second;
789     _studyEntry2NameMap.Bind ( studyEntry, data->_pyName );
790     if ( !globalVars.IsEmpty() )
791       globalVars += ", ";
792     globalVars += data->_pyName;
793   }
794   if ( isMultiFile && !globalVars.IsEmpty() ) {
795     globalVars.Insert( 1, "\n\tglobal " );
796     aScript.Insert( posToInsertGlobalVars, globalVars );
797   }
798
799   return aScript;
800 }
801
802 //=======================================================================
803 //function : GetDumpName
804 //purpose  :
805 //=======================================================================
806
807 const char* GEOM_Engine::GetDumpName (const char* theStudyEntry) const
808 {
809   if ( _studyEntry2NameMap.IsBound( (char*)theStudyEntry ))
810     return _studyEntry2NameMap( (char*)theStudyEntry ).ToCString();
811
812   return NULL;
813 }
814
815 //=======================================================================
816 //function : GetAllDumpNames
817 //purpose  :
818 //=======================================================================
819
820 Handle(TColStd_HSequenceOfAsciiString) GEOM_Engine::GetAllDumpNames() const
821 {
822   Handle(TColStd_HSequenceOfAsciiString) aRetSeq = new TColStd_HSequenceOfAsciiString;
823
824   Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString it (_studyEntry2NameMap);
825   for (; it.More(); it.Next()) {
826     aRetSeq->Append(it.Value());
827   }
828
829   return aRetSeq;
830 }
831
832 #define TEXTURE_LABEL_ID       1
833 #define TEXTURE_LABEL_FILE     2
834 #define TEXTURE_LABEL_WIDTH    3
835 #define TEXTURE_LABEL_HEIGHT   4
836 #define TEXTURE_LABEL_DATA     5
837
838 int GEOM_Engine::addTexture(int theDocID, int theWidth, int theHeight,
839 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
840                             const Handle(TColStd_HArray1OfByte)& theTexture,
841 #else
842                             const Handle(TDataStd_HArray1OfByte)& theTexture,
843 #endif
844                             const TCollection_AsciiString& theFileName)
845 {
846   Handle(TDocStd_Document) aDoc = GetDocument(theDocID);
847   Handle(TDataStd_TreeNode) aRoot = TDataStd_TreeNode::Set(aDoc->Main());
848
849   // NPAL18604: use existing label to decrease memory usage,
850   //            if this label has been freed (object deleted)
851   bool useExisting = false;
852   TDF_Label aChild;
853   if (_freeLabels.find(theDocID) != _freeLabels.end()) {
854     std::list<TDF_Label>& aFreeLabels = _freeLabels[theDocID];
855     if (!aFreeLabels.empty()) {
856       useExisting = true;
857       aChild = aFreeLabels.front();
858       aFreeLabels.pop_front();
859     }
860   }
861   if (!useExisting) {
862     // create new label
863     aChild = TDF_TagSource::NewChild(aDoc->Main());
864   }
865
866   aChild.ForgetAllAttributes(Standard_True);
867   Handle(TDataStd_TreeNode) node;
868   if ( !aChild.FindAttribute(TDataStd_TreeNode::GetDefaultTreeID(), node ) )
869     node = TDataStd_TreeNode::Set(aChild);
870   TDataStd_UAttribute::Set(aChild, GetTextureGUID());
871
872   static int aTextureID = 0;
873
874   TDataStd_Integer::Set(aChild.FindChild(TEXTURE_LABEL_ID),     ++aTextureID);
875   TDataStd_Comment::Set(aChild.FindChild(TEXTURE_LABEL_FILE),   theFileName);
876   TDataStd_Integer::Set(aChild.FindChild(TEXTURE_LABEL_WIDTH),  theWidth);
877   TDataStd_Integer::Set(aChild.FindChild(TEXTURE_LABEL_HEIGHT), theHeight);
878
879   Handle(TDataStd_ByteArray) anAttr =
880     TDataStd_ByteArray::Set(aChild.FindChild(TEXTURE_LABEL_DATA),
881                             theTexture.IsNull() ? 0 : theTexture->Lower(),
882                             theTexture.IsNull() ? 0 : theTexture->Upper());
883   anAttr->ChangeArray(theTexture);
884
885   return aTextureID;
886 }
887
888 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
889 Handle(TColStd_HArray1OfByte) GEOM_Engine::getTexture(int theDocID, int theTextureID,
890 #else
891 Handle(TDataStd_HArray1OfByte) GEOM_Engine::getTexture(int theDocID, int theTextureID,
892 #endif
893                                                       int& theWidth, int& theHeight,
894                                                       TCollection_AsciiString& theFileName)
895 {
896 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
897   Handle(TColStd_HArray1OfByte) anArray;
898 #else
899   Handle(TDataStd_HArray1OfByte) anArray;
900 #endif
901   theWidth = theHeight = 0;
902
903   Handle(TDocStd_Document) aDoc = GetDocument(theDocID);
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(int theDocID)
938 {
939   std::list<int> id_list;
940
941   Handle(TDocStd_Document) aDoc = GetDocument(theDocID);
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  *  FindEntries: Returns a sequence of start/end positions of entries in the string
1183  */
1184 //=============================================================================
1185 Handle(TColStd_HSequenceOfInteger) FindEntries(TCollection_AsciiString& theString)
1186 {
1187   Handle(TColStd_HSequenceOfInteger) aSeq = new TColStd_HSequenceOfInteger;
1188   Standard_Integer aLen = theString.Length();
1189   Standard_Boolean isFound = Standard_False;
1190
1191   const char* arr = theString.ToCString();
1192   Standard_Integer i = 0, j;
1193
1194   while(i < aLen) {
1195     int c = (int)arr[i];
1196     j = i+1;
1197     if(c >= 48 && c <= 57) { //Is digit?
1198
1199       isFound = Standard_False;
1200       while((j < aLen) && ((c >= 48 && c <= 57) || c == 58) ) { //Check if it is an entry
1201         c = (int)arr[j++];
1202         if(c == 58) isFound = Standard_True;
1203       }
1204
1205       if(isFound && arr[j-2] != 58) { // last char should be a diggit
1206         aSeq->Append(i+1); // +1 because AsciiString starts from 1
1207         aSeq->Append(j-1);
1208       }
1209     }
1210
1211     i = j;
1212   }
1213
1214   return aSeq;
1215 }
1216
1217 //=============================================================================
1218 /*!
1219  *  ReplaceVariables: Replace parameters of the function by variales from
1220  *                    Notebook if need
1221  */
1222 //=============================================================================
1223 void ReplaceVariables(TCollection_AsciiString& theCommand,
1224                       const TVariablesList&    theVariables)
1225 {
1226   if (MYDEBUG)
1227     cout<<"Command : "<<theCommand<<endl;
1228
1229   if (MYDEBUG) {
1230     cout<<"All Entries:"<<endl;
1231     TVariablesList::const_iterator it = theVariables.begin();
1232     for(;it != theVariables.end();it++)
1233       cout<<"\t'"<<(*it).first<<"'"<<endl;
1234   }
1235
1236   //Additional case - multi-row commands
1237   int aCommandIndex = 1;
1238   while( aCommandIndex < 10 ) { // tmp check
1239     TCollection_AsciiString aCommand = theCommand.Token("\n",aCommandIndex);
1240     if( aCommand.Length() == 0 )
1241       break;
1242
1243     if (MYDEBUG)
1244       cout<<"Sub-command : "<<aCommand<<endl;
1245
1246     Standard_Integer aStartCommandPos = theCommand.Location(aCommand,1,theCommand.Length());
1247     Standard_Integer aEndCommandPos = aStartCommandPos + aCommand.Length();
1248
1249     //Get Entry of the result object
1250     TCollection_AsciiString anEntry;
1251     if( aCommand.Search("=") != -1 ) // command returns an object
1252       anEntry = aCommand.Token("=",1);
1253     else { // command modifies the object
1254       if (int aStartEntryPos = aCommand.Location(1,'(',1,aCommand.Length()))
1255         if (int aEndEntryPos = aCommand.Location(1,',',aStartEntryPos,aCommand.Length()))
1256           anEntry = aCommand.SubString(aStartEntryPos+1, aEndEntryPos-1);
1257     }
1258     //Remove white spaces
1259     anEntry.RightAdjust();
1260     anEntry.LeftAdjust();
1261     if(MYDEBUG)
1262       cout<<"Result entry : '" <<anEntry<<"'"<<endl;
1263
1264     if ( anEntry.IsEmpty() ) {
1265       aCommandIndex++;
1266       continue;
1267     }
1268
1269     //Check if result is list of entries - enough to get the first entry in this case
1270     int aNbEntries = 1;
1271     if( anEntry.Value( 1 ) == O_SQR_BRACKET && anEntry.Value( anEntry.Length() ) == C_SQR_BRACKET ) {
1272       while(anEntry.Location(aNbEntries,COMMA,1,anEntry.Length()))
1273         aNbEntries++;
1274       TCollection_AsciiString aSeparator(COMMA);
1275       anEntry = anEntry.Token(aSeparator.ToCString(),1);
1276       anEntry.Remove( 1, 1 );
1277       anEntry.RightAdjust();
1278       anEntry.LeftAdjust();
1279       if(MYDEBUG)
1280         cout<<"Sub-entry : '" <<anEntry<<"'"<<endl;
1281     }
1282
1283     //Find variables used for object construction
1284     ObjectStates* aStates = 0;
1285     TVariablesList::const_iterator it = theVariables.find(anEntry);
1286     if( it != theVariables.end() )
1287       aStates = (*it).second;
1288
1289     if(!aStates) {
1290       if(MYDEBUG)
1291         cout<<"Valiables list empty!!!"<<endl;
1292       aCommandIndex++;
1293       continue;
1294     }
1295
1296     TState aVariables = aStates->GetCurrectState();
1297
1298     if(MYDEBUG) {
1299       cout<<"Variables from SObject:"<<endl;
1300       for (int i = 0; i < aVariables.size();i++)
1301         cout<<"\t Variable["<<i<<"] = "<<aVariables[i].myVariable<<endl;
1302     }
1303
1304     //Calculate total number of parameters
1305     Standard_Integer aTotalNbParams = 1;
1306     while(aCommand.Location(aTotalNbParams,COMMA,1,aCommand.Length()))
1307       aTotalNbParams++;
1308
1309     if(MYDEBUG)
1310       cout<<"aTotalNbParams = "<<aTotalNbParams<<endl;
1311
1312     Standard_Integer aFirstParam = aNbEntries;
1313
1314     //Replace parameters by variables
1315     Standard_Integer aStartPos = 0;
1316     Standard_Integer aEndPos = 0;
1317     int iVar = 0;
1318     TCollection_AsciiString aVar, aReplacedVar;
1319     for(Standard_Integer i=aFirstParam;i <= aTotalNbParams;i++) {
1320       //Replace first parameter (bettwen '(' character and first ',' character)
1321       if(i == aFirstParam)
1322       {
1323         aStartPos = aCommand.Location(O_BRACKET, 1, aCommand.Length()) + 1;
1324         if(aTotalNbParams - aNbEntries > 0 )
1325           aEndPos = aCommand.Location(aFirstParam, COMMA, 1, aCommand.Length());
1326         else
1327           aEndPos = aCommand.Location(C_BRACKET, 1, aCommand.Length());
1328       }
1329       //Replace last parameter (bettwen ',' character and ')' character)
1330       else if(i == aTotalNbParams)
1331       {
1332         aStartPos = aCommand.Location(i-1, COMMA, 1, aCommand.Length()) + 2;
1333         aEndPos = aCommand.Location(C_BRACKET, aStartPos , aCommand.Length());
1334       }
1335       //Replace other parameters (bettwen two ',' characters)
1336       else if(i != aFirstParam && i != aTotalNbParams )
1337       {
1338         aStartPos = aCommand.Location(i-1, COMMA, 1, aCommand.Length()) + 2;
1339         aEndPos = aCommand.Location(i, COMMA, 1, aCommand.Length());
1340       }
1341
1342       if( aCommand.Value( aStartPos ) == O_SQR_BRACKET )
1343         aStartPos++;
1344       if( aCommand.Value( aEndPos-1 ) == C_SQR_BRACKET )
1345         aEndPos--;
1346       if ( aStartPos == aEndPos )
1347         continue; // PAL20889: for "[]"
1348
1349       if(MYDEBUG)
1350         cout<<"aStartPos = "<<aStartPos<<", aEndPos = "<<aEndPos<<endl;
1351
1352       aVar = aCommand.SubString(aStartPos, aEndPos-1);
1353       aVar.RightAdjust();
1354       aVar.LeftAdjust();
1355
1356       if(MYDEBUG)
1357         cout<<"Variable: '"<< aVar <<"'"<<endl;
1358
1359       // specific case for sketcher
1360       if(aVar.Location( TCollection_AsciiString("Sketcher:"), 1, aVar.Length() ) != 0) {
1361         Standard_Integer aNbSections = 1;
1362         while( aVar.Location( aNbSections, ':', 1, aVar.Length() ) )
1363           aNbSections++;
1364         aNbSections--;
1365
1366         int aStartSectionPos = 0, aEndSectionPos = 0;
1367         TCollection_AsciiString aSection, aReplacedSection;
1368         for(Standard_Integer aSectionIndex = 1; aSectionIndex <= aNbSections; aSectionIndex++) {
1369           aStartSectionPos = aVar.Location( aSectionIndex, ':', 1, aVar.Length() ) + 1;
1370           if( aSectionIndex != aNbSections )
1371             aEndSectionPos = aVar.Location( aSectionIndex + 1, ':', 1, aVar.Length() );
1372           else
1373             aEndSectionPos = aVar.Length();
1374
1375           aSection = aVar.SubString(aStartSectionPos, aEndSectionPos-1);
1376           if(MYDEBUG)
1377             cout<<"aSection: "<<aSection<<endl;
1378
1379           Standard_Integer aNbParams = 1;
1380           while( aSection.Location( aNbParams, ' ', 1, aSection.Length() ) )
1381             aNbParams++;
1382           aNbParams--;
1383
1384           int aStartParamPos = 0, aEndParamPos = 0;
1385           TCollection_AsciiString aParameter, aReplacedParameter;
1386           for(Standard_Integer aParamIndex = 1; aParamIndex <= aNbParams; aParamIndex++) {
1387             aStartParamPos = aSection.Location( aParamIndex, ' ', 1, aSection.Length() ) + 1;
1388             if( aParamIndex != aNbParams )
1389               aEndParamPos = aSection.Location( aParamIndex + 1, ' ', 1, aSection.Length() );
1390             else
1391               aEndParamPos = aSection.Length() + 1;
1392
1393             if(MYDEBUG)
1394               cout<<"aParamIndex: "<<aParamIndex<<" aStartParamPos: " <<aStartParamPos<<" aEndParamPos: "<<aEndParamPos<<endl;
1395
1396             if ( aStartParamPos == aEndParamPos)
1397               continue;
1398
1399             aParameter = aSection.SubString(aStartParamPos, aEndParamPos-1);
1400             if(MYDEBUG)
1401               cout<<"aParameter: "<<aParameter<<endl;
1402
1403             if(iVar >= aVariables.size())
1404               continue;
1405
1406             aReplacedParameter = aVariables[iVar].myVariable;
1407             if(aReplacedParameter.IsEmpty()) {
1408               iVar++;
1409               continue;
1410             }
1411
1412             if(aVariables[iVar].isVariable) {
1413               aReplacedParameter.InsertBefore(1,"'");
1414               aReplacedParameter.InsertAfter(aReplacedParameter.Length(),"'");
1415             }
1416
1417             if(MYDEBUG)
1418               cout<<"aSection before : "<<aSection<<endl;
1419             aSection.Remove(aStartParamPos, aEndParamPos - aStartParamPos);
1420             aSection.Insert(aStartParamPos, aReplacedParameter);
1421             if(MYDEBUG)
1422               cout<<"aSection after  : "<<aSection<<endl<<endl;
1423             iVar++;
1424           }
1425           if(MYDEBUG)
1426             cout<<"aVar before : "<<aVar<<endl;
1427           aVar.Remove(aStartSectionPos, aEndSectionPos - aStartSectionPos);
1428           aVar.Insert(aStartSectionPos, aSection);
1429           if(MYDEBUG)
1430             cout<<"aVar after  : "<<aVar<<endl<<endl;
1431         }
1432
1433         if(MYDEBUG)
1434           cout<<"aCommand before : "<<aCommand<<endl;
1435         aCommand.Remove(aStartPos, aEndPos - aStartPos);
1436         aCommand.Insert(aStartPos, aVar);
1437         if(MYDEBUG)
1438           cout<<"aCommand after  : "<<aCommand<<endl;
1439
1440         break;
1441       } // end of specific case for sketcher
1442
1443       //If parameter is entry or 'None', skip it
1444       if(theVariables.find(aVar) != theVariables.end() || aVar.Search(":") != -1 || aVar == PY_NULL)
1445         continue;
1446
1447       if(iVar >= aVariables.size())
1448         continue;
1449
1450       aReplacedVar = aVariables[iVar].myVariable;
1451       if(aReplacedVar.IsEmpty()) {
1452         iVar++;
1453         continue;
1454       }
1455
1456       if(aVariables[iVar].isVariable) {
1457         aReplacedVar.InsertBefore(1,"\"");
1458         aReplacedVar.InsertAfter(aReplacedVar.Length(),"\"");
1459       }
1460
1461       aCommand.Remove(aStartPos, aEndPos - aStartPos);
1462       aCommand.Insert(aStartPos, aReplacedVar);
1463       iVar++;
1464     }
1465
1466     theCommand.Remove(aStartCommandPos, aEndCommandPos - aStartCommandPos);
1467     theCommand.Insert(aStartCommandPos, aCommand);
1468
1469     aCommandIndex++;
1470
1471     aStates->IncrementState();
1472   }
1473
1474   if (MYDEBUG)
1475     cout<<"Command : "<<theCommand<<endl;
1476 }
1477
1478 //=============================================================================
1479 /*!
1480  *  ReplaceEntriesByNames: Replace object entries by their names
1481  */
1482 //=============================================================================
1483 void ReplaceEntriesByNames (TCollection_AsciiString&                  theScript,
1484                             TSting2ObjDataMap&                        aEntry2ObjData,
1485                             const bool                                theIsPublished,
1486                             TColStd_SequenceOfAsciiString&            theObjListToPublish,
1487                             Standard_Integer&                         objectCounter,
1488                             Resource_DataMapOfAsciiStringAsciiString& aNameToEntry)
1489 {
1490   GEOM_Engine* engine = GEOM_Engine::GetEngine();
1491   Handle(TColStd_HSequenceOfInteger) aSeq = FindEntries(theScript);
1492   Standard_Integer aLen = aSeq->Length(), aStart = 1, aScriptLength = theScript.Length();
1493
1494   //Replace entries by the names
1495   TCollection_AsciiString anUpdatedScript, anEntry, aName, aBaseName("geomObj_"),
1496     allowedChars ("qwertyuioplkjhgfdsazxcvbnmQWERTYUIOPLKJHGFDSAZXCVBNM0987654321_");
1497   if (aLen == 0) anUpdatedScript = theScript;
1498
1499   for (Standard_Integer i = 1; i <= aLen; i+=2) {
1500     anUpdatedScript += theScript.SubString(aStart, aSeq->Value(i)-1);
1501     anEntry = theScript.SubString(aSeq->Value(i), aSeq->Value(i+1));
1502     theObjListToPublish.Append( anEntry );
1503     
1504     TObjectData& data = aEntry2ObjData[ anEntry ];
1505     if ( data._pyName.IsEmpty() ) { // encounted for the 1st time
1506       if ( !data._name.IsEmpty() ) { // published object
1507         data._pyName = data._name;
1508         engine->healPyName( data._pyName, anEntry, aNameToEntry);
1509       }
1510       else {
1511         do {
1512           data._pyName = aBaseName + TCollection_AsciiString(++objectCounter);
1513         } while(aNameToEntry.IsBound(data._pyName));
1514       }
1515     }
1516     
1517     aNameToEntry.Bind(data._pyName, anEntry); // to detect same name of diff objects
1518     
1519     anUpdatedScript += data._pyName;
1520     aStart = aSeq->Value(i+1) + 1;
1521   }
1522   
1523   //Add final part of the script
1524   if (aLen && aSeq->Value(aLen) < aScriptLength)
1525     anUpdatedScript += theScript.SubString(aSeq->Value(aLen)+1, aScriptLength); // mkr : IPAL11865
1526   
1527   theScript = anUpdatedScript;
1528 }
1529
1530 //=============================================================================
1531 /*!
1532  *  AddObjectColors: Add color to objects
1533  */
1534 //=============================================================================
1535 void AddObjectColors (int                      theDocID,
1536                       TCollection_AsciiString& theScript,
1537                       const TSting2ObjDataMap& theEntry2ObjData)
1538 {
1539   GEOM_Engine* engine = GEOM_Engine::GetEngine();
1540   Handle(TDocStd_Document) aDoc = engine->GetDocument(theDocID);
1541
1542   TSting2ObjDataMap::const_iterator anEntryToNameIt;
1543   for (anEntryToNameIt = theEntry2ObjData.begin();
1544        anEntryToNameIt!= theEntry2ObjData.end();
1545        ++anEntryToNameIt)
1546   {
1547     const TCollection_AsciiString& aEntry = anEntryToNameIt->first;
1548     const TCollection_AsciiString& aName = anEntryToNameIt->second._pyName;
1549
1550     TDF_Label L;
1551     TDF_Tool::Label( aDoc->GetData(), aEntry, L );
1552     if ( L.IsNull() )
1553       continue;
1554
1555     Handle(GEOM_Object) obj = GEOM_Object::GetObject( L );
1556     if ( obj.IsNull() )
1557       continue;
1558
1559     bool anAutoColor = obj->GetAutoColor();
1560     if ( anAutoColor )
1561     {
1562       TCollection_AsciiString aCommand( "\n\t" );
1563       aCommand += aName + ".SetAutoColor(1)";
1564       theScript += aCommand.ToCString();
1565     }
1566
1567     GEOM_Object::Color aColor = obj->GetColor();
1568     if ( aColor.R >= 0 && aColor.G >= 0 && aColor.B >= 0 )
1569     {
1570       TCollection_AsciiString aCommand( "\n\t" );
1571       aCommand += aName + ".SetColor(SALOMEDS.Color(" + aColor.R + "," + aColor.G + "," + aColor.B + "))";
1572       theScript += aCommand.ToCString();
1573     }
1574
1575     Aspect_TypeOfMarker aMarkerType = obj->GetMarkerType();
1576     if (aMarkerType >= Aspect_TOM_POINT && aMarkerType < Aspect_TOM_USERDEFINED) {
1577       TCollection_AsciiString aCommand( "\n\t" );
1578       aCommand += aName + ".SetMarkerStd(";
1579       switch (aMarkerType) {
1580       case Aspect_TOM_POINT:   aCommand += "GEOM.MT_POINT";   break;
1581       case Aspect_TOM_PLUS:    aCommand += "GEOM.MT_PLUS";    break;
1582       case Aspect_TOM_STAR:    aCommand += "GEOM.MT_STAR";    break;
1583       case Aspect_TOM_O:       aCommand += "GEOM.MT_O";       break;
1584       case Aspect_TOM_X:       aCommand += "GEOM.MT_X";       break;
1585       case Aspect_TOM_O_POINT: aCommand += "GEOM.MT_O_POINT"; break;
1586       case Aspect_TOM_O_PLUS:  aCommand += "GEOM.MT_O_PLUS";  break;
1587       case Aspect_TOM_O_STAR:  aCommand += "GEOM.MT_O_STAR";  break;
1588       case Aspect_TOM_O_X:     aCommand += "GEOM.MT_O_X";     break;
1589       case Aspect_TOM_BALL:    aCommand += "GEOM.MT_BALL";    break;
1590       case Aspect_TOM_RING1:   aCommand += "GEOM.MT_RING1";   break;
1591       case Aspect_TOM_RING2:   aCommand += "GEOM.MT_RING2";   break;
1592       case Aspect_TOM_RING3:   aCommand += "GEOM.MT_RING3";   break;
1593       default:                 aCommand += "GEOM.MT_NONE";    break; // just for completeness, should not get here
1594       }
1595       aCommand += ", ";
1596       int aSize = (int)( obj->GetMarkerSize()/0.5 ) - 1;
1597       switch (aSize) {
1598       case  1: aCommand += "GEOM.MS_10";   break;
1599       case  2: aCommand += "GEOM.MS_15";   break;
1600       case  3: aCommand += "GEOM.MS_20";   break;
1601       case  4: aCommand += "GEOM.MS_25";   break;
1602       case  5: aCommand += "GEOM.MS_30";   break;
1603       case  6: aCommand += "GEOM.MS_35";   break;
1604       case  7: aCommand += "GEOM.MS_40";   break;
1605       case  8: aCommand += "GEOM.MS_45";   break;
1606       case  9: aCommand += "GEOM.MS_50";   break;
1607       case 10: aCommand += "GEOM.MS_55";   break;
1608       case 11: aCommand += "GEOM.MS_60";   break;
1609       case 12: aCommand += "GEOM.MS_65";   break;
1610       case 13: aCommand += "GEOM.MS_70";   break;
1611       default: aCommand += "GEOM.MS_NONE"; break;
1612       }
1613       aCommand += ")";
1614       theScript += aCommand.ToCString();
1615     }
1616     else if (aMarkerType == Aspect_TOM_USERDEFINED) {
1617       int aMarkerTextureID = obj->GetMarkerTexture();
1618       if (aMarkerTextureID >= 0) {
1619         TCollection_AsciiString aCommand( "\n\t" );
1620         aCommand += aName + ".SetMarkerTexture(texture_map[";
1621         aCommand += aMarkerTextureID;
1622         aCommand += "])";
1623         theScript += aCommand.ToCString();
1624       }
1625     }
1626   }
1627 }
1628
1629 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
1630 static TCollection_AsciiString pack_data (const Handle(TColStd_HArray1OfByte)& aData)
1631 #else
1632 static TCollection_AsciiString pack_data (const Handle(TDataStd_HArray1OfByte)& aData)
1633 #endif
1634 {
1635   TCollection_AsciiString stream;
1636   if (!aData.IsNull()) {
1637     for (Standard_Integer i = aData->Lower(); i <= aData->Upper(); i++) {
1638       Standard_Byte byte = aData->Value(i);
1639       TCollection_AsciiString strByte = "";
1640       for (int j = 0; j < 8; j++)
1641         strByte.Prepend((byte & (1<<j)) ? "1" : "0");
1642       stream += strByte;
1643     }
1644   }
1645   return stream;
1646 }
1647
1648 void AddTextures (int theDocID, TCollection_AsciiString& theScript)
1649 {
1650   GEOM_Engine* engine = GEOM_Engine::GetEngine();
1651   std::list<int> allTextures = engine->getAllTextures(theDocID);
1652   std::list<int>::const_iterator it;
1653
1654   if (allTextures.size() > 0) {
1655     theScript += "\n\ttexture_map = {}\n";
1656
1657     for (it = allTextures.begin(); it != allTextures.end(); ++it) {
1658       if (*it <= 0) continue;
1659       Standard_Integer aWidth, aHeight;
1660       TCollection_AsciiString aFileName;
1661 #if OCC_VERSION_LARGE > 0x06040000 // Porting to OCCT6.5.1
1662       Handle(TColStd_HArray1OfByte) aTexture =
1663 #else
1664       Handle(TDataStd_HArray1OfByte) aTexture =
1665 #endif
1666         engine->getTexture(theDocID, *it, aWidth, aHeight, aFileName);
1667       if (aWidth > 0 && aHeight > 0 && !aTexture.IsNull() && aTexture->Length() > 0 ) {
1668         TCollection_AsciiString aCommand = "\n\t";
1669         aCommand += "texture_map["; aCommand += *it; aCommand += "] = ";
1670         if (aFileName != "" ) {
1671           aCommand += "geompy.LoadTexture(\"";
1672           aCommand += aFileName.ToCString();
1673           aCommand += "\")";
1674         }
1675         else {
1676           aCommand += "geompy.AddTexture(";
1677           aCommand += aWidth; aCommand += ", "; aCommand += aHeight; aCommand += ", \"";
1678           aCommand += pack_data(aTexture);
1679           aCommand += "\")";
1680         }
1681         theScript += aCommand;
1682       }
1683     }
1684     theScript += "\n";
1685   }
1686 }
1687
1688 //=============================================================================
1689 /*!
1690  *  PublishObject: publish object in study script
1691  */
1692 //=============================================================================
1693 void PublishObject (TObjectData&                              theObjectData,
1694                     TSting2ObjDataMap&                        theEntry2ObjData,
1695                     const TSting2ObjDataPtrMap&               theStEntry2ObjDataPtr,
1696                     Resource_DataMapOfAsciiStringAsciiString& theNameToEntry,
1697                     std::map< int, TCollection_AsciiString >& theEntryToCmdMap,
1698                     std::set< TCollection_AsciiString>&       theIgnoreMap)
1699 {
1700   GEOM_Engine* engine = GEOM_Engine::GetEngine();
1701   if ( theObjectData._studyEntry.IsEmpty() )
1702     return; // was not published
1703   if ( theIgnoreMap.count( theObjectData._entry ) )
1704     return; // not to publish
1705
1706   TCollection_AsciiString aCommand("\n\tgeompy.");
1707
1708   // find a father entry
1709   TObjectData* aFatherData = 0;
1710   TCollection_AsciiString aFatherStudyEntry =
1711     theObjectData._studyEntry.SubString( 1, theObjectData._studyEntry.SearchFromEnd(":") - 1 );
1712   TSting2ObjDataPtrMap::const_iterator stEntry2DataPtr =
1713     theStEntry2ObjDataPtr.find( aFatherStudyEntry );
1714   if ( stEntry2DataPtr != theStEntry2ObjDataPtr.end() )
1715     aFatherData = stEntry2DataPtr->second;
1716
1717   const int geomObjDepth = 3;
1718
1719   // treat multiply published object
1720   if ( theObjectData._pyName.IsEmpty() )
1721   {
1722     TObjectData& data0 = theEntry2ObjData[ theObjectData._entry ];
1723     if ( data0._pyName.IsEmpty() ) return; // something wrong
1724
1725     theObjectData._pyName = theObjectData._name;
1726     engine->healPyName( theObjectData._pyName, theObjectData._entry, theNameToEntry);
1727
1728     TCollection_AsciiString aCreationCommand("\n\t");
1729     aCreationCommand += theObjectData._pyName + " = " + data0._pyName;
1730
1731     // store aCreationCommand before publishing commands
1732     int tag = theObjectData._entry.Token( ":", geomObjDepth ).IntegerValue();
1733     theEntryToCmdMap.insert( std::make_pair( tag + 2*theEntry2ObjData.size(), aCreationCommand ));
1734   }
1735
1736   // make a command
1737   if ( aFatherData && !aFatherData->_pyName.IsEmpty() ) {
1738     aCommand += "addToStudyInFather( ";
1739     aCommand += aFatherData->_pyName + ", ";
1740   }
1741   else {
1742     aCommand += "addToStudy( ";
1743   }
1744   aCommand += theObjectData._pyName + ", '" + theObjectData._name + "' )";
1745
1746   // bind a command to the study entry
1747   int tag = theObjectData._entry.Token( ":", geomObjDepth ).IntegerValue();
1748   theEntryToCmdMap.insert( std::make_pair( tag, aCommand ));
1749
1750   theObjectData._studyEntry.Clear(); // not to publish any more
1751 }
1752
1753 //================================================================================
1754 /*!
1755  * \brief Constructor
1756  */
1757 //================================================================================
1758 ObjectStates::ObjectStates()
1759 {
1760   _dumpstate = 0;
1761 }
1762
1763 //================================================================================
1764 /*!
1765  * \brief Destructor
1766  */
1767 //================================================================================
1768 ObjectStates::~ObjectStates()
1769 {
1770 }
1771
1772 //================================================================================
1773 /*!
1774  * \brief Return current object state
1775  * \retval state - Object state (vector of notebook variable)
1776  */
1777 //================================================================================
1778 TState ObjectStates::GetCurrectState() const
1779 {
1780   if(_states.size() > _dumpstate)
1781     return _states[_dumpstate];
1782   return TState();
1783 }
1784
1785 //================================================================================
1786 /*!
1787  * \brief Add new object state
1788  * \param theState - Object state (vector of notebook variable)
1789  */
1790 //================================================================================
1791 void ObjectStates::AddState(const TState &theState)
1792 {
1793   _states.push_back(theState);
1794 }
1795
1796 //================================================================================
1797 /*!
1798  * \brief Increment object state
1799  */
1800 //================================================================================
1801 void ObjectStates::IncrementState()
1802 {
1803   _dumpstate++;
1804 }