Salome HOME
23237: EDF 12367 - SIGSEGV with Remove group
[modules/smesh.git] / src / SMESH_I / SMESH_DumpPython.cxx
1 // Copyright (C) 2007-2015  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 //  File    : SMESH_DumpPython.cxx
23 //  Created : Thu Mar 24 17:17:59 2005
24 //  Author  : Julia DOROVSKIKH
25 //  Module  : SMESH
26
27 #include "SMESH_PythonDump.hxx"
28
29 #include "SMESH_2smeshpy.hxx"
30 #include "SMESH_Comment.hxx"
31 #include "SMESH_Filter_i.hxx"
32 #include "SMESH_Gen_i.hxx"
33 #include "SMESH_MeshEditor_i.hxx"
34
35 #include <SALOMEDS_wrap.hxx>
36
37 #include <LDOMParser.hxx>
38 #include <Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString.hxx>
39 #include <TColStd_HSequenceOfInteger.hxx>
40 #include <TCollection_AsciiString.hxx>
41
42 #ifdef _DEBUG_
43 static int MYDEBUG = 0;
44 #else
45 static int MYDEBUG = 0;
46 #endif
47
48 #include "SMESH_TryCatch.hxx"
49
50 namespace SMESH
51 {
52
53   size_t TPythonDump::myCounter = 0;
54   const char theNotPublishedObjectName[] = "__NOT__Published__Object__";
55
56   TVar::TVar(CORBA::Double value):myVals(1) { myVals[0] = SMESH_Comment(value); }
57   TVar::TVar(CORBA::Long   value):myVals(1) { myVals[0] = SMESH_Comment(value); }
58   TVar::TVar(CORBA::Short  value):myVals(1) { myVals[0] = SMESH_Comment(value); }
59   TVar::TVar(const SMESH::double_array& value):myVals(value.length())
60   {
61     for ( size_t i = 0; i < value.length(); i++)
62       myVals[i] = SMESH_Comment(value[i]);
63   }
64
65   TPythonDump::
66   TPythonDump():myVarsCounter(0)
67   {
68     ++myCounter;
69   }
70   TPythonDump::
71   ~TPythonDump()
72   {
73     if(--myCounter == 0){
74       SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
75       std::string aString = myStream.str();
76       TCollection_AsciiString aCollection(Standard_CString(aString.c_str()));
77       SALOMEDS::Study_var aStudy = aSMESHGen->GetCurrentStudy();
78       if(!aStudy->_is_nil() && !aCollection.IsEmpty())
79       {
80         const std::string & objEntry = SMESH_Gen_i::GetSMESHGen()->GetLastObjEntry();
81         if ( !objEntry.empty() )
82           aCollection += (TVar::ObjPrefix() + objEntry ).c_str();
83         aSMESHGen->AddToPythonScript(aStudy->StudyId(),aCollection);
84         if(MYDEBUG) MESSAGE(aString);
85         // prevent misuse of already treated variables
86         aSMESHGen->UpdateParameters(CORBA::Object_var().in(),"");
87       }
88     }
89   }
90
91   TPythonDump& //!< store a variable value. Write either a value or '$varID$'
92   TPythonDump::
93   operator<<(const TVar& theVarValue)
94   {
95     const std::vector< int >& varIDs = SMESH_Gen_i::GetSMESHGen()->GetLastParamIndices();
96     if ( theVarValue.myVals.size() != 1 )
97     {
98       myStream << "[ ";
99       for ( size_t i = 1; i <= theVarValue.myVals.size(); ++i )
100       {
101         if ( myVarsCounter < (int)varIDs.size() && varIDs[ myVarsCounter ] >= 0 )
102           myStream << TVar::Quote() << varIDs[ myVarsCounter ] << TVar::Quote();
103         else
104           myStream << theVarValue.myVals[i-1];
105         if ( i < theVarValue.myVals.size() )
106           myStream << ", ";
107         ++myVarsCounter;
108       }
109       myStream << " ]";
110     }
111     else
112     {
113       if ( myVarsCounter < (int)varIDs.size() && varIDs[ myVarsCounter ] >= 0 )
114         myStream << TVar::Quote() << varIDs[ myVarsCounter ] << TVar::Quote();
115       else
116         myStream << theVarValue.myVals[0];
117       ++myVarsCounter;
118     }
119     return *this;
120   }
121
122   TPythonDump&
123   TPythonDump::
124   operator<<(long int theArg){
125     myStream<<theArg;
126     return *this;
127   }
128
129   TPythonDump&
130   TPythonDump::
131   operator<<(int theArg){
132     myStream<<theArg;
133     return *this;
134   }
135
136   TPythonDump&
137   TPythonDump::
138   operator<<(double theArg){
139     myStream<<theArg;
140     return *this;
141   }
142
143   TPythonDump&
144   TPythonDump::
145   operator<<(float theArg){
146     myStream<<theArg;
147     return *this;
148   }
149
150   TPythonDump&
151   TPythonDump::
152   operator<<(const void* theArg){
153     myStream<<theArg;
154     return *this;
155   }
156
157   TPythonDump&
158   TPythonDump::
159   operator<<(const char* theArg){
160     if ( theArg )
161       myStream<<theArg;
162     return *this;
163   }
164
165   TPythonDump&
166   TPythonDump::
167   operator<<(const SMESH::ElementType& theArg)
168   {
169     myStream<<"SMESH.";
170     switch(theArg){
171     case ALL:    myStream<<"ALL";    break;
172     case NODE:   myStream<<"NODE";   break;
173     case EDGE:   myStream<<"EDGE";   break;
174     case FACE:   myStream<<"FACE";   break;
175     case VOLUME: myStream<<"VOLUME"; break;
176     case ELEM0D: myStream<<"ELEM0D"; break;
177     case BALL:   myStream<<"BALL";   break;
178     default:     myStream<<"__UNKNOWN__ElementType: " << theArg;
179     }
180     return *this;
181   }
182
183   TPythonDump&
184   TPythonDump::
185   operator<<(const SMESH::GeometryType& theArg)
186   {
187     myStream<<"SMESH.";
188     switch(theArg){
189     case Geom_POINT:      myStream<<"Geom_POINT";      break;
190     case Geom_EDGE:       myStream<<"Geom_EDGE";       break;
191     case Geom_TRIANGLE:   myStream<<"Geom_TRIANGLE";   break;
192     case Geom_QUADRANGLE: myStream<<"Geom_QUADRANGLE"; break;
193     case Geom_POLYGON:    myStream<<"Geom_POLYGON";    break;
194     case Geom_TETRA:      myStream<<"Geom_TETRA";      break;
195     case Geom_PYRAMID:    myStream<<"Geom_PYRAMID";    break;
196     case Geom_HEXA:       myStream<<"Geom_HEXA";       break;
197     case Geom_PENTA:      myStream<<"Geom_PENTA";      break;
198     case Geom_POLYHEDRA:  myStream<<"Geom_POLYHEDRA";  break;
199     case Geom_BALL:       myStream<<"Geom_BALL";       break;
200     default:    myStream<<"__UNKNOWN__GeometryType: " << theArg;
201     }
202     return *this;
203   }
204   TPythonDump&
205   TPythonDump::
206   operator<<(const SMESH::EntityType& theArg)
207   {
208     myStream<<"SMESH.";
209     switch(theArg){
210     case Entity_0D:                myStream<<"Entity_0D";                break;
211     case Entity_Edge:              myStream<<"Entity_Edge";              break;
212     case Entity_Quad_Edge:         myStream<<"Entity_Quad_Edge";         break;
213     case Entity_Triangle:          myStream<<"Entity_Triangle";          break;
214     case Entity_Quad_Triangle:     myStream<<"Entity_Quad_Triangle";     break;
215     case Entity_BiQuad_Triangle:   myStream<<"Entity_BiQuad_Triangle";   break;
216     case Entity_Quadrangle:        myStream<<"Entity_Quadrangle";        break;
217     case Entity_Quad_Quadrangle:   myStream<<"Entity_Quad_Quadrangle";   break;
218     case Entity_BiQuad_Quadrangle: myStream<<"Entity_BiQuad_Quadrangle"; break;
219     case Entity_Polygon:           myStream<<"Entity_Polygon";           break;
220     case Entity_Quad_Polygon:      myStream<<"Entity_Quad_Polygon";      break;
221     case Entity_Tetra:             myStream<<"Entity_Tetra";             break;
222     case Entity_Quad_Tetra:        myStream<<"Entity_Quad_Tetra";        break;
223     case Entity_Pyramid:           myStream<<"Entity_Pyramid";           break;
224     case Entity_Quad_Pyramid:      myStream<<"Entity_Quad_Pyramid";      break;
225     case Entity_Hexa:              myStream<<"Entity_Hexa";              break;
226     case Entity_Quad_Hexa:         myStream<<"Entity_Quad_Hexa";         break;
227     case Entity_TriQuad_Hexa:      myStream<<"Entity_TriQuad_Hexa";      break;
228     case Entity_Penta:             myStream<<"Entity_Penta";             break;
229     case Entity_Quad_Penta:        myStream<<"Entity_Quad_Penta";        break;
230     case Entity_Hexagonal_Prism:   myStream<<"Entity_Hexagonal_Prism";   break;
231     case Entity_Polyhedra:         myStream<<"Entity_Polyhedra";         break;
232     case Entity_Quad_Polyhedra:    myStream<<"Entity_Quad_Polyhedra";    break;
233     case Entity_Ball:              myStream<<"Entity_Ball";              break;
234     case Entity_Last:              myStream<<"Entity_Last";              break;
235     default:    myStream<<"__UNKNOWN__EntityType: " << theArg;
236     }
237     return *this;
238   }
239
240   template<class TArray>
241   void DumpArray(const TArray& theArray, TPythonDump & theStream)
242   {
243     if ( theArray.length() == 0 )
244     {
245       theStream << "[]";
246     }
247     else
248     {
249       theStream << "[ ";
250       for (CORBA::ULong i = 1; i <= theArray.length(); i++) {
251         theStream << theArray[i-1];
252         if ( i < theArray.length() )
253           theStream << ", ";
254       }
255       theStream << " ]";
256     }
257   }
258
259   TPythonDump&
260   TPythonDump::operator<<(const SMESH::long_array& theArg)
261   {
262     DumpArray( theArg, *this );
263     return *this;
264   }
265
266   TPythonDump&
267   TPythonDump::operator<<(const SMESH::double_array& theArg)
268   {
269     DumpArray( theArg, *this );
270     return *this;
271   }
272
273   TPythonDump&
274   TPythonDump::operator<<(const SMESH::nodes_array& theArg)
275   {
276     DumpArray( theArg, *this );
277     return *this;
278   }
279
280   TPythonDump&
281   TPythonDump::operator<<(const SMESH::string_array& theArray)
282   {
283     myStream << "[ ";
284     for ( CORBA::ULong i = 1; i <= theArray.length(); i++ ) {
285       myStream << "'" << theArray[i-1] << "'";
286       if ( i < theArray.length() )
287         myStream << ", ";
288     }
289     myStream << " ]";
290     return *this;
291   }
292
293   TPythonDump&
294   TPythonDump::
295   operator<<(SALOMEDS::SObject_ptr aSObject)
296   {
297     if ( !aSObject->_is_nil() ) {
298       CORBA::String_var entry = aSObject->GetID();
299       myStream << entry.in();
300     }
301     else {
302       myStream << theNotPublishedObjectName;
303     }
304     return *this;
305   }
306
307   TPythonDump&
308   TPythonDump::
309   operator<<(CORBA::Object_ptr theArg)
310   {
311     SMESH_Gen_i*          aSMESHGen = SMESH_Gen_i::GetSMESHGen();
312     SALOMEDS::Study_var      aStudy = aSMESHGen->GetCurrentStudy();
313     SALOMEDS::SObject_wrap aSObject = SMESH_Gen_i::ObjectToSObject(aStudy,theArg);
314     if(!aSObject->_is_nil()) {
315       CORBA::String_var id = aSObject->GetID();
316       myStream << id;
317     } else if ( !CORBA::is_nil(theArg)) {
318       if ( aSMESHGen->CanPublishInStudy( theArg )) // not published SMESH object
319         myStream << "smeshObj_" << size_t(theArg);
320       else
321         myStream << theNotPublishedObjectName;
322     }
323     else
324       myStream << "None";
325     return *this;
326   }
327
328   TPythonDump&
329   TPythonDump::
330   operator<<(SMESH::SMESH_Hypothesis_ptr theArg)
331   {
332     SALOMEDS::Study_var     aStudy = SMESH_Gen_i::GetSMESHGen()->GetCurrentStudy();
333     SALOMEDS::SObject_wrap aSObject = SMESH_Gen_i::ObjectToSObject(aStudy,theArg);
334     if(aSObject->_is_nil() && !CORBA::is_nil(theArg))
335       myStream << "hyp_" << theArg->GetId();
336     else
337       *this << aSObject;
338     return *this;
339   }
340
341   TPythonDump&
342   TPythonDump::
343   operator<<(SMESH::SMESH_IDSource_ptr theArg)
344   {
345     if ( CORBA::is_nil( theArg ) )
346       return *this << "None";
347     SMESH_Gen_i*          aSMESHGen = SMESH_Gen_i::GetSMESHGen();
348     SALOMEDS::Study_var      aStudy = aSMESHGen->GetCurrentStudy();
349     SALOMEDS::SObject_wrap aSObject = SMESH_Gen_i::ObjectToSObject(aStudy,theArg);
350     if(!aSObject->_is_nil())
351     {
352       return *this << aSObject;
353     }
354     if ( SMESH::Filter_i* filter = SMESH::DownCast<SMESH::Filter_i*>( theArg ))
355     {
356       return *this << filter;
357     }
358     if ( SMESH_MeshEditor_i::IsTemporaryIDSource( theArg ))
359     {
360       SMESH::SMESH_Mesh_var            mesh = theArg->GetMesh();
361       SMESH::long_array_var    anElementsId = theArg->GetIDs();
362       SMESH::array_of_ElementType_var types = theArg->GetTypes();
363       SMESH::ElementType               type = types->length() ? types[0] : SMESH::ALL;
364       SALOMEDS::SObject_wrap         meshSO = SMESH_Gen_i::ObjectToSObject(aStudy,mesh);
365       if ( meshSO->_is_nil() ) // don't waste memory for dumping not published objects
366         return *this << mesh << ".GetIDSource([], " << type << ")";
367       else
368         return *this << mesh << ".GetIDSource(" << anElementsId << ", " << type << ")";
369     }
370     return *this << theNotPublishedObjectName;
371   }
372
373   TPythonDump&
374   TPythonDump::
375   operator<<(SMESH::FilterLibrary_i* theArg)
376   {
377     myStream<<"aFilterLibrary"<<theArg;
378     return *this;
379   }
380
381   TPythonDump&
382   TPythonDump::
383   operator<<(SMESH::FilterManager_i* theArg)
384   {
385     myStream<<"aFilterManager";
386     return *this;
387   }
388
389   TPythonDump&
390   TPythonDump::
391   operator<<(SMESH::Filter_i* theArg)
392   {
393     myStream<<"aFilter"<<theArg;
394     return *this;
395   }
396
397   TPythonDump&
398   TPythonDump::
399   operator<<(SMESH::Functor_i* theArg)
400   {
401     if ( theArg ) {
402       FunctorType aFunctorType = theArg->GetFunctorType();
403       switch(aFunctorType) {
404       case FT_AspectRatio:           myStream<< "aAspectRatio";           break;
405       case FT_AspectRatio3D:         myStream<< "aAspectRatio3D";         break;
406       case FT_Warping:               myStream<< "aWarping";               break;
407       case FT_MinimumAngle:          myStream<< "aMinimumAngle";          break;
408       case FT_Taper:                 myStream<< "aTaper";                 break;
409       case FT_Skew:                  myStream<< "aSkew";                  break;
410       case FT_Area:                  myStream<< "aArea";                  break;
411       case FT_Volume3D:              myStream<< "aVolume3D";              break;
412       case FT_MaxElementLength2D:    myStream<< "aMaxElementLength2D";    break;
413       case FT_MaxElementLength3D:    myStream<< "aMaxElementLength3D";    break;
414       case FT_FreeBorders:           myStream<< "aFreeBorders";           break;
415       case FT_FreeEdges:             myStream<< "aFreeEdges";             break;
416       case FT_FreeNodes:             myStream<< "aFreeNodes";             break;
417       case FT_FreeFaces:             myStream<< "aFreeFaces";             break;
418       case FT_EqualNodes:            myStream<< "aEqualNodes";            break;
419       case FT_EqualEdges:            myStream<< "aEqualEdges";            break;
420       case FT_EqualFaces:            myStream<< "aEqualFaces";            break;
421       case FT_EqualVolumes:          myStream<< "aEqualVolumes";          break;
422       case FT_MultiConnection:       myStream<< "aMultiConnection";       break;
423       case FT_MultiConnection2D:     myStream<< "aMultiConnection2D";     break;
424       case FT_Length:                myStream<< "aLength";                break;
425       case FT_Length2D:              myStream<< "aLength2D";              break;
426       case FT_BelongToMeshGroup:     myStream<< "aBelongToMeshGroup";     break;
427       case FT_BelongToGeom:          myStream<< "aBelongToGeom";          break;
428       case FT_BelongToPlane:         myStream<< "aBelongToPlane";         break;
429       case FT_BelongToCylinder:      myStream<< "aBelongToCylinder";      break;
430       case FT_BelongToGenSurface:    myStream<< "aBelongToGenSurface";    break;
431       case FT_LyingOnGeom:           myStream<< "aLyingOnGeom";           break;
432       case FT_RangeOfIds:            myStream<< "aRangeOfIds";            break;
433       case FT_BadOrientedVolume:     myStream<< "aBadOrientedVolume";     break;
434       case FT_BareBorderVolume:      myStream<< "aBareBorderVolume";      break;
435       case FT_BareBorderFace:        myStream<< "aBareBorderFace";        break;
436       case FT_OverConstrainedVolume: myStream<< "aOverConstrainedVolume"; break;
437       case FT_OverConstrainedFace:   myStream<< "aOverConstrainedFace";   break;
438       case FT_LinearOrQuadratic:     myStream<< "aLinearOrQuadratic";     break;
439       case FT_GroupColor:            myStream<< "aGroupColor";            break;
440       case FT_ElemGeomType:          myStream<< "aElemGeomType";          break;
441       case FT_EntityType:            myStream<< "aEntityType";            break;
442       case FT_CoplanarFaces:         myStream<< "aCoplanarFaces";         break;
443       case FT_BallDiameter:          myStream<< "aBallDiameter";          break;
444       case FT_ConnectedElements:     myStream<< "aConnectedElements";     break;
445       case FT_LessThan:              myStream<< "aLessThan";              break;
446       case FT_MoreThan:              myStream<< "aMoreThan";              break;
447       case FT_EqualTo:               myStream<< "aEqualTo";               break;
448       case FT_LogicalNOT:            myStream<< "aLogicalNOT";            break;
449       case FT_LogicalAND:            myStream<< "aLogicalAND";            break;
450       case FT_LogicalOR:             myStream<< "aLogicalOR";             break;
451       case FT_Undefined:
452       default:                       myStream<< "anUndefined";            break;
453       }
454       myStream<<theArg;
455     }
456     return *this;
457   }
458
459   TPythonDump&
460   TPythonDump::
461   operator<<(SMESH::Measurements_i* theArg)
462   {
463     myStream<<"aMeasurements";
464     return *this;
465   }
466
467
468   TPythonDump& TPythonDump:: operator<<(SMESH_Gen_i* theArg)
469   {
470     myStream << SMESHGenName(); return *this;
471   }
472
473   TPythonDump& TPythonDump::operator<<(SMESH_MeshEditor_i* theArg)
474   {
475     myStream << MeshEditorName() << "_" << ( theArg ? theArg->GetMeshId() : -1 ); return *this;
476   }
477
478   TPythonDump& TPythonDump::operator<<(const TCollection_AsciiString & theStr)
479   {
480     myStream << theStr; return *this;
481   }
482
483
484   TPythonDump& TPythonDump::operator<<(SMESH::MED_VERSION theVersion)
485   {
486     switch (theVersion) {
487     case SMESH::MED_V2_1: myStream << "SMESH.MED_V2_1"; break;
488     case SMESH::MED_V2_2: myStream << "SMESH.MED_V2_2"; break;
489     default: myStream << theVersion;
490     }
491     return *this;
492   }
493
494   TPythonDump& TPythonDump::operator<<(const SMESH::AxisStruct & theAxis)
495   {
496     *this << "SMESH.AxisStruct( "
497           << TVar( theAxis.x  ) << ", "
498           << TVar( theAxis.y  ) << ", "
499           << TVar( theAxis.z  ) << ", "
500           << TVar( theAxis.vx ) << ", "
501           << TVar( theAxis.vy ) << ", "
502           << TVar( theAxis.vz ) << " )";
503     return *this;
504   }
505
506   TPythonDump& TPythonDump::operator<<(const SMESH::DirStruct & theDir)
507   {
508     const SMESH::PointStruct & P = theDir.PS;
509     *this << "SMESH.DirStruct( SMESH.PointStruct ( "
510           << TVar( P.x ) << ", "
511           << TVar( P.y ) << ", "
512           << TVar( P.z ) << " ))";
513     return *this;
514   }
515
516   TPythonDump& TPythonDump::operator<<(const SMESH::PointStruct & P)
517   {
518     *this << "SMESH.PointStruct ( "
519           << TVar( P.x ) << ", "
520           << TVar( P.y ) << ", "
521           << TVar( P.z ) << " )";
522     return *this;
523   }
524
525   TPythonDump& TPythonDump::operator<<(const SMESH::ListOfGroups& theList)
526   {
527     DumpArray( theList, *this );
528     return *this;
529   }
530   TPythonDump& TPythonDump::operator<<(const SMESH::ListOfGroups * theList)
531   {
532     DumpArray( *theList, *this );
533     return *this;
534   }
535   TPythonDump& TPythonDump::operator<<(const GEOM::ListOfGO& theList)
536   {
537     DumpArray( theList, *this );
538     return *this;
539   }
540   TPythonDump& TPythonDump::operator<<(const GEOM::ListOfGBO& theList)
541   {
542     DumpArray( theList, *this );
543     return *this;
544   }
545   TPythonDump& TPythonDump::operator<<(const SMESH::ListOfIDSources& theList)
546   {
547     DumpArray( theList, *this );
548     return *this;
549   }
550   TPythonDump& TPythonDump::operator<<(const SMESH::CoincidentFreeBorders& theCFB)
551   {
552     // dump CoincidentFreeBorders as a list of lists, each enclosed list
553     // contains node IDs of a group of coincident free borders where
554     // each consequent triple of IDs describe a free border: (n1, n2, nLast)
555     // For example [[1, 2, 10, 20, 21, 40], [11, 12, 15, 55, 54, 41]] describes
556     // two groups of coincident free borders, each group including two borders
557
558     myStream << "[";
559     for ( CORBA::ULong i = 0; i < theCFB.coincidentGroups.length(); ++i )
560     {
561       const SMESH::FreeBordersGroup& aGRP = theCFB.coincidentGroups[ i ];
562       if ( i ) myStream << ",";
563       myStream << "[";
564       for ( CORBA::ULong iP = 0; iP < aGRP.length(); ++iP )
565       {
566         const SMESH::FreeBorderPart& aPART = aGRP[ iP ];
567         if ( 0 <= aPART.border && aPART.border < (CORBA::Long)theCFB.borders.length() )
568         {
569           if ( iP ) myStream << ", ";
570           const SMESH::FreeBorder& aBRD = theCFB.borders[ aPART.border ];
571           myStream << aBRD.nodeIDs[ aPART.node1    ] << ",";
572           myStream << aBRD.nodeIDs[ aPART.node2    ] << ",";
573           myStream << aBRD.nodeIDs[ aPART.nodeLast ];
574         }
575       }
576       myStream << "]";
577     }
578     myStream << "]";
579
580     return *this;
581   }
582
583   const char* TPythonDump::NotPublishedObjectName()
584   {
585     return theNotPublishedObjectName;
586   }
587
588   TCollection_AsciiString myLongStringStart( "TPythonDump::LongStringStart" );
589   TCollection_AsciiString myLongStringEnd  ( "TPythonDump::LongStringEnd" );
590
591   //================================================================================
592   /*!
593    * \brief Return marker of long string literal beginning
594    * \param type - a name of functionality producing the string literal
595    * \retval TCollection_AsciiString - the marker string to be written into
596    * a raw python script
597    */
598   //================================================================================
599
600   TCollection_AsciiString TPythonDump::LongStringStart(const char* type)
601   {
602     return
603       myLongStringStart +
604       (Standard_Integer) strlen(type) +
605       " " +
606       (char*) type;
607   }
608
609   //================================================================================
610   /*!
611      * \brief Return marker of long string literal end
612       * \retval TCollection_AsciiString - the marker string to be written into
613       * a raw python script
614    */
615   //================================================================================
616
617   TCollection_AsciiString TPythonDump::LongStringEnd()
618   {
619     return myLongStringEnd;
620   }
621
622   //================================================================================
623   /*!
624      * \brief Cut out a long string literal from a string
625       * \param theText - text possibly containing string literals
626       * \param theFrom - position in the text to search from
627       * \param theLongString - the retrieved literal
628       * \param theStringType - a name of functionality produced the literal
629       * \retval bool - true if a string literal found
630      *
631      * The literal is removed from theText; theFrom points position right after
632      * the removed literal
633    */
634   //================================================================================
635
636   bool  TPythonDump::CutoutLongString( TCollection_AsciiString & theText,
637                                        int                     & theFrom,
638                                        TCollection_AsciiString & theLongString,
639                                        TCollection_AsciiString & theStringType)
640   {
641     if ( theFrom < 1 || theFrom > theText.Length() )
642       return false;
643
644     // ...script \  beg marker    \ \ type \       literal              \  end marker  \ script...
645     //  "theText myLongStringStart7 Pattern!!! SALOME Mesh Pattern file myLongStringEndtextEnd"
646     //  012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
647     //  0         1         2         3         4         5         6         7         8
648
649     theFrom = theText.Location( myLongStringStart, theFrom, theText.Length() ); // = 09
650     if ( !theFrom )
651       return false;
652
653     // find where literal begins
654     int literalBeg = theFrom + myLongStringStart.Length(); // = 26
655     char* typeLenStr = (char*) theText.ToCString() + literalBeg - 1; // = "7 Pattern!!! SALO...."
656     int typeLen = atoi ( typeLenStr ); // = 7
657     while ( *typeLenStr != ' ' ) { // look for ' ' after typeLen
658       literalBeg++; // 26 -> 27
659       typeLenStr++;
660     }
661     literalBeg += typeLen + 1; // = 35
662     if ( literalBeg > theText.Length() )
663       return false;
664
665     // where literal ends (i.e. end marker begins)
666     int literalEnd = theText.Location( myLongStringEnd, literalBeg, theText.Length() ); // = 64
667     if ( !literalEnd )
668       literalEnd = theText.Length();
669
670     // literal
671     theLongString = theText.SubString( literalBeg, literalEnd - 1); // "!!! SALOME Mesh Pattern file "
672     // type
673     theStringType = theText.SubString( literalBeg - typeLen, literalBeg - 1 ); // "Pattern"
674     // cut off literal
675     literalEnd += myLongStringEnd.Length(); // = 79
676     TCollection_AsciiString textEnd = theText.SubString( literalEnd, theText.Length() ); // "textE..."
677     theText = theText.SubString( 1, theFrom - 1 ) + textEnd;
678
679     return true;
680   }
681
682   void printException( const char* text )
683   {
684 #ifdef _DEBUG_
685     cout << "Exception in SMESH_Gen_i::DumpPython(): " << text << endl;
686 #endif
687   }
688 }
689
690 //=======================================================================
691 //function : RemoveTabulation
692 //purpose  : 
693 //=======================================================================
694 void RemoveTabulation( TCollection_AsciiString& theScript )
695 {
696   std::string aString( theScript.ToCString() );
697   std::string::size_type aPos = 0;
698   while( aPos < aString.length() )
699   {
700     aPos = aString.find( "\n\t", aPos );
701     if( aPos == std::string::npos )
702       break;
703     aString.replace( aPos, 2, "\n" );
704     aPos++;
705   }
706   theScript = aString.c_str();
707 }
708
709 //=======================================================================
710 //function : DumpPython
711 //purpose  :
712 //=======================================================================
713 Engines::TMPFile* SMESH_Gen_i::DumpPython (CORBA::Object_ptr theStudy,
714                                            CORBA::Boolean isPublished,
715                                            CORBA::Boolean isMultiFile,
716                                            CORBA::Boolean& isValidScript)
717 {
718   SALOMEDS::Study_var aStudy = SALOMEDS::Study::_narrow(theStudy);
719   if (CORBA::is_nil(aStudy))
720     return new Engines::TMPFile(0);
721
722   CORBA::String_var compDataType = ComponentDataType();
723   SALOMEDS::SObject_wrap aSO = aStudy->FindComponent( compDataType.in() );
724   if (CORBA::is_nil(aSO))
725     return new Engines::TMPFile(0);
726
727   // Map study entries to object names
728   Resource_DataMapOfAsciiStringAsciiString aMap;
729   Resource_DataMapOfAsciiStringAsciiString aMapNames;
730
731   SALOMEDS::ChildIterator_wrap Itr = aStudy->NewChildIterator(aSO);
732   for (Itr->InitEx(true); Itr->More(); Itr->Next()) {
733     SALOMEDS::SObject_wrap aValue = Itr->Value();
734     CORBA::String_var anID = aValue->GetID();
735     CORBA::String_var aName = aValue->GetName();
736     TCollection_AsciiString aGUIName ( (char*) aName.in() );
737     TCollection_AsciiString anEntry ( (char*) anID.in() );
738     if (aGUIName.Length() > 0) {
739       aMapNames.Bind( anEntry, aGUIName );
740       aMap.Bind( anEntry, aGUIName );
741     }
742   }
743
744   // Get trace of restored study
745   SALOMEDS::StudyBuilder_var aStudyBuilder = aStudy->NewBuilder();
746   SALOMEDS::GenericAttribute_wrap anAttr =
747     aStudyBuilder->FindOrCreateAttribute(aSO, "AttributePythonObject");
748
749   SALOMEDS::AttributePythonObject_var pyAttr =
750     SALOMEDS::AttributePythonObject::_narrow(anAttr);
751   CORBA::String_var oldValue = pyAttr->GetObject();
752   TCollection_AsciiString aSavedTrace (oldValue.in());
753
754   // Add trace of API methods calls and replace study entries by names
755   TCollection_AsciiString aScript;
756   aScript += DumpPython_impl(aStudy, aMap, aMapNames, isPublished, isMultiFile,
757                              myIsHistoricalPythonDump, isValidScript, aSavedTrace);
758
759   int aLen = aScript.Length();
760   unsigned char* aBuffer = new unsigned char[aLen+1];
761   strcpy((char*)aBuffer, aScript.ToCString());
762
763   CORBA::Octet* anOctetBuf =  (CORBA::Octet*)aBuffer;
764   Engines::TMPFile_var aStreamFile = new Engines::TMPFile(aLen+1, aLen+1, anOctetBuf, 1);
765
766   bool hasNotPublishedObjects = aScript.Location( SMESH::theNotPublishedObjectName, 1, aLen);
767   isValidScript = isValidScript && !hasNotPublishedObjects;
768
769   return aStreamFile._retn();
770 }
771
772 //=============================================================================
773 /*!
774  *  AddToPythonScript
775  */
776 //=============================================================================
777 void SMESH_Gen_i::AddToPythonScript (int theStudyID, const TCollection_AsciiString& theString)
778 {
779   if (myPythonScripts.find(theStudyID) == myPythonScripts.end()) {
780     myPythonScripts[theStudyID] = new TColStd_HSequenceOfAsciiString;
781   }
782   myPythonScripts[theStudyID]->Append(theString);
783 }
784
785 //=============================================================================
786 /*!
787  *  RemoveLastFromPythonScript
788  */
789 //=============================================================================
790 void SMESH_Gen_i::RemoveLastFromPythonScript (int theStudyID)
791 {
792   if (myPythonScripts.find(theStudyID) != myPythonScripts.end()) {
793     int aLen = myPythonScripts[theStudyID]->Length();
794     myPythonScripts[theStudyID]->Remove(aLen);
795   }
796 }
797
798 //=======================================================================
799 //function : SavePython
800 //purpose  :
801 //=======================================================================
802 void SMESH_Gen_i::SavePython (SALOMEDS::Study_ptr theStudy)
803 {
804   // Dump trace of API methods calls
805   TCollection_AsciiString aScript = GetNewPythonLines(theStudy->StudyId());
806
807   // Check contents of PythonObject attribute
808   CORBA::String_var compDataType = ComponentDataType();
809   SALOMEDS::SObject_wrap aSO = theStudy->FindComponent( compDataType.in() );
810   SALOMEDS::StudyBuilder_var aStudyBuilder = theStudy->NewBuilder();
811   SALOMEDS::GenericAttribute_wrap anAttr =
812     aStudyBuilder->FindOrCreateAttribute(aSO, "AttributePythonObject");
813
814   SALOMEDS::AttributePythonObject_var pyAttr =
815     SALOMEDS::AttributePythonObject::_narrow(anAttr);
816   CORBA::String_var oldValue = pyAttr->GetObject();
817   TCollection_AsciiString oldScript (oldValue.in());
818
819   if (oldScript.Length() > 0) {
820     oldScript += "\n";
821     oldScript += aScript;
822   } else {
823     oldScript = aScript;
824   }
825
826   // Store in PythonObject attribute
827   pyAttr->SetObject(oldScript.ToCString(), 1);
828
829   // Clean trace of API methods calls
830   CleanPythonTrace(theStudy->StudyId());
831 }
832
833
834 // impl
835
836
837 //=============================================================================
838 /*!
839  *  FindEntries: Returns a sequence of start/end positions of entries in the string
840  */
841 //=============================================================================
842 Handle(TColStd_HSequenceOfInteger) FindEntries (TCollection_AsciiString& theString)
843 {
844   Handle(TColStd_HSequenceOfInteger) aSeq = new TColStd_HSequenceOfInteger;
845   Standard_Integer aLen = theString.Length();
846   Standard_Boolean isFound = Standard_False;
847
848   char* arr = (char*) theString.ToCString();
849   Standard_Integer i = 0, j;
850
851   while(i < aLen) {
852     int c = (int)arr[i];
853     j = i+1;
854     if ( isdigit( c )) { //Is digit?
855
856       isFound = Standard_False;
857       while((j < aLen) && ( isdigit(c) || c == ':' )) { //Check if it is an entry
858         c = (int)arr[j++];
859         if(c == ':') isFound = Standard_True;
860       }
861
862       if (isFound) {
863         int prev = (i < 1) ? 0 : (int)arr[i - 1];
864         // to distinguish from a sketcher command:
865         // last char should be a digit, not ":",
866         // previous char should not be '"'.
867         if (arr[j-2] != ':' && prev != '"') {
868           aSeq->Append(i+1); // +1 because AsciiString starts from 1
869           aSeq->Append(j-1);
870         }
871       }
872     }
873
874     i = j;
875   }
876
877   return aSeq;
878 }
879
880 namespace {
881
882   //================================================================================
883   /*!
884    * \brief Make a string be a valid python name
885     * \param aName - a string to fix
886     * \retval bool - true if aName was not modified
887    */
888   //================================================================================
889
890   bool fixPythonName(TCollection_AsciiString & aName)
891   {
892     bool isValidName = true;
893     int nbUnderscore = 0;
894     int p;
895     // replace not allowed chars by underscore
896     const char* name = aName.ToCString();
897     for ( p = 0; name[p]; ++p ) {
898       if ( !isalnum( name[p] ) && name[p] != '_' )
899       {
900         if ( p == 0 || p+1 == aName.Length() || name[p-1] == '_')
901         {
902           aName.Remove( p+1, 1 ); // remove __ and _ from the start and the end
903           --p;
904           name = aName.ToCString();
905         }
906         else
907         {
908           aName.SetValue( p+1, '_');
909           nbUnderscore++;
910         }
911         isValidName = false;
912       }
913     }
914     // aName must not start with a digit
915     if ( aName.IsIntegerValue() ) {
916       aName.Insert( 1, 'a' );
917       isValidName = false;
918     }
919     // shorten names like CartesianParameters3D_400_400_400_1000000_1
920     const int nbAllowedUnderscore = 3; /* changed from 2 to 3 by an user request
921                                           posted to SALOME Forum */
922     if ( aName.Length() > 20 && nbUnderscore > nbAllowedUnderscore )
923     {
924       p = aName.Location( "_", 20, aName.Length());
925       if ( p > 1 )
926         aName.Trunc( p-1 );
927     }
928     return isValidName;
929   }
930
931   //================================================================================
932   /*!
933    * \brief Return Python module names of available plug-ins.
934    */
935   //================================================================================
936
937   std::vector<std::string> getPluginNames()
938   {
939     std::vector<std::string> pluginNames;
940     std::vector< std::string > xmlPaths = SMESH_Gen::GetPluginXMLPaths();
941     LDOMParser xmlParser;
942     for ( size_t i = 0; i < xmlPaths.size(); ++i )
943     {
944       bool error = xmlParser.parse( xmlPaths[i].c_str() );
945       if ( error )
946       {
947         TCollection_AsciiString data;
948         INFOS( xmlParser.GetError(data) );
949         continue;
950       }
951       // <meshers-group name="Standard Meshers"
952       //                resources="StdMeshers"
953       //                idl-module="StdMeshers"
954       //                server-lib="StdMeshersEngine"
955       //                gui-lib="StdMeshersGUI">
956       LDOM_Document xmlDoc   = xmlParser.getDocument();
957       LDOM_NodeList nodeList = xmlDoc.getElementsByTagName( "meshers-group" );
958       for ( int i = 0; i < nodeList.getLength(); ++i )
959       {
960         LDOM_Node       node = nodeList.item( i );
961         LDOM_Element&   elem = (LDOM_Element&) node;
962         LDOMString idlModule = elem.getAttribute( "idl-module" );
963         if ( strlen( idlModule.GetString() ) > 0 )
964           pluginNames.push_back( idlModule.GetString() );
965       }
966     }
967     return pluginNames;
968   }
969 }
970
971 //================================================================================
972 /*!
973  * \brief Createa a Dump Python script
974  *  \param [in] theStudy - the study to dump
975  *  \param [in,out] theObjectNames - map of an entry to a study and python name
976  *  \param [in] theNames -  - map of an entry to a study name
977  *  \param [in] isPublished - \c true if dump of object publication in study is needed
978  *  \param [in] isMultiFile - \c true if dump of each module goes to a separate file
979  *  \param [in] isHistoricalDump - \c true if removed object should be dumped
980  *  \param [out] aValidScript - returns \c true if the returned script seems valid
981  *  \param [in,out] theSavedTrace - the dump stored in the study. It's cleared to
982  *         decrease memory usage.
983  *  \return TCollection_AsciiString - the result dump script.
984  */
985 //================================================================================
986
987 TCollection_AsciiString SMESH_Gen_i::DumpPython_impl
988                         (SALOMEDS::Study_ptr                       theStudy,
989                          Resource_DataMapOfAsciiStringAsciiString& theObjectNames,
990                          Resource_DataMapOfAsciiStringAsciiString& theNames,
991                          bool                                      isPublished,
992                          bool                                      isMultiFile,
993                          bool                                      isHistoricalDump,
994                          bool&                                     aValidScript,
995                          TCollection_AsciiString&                  theSavedTrace)
996 {
997   SMESH_TRY;
998   const int aStudyID = theStudy->StudyId();
999
1000   const TCollection_AsciiString aSmeshpy ( SMESH_2smeshpy::SmeshpyName() );
1001   const TCollection_AsciiString aSMESHGen( SMESH_2smeshpy::GenName() );
1002   const TCollection_AsciiString anOldGen ( SMESH::TPythonDump::SMESHGenName() );
1003   const TCollection_AsciiString helper; // to comfortably append C strings to TCollection_AsciiString
1004   const TCollection_AsciiString tab( isMultiFile ? "\t" : "" ), nt = helper + "\n" + tab;
1005
1006   std::list< TCollection_AsciiString > lines; // lines of a script
1007   std::list< TCollection_AsciiString >::iterator linesIt;
1008   
1009   if ( isPublished )
1010     lines.push_back(  aSMESHGen + " = smeshBuilder.New(theStudy)" );
1011    else
1012     lines.push_back(  aSMESHGen + " = smeshBuilder.New(None)" );
1013   lines.push_back( helper + "aFilterManager = " + aSMESHGen + ".CreateFilterManager()" );
1014   lines.push_back( helper + "aMeasurements = "  + aSMESHGen + ".CreateMeasurements()" );
1015
1016   // Treat dump trace of restored study
1017   if (theSavedTrace.Length() > 0)
1018   {
1019     linesIt = --lines.end();
1020     // Split theSavedTrace into lines
1021     int from = 1, end = theSavedTrace.Length(), to;
1022     while ( from < end && ( to = theSavedTrace.Location( "\n", from, end )))
1023     {
1024       if ( theSavedTrace.ToCString()[from-1] == '\t' )
1025         ++from;
1026       if ( to != from )
1027         lines.push_back( theSavedTrace.SubString( from, to - 1 ));
1028       from = to + 1;
1029     }
1030     // For the convertion of IDL API calls -> smeshBuilder.py API, "smesh" standing for SMESH_Gen
1031     // was replaces with "smeshgen" (==TPythonDump::SMESHGenName()).
1032     // Change "smesh" -> "smeshgen" in the trace saved before passage to smeshBuilder.py API
1033     bool isNewVersion =
1034       theSavedTrace.Location( anOldGen + ".", 1, theSavedTrace.Length() );
1035     theSavedTrace.Clear();
1036     if ( !isNewVersion )
1037     {
1038       const TCollection_AsciiString aSmeshCall ( "smesh." ), gen( "gen" );
1039       int beg, end, from;
1040       for ( ++linesIt; linesIt != lines.end(); ++linesIt )
1041       {
1042         TCollection_AsciiString& aSavedLine = *linesIt;
1043         end = aSavedLine.Length(), from = 1;
1044         while ( from < end && ( beg = aSavedLine.Location( aSmeshCall, from, end )))
1045         {
1046           char charBefore = ( beg == 1 ) ? ' ' : aSavedLine.Value( beg - 1 );
1047           if ( isspace( charBefore ) || charBefore == '=' ) { // "smesh." is not a part of a long word
1048             aSavedLine.Insert( beg + aSmeshCall.Length() - 1, gen );// "smesh" -> "smeshgen"
1049             end += gen.Length();
1050           }
1051           from = beg + aSmeshCall.Length();
1052         }
1053       }
1054     }
1055   }
1056
1057   // Add new dump trace of API methods calls to script lines
1058   if (myPythonScripts.find( aStudyID ) != myPythonScripts.end())
1059   {
1060     Handle(TColStd_HSequenceOfAsciiString) aPythonScript = myPythonScripts[ aStudyID ];
1061     Standard_Integer istr, aLen = aPythonScript->Length();
1062     for (istr = 1; istr <= aLen; istr++)
1063       lines.push_back( aPythonScript->Value( istr ));
1064   }
1065
1066   // Convert IDL API calls into smeshBuilder.py API.
1067   // Some objects are wrapped with python classes and
1068   // Resource_DataMapOfAsciiStringAsciiString holds methods returning wrapped objects
1069   Resource_DataMapOfAsciiStringAsciiString anEntry2AccessorMethod;
1070   std::set< TCollection_AsciiString >      aRemovedObjIDs;
1071   if ( !getenv("NO_2smeshpy_conversion"))
1072     SMESH_2smeshpy::ConvertScript( lines, anEntry2AccessorMethod,
1073                                    theObjectNames, aRemovedObjIDs,
1074                                    theStudy, isHistoricalDump );
1075
1076   bool importGeom = false;
1077   GEOM::GEOM_Gen_ptr geom = GetGeomEngine();
1078   {
1079     // Add names of GEOM objects to theObjectNames to exclude same names of SMESH objects
1080     GEOM::string_array_var aGeomNames = geom->GetAllDumpNames();
1081     int ign = 0, nbgn = aGeomNames->length();
1082     for (; ign < nbgn; ign++) {
1083       TCollection_AsciiString aName = aGeomNames[ign].in();
1084       theObjectNames.Bind(aName, "1");
1085     }
1086   }
1087
1088   TCollection_AsciiString anUpdatedScript;
1089
1090   Resource_DataMapOfAsciiStringAsciiString mapRemoved;
1091   Resource_DataMapOfAsciiStringAsciiString mapEntries; // names and entries present in anUpdatedScript
1092   Standard_Integer objectCounter = 0;
1093   TCollection_AsciiString anEntry, aName, aGUIName, aBaseName("smeshObj_");
1094
1095   // Treat every script line and add it to anUpdatedScript
1096   for ( linesIt = lines.begin(); linesIt != lines.end(); ++linesIt )
1097   {
1098     TCollection_AsciiString& aLine = *linesIt;
1099     anUpdatedScript += tab;
1100     {
1101       //Replace characters used instead of quote marks to quote notebook variables
1102       int pos = 1;
1103       while (( pos = aLine.Location( 1, SMESH::TVar::Quote(), pos, aLine.Length() )))
1104         aLine.SetValue( pos, '"' );
1105     }
1106     // Find entries to be replaced by names
1107     Handle(TColStd_HSequenceOfInteger) aSeq = FindEntries(aLine);
1108     const Standard_Integer aSeqLen = aSeq->Length();
1109     Standard_Integer aStart = 1;
1110     for (Standard_Integer i = 1; i <= aSeqLen; i += 2)
1111     {
1112       if ( aStart < aSeq->Value(i) )
1113         anUpdatedScript += aLine.SubString( aStart, aSeq->Value(i) - 1 ); // line part before i-th entry
1114       anEntry = aLine.SubString( aSeq->Value(i), aSeq->Value(i + 1) );
1115       // is a GEOM object?
1116       CORBA::String_var geomName = geom->GetDumpName( anEntry.ToCString() );
1117       if ( !geomName.in() || !geomName.in()[0] ) {
1118         // is a SMESH object
1119         if ( theObjectNames.IsBound( anEntry )) {
1120           // The Object is in Study
1121           aName = theObjectNames.Find( anEntry );
1122           // check validity of aName
1123           bool isValidName = fixPythonName( aName );
1124           if (theObjectNames.IsBound(aName) && anEntry != theObjectNames(aName)) {
1125             // diff objects have same name - make a new name by appending a digit
1126             TCollection_AsciiString aName2;
1127             Standard_Integer i = 0;
1128             do {
1129               aName2 = aName + "_" + ++i;
1130             } while (theObjectNames.IsBound(aName2) && anEntry != theObjectNames(aName2));
1131             aName = aName2;
1132             isValidName = false;
1133           }
1134           if ( !isValidName )
1135             theObjectNames(anEntry) = aName;
1136
1137           if ( aLine.Value(1) != '#' )
1138             mapEntries.Bind(anEntry, aName);
1139         }
1140         else
1141         {
1142           // Removed Object
1143           do {
1144             aName = aBaseName + (++objectCounter);
1145           } while (theObjectNames.IsBound(aName));
1146
1147           if ( !aRemovedObjIDs.count( anEntry ) && aLine.Value(1) != '#')
1148             mapRemoved.Bind(anEntry, aName);
1149
1150           theObjectNames.Bind(anEntry, aName);
1151         }
1152         theObjectNames.Bind(aName, anEntry); // to detect same name of diff objects
1153       }
1154       else
1155       {
1156         aName = geomName.in();
1157         importGeom = true;
1158       }
1159       anUpdatedScript += aName;
1160       aStart = aSeq->Value(i + 1) + 1;
1161
1162     } // loop on entries within aLine
1163
1164     if ( aSeqLen == 0 )
1165       anUpdatedScript += aLine;
1166     else if ( aSeq->Value( aSeqLen ) < aLine.Length() )
1167       anUpdatedScript += aLine.SubString( aSeq->Value(aSeqLen) + 1, aLine.Length() );
1168
1169     anUpdatedScript += '\n';
1170   }
1171
1172   // Make an initial part of aSript
1173
1174   TCollection_AsciiString initPart = "import ";
1175   if ( isMultiFile )
1176     initPart += "salome, ";
1177   initPart += " SMESH, SALOMEDS\n";
1178   initPart += "from salome.smesh import smeshBuilder\n";
1179   if ( importGeom && isMultiFile )
1180   {
1181     initPart += ("\n## import GEOM dump file ## \n"
1182                  "import string, os, sys, re, inspect\n"
1183                  "thisFile   = inspect.getfile( inspect.currentframe() )\n"
1184                  "thisModule = os.path.splitext( os.path.basename( thisFile ))[0]\n"
1185                  "sys.path.insert( 0, os.path.dirname( thisFile ))\n"
1186                  "exec(\"from \"+re.sub(\"SMESH$\",\"GEOM\",thisModule)+\" import *\")\n\n");
1187   }
1188   // import python files corresponding to plugins if they are used in anUpdatedScript
1189   {
1190     TCollection_AsciiString importStr;
1191     std::vector<std::string> pluginNames = getPluginNames();
1192     for ( size_t i = 0; i < pluginNames.size(); ++i )
1193     {
1194       // Convert access to plugin members:
1195       // e.g. StdMeshers.QUAD_REDUCED -> StdMeshersBuilder.QUAD_REDUCED
1196       TCollection_AsciiString pluginAccess = (pluginNames[i] + ".").c_str() ;
1197       int iFrom = 1, iPos;
1198       while (( iPos = anUpdatedScript.Location( pluginAccess, iFrom, anUpdatedScript.Length() )))
1199       {
1200         anUpdatedScript.Insert( iPos + pluginNames[i].size(), "Builder" );
1201         iFrom = iPos + pluginNames[i].size() + 8;
1202       }
1203       // if any plugin member is used, import the plugin
1204       if ( iFrom > 1 )
1205         importStr += ( helper + "\n" "from salome." + pluginNames[i].c_str() +
1206                        " import " + pluginNames[i].c_str() +"Builder" );
1207     }
1208     if ( !importStr.IsEmpty() )
1209       initPart += importStr + "\n";
1210   }
1211
1212   if ( isMultiFile )
1213     initPart += "def RebuildData(theStudy):";
1214   initPart += "\n";
1215
1216   anUpdatedScript.Prepend( initPart );
1217
1218   // Make a final part of aScript
1219
1220   // Dump object removal
1221   TCollection_AsciiString removeObjPart;
1222   if ( !mapRemoved.IsEmpty() ) {
1223     removeObjPart += nt + "## some objects were removed";
1224     removeObjPart += nt + "aStudyBuilder = theStudy.NewBuilder()";
1225     Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString mapRemovedIt;
1226     for ( mapRemovedIt.Initialize( mapRemoved ); mapRemovedIt.More(); mapRemovedIt.Next() ) {
1227       aName   = mapRemovedIt.Value(); // python name
1228       anEntry = mapRemovedIt.Key();
1229       removeObjPart += nt + "SO = theStudy.FindObjectIOR(theStudy.ConvertObjectToIOR(";
1230       removeObjPart += aName;
1231       // for object wrapped by class of smeshBuilder.py
1232       if ( anEntry2AccessorMethod.IsBound( anEntry ) )
1233         removeObjPart += helper + "." + anEntry2AccessorMethod( anEntry );
1234       removeObjPart += helper + "))" + nt + "if SO: aStudyBuilder.RemoveObjectWithChildren(SO)";
1235     }
1236   }
1237
1238   // Set object names
1239   TCollection_AsciiString setNamePart;
1240   Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString mapEntriesIt;
1241   for ( mapEntriesIt.Initialize( mapEntries ); mapEntriesIt.More(); mapEntriesIt.Next() )
1242   {
1243     anEntry = mapEntriesIt.Key();
1244     aName   = mapEntriesIt.Value(); // python name
1245     if ( theNames.IsBound( anEntry ))
1246     {
1247       aGUIName = theNames.Find(anEntry);
1248       aGUIName.RemoveAll('\''); // remove a quote from a name (issue 22360)
1249       setNamePart += nt + aSMESHGen + ".SetName(" + aName;
1250       if ( anEntry2AccessorMethod.IsBound( anEntry ) )
1251         setNamePart += helper + "." + anEntry2AccessorMethod( anEntry );
1252       setNamePart += helper + ", '" + aGUIName + "')";
1253     }
1254   }
1255   if ( !setNamePart.IsEmpty() )
1256   {
1257     setNamePart.Insert( 1, nt + "## Set names of Mesh objects" );
1258   }
1259
1260   // Store visual properties of displayed objects
1261
1262   TCollection_AsciiString visualPropertiesPart;
1263   if (isPublished)
1264   {
1265     //Output the script that sets up the visual parameters.
1266     CORBA::String_var compDataType = ComponentDataType();
1267     CORBA::String_var script = theStudy->GetDefaultScript( compDataType.in(), tab.ToCString() );
1268     if ( script.in() && script.in()[0] ) {
1269       visualPropertiesPart += nt + "### Store presentation parameters of displayed objects\n";
1270       visualPropertiesPart += script.in();
1271     }
1272   }
1273
1274   anUpdatedScript += removeObjPart + '\n' + setNamePart + '\n' + visualPropertiesPart;
1275
1276   if ( isMultiFile )
1277   {
1278     anUpdatedScript +=
1279       "\n\tpass"
1280       "\n"
1281       "\nif __name__ == '__main__':"
1282       "\n\tSMESH_RebuildData = RebuildData"
1283       "\n\texec('import '+re.sub('SMESH$','GEOM',thisModule)+' as GEOM_dump')"
1284       "\n\tGEOM_dump.RebuildData( salome.myStudy )"
1285       "\n\texec('from '+re.sub('SMESH$','GEOM',thisModule)+' import * ')"
1286       "\n\tSMESH_RebuildData( salome.myStudy )";
1287   }
1288   anUpdatedScript += "\n";
1289
1290   // no need now as we use 'tab' and 'nt' variables depending on isMultiFile
1291   // if( !isMultiFile ) // remove unnecessary tabulation
1292   //   RemoveTabulation( anUpdatedScript );
1293
1294   // -----------------------------------------------------------------
1295   // put string literals describing patterns into separate functions
1296   // -----------------------------------------------------------------
1297
1298   TCollection_AsciiString aLongString, aFunctionType;
1299   int where = 1;
1300   std::set< std::string > functionNameSet;
1301   while ( SMESH::TPythonDump::CutoutLongString( anUpdatedScript, where, aLongString, aFunctionType ))
1302   {
1303     // make a python string literal
1304     aLongString.Prepend(":\n\treturn '''\n");
1305     aLongString += "\n\t'''\n\tpass\n";
1306
1307     TCollection_AsciiString functionName;
1308
1309     // check if the function returning this literal is already defined
1310     int posAlready = anUpdatedScript.Location( aLongString, where, anUpdatedScript.Length() );
1311     if ( posAlready ) // already defined
1312     {
1313       // find the function name
1314       int functBeg = posAlready;
1315       char* script = (char*) anUpdatedScript.ToCString() + posAlready - 1; // look at ":" after "def fuction()"
1316       while ( *script != ' ' ) {
1317         script--;
1318         functBeg--;
1319       }
1320       functBeg++; // do not take ' '
1321       posAlready--; // do not take ':'
1322       functionName = anUpdatedScript.SubString( functBeg, posAlready );
1323     }
1324     else // not defined yet
1325     {
1326       // find a unique function name
1327       fixPythonName( aFunctionType );
1328       Standard_Integer nb = 0;
1329       do functionName = aFunctionType + "_" + ( nb++ ) + "()";
1330       while ( !functionNameSet.insert( functionName.ToCString() ).second );
1331
1332       // define function
1333       TCollection_AsciiString funDef = helper + "def " + functionName + aLongString;
1334       if ( isMultiFile )
1335       {
1336         anUpdatedScript += helper + "\n\n" + funDef;
1337       }
1338       else
1339       {
1340         funDef += "\n\n";
1341         anUpdatedScript.Insert( 1, funDef);
1342         where += funDef.Length();
1343       }
1344     }
1345     anUpdatedScript.InsertBefore( where, functionName ); // call function
1346   }
1347
1348   aValidScript = true;
1349
1350   return anUpdatedScript;
1351
1352   SMESH_CATCH( SMESH::printException );
1353
1354   aValidScript = false;
1355   return "";
1356 }
1357
1358 //=============================================================================
1359 /*!
1360  *  GetNewPythonLines
1361  */
1362 //=============================================================================
1363 TCollection_AsciiString SMESH_Gen_i::GetNewPythonLines (int theStudyID)
1364 {
1365   TCollection_AsciiString aScript;
1366
1367   // Dump trace of API methods calls
1368   if (myPythonScripts.find(theStudyID) != myPythonScripts.end()) {
1369     Handle(TColStd_HSequenceOfAsciiString) aPythonScript = myPythonScripts[theStudyID];
1370     Standard_Integer istr, aLen = aPythonScript->Length();
1371     for (istr = 1; istr <= aLen; istr++) {
1372       aScript += "\n";
1373       aScript += aPythonScript->Value(istr);
1374     }
1375     aScript += "\n";
1376   }
1377
1378   return aScript;
1379 }
1380
1381 //=============================================================================
1382 /*!
1383  *  CleanPythonTrace
1384  */
1385 //=============================================================================
1386 void SMESH_Gen_i::CleanPythonTrace (int theStudyID)
1387 {
1388   TCollection_AsciiString aScript;
1389
1390   // Clean trace of API methods calls
1391   if (myPythonScripts.find(theStudyID) != myPythonScripts.end()) {
1392     myPythonScripts[theStudyID]->Clear();
1393   }
1394 }