Salome HOME
Mantis issue 0021108: EDF 1668 SMESH: ExtrusionAlongPathX on a Mesh group.
[modules/smesh.git] / src / SMESH_I / SMESH_DumpPython.cxx
1 //  Copyright (C) 2007-2010  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 //  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 #include "SMESH_Gen_i.hxx"
29 #include "SMESH_Filter_i.hxx"
30 #include "SMESH_MeshEditor_i.hxx"
31 #include "SMESH_2smeshpy.hxx"
32
33 #include <TColStd_HSequenceOfInteger.hxx>
34 #include <TCollection_AsciiString.hxx>
35 #include <SMESH_Comment.hxx>
36
37
38 #ifdef _DEBUG_
39 static int MYDEBUG = 0;
40 #else
41 static int MYDEBUG = 0;
42 #endif
43
44 static TCollection_AsciiString NotPublishedObjectName()
45 {
46   return "__NOT__Published__Object__";
47 }
48
49 namespace SMESH
50 {
51
52   size_t TPythonDump::myCounter = 0;
53
54   TPythonDump::
55   TPythonDump()
56   {
57     ++myCounter;
58   }
59   TPythonDump::
60   ~TPythonDump()
61   {
62     if(--myCounter == 0){
63       SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
64       std::string aString = myStream.str();
65       TCollection_AsciiString aCollection(Standard_CString(aString.c_str()));
66       SALOMEDS::Study_ptr aStudy = aSMESHGen->GetCurrentStudy();
67       if(!aStudy->_is_nil() && !aCollection.IsEmpty()){
68         aSMESHGen->AddToPythonScript(aStudy->StudyId(),aCollection);
69         if(MYDEBUG) MESSAGE(aString);
70       }
71     }
72   }
73
74   TPythonDump&
75   TPythonDump::
76   operator<<(long int theArg){
77     myStream<<theArg;
78     return *this;
79   }
80
81   TPythonDump&
82   TPythonDump::
83   operator<<(int theArg){
84     myStream<<theArg;
85     return *this;
86   }
87
88   TPythonDump&
89   TPythonDump::
90   operator<<(double theArg){
91     myStream<<theArg;
92     return *this;
93   }
94
95   TPythonDump&
96   TPythonDump::
97   operator<<(float theArg){
98     myStream<<theArg;
99     return *this;
100   }
101
102   TPythonDump&
103   TPythonDump::
104   operator<<(const void* theArg){
105     myStream<<theArg;
106     return *this;
107   }
108
109   TPythonDump&
110   TPythonDump::
111   operator<<(const char* theArg){
112     if ( theArg )
113       myStream<<theArg;
114     return *this;
115   }
116
117   TPythonDump&
118   TPythonDump::
119   operator<<(const SMESH::ElementType& theArg)
120   {
121     myStream<<"SMESH.";
122     switch(theArg){
123     case ALL:   myStream<<"ALL";break;
124     case NODE:  myStream<<"NODE";break;
125     case EDGE:  myStream<<"EDGE";break;
126     case FACE:  myStream<<"FACE";break;
127     case VOLUME:myStream<<"VOLUME";break;
128     }
129     return *this;
130   }
131
132   TPythonDump&
133   TPythonDump::
134   operator<<(const SMESH::GeometryType& theArg)
135   {
136     myStream<<"SMESH.";
137     switch(theArg){
138     case Geom_POINT:      myStream<<"Geom_POINT";      break;
139     case Geom_EDGE:       myStream<<"Geom_EDGE";       break;
140     case Geom_TRIANGLE:   myStream<<"Geom_TRIANGLE";   break;
141     case Geom_QUADRANGLE: myStream<<"Geom_QUADRANGLE"; break;
142     case Geom_POLYGON:    myStream<<"Geom_POLYGON";    break;
143     case Geom_TETRA:      myStream<<"Geom_TETRA";      break;
144     case Geom_PYRAMID:    myStream<<"Geom_PYRAMID";    break;
145     case Geom_HEXA:       myStream<<"Geom_HEXA";       break;
146     case Geom_PENTA:      myStream<<"Geom_PENTA";      break;
147     case Geom_POLYHEDRA:  myStream<<"Geom_POLYHEDRA";  break;
148    }
149     return *this;
150   }
151
152   template<class TArray>
153   void DumpArray(const TArray& theArray, TPythonDump & theStream)
154   {
155     theStream << "[ ";
156     for (int i = 1; i <= theArray.length(); i++) {
157       theStream << theArray[i-1];
158       if ( i < theArray.length() )
159         theStream << ", ";
160     }
161     theStream << " ]";
162   }
163
164   TPythonDump&
165   TPythonDump::operator<<(const SMESH::long_array& theArg)
166   {
167     DumpArray( theArg, *this );
168     return *this;
169   }
170
171   TPythonDump&
172   TPythonDump::operator<<(const SMESH::double_array& theArg)
173   {
174     DumpArray( theArg, *this );
175     return *this;
176   }
177
178   TPythonDump&
179   TPythonDump::
180   operator<<(SALOMEDS::SObject_ptr aSObject)
181   {
182     if ( !aSObject->_is_nil() )
183       myStream << aSObject->GetID();
184     else
185       myStream << NotPublishedObjectName();
186     return *this;
187   }
188
189   TPythonDump&
190   TPythonDump::
191   operator<<(CORBA::Object_ptr theArg)
192   {
193     SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
194     SALOMEDS::Study_var aStudy = aSMESHGen->GetCurrentStudy();
195     SALOMEDS::SObject_var aSObject = SMESH_Gen_i::ObjectToSObject(aStudy,theArg);
196     if(!aSObject->_is_nil()) {
197       CORBA::String_var id = aSObject->GetID();
198       myStream << id;
199     } else if ( !CORBA::is_nil(theArg)) {
200       if ( aSMESHGen->CanPublishInStudy( theArg )) // not published SMESH object
201         myStream << "smeshObj_" << size_t(theArg);
202       else
203         myStream << NotPublishedObjectName();
204     }
205     else
206       myStream << "None";
207     return *this;
208   }
209
210   TPythonDump&
211   TPythonDump::
212   operator<<(SMESH::SMESH_Hypothesis_ptr theArg)
213   {
214     SALOMEDS::Study_var aStudy = SMESH_Gen_i::GetSMESHGen()->GetCurrentStudy();
215     SALOMEDS::SObject_var aSObject = SMESH_Gen_i::ObjectToSObject(aStudy,theArg);
216     if(aSObject->_is_nil() && !CORBA::is_nil(theArg))
217       myStream << "hyp_" << theArg->GetId();
218     else
219       *this << CORBA::Object_ptr( theArg );
220     return *this;
221   }
222
223   TPythonDump&
224   TPythonDump::
225   operator<<(SMESH::SMESH_IDSource_ptr theArg)
226   {
227     SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
228     SALOMEDS::Study_var aStudy = aSMESHGen->GetCurrentStudy();
229     SALOMEDS::SObject_var aSObject = SMESH_Gen_i::ObjectToSObject(aStudy,theArg);
230     if(!aSObject->_is_nil() || CORBA::is_nil( theArg ))
231       return *this << aSObject;
232     SMESH::long_array_var anElementsId = theArg->GetIDs();
233     SMESH::SMESH_Mesh_var mesh = theArg->GetMesh();
234     SMESH::array_of_ElementType_var types =  theArg->GetTypes();
235     SMESH::ElementType type = types->length() ? types[0] : SMESH::ALL;
236     return *this << mesh << ".GetIDSource(" << anElementsId << ", " << type << ")";
237   }
238
239   TPythonDump&
240   TPythonDump::
241   operator<<(SMESH::FilterLibrary_i* theArg)
242   {
243     myStream<<"aFilterLibrary"<<theArg;
244     return *this;
245   }
246
247   TPythonDump&
248   TPythonDump::
249   operator<<(SMESH::FilterManager_i* theArg)
250   {
251     myStream<<"aFilterManager";
252     return *this;
253   }
254
255   TPythonDump&
256   TPythonDump::
257   operator<<(SMESH::Filter_i* theArg)
258   {
259     myStream<<"aFilter"<<theArg;
260     return *this;
261   }
262
263   TPythonDump&
264   TPythonDump::
265   operator<<(SMESH::Functor_i* theArg)
266   {
267     if ( theArg ) {
268       FunctorType aFunctorType = theArg->GetFunctorType();
269       switch(aFunctorType){
270       case FT_AspectRatio:           myStream<< "anAspectRatio";          break;
271       case FT_AspectRatio3D:         myStream<< "anAspectRatio3D";        break;
272       case FT_Warping:               myStream<< "aWarping";               break;
273       case FT_MinimumAngle:          myStream<< "aMinimumAngle";          break;
274       case FT_Taper:                 myStream<< "aTaper";                 break;
275       case FT_Skew:                  myStream<< "aSkew";                  break;
276       case FT_Area:                  myStream<< "aArea";                  break;
277       case FT_Volume3D:              myStream<< "aVolume3D";              break;
278       case FT_MaxElementLength2D:    myStream<< "aMaxElementLength2D";    break;
279       case FT_MaxElementLength3D:    myStream<< "aMaxElementLength3D";    break;
280       case FT_FreeBorders:           myStream<< "aFreeBorders";           break;
281       case FT_FreeEdges:             myStream<< "aFreeEdges";             break;
282       case FT_FreeNodes:             myStream<< "aFreeNodes";             break;
283       case FT_FreeFaces:             myStream<< "aFreeFaces";             break;
284       case FT_MultiConnection:       myStream<< "aMultiConnection";       break;
285       case FT_MultiConnection2D:     myStream<< "aMultiConnection2D";     break;
286       case FT_Length:                myStream<< "aLength";                break;
287       case FT_Length2D:              myStream<< "aLength2D";              break;
288       case FT_BelongToGeom:          myStream<< "aBelongToGeom";          break;
289       case FT_BelongToPlane:         myStream<< "aBelongToPlane";         break;
290       case FT_BelongToCylinder:      myStream<< "aBelongToCylinder";      break;
291       case FT_BelongToGenSurface:    myStream<< "aBelongToGenSurface";    break;
292       case FT_LyingOnGeom:           myStream<< "aLyingOnGeom";           break;
293       case FT_CoplanarFaces:         myStream<< "aCoplanarFaces";         break;
294       case FT_RangeOfIds:            myStream<< "aRangeOfIds";            break;
295       case FT_BadOrientedVolume:     myStream<< "aBadOrientedVolume";     break;
296       case FT_BareBorderVolume:      myStream<< "aBareBorderVolume";      break;
297       case FT_BareBorderFace:        myStream<< "aBareBorderFace";        break;
298       case FT_OverConstrainedVolume: myStream<< "aOverConstrainedVolume"; break;
299       case FT_OverConstrainedFace:   myStream<< "aOverConstrainedFace";   break;
300       case FT_LinearOrQuadratic:     myStream<< "aLinearOrQuadratic";     break;
301       case FT_GroupColor:            myStream<< "aGroupColor";            break;
302       case FT_ElemGeomType:          myStream<< "anElemGeomType";         break;
303       case FT_LessThan:              myStream<< "aLessThan";              break;
304       case FT_MoreThan:              myStream<< "aMoreThan";              break;
305       case FT_EqualTo:               myStream<< "anEqualTo";              break;
306       case FT_LogicalNOT:            myStream<< "aLogicalNOT";            break;
307       case FT_LogicalAND:            myStream<< "aLogicalAND";            break;
308       case FT_LogicalOR:             myStream<< "aLogicalOR";             break;
309       case FT_Undefined:
310       default:                       myStream<< "anUndefined";            break;
311       }
312       myStream<<theArg;
313     }
314     return *this;
315   }
316
317   TPythonDump&
318   TPythonDump::
319   operator<<(SMESH::Measurements_i* theArg)
320   {
321     myStream<<"aMeasurements";
322     return *this;
323   }
324
325
326   TPythonDump& TPythonDump:: operator<<(SMESH_Gen_i* theArg)
327   {
328     myStream << SMESHGenName(); return *this;
329   }
330
331   TPythonDump& TPythonDump::operator<<(SMESH_MeshEditor_i* theArg)
332   {
333     myStream << MeshEditorName() << "_" << ( theArg ? theArg->GetMeshId() : -1 ); return *this;
334   }
335
336   TPythonDump& TPythonDump::operator<<(const TCollection_AsciiString & theStr)
337   {
338     myStream << theStr; return *this;
339   }
340
341
342   TPythonDump& TPythonDump::operator<<(SMESH::MED_VERSION theVersion)
343   {
344     switch (theVersion) {
345     case SMESH::MED_V2_1: myStream << "SMESH.MED_V2_1"; break;
346     case SMESH::MED_V2_2: myStream << "SMESH.MED_V2_2"; break;
347     default: myStream << theVersion;
348     }
349     return *this;
350   }
351
352   TPythonDump& TPythonDump::operator<<(const SMESH::AxisStruct & theAxis)
353   {
354     myStream << "SMESH.AxisStruct( "
355              << theAxis.x  << ", "
356              << theAxis.y  << ", "
357              << theAxis.z  << ", "
358              << theAxis.vx << ", "
359              << theAxis.vy << ", "
360              << theAxis.vz << " )";
361     return *this;
362   }
363
364   TPythonDump& TPythonDump::operator<<(const SMESH::DirStruct & theDir)
365   {
366     const SMESH::PointStruct & P = theDir.PS;
367     myStream << "SMESH.DirStruct( SMESH.PointStruct ( "
368              << P.x  << ", "
369              << P.y  << ", "
370              << P.z  << " ))";
371     return *this;
372   }
373
374   TPythonDump& TPythonDump::operator<<(const SMESH::ListOfGroups& theList)
375   {
376     DumpArray( theList, *this );
377     return *this;
378   }
379   TPythonDump& TPythonDump::operator<<(const SMESH::ListOfGroups * theList)
380   {
381     DumpArray( *theList, *this );
382     return *this;
383   }
384   TPythonDump& TPythonDump::operator<<(const SMESH::ListOfIDSources& theList)
385   {
386     DumpArray( theList, *this );
387     return *this;
388   }
389
390   TCollection_AsciiString myLongStringStart( "TPythonDump::LongStringStart" );
391   TCollection_AsciiString myLongStringEnd  ( "TPythonDump::LongStringEnd" );
392
393   //================================================================================
394   /*!
395    * \brief Return marker of long string literal beginning
396    * \param type - a name of functionality producing the string literal
397    * \retval TCollection_AsciiString - the marker string to be written into
398    * a raw python script
399    */
400   //================================================================================
401
402   TCollection_AsciiString TPythonDump::LongStringStart(const char* type)
403   {
404     return
405       myLongStringStart +
406       (Standard_Integer) strlen(type) +
407       " " +
408       (char*) type;
409   }
410
411   //================================================================================
412   /*!
413      * \brief Return marker of long string literal end
414       * \retval TCollection_AsciiString - the marker string to be written into
415       * a raw python script
416    */
417   //================================================================================
418
419   TCollection_AsciiString TPythonDump::LongStringEnd()
420   {
421     return myLongStringEnd;
422   }
423
424   //================================================================================
425   /*!
426      * \brief Cut out a long string literal from a string
427       * \param theText - text possibly containing string literals
428       * \param theFrom - position in the text to search from
429       * \param theLongString - the retrieved literal
430       * \param theStringType - a name of functionality produced the literal
431       * \retval bool - true if a string literal found
432      *
433      * The literal is removed from theText; theFrom points position right after
434      * the removed literal
435    */
436   //================================================================================
437
438   bool  TPythonDump::CutoutLongString( TCollection_AsciiString & theText,
439                                        int                     & theFrom,
440                                        TCollection_AsciiString & theLongString,
441                                        TCollection_AsciiString & theStringType)
442   {
443     if ( theFrom < 1 || theFrom > theText.Length() )
444       return false;
445
446     // ...script \  beg marker    \ \ type \       literal              \  end marker  \ script...
447     //  "theText myLongStringStart7 Pattern!!! SALOME Mesh Pattern file myLongStringEndtextEnd"
448     //  012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
449     //  0         1         2         3         4         5         6         7         8
450
451     theFrom = theText.Location( myLongStringStart, theFrom, theText.Length() ); // = 09
452     if ( !theFrom )
453       return false;
454
455     // find where literal begins
456     int literalBeg = theFrom + myLongStringStart.Length(); // = 26
457     char* typeLenStr = (char*) theText.ToCString() + literalBeg - 1; // = "7 Pattern!!! SALO...."
458     int typeLen = atoi ( typeLenStr ); // = 7
459     while ( *typeLenStr != ' ' ) { // look for ' ' after typeLen
460       literalBeg++; // 26 -> 27
461       typeLenStr++;
462     }
463     literalBeg += typeLen + 1; // = 35
464     if ( literalBeg > theText.Length() )
465       return false;
466
467     // where literal ends (i.e. end marker begins)
468     int literalEnd = theText.Location( myLongStringEnd, literalBeg, theText.Length() ); // = 64
469     if ( !literalEnd )
470       literalEnd = theText.Length();
471
472     // literal
473     theLongString = theText.SubString( literalBeg, literalEnd - 1); // "!!! SALOME Mesh Pattern file "
474     // type
475     theStringType = theText.SubString( literalBeg - typeLen, literalBeg - 1 ); // "Pattern"
476     // cut off literal
477     literalEnd += myLongStringEnd.Length(); // = 79
478     TCollection_AsciiString textEnd = theText.SubString( literalEnd, theText.Length() ); // "textE..."
479     theText = theText.SubString( 1, theFrom - 1 ) + textEnd;
480
481     return true;
482   }
483 }
484
485 //=======================================================================
486 //function : DumpPython
487 //purpose  :
488 //=======================================================================
489 Engines::TMPFile* SMESH_Gen_i::DumpPython (CORBA::Object_ptr theStudy,
490                                            CORBA::Boolean isPublished,
491                                            CORBA::Boolean& isValidScript)
492 {
493   SALOMEDS::Study_var aStudy = SALOMEDS::Study::_narrow(theStudy);
494   if (CORBA::is_nil(aStudy))
495     return new Engines::TMPFile(0);
496
497   SALOMEDS::SObject_var aSO = aStudy->FindComponent(ComponentDataType());
498   if (CORBA::is_nil(aSO))
499     return new Engines::TMPFile(0);
500
501   // Map study entries to object names
502   Resource_DataMapOfAsciiStringAsciiString aMap;
503   Resource_DataMapOfAsciiStringAsciiString aMapNames;
504   //TCollection_AsciiString s ("qwertyuioplkjhgfdsazxcvbnmQWERTYUIOPLKJHGFDSAZXCVBNM0987654321_");
505
506   SALOMEDS::ChildIterator_var Itr = aStudy->NewChildIterator(aSO);
507   for (Itr->InitEx(true); Itr->More(); Itr->Next()) {
508     SALOMEDS::SObject_var aValue = Itr->Value();
509     CORBA::String_var anID = aValue->GetID();
510     CORBA::String_var aName = aValue->GetName();
511     TCollection_AsciiString aGUIName ( (char*) aName.in() );
512     TCollection_AsciiString anEnrty ( (char*) anID.in() );
513     if (aGUIName.Length() > 0) {
514       aMapNames.Bind( anEnrty, aGUIName );
515       aMap.Bind( anEnrty, aGUIName );
516     }
517   }
518
519   // Get trace of restored study
520   //SALOMEDS::SObject_var aSO = SMESH_Gen_i::ObjectToSObject(theStudy, _this());
521   SALOMEDS::StudyBuilder_var aStudyBuilder = aStudy->NewBuilder();
522   SALOMEDS::GenericAttribute_var anAttr =
523     aStudyBuilder->FindOrCreateAttribute(aSO, "AttributePythonObject");
524
525   char* oldValue = SALOMEDS::AttributePythonObject::_narrow(anAttr)->GetObject();
526   TCollection_AsciiString aSavedTrace (oldValue);
527
528   // Add trace of API methods calls and replace study entries by names
529   TCollection_AsciiString aScript;
530   aScript += DumpPython_impl(aStudy, aMap, aMapNames,
531                              isPublished, isValidScript, aSavedTrace);
532
533   int aLen = aScript.Length();
534   unsigned char* aBuffer = new unsigned char[aLen+1];
535   strcpy((char*)aBuffer, aScript.ToCString());
536
537   CORBA::Octet* anOctetBuf =  (CORBA::Octet*)aBuffer;
538   Engines::TMPFile_var aStreamFile = new Engines::TMPFile(aLen+1, aLen+1, anOctetBuf, 1);
539
540   bool hasNotPublishedObjects = aScript.Location( NotPublishedObjectName(), 1, aLen);
541   isValidScript = isValidScript && !hasNotPublishedObjects;
542
543   return aStreamFile._retn();
544 }
545
546 //=============================================================================
547 /*!
548  *  AddToPythonScript
549  */
550 //=============================================================================
551 void SMESH_Gen_i::AddToPythonScript (int theStudyID, const TCollection_AsciiString& theString)
552 {
553   if (myPythonScripts.find(theStudyID) == myPythonScripts.end()) {
554     myPythonScripts[theStudyID] = new TColStd_HSequenceOfAsciiString;
555   }
556   myPythonScripts[theStudyID]->Append(theString);
557 }
558
559 //=============================================================================
560 /*!
561  *  RemoveLastFromPythonScript
562  */
563 //=============================================================================
564 void SMESH_Gen_i::RemoveLastFromPythonScript (int theStudyID)
565 {
566   if (myPythonScripts.find(theStudyID) != myPythonScripts.end()) {
567     int aLen = myPythonScripts[theStudyID]->Length();
568     myPythonScripts[theStudyID]->Remove(aLen);
569   }
570 }
571
572 //=======================================================================
573 //function : SavePython
574 //purpose  :
575 //=======================================================================
576 void SMESH_Gen_i::SavePython (SALOMEDS::Study_ptr theStudy)
577 {
578   // Dump trace of API methods calls
579   TCollection_AsciiString aScript = GetNewPythonLines(theStudy->StudyId());
580
581   // Check contents of PythonObject attribute
582   SALOMEDS::SObject_var aSO = theStudy->FindComponent(ComponentDataType());
583   //SALOMEDS::SObject_var aSO = SMESH_Gen_i::ObjectToSObject(theStudy, _this());
584   SALOMEDS::StudyBuilder_var aStudyBuilder = theStudy->NewBuilder();
585   SALOMEDS::GenericAttribute_var anAttr =
586     aStudyBuilder->FindOrCreateAttribute(aSO, "AttributePythonObject");
587
588   char* oldValue = SALOMEDS::AttributePythonObject::_narrow(anAttr)->GetObject();
589   TCollection_AsciiString oldScript (oldValue);
590
591   if (oldScript.Length() > 0) {
592     oldScript += "\n";
593     oldScript += aScript;
594   } else {
595     oldScript = aScript;
596   }
597
598   // Store in PythonObject attribute
599   SALOMEDS::AttributePythonObject::_narrow(anAttr)->SetObject(oldScript.ToCString(), 1);
600
601   // Clean trace of API methods calls
602   CleanPythonTrace(theStudy->StudyId());
603 }
604
605
606 // impl
607
608
609 //=============================================================================
610 /*!
611  *  FindEntries: Returns a sequence of start/end positions of entries in the string
612  */
613 //=============================================================================
614 Handle(TColStd_HSequenceOfInteger) FindEntries (TCollection_AsciiString& theString)
615 {
616   Handle(TColStd_HSequenceOfInteger) aSeq = new TColStd_HSequenceOfInteger;
617   Standard_Integer aLen = theString.Length();
618   Standard_Boolean isFound = Standard_False;
619
620   char* arr = (char*) theString.ToCString();
621   Standard_Integer i = 0, j;
622
623   while(i < aLen) {
624     int c = (int)arr[i];
625     j = i+1;
626     if ( isdigit( c )) { //Is digit?
627
628       isFound = Standard_False;
629       while((j < aLen) && ( isdigit(c) || c == ':' )) { //Check if it is an entry
630         c = (int)arr[j++];
631         if(c == ':') isFound = Standard_True;
632       }
633
634       if (isFound) {
635         int prev = (i < 1) ? 0 : (int)arr[i - 1];
636         // to distinguish from a sketcher command:
637         // last char should be a digit, not ":",
638         // previous char should not be '"'.
639         if (arr[j-2] != ':' && prev != '"') {
640           aSeq->Append(i+1); // +1 because AsciiString starts from 1
641           aSeq->Append(j-1);
642         }
643       }
644     }
645
646     i = j;
647   }
648
649   return aSeq;
650 }
651
652 namespace {
653
654   //================================================================================
655   /*!
656    * \brief Make a string be a valid python name
657     * \param aName - a string to fix
658     * \retval bool - true if aName was not modified
659    */
660   //================================================================================
661
662   bool fixPythonName(TCollection_AsciiString & aName )
663   {
664     const TCollection_AsciiString allowedChars =
665       "qwertyuioplkjhgfdsazxcvbnmQWERTYUIOPLKJHGFDSAZXCVBNM0987654321_";
666     bool isValidName = true;
667     int p=1; // replace not allowed chars with underscore
668     while (p <= aName.Length() &&
669            (p = aName.FirstLocationNotInSet(allowedChars, p, aName.Length())))
670     {
671       if ( p == 1 || p == aName.Length() || aName.Value(p-1) == '_')
672         aName.Remove( p, 1 ); // remove double _ and from the start and the end
673       else
674         aName.SetValue(p, '_');
675       isValidName = false;
676     }
677     if ( aName.IsIntegerValue() ) { // aName must not start with a digit
678       aName.Insert( 1, 'a' );
679       isValidName = false;
680     }
681     return isValidName;
682   }
683 }
684
685 //=============================================================================
686 /*!
687  *  DumpPython
688  */
689 //=============================================================================
690 TCollection_AsciiString SMESH_Gen_i::DumpPython_impl
691                         (SALOMEDS::Study_ptr theStudy,
692                          Resource_DataMapOfAsciiStringAsciiString& theObjectNames,
693                          Resource_DataMapOfAsciiStringAsciiString& theNames,
694                          bool isPublished,
695                          bool& aValidScript,
696                          const TCollection_AsciiString& theSavedTrace)
697 {
698   int aStudyID = theStudy->StudyId();
699
700   TCollection_AsciiString helper; // to comfortably concatenate C strings
701   TCollection_AsciiString aSmeshpy( SMESH_2smeshpy::SmeshpyName() );
702   TCollection_AsciiString aSMESHGen( SMESH_2smeshpy::GenName() );
703   TCollection_AsciiString anOldGen( SMESH::TPythonDump::SMESHGenName() );
704
705   TCollection_AsciiString aScript;
706   aScript = "def RebuildData(theStudy):\n\t";
707   aScript += helper + "aFilterManager = " + aSMESHGen + ".CreateFilterManager()\n\t";
708   aScript += helper + "aMeasurements = " + aSMESHGen + ".CreateMeasurements()\n\t";
709   if ( isPublished )
710     aScript += aSMESHGen + ".SetCurrentStudy(theStudy)";
711   else
712     aScript += aSMESHGen + ".SetCurrentStudy(None)";
713
714   // import python files corresponding to plugins
715   set<string> moduleNameSet;
716   map<string, GenericHypothesisCreator_i*>::iterator hyp_creator = myHypCreatorMap.begin();
717   for ( ; hyp_creator != myHypCreatorMap.end(); ++hyp_creator ) {
718     string moduleName = hyp_creator->second->GetModuleName();
719     bool newModule = moduleNameSet.insert( moduleName ).second;
720     if ( newModule )
721       aScript += helper + "\n\t" + "import " + (char*) moduleName.c_str();
722   }
723
724   // Dump trace of restored study
725   if (theSavedTrace.Length() > 0) {
726     // For the convertion of IDL API calls -> smesh.py API, "smesh" standing for SMESH_Gen
727     // was replaces with "smeshgen" (==TPythonDump::SMESHGenName()).
728     // Change "smesh" -> "smeshgen" in the trace saved before passage to smesh.py API
729     bool isNewVersion =
730       theSavedTrace.Location( anOldGen + ".", 1, theSavedTrace.Length() );
731     if ( !isNewVersion ) {
732       TCollection_AsciiString aSavedTrace( theSavedTrace );
733       TCollection_AsciiString aSmeshCall ( "smesh." ), gen( "gen" );
734       int beg, end = aSavedTrace.Length(), from = 1;
735       while ( from < end && ( beg = aSavedTrace.Location( aSmeshCall, from, end ))) {
736         char charBefore = ( beg == 1 ) ? ' ' : aSavedTrace.Value( beg - 1 );
737         if ( isspace( charBefore ) || charBefore == '=' ) { // "smesh." is not a part of a long word
738           aSavedTrace.Insert( beg + aSmeshCall.Length() - 1, gen );// "smesh" -> "smeshgen"
739           end += gen.Length();
740         }
741         from = beg + aSmeshCall.Length();
742       }
743       aScript += helper + "\n" + aSavedTrace;
744     }
745     else
746       // append a saved trace to the script
747       aScript += helper + "\n" + theSavedTrace;
748   }
749
750   // Dump trace of API methods calls
751   TCollection_AsciiString aNewLines = GetNewPythonLines(aStudyID);
752   if (aNewLines.Length() > 0) {
753     aScript += helper + "\n" + aNewLines;
754   }
755
756   // Convert IDL API calls into smesh.py API.
757   // Some objects are wrapped with python classes and
758   // Resource_DataMapOfAsciiStringAsciiString holds methods returning wrapped objects
759   Resource_DataMapOfAsciiStringAsciiString anEntry2AccessorMethod;
760   aScript = SMESH_2smeshpy::ConvertScript( aScript, anEntry2AccessorMethod, theObjectNames );
761
762   // Find entries to be replaced by names
763   Handle(TColStd_HSequenceOfInteger) aSeq = FindEntries(aScript);
764   Standard_Integer aLen = aSeq->Length();
765
766   if (aLen == 0)
767     return aScript;
768
769   // Replace entries by the names
770   GEOM::GEOM_Gen_ptr geom = GetGeomEngine();
771   TColStd_SequenceOfAsciiString seqRemoved;
772   Resource_DataMapOfAsciiStringAsciiString mapRemoved;
773   Standard_Integer objectCounter = 0, aStart = 1, aScriptLength = aScript.Length();
774   TCollection_AsciiString anUpdatedScript, anEntry, aName, aBaseName("smeshObj_");
775
776   // Collect names of GEOM objects to exclude same names for SMESH objects
777   GEOM::string_array_var aGeomNames = geom->GetAllDumpNames();
778   int ign = 0, nbgn = aGeomNames->length();
779   for (; ign < nbgn; ign++) {
780     aName = aGeomNames[ign];
781     theObjectNames.Bind(aName, "1");
782   }
783
784   bool importGeom = false;
785   for (Standard_Integer i = 1; i <= aLen; i += 2) {
786     anUpdatedScript += aScript.SubString(aStart, aSeq->Value(i) - 1);
787     anEntry = aScript.SubString(aSeq->Value(i), aSeq->Value(i + 1));
788     // is a GEOM object?
789     aName = geom->GetDumpName( anEntry.ToCString() );
790     if (aName.IsEmpty()) {
791       // is a SMESH object
792       if (theObjectNames.IsBound(anEntry)) {
793         // The Object is in Study
794         aName = theObjectNames.Find(anEntry);
795         // check validity of aName
796         bool isValidName = fixPythonName( aName );
797         if (theObjectNames.IsBound(aName) && anEntry != theObjectNames(aName)) {
798           // diff objects have same name - make a new name by appending a digit
799           TCollection_AsciiString aName2;
800           Standard_Integer i = 0;
801           do {
802             aName2 = aName + "_" + ++i;
803           } while (theObjectNames.IsBound(aName2) && anEntry != theObjectNames(aName2));
804           aName = aName2;
805           isValidName = false;
806         }
807         if ( !isValidName )
808           theObjectNames(anEntry) = aName;
809
810       } else {
811         // Removed Object
812         do {
813           aName = aBaseName + (++objectCounter);
814         } while (theObjectNames.IsBound(aName));
815         seqRemoved.Append(aName);
816         mapRemoved.Bind(anEntry, "1");
817         theObjectNames.Bind(anEntry, aName);
818       }
819       theObjectNames.Bind(aName, anEntry); // to detect same name of diff objects
820     }
821     else
822     {
823       importGeom = true;
824     }
825     anUpdatedScript += aName;
826     aStart = aSeq->Value(i + 1) + 1;
827   }
828
829   // set initial part of aSript
830   TCollection_AsciiString initPart = "import salome, SMESH, SALOMEDS\n";
831   initPart += helper + "import " + aSmeshpy + "\n\n";
832   if ( importGeom )
833   {
834     initPart += ("## import GEOM dump file ## \n"
835                  "import string, os, sys, re\n"
836                  "sys.path.insert( 0, os.path.dirname(__file__) )\n"
837                  "exec(\"from \"+re.sub(\"SMESH$\",\"GEOM\",__name__)+\" import *\")\n\n");
838   }
839   anUpdatedScript.Insert ( 1, initPart );
840
841   // add final part of aScript
842   if (aSeq->Value(aLen) < aScriptLength)
843     anUpdatedScript += aScript.SubString(aSeq->Value(aLen) + 1, aScriptLength);
844
845   // Set colors
846   SALOMEDS::SObject_var aComp = theStudy->FindComponent(ComponentDataType());
847   if( !CORBA::is_nil(aComp) )
848   {
849     SALOMEDS::ChildIterator_var Itr = theStudy->NewChildIterator(aComp);
850     for( Itr->InitEx(true); Itr->More(); Itr->Next() )
851     {
852       SALOMEDS::SObject_var aSObj = Itr->Value();
853       SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_narrow( SObjectToObject( aSObj ) );
854       // mesh auto color
855       if( !CORBA::is_nil(aMesh) && aMesh->GetAutoColor() )
856       {
857         CORBA::String_var anEntry = aSObj->GetID();
858         anUpdatedScript +=
859           SMESH_Comment("\n\t") << theObjectNames(anEntry.inout()) << ".SetAutoColor(1)";
860       }
861       SMESH::SMESH_GroupBase_var aGroup = SMESH::SMESH_GroupBase::_narrow( SObjectToObject(aSObj));
862       if( !CORBA::is_nil(aGroup) )
863       {
864         SALOMEDS::Color aColor = aGroup->GetColor();
865         if ( aColor.R >= 0 || aColor.G >= 0 || aColor.B >= 0 )
866         {
867           CORBA::String_var anEntry = aSObj->GetID();
868           anUpdatedScript += SMESH_Comment("\n\t")
869             << theObjectNames(anEntry.inout()) << ".SetColor(SALOMEDS.Color("
870             << aColor.R <<", "<< aColor.G <<", "<< aColor.B <<" ))";
871         }
872       }
873     }
874   }
875
876   // Remove removed objects
877   if ( seqRemoved.Length() > 0 ) {
878     anUpdatedScript += "\n\t## some objects were removed";
879     anUpdatedScript += "\n\taStudyBuilder = theStudy.NewBuilder()";
880   }
881   for (int ir = 1; ir <= seqRemoved.Length(); ir++) {
882     anUpdatedScript += "\n\tSO = theStudy.FindObjectIOR(theStudy.ConvertObjectToIOR(";
883     anUpdatedScript += seqRemoved.Value(ir);
884     // for object wrapped by class of smesh.py
885     anEntry = theObjectNames( seqRemoved.Value(ir) );
886     if ( anEntry2AccessorMethod.IsBound( anEntry ) )
887       anUpdatedScript += helper + "." + anEntry2AccessorMethod( anEntry );
888     anUpdatedScript += "))\n\tif SO is not None: aStudyBuilder.RemoveObjectWithChildren(SO)";
889   }
890
891   // Set object names
892   anUpdatedScript += "\n\t## set object names";
893 //   anUpdatedScript += "\n\t\tsmeshgui = salome.ImportComponentGUI(\"SMESH\")";
894 //   anUpdatedScript += "\n\t\tsmeshgui.Init(theStudy._get_StudyId())";
895 //   anUpdatedScript += "\n";
896
897   TCollection_AsciiString aGUIName;
898   Resource_DataMapOfAsciiStringAsciiString mapEntries;
899   for (Standard_Integer i = 1; i <= aLen; i += 2)
900   {
901     anEntry = aScript.SubString(aSeq->Value(i), aSeq->Value(i + 1));
902     aName = geom->GetDumpName( anEntry.ToCString() );
903     if (aName.IsEmpty() && // Not a GEOM object
904         theNames.IsBound(anEntry) &&
905         !mapEntries.IsBound(anEntry) && // Not yet processed
906         !mapRemoved.IsBound(anEntry)) // Was not removed
907     {
908       aName = theObjectNames.Find(anEntry);
909       aGUIName = theNames.Find(anEntry);
910       mapEntries.Bind(anEntry, aName);
911       anUpdatedScript += helper + "\n\t" + aSMESHGen + ".SetName(" + aName;
912       if ( anEntry2AccessorMethod.IsBound( anEntry ) )
913         anUpdatedScript += helper + "." + anEntry2AccessorMethod( anEntry );
914       anUpdatedScript += helper + ", '" + aGUIName + "')";
915     }
916   }
917   anUpdatedScript += "\n\tif salome.sg.hasDesktop():";
918   anUpdatedScript += "\n\t\tsalome.sg.updateObjBrowser(0)";
919
920   // -----------------------------------------------------------------
921   // store visual properties of displayed objects
922   // -----------------------------------------------------------------
923
924   if (isPublished)
925   {
926     //Output the script that sets up the visual parameters.
927     char* script = theStudy->GetDefaultScript(ComponentDataType(), "\t");
928     if (script && strlen(script) > 0) {
929       anUpdatedScript += "\n\n\t### Store presentation parameters of displayed objects\n";
930       anUpdatedScript += script;
931       CORBA::string_free(script);
932     }
933   }
934   anUpdatedScript += "\n\n\tpass\n";
935
936   // -----------------------------------------------------------------
937   // put string literals describing patterns into separate functions
938   // -----------------------------------------------------------------
939
940   TCollection_AsciiString aLongString, aFunctionType;
941   int where = 1;
942   set< string > functionNameSet;
943   while ( SMESH::TPythonDump::CutoutLongString( anUpdatedScript, where, aLongString, aFunctionType ))
944   {
945     // make a python string literal
946     aLongString.Prepend(":\n\treturn '''\n");
947     aLongString += "\n\t'''\n\tpass\n";
948
949     TCollection_AsciiString functionName;
950
951     // check if the function returning this literal is already defined
952     int posAlready = anUpdatedScript.Location( aLongString, where, anUpdatedScript.Length() );
953     if ( posAlready ) // already defined
954     {
955       // find the function name
956       int functBeg = posAlready;
957       char* script = (char*) anUpdatedScript.ToCString() + posAlready - 1; // look at ":" after "def fuction()"
958       while ( *script != ' ' ) {
959         script--;
960         functBeg--;
961       }
962       functBeg++; // do not take ' '
963       posAlready--; // do not take ':'
964       functionName = anUpdatedScript.SubString( functBeg, posAlready );
965     }
966     else // not defined yet
967     {
968       // find a unique function name
969       fixPythonName( aFunctionType );
970       Standard_Integer nb = 0;
971       do functionName = aFunctionType + "_" + ( nb++ ) + "()";
972       while ( !functionNameSet.insert( functionName.ToCString() ).second );
973
974       anUpdatedScript += helper + "\n\ndef " + functionName + aLongString; // define function
975     }
976     anUpdatedScript.InsertBefore( where, functionName ); // call function
977   }
978
979   aValidScript = true;
980
981   return anUpdatedScript;
982 }
983
984 //=============================================================================
985 /*!
986  *  GetNewPythonLines
987  */
988 //=============================================================================
989 TCollection_AsciiString SMESH_Gen_i::GetNewPythonLines (int theStudyID)
990 {
991   TCollection_AsciiString aScript;
992
993   // Dump trace of API methods calls
994   if (myPythonScripts.find(theStudyID) != myPythonScripts.end()) {
995     Handle(TColStd_HSequenceOfAsciiString) aPythonScript = myPythonScripts[theStudyID];
996     Standard_Integer istr, aLen = aPythonScript->Length();
997     for (istr = 1; istr <= aLen; istr++) {
998       aScript += "\n\t";
999       aScript += aPythonScript->Value(istr);
1000     }
1001     aScript += "\n";
1002   }
1003
1004   return aScript;
1005 }
1006
1007 //=============================================================================
1008 /*!
1009  *  CleanPythonTrace
1010  */
1011 //=============================================================================
1012 void SMESH_Gen_i::CleanPythonTrace (int theStudyID)
1013 {
1014   TCollection_AsciiString aScript;
1015
1016   // Clean trace of API methods calls
1017   if (myPythonScripts.find(theStudyID) != myPythonScripts.end()) {
1018     myPythonScripts[theStudyID]->Clear();
1019   }
1020 }