Salome HOME
23156: EDF 9626 SMESH: Dump study produces a non-working script
[modules/smesh.git] / src / SMESH_I / SMESH_2smeshpy.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
23 // File      : SMESH_2smeshpy.cxx
24 // Created   : Fri Nov 18 13:20:10 2005
25 // Author    : Edward AGAPOV (eap)
26 //
27 #include "SMESH_2smeshpy.hxx"
28
29 #include "SMESH_PythonDump.hxx"
30 #include "SMESH_NoteBook.hxx"
31 #include "SMESH_Filter_i.hxx"
32
33 #include <SALOMEDS_wrap.hxx>
34 #include <utilities.h>
35
36 #include <Resource_DataMapOfAsciiStringAsciiString.hxx>
37 #include <Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString.hxx>
38
39 #include "SMESH_Gen_i.hxx"
40 /* SALOME headers that include CORBA headers that include windows.h
41  * that defines GetObject symbol as GetObjectA should stand before SALOME headers
42  * that declare methods named GetObject - to apply the same rules of GetObject renaming
43  * and thus to avoid mess with GetObject symbol on Windows */
44
45 #include <LDOMParser.hxx>
46
47 #ifdef WIN32
48 #include <windows.h>
49 #else
50 #include <unistd.h>
51 #endif
52
53
54 IMPLEMENT_STANDARD_HANDLE (_pyObject          ,Standard_Transient);
55 IMPLEMENT_STANDARD_HANDLE (_pyCommand         ,Standard_Transient);
56 IMPLEMENT_STANDARD_HANDLE (_pyHypothesisReader,Standard_Transient);
57 IMPLEMENT_STANDARD_HANDLE (_pyGen             ,_pyObject);
58 IMPLEMENT_STANDARD_HANDLE (_pyMesh            ,_pyObject);
59 IMPLEMENT_STANDARD_HANDLE (_pySubMesh         ,_pyObject);
60 IMPLEMENT_STANDARD_HANDLE (_pyMeshEditor      ,_pyObject);
61 IMPLEMENT_STANDARD_HANDLE (_pyHypothesis      ,_pyObject);
62 IMPLEMENT_STANDARD_HANDLE (_pySelfEraser      ,_pyObject);
63 IMPLEMENT_STANDARD_HANDLE (_pyGroup           ,_pyObject);
64 IMPLEMENT_STANDARD_HANDLE (_pyFilter          ,_pyObject);
65 IMPLEMENT_STANDARD_HANDLE (_pyAlgorithm       ,_pyHypothesis);
66 IMPLEMENT_STANDARD_HANDLE (_pyComplexParamHypo,_pyHypothesis);
67 IMPLEMENT_STANDARD_HANDLE (_pyNumberOfSegmentsHyp,_pyHypothesis);
68
69 IMPLEMENT_STANDARD_RTTIEXT(_pyObject          ,Standard_Transient);
70 IMPLEMENT_STANDARD_RTTIEXT(_pyCommand         ,Standard_Transient);
71 IMPLEMENT_STANDARD_RTTIEXT(_pyHypothesisReader,Standard_Transient);
72 IMPLEMENT_STANDARD_RTTIEXT(_pyGen             ,_pyObject);
73 IMPLEMENT_STANDARD_RTTIEXT(_pyMesh            ,_pyObject);
74 IMPLEMENT_STANDARD_RTTIEXT(_pySubMesh         ,_pyObject);
75 IMPLEMENT_STANDARD_RTTIEXT(_pyMeshEditor      ,_pyObject);
76 IMPLEMENT_STANDARD_RTTIEXT(_pyHypothesis      ,_pyObject);
77 IMPLEMENT_STANDARD_RTTIEXT(_pySelfEraser      ,_pyObject);
78 IMPLEMENT_STANDARD_RTTIEXT(_pyGroup           ,_pyObject);
79 IMPLEMENT_STANDARD_RTTIEXT(_pyFilter          ,_pyObject);
80 IMPLEMENT_STANDARD_RTTIEXT(_pyAlgorithm       ,_pyHypothesis);
81 IMPLEMENT_STANDARD_RTTIEXT(_pyComplexParamHypo,_pyHypothesis);
82 IMPLEMENT_STANDARD_RTTIEXT(_pyNumberOfSegmentsHyp,_pyHypothesis);
83 IMPLEMENT_STANDARD_RTTIEXT(_pyLayerDistributionHypo,_pyHypothesis);
84 IMPLEMENT_STANDARD_RTTIEXT(_pySegmentLengthAroundVertexHyp,_pyHypothesis);
85
86 using namespace std;
87 using SMESH::TPythonDump;
88
89 /*!
90  * \brief Container of commands into which the initial script is split.
91  *        It also contains data coresponding to SMESH_Gen contents
92  */
93 static Handle(_pyGen) theGen;
94
95 static TCollection_AsciiString theEmptyString;
96
97 //#define DUMP_CONVERSION
98
99 #if !defined(_DEBUG_) && defined(DUMP_CONVERSION)
100 #undef DUMP_CONVERSION
101 #endif
102
103
104 namespace {
105
106   //================================================================================
107   /*!
108    * \brief Set of TCollection_AsciiString initialized by C array of C strings
109    */
110   //================================================================================
111
112   struct TStringSet: public set<TCollection_AsciiString>
113   {
114     /*!
115      * \brief Filling. The last string must be ""
116      */
117     void Insert(const char* names[]) {
118       for ( int i = 0; names[i][0] ; ++i )
119         insert( (char*) names[i] );
120     }
121     /*!
122      * \brief Check if a string is in
123      */
124     bool Contains(const TCollection_AsciiString& name ) {
125       return find( name ) != end();
126     }
127   };
128
129   //================================================================================
130   /*!
131    * \brief Map of TCollection_AsciiString initialized by C array of C strings.
132    *        Odd items of the C array are map keys, and even items are values
133    */
134   //================================================================================
135
136   struct TStringMap: public map<TCollection_AsciiString,TCollection_AsciiString>
137   {
138     /*!
139      * \brief Filling. The last string must be ""
140      */
141     void Insert(const char* names_values[]) {
142       for ( int i = 0; names_values[i][0] ; i += 2 )
143         insert( make_pair( (char*) names_values[i], names_values[i+1] ));
144     }
145     /*!
146      * \brief Check if a string is in
147      */
148     TCollection_AsciiString Value(const TCollection_AsciiString& name ) {
149       map< _AString, _AString >::iterator it = find( name );
150       return it == end() ? "" : it->second;
151     }
152   };
153
154   //================================================================================
155   /*!
156    * \brief Returns a mesh by object
157    */
158   //================================================================================
159
160   Handle(_pyMesh) ObjectToMesh( const Handle( _pyObject )& obj )
161   {
162     if ( !obj.IsNull() )
163     {
164       if ( obj->IsKind( STANDARD_TYPE( _pyMesh )))
165         return Handle(_pyMesh)::DownCast( obj );
166       else if ( obj->IsKind( STANDARD_TYPE( _pySubMesh )))
167         return Handle(_pySubMesh)::DownCast( obj )->GetMesh();
168       else if ( obj->IsKind( STANDARD_TYPE( _pyGroup )))
169         return Handle(_pyGroup)::DownCast( obj )->GetMesh();
170     }
171     return Handle(_pyMesh)();
172   }
173
174   //================================================================================
175   /*!
176    * \brief Check if objects used as args have been created by previous commands
177    */
178   //================================================================================
179
180   void CheckObjectPresence( const Handle(_pyCommand)& cmd, set<_pyID> & presentObjects)
181   {
182     // either comment or erase a command including NotPublishedObjectName()
183     if ( cmd->GetString().Location( TPythonDump::NotPublishedObjectName(), 1, cmd->Length() ))
184     {
185       bool isResultPublished = false;
186       const int nbRes = cmd->GetNbResultValues();
187       for ( int i = 0; i < nbRes; i++ )
188       {
189         _pyID objID = cmd->GetResultValue( i+1 );
190         if ( cmd->IsStudyEntry( objID ))
191           isResultPublished = (! theGen->IsNotPublished( objID ));
192         theGen->ObjectCreationRemoved( objID ); // objID.SetName( name ) is not needed
193       }
194       if ( isResultPublished )
195         cmd->Comment();
196       else
197         cmd->Clear();
198       return;
199     }
200     // check if an Object was created in the script
201     _AString comment;
202
203     _pyID obj = cmd->GetObject();
204     if ( obj.Search( "print " ) == 1 )
205       return; // print statement
206
207     if ( !obj.IsEmpty() && obj.Value( obj.Length() ) == ')' )
208       // remove an accessor method
209       obj = _pyCommand( obj ).GetObject();
210
211     const bool isMethodCall = cmd->IsMethodCall();
212     if ( !obj.IsEmpty() && isMethodCall && !presentObjects.count( obj ) )
213     {
214       comment = "not created Object";
215       theGen->ObjectCreationRemoved( obj );
216     }
217     // check if a command has not created args
218     for ( int iArg = cmd->GetNbArgs(); iArg && comment.IsEmpty(); --iArg )
219     {
220       const _pyID& arg = cmd->GetArg( iArg );
221       if ( arg.IsEmpty() || arg.Value( 1 ) == '"' || arg.Value( 1 ) == '\'' )
222         continue;
223       list< _pyID > idList = cmd->GetStudyEntries( arg );
224       list< _pyID >::iterator id = idList.begin();
225       for ( ; id != idList.end(); ++id )
226         if ( !theGen->IsGeomObject( *id ) && !presentObjects.count( *id ))
227         {
228           comment += *id + " has not been yet created";
229           break;
230         }
231       // if ( idList.empty() && cmd->IsID( arg ) && !presentObjects.count( arg ))
232       //   comment += arg + " has not been yet created";
233     }
234     // treat result objects
235     const _pyID& result = cmd->GetResultValue();
236     if ( !result.IsEmpty() && result.Value( 1 ) != '"' && result.Value( 1 ) != '\'' )
237     {
238       list< _pyID > idList = cmd->GetStudyEntries( result );
239       list< _pyID >::iterator id = idList.begin();
240       for ( ; id != idList.end(); ++id )
241       {
242         if ( comment.IsEmpty() )
243           presentObjects.insert( *id );
244         else
245           theGen->ObjectCreationRemoved( *id ); // objID.SetName( name ) is not needed
246       }
247       if ( idList.empty() && cmd->IsID( result ))
248         presentObjects.insert( result );
249     }
250     // comment the command
251     if ( !comment.IsEmpty() )
252     {
253       cmd->Comment();
254       cmd->GetString() += " ### ";
255       cmd->GetString() += comment;
256     }
257   }
258
259   //================================================================================
260   /*!
261    * \brief Fix SMESH::FunctorType arguments of SMESH::Filter::Criterion()
262    */
263   //================================================================================
264
265   void fixFunctorType( TCollection_AsciiString& Type,
266                        TCollection_AsciiString& Compare,
267                        TCollection_AsciiString& UnaryOp,
268                        TCollection_AsciiString& BinaryOp )
269   {
270     // The problem is that dumps of old studies created using filters becomes invalid
271     // when new items are inserted in the enum SMESH::FunctorType since values
272     // of this enum are dumped as integer values.
273     // This function corrects enum values of old studies given as args (Type,Compare,...)
274     // We can find out how to correct them by value of BinaryOp which can have only two
275     // values: FT_Undefined or FT_LogicalNOT.
276     // Hereafter is the history of the enum SMESH::FunctorType since v3.0.0
277     // where PythonDump appeared
278     // v 3.0.0: FT_Undefined == 25
279     // v 3.1.0: FT_Undefined == 26, new items:
280     //   - FT_Volume3D              = 7
281     // v 4.1.2: FT_Undefined == 27, new items:
282     //   - FT_BelongToGenSurface    = 17
283     // v 5.1.1: FT_Undefined == 32, new items:
284     //   - FT_FreeNodes             = 10
285     //   - FT_FreeFaces             = 11
286     //   - FT_LinearOrQuadratic     = 23
287     //   - FT_GroupColor            = 24
288     //   - FT_ElemGeomType          = 25
289     // v 5.1.5: FT_Undefined == 33, new items:
290     //   - FT_CoplanarFaces         = 26
291     // v 6.2.0: FT_Undefined == 39, new items:
292     //   - FT_MaxElementLength2D    = 8
293     //   - FT_MaxElementLength3D    = 9
294     //   - FT_BareBorderVolume      = 25
295     //   - FT_BareBorderFace        = 26
296     //   - FT_OverConstrainedVolume = 27
297     //   - FT_OverConstrainedFace   = 28
298     // v 6.5.0: FT_Undefined == 43, new items:
299     //   - FT_EqualNodes            = 14
300     //   - FT_EqualEdges            = 15
301     //   - FT_EqualFaces            = 16
302     //   - FT_EqualVolumes          = 17
303     // v 6.6.0: FT_Undefined == 44, new items:
304     //   - FT_BallDiameter          = 37
305     // v 6.7.1: FT_Undefined == 45, new items:
306     //   - FT_EntityType            = 36
307     // v 7.3.0: FT_Undefined == 46, new items:
308     //   - FT_ConnectedElements     = 39
309     // v 7.6.0: FT_Undefined == 47, new items:
310     //   - FT_BelongToMeshGroup     = 22
311     //
312     // It's necessary to continue recording this history and to fill
313     // undef2newItems (see below) accordingly.
314
315     typedef map< int, vector< int > > TUndef2newItems;
316     static TUndef2newItems undef2newItems;
317     if ( undef2newItems.empty() )
318     {
319       undef2newItems[ 26 ].push_back( 7 );
320       undef2newItems[ 27 ].push_back( 17 );
321       { int items[] = { 10, 11, 23, 24, 25 };
322         undef2newItems[ 32 ].assign( items, items+5 ); }
323       undef2newItems[ 33 ].push_back( 26 );
324       { int items[] = { 8, 9, 25, 26, 27, 28 };
325         undef2newItems[ 39 ].assign( items, items+6 ); }
326       { int items[] = { 14, 15, 16, 17 };
327         undef2newItems[ 43 ].assign( items, items+4 ); }
328       undef2newItems[ 44 ].push_back( 37 );
329       undef2newItems[ 45 ].push_back( 36 );
330       undef2newItems[ 46 ].push_back( 39 );
331       undef2newItems[ 47 ].push_back( 22 );
332
333       ASSERT( undef2newItems.rbegin()->first == SMESH::FT_Undefined );
334     }
335
336     int iType     = Type.IntegerValue();
337     int iCompare  = Compare.IntegerValue();
338     int iUnaryOp  = UnaryOp.IntegerValue();
339     int iBinaryOp = BinaryOp.IntegerValue();
340
341     // find out integer value of FT_Undefined at the moment of dump
342     int oldUndefined = iBinaryOp;
343     if ( iBinaryOp < iUnaryOp ) // BinaryOp was FT_LogicalNOT
344       oldUndefined += 3;
345
346     // apply history to args
347     TUndef2newItems::const_iterator undef_items =
348       undef2newItems.upper_bound( oldUndefined );
349     if ( undef_items != undef2newItems.end() )
350     {
351       int* pArg[4] = { &iType, &iCompare, &iUnaryOp, &iBinaryOp };
352       for ( ; undef_items != undef2newItems.end(); ++undef_items )
353       {
354         const vector< int > & addedItems = undef_items->second;
355         for ( size_t i = 0; i < addedItems.size(); ++i )
356           for ( int iArg = 0; iArg < 4; ++iArg )
357           {
358             int& arg = *pArg[iArg];
359             if ( arg >= addedItems[i] )
360               arg++;
361           }
362       }
363       Type     = TCollection_AsciiString( iType     );
364       Compare  = TCollection_AsciiString( iCompare  );
365       UnaryOp  = TCollection_AsciiString( iUnaryOp  );
366       BinaryOp = TCollection_AsciiString( iBinaryOp );
367     }
368   }
369
370   //================================================================================
371   /*!
372    * \brief Replaces "SMESH.PointStruct(x,y,z)" and "SMESH.DirStruct( SMESH.PointStruct(x,y,z))"
373    *        arguments of a given command by a list "[x,y,z]" if the list is accesible
374    *        type of argument.
375    */
376   //================================================================================
377
378   void StructToList( Handle( _pyCommand)& theCommand, const bool checkMethod=true )
379   {
380     static TStringSet methodsAcceptingList;
381     if ( methodsAcceptingList.empty() ) {
382       const char * methodNames[] = {
383         "GetCriterion","Reorient2D","ExtrusionSweep","ExtrusionSweepMakeGroups0D",
384         "ExtrusionSweepMakeGroups","ExtrusionSweep0D",
385         "AdvancedExtrusion","AdvancedExtrusionMakeGroups",
386         "ExtrusionSweepObject","ExtrusionSweepObject0DMakeGroups",
387         "ExtrusionSweepObjectMakeGroups","ExtrusionSweepObject0D",
388         "ExtrusionSweepObject1D","ExtrusionSweepObject1DMakeGroups",
389         "ExtrusionSweepObject2D","ExtrusionSweepObject2DMakeGroups",
390         "ExtrusionSweepObjects","RotationSweepObjects","ExtrusionAlongPathObjects",
391         "Translate","TranslateMakeGroups","TranslateMakeMesh",
392         "TranslateObject","TranslateObjectMakeGroups", "TranslateObjectMakeMesh",
393         "ExtrusionAlongPathX","ExtrusionAlongPathObjX","SplitHexahedraIntoPrisms"
394         ,"" }; // <- mark of the end
395       methodsAcceptingList.Insert( methodNames );
396     }
397     if ( !checkMethod || methodsAcceptingList.Contains( theCommand->GetMethod() ))
398     {
399       for ( int i = theCommand->GetNbArgs(); i > 0; --i )
400       {
401         const _AString & arg = theCommand->GetArg( i );
402         if ( arg.Search( "SMESH.PointStruct" ) == 1 ||
403              arg.Search( "SMESH.DirStruct"   ) == 1 )
404         {
405           Handle(_pyCommand) workCmd = new _pyCommand( arg );
406           if ( workCmd->GetNbArgs() == 1 ) // SMESH.DirStruct( SMESH.PointStruct(x,y,z))
407           {
408             workCmd = new _pyCommand( workCmd->GetArg( 1 ) );
409           }
410           if ( workCmd->GetNbArgs() == 3 ) // SMESH.PointStruct(x,y,z)
411           {
412             _AString newArg = "[ ";
413             newArg += ( workCmd->GetArg( 1 ) + ", " +
414                         workCmd->GetArg( 2 ) + ", " +
415                         workCmd->GetArg( 3 ) + " ]");
416             theCommand->SetArg( i, newArg );
417           }
418         }
419       }
420     }
421   }
422   //================================================================================
423   /*!
424    * \brief Replaces "mesh.GetIDSource([id1,id2])" argument of a given command by
425    *        a list "[id1,id2]" if the list is an accesible type of argument.
426    */
427   //================================================================================
428
429   void GetIDSourceToList( Handle( _pyCommand)& theCommand )
430   {
431     static TStringSet methodsAcceptingList;
432     if ( methodsAcceptingList.empty() ) {
433       const char * methodNames[] = {
434         "ExportPartToMED","ExportPartToDAT","ExportPartToUNV","ExportPartToSTL",
435         "ExportCGNS","ExportGMF",
436         "Create0DElementsOnAllNodes","Reorient2D","QuadTo4Tri",
437         "ScaleMakeGroups","Scale","ScaleMakeMesh",
438         "FindCoincidentNodesOnPartBut","DoubleElements",
439         "ExtrusionSweepObjects","RotationSweepObjects","ExtrusionAlongPathObjects"
440         ,"" }; // <- mark of the end
441       methodsAcceptingList.Insert( methodNames );
442     }
443     if ( methodsAcceptingList.Contains( theCommand->GetMethod() ))
444     {
445       for ( int i = theCommand->GetNbArgs(); i > 0; --i )
446       {
447         _pyCommand argCmd( theCommand->GetArg( i ));
448         if ( argCmd.GetMethod() == "GetIDSource" &&
449              argCmd.GetNbArgs() == 2 )
450         {
451           theCommand->SetArg( i, argCmd.GetArg( 1 ));
452         }
453       }
454     }
455   }
456 }
457
458 //================================================================================
459 /*!
460  * \brief Convert a python script using commands of smeshBuilder.py
461  *  \param theScriptLines - Lines of the input script
462  *  \param theEntry2AccessorMethod - returns method names to access to
463  *         objects wrapped with python class
464  *  \param theObjectNames - names of objects
465  *  \param theRemovedObjIDs - entries of objects whose created commands were removed
466  *  \param theHistoricalDump - true means to keep all commands, false means
467  *         to exclude commands relating to objects removed from study
468  *  \retval TCollection_AsciiString - Convertion result
469  */
470 //================================================================================
471
472 void
473 SMESH_2smeshpy::ConvertScript(std::list< TCollection_AsciiString >&     theScriptLines,
474                               Resource_DataMapOfAsciiStringAsciiString& theEntry2AccessorMethod,
475                               Resource_DataMapOfAsciiStringAsciiString& theObjectNames,
476                               std::set< TCollection_AsciiString >&      theRemovedObjIDs,
477                               SALOMEDS::Study_ptr&                      theStudy,
478                               const bool                                theToKeepAllCommands)
479 {
480   std::list< TCollection_AsciiString >::iterator lineIt;
481   // process notebook variables
482   {
483     SMESH_NoteBook aNoteBook;
484
485     for ( lineIt = theScriptLines.begin(); lineIt != theScriptLines.end(); ++lineIt )
486       aNoteBook.AddCommand( *lineIt );
487
488     theScriptLines.clear();
489
490     aNoteBook.ReplaceVariables();
491
492     aNoteBook.GetResultLines( theScriptLines );
493   }
494
495   // convert to smeshBuilder.py API
496
497   theGen = new _pyGen( theEntry2AccessorMethod,
498                        theObjectNames,
499                        theRemovedObjIDs,
500                        theStudy,
501                        theToKeepAllCommands );
502
503   for ( lineIt = theScriptLines.begin(); lineIt != theScriptLines.end(); ++lineIt )
504     theGen->AddCommand( *lineIt );
505
506   theScriptLines.clear();
507
508   // finish conversion
509   theGen->Flush();
510 #ifdef DUMP_CONVERSION
511   MESSAGE_BEGIN ( std::endl << " ######## RESULT ######## " << std::endl<< std::endl );
512 #endif
513
514   // clean commmands of removed objects depending on myIsPublished flag
515   theGen->ClearCommands();
516
517   // reorder commands after conversion
518   list< Handle(_pyCommand) >::iterator cmd;
519   bool orderChanges;
520   do {
521     orderChanges = false;
522     for ( cmd = theGen->GetCommands().begin(); cmd != theGen->GetCommands().end(); ++cmd )
523       if ( (*cmd)->SetDependentCmdsAfter() )
524         orderChanges = true;
525   } while ( orderChanges );
526
527   // concat commands back into a script
528   TCollection_AsciiString aPrevCmd;
529   set<_pyID> createdObjects;
530   createdObjects.insert( "smeshBuilder" );
531   createdObjects.insert( "smesh" );
532   createdObjects.insert( "theStudy" );
533   for ( cmd = theGen->GetCommands().begin(); cmd != theGen->GetCommands().end(); ++cmd )
534   {
535 #ifdef DUMP_CONVERSION
536     MESSAGE_ADD ( "## COM " << (*cmd)->GetOrderNb() << ": "<< (*cmd)->GetString() << std::endl );
537 #endif
538     if ( !(*cmd)->IsEmpty() && aPrevCmd != (*cmd)->GetString()) {
539       CheckObjectPresence( *cmd, createdObjects );
540       if ( !(*cmd)->IsEmpty() ) {
541         aPrevCmd = (*cmd)->GetString();
542         theScriptLines.push_back( aPrevCmd );
543       }
544     }
545   }
546
547   theGen->Free();
548   theGen.Nullify();
549 }
550
551 //================================================================================
552 /*!
553  * \brief _pyGen constructor
554  */
555 //================================================================================
556
557 _pyGen::_pyGen(Resource_DataMapOfAsciiStringAsciiString& theEntry2AccessorMethod,
558                Resource_DataMapOfAsciiStringAsciiString& theObjectNames,
559                std::set< TCollection_AsciiString >&      theRemovedObjIDs,
560                SALOMEDS::Study_ptr&                      theStudy,
561                const bool                                theToKeepAllCommands)
562   : _pyObject( new _pyCommand( "", 0 )),
563     myNbCommands( 0 ),
564     myID2AccessorMethod( theEntry2AccessorMethod ),
565     myObjectNames( theObjectNames ),
566     myRemovedObjIDs( theRemovedObjIDs ),
567     myNbFilters( 0 ),
568     myToKeepAllCommands( theToKeepAllCommands ),
569     myStudy( SALOMEDS::Study::_duplicate( theStudy )),
570     myGeomIDNb(0), myGeomIDIndex(-1)
571 {
572   // make that GetID() to return TPythonDump::SMESHGenName()
573   GetCreationCmd()->Clear();
574   GetCreationCmd()->GetString() = TPythonDump::SMESHGenName();
575   GetCreationCmd()->GetString() += "=";
576
577   // Find 1st digit of study entry by which a GEOM object differs from a SMESH object
578   if ( !theObjectNames.IsEmpty() && !CORBA::is_nil( theStudy ))
579   {
580     // find a GEOM entry
581     _pyID geomID;
582     SALOMEDS::SComponent_wrap geomComp = theStudy->FindComponent("GEOM");
583     if ( geomComp->_is_nil() ) return;
584     CORBA::String_var entry = geomComp->GetID();
585     geomID = entry.in();
586
587     // find a SMESH entry
588     _pyID smeshID;
589     Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString e2n( theObjectNames );
590     for ( ; e2n.More() && smeshID.IsEmpty(); e2n.Next() )
591       if ( _pyCommand::IsStudyEntry( e2n.Key() ))
592         smeshID = e2n.Key();
593
594     // find 1st difference between smeshID and geomID
595     if ( !geomID.IsEmpty() && !smeshID.IsEmpty() )
596       for ( int i = 1; i <= geomID.Length() && i <= smeshID.Length(); ++i )
597         if ( geomID.Value( i ) != smeshID.Value( i ))
598         {
599           myGeomIDNb = geomID.Value( i );
600           myGeomIDIndex = i;
601         }
602   }
603 }
604
605 //================================================================================
606 /*!
607  * \brief name of SMESH_Gen in smeshBuilder.py
608  */
609 //================================================================================
610
611 const char* _pyGen::AccessorMethod() const
612 {
613   return SMESH_2smeshpy::GenName();
614 }
615
616 //================================================================================
617 /*!
618  * \brief Convert a command using a specific converter
619   * \param theCommand - the command to convert
620  */
621 //================================================================================
622
623 Handle(_pyCommand) _pyGen::AddCommand( const TCollection_AsciiString& theCommand)
624 {
625   // store theCommand in the sequence
626   myCommands.push_back( new _pyCommand( theCommand, ++myNbCommands ));
627
628   Handle(_pyCommand) aCommand = myCommands.back();
629 #ifdef DUMP_CONVERSION
630   MESSAGE ( "## COM " << myNbCommands << ": "<< aCommand->GetString() );
631 #endif
632
633   const _pyID& objID = aCommand->GetObject();
634
635   if ( objID.IsEmpty() )
636     return aCommand;
637
638   // Prevent moving a command creating a sub-mesh to the end of the script
639   // if the sub-mesh is used in theCommand as argument
640   // if ( _pySubMesh::CanBeArgOfMethod( aCommand->GetMethod() ))
641   // {
642   //   PlaceSubmeshAfterItsCreation( aCommand );
643   // }
644
645   // Method( SMESH.PointStruct(x,y,z)... -> Method( [x,y,z]...
646   StructToList( aCommand );
647
648   const TCollection_AsciiString& method = aCommand->GetMethod();
649
650   // not to erase _pySelfEraser's etc. used as args in some commands
651   {
652 #ifdef USE_STRING_FAMILY
653     std::list<_pyID>  objIDs;
654     if ( myKeepAgrCmdsIDs.IsInArgs( aCommand, objIDs ))
655     {
656       std::list<_pyID>::iterator objID = objIDs.begin();
657       for ( ; objID != objIDs.end(); ++objID )
658       {
659         Handle(_pyObject) obj = FindObject( *objID );
660         if ( !obj.IsNull() )
661         {
662           obj->AddArgCmd( aCommand );
663           //cout << objID << " found in " << theCommand << endl;
664         }
665       }
666     }
667 #else
668     std::list< _pyID >::const_iterator id = myKeepAgrCmdsIDs.begin();
669     for ( ; id != myKeepAgrCmdsIDs.end(); ++id )
670       if ( *id != objID && theCommand.Search( *id ) > id->Length() )
671       {
672         Handle(_pyObject) obj = FindObject( *id );
673         if ( !obj.IsNull() )
674           obj->AddArgCmd( aCommand );
675       }
676 #endif
677   }
678
679   // Find an object to process theCommand
680
681   // SMESH_Gen method?
682   if ( objID == this->GetID() || objID == SMESH_2smeshpy::GenName())
683   {
684     this->Process( aCommand );
685     //addFilterUser( aCommand, theGen ); // protect filters from clearing
686     return aCommand;
687   }
688
689   // SMESH_Mesh method?
690   map< _pyID, Handle(_pyMesh) >::iterator id_mesh = myMeshes.find( objID );
691   if ( id_mesh != myMeshes.end() )
692   {
693     //id_mesh->second->AddProcessedCmd( aCommand );
694
695     // Wrap Export*() into try-except
696     if ( aCommand->MethodStartsFrom("Export"))
697     {
698       _AString    tab = "\t";
699       _AString indent = aCommand->GetIndentation();
700       _AString tryStr = indent + "try:";
701       _AString newCmd = indent + tab + ( aCommand->GetString().ToCString() + indent.Length() );
702       _AString excStr = indent + "except:";
703       _AString msgStr = indent + "\tprint '"; msgStr += method + "() failed. Invalid file name?'";
704
705       myCommands.insert( --myCommands.end(), new _pyCommand( tryStr, myNbCommands ));
706       aCommand->Clear();
707       aCommand->GetString() = newCmd;
708       aCommand->SetOrderNb( ++myNbCommands );
709       myCommands.push_back( new _pyCommand( excStr, ++myNbCommands ));
710       myCommands.push_back( new _pyCommand( msgStr, ++myNbCommands ));
711     }
712     // check for mesh editor object
713     if ( aCommand->GetMethod() == "GetMeshEditor" ) { // MeshEditor creation
714       _pyID editorID = aCommand->GetResultValue();
715       Handle(_pyMeshEditor) editor = new _pyMeshEditor( aCommand );
716       myMeshEditors.insert( make_pair( editorID, editor ));
717       return aCommand;
718     }
719     // check for SubMesh objects
720     else if ( aCommand->GetMethod() == "GetSubMesh" ) { // SubMesh creation
721       _pyID subMeshID = aCommand->GetResultValue();
722       Handle(_pySubMesh) subMesh = new _pySubMesh( aCommand );
723       AddObject( subMesh );
724     }
725
726     // Method( mesh.GetIDSource([id1,id2]) -> Method( [id1,id2]
727     GetIDSourceToList( aCommand );
728
729     //addFilterUser( aCommand, theGen ); // protect filters from clearing
730
731     id_mesh->second->Process( aCommand );
732     id_mesh->second->AddProcessedCmd( aCommand );
733     return aCommand;
734   }
735
736   // SMESH_MeshEditor method?
737   map< _pyID, Handle(_pyMeshEditor) >::iterator id_editor = myMeshEditors.find( objID );
738   if ( id_editor != myMeshEditors.end() )
739   {
740     // Method( mesh.GetIDSource([id1,id2]) -> Method( [id1,id2]
741     GetIDSourceToList( aCommand );
742
743     //addFilterUser( aCommand, theGen ); // protect filters from clearing
744
745     // some commands of SMESH_MeshEditor create meshes and groups
746     _pyID meshID, groups;
747     if ( method.Search("MakeMesh") != -1 )
748       meshID = aCommand->GetResultValue();
749     else if ( method == "MakeBoundaryMesh")
750       meshID = aCommand->GetResultValue(1);
751     else if ( method == "MakeBoundaryElements")
752       meshID = aCommand->GetResultValue(2);
753
754     if ( method.Search("MakeGroups") != -1  ||
755          method == "ExtrusionAlongPathX"    ||
756          method == "ExtrusionAlongPathObjX" ||
757          method == "DoubleNodeGroupNew"     ||
758          method == "DoubleNodeGroupsNew"    ||
759          method == "DoubleNodeElemGroupNew" ||
760          method == "DoubleNodeElemGroupsNew"||
761          method == "DoubleNodeElemGroup2New"||
762          method == "DoubleNodeElemGroups2New"
763          )
764       groups = aCommand->GetResultValue();
765     else if ( method == "MakeBoundaryMesh" )
766       groups = aCommand->GetResultValue(2);
767     else if ( method == "MakeBoundaryElements")
768       groups = aCommand->GetResultValue(3);
769     else if ( method == "Create0DElementsOnAllNodes" &&
770               aCommand->GetArg(2).Length() > 2 ) // group name != ''
771       groups = aCommand->GetResultValue();
772
773     id_editor->second->Process( aCommand );
774     id_editor->second->AddProcessedCmd( aCommand );
775
776     // create meshes
777     if ( !meshID.IsEmpty() &&
778          !myMeshes.count( meshID ) &&
779          aCommand->IsStudyEntry( meshID ))
780     {
781       _AString processedCommand = aCommand->GetString();
782       Handle(_pyMesh) mesh = new _pyMesh( aCommand, meshID );
783       CheckObjectIsReCreated( mesh );
784       myMeshes.insert( make_pair( meshID, mesh ));
785       aCommand->Clear();
786       aCommand->GetString() = processedCommand; // discard changes made by _pyMesh
787     }
788     // create groups
789     if ( !groups.IsEmpty() )
790     {
791       if ( !aCommand->IsStudyEntry( meshID ))
792         meshID = id_editor->second->GetMesh();
793       Handle(_pyMesh) mesh = myMeshes[ meshID ];
794
795       list< _pyID > idList = aCommand->GetStudyEntries( groups );
796       list< _pyID >::iterator grID = idList.begin();
797       for ( ; grID != idList.end(); ++grID )
798         if ( !myObjects.count( *grID ))
799         {
800           Handle(_pyGroup) group = new _pyGroup( aCommand, *grID );
801           AddObject( group );
802           if ( !mesh.IsNull() ) mesh->AddGroup( group );
803         }
804     }
805     return aCommand;
806   } // SMESH_MeshEditor methods
807
808   // SMESH_Hypothesis method?
809   Handle(_pyHypothesis) hyp = FindHyp( objID );
810   if ( !hyp.IsNull() && !hyp->IsAlgo() )
811   {
812     hyp->Process( aCommand );
813     hyp->AddProcessedCmd( aCommand );
814     return aCommand;
815   }
816
817   // aFilterManager.CreateFilter() ?
818   if ( aCommand->GetMethod() == "CreateFilter" )
819   {
820     // Set a more human readable name to a filter
821     // aFilter0x7fbf6c71cfb0 -> aFilter_nb
822     _pyID newID, filterID = aCommand->GetResultValue();
823     int pos = filterID.Search( "0x" );
824     if ( pos > 1 )
825       newID = (filterID.SubString(1,pos-1) + "_") + _pyID( ++myNbFilters );
826
827     Handle(_pyObject) filter( new _pyFilter( aCommand, newID ));
828     AddObject( filter );
829   }
830   // aFreeNodes0x5011f80 = aFilterManager.CreateFreeNodes() ## issue 0020976
831   else if ( theCommand.Search( "aFilterManager.Create" ) > 0 )
832   {
833     // create _pySelfEraser for functors
834     Handle(_pySelfEraser) functor = new _pySelfEraser( aCommand );
835     functor->IgnoreOwnCalls(); // to erase if not used as an argument
836     AddObject( functor );
837   }
838
839   // other object method?
840   map< _pyID, Handle(_pyObject) >::iterator id_obj = myObjects.find( objID );
841   if ( id_obj != myObjects.end() ) {
842     id_obj->second->Process( aCommand );
843     id_obj->second->AddProcessedCmd( aCommand );
844     return aCommand;
845   }
846
847   // Add access to a wrapped mesh
848   AddMeshAccessorMethod( aCommand );
849
850   // Add access to a wrapped algorithm
851   //  AddAlgoAccessorMethod( aCommand ); // ??? what if algo won't be wrapped at all ???
852
853   // PAL12227. PythonDump was not updated at proper time; result is
854   //     aCriteria.append(SMESH.Filter.Criterion(17,26,0,'L1',26,25,1e-07,SMESH.EDGE,-1))
855   // TypeError: __init__() takes exactly 11 arguments (10 given)
856   const char wrongCommand[] = "SMESH.Filter.Criterion(";
857   if ( int beg = theCommand.Location( wrongCommand, 1, theCommand.Length() ))
858   {
859     _pyCommand tmpCmd( theCommand.SubString( beg, theCommand.Length() ), -1);
860     // there must be 10 arguments, 5-th arg ThresholdID is missing,
861     const int wrongNbArgs = 9, missingArg = 5;
862     if ( tmpCmd.GetNbArgs() == wrongNbArgs )
863     {
864       for ( int i = wrongNbArgs; i > missingArg; --i )
865         tmpCmd.SetArg( i + 1, tmpCmd.GetArg( i ));
866       tmpCmd.SetArg(  missingArg, "''");
867       aCommand->GetString().Trunc( beg - 1 );
868       aCommand->GetString() += tmpCmd.GetString();
869     }
870     // IMP issue 0021014
871     // set GetCriterion(elementType,CritType,Compare,Treshold,UnaryOp,BinaryOp,Tolerance)
872     //                  1           2        3       4        5       6        7
873     // instead of "SMESH.Filter.Criterion(
874     // Type,Compare,Threshold,ThresholdStr,ThresholdID,UnaryOp,BinaryOp,Tolerance,TypeOfElement,Precision)
875     // 1    2       3         4            5           6       7        8         9             10
876     // in order to avoid the problem of type mismatch of long and FunctorType
877     const TCollection_AsciiString
878       SMESH("SMESH."), dfltFunctor("SMESH.FT_Undefined"), dfltTol("1e-07"), dfltPreci("-1");
879     TCollection_AsciiString
880       Type          = aCommand->GetArg(1),  // long
881       Compare       = aCommand->GetArg(2),  // long
882       Threshold     = aCommand->GetArg(3),  // double
883       ThresholdStr  = aCommand->GetArg(4),  // string
884       ThresholdID   = aCommand->GetArg(5),  // string
885       UnaryOp       = aCommand->GetArg(6),  // long
886       BinaryOp      = aCommand->GetArg(7),  // long
887       Tolerance     = aCommand->GetArg(8),  // double
888       TypeOfElement = aCommand->GetArg(9),  // ElementType
889       Precision     = aCommand->GetArg(10); // long
890     fixFunctorType( Type, Compare, UnaryOp, BinaryOp );
891     Type     = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( Type.IntegerValue() ));
892     Compare  = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( Compare.IntegerValue() ));
893     UnaryOp  = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( UnaryOp.IntegerValue() ));
894     BinaryOp = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( BinaryOp.IntegerValue() ));
895
896     if ( Compare == "SMESH.FT_EqualTo" )
897       Compare = "'='";
898
899     aCommand->RemoveArgs();
900     aCommand->SetObject( SMESH_2smeshpy::GenName() );
901     aCommand->SetMethod( "GetCriterion" );
902
903     aCommand->SetArg( 1, TypeOfElement );
904     aCommand->SetArg( 2, Type );
905     aCommand->SetArg( 3, Compare );
906
907     if ( Threshold.IsIntegerValue() )
908     {
909       int iGeom = Threshold.IntegerValue();
910       if ( Type == "SMESH.FT_ElemGeomType" )
911       {
912         // set SMESH.GeometryType instead of a numerical Threshold
913         const int nbTypes = SMESH::Geom_LAST;
914         const char* types[nbTypes] = {
915           "Geom_POINT", "Geom_EDGE", "Geom_TRIANGLE", "Geom_QUADRANGLE", "Geom_POLYGON",
916           "Geom_TETRA", "Geom_PYRAMID", "Geom_HEXA", "Geom_PENTA", "Geom_HEXAGONAL_PRISM",
917           "Geom_POLYHEDRA", "Geom_BALL" };
918         if ( -1 < iGeom && iGeom < nbTypes )
919           Threshold = SMESH + types[ iGeom ];
920 #ifdef _DEBUG_
921         // is types complete? (compilation failure mains that enum GeometryType changed)
922         int _assert[( sizeof(types) / sizeof(const char*) == nbTypes ) ? 1 : -1 ];
923 #endif
924       }
925       if (Type == "SMESH.FT_EntityType")
926       {
927         // set SMESH.EntityType instead of a numerical Threshold
928         const int nbTypes = SMESH::Entity_Last;
929         const char* types[nbTypes] = {
930           "Entity_Node", "Entity_0D", "Entity_Edge", "Entity_Quad_Edge",
931           "Entity_Triangle", "Entity_Quad_Triangle", "Entity_BiQuad_Triangle",
932           "Entity_Quadrangle", "Entity_Quad_Quadrangle", "Entity_BiQuad_Quadrangle",
933           "Entity_Polygon", "Entity_Quad_Polygon", "Entity_Tetra", "Entity_Quad_Tetra",
934           "Entity_Pyramid", "Entity_Quad_Pyramid",
935           "Entity_Hexa", "Entity_Quad_Hexa", "Entity_TriQuad_Hexa",
936           "Entity_Penta", "Entity_Quad_Penta", "Entity_Hexagonal_Prism",
937           "Entity_Polyhedra", "Entity_Quad_Polyhedra", "Entity_Ball" };
938         if ( -1 < iGeom && iGeom < nbTypes )
939           Threshold = SMESH + types[ iGeom ];
940 #ifdef _DEBUG_
941         // is types complete? (compilation failure mains that enum EntityType changed)
942         int _assert[( sizeof(types) / sizeof(const char*) == nbTypes ) ? 1 : -1 ];
943 #endif
944       }
945     }
946     if ( ThresholdID.Length() != 2 ) // neither '' nor ""
947       aCommand->SetArg( 4, ThresholdID.SubString( 2, ThresholdID.Length()-1 )); // shape entry
948     else if ( ThresholdStr.Length() != 2 )
949       aCommand->SetArg( 4, ThresholdStr );
950     else if ( ThresholdID.Length() != 2 )
951       aCommand->SetArg( 4, ThresholdID );
952     else
953       aCommand->SetArg( 4, Threshold );
954     // find the last not default arg
955     int lastDefault = 8;
956     if ( Tolerance == dfltTol ) {
957       lastDefault = 7;
958       if ( BinaryOp == dfltFunctor ) {
959         lastDefault = 6;
960         if ( UnaryOp == dfltFunctor )
961           lastDefault = 5;
962       }
963     }
964     if ( 5 < lastDefault ) aCommand->SetArg( 5, UnaryOp );
965     if ( 6 < lastDefault ) aCommand->SetArg( 6, BinaryOp );
966     if ( 7 < lastDefault ) aCommand->SetArg( 7, Tolerance );
967     if ( Precision != dfltPreci )
968     {
969       TCollection_AsciiString crit = aCommand->GetResultValue();
970       aCommand->GetString() += "; ";
971       aCommand->GetString() += crit + ".Precision = " + Precision;
972     }
973   }
974   return aCommand;
975 }
976
977 //================================================================================
978 /*!
979  * \brief Convert the command or remember it for later conversion
980   * \param theCommand - The python command calling a method of SMESH_Gen
981  */
982 //================================================================================
983
984 void _pyGen::Process( const Handle(_pyCommand)& theCommand )
985 {
986   // there are methods to convert:
987   // CreateMesh( shape )
988   // Concatenate( [mesh1, ...], ... )
989   // CreateHypothesis( theHypType, theLibName )
990   // Compute( mesh, geom )
991   // Evaluate( mesh, geom )
992   // mesh creation
993   TCollection_AsciiString method = theCommand->GetMethod();
994
995   if ( method == "CreateMesh" || method == "CreateEmptyMesh")
996   {
997     Handle(_pyMesh) mesh = new _pyMesh( theCommand );
998     AddObject( mesh );
999     return;
1000   }
1001   if ( method == "CreateMeshesFromUNV" ||
1002        method == "CreateMeshesFromSTL" ||
1003        method == "CopyMesh" ) // command result is a mesh
1004   {
1005     Handle(_pyMesh) mesh = new _pyMesh( theCommand, theCommand->GetResultValue() );
1006     AddObject( mesh );
1007     return;
1008   }
1009   if( method == "CreateMeshesFromMED" ||
1010       method == "CreateMeshesFromSAUV"||
1011       method == "CreateMeshesFromCGNS" ||
1012       method == "CreateMeshesFromGMF" ) // command result is ( [mesh1,mesh2], status )
1013   {
1014     std::list< _pyID > meshIDs = theCommand->GetStudyEntries( theCommand->GetResultValue() );
1015     std::list< _pyID >::iterator meshID = meshIDs.begin();
1016     for ( ; meshID != meshIDs.end(); ++meshID )
1017     {
1018       Handle(_pyMesh) mesh = new _pyMesh( theCommand, *meshID );
1019       AddObject( mesh );
1020     }
1021     if ( method == "CreateMeshesFromGMF" )
1022     {
1023       // CreateMeshesFromGMF( theFileName, theMakeRequiredGroups ) ->
1024       // CreateMeshesFromGMF( theFileName )
1025       _AString file = theCommand->GetArg(1);
1026       theCommand->RemoveArgs();
1027       theCommand->SetArg( 1, file );
1028     }
1029   }
1030
1031   // CreateHypothesis()
1032   if ( method == "CreateHypothesis" )
1033   {
1034     // issue 199929, remove standard library name (default parameter)
1035     const TCollection_AsciiString & aLibName = theCommand->GetArg( 2 );
1036     if ( aLibName.Search( "StdMeshersEngine" ) != -1 ) {
1037       // keep the first argument
1038       TCollection_AsciiString arg = theCommand->GetArg( 1 );
1039       theCommand->RemoveArgs();
1040       theCommand->SetArg( 1, arg );
1041     }
1042
1043     Handle(_pyHypothesis) hyp = _pyHypothesis::NewHypothesis( theCommand );
1044     CheckObjectIsReCreated( hyp );
1045     myHypos.insert( make_pair( hyp->GetID(), hyp ));
1046
1047     return;
1048   }
1049
1050   // smeshgen.Compute( mesh, geom ) --> mesh.Compute()
1051   if ( method == "Compute" )
1052   {
1053     const _pyID& meshID = theCommand->GetArg( 1 );
1054     map< _pyID, Handle(_pyMesh) >::iterator id_mesh = myMeshes.find( meshID );
1055     if ( id_mesh != myMeshes.end() ) {
1056       theCommand->SetObject( meshID );
1057       theCommand->RemoveArgs();
1058       id_mesh->second->Process( theCommand );
1059       id_mesh->second->AddProcessedCmd( theCommand );
1060       return;
1061     }
1062   }
1063
1064   // smeshgen.Evaluate( mesh, geom ) --> mesh.Evaluate(geom)
1065   if ( method == "Evaluate" )
1066   {
1067     const _pyID& meshID = theCommand->GetArg( 1 );
1068     map< _pyID, Handle(_pyMesh) >::iterator id_mesh = myMeshes.find( meshID );
1069     if ( id_mesh != myMeshes.end() ) {
1070       theCommand->SetObject( meshID );
1071       _pyID geom = theCommand->GetArg( 2 );
1072       theCommand->RemoveArgs();
1073       theCommand->SetArg( 1, geom );
1074       id_mesh->second->AddProcessedCmd( theCommand );
1075       return;
1076     }
1077   }
1078
1079   // objects erasing creation command if no more its commands invoked:
1080   // SMESH_Pattern, FilterManager
1081   if ( method == "GetPattern" ||
1082        method == "CreateFilterManager" ||
1083        method == "CreateMeasurements" )
1084   {
1085     Handle(_pyObject) obj = new _pySelfEraser( theCommand );
1086     if ( !AddObject( obj ) )
1087       theCommand->Clear(); // already created
1088   }
1089   // Concatenate( [mesh1, ...], ... )
1090   else if ( method == "Concatenate" || method == "ConcatenateWithGroups")
1091   {
1092     if ( method == "ConcatenateWithGroups" ) {
1093       theCommand->SetMethod( "Concatenate" );
1094       theCommand->SetArg( theCommand->GetNbArgs() + 1, "True" );
1095     }
1096     Handle(_pyMesh) mesh = new _pyMesh( theCommand, theCommand->GetResultValue() );
1097     AddObject( mesh );
1098     AddMeshAccessorMethod( theCommand );
1099   }
1100   else if ( method == "SetName" ) // SetName(obj,name)
1101   {
1102     // store theCommand as one of object commands to erase it along with the object
1103     const _pyID& objID = theCommand->GetArg( 1 );
1104     Handle(_pyObject) obj = FindObject( objID );
1105     if ( !obj.IsNull() )
1106       obj->AddProcessedCmd( theCommand );
1107   }
1108
1109   // Replace name of SMESH_Gen
1110
1111   // names of SMESH_Gen methods fully equal to methods defined in smeshBuilder.py
1112   static TStringSet smeshpyMethods;
1113   if ( smeshpyMethods.empty() ) {
1114     const char * names[] =
1115       { "SetEmbeddedMode","IsEmbeddedMode","SetCurrentStudy","GetCurrentStudy",
1116         "GetPattern","GetSubShapesId",
1117         "" }; // <- mark of array end
1118     smeshpyMethods.Insert( names );
1119   }
1120   if ( smeshpyMethods.Contains( theCommand->GetMethod() ))
1121     // smeshgen.Method() --> smesh.Method()
1122     theCommand->SetObject( SMESH_2smeshpy::SmeshpyName() );
1123   else
1124     // smeshgen.Method() --> smesh.Method()
1125     theCommand->SetObject( SMESH_2smeshpy::GenName() );
1126 }
1127
1128 //================================================================================
1129 /*!
1130  * \brief Convert the remembered commands
1131  */
1132 //================================================================================
1133
1134 void _pyGen::Flush()
1135 {
1136   // create an empty command
1137   myLastCommand = new _pyCommand();
1138
1139   map< _pyID, Handle(_pyMesh) >::iterator id_mesh;
1140   map< _pyID, Handle(_pyObject) >::iterator id_obj;
1141   map< _pyID, Handle(_pyHypothesis) >::iterator id_hyp;
1142
1143   if ( IsToKeepAllCommands() ) // historical dump
1144   {
1145     // set myIsPublished = true to all objects
1146     for ( id_mesh = myMeshes.begin(); id_mesh != myMeshes.end(); ++id_mesh )
1147       id_mesh->second->SetRemovedFromStudy( false );
1148     for ( id_hyp = myHypos.begin(); id_hyp != myHypos.end(); ++id_hyp )
1149       id_hyp->second->SetRemovedFromStudy( false );
1150     for ( id_obj = myObjects.begin(); id_obj != myObjects.end(); ++id_obj )
1151       id_obj->second->SetRemovedFromStudy( false );
1152   }
1153   else
1154   {
1155     // let hypotheses find referred objects in order to prevent clearing
1156     // not published referred hyps (it's needed for hyps like "LayerDistribution")
1157     list< Handle(_pyMesh) > fatherMeshes;
1158     for ( id_hyp = myHypos.begin(); id_hyp != myHypos.end(); ++id_hyp )
1159       if ( !id_hyp->second.IsNull() )
1160         id_hyp->second->GetReferredMeshesAndGeom( fatherMeshes );
1161   }
1162   // set myIsPublished = false to all objects depending on
1163   // meshes built on a removed geometry
1164   for ( id_mesh = myMeshes.begin(); id_mesh != myMeshes.end(); ++id_mesh )
1165     if ( id_mesh->second->IsNotGeomPublished() )
1166       id_mesh->second->SetRemovedFromStudy( true );
1167
1168   // Flush meshes
1169   for ( id_mesh = myMeshes.begin(); id_mesh != myMeshes.end(); ++id_mesh )
1170     if ( ! id_mesh->second.IsNull() )
1171       id_mesh->second->Flush();
1172
1173   // Flush hyps
1174   for ( id_hyp = myHypos.begin(); id_hyp != myHypos.end(); ++id_hyp )
1175     if ( !id_hyp->second.IsNull() ) {
1176       id_hyp->second->Flush();
1177       // smeshgen.CreateHypothesis() --> smesh.CreateHypothesis()
1178       if ( !id_hyp->second->IsWrapped() )
1179         id_hyp->second->GetCreationCmd()->SetObject( SMESH_2smeshpy::GenName() );
1180     }
1181
1182   // Flush other objects. 2 times, for objects depending on Flush() of later created objects
1183   std::list< Handle(_pyObject) >::reverse_iterator robj = myOrderedObjects.rbegin();
1184   for ( ; robj != myOrderedObjects.rend(); ++robj )
1185     if ( ! robj->IsNull() )
1186       (*robj)->Flush();
1187   std::list< Handle(_pyObject) >::iterator obj = myOrderedObjects.begin();
1188   for ( ; obj != myOrderedObjects.end(); ++obj )
1189     if ( ! obj->IsNull() )
1190       (*obj)->Flush();
1191
1192   myLastCommand->SetOrderNb( ++myNbCommands );
1193   myCommands.push_back( myLastCommand );
1194 }
1195
1196 //================================================================================
1197 /*!
1198  * \brief Prevent moving a command creating a sub-mesh to the end of the script
1199  *        if the sub-mesh is used in theCmdUsingSubmesh as argument
1200  */
1201 //================================================================================
1202
1203 void _pyGen::PlaceSubmeshAfterItsCreation( Handle(_pyCommand) theCmdUsingSubmesh ) const
1204 {
1205   // map< _pyID, Handle(_pyObject) >::const_iterator id_obj = myObjects.begin();
1206   // for ( ; id_obj != myObjects.end(); ++id_obj )
1207   // {
1208   //   if ( !id_obj->second->IsKind( STANDARD_TYPE( _pySubMesh ))) continue;
1209   //   for ( int iArg = theCmdUsingSubmesh->GetNbArgs(); iArg; --iArg )
1210   //   {
1211   //     const _pyID& arg = theCmdUsingSubmesh->GetArg( iArg );
1212   //     if ( arg.IsEmpty() || arg.Value( 1 ) == '"' || arg.Value( 1 ) == '\'' )
1213   //       continue;
1214   //     list< _pyID > idList = theCmdUsingSubmesh->GetStudyEntries( arg );
1215   //     list< _pyID >::iterator id = idList.begin();
1216   //     for ( ; id != idList.end(); ++id )
1217   //       if ( id_obj->first == *id )
1218   //         // _pySubMesh::Process() does what we need
1219   //         Handle(_pySubMesh)::DownCast( id_obj->second )->Process( theCmdUsingSubmesh );
1220   //   }
1221   // }
1222 }
1223
1224 //================================================================================
1225 /*!
1226  * \brief Clean commmands of removed objects depending on myIsPublished flag
1227  */
1228 //================================================================================
1229
1230 void _pyGen::ClearCommands()
1231 {
1232   map< _pyID, Handle(_pyMesh) >::iterator id_mesh = myMeshes.begin();
1233   for ( ; id_mesh != myMeshes.end(); ++id_mesh )
1234     id_mesh->second->ClearCommands();
1235
1236   map< _pyID, Handle(_pyHypothesis) >::iterator id_hyp = myHypos.begin();
1237   for ( ; id_hyp != myHypos.end(); ++id_hyp )
1238     if ( !id_hyp->second.IsNull() )
1239       id_hyp->second->ClearCommands();
1240
1241   // Other objects. 2 times, for objects depending on ClearCommands() of later created objects
1242   std::list< Handle(_pyObject) >::reverse_iterator robj = myOrderedObjects.rbegin();
1243   for ( ; robj != myOrderedObjects.rend(); ++robj )
1244     if ( ! robj->IsNull() )
1245       (*robj)->ClearCommands();
1246   std::list< Handle(_pyObject) >::iterator obj = myOrderedObjects.begin();
1247   for ( ; obj != myOrderedObjects.end(); ++obj )
1248     if ( ! obj->IsNull() )
1249       (*obj)->ClearCommands();
1250 }
1251
1252 //================================================================================
1253 /*!
1254  * \brief Release mutual handles of objects
1255  */
1256 //================================================================================
1257
1258 void _pyGen::Free()
1259 {
1260   map< _pyID, Handle(_pyMesh) >::iterator id_mesh = myMeshes.begin();
1261   for ( ; id_mesh != myMeshes.end(); ++id_mesh )
1262     id_mesh->second->Free();
1263   myMeshes.clear();
1264
1265   map< _pyID, Handle(_pyMeshEditor) >::iterator id_ed = myMeshEditors.begin();
1266   for ( ; id_ed != myMeshEditors.end(); ++id_ed )
1267     id_ed->second->Free();
1268   myMeshEditors.clear();
1269
1270   map< _pyID, Handle(_pyObject) >::iterator id_obj = myObjects.begin();
1271   for ( ; id_obj != myObjects.end(); ++id_obj )
1272     id_obj->second->Free();
1273   myObjects.clear();
1274
1275   map< _pyID, Handle(_pyHypothesis) >::iterator id_hyp = myHypos.begin();
1276   for ( ; id_hyp != myHypos.end(); ++id_hyp )
1277     if ( !id_hyp->second.IsNull() )
1278       id_hyp->second->Free();
1279   myHypos.clear();
1280
1281   myFile2ExportedMesh.clear();
1282
1283   //myKeepAgrCmdsIDs.Print();
1284 }
1285
1286 //================================================================================
1287 /*!
1288  * \brief Add access method to mesh that is an argument
1289   * \param theCmd - command to add access method
1290   * \retval bool - true if added
1291  */
1292 //================================================================================
1293
1294 bool _pyGen::AddMeshAccessorMethod( Handle(_pyCommand) theCmd ) const
1295 {
1296   bool added = false;
1297   map< _pyID, Handle(_pyMesh) >::const_iterator id_mesh = myMeshes.begin();
1298   for ( ; id_mesh != myMeshes.end(); ++id_mesh ) {
1299     if ( theCmd->AddAccessorMethod( id_mesh->first, id_mesh->second->AccessorMethod() ))
1300       added = true;
1301   }
1302   return added;
1303 }
1304
1305 //================================================================================
1306 /*!
1307  * \brief Add access method to algo that is an object or an argument
1308   * \param theCmd - command to add access method
1309   * \retval bool - true if added
1310  */
1311 //================================================================================
1312
1313 bool _pyGen::AddAlgoAccessorMethod( Handle(_pyCommand) theCmd ) const
1314 {
1315   bool added = false;
1316   map< _pyID, Handle(_pyHypothesis) >::const_iterator id_hyp = myHypos.begin();
1317   for ( ; id_hyp != myHypos.end(); ++id_hyp )
1318     if ( !id_hyp->second.IsNull() &&
1319          id_hyp->second->IsAlgo() && /*(*hyp)->IsWrapped() &&*/
1320          theCmd->AddAccessorMethod( id_hyp->second->GetID(),
1321                                     id_hyp->second->AccessorMethod() ))
1322       added = true;
1323
1324   return added;
1325 }
1326
1327 //================================================================================
1328 /*!
1329  * \brief Find hypothesis by ID (entry)
1330   * \param theHypID - The hypothesis ID
1331   * \retval Handle(_pyHypothesis) - The found hypothesis
1332  */
1333 //================================================================================
1334
1335 Handle(_pyHypothesis) _pyGen::FindHyp( const _pyID& theHypID )
1336 {
1337   map< _pyID, Handle(_pyHypothesis) >::iterator id_hyp = myHypos.find( theHypID );
1338   if ( id_hyp != myHypos.end() &&
1339        !id_hyp->second.IsNull() &&
1340        theHypID == id_hyp->second->GetID() )
1341     return id_hyp->second;
1342   return Handle(_pyHypothesis)();
1343 }
1344
1345 //================================================================================
1346 /*!
1347  * \brief Find algorithm able to create a hypothesis
1348   * \param theGeom - The shape ID the algorithm was created on
1349   * \param theMesh - The mesh ID that created the algorithm
1350   * \param theHypothesis - The hypothesis the algorithm sould be able to create
1351   * \retval Handle(_pyHypothesis) - The found algo
1352  */
1353 //================================================================================
1354
1355 Handle(_pyHypothesis) _pyGen::FindAlgo( const _pyID& theGeom, const _pyID& theMesh,
1356                                         const Handle(_pyHypothesis)& theHypothesis )
1357 {
1358   map< _pyID, Handle(_pyHypothesis) >::iterator id_hyp = myHypos.begin();
1359   for ( ; id_hyp != myHypos.end(); ++id_hyp )
1360     if ( !id_hyp->second.IsNull() &&
1361          id_hyp->second->IsAlgo() &&
1362          theHypothesis->CanBeCreatedBy( id_hyp->second->GetAlgoType() ) &&
1363          id_hyp->second->GetGeom() == theGeom &&
1364          id_hyp->second->GetMesh() == theMesh )
1365       return id_hyp->second;
1366   return Handle(_pyHypothesis)();
1367 }
1368
1369 //================================================================================
1370 /*!
1371  * \brief Find subMesh by ID (entry)
1372   * \param theSubMeshID - The subMesh ID
1373   * \retval Handle(_pySubMesh) - The found subMesh
1374  */
1375 //================================================================================
1376
1377 Handle(_pySubMesh) _pyGen::FindSubMesh( const _pyID& theSubMeshID )
1378 {
1379   map< _pyID, Handle(_pyObject) >::iterator id_subMesh = myObjects.find(theSubMeshID);
1380   if ( id_subMesh != myObjects.end() )
1381     return Handle(_pySubMesh)::DownCast( id_subMesh->second );
1382   return Handle(_pySubMesh)();
1383 }
1384
1385
1386 //================================================================================
1387 /*!
1388  * \brief Change order of commands in the script
1389   * \param theCmd1 - One command
1390   * \param theCmd2 - Another command
1391  */
1392 //================================================================================
1393
1394 void _pyGen::ExchangeCommands( Handle(_pyCommand) theCmd1, Handle(_pyCommand) theCmd2 )
1395 {
1396   list< Handle(_pyCommand) >::iterator pos1, pos2;
1397   pos1 = find( myCommands.begin(), myCommands.end(), theCmd1 );
1398   pos2 = find( myCommands.begin(), myCommands.end(), theCmd2 );
1399   myCommands.insert( pos1, theCmd2 );
1400   myCommands.insert( pos2, theCmd1 );
1401   myCommands.erase( pos1 );
1402   myCommands.erase( pos2 );
1403
1404   int nb1 = theCmd1->GetOrderNb();
1405   theCmd1->SetOrderNb( theCmd2->GetOrderNb() );
1406   theCmd2->SetOrderNb( nb1 );
1407 //   cout << "BECOME " << theCmd1->GetOrderNb() << "\t" << theCmd1->GetString() << endl
1408 //        << "BECOME " << theCmd2->GetOrderNb() << "\t" << theCmd2->GetString() << endl << endl;
1409 }
1410
1411 //================================================================================
1412 /*!
1413  * \brief Set one command after the other
1414   * \param theCmd - Command to move
1415   * \param theAfterCmd - Command ater which to insert the first one
1416  */
1417 //================================================================================
1418
1419 void _pyGen::SetCommandAfter( Handle(_pyCommand) theCmd, Handle(_pyCommand) theAfterCmd )
1420 {
1421   setNeighbourCommand( theCmd, theAfterCmd, true );
1422 }
1423
1424 //================================================================================
1425 /*!
1426  * \brief Set one command before the other
1427   * \param theCmd - Command to move
1428   * \param theBeforeCmd - Command before which to insert the first one
1429  */
1430 //================================================================================
1431
1432 void _pyGen::SetCommandBefore( Handle(_pyCommand) theCmd, Handle(_pyCommand) theBeforeCmd )
1433 {
1434   setNeighbourCommand( theCmd, theBeforeCmd, false );
1435 }
1436
1437 //================================================================================
1438 /*!
1439  * \brief Set one command before or after the other
1440   * \param theCmd - Command to move
1441   * \param theOtherCmd - Command ater or before which to insert the first one
1442  */
1443 //================================================================================
1444
1445 void _pyGen::setNeighbourCommand( Handle(_pyCommand)& theCmd,
1446                                   Handle(_pyCommand)& theOtherCmd,
1447                                   const bool theIsAfter )
1448 {
1449   list< Handle(_pyCommand) >::iterator pos;
1450   pos = find( myCommands.begin(), myCommands.end(), theCmd );
1451   myCommands.erase( pos );
1452   pos = find( myCommands.begin(), myCommands.end(), theOtherCmd );
1453   myCommands.insert( (theIsAfter ? ++pos : pos), theCmd );
1454
1455   int i = 1;
1456   for ( pos = myCommands.begin(); pos != myCommands.end(); ++pos)
1457     (*pos)->SetOrderNb( i++ );
1458 }
1459
1460 //================================================================================
1461 /*!
1462  * \brief Call _pyFilter.AddUser() if a filter is used as a command arg
1463  */
1464 //================================================================================
1465
1466 // void _pyGen::addFilterUser( Handle(_pyCommand)& theCommand, const Handle(_pyObject)& user )
1467 // {
1468   // No more needed after adding _pyObject::myArgCommands
1469
1470 //   const char filterPrefix[] = "aFilter0x";
1471 //   if ( theCommand->GetString().Search( filterPrefix ) < 1 )
1472 //     return;
1473
1474 //   for ( int i = theCommand->GetNbArgs(); i > 0; --i )
1475 //   {
1476 //     const _AString & arg = theCommand->GetArg( i );
1477 //     // NOT TREATED CASE: arg == "[something, aFilter0x36a2f60]"
1478 //     if ( arg.Search( filterPrefix ) != 1 )
1479 //       continue;
1480
1481 //     Handle(_pyFilter) filter = Handle(_pyFilter)::DownCast( FindObject( arg ));
1482 //     if ( !filter.IsNull() )
1483 //     {
1484 //       filter->AddUser( user );
1485 //       if ( !filter->GetNewID().IsEmpty() )
1486 //         theCommand->SetArg( i, filter->GetNewID() );
1487 //     }
1488 //   }
1489 //}
1490
1491 //================================================================================
1492 /*!
1493  * \brief Set command be last in list of commands
1494   * \param theCmd - Command to be last
1495  */
1496 //================================================================================
1497
1498 Handle(_pyCommand)& _pyGen::GetLastCommand()
1499 {
1500   return myLastCommand;
1501 }
1502
1503 //================================================================================
1504 /*!
1505  * \brief Set method to access to object wrapped with python class
1506   * \param theID - The wrapped object entry
1507   * \param theMethod - The accessor method
1508  */
1509 //================================================================================
1510
1511 void _pyGen::SetAccessorMethod(const _pyID& theID, const char* theMethod )
1512 {
1513   myID2AccessorMethod.Bind( theID, (char*) theMethod );
1514 }
1515
1516 //================================================================================
1517 /*!
1518  * \brief Generated new ID for object and assign with existing name
1519   * \param theID - ID of existing object
1520  */
1521 //================================================================================
1522
1523 _pyID _pyGen::GenerateNewID( const _pyID& theID )
1524 {
1525   int index = 1;
1526   _pyID aNewID;
1527   do {
1528     aNewID = theID + _pyID( ":" ) + _pyID( index++ );
1529   }
1530   while ( myObjectNames.IsBound( aNewID ) );
1531
1532   myObjectNames.Bind( aNewID, myObjectNames.IsBound( theID )
1533                       ? (myObjectNames.Find( theID ) + _pyID( "_" ) + _pyID( index-1 ))
1534                       : _pyID( "A" ) + aNewID );
1535   return aNewID;
1536 }
1537
1538 //================================================================================
1539 /*!
1540  * \brief Stores theObj in myObjects
1541  */
1542 //================================================================================
1543
1544 bool _pyGen::AddObject( Handle(_pyObject)& theObj )
1545 {
1546   if ( theObj.IsNull() ) return false;
1547
1548   CheckObjectIsReCreated( theObj );
1549
1550   bool add;
1551
1552   if ( theObj->IsKind( STANDARD_TYPE( _pyMesh ))) {
1553     add = myMeshes.insert( make_pair( theObj->GetID(),
1554                                       Handle(_pyMesh)::DownCast( theObj ))).second;
1555   }
1556   else if ( theObj->IsKind( STANDARD_TYPE( _pyMeshEditor ))) {
1557     add = myMeshEditors.insert( make_pair( theObj->GetID(),
1558                                           Handle(_pyMeshEditor)::DownCast( theObj ))).second;
1559   }
1560   else {
1561     add = myObjects.insert( make_pair( theObj->GetID(), theObj )).second;
1562     if ( add ) myOrderedObjects.push_back( theObj );
1563   }
1564   return add;
1565 }
1566
1567 //================================================================================
1568 /*!
1569  * \brief Erases an existing object with the same ID. This method should be called
1570  *        before storing theObj in _pyGen
1571  */
1572 //================================================================================
1573
1574 void _pyGen::CheckObjectIsReCreated( Handle(_pyObject)& theObj )
1575 {
1576   if ( theObj.IsNull() || !_pyCommand::IsStudyEntry( theObj->GetID() ))
1577     return;
1578
1579   const bool isHyp = theObj->IsKind( STANDARD_TYPE( _pyHypothesis ));
1580   Handle(_pyObject) existing =
1581     isHyp ? FindHyp( theObj->GetID() ) : FindObject( theObj->GetID() );
1582   if ( !existing.IsNull() && existing != theObj )
1583   {
1584     existing->SetRemovedFromStudy( true );
1585     existing->ClearCommands();
1586     if ( isHyp )
1587     {
1588       if ( myHypos.count( theObj->GetID() ))
1589         myHypos.erase( theObj->GetID() );
1590     }
1591     else if ( myMeshes.count( theObj->GetID() ))
1592     {
1593       myMeshes.erase( theObj->GetID() );
1594     }
1595     else if ( myObjects.count( theObj->GetID() ))
1596     {
1597       myObjects.erase( theObj->GetID() );
1598     }
1599   }
1600 }
1601
1602 //================================================================================
1603 /*!
1604  * \brief Re-register an object with other ID to make it Process() commands of
1605  * other object having this ID
1606  */
1607 //================================================================================
1608
1609 void _pyGen::SetProxyObject( const _pyID& theID, Handle(_pyObject)& theObj )
1610 {
1611   if ( theObj.IsNull() ) return;
1612
1613   if ( theObj->IsKind( STANDARD_TYPE( _pyMesh )))
1614     myMeshes.insert( make_pair( theID, Handle(_pyMesh)::DownCast( theObj )));
1615
1616   else if ( theObj->IsKind( STANDARD_TYPE( _pyMeshEditor )))
1617     myMeshEditors.insert( make_pair( theID, Handle(_pyMeshEditor)::DownCast( theObj )));
1618
1619   else
1620     myObjects.insert( make_pair( theID, theObj ));
1621 }
1622
1623 //================================================================================
1624 /*!
1625  * \brief Finds a _pyObject by ID
1626  */
1627 //================================================================================
1628
1629 Handle(_pyObject) _pyGen::FindObject( const _pyID& theObjID )  const
1630 {
1631   {
1632     map< _pyID, Handle(_pyObject) >::const_iterator id_obj = myObjects.find( theObjID );
1633     if ( id_obj != myObjects.end() )
1634       return id_obj->second;
1635   }
1636   {
1637     map< _pyID, Handle(_pyMesh) >::const_iterator id_obj = myMeshes.find( theObjID );
1638     if ( id_obj != myMeshes.end() )
1639       return id_obj->second;
1640   }
1641   // {
1642   //   map< _pyID, Handle(_pyMeshEditor) >::const_iterator id_obj = myMeshEditors.find( theObjID );
1643   //   if ( id_obj != myMeshEditors.end() )
1644   //     return id_obj->second;
1645   // }
1646   return Handle(_pyObject)();
1647 }
1648
1649 //================================================================================
1650 /*!
1651  * \brief Check if a study entry is under GEOM component
1652  */
1653 //================================================================================
1654
1655 bool _pyGen::IsGeomObject(const _pyID& theObjID) const
1656 {
1657   if ( myGeomIDNb )
1658   {
1659     return ( myGeomIDIndex <= theObjID.Length() &&
1660              int( theObjID.Value( myGeomIDIndex )) == myGeomIDNb &&
1661              _pyCommand::IsStudyEntry( theObjID ));
1662   }
1663   return false;
1664 }
1665
1666 //================================================================================
1667 /*!
1668  * \brief Returns true if an object is not present in a study
1669  */
1670 //================================================================================
1671
1672 bool _pyGen::IsNotPublished(const _pyID& theObjID) const
1673 {
1674   if ( theObjID.IsEmpty() ) return false;
1675
1676   if ( myObjectNames.IsBound( theObjID ))
1677     return false; // SMESH object is in study
1678
1679   // either the SMESH object is not in study or it is a GEOM object
1680   if ( IsGeomObject( theObjID ))
1681   {
1682     SALOMEDS::SObject_wrap so = myStudy->FindObjectID( theObjID.ToCString() );
1683     if ( so->_is_nil() ) return true;
1684     CORBA::Object_var obj = so->GetObject();
1685     return CORBA::is_nil( obj );
1686   }
1687   return true; // SMESH object not in study
1688 }
1689
1690 //================================================================================
1691 /*!
1692  * \brief Add an object to myRemovedObjIDs that leads to that SetName() for
1693  *        this object is not dumped
1694  *  \param [in] theObjID - entry of the object whose creation command was eliminated
1695  */
1696 //================================================================================
1697
1698 void _pyGen::ObjectCreationRemoved(const _pyID& theObjID)
1699 {
1700   myRemovedObjIDs.insert( theObjID );
1701 }
1702
1703 //================================================================================
1704 /*!
1705  * \brief Return reader of  hypotheses of plugins
1706  */
1707 //================================================================================
1708
1709 Handle( _pyHypothesisReader ) _pyGen::GetHypothesisReader() const
1710 {
1711   if (myHypReader.IsNull() )
1712     ((_pyGen*) this)->myHypReader = new _pyHypothesisReader;
1713
1714   return myHypReader;
1715 }
1716
1717
1718 //================================================================================
1719 /*!
1720  * \brief Mesh created by SMESH_Gen
1721  */
1722 //================================================================================
1723
1724 _pyMesh::_pyMesh(const Handle(_pyCommand) theCreationCmd)
1725   : _pyObject( theCreationCmd ), myGeomNotInStudy( false )
1726 {
1727   if ( theCreationCmd->GetMethod() == "CreateMesh" && theGen->IsNotPublished( GetGeom() ))
1728     myGeomNotInStudy = true;
1729
1730   // convert my creation command --> smeshpy.Mesh(...)
1731   Handle(_pyCommand) creationCmd = GetCreationCmd();
1732   creationCmd->SetObject( SMESH_2smeshpy::SmeshpyName() );
1733   creationCmd->SetMethod( "Mesh" );
1734   theGen->SetAccessorMethod( GetID(), _pyMesh::AccessorMethod() );
1735 }
1736
1737 //================================================================================
1738 /*!
1739  * \brief Mesh created by SMESH_MeshEditor
1740  */
1741 //================================================================================
1742
1743 _pyMesh::_pyMesh(const Handle(_pyCommand) theCreationCmd, const _pyID& meshId):
1744   _pyObject(theCreationCmd,meshId), myGeomNotInStudy(false )
1745 {
1746   if ( theCreationCmd->MethodStartsFrom( "CreateMeshesFrom" ))
1747   {
1748     // this mesh depends on the exported mesh
1749     const TCollection_AsciiString& file = theCreationCmd->GetArg( 1 );
1750     if ( !file.IsEmpty() )
1751     {
1752       ExportedMeshData& exportData = theGen->FindExportedMesh( file );
1753       addFatherMesh( exportData.myMesh );
1754       if ( !exportData.myLastComputeCmd.IsNull() )
1755       {
1756         // restore cleared Compute() by which the exported mesh was generated
1757         exportData.myLastComputeCmd->GetString() = exportData.myLastComputeCmdString;
1758         // protect that Compute() cmd from clearing
1759         if ( exportData.myMesh->myLastComputeCmd == exportData.myLastComputeCmd )
1760           exportData.myMesh->myLastComputeCmd.Nullify();
1761       }
1762     }
1763   }
1764   else if ( theCreationCmd->MethodStartsFrom( "Concatenate" ))
1765   {
1766     // this mesh depends on concatenated meshes
1767     const TCollection_AsciiString& meshIDs = theCreationCmd->GetArg( 1 );
1768     list< _pyID > idList = theCreationCmd->GetStudyEntries( meshIDs );
1769     list< _pyID >::iterator meshID = idList.begin();
1770     for ( ; meshID != idList.end(); ++meshID )
1771       addFatherMesh( *meshID );
1772   }
1773   else if ( theCreationCmd->GetMethod() == "CopyMesh" )
1774   {
1775     // this mesh depends on a copied IdSource
1776     const _pyID& objID = theCreationCmd->GetArg( 1 );
1777     addFatherMesh( objID );
1778   }
1779   else if ( theCreationCmd->GetMethod().Search("MakeMesh") != -1 ||
1780             theCreationCmd->GetMethod() == "MakeBoundaryMesh" ||
1781             theCreationCmd->GetMethod() == "MakeBoundaryElements" )
1782   {
1783     // this mesh depends on a source mesh
1784     // (theCreationCmd is already Process()ed by _pyMeshEditor)
1785     const _pyID& meshID = theCreationCmd->GetObject();
1786     addFatherMesh( meshID );
1787   }
1788     
1789   // convert my creation command
1790   Handle(_pyCommand) creationCmd = GetCreationCmd();
1791   creationCmd->SetObject( SMESH_2smeshpy::SmeshpyName() );
1792   theGen->SetAccessorMethod( meshId, _pyMesh::AccessorMethod() );
1793 }
1794
1795 //================================================================================
1796 /*!
1797  * \brief Convert an IDL API command of SMESH::SMESH_Mesh to a method call of python Mesh
1798   * \param theCommand - Engine method called for this mesh
1799  */
1800 //================================================================================
1801
1802 void _pyMesh::Process( const Handle(_pyCommand)& theCommand )
1803 {
1804   // some methods of SMESH_Mesh interface needs special conversion
1805   // to methods of Mesh python class
1806   //
1807   // 1. GetSubMesh(geom, name) + AddHypothesis(geom, algo)
1808   //     --> in Mesh_Algorithm.Create(mesh, geom, hypo, so)
1809   // 2. AddHypothesis(geom, hyp)
1810   //     --> in Mesh_Algorithm.Hypothesis(hyp, args, so)
1811   // 3. CreateGroupFromGEOM(type, name, grp)
1812   //     --> in Mesh.Group(grp, name="")
1813   // 4. ExportToMED(f, auto_groups, version)
1814   //     --> in Mesh.ExportMED( f, auto_groups, version )
1815   // 5. etc
1816
1817   const TCollection_AsciiString& method = theCommand->GetMethod();
1818   // ----------------------------------------------------------------------
1819   if ( method == "Compute" ) // in snapshot mode, clear the previous Compute()
1820   {
1821     if ( !theGen->IsToKeepAllCommands() ) // !historical
1822     {
1823       list< Handle(_pyHypothesis) >::iterator hyp;
1824       if ( !myLastComputeCmd.IsNull() )
1825       {
1826         // check if the previously computed mesh has been edited,
1827         // if so then we do not clear the previous Compute()
1828         bool toClear = true;
1829         if ( myLastComputeCmd->GetMethod() == "Compute" )
1830         {
1831           list< Handle(_pyMeshEditor)>::iterator e = myEditors.begin();
1832           for ( ; e != myEditors.end() && toClear; ++e )
1833           {
1834             list< Handle(_pyCommand)>& cmds = (*e)->GetProcessedCmds();
1835             list< Handle(_pyCommand) >::reverse_iterator cmd = cmds.rbegin();
1836             if ( cmd != cmds.rend() &&
1837                  (*cmd)->GetOrderNb() > myLastComputeCmd->GetOrderNb() )
1838               toClear = false;
1839           }
1840         }
1841         if ( toClear )
1842         {
1843           // clear hyp commands called before myLastComputeCmd
1844           for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
1845             (*hyp)->ComputeDiscarded( myLastComputeCmd );
1846
1847           myLastComputeCmd->Clear();
1848         }
1849       }
1850       myLastComputeCmd = theCommand;
1851
1852       for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
1853         (*hyp)->MeshComputed( myLastComputeCmd );
1854     }
1855     Flush();
1856   }
1857   // ----------------------------------------------------------------------
1858   else if ( method == "Clear" ) // in snapshot mode, clear all previous commands
1859   {
1860     if ( !theGen->IsToKeepAllCommands() ) // !historical
1861     {
1862       int untilCmdNb =
1863         myChildMeshes.empty() ? 0 : myChildMeshes.back()->GetCreationCmd()->GetOrderNb();
1864       // list< Handle(_pyCommand) >::reverse_iterator cmd = myProcessedCmds.rbegin();
1865       // for ( ; cmd != myProcessedCmds.rend() && (*cmd)->GetOrderNb() > untilCmdNb; ++cmd )
1866       //   (*cmd)->Clear();
1867       if ( !myLastComputeCmd.IsNull() )
1868       {
1869         list< Handle(_pyHypothesis) >::iterator hyp;
1870         for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
1871           (*hyp)->ComputeDiscarded( myLastComputeCmd );
1872
1873         myLastComputeCmd->Clear();
1874       }
1875
1876       list< Handle(_pyMeshEditor)>::iterator e = myEditors.begin();
1877       for ( ; e != myEditors.end(); ++e )
1878       {
1879         list< Handle(_pyCommand)>& cmds = (*e)->GetProcessedCmds();
1880         list< Handle(_pyCommand) >::reverse_iterator cmd = cmds.rbegin();
1881         for ( ; cmd != cmds.rend() && (*cmd)->GetOrderNb() > untilCmdNb; ++cmd )
1882           if ( !(*cmd)->IsEmpty() )
1883           {
1884             if ( (*cmd)->GetStudyEntries( (*cmd)->GetResultValue() ).empty() ) // no object created
1885               (*cmd)->Clear();
1886           }
1887       }
1888       myLastComputeCmd = theCommand; // to clear Clear() the same way as Compute()
1889     }
1890   }
1891   // ----------------------------------------------------------------------
1892   else if ( method == "GetSubMesh" ) { // collect sub-meshes of the mesh
1893     Handle(_pySubMesh) subMesh = theGen->FindSubMesh( theCommand->GetResultValue() );
1894     if ( !subMesh.IsNull() ) {
1895       subMesh->SetCreator( this );
1896       mySubmeshes.push_back( subMesh );
1897     }
1898   }
1899   // ----------------------------------------------------------------------
1900   else if ( method == "GetSubMeshes" ) { // clear as the command does nothing (0023156)
1901     theCommand->Clear();
1902   }
1903   // ----------------------------------------------------------------------
1904   else if ( method == "AddHypothesis" ) { // mesh.AddHypothesis(geom, HYPO )
1905     myAddHypCmds.push_back( theCommand );
1906     // set mesh to hypo
1907     const _pyID& hypID = theCommand->GetArg( 2 );
1908     Handle(_pyHypothesis) hyp = theGen->FindHyp( hypID );
1909     if ( !hyp.IsNull() ) {
1910       myHypos.push_back( hyp );
1911       if ( hyp->GetMesh().IsEmpty() )
1912         hyp->SetMesh( this->GetID() );
1913     }
1914   }
1915   // ----------------------------------------------------------------------
1916   else if ( method == "CreateGroup" ||
1917             method == "CreateGroupFromGEOM" ||
1918             method == "CreateGroupFromFilter" ||
1919             method == "CreateDimGroup" )
1920   {
1921     Handle(_pyGroup) group = new _pyGroup( theCommand );
1922     myGroups.push_back( group );
1923     theGen->AddObject( group );
1924   }
1925   // ----------------------------------------------------------------------
1926   // update list of groups
1927   else if ( method == "GetGroups" )
1928   {
1929     bool allGroupsRemoved = true;
1930     TCollection_AsciiString grIDs = theCommand->GetResultValue();
1931     list< _pyID >          idList = theCommand->GetStudyEntries( grIDs );
1932     list< _pyID >::iterator  grID = idList.begin();
1933     const int nbGroupsBefore = myGroups.size();
1934     Handle(_pyObject) obj;
1935     for ( ; grID != idList.end(); ++grID )
1936     {
1937       obj = theGen->FindObject( *grID );
1938       if ( obj.IsNull() )
1939       {
1940         Handle(_pyGroup) group = new _pyGroup( theCommand, *grID );
1941         theGen->AddObject( group );
1942         myGroups.push_back( group );
1943         obj = group;
1944       }
1945       if ( !obj->CanClear() )
1946         allGroupsRemoved = false;
1947     }
1948     if ( nbGroupsBefore == myGroups.size() ) // no new _pyGroup created
1949       obj->AddProcessedCmd( theCommand ); // to clear theCommand if all groups are removed
1950
1951     if ( !allGroupsRemoved && !theGen->IsToKeepAllCommands() )
1952     {
1953       // check if the preceding command is Compute();
1954       // if GetGroups() is just after Compute(), this can mean that the groups
1955       // were created by some algorithm and hence Compute() should not be discarded
1956       std::list< Handle(_pyCommand) >& cmdList = theGen->GetCommands();
1957       std::list< Handle(_pyCommand) >::iterator cmd = cmdList.begin();
1958       while ( (*cmd)->GetMethod() == "GetGroups" )
1959         ++cmd;
1960       if ( myLastComputeCmd == (*cmd))
1961         // protect last Compute() from clearing by the next Compute()
1962         myLastComputeCmd.Nullify();
1963     }
1964   }
1965   // ----------------------------------------------------------------------
1966   // notify a group about full removal
1967   else if ( method == "RemoveGroupWithContents" ||
1968             method == "RemoveGroup")
1969   {
1970     if ( !theGen->IsToKeepAllCommands() ) { // snapshot mode
1971       const _pyID groupID = theCommand->GetArg( 1 );
1972       Handle(_pyGroup) grp = Handle(_pyGroup)::DownCast( theGen->FindObject( groupID ));
1973       if ( !grp.IsNull() )
1974       {
1975         if ( method == "RemoveGroupWithContents" )
1976           grp->RemovedWithContents();
1977         // to clear RemoveGroup() if the group creation is cleared
1978         grp->AddProcessedCmd( theCommand );
1979       }
1980     }
1981   }
1982   // ----------------------------------------------------------------------
1983   else if ( theCommand->MethodStartsFrom( "Export" ))
1984   {
1985     if ( method == "ExportToMED" ||  // ExportToMED()  --> ExportMED()
1986          method == "ExportToMEDX" )  // ExportToMEDX() --> ExportMED()
1987     {
1988       theCommand->SetMethod( "ExportMED" );
1989       if ( theCommand->GetNbArgs() == 5 )
1990       {
1991         // ExportToMEDX(...,autoDimension) -> ExportToMEDX(...,meshPart=None,autoDimension)
1992         _AString autoDimension = theCommand->GetArg( 5 );
1993         theCommand->SetArg( 5, "None" );
1994         theCommand->SetArg( 6, autoDimension );
1995       }
1996     }
1997     else if ( method == "ExportCGNS" )
1998     { // ExportCGNS(part, ...) -> ExportCGNS(..., part)
1999       _pyID partID = theCommand->GetArg( 1 );
2000       int nbArgs = theCommand->GetNbArgs();
2001       for ( int i = 2; i <= nbArgs; ++i )
2002         theCommand->SetArg( i-1, theCommand->GetArg( i ));
2003       theCommand->SetArg( nbArgs, partID );
2004     }
2005     else if ( method == "ExportGMF" )
2006     { // ExportGMF(part,file,bool) -> ExportCGNS(file, part)
2007       _pyID partID  = theCommand->GetArg( 1 );
2008       _AString file = theCommand->GetArg( 2 );
2009       theCommand->RemoveArgs();
2010       theCommand->SetArg( 1, file );
2011       theCommand->SetArg( 2, partID );
2012     }
2013     else if ( theCommand->MethodStartsFrom( "ExportPartTo" ))
2014     { // ExportPartTo*(part, ...) -> Export*(..., part)
2015       //
2016       // remove "PartTo" from the method
2017       TCollection_AsciiString newMethod = method;
2018       newMethod.Remove( /*where=*/7, /*howmany=*/6 );
2019       theCommand->SetMethod( newMethod );
2020       // make the 1st arg be the last one (or last but three for ExportMED())
2021       _pyID partID = theCommand->GetArg( 1 );
2022       int nbArgs = theCommand->GetNbArgs() - 3 * (newMethod == "ExportMED");
2023       for ( int i = 2; i <= nbArgs; ++i )
2024         theCommand->SetArg( i-1, theCommand->GetArg( i ));
2025       theCommand->SetArg( nbArgs, partID );
2026     }
2027     // remember file name
2028     theGen->AddExportedMesh( theCommand->GetArg( 1 ),
2029                              ExportedMeshData( this, myLastComputeCmd ));
2030   }
2031   // ----------------------------------------------------------------------
2032   else if ( method == "RemoveHypothesis" ) // (geom, hyp)
2033   {
2034     _pyID hypID  = theCommand->GetArg( 2 );
2035     _pyID geomID = theCommand->GetArg( 1 );
2036     bool isLocal = ( geomID != GetGeom() );
2037
2038     // check if this mesh still has corresponding addition command
2039     Handle(_pyCommand) addCmd;
2040     list< Handle(_pyCommand) >::iterator cmd;
2041     list< Handle(_pyCommand) >* addCmds[2] = { &myAddHypCmds, &myNotConvertedAddHypCmds };
2042     for ( int i = 0; i < 2; ++i )
2043     {
2044       list< Handle(_pyCommand )> & addHypCmds = *(addCmds[i]);
2045       for ( cmd = addHypCmds.begin(); cmd != addHypCmds.end(); )
2046       {
2047         bool sameHyp = true;
2048         if ( hypID != (*cmd)->GetArg( 1 ) && hypID != (*cmd)->GetArg( 2 ))
2049           sameHyp = false; // other hyp
2050         if ( (*cmd)->GetNbArgs() == 2 &&
2051              geomID != (*cmd)->GetArg( 1 ) && geomID != (*cmd)->GetArg( 2 ))
2052           sameHyp = false; // other geom
2053         if ( (*cmd)->GetNbArgs() == 1 && isLocal )
2054           sameHyp = false; // other geom
2055         if ( sameHyp )
2056         {
2057           addCmd = *cmd;
2058           cmd    = addHypCmds.erase( cmd );
2059           if ( !theGen->IsToKeepAllCommands() && CanClear() ) {
2060             addCmd->Clear();
2061             theCommand->Clear();
2062           }
2063           else
2064           {
2065             // mesh.AddHypothesis(geom, hyp) --> mesh.AddHypothesis(hyp, geom=0)
2066             addCmd->RemoveArgs();
2067             addCmd->SetArg( 1, hypID );
2068             if ( isLocal )
2069               addCmd->SetArg( 2, geomID );
2070           }
2071         }
2072         else
2073         {
2074           ++cmd;
2075         }
2076       }
2077     }
2078     Handle(_pyHypothesis) hyp = theGen->FindHyp( hypID );
2079     if ( !theCommand->IsEmpty() && !hypID.IsEmpty() ) {
2080       // RemoveHypothesis(geom, hyp) --> RemoveHypothesis( hyp, geom=0 )
2081       _pyID geom = theCommand->GetArg( 1 );
2082       theCommand->RemoveArgs();
2083       theCommand->SetArg( 1, hypID );
2084       if ( geom != GetGeom() )
2085         theCommand->SetArg( 2, geom );
2086     }
2087     // remove hyp from myHypos
2088     myHypos.remove( hyp );
2089   }
2090   // check for SubMesh order commands
2091   else if ( method == "GetMeshOrder" || method == "SetMeshOrder" )
2092   {
2093     // make commands GetSubMesh() returning sub-meshes be before using sub-meshes
2094     // by GetMeshOrder() and SetMeshOrder(), since by defalut GetSubMesh()
2095     // commands are moved at the end of the script
2096     TCollection_AsciiString subIDs =
2097       ( method == "SetMeshOrder" ) ? theCommand->GetArg(1) : theCommand->GetResultValue();
2098     list< _pyID > idList = theCommand->GetStudyEntries( subIDs );
2099     list< _pyID >::iterator subID = idList.begin();
2100     for ( ; subID != idList.end(); ++subID )
2101     {
2102       Handle(_pySubMesh) subMesh = theGen->FindSubMesh( *subID );
2103       if ( !subMesh.IsNull() )
2104         subMesh->Process( theCommand ); // it moves GetSubMesh() before theCommand
2105     }
2106   }
2107   // add accessor method if necessary
2108   else
2109   {
2110     if ( NeedMeshAccess( theCommand ))
2111       // apply theCommand to the mesh wrapped by smeshpy mesh
2112       AddMeshAccess( theCommand );
2113   }
2114 }
2115
2116 //================================================================================
2117 /*!
2118  * \brief Return True if addition of accesor method is needed
2119  */
2120 //================================================================================
2121
2122 bool _pyMesh::NeedMeshAccess( const Handle(_pyCommand)& theCommand )
2123 {
2124   // names of SMESH_Mesh methods fully equal to methods of python class Mesh,
2125   // so no conversion is needed for them at all:
2126   static TStringSet sameMethods;
2127   if ( sameMethods.empty() ) {
2128     const char * names[] =
2129       { "ExportDAT","ExportUNV","ExportSTL","ExportSAUV", "RemoveGroup","RemoveGroupWithContents",
2130         "GetGroups","UnionGroups","IntersectGroups","CutGroups","CreateDimGroup","GetLog","GetId",
2131         "ClearLog","GetStudyId","HasDuplicatedGroupNamesMED","GetMEDMesh","NbNodes","NbElements",
2132         "NbEdges","NbEdgesOfOrder","NbFaces","NbFacesOfOrder","NbTriangles",
2133         "NbTrianglesOfOrder","NbQuadrangles","NbQuadranglesOfOrder","NbPolygons","NbVolumes",
2134         "NbVolumesOfOrder","NbTetras","NbTetrasOfOrder","NbHexas","NbHexasOfOrder",
2135         "NbPyramids","NbPyramidsOfOrder","NbPrisms","NbPrismsOfOrder","NbPolyhedrons",
2136         "NbSubMesh","GetElementsId","GetElementsByType","GetNodesId","GetElementType",
2137         "GetSubMeshElementsId","GetSubMeshNodesId","GetSubMeshElementType","Dump","GetNodeXYZ",
2138         "GetNodeInverseElements","GetShapeID","GetShapeIDForElem","GetElemNbNodes",
2139         "GetElemNode","IsMediumNode","IsMediumNodeOfAnyElem","ElemNbEdges","ElemNbFaces",
2140         "GetElemFaceNodes", "GetFaceNormal", "FindElementByNodes",
2141         "IsPoly","IsQuadratic","BaryCenter","GetHypothesisList", "SetAutoColor", "GetAutoColor",
2142         "Clear", "ConvertToStandalone", "GetMeshOrder", "SetMeshOrder"
2143         ,"" }; // <- mark of end
2144     sameMethods.Insert( names );
2145   }
2146
2147   return !sameMethods.Contains( theCommand->GetMethod() );
2148 }
2149
2150 //================================================================================
2151 /*!
2152  * \brief Convert creation and addition of all algos and hypos
2153  */
2154 //================================================================================
2155
2156 void _pyMesh::Flush()
2157 {
2158   {
2159     // get the meshes this mesh depends on via hypotheses
2160     list< Handle(_pyMesh) > fatherMeshes;
2161     list< Handle(_pyHypothesis) >::iterator hyp = myHypos.begin();
2162     for ( ; hyp != myHypos.end(); ++hyp )
2163       if ( ! (*hyp)->GetReferredMeshesAndGeom( fatherMeshes ))
2164         myGeomNotInStudy = true;
2165
2166     list< Handle(_pyMesh) >::iterator m = fatherMeshes.begin();
2167     for ( ; m != fatherMeshes.end(); ++m )
2168       addFatherMesh( *m );
2169     // if ( removedGeom )
2170     //     SetRemovedFromStudy(); // as reffered geometry not in study
2171   }
2172   if ( myGeomNotInStudy )
2173     return;
2174
2175   list < Handle(_pyCommand) >::iterator cmd;
2176
2177   // try to convert algo addition like this:
2178   // mesh.AddHypothesis(geom, ALGO ) --> ALGO = mesh.Algo()
2179   for ( cmd = myAddHypCmds.begin(); cmd != myAddHypCmds.end(); ++cmd )
2180   {
2181     Handle(_pyCommand) addCmd = *cmd;
2182
2183     _pyID algoID = addCmd->GetArg( 2 );
2184     Handle(_pyHypothesis) algo = theGen->FindHyp( algoID );
2185     if ( algo.IsNull() || !algo->IsAlgo() )
2186       continue;
2187
2188     // check and create new algorithm instance if it is already wrapped
2189     if ( algo->IsWrapped() ) {
2190       _pyID localAlgoID = theGen->GenerateNewID( algoID );
2191       TCollection_AsciiString aNewCmdStr = addCmd->GetIndentation() + localAlgoID +
2192         TCollection_AsciiString( " = " ) + theGen->GetID() +
2193         TCollection_AsciiString( ".CreateHypothesis( \"" ) + algo->GetAlgoType() +
2194         TCollection_AsciiString( "\" )" );
2195
2196       Handle(_pyCommand) newCmd = theGen->AddCommand( aNewCmdStr );
2197       Handle(_pyAlgorithm) newAlgo = Handle(_pyAlgorithm)::DownCast(theGen->FindHyp( localAlgoID ));
2198       if ( !newAlgo.IsNull() ) {
2199         newAlgo->Assign( algo, this->GetID() );
2200         newAlgo->SetCreationCmd( newCmd );
2201         algo = newAlgo;
2202         // set algorithm creation
2203         theGen->SetCommandBefore( newCmd, addCmd );
2204         myHypos.push_back( newAlgo );
2205         if ( !myLastComputeCmd.IsNull() &&
2206              newCmd->GetOrderNb() == myLastComputeCmd->GetOrderNb() + 1)
2207           newAlgo->MeshComputed( myLastComputeCmd );
2208       }
2209       else
2210         newCmd->Clear();
2211     }
2212     _pyID geom = addCmd->GetArg( 1 );
2213     bool isLocalAlgo = ( geom != GetGeom() );
2214
2215     // try to convert
2216     if ( algo->Addition2Creation( addCmd, this->GetID() )) // OK
2217     {
2218       // wrapped algo is created after mesh creation
2219       GetCreationCmd()->AddDependantCmd( addCmd );
2220
2221       if ( isLocalAlgo ) {
2222         // mesh.AddHypothesis(geom, ALGO ) --> mesh.AlgoMethod(geom)
2223         addCmd->SetArg( addCmd->GetNbArgs() + 1,
2224                         TCollection_AsciiString( "geom=" ) + geom );
2225         // sm = mesh.GetSubMesh(geom, name) --> sm = ALGO.GetSubMesh()
2226         list < Handle(_pySubMesh) >::iterator smIt;
2227         for ( smIt = mySubmeshes.begin(); smIt != mySubmeshes.end(); ++smIt ) {
2228           Handle(_pySubMesh) subMesh = *smIt;
2229           Handle(_pyCommand) subCmd = subMesh->GetCreationCmd();
2230           if ( geom == subCmd->GetArg( 1 )) {
2231             subCmd->SetObject( algo->GetID() );
2232             subCmd->RemoveArgs();
2233             subMesh->SetCreator( algo );
2234           }
2235         }
2236       }
2237     }
2238     else // KO - ALGO was already created
2239     {
2240       // mesh.AddHypothesis(geom, ALGO) --> mesh.AddHypothesis(ALGO, geom=0)
2241       addCmd->RemoveArgs();
2242       addCmd->SetArg( 1, algoID );
2243       if ( isLocalAlgo )
2244         addCmd->SetArg( 2, geom );
2245       myNotConvertedAddHypCmds.push_back( addCmd );
2246     }
2247   }
2248
2249   // try to convert hypo addition like this:
2250   // mesh.AddHypothesis(geom, HYPO ) --> HYPO = algo.Hypo()
2251   for ( cmd = myAddHypCmds.begin(); cmd != myAddHypCmds.end(); ++cmd )
2252   {
2253     Handle(_pyCommand) addCmd = *cmd;
2254     _pyID hypID = addCmd->GetArg( 2 );
2255     Handle(_pyHypothesis) hyp = theGen->FindHyp( hypID );
2256     if ( hyp.IsNull() || hyp->IsAlgo() )
2257       continue;
2258     bool converted = hyp->Addition2Creation( addCmd, this->GetID() );
2259     if ( !converted ) {
2260       // mesh.AddHypothesis(geom, HYP) --> mesh.AddHypothesis(HYP, geom=0)
2261       _pyID geom = addCmd->GetArg( 1 );
2262       addCmd->RemoveArgs();
2263       addCmd->SetArg( 1, hypID );
2264       if ( geom != GetGeom() )
2265         addCmd->SetArg( 2, geom );
2266       myNotConvertedAddHypCmds.push_back( addCmd );
2267     }
2268   }
2269
2270   myAddHypCmds.clear();
2271   mySubmeshes.clear();
2272
2273   // flush hypotheses
2274   list< Handle(_pyHypothesis) >::iterator hyp = myHypos.begin();
2275   for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
2276     (*hyp)->Flush();
2277 }
2278
2279 //================================================================================
2280 /*!
2281  * \brief Sets myIsPublished of me and of all objects depending on me.
2282  */
2283 //================================================================================
2284
2285 void _pyMesh::SetRemovedFromStudy(const bool isRemoved)
2286 {
2287   _pyObject::SetRemovedFromStudy(isRemoved);
2288
2289   list< Handle(_pySubMesh) >::iterator sm = mySubmeshes.begin();
2290   for ( ; sm != mySubmeshes.end(); ++sm )
2291     (*sm)->SetRemovedFromStudy(isRemoved);
2292
2293   list< Handle(_pyGroup) >::iterator gr = myGroups.begin();
2294   for ( ; gr != myGroups.end(); ++gr )
2295     (*gr)->SetRemovedFromStudy(isRemoved);
2296
2297   list< Handle(_pyMesh) >::iterator m = myChildMeshes.begin();
2298   for ( ; m != myChildMeshes.end(); ++m )
2299     (*m)->SetRemovedFromStudy(isRemoved);
2300
2301   list< Handle(_pyMeshEditor)>::iterator e = myEditors.begin();
2302   for ( ; e != myEditors.end(); ++e )
2303     (*e)->SetRemovedFromStudy(isRemoved);
2304 }
2305
2306 //================================================================================
2307 /*!
2308  * \brief Return true if none of myChildMeshes is in study
2309  */
2310 //================================================================================
2311
2312 bool _pyMesh::CanClear()
2313 {
2314   if ( IsInStudy() )
2315     return false;
2316
2317   list< Handle(_pyMesh) >::iterator m = myChildMeshes.begin();
2318   for ( ; m != myChildMeshes.end(); ++m )
2319     if ( !(*m)->CanClear() )
2320       return false;
2321
2322   return true;
2323 }
2324
2325 //================================================================================
2326 /*!
2327  * \brief Clear my commands and commands of mesh editor
2328  */
2329 //================================================================================
2330
2331 void _pyMesh::ClearCommands()
2332 {
2333   if ( !CanClear() )
2334   {
2335     if ( !IsInStudy() )
2336     {
2337       // mark all sub-objects as not removed, except child meshes
2338       list< Handle(_pyMesh) > children;
2339       children.swap( myChildMeshes );
2340       SetRemovedFromStudy( false );
2341       children.swap( myChildMeshes );
2342     }
2343     return;
2344   }
2345   _pyObject::ClearCommands();
2346
2347   list< Handle(_pySubMesh) >::iterator sm = mySubmeshes.begin();
2348   for ( ; sm != mySubmeshes.end(); ++sm )
2349     (*sm)->ClearCommands();
2350   
2351   list< Handle(_pyGroup) >::iterator gr = myGroups.begin();
2352   for ( ; gr != myGroups.end(); ++gr )
2353     (*gr)->ClearCommands();
2354
2355   list< Handle(_pyMeshEditor)>::iterator e = myEditors.begin();
2356   for ( ; e != myEditors.end(); ++e )
2357     (*e)->ClearCommands();
2358 }
2359
2360 //================================================================================
2361 /*!
2362  * \brief Add a father mesh by ID
2363  */
2364 //================================================================================
2365
2366 void _pyMesh::addFatherMesh( const _pyID& meshID )
2367 {
2368   if ( !meshID.IsEmpty() && meshID != GetID() )
2369     addFatherMesh( Handle(_pyMesh)::DownCast( theGen->FindObject( meshID )));
2370 }
2371
2372 //================================================================================
2373 /*!
2374  * \brief Add a father mesh
2375  */
2376 //================================================================================
2377
2378 void _pyMesh::addFatherMesh( const Handle(_pyMesh)& mesh )
2379 {
2380   if ( !mesh.IsNull() && mesh->GetID() != GetID() )
2381   {
2382     //myFatherMeshes.push_back( mesh );
2383     mesh->myChildMeshes.push_back( this );
2384
2385     // protect last Compute() from clearing by the next Compute()
2386     mesh->myLastComputeCmd.Nullify();
2387   }
2388 }
2389
2390 //================================================================================
2391 /*!
2392  * \brief MeshEditor convert its commands to ones of mesh
2393  */
2394 //================================================================================
2395
2396 _pyMeshEditor::_pyMeshEditor(const Handle(_pyCommand)& theCreationCmd):
2397   _pyObject( theCreationCmd )
2398 {
2399   myMesh = theCreationCmd->GetObject();
2400   myCreationCmdStr = theCreationCmd->GetString();
2401   theCreationCmd->Clear();
2402
2403   Handle(_pyMesh) mesh = ObjectToMesh( theGen->FindObject( myMesh ));
2404   if ( !mesh.IsNull() )
2405     mesh->AddEditor( this );
2406 }
2407
2408 //================================================================================
2409 /*!
2410  * \brief convert its commands to ones of mesh
2411  */
2412 //================================================================================
2413
2414 void _pyMeshEditor::Process( const Handle(_pyCommand)& theCommand)
2415 {
2416   // Names of SMESH_MeshEditor methods fully equal to methods of the python class Mesh, so
2417   // commands calling these methods are converted to calls of Mesh methods without
2418   // additional modifs, only object is changed from MeshEditor to Mesh.
2419   static TStringSet sameMethods;
2420   if ( sameMethods.empty() ) {
2421     const char * names[] = {
2422       "RemoveElements","RemoveNodes","RemoveOrphanNodes",
2423       "AddNode","Add0DElement","AddEdge","AddFace","AddPolygonalFace","AddBall",
2424       "AddVolume","AddPolyhedralVolume","AddPolyhedralVolumeByFaces",
2425       "MoveNode", "MoveClosestNodeToPoint",
2426       "InverseDiag","DeleteDiag","Reorient","ReorientObject","Reorient2DBy3D",
2427       "TriToQuad","TriToQuadObject", "QuadTo4Tri", "SplitQuad","SplitQuadObject",
2428       "BestSplit","Smooth","SmoothObject","SmoothParametric","SmoothParametricObject",
2429       "ConvertToQuadratic","ConvertFromQuadratic","RenumberNodes","RenumberElements",
2430       "RotationSweep","RotationSweepObject","RotationSweepObject1D","RotationSweepObject2D",
2431       "ExtrusionSweep","AdvancedExtrusion","ExtrusionSweepObject","ExtrusionSweepObject1D",
2432       "ExtrusionByNormal", "ExtrusionSweepObject2D","ExtrusionAlongPath","ExtrusionAlongPathObject",
2433       "ExtrusionAlongPathX","ExtrusionAlongPathObject1D","ExtrusionAlongPathObject2D",
2434       "ExtrusionSweepObjects","RotationSweepObjects","ExtrusionAlongPathObjects",
2435       "Mirror","MirrorObject","Translate","TranslateObject","Rotate","RotateObject",
2436       "FindCoincidentNodes","MergeNodes","FindEqualElements",
2437       "MergeElements","MergeEqualElements","SewFreeBorders","SewConformFreeBorders",
2438       "FindCoincidentFreeBorders", "SewCoincidentFreeBorders",
2439       "SewBorderToSide","SewSideElements","ChangeElemNodes","GetLastCreatedNodes",
2440       "GetLastCreatedElems",
2441       "MirrorMakeMesh","MirrorObjectMakeMesh","TranslateMakeMesh","TranslateObjectMakeMesh",
2442       "Scale","ScaleMakeMesh","RotateMakeMesh","RotateObjectMakeMesh","MakeBoundaryMesh",
2443       "MakeBoundaryElements", "SplitVolumesIntoTetra","SplitHexahedraIntoPrisms",
2444       "DoubleElements","DoubleNodes","DoubleNode","DoubleNodeGroup","DoubleNodeGroups",
2445       "DoubleNodeElem","DoubleNodeElemInRegion","DoubleNodeElemGroup",
2446       "DoubleNodeElemGroupInRegion","DoubleNodeElemGroups","DoubleNodeElemGroupsInRegion",
2447       "DoubleNodesOnGroupBoundaries","CreateFlatElementsOnFacesGroups","CreateHoleSkin"
2448       ,"" }; // <- mark of the end
2449     sameMethods.Insert( names );
2450   }
2451
2452   // names of SMESH_MeshEditor commands in which only a method name must be replaced
2453   TStringMap diffMethods;
2454   if ( diffMethods.empty() ) {
2455     const char * orig2newName[] = {
2456       // original name --------------> new name
2457       "ExtrusionAlongPathObjX"      , "ExtrusionAlongPathX",
2458       "FindCoincidentNodesOnPartBut", "FindCoincidentNodesOnPart",
2459       "ConvertToQuadraticObject"    , "ConvertToQuadratic",
2460       "ConvertFromQuadraticObject"  , "ConvertFromQuadratic",
2461       "Create0DElementsOnAllNodes"  , "Add0DElementsToAllNodes",
2462       ""};// <- mark of the end
2463     diffMethods.Insert( orig2newName );
2464   }
2465
2466   // names of SMESH_MeshEditor methods which differ from methods of Mesh class
2467   // only by last two arguments
2468   static TStringSet diffLastTwoArgsMethods;
2469   if (diffLastTwoArgsMethods.empty() ) {
2470     const char * names[] = {
2471       "MirrorMakeGroups","MirrorObjectMakeGroups",
2472       "TranslateMakeGroups","TranslateObjectMakeGroups","ScaleMakeGroups",
2473       "RotateMakeGroups","RotateObjectMakeGroups",
2474       ""};// <- mark of the end
2475     diffLastTwoArgsMethods.Insert( names );
2476   }
2477
2478   // only a method name is to change?
2479   const TCollection_AsciiString & method = theCommand->GetMethod();
2480   bool isPyMeshMethod = sameMethods.Contains( method );
2481   if ( !isPyMeshMethod )
2482   {
2483     TCollection_AsciiString newMethod = diffMethods.Value( method );
2484     if (( isPyMeshMethod = ( newMethod.Length() > 0 )))
2485       theCommand->SetMethod( newMethod );
2486   }
2487   // ConvertToBiQuadratic(...) -> ConvertToQuadratic(...,True)
2488   if ( !isPyMeshMethod && (method == "ConvertToBiQuadratic" || method == "ConvertToBiQuadraticObject") )
2489   {
2490     isPyMeshMethod = true;
2491     theCommand->SetMethod( method.SubString( 1, 9) + method.SubString( 12, method.Length()));
2492     theCommand->SetArg( theCommand->GetNbArgs() + 1, "True" );
2493   }
2494
2495   if ( !isPyMeshMethod )
2496   {
2497     // Replace SMESH_MeshEditor "*MakeGroups" functions by the Mesh
2498     // functions with the flag "theMakeGroups = True" like:
2499     // SMESH_MeshEditor.CmdMakeGroups => Mesh.Cmd(...,True)
2500     int pos = method.Search("MakeGroups");
2501     if( pos != -1)
2502     {
2503       isPyMeshMethod = true;
2504       bool is0DmethId  = ( method == "ExtrusionSweepMakeGroups0D" );
2505       bool is0DmethObj = ( method == "ExtrusionSweepObject0DMakeGroups");
2506
2507       // 1. Remove "MakeGroups" from the Command
2508       TCollection_AsciiString aMethod = theCommand->GetMethod();
2509       int nbArgsToAdd = diffLastTwoArgsMethods.Contains(aMethod) ? 2 : 1;
2510       
2511       if(is0DmethObj)
2512         pos = pos-2;  //Remove "0D" from the Command too
2513       aMethod.Trunc(pos-1);
2514       theCommand->SetMethod(aMethod);
2515
2516       // 2. And add last "True" argument(s)
2517       while(nbArgsToAdd--)
2518         theCommand->SetArg(theCommand->GetNbArgs()+1,"True");
2519       if( is0DmethId || is0DmethObj )
2520         theCommand->SetArg(theCommand->GetNbArgs()+1,"True");
2521     }
2522   }
2523
2524   // ExtrusionSweep0D()       -> ExtrusionSweep()
2525   // ExtrusionSweepObject0D() -> ExtrusionSweepObject()
2526   if ( !isPyMeshMethod && ( method == "ExtrusionSweep0D"  ||
2527                             method == "ExtrusionSweepObject0D" ))
2528   {
2529     isPyMeshMethod = true;
2530     theCommand->SetMethod( method.SubString( 1, method.Length()-2));
2531     theCommand->SetArg(theCommand->GetNbArgs()+1,"False");  //sets flag "MakeGroups = False"
2532     theCommand->SetArg(theCommand->GetNbArgs()+1,"True");  //sets flag "IsNode = True"
2533   }
2534
2535   // DoubleNode...New(...) -> DoubleNode...(...,True)
2536   if ( !isPyMeshMethod && ( method == "DoubleNodeElemGroupNew"  ||
2537                             method == "DoubleNodeElemGroupsNew" ||
2538                             method == "DoubleNodeGroupNew"      ||
2539                             method == "DoubleNodeGroupsNew"     ||
2540                             method == "DoubleNodeElemGroup2New" ||
2541                             method == "DoubleNodeElemGroups2New"))
2542   {
2543     isPyMeshMethod = true;
2544     const int excessLen = 3 + int( method.Value( method.Length()-3 ) == '2' );
2545     theCommand->SetMethod( method.SubString( 1, method.Length()-excessLen));
2546     if ( excessLen == 3 )
2547     {
2548       theCommand->SetArg(theCommand->GetNbArgs()+1,"True");
2549     }
2550     else if ( theCommand->GetArg(4) == "0" ||
2551               theCommand->GetArg(5) == "0" )
2552     {
2553       // [ nothing, Group ] = DoubleNodeGroup2New(,,,False, True) ->
2554       // Group = DoubleNodeGroup2New(,,,False, True)
2555       _pyID groupID = theCommand->GetResultValue( 1 + int( theCommand->GetArg(4) == "0"));
2556       theCommand->SetResultValue( groupID );
2557     }
2558   }
2559   // FindAmongElementsByPoint(meshPart, x, y, z, elementType) ->
2560   // FindElementsByPoint(x, y, z, elementType, meshPart)
2561   if ( !isPyMeshMethod && method == "FindAmongElementsByPoint" )
2562   {
2563     isPyMeshMethod = true;
2564     theCommand->SetMethod( "FindElementsByPoint" );
2565     // make the 1st arg be the last one
2566     _pyID partID = theCommand->GetArg( 1 );
2567     int nbArgs = theCommand->GetNbArgs();
2568     for ( int i = 2; i <= nbArgs; ++i )
2569       theCommand->SetArg( i-1, theCommand->GetArg( i ));
2570     theCommand->SetArg( nbArgs, partID );
2571   }
2572   // Reorient2D( mesh, dir, face, point ) -> Reorient2D( mesh, dir, faceORpoint )
2573   if ( !isPyMeshMethod && method == "Reorient2D" )
2574   {
2575     isPyMeshMethod = true;
2576     _AString mesh  = theCommand->GetArg( 1 );
2577     _AString dir   = theCommand->GetArg( 2 );
2578     _AString face  = theCommand->GetArg( 3 );
2579     _AString point = theCommand->GetArg( 4 );
2580     theCommand->RemoveArgs();
2581     theCommand->SetArg( 1, mesh );
2582     theCommand->SetArg( 2, dir );
2583     if ( face.Value(1) == '-' || face.Value(1) == '0' ) // invalid: face <= 0
2584       theCommand->SetArg( 3, point );
2585     else
2586       theCommand->SetArg( 3, face );
2587   }
2588
2589   if ( method == "QuadToTri" || method == "QuadToTriObject" )
2590   {
2591     isPyMeshMethod = true;
2592     int crit_arg = theCommand->GetNbArgs();
2593     const _AString& crit = theCommand->GetArg(crit_arg);
2594     if (crit.Search("MaxElementLength2D") != -1)
2595       theCommand->SetArg(crit_arg, "");
2596   }
2597
2598   if ( isPyMeshMethod )
2599   {
2600     theCommand->SetObject( myMesh );
2601   }
2602   else
2603   {
2604     // editor creation command is needed only if any editor function is called
2605     theGen->AddMeshAccessorMethod( theCommand ); // for *Object() methods
2606     if ( !myCreationCmdStr.IsEmpty() ) {
2607       GetCreationCmd()->GetString() = myCreationCmdStr;
2608       myCreationCmdStr.Clear();
2609     }
2610   }
2611 }
2612
2613 //================================================================================
2614 /*!
2615  * \brief Return true if my mesh can be removed
2616  */
2617 //================================================================================
2618
2619 bool _pyMeshEditor::CanClear()
2620 {
2621   Handle(_pyMesh) mesh = ObjectToMesh( theGen->FindObject( myMesh ));
2622   return mesh.IsNull() ? true : mesh->CanClear();
2623 }
2624
2625 //================================================================================
2626 /*!
2627  * \brief _pyHypothesis constructor
2628   * \param theCreationCmd -
2629  */
2630 //================================================================================
2631
2632 _pyHypothesis::_pyHypothesis(const Handle(_pyCommand)& theCreationCmd):
2633   _pyObject( theCreationCmd ), myCurCrMethod(0)
2634 {
2635   myIsAlgo = myIsWrapped = /*myIsConverted = myIsLocal = myDim = */false;
2636 }
2637
2638 //================================================================================
2639 /*!
2640  * \brief Creates algorithm or hypothesis
2641   * \param theCreationCmd - The engine command creating a hypothesis
2642   * \retval Handle(_pyHypothesis) - Result _pyHypothesis
2643  */
2644 //================================================================================
2645
2646 Handle(_pyHypothesis) _pyHypothesis::NewHypothesis( const Handle(_pyCommand)& theCreationCmd)
2647 {
2648   // theCreationCmd: CreateHypothesis( "theHypType", "theLibName" )
2649   ASSERT (( theCreationCmd->GetMethod() == "CreateHypothesis"));
2650
2651   Handle(_pyHypothesis) hyp, algo;
2652
2653   // "theHypType"
2654   const TCollection_AsciiString & hypTypeQuoted = theCreationCmd->GetArg( 1 );
2655   if ( hypTypeQuoted.IsEmpty() )
2656     return hyp;
2657   // theHypType
2658   TCollection_AsciiString  hypType =
2659     hypTypeQuoted.SubString( 2, hypTypeQuoted.Length() - 1 );
2660
2661   algo = new _pyAlgorithm( theCreationCmd );
2662   hyp  = new _pyHypothesis( theCreationCmd );
2663
2664   if ( hypType == "NumberOfSegments" ) {
2665     hyp = new _pyNumberOfSegmentsHyp( theCreationCmd );
2666     hyp->SetConvMethodAndType( "NumberOfSegments", "Regular_1D");
2667     // arg of SetNumberOfSegments() will become the 1-st arg of hyp creation command
2668     hyp->AddArgMethod( "SetNumberOfSegments" );
2669     // arg of SetScaleFactor() will become the 2-nd arg of hyp creation command
2670     hyp->AddArgMethod( "SetScaleFactor" );
2671     hyp->AddArgMethod( "SetReversedEdges" );
2672     // same for ""CompositeSegment_1D:
2673     hyp->SetConvMethodAndType( "NumberOfSegments", "CompositeSegment_1D");
2674     hyp->AddArgMethod( "SetNumberOfSegments" );
2675     hyp->AddArgMethod( "SetScaleFactor" );
2676     hyp->AddArgMethod( "SetReversedEdges" );
2677   }
2678   else if ( hypType == "SegmentLengthAroundVertex" ) {
2679     hyp = new _pySegmentLengthAroundVertexHyp( theCreationCmd );
2680     hyp->SetConvMethodAndType( "LengthNearVertex", "Regular_1D" );
2681     hyp->AddArgMethod( "SetLength" );
2682     // same for ""CompositeSegment_1D:
2683     hyp->SetConvMethodAndType( "LengthNearVertex", "CompositeSegment_1D");
2684     hyp->AddArgMethod( "SetLength" );
2685   }
2686   else if ( hypType == "LayerDistribution2D" ) {
2687     hyp = new _pyLayerDistributionHypo( theCreationCmd, "Get2DHypothesis" );
2688     hyp->SetConvMethodAndType( "LayerDistribution", "RadialQuadrangle_1D2D");
2689   }
2690   else if ( hypType == "LayerDistribution" ) {
2691     hyp = new _pyLayerDistributionHypo( theCreationCmd, "Get3DHypothesis" );
2692     hyp->SetConvMethodAndType( "LayerDistribution", "RadialPrism_3D");
2693   }
2694   else if ( hypType == "CartesianParameters3D" ) {
2695     hyp = new _pyComplexParamHypo( theCreationCmd );
2696     hyp->SetConvMethodAndType( "SetGrid", "Cartesian_3D");
2697     for ( int iArg = 0; iArg < 4; ++iArg )
2698       hyp->setCreationArg( iArg+1, "[]");
2699     hyp->AddAccumulativeMethod( "SetGrid" );
2700     hyp->AddAccumulativeMethod( "SetGridSpacing" );
2701   }
2702   else
2703   {
2704     hyp = theGen->GetHypothesisReader()->GetHypothesis( hypType, theCreationCmd );
2705   }
2706
2707   return algo->IsValid() ? algo : hyp;
2708 }
2709
2710 //================================================================================
2711 /*!
2712  * \brief Returns true if addition of this hypothesis to a given mesh can be
2713  *        wrapped into hypothesis creation
2714  */
2715 //================================================================================
2716
2717 bool _pyHypothesis::IsWrappable(const _pyID& theMesh) const
2718 {
2719   if ( !myIsWrapped && myMesh == theMesh && IsInStudy() )
2720   {
2721     Handle(_pyObject) pyMesh = theGen->FindObject( myMesh );
2722     if ( !pyMesh.IsNull() && pyMesh->IsInStudy() )
2723       return true;
2724   }
2725   return false;
2726 }
2727
2728 //================================================================================
2729 /*!
2730  * \brief Convert the command adding a hypothesis to mesh into a smesh command
2731   * \param theCmd - The command like mesh.AddHypothesis( geom, hypo )
2732   * \param theAlgo - The algo that can create this hypo
2733   * \retval bool - false if the command cant be converted
2734  */
2735 //================================================================================
2736
2737 bool _pyHypothesis::Addition2Creation( const Handle(_pyCommand)& theCmd,
2738                                        const _pyID&              theMesh)
2739 {
2740   ASSERT(( theCmd->GetMethod() == "AddHypothesis" ));
2741
2742   if ( !IsWrappable( theMesh ))
2743     return false;
2744
2745   myGeom = theCmd->GetArg( 1 );
2746
2747   Handle(_pyHypothesis) algo;
2748   if ( !IsAlgo() ) {
2749     // find algo created on myGeom in theMesh
2750     algo = theGen->FindAlgo( myGeom, theMesh, this );
2751     if ( algo.IsNull() )
2752       return false;
2753     // attach hypothesis creation command to be after algo creation command
2754     // because it can be new created instance of algorithm
2755     algo->GetCreationCmd()->AddDependantCmd( theCmd );
2756   }
2757   myIsWrapped = true;
2758
2759   // mesh.AddHypothesis(geom,hyp) --> hyp = <theMesh or algo>.myCreationMethod(args)
2760   theCmd->SetResultValue( GetID() );
2761   theCmd->SetObject( IsAlgo() ? theMesh : algo->GetID());
2762   theCmd->SetMethod( IsAlgo() ? GetAlgoCreationMethod() : GetCreationMethod( algo->GetAlgoType() ));
2763   // set args (geom will be set by _pyMesh calling this method)
2764   theCmd->RemoveArgs();
2765   for ( size_t i = 0; i < myCurCrMethod->myArgs.size(); ++i ) {
2766     if ( !myCurCrMethod->myArgs[ i ].IsEmpty() )
2767       theCmd->SetArg( i+1, myCurCrMethod->myArgs[ i ]);
2768     else
2769       theCmd->SetArg( i+1, "[]");
2770   }
2771   // set a new creation command
2772   GetCreationCmd()->Clear();
2773   // replace creation command by wrapped instance
2774   // please note, that hypothesis attaches to algo creation command (see upper)
2775   SetCreationCmd( theCmd );
2776
2777
2778   // clear commands setting arg values
2779   list < Handle(_pyCommand) >::iterator argCmd = myArgCommands.begin();
2780   for ( ; argCmd != myArgCommands.end(); ++argCmd )
2781     (*argCmd)->Clear();
2782
2783   // set unknown arg commands after hypo creation
2784   Handle(_pyCommand) afterCmd = myIsWrapped ? theCmd : GetCreationCmd();
2785   list<Handle(_pyCommand)>::iterator cmd = myUnusedCommands.begin();
2786   for ( ; cmd != myUnusedCommands.end(); ++cmd ) {
2787     afterCmd->AddDependantCmd( *cmd );
2788   }
2789
2790   return myIsWrapped;
2791 }
2792
2793 //================================================================================
2794 /*!
2795  * \brief Remember hypothesis parameter values
2796  * \param theCommand - The called hypothesis method
2797  */
2798 //================================================================================
2799
2800 void _pyHypothesis::Process( const Handle(_pyCommand)& theCommand)
2801 {
2802   ASSERT( !myIsAlgo );
2803   if ( !theGen->IsToKeepAllCommands() )
2804     rememberCmdOfParameter( theCommand );
2805   // set args
2806   bool usedCommand = false;
2807   TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
2808   for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
2809   {
2810     CreationMethod& crMethod = type2meth->second;
2811     for ( size_t i = 0; i < crMethod.myArgMethods.size(); ++i ) {
2812       if ( crMethod.myArgMethods[ i ] == theCommand->GetMethod() ) {
2813         if ( !usedCommand )
2814           myArgCommands.push_back( theCommand );
2815         usedCommand = true;
2816         while ( crMethod.myArgs.size() < i+1 )
2817           crMethod.myArgs.push_back( "None" );
2818         crMethod.myArgs[ i ] = theCommand->GetArg( crMethod.myArgNb[i] );
2819       }
2820     }
2821   }
2822   if ( !usedCommand )
2823     myUnusedCommands.push_back( theCommand );
2824 }
2825
2826 //================================================================================
2827 /*!
2828  * \brief Finish conversion
2829  */
2830 //================================================================================
2831
2832 void _pyHypothesis::Flush()
2833 {
2834   if ( !IsAlgo() )
2835   {
2836     list < Handle(_pyCommand) >::iterator cmd = myArgCommands.begin();
2837     for ( ; cmd != myArgCommands.end(); ++cmd ) {
2838       // Add access to a wrapped mesh
2839       theGen->AddMeshAccessorMethod( *cmd );
2840       // Add access to a wrapped algorithm
2841       theGen->AddAlgoAccessorMethod( *cmd );
2842     }
2843     cmd = myUnusedCommands.begin();
2844     for ( ; cmd != myUnusedCommands.end(); ++cmd ) {
2845       // Add access to a wrapped mesh
2846       theGen->AddMeshAccessorMethod( *cmd );
2847       // Add access to a wrapped algorithm
2848       theGen->AddAlgoAccessorMethod( *cmd );
2849     }
2850   }
2851   // forget previous hypothesis modifications
2852   myArgCommands.clear();
2853   myUnusedCommands.clear();
2854 }
2855
2856 //================================================================================
2857 /*!
2858  * \brief clear creation, arg and unkown commands
2859  */
2860 //================================================================================
2861
2862 void _pyHypothesis::ClearAllCommands()
2863 {
2864   GetCreationCmd()->Clear();
2865   list<Handle(_pyCommand)>::iterator cmd = myArgCommands.begin();
2866   for ( ; cmd != myArgCommands.end(); ++cmd )
2867     ( *cmd )->Clear();
2868   cmd = myUnusedCommands.begin();
2869   for ( ; cmd != myUnusedCommands.end(); ++cmd )
2870     ( *cmd )->Clear();
2871 }
2872
2873
2874 //================================================================================
2875 /*!
2876  * \brief Assign fields of theOther to me except myIsWrapped
2877  */
2878 //================================================================================
2879
2880 void _pyHypothesis::Assign( const Handle(_pyHypothesis)& theOther,
2881                             const _pyID&                 theMesh )
2882 {
2883   // myCreationCmd = theOther->myCreationCmd;
2884   myIsAlgo                  = theOther->myIsAlgo;
2885   myIsWrapped               = false;
2886   myGeom                    = theOther->myGeom;
2887   myMesh                    = theMesh;
2888   myAlgoType2CreationMethod = theOther->myAlgoType2CreationMethod;
2889   myAccumulativeMethods     = theOther->myAccumulativeMethods;
2890   //myUnusedCommands          = theOther->myUnusedCommands;
2891   // init myCurCrMethod
2892   GetCreationMethod( theOther->GetAlgoType() );
2893 }
2894
2895 //================================================================================
2896 /*!
2897  * \brief Analyze my erasability depending on myReferredObjs
2898  */
2899 //================================================================================
2900
2901 bool _pyHypothesis::CanClear()
2902 {
2903   if ( IsInStudy() )
2904   {
2905     list< Handle(_pyObject) >::iterator obj = myReferredObjs.begin();
2906     for ( ; obj != myReferredObjs.end(); ++obj )
2907       if ( (*obj)->CanClear() )
2908         return true;
2909     return false;
2910   }
2911   return true;
2912 }
2913
2914 //================================================================================
2915 /*!
2916  * \brief Clear my commands depending on usage by meshes
2917  */
2918 //================================================================================
2919
2920 void _pyHypothesis::ClearCommands()
2921 {
2922   // if ( !theGen->IsToKeepAllCommands() )
2923   // {
2924   //   bool isUsed = false;
2925   //   int lastComputeOrder = 0;
2926   //   list<Handle(_pyCommand) >::iterator cmd = myComputeCmds.begin();
2927   //   for ( ; cmd != myComputeCmds.end(); ++cmd )
2928   //     if ( ! (*cmd)->IsEmpty() )
2929   //     {
2930   //       isUsed = true;
2931   //       if ( (*cmd)->GetOrderNb() > lastComputeOrder )
2932   //         lastComputeOrder = (*cmd)->GetOrderNb();
2933   //     }
2934   //   if ( !isUsed )
2935   //   {
2936   //     SetRemovedFromStudy( true );
2937   //   }
2938   //   else
2939   //   {
2940   //     // clear my commands invoked after lastComputeOrder
2941   //     // map<TCollection_AsciiString, list< Handle(_pyCommand) > >::iterator m2c;
2942   //     // for ( m2c = myMeth2Commands.begin(); m2c != myMeth2Commands.end(); ++m2c )
2943   //     // {
2944   //     //   list< Handle(_pyCommand)> & cmds = m2c->second;
2945   //     //   if ( !cmds.empty() && cmds.back()->GetOrderNb() > lastComputeOrder )
2946   //     //     cmds.back()->Clear();
2947   //     // }
2948   //   }
2949   // }
2950   _pyObject::ClearCommands();
2951 }
2952
2953 //================================================================================
2954 /*!
2955  * \brief Find arguments that are objects like mesh, group, geometry
2956  *  \param meshes - referred meshes (directly or indirrectly)
2957  *  \retval bool - false if a referred geometry is not in the study
2958  */
2959 //================================================================================
2960
2961 bool _pyHypothesis::GetReferredMeshesAndGeom( list< Handle(_pyMesh) >& meshes )
2962 {
2963   if ( IsAlgo() ) return true;
2964
2965   bool geomPublished = true;
2966   vector< _AString > args;
2967   TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
2968   for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
2969   {
2970     CreationMethod& crMethod = type2meth->second;
2971     args.insert( args.end(), crMethod.myArgs.begin(), crMethod.myArgs.end());
2972   }
2973   list<Handle(_pyCommand)>::iterator cmd = myUnusedCommands.begin();
2974   for ( ; cmd != myUnusedCommands.end(); ++cmd ) {
2975     for ( int nb = (*cmd)->GetNbArgs(); nb; --nb )
2976       args.push_back( (*cmd)->GetArg( nb ));
2977   }
2978
2979   for ( size_t i = 0; i < args.size(); ++i )
2980   {
2981     list< _pyID > idList = _pyCommand::GetStudyEntries( args[ i ]);
2982     if ( idList.empty() && !args[ i ].IsEmpty() )
2983       idList.push_back( args[ i ]);
2984     list< _pyID >::iterator id = idList.begin();
2985     for ( ; id != idList.end(); ++id )
2986     {
2987       Handle(_pyObject)   obj = theGen->FindObject( *id );
2988       if ( obj.IsNull() ) obj = theGen->FindHyp( *id );
2989       if ( obj.IsNull() )
2990       {
2991         if ( theGen->IsGeomObject( *id ) && theGen->IsNotPublished( *id ))
2992           geomPublished = false;
2993       }
2994       else
2995       {
2996         myReferredObjs.push_back( obj );
2997         Handle(_pyMesh) mesh = ObjectToMesh( obj );
2998         if ( !mesh.IsNull() )
2999           meshes.push_back( mesh );
3000         // prevent clearing not published hyps referred e.g. by "LayerDistribution"
3001         else if ( obj->IsKind( STANDARD_TYPE( _pyHypothesis )) && this->IsInStudy() )
3002           obj->SetRemovedFromStudy( false );
3003       }
3004     }
3005   }
3006   return geomPublished;
3007 }
3008
3009 //================================================================================
3010 /*!
3011  * \brief Remember theCommand setting a parameter
3012  */
3013 //================================================================================
3014
3015 void _pyHypothesis::rememberCmdOfParameter( const Handle(_pyCommand) & theCommand )
3016 {
3017   // parameters are discriminated by method name
3018   _AString method = theCommand->GetMethod();
3019   if ( myAccumulativeMethods.count( method ))
3020     return; // this method adds values and not override the previus value
3021
3022   // discriminate commands setting different parameters via one method
3023   // by passing parameter names like e.g. SetOption("size", "0.2")
3024   if ( theCommand->GetString().FirstLocationInSet( "'\"", 1, theCommand->Length() ) &&
3025        theCommand->GetNbArgs() > 1 )
3026   {
3027     // mangle method by appending a 1st textual arg
3028     for ( int iArg = 1; iArg <= theCommand->GetNbArgs(); ++iArg )
3029     {
3030       const TCollection_AsciiString& arg = theCommand->GetArg( iArg );
3031       if ( arg.Value(1) != '\"' && arg.Value(1) != '\'' ) continue;
3032       if ( !isalpha( arg.Value(2))) continue;
3033       method += arg;
3034       break;
3035     }
3036   }
3037   // parameters are discriminated by method name
3038   list< Handle(_pyCommand)>& cmds = myMeth2Commands[ method /*theCommand->GetMethod()*/ ];
3039   if ( !cmds.empty() && !isCmdUsedForCompute( cmds.back() ))
3040   {
3041     cmds.back()->Clear(); // previous parameter value has not been used
3042     cmds.back() = theCommand;
3043   }
3044   else
3045   {
3046     cmds.push_back( theCommand );
3047   }
3048 }
3049
3050 //================================================================================
3051 /*!
3052  * \brief Return true if a setting parameter command ha been used to compute mesh
3053  */
3054 //================================================================================
3055
3056 bool _pyHypothesis::isCmdUsedForCompute( const Handle(_pyCommand) & cmd,
3057                                          _pyCommand::TAddr          avoidComputeAddr ) const
3058 {
3059   bool isUsed = false;
3060   map< _pyCommand::TAddr, list<Handle(_pyCommand) > >::const_iterator addr2cmds =
3061     myComputeAddr2Cmds.begin();
3062   for ( ; addr2cmds != myComputeAddr2Cmds.end() && !isUsed; ++addr2cmds )
3063   {
3064     if ( addr2cmds->first == avoidComputeAddr ) continue;
3065     const list<Handle(_pyCommand)> & cmds = addr2cmds->second;
3066     isUsed = ( std::find( cmds.begin(), cmds.end(), cmd ) != cmds.end() );
3067   }
3068   return isUsed;
3069 }
3070
3071 //================================================================================
3072 /*!
3073  * \brief Save commands setting parameters as they are used for a mesh computation
3074  */
3075 //================================================================================
3076
3077 void _pyHypothesis::MeshComputed( const Handle(_pyCommand)& theComputeCmd )
3078 {
3079   myComputeCmds.push_back( theComputeCmd );
3080   list<Handle(_pyCommand)>& savedCmds = myComputeAddr2Cmds[ theComputeCmd->GetAddress() ];
3081
3082   map<TCollection_AsciiString, list< Handle(_pyCommand) > >::iterator m2c;
3083   for ( m2c = myMeth2Commands.begin(); m2c != myMeth2Commands.end(); ++m2c )
3084     savedCmds.push_back( m2c->second.back() );
3085 }
3086
3087 //================================================================================
3088 /*!
3089  * \brief Clear commands setting parameters as a mesh computed using them is cleared
3090  */
3091 //================================================================================
3092
3093 void _pyHypothesis::ComputeDiscarded( const Handle(_pyCommand)& theComputeCmd )
3094 {
3095   list<Handle(_pyCommand)>& savedCmds = myComputeAddr2Cmds[ theComputeCmd->GetAddress() ];
3096
3097   list<Handle(_pyCommand)>::iterator cmd = savedCmds.begin();
3098   for ( ; cmd != savedCmds.end(); ++cmd )
3099   {
3100     // check if a cmd has been used to compute another mesh
3101     if ( isCmdUsedForCompute( *cmd, theComputeCmd->GetAddress() ))
3102       continue;
3103     // check if a cmd is a sole command setting its parameter;
3104     // don't use method name for search as it can change
3105     map<TCollection_AsciiString, list<Handle(_pyCommand)> >::iterator
3106       m2cmds = myMeth2Commands.begin();
3107     for ( ; m2cmds != myMeth2Commands.end(); ++m2cmds )
3108     {
3109       list< Handle(_pyCommand)>& cmds = m2cmds->second;
3110       list< Handle(_pyCommand)>::iterator cmdIt = std::find( cmds.begin(), cmds.end(), *cmd );
3111       if ( cmdIt != cmds.end() )
3112       {
3113         if ( cmds.back() != *cmd )
3114         {
3115           cmds.erase( cmdIt );
3116           (*cmd)->Clear();
3117         }
3118         break;
3119       }
3120     }
3121   }
3122   myComputeAddr2Cmds.erase( theComputeCmd->GetAddress() );
3123 }
3124
3125 //================================================================================
3126 /*!
3127  * \brief Sets an argNb-th argument of current creation command
3128  *  \param argNb - argument index countered from 1
3129  */
3130 //================================================================================
3131
3132 void _pyHypothesis::setCreationArg( const int argNb, const _AString& arg )
3133 {
3134   if ( myCurCrMethod )
3135   {
3136     while ( myCurCrMethod->myArgs.size() < argNb )
3137       myCurCrMethod->myArgs.push_back( "None" );
3138     if ( arg.IsEmpty() )
3139       myCurCrMethod->myArgs[ argNb-1 ] = "None";
3140     else
3141       myCurCrMethod->myArgs[ argNb-1 ] = arg;
3142   }
3143 }
3144
3145
3146 //================================================================================
3147 /*!
3148  * \brief Remember hypothesis parameter values
3149  * \param theCommand - The called hypothesis method
3150  */
3151 //================================================================================
3152
3153 void _pyComplexParamHypo::Process( const Handle(_pyCommand)& theCommand)
3154 {
3155   if ( GetAlgoType() == "Cartesian_3D" )
3156   {
3157     // CartesianParameters3D hyp
3158
3159     if ( theCommand->GetMethod() == "SetSizeThreshold"  ||
3160          theCommand->GetMethod() == "SetToAddEdges" )
3161     {
3162       int iEdges = ( theCommand->GetMethod().Value( 4 ) == 'T' );
3163       setCreationArg( 4+iEdges, theCommand->GetArg( 1 ));
3164       myArgCommands.push_back( theCommand );
3165       return;
3166     }
3167     if ( theCommand->GetMethod() == "SetGrid" ||
3168          theCommand->GetMethod() == "SetGridSpacing" )
3169     {
3170       TCollection_AsciiString axis = theCommand->GetArg( theCommand->GetNbArgs() );
3171       int iArg = axis.Value(1) - '0';
3172       if ( theCommand->GetMethod() == "SetGrid" )
3173       {
3174         setCreationArg( 1+iArg, theCommand->GetArg( 1 ));
3175       }
3176       else
3177       {
3178         myCurCrMethod->myArgs[ iArg ] = "[ ";
3179         myCurCrMethod->myArgs[ iArg ] += theCommand->GetArg( 1 );
3180         myCurCrMethod->myArgs[ iArg ] += ", ";
3181         myCurCrMethod->myArgs[ iArg ] += theCommand->GetArg( 2 );
3182         myCurCrMethod->myArgs[ iArg ] += "]";
3183       }
3184       myArgCommands.push_back( theCommand );
3185       //rememberCmdOfParameter( theCommand ); -- these commands are marked as
3186       //                                  accumulative, else, if the creation
3187       //                 is not converted, commands for axes 1 and 2 are lost
3188       return;
3189     }
3190   }
3191
3192   if( theCommand->GetMethod() == "SetLength" )
3193   {
3194     // NOW it is OBSOLETE
3195     // ex: hyp.SetLength(start, 1)
3196     //     hyp.SetLength(end,   0)
3197     ASSERT(( theCommand->GetArg( 2 ).IsIntegerValue() ));
3198     int i = 1 - theCommand->GetArg( 2 ).IntegerValue();
3199     TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
3200     for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
3201     {
3202       CreationMethod& crMethod = type2meth->second;
3203         while ( crMethod.myArgs.size() < i+1 )
3204           crMethod.myArgs.push_back( "[]" );
3205         crMethod.myArgs[ i ] = theCommand->GetArg( 1 ); // arg value
3206     }
3207     myArgCommands.push_back( theCommand );
3208   }
3209   else
3210   {
3211     _pyHypothesis::Process( theCommand );
3212   }
3213 }
3214 //================================================================================
3215 /*!
3216  * \brief Clear SetObjectEntry() as it is called by methods of Mesh_Segment
3217  */
3218 //================================================================================
3219
3220 void _pyComplexParamHypo::Flush()
3221 {
3222   list < Handle(_pyCommand) >::iterator cmd;
3223   if ( IsWrapped() )
3224   {
3225     for ( cmd = myUnusedCommands.begin(); cmd != myUnusedCommands.end(); ++cmd )
3226       if ((*cmd)->GetMethod() == "SetObjectEntry" )
3227         (*cmd)->Clear();
3228   }
3229
3230   // if ( GetAlgoType() == "Cartesian_3D" )
3231   // {
3232   //   _pyID algo = myCreationCmd->GetObject();
3233   //   for ( cmd = myProcessedCmds.begin(); cmd != myProcessedCmds.end(); ++cmd )
3234   //   {
3235   //     if ( IsWrapped() )
3236   //     {
3237   //       StructToList( *cmd, /*checkMethod=*/false );
3238   //       const _AString & method = (*cmd)->GetMethod();
3239   //       if ( method == "SetFixedPoint" )
3240   //         (*cmd)->SetObject( algo );
3241   //     }
3242   //   }
3243   // }
3244 }
3245
3246 //================================================================================
3247 /*!
3248  * \brief Convert methods of 1D hypotheses to my own methods
3249  * \param theCommand - The called hypothesis method
3250  */
3251 //================================================================================
3252
3253 void _pyLayerDistributionHypo::Process( const Handle(_pyCommand)& theCommand)
3254 {
3255   if ( theCommand->GetMethod() != "SetLayerDistribution" )
3256     return;
3257
3258   const _pyID& hyp1dID = theCommand->GetArg( 1 );
3259   // Handle(_pyHypothesis) hyp1d = theGen->FindHyp( hyp1dID );
3260   // if ( hyp1d.IsNull() && ! my1dHyp.IsNull()) // apparently hypId changed at study restoration
3261   // {
3262   //   TCollection_AsciiString cmd =
3263   //     my1dHyp->GetCreationCmd()->GetIndentation() + hyp1dID + " = " + my1dHyp->GetID();
3264   //   Handle(_pyCommand) newCmd = theGen->AddCommand( cmd );
3265   //   theGen->SetCommandAfter( newCmd, my1dHyp->GetCreationCmd() );
3266   //   hyp1d = my1dHyp;
3267   // }
3268   // else if ( !my1dHyp.IsNull() && hyp1dID != my1dHyp->GetID() )
3269   // {
3270   //   // 1D hypo is already set, so distribution changes and the old
3271   //   // 1D hypo is thrown away
3272   //   my1dHyp->ClearAllCommands();
3273   // }
3274   // my1dHyp = hyp1d;
3275   // //my1dHyp->SetRemovedFromStudy( false );
3276
3277   // if ( !myArgCommands.empty() )
3278   //   myArgCommands.back()->Clear();
3279   myCurCrMethod->myArgs.push_back( hyp1dID );
3280   myArgCommands.push_back( theCommand );
3281 }
3282
3283 //================================================================================
3284 /*!
3285  * \brief
3286   * \param theAdditionCmd - command to be converted
3287   * \param theMesh - mesh instance
3288   * \retval bool - status
3289  */
3290 //================================================================================
3291
3292 bool _pyLayerDistributionHypo::Addition2Creation( const Handle(_pyCommand)& theAdditionCmd,
3293                                                   const _pyID&              theMesh)
3294 {
3295   myIsWrapped = false;
3296
3297   if ( my1dHyp.IsNull() )
3298     return false;
3299
3300   // set "SetLayerDistribution()" after addition cmd
3301   theAdditionCmd->AddDependantCmd( myArgCommands.front() );
3302
3303   _pyID geom = theAdditionCmd->GetArg( 1 );
3304
3305   Handle(_pyHypothesis) algo = theGen->FindAlgo( geom, theMesh, this );
3306   if ( !algo.IsNull() )
3307   {
3308     my1dHyp->SetMesh( theMesh );
3309     my1dHyp->SetConvMethodAndType(my1dHyp->GetAlgoCreationMethod().ToCString(),
3310                                   algo->GetAlgoType().ToCString());
3311     if ( !my1dHyp->Addition2Creation( theAdditionCmd, theMesh ))
3312       return false;
3313
3314     // clear "SetLayerDistribution()" cmd
3315     myArgCommands.back()->Clear();
3316
3317     // Convert my creation => me = RadialPrismAlgo.Get3DHypothesis()
3318
3319     // find RadialPrism algo created on <geom> for theMesh
3320     GetCreationCmd()->SetObject( algo->GetID() );
3321     GetCreationCmd()->SetMethod( myAlgoMethod );
3322     GetCreationCmd()->RemoveArgs();
3323     theAdditionCmd->AddDependantCmd( GetCreationCmd() );
3324     myIsWrapped = true;
3325   }
3326   return myIsWrapped;
3327 }
3328
3329 //================================================================================
3330 /*!
3331  * \brief
3332  */
3333 //================================================================================
3334
3335 void _pyLayerDistributionHypo::Flush()
3336 {
3337   // as creation of 1D hyp was written later then it's edition,
3338   // we need to find all it's edition calls and process them
3339   list< Handle(_pyCommand) >::iterator cmd = myArgCommands.begin();
3340   _pyID prevNewName;
3341   for ( cmd = myArgCommands.begin(); cmd != myArgCommands.end(); ++cmd )
3342   {    
3343     const _pyID& hyp1dID = (*cmd)->GetArg( 1 );
3344     if ( hyp1dID.IsEmpty() ) continue;
3345
3346     Handle(_pyHypothesis) hyp1d = theGen->FindHyp( hyp1dID );
3347
3348     // make a new name for 1D hyp = "HypType" + "_Distribution"
3349     _pyID newName;
3350     if ( hyp1d.IsNull() ) // apparently hypId changed at study restoration
3351     {
3352       if ( prevNewName.IsEmpty() ) continue;
3353       newName = prevNewName;
3354     }
3355     else
3356     {
3357       if ( hyp1d->IsWrapped() ) {
3358         newName = hyp1d->GetCreationCmd()->GetMethod();
3359       }
3360       else {
3361         TCollection_AsciiString hypTypeQuoted = hyp1d->GetCreationCmd()->GetArg(1);
3362         newName = hypTypeQuoted.SubString( 2, hypTypeQuoted.Length() - 1 );
3363       }
3364       newName += "_Distribution";
3365       prevNewName = newName;
3366     
3367       hyp1d->GetCreationCmd()->SetResultValue( newName );
3368     }
3369     list< Handle(_pyCommand) >& cmds = theGen->GetCommands();
3370     list< Handle(_pyCommand) >::iterator cmdIt = cmds.begin();
3371     for ( ; cmdIt != cmds.end(); ++cmdIt ) {
3372       const _pyID& objID = (*cmdIt)->GetObject();
3373       if ( objID == hyp1dID ) {
3374         if ( !hyp1d.IsNull() )
3375         {
3376           hyp1d->Process( *cmdIt );
3377           hyp1d->GetCreationCmd()->AddDependantCmd( *cmdIt );
3378         }
3379         ( *cmdIt )->SetObject( newName );
3380       }
3381     }
3382     // Set new hyp name to SetLayerDistribution(hyp1dID) cmd
3383     (*cmd)->SetArg( 1, newName );
3384   }
3385 }
3386
3387 //================================================================================
3388 /*!
3389  * \brief additionally to Addition2Creation, clears SetDistrType() command
3390   * \param theCmd - AddHypothesis() command
3391   * \param theMesh - mesh to which a hypothesis is added
3392   * \retval bool - convertion result
3393  */
3394 //================================================================================
3395
3396 bool _pyNumberOfSegmentsHyp::Addition2Creation( const Handle(_pyCommand)& theCmd,
3397                                                 const _pyID&              theMesh)
3398 {
3399   if ( IsWrappable( theMesh ) && myCurCrMethod->myArgs.size() > 1 ) {
3400     // scale factor (2-nd arg) is provided: clear SetDistrType(1) command
3401     bool scaleDistrType = false;
3402     list<Handle(_pyCommand)>::reverse_iterator cmd = myUnusedCommands.rbegin();
3403     for ( ; cmd != myUnusedCommands.rend(); ++cmd ) {
3404       if ( (*cmd)->GetMethod() == "SetDistrType" ) {
3405         if ( (*cmd)->GetArg( 1 ) == "1" ) {
3406           scaleDistrType = true;
3407           (*cmd)->Clear();
3408         }
3409         else if ( !scaleDistrType ) {
3410           // distribution type changed: remove scale factor from args
3411           TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
3412           for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
3413           {
3414             CreationMethod& crMethod = type2meth->second;
3415             if ( crMethod.myArgs.size() == 2 )
3416               crMethod.myArgs.pop_back();
3417           }
3418           break;
3419         }
3420       }
3421     }
3422   }
3423   return _pyHypothesis::Addition2Creation( theCmd, theMesh );
3424 }
3425
3426 //================================================================================
3427 /*!
3428  * \brief remove repeated commands defining distribution
3429  */
3430 //================================================================================
3431
3432 void _pyNumberOfSegmentsHyp::Flush()
3433 {
3434   // find number of the last SetDistrType() command
3435   list<Handle(_pyCommand)>::reverse_iterator cmd = myUnusedCommands.rbegin();
3436   int distrTypeNb = 0;
3437   for ( ; !distrTypeNb && cmd != myUnusedCommands.rend(); ++cmd )
3438     if ( (*cmd)->GetMethod() == "SetDistrType" ) {
3439       if ( cmd != myUnusedCommands.rbegin() )
3440         distrTypeNb = (*cmd)->GetOrderNb();
3441     }
3442     else if (IsWrapped() && (*cmd)->GetMethod() == "SetObjectEntry" ) {
3443       (*cmd)->Clear();
3444     }
3445   // clear commands before the last SetDistrType()
3446   list<Handle(_pyCommand)> * cmds[2] = { &myArgCommands, &myUnusedCommands };
3447   set< int > treatedCmdNbs; // avoid treating same cmd twice
3448   for ( int i = 0; i < 2; ++i ) {
3449     set<TCollection_AsciiString> uniqueMethods;
3450     list<Handle(_pyCommand)> & cmdList = *cmds[i];
3451     for ( cmd = cmdList.rbegin(); cmd != cmdList.rend(); ++cmd )
3452     {
3453       if ( !treatedCmdNbs.insert( (*cmd)->GetOrderNb() ).second )
3454         continue;// avoid treating same cmd twice
3455       bool clear = ( (*cmd)->GetOrderNb() < distrTypeNb );
3456       const TCollection_AsciiString& method = (*cmd)->GetMethod();
3457       if ( !clear || method == "SetNumberOfSegments" ) {
3458         bool isNewInSet = uniqueMethods.insert( method ).second;
3459         clear = !isNewInSet;
3460       }
3461       if ( clear )
3462         (*cmd)->Clear();
3463     }
3464     cmdList.clear();
3465   }
3466 }
3467
3468 //================================================================================
3469 /*!
3470  * \brief Convert the command adding "SegmentLengthAroundVertex" to mesh
3471  * into regular1D.LengthNearVertex( length, vertex )
3472   * \param theCmd - The command like mesh.AddHypothesis( vertex, SegmentLengthAroundVertex )
3473   * \param theMesh - The mesh needing this hypo
3474   * \retval bool - false if the command cant be converted
3475  */
3476 //================================================================================
3477
3478 bool _pySegmentLengthAroundVertexHyp::Addition2Creation( const Handle(_pyCommand)& theCmd,
3479                                                          const _pyID&              theMeshID)
3480 {
3481   if ( IsWrappable( theMeshID )) {
3482
3483     _pyID vertex = theCmd->GetArg( 1 );
3484
3485     // the problem here is that segment algo will not be found
3486     // by pyHypothesis::Addition2Creation() for <vertex>, so we try to find
3487     // geometry where segment algorithm is assigned
3488     Handle(_pyHypothesis) algo;
3489     _pyID geom = vertex;
3490     while ( algo.IsNull() && !geom.IsEmpty()) {
3491       // try to find geom as a father of <vertex>
3492       geom = FatherID( geom );
3493       algo = theGen->FindAlgo( geom, theMeshID, this );
3494     }
3495     if ( algo.IsNull() )
3496       return false; // also possible to find geom as brother of veretex...
3497     // set geom instead of vertex
3498     theCmd->SetArg( 1, geom );
3499
3500     // set vertex as a second arg
3501     if ( myCurCrMethod->myArgs.size() < 1) setCreationArg( 1, "1" ); // :(
3502     setCreationArg( 2, vertex );
3503
3504     // mesh.AddHypothesis(vertex, SegmentLengthAroundVertex) -->
3505     // theMeshID.LengthNearVertex( length, vertex )
3506     return _pyHypothesis::Addition2Creation( theCmd, theMeshID );
3507   }
3508   return false;
3509 }
3510
3511 //================================================================================
3512 /*!
3513  * \brief _pyAlgorithm constructor
3514  * \param theCreationCmd - The command like "algo = smeshgen.CreateHypothesis(type,lib)"
3515  */
3516 //================================================================================
3517
3518 _pyAlgorithm::_pyAlgorithm(const Handle(_pyCommand)& theCreationCmd)
3519   : _pyHypothesis( theCreationCmd )
3520 {
3521   myIsAlgo = true;
3522 }
3523
3524 //================================================================================
3525 /*!
3526  * \brief Convert the command adding an algorithm to mesh
3527   * \param theCmd - The command like mesh.AddHypothesis( geom, algo )
3528   * \param theMesh - The mesh needing this algo
3529   * \retval bool - false if the command cant be converted
3530  */
3531 //================================================================================
3532
3533 bool _pyAlgorithm::Addition2Creation( const Handle(_pyCommand)& theCmd,
3534                                       const _pyID&              theMeshID)
3535 {
3536   // mesh.AddHypothesis(geom,algo) --> theMeshID.myCreationMethod()
3537   if ( _pyHypothesis::Addition2Creation( theCmd, theMeshID )) {
3538     theGen->SetAccessorMethod( GetID(), "GetAlgorithm()" );
3539     return true;
3540   }
3541   return false;
3542 }
3543
3544 //================================================================================
3545 /*!
3546  * \brief Return starting position of a part of python command
3547   * \param thePartIndex - The index of command part
3548   * \retval int - Part position
3549  */
3550 //================================================================================
3551
3552 int _pyCommand::GetBegPos( int thePartIndex ) const
3553 {
3554   if ( IsEmpty() )
3555     return EMPTY;
3556   if ( myBegPos.Length() < thePartIndex )
3557     return UNKNOWN;
3558   ASSERT( thePartIndex > 0 );
3559   return myBegPos( thePartIndex );
3560 }
3561
3562 //================================================================================
3563 /*!
3564  * \brief Store starting position of a part of python command
3565   * \param thePartIndex - The index of command part
3566   * \param thePosition - Part position
3567  */
3568 //================================================================================
3569
3570 void _pyCommand::SetBegPos( int thePartIndex, int thePosition )
3571 {
3572   while ( myBegPos.Length() < thePartIndex )
3573     myBegPos.Append( UNKNOWN );
3574   ASSERT( thePartIndex > 0 );
3575   myBegPos( thePartIndex ) = thePosition;
3576 }
3577
3578 //================================================================================
3579 /*!
3580  * \brief Returns whitespace symbols at the line beginning
3581   * \retval TCollection_AsciiString - result
3582  */
3583 //================================================================================
3584
3585 TCollection_AsciiString _pyCommand::GetIndentation()
3586 {
3587   int end = 1;
3588   while ( end <= Length() && isblank( myString.Value( end )))
3589     ++end;
3590   return ( end == 1 ) ? _AString("") : myString.SubString( 1, end - 1 );
3591 }
3592
3593 //================================================================================
3594 /*!
3595  * \brief Return substring of python command looking like ResultValue = Obj.Meth()
3596   * \retval const TCollection_AsciiString & - ResultValue substring
3597  */
3598 //================================================================================
3599
3600 const TCollection_AsciiString & _pyCommand::GetResultValue()
3601 {
3602   if ( GetBegPos( RESULT_IND ) == UNKNOWN )
3603   {
3604     SetBegPos( RESULT_IND, EMPTY );
3605     int begPos, endPos = myString.Location( "=", 1, Length() );
3606     if ( endPos )
3607     {
3608       begPos = 1;
3609       while ( begPos < endPos && isspace( myString.Value( begPos ))) ++begPos;
3610       if ( begPos < endPos )
3611       {
3612         SetBegPos( RESULT_IND, begPos );
3613         --endPos;
3614         while ( begPos < endPos && isspace( myString.Value( endPos ))) --endPos;
3615         myRes = myString.SubString( begPos, endPos );
3616       }
3617     }
3618   }
3619   return myRes;
3620 }
3621
3622 //================================================================================
3623 /*!
3624  * \brief Return number of python command result value ResultValue = Obj.Meth()
3625  */
3626 //================================================================================
3627
3628 int _pyCommand::GetNbResultValues()
3629 {
3630   GetResultValue(1);
3631   return myResults.Length();
3632 }
3633
3634
3635 //================================================================================
3636 /*!
3637  * \brief Return substring of python command looking like
3638  *  ResultValue1 , ResultValue2,... = Obj.Meth() with res index
3639  * \retval const TCollection_AsciiString & - ResultValue with res index substring
3640  */
3641 //================================================================================
3642 const _AString& _pyCommand::GetResultValue(int res)
3643 {
3644   if ( GetResultValue().IsEmpty() )
3645     return theEmptyString;
3646
3647   if ( myResults.IsEmpty() )
3648   {
3649     int begPos = 1;
3650     if ( SkipSpaces( myRes, begPos ) && myRes.Value( begPos ) == '[' )
3651       ++begPos; // skip [, else the whole list is returned
3652     while ( begPos < myRes.Length() ) {
3653       _AString result = GetWord( myRes, begPos, true );
3654       begPos += result.Length();
3655       // if(res == Nb) {
3656       //   result.RemoveAll('[');
3657       //   result.RemoveAll(']');
3658       //   return result;
3659       // }
3660       // if(Nb>res)
3661       //   break;
3662       myResults.Append( result );
3663     }
3664   }
3665   if ( res > 0 && res <= myResults.Length() )
3666     return myResults( res );
3667   return theEmptyString;
3668 }
3669
3670 //================================================================================
3671 /*!
3672  * \brief Return substring of python command looking like ResVal = Object.Meth()
3673  * \retval const TCollection_AsciiString & - Object substring
3674  */
3675 //================================================================================
3676
3677 const TCollection_AsciiString & _pyCommand::GetObject()
3678 {
3679   if ( GetBegPos( OBJECT_IND ) == UNKNOWN )
3680   {
3681     // beginning
3682     int begPos = GetBegPos( RESULT_IND );
3683     if ( begPos < 1 ) {
3684       begPos = myString.Location( "=", 1, Length() ) + 1;
3685       // is '=' in the string argument (for example, name) or not
3686       int nb1 = 0; // number of ' character at the left of =
3687       int nb2 = 0; // number of " character at the left of =
3688       for ( int i = 1; i < begPos-1; i++ ) {
3689         if ( myString.Value( i )=='\'' )
3690           nb1 += 1;
3691         else if ( myString.Value( i )=='"' )
3692           nb2 += 1;
3693       }
3694       // if number of ' or " is not divisible by 2,
3695       // then get an object at the start of the command
3696       if ( nb1 % 2 != 0 || nb2 % 2 != 0 )
3697         begPos = 1;
3698     }
3699     else {
3700       begPos += myRes.Length();
3701     }
3702     myObj = GetWord( myString, begPos, true );
3703     if ( begPos != EMPTY )
3704     {
3705       // check if object is complex,
3706       // so far consider case like "smesh.Method()"
3707       if ( int bracketPos = myString.Location( "(", begPos, Length() )) {
3708         //if ( bracketPos==0 ) bracketPos = Length();
3709         int dotPos = begPos+myObj.Length();
3710         while ( dotPos+1 < bracketPos ) {
3711           if ( int pos = myString.Location( ".", dotPos+1, bracketPos ))
3712             dotPos = pos;
3713           else
3714             break;
3715         }
3716         if ( dotPos > begPos+myObj.Length() )
3717           myObj = myString.SubString( begPos, dotPos-1 );
3718       }
3719     }
3720     // 1st word after '=' is an object
3721     // else // no method -> no object
3722     // {
3723     //   myObj.Clear();
3724     //   begPos = EMPTY;
3725     // }
3726     // store
3727     SetBegPos( OBJECT_IND, begPos );
3728   }
3729   //SCRUTE(myObj);
3730   return myObj;
3731 }
3732
3733 //================================================================================
3734 /*!
3735  * \brief Return substring of python command looking like ResVal = Obj.Method()
3736   * \retval const TCollection_AsciiString & - Method substring
3737  */
3738 //================================================================================
3739
3740 const TCollection_AsciiString & _pyCommand::GetMethod()
3741 {
3742   if ( GetBegPos( METHOD_IND ) == UNKNOWN )
3743   {
3744     // beginning
3745     int begPos = GetBegPos( OBJECT_IND );
3746     bool forward = true;
3747     if ( begPos < 1 ) {
3748       begPos = myString.Location( "(", 1, Length() ) - 1;
3749       forward = false;
3750     }
3751     else {
3752       begPos += myObj.Length();
3753     }
3754     // store
3755     myMeth = GetWord( myString, begPos, forward );
3756     SetBegPos( METHOD_IND, begPos );
3757   }
3758   //SCRUTE(myMeth);
3759   return myMeth;
3760 }
3761
3762 //================================================================================
3763 /*!
3764  * \brief Returns true if there are brackets after the method
3765  */
3766 //================================================================================
3767
3768 bool _pyCommand::IsMethodCall()
3769 {
3770   if ( GetMethod().IsEmpty() )
3771     return false;
3772   const char* s = myString.ToCString() + GetBegPos( METHOD_IND ) + myMeth.Length() - 1;
3773   return ( s[0] == '(' || s[1] == '(' );
3774 }
3775
3776 //================================================================================
3777 /*!
3778  * \brief Return substring of python command looking like ResVal = Obj.Meth(Arg1,...)
3779   * \retval const TCollection_AsciiString & - Arg<index> substring
3780  */
3781 //================================================================================
3782
3783 const TCollection_AsciiString & _pyCommand::GetArg( int index )
3784 {
3785   if ( GetBegPos( ARG1_IND ) == UNKNOWN )
3786   {
3787     // Find all args
3788
3789     int pos = GetBegPos( METHOD_IND ) + myMeth.Length();
3790     if ( pos < 1 )
3791       pos = myString.Location( "(", 1, Length() );
3792     else
3793       --pos;
3794
3795     // we are at or before '(', skip it if present
3796     if ( pos > 0 ) {
3797       while ( pos <= Length() && myString.Value( pos ) != '(' ) ++pos;
3798       if ( pos > Length() )
3799         pos = 0;
3800     }
3801     if ( pos < 1 ) {
3802       SetBegPos( ARG1_IND, 0 ); // even no '('
3803       return theEmptyString;
3804     }
3805     ++pos;
3806
3807     list< TCollection_AsciiString > separatorStack( 1, ",)");
3808     bool ignoreNesting = false;
3809     int prevPos = pos;
3810     while ( pos <= Length() )
3811     {
3812       const char chr = myString.Value( pos );
3813
3814       if ( separatorStack.back().Location( chr, 1, separatorStack.back().Length()))
3815       {
3816         if ( separatorStack.size() == 1 ) // a comma dividing args or a terminal ')' found
3817         {
3818           while ( pos-1 >= prevPos && isspace( myString.Value( prevPos )))
3819             ++prevPos;
3820           TCollection_AsciiString arg;
3821           if ( pos-1 >= prevPos ) {
3822             arg = myString.SubString( prevPos, pos-1 );
3823             arg.RightAdjust(); // remove spaces
3824             arg.LeftAdjust();
3825           }
3826           if ( !arg.IsEmpty() || chr == ',' )
3827           {
3828             SetBegPos( ARG1_IND + myArgs.Length(), prevPos );
3829             myArgs.Append( arg );
3830           }
3831           if ( chr == ')' )
3832             break;
3833           prevPos = pos+1;
3834         }
3835         else // end of nesting args found
3836         {
3837           separatorStack.pop_back();
3838           ignoreNesting = false;
3839         }
3840       }
3841       else if ( !ignoreNesting )
3842       {
3843         switch ( chr ) {
3844         case '(' : separatorStack.push_back(")"); break;
3845         case '[' : separatorStack.push_back("]"); break;
3846         case '\'': separatorStack.push_back("'");  ignoreNesting=true; break;
3847         case '"' : separatorStack.push_back("\""); ignoreNesting=true; break;
3848         default:;
3849         }
3850       }
3851       ++pos;
3852     }
3853   }
3854   if ( myArgs.Length() < index )
3855     return theEmptyString;
3856   return myArgs( index );
3857 }
3858
3859 //================================================================================
3860 /*!
3861  * \brief Return position where arguments begin
3862  */
3863 //================================================================================
3864
3865 int _pyCommand::GetArgBeginning() const
3866 {
3867   int pos = GetBegPos( ARG1_IND );
3868   if ( pos == UNKNOWN )
3869   {
3870     pos = GetBegPos( METHOD_IND ) + myMeth.Length();
3871     if ( pos < 1 )
3872       pos = myString.Location( "(", 4, Length() ); // 4 = strlen("b.c(")
3873   }
3874   return pos;
3875 }
3876
3877 //================================================================================
3878 /*!
3879  * \brief Check if char is a word part
3880   * \param c - The character to check
3881   * \retval bool - The check result
3882  */
3883 //================================================================================
3884
3885 static inline bool isWord(const char c, const bool dotIsWord)
3886 {
3887   return
3888     !isspace(c) && c != ',' && c != '=' && c != ')' && c != '(' && ( dotIsWord || c != '.');
3889 }
3890
3891 //================================================================================
3892 /*!
3893  * \brief Looks for a word in the string and returns word's beginning
3894   * \param theString - The input string
3895   * \param theStartPos - The position to start the search, returning word's beginning
3896   * \param theForward - The search direction
3897   * \retval TCollection_AsciiString - The found word
3898  */
3899 //================================================================================
3900
3901 TCollection_AsciiString _pyCommand::GetWord( const _AString & theString,
3902                                              int &            theStartPos,
3903                                              const bool       theForward,
3904                                              const bool       dotIsWord )
3905 {
3906   int beg = theStartPos, end = theStartPos;
3907   theStartPos = EMPTY;
3908   if ( beg < 1 || beg > theString.Length() )
3909     return theEmptyString;
3910
3911   if ( theForward ) { // search forward
3912     // beg
3913     while ( beg <= theString.Length() && !isWord( theString.Value( beg ), dotIsWord))
3914       ++beg;
3915     if ( beg > theString.Length() )
3916       return theEmptyString; // no word found
3917     // end
3918     end = beg + 1;
3919     char begChar = theString.Value( beg );
3920     if ( begChar == '"' || begChar == '\'' || begChar == '[') {
3921       char endChar = ( begChar == '[' ) ? ']' : begChar;
3922       // end is at the corresponding quoting mark or bracket
3923       while ( end < theString.Length() &&
3924               ( theString.Value( end ) != endChar || theString.Value( end-1 ) == '\\'))
3925         ++end;
3926     }
3927     else {
3928       while ( end <= theString.Length() && isWord( theString.Value( end ), dotIsWord))
3929         ++end;
3930       --end;
3931     }
3932   }
3933   else {  // search backward
3934     // end
3935     while ( end > 0 && !isWord( theString.Value( end ), dotIsWord))
3936       --end;
3937     if ( end == 0 )
3938       return theEmptyString; // no word found
3939     beg = end - 1;
3940     char endChar = theString.Value( end );
3941     if ( endChar == '"' || endChar == '\'' || endChar == ']') {
3942       char begChar = ( endChar == ']' ) ? '[' : endChar;
3943       // beg is at the corresponding quoting mark
3944       while ( beg > 1 &&
3945               ( theString.Value( beg ) != begChar || theString.Value( beg-1 ) == '\\'))
3946         --beg;
3947     }
3948     else {
3949       while ( beg > 0 && isWord( theString.Value( beg ), dotIsWord))
3950         --beg;
3951       ++beg;
3952     }
3953   }
3954   theStartPos = beg;
3955   //cout << theString << " ---- " << beg << " - " << end << endl;
3956   return theString.SubString( beg, end );
3957 }
3958
3959 //================================================================================
3960 /*!
3961  * \brief Returns true if the string looks like a study entry
3962  */
3963 //================================================================================
3964
3965 bool _pyCommand::IsStudyEntry( const TCollection_AsciiString& str )
3966 {
3967   if ( str.Length() < 5 ) return false;
3968
3969   int nbColons = 0, isColon;
3970   for ( int i = 1; i <= str.Length(); ++i )
3971   {
3972     char c = str.Value(i);
3973     if (!( isColon = (c == ':')) && ( c < '0' || c > '9' ))
3974       return false;
3975     nbColons += isColon;
3976   }
3977   return nbColons > 2 && str.Length()-nbColons > 2;
3978 }
3979
3980 //================================================================================
3981 /*!
3982  * \brief Returns true if the string looks like an object ID but not like a list,
3983  *        string, command etc.
3984  */
3985 //================================================================================
3986
3987 bool _pyCommand::IsID( const TCollection_AsciiString& str )
3988 {
3989   if ( str.Length() < 1 ) return false;
3990
3991   const char* s = str.ToCString();
3992
3993   for ( int i = 0; i < str.Length(); ++i )
3994     if ( !IsIDChar( s[i] ))
3995       return false;
3996
3997   return true;
3998 }
3999
4000 //================================================================================
4001 /*!
4002  * \brief Finds entries in a sting
4003  */
4004 //================================================================================
4005
4006 std::list< _pyID > _pyCommand::GetStudyEntries( const TCollection_AsciiString& str )
4007 {
4008   std::list< _pyID > resList;
4009   int pos = 0;
4010   while ( ++pos <= str.Length() )
4011   {
4012     if ( !isdigit( str.Value( pos ))) continue;
4013     if ( pos != 1 && ( isalpha( str.Value( pos-1 ) || str.Value( pos-1 ) == ':'))) continue;
4014
4015     int end = pos;
4016     while ( ++end <= str.Length() && ( isdigit( str.Value( end )) || str.Value( end ) == ':' ));
4017     _pyID entry = str.SubString( pos, end-1 );
4018     pos = end;
4019     if ( IsStudyEntry( entry ))
4020       resList.push_back( entry );
4021   }
4022   return resList;
4023 }
4024
4025 //================================================================================
4026 /*!
4027  * \brief Look for position where not space char is
4028   * \param theString - The string
4029   * \param thePos - The position to search from and which returns result
4030   * \retval bool - false if there are only space after thePos in theString
4031  */
4032 //================================================================================
4033
4034 bool _pyCommand::SkipSpaces( const TCollection_AsciiString & theString, int & thePos )
4035 {
4036   if ( thePos < 1 || thePos > theString.Length() )
4037     return false;
4038
4039   while ( thePos <= theString.Length() && isspace( theString.Value( thePos )))
4040     ++thePos;
4041
4042   return thePos <= theString.Length();
4043 }
4044
4045 //================================================================================
4046 /*!
4047  * \brief Modify a part of the command
4048   * \param thePartIndex - The index of the part
4049   * \param thePart - The new part string
4050   * \param theOldPart - The old part
4051  */
4052 //================================================================================
4053
4054 void _pyCommand::SetPart(int thePartIndex, const TCollection_AsciiString& thePart,
4055                         TCollection_AsciiString& theOldPart)
4056 {
4057   int pos = GetBegPos( thePartIndex );
4058   if ( pos <= Length() && theOldPart != thePart)
4059   {
4060     TCollection_AsciiString seperator;
4061     if ( pos < 1 ) {
4062       pos = GetBegPos( thePartIndex + 1 );
4063       if ( pos < 1 ) return;
4064       switch ( thePartIndex ) {
4065       case RESULT_IND: seperator = " = "; break;
4066       case OBJECT_IND: seperator = "."; break;
4067       case METHOD_IND: seperator = "()"; break;
4068       default:;
4069       }
4070     }
4071     myString.Remove( pos, theOldPart.Length() );
4072     if ( !seperator.IsEmpty() )
4073       myString.Insert( pos , seperator );
4074     myString.Insert( pos, thePart );
4075     // update starting positions of the following parts
4076     int posDelta = thePart.Length() + seperator.Length() - theOldPart.Length();
4077     for ( int i = thePartIndex + 1; i <= myBegPos.Length(); ++i ) {
4078       if ( myBegPos( i ) > 0 )
4079         myBegPos( i ) += posDelta;
4080     }
4081     theOldPart = thePart;
4082   }
4083 }
4084
4085 //================================================================================
4086 /*!
4087  * \brief Set agrument
4088   * \param index - The argument index, it counts from 1
4089   * \param theArg - The argument string
4090  */
4091 //================================================================================
4092
4093 void _pyCommand::SetArg( int index, const TCollection_AsciiString& theArg)
4094 {
4095   FindAllArgs();
4096   int argInd = ARG1_IND + index - 1;
4097   int pos = GetBegPos( argInd );
4098   if ( pos < 1 ) // no index-th arg exist, append inexistent args
4099   {
4100     // find a closing parenthesis
4101     if ( GetNbArgs() != 0 && index <= GetNbArgs() ) {
4102       int lastArgInd = GetNbArgs();
4103       pos = GetBegPos( ARG1_IND + lastArgInd  - 1 ) + GetArg( lastArgInd ).Length();
4104       while ( pos > 0 && pos <= Length() && myString.Value( pos ) != ')' )
4105         ++pos;
4106     }
4107     else {
4108       pos = Length();
4109       while ( pos > 0 && myString.Value( pos ) != ')' )
4110         --pos;
4111     }
4112     if ( pos < 1 || myString.Value( pos ) != ')' ) { // no parentheses at all
4113       myString += "()";
4114       pos = Length();
4115     }
4116     while ( myArgs.Length() < index ) {
4117       if ( myArgs.Length() )
4118         myString.Insert( pos++, "," );
4119       myArgs.Append("None");
4120       myString.Insert( pos, myArgs.Last() );
4121       SetBegPos( ARG1_IND + myArgs.Length() - 1, pos );
4122       pos += myArgs.Last().Length();
4123     }
4124   }
4125   SetPart( argInd, theArg, myArgs( index ));
4126 }
4127
4128 //================================================================================
4129 /*!
4130  * \brief Empty arg list
4131  */
4132 //================================================================================
4133
4134 void _pyCommand::RemoveArgs()
4135 {
4136   if ( int pos = myString.Location( '(', Max( 1, GetBegPos( METHOD_IND )), Length() ))
4137     myString.Trunc( pos );
4138   myString += ")";
4139   myArgs.Clear();
4140   if ( myBegPos.Length() >= ARG1_IND )
4141     myBegPos.Remove( ARG1_IND, myBegPos.Length() );
4142 }
4143
4144 //================================================================================
4145 /*!
4146  * \brief Comment a python command
4147  */
4148 //================================================================================
4149
4150 void _pyCommand::Comment()
4151 {
4152   if ( IsEmpty() ) return;
4153
4154   int i = 1;
4155   while ( i <= Length() && isspace( myString.Value(i) )) ++i;
4156   if ( i <= Length() )
4157   {
4158     myString.Insert( i, "#" );
4159     for ( int iPart = 1; iPart <= myBegPos.Length(); ++iPart )
4160     {
4161       int begPos = GetBegPos( iPart );
4162       if ( begPos != UNKNOWN && begPos != EMPTY )
4163         SetBegPos( iPart, begPos + 1 );
4164     }
4165   }
4166 }
4167
4168 //================================================================================
4169 /*!
4170  * \brief Set dependent commands after this one
4171  */
4172 //================================================================================
4173
4174 bool _pyCommand::SetDependentCmdsAfter() const
4175 {
4176   bool orderChanged = false;
4177   list< Handle(_pyCommand)>::const_reverse_iterator cmd = myDependentCmds.rbegin();
4178   for ( ; cmd != myDependentCmds.rend(); ++cmd ) {
4179     if ( (*cmd)->GetOrderNb() < GetOrderNb() ) {
4180       orderChanged = true;
4181       theGen->SetCommandAfter( *cmd, this );
4182       (*cmd)->SetDependentCmdsAfter();
4183     }
4184   }
4185   return orderChanged;
4186 }
4187 //================================================================================
4188 /*!
4189  * \brief Insert accessor method after theObjectID
4190   * \param theObjectID - id of the accessed object
4191   * \param theAcsMethod - name of the method giving access to the object
4192   * \retval bool - false if theObjectID is not found in the command string
4193  */
4194 //================================================================================
4195
4196 bool _pyCommand::AddAccessorMethod( _pyID theObjectID, const char* theAcsMethod )
4197 {
4198   if ( !theAcsMethod )
4199     return false;
4200   // start object search from the object, i.e. ignore result
4201   GetObject();
4202   int beg = GetBegPos( OBJECT_IND );
4203   if ( beg < 1 || beg > Length() )
4204     return false;
4205   bool added = false;
4206   while (( beg = myString.Location( theObjectID, beg, Length() )))
4207   {
4208     // check that theObjectID is not just a part of a longer ID
4209     int afterEnd = beg + theObjectID.Length();
4210     Standard_Character c = myString.Value( afterEnd );
4211     if ( !IsIDChar( c ))
4212     {
4213       // check if accessor method already present
4214       if ( c != '.' ||
4215            myString.Location( (char*) theAcsMethod, afterEnd, Length() ) != afterEnd+1) {
4216         // insertion
4217         int oldLen = Length();
4218         myString.Insert( afterEnd, (char*) theAcsMethod );
4219         myString.Insert( afterEnd, "." );
4220         // update starting positions of the parts following the modified one
4221         int posDelta = Length() - oldLen;
4222         for ( int i = 1; i <= myBegPos.Length(); ++i ) {
4223           if ( myBegPos( i ) > afterEnd )
4224             myBegPos( i ) += posDelta;
4225         }
4226         added = true;
4227       }
4228     }
4229     beg = afterEnd; // is a part -> next search
4230   }
4231   return added;
4232 }
4233
4234 //================================================================================
4235 /*!
4236  * \brief Creates pyObject
4237  */
4238 //================================================================================
4239
4240 _pyObject::_pyObject(const Handle(_pyCommand)& theCreationCmd, const _pyID& theID)
4241   : myID(theID), myCreationCmd(theCreationCmd), myIsPublished(false)
4242 {
4243   setID( theID );
4244 }
4245
4246 //================================================================================
4247 /*!
4248  * \brief Set up myID and myIsPublished
4249  */
4250 //================================================================================
4251
4252 void _pyObject::setID(const _pyID& theID)
4253 {
4254   myID = theID;
4255   myIsPublished = !theGen->IsNotPublished( GetID() );
4256 }
4257
4258 //================================================================================
4259 /*!
4260  * \brief Clear myCreationCmd and myProcessedCmds
4261  */
4262 //================================================================================
4263
4264 void _pyObject::ClearCommands()
4265 {
4266   if ( !CanClear() )
4267     return;
4268
4269   if ( !myCreationCmd.IsNull() )
4270     myCreationCmd->Clear();
4271
4272   list< Handle(_pyCommand) >::iterator cmd = myProcessedCmds.begin();
4273   for ( ; cmd != myProcessedCmds.end(); ++cmd )
4274     (*cmd)->Clear();
4275 }
4276
4277 //================================================================================
4278 /*!
4279  * \brief Return method name giving access to an interaface object wrapped by python class
4280   * \retval const char* - method name
4281  */
4282 //================================================================================
4283
4284 const char* _pyObject::AccessorMethod() const
4285 {
4286   return 0;
4287 }
4288 //================================================================================
4289 /*!
4290  * \brief Return ID of a father
4291  */
4292 //================================================================================
4293
4294 _pyID _pyObject::FatherID(const _pyID & childID)
4295 {
4296   int colPos = childID.SearchFromEnd(':');
4297   if ( colPos > 0 )
4298     return childID.SubString( 1, colPos-1 );
4299   return "";
4300 }
4301
4302 //================================================================================
4303 /*!
4304  * \brief SelfEraser erases creation command if none of it's commands invoked
4305  *        (e.g. filterManager) or it's not used as a command argument (e.g. a filter)
4306  */
4307 //================================================================================
4308
4309 _pySelfEraser::_pySelfEraser(const Handle(_pyCommand)& theCreationCmd)
4310   :_pyObject(theCreationCmd), myIgnoreOwnCalls(false)
4311 {
4312   myIsPublished = true; // prevent clearing as a not published
4313   theGen->KeepAgrCmds( GetID() ); // ask to fill myArgCmds
4314 }
4315
4316 //================================================================================
4317 /*!
4318  * \brief SelfEraser erases creation command if none of it's commands invoked
4319  *        (e.g. filterManager) or it's not used as a command argument (e.g. a filter)
4320  */
4321 //================================================================================
4322
4323 bool _pySelfEraser::CanClear()
4324 {
4325   bool toErase = false;
4326   if ( myIgnoreOwnCalls ) // check if this obj is used as argument
4327   {
4328     int nbArgUses = 0;
4329     list< Handle(_pyCommand) >::iterator cmd = myArgCmds.begin();
4330     for ( ; cmd != myArgCmds.end(); ++cmd )
4331       nbArgUses += IsAliveCmd( *cmd );
4332
4333     toErase = ( nbArgUses < 1 );
4334   }
4335   else
4336   {
4337     int nbCalls = 0;
4338     std::list< Handle(_pyCommand) >& cmds = GetProcessedCmds();
4339     std::list< Handle(_pyCommand) >::iterator cmd = cmds.begin();
4340     for ( ; cmd != cmds.end();  )
4341       // check of cmd emptiness is not enough as object can change
4342       if (( *cmd )->GetString().Search( GetID() ) > 0 )
4343         ++nbCalls, ++cmd;
4344       else
4345         cmd = cmds.erase( cmd ); // save the cmd from clearing
4346
4347     toErase = ( nbCalls < 1 );
4348   }
4349   return toErase;
4350 }
4351
4352 //================================================================================
4353 /*!
4354  * \brief Check if a command is or can be cleared
4355  */
4356 //================================================================================
4357
4358 bool _pySelfEraser::IsAliveCmd( const Handle(_pyCommand)& theCmd )
4359 {
4360   if ( theCmd->IsEmpty() )
4361     return false;
4362
4363   if ( !theGen->IsToKeepAllCommands() )
4364   {
4365     const _pyID& objID = theCmd->GetObject();
4366     Handle( _pyObject ) obj = theGen->FindObject( objID );
4367     if ( !obj.IsNull() )
4368       return !obj->CanClear();
4369   }
4370   return true;
4371 }
4372
4373 //================================================================================
4374 /*!
4375  * \brief SelfEraser erases creation command if none of it's commands invoked
4376  *        (e.g. filterManager) or it's not used as a command argument (e.g. a filter)
4377  */
4378 //================================================================================
4379
4380 void _pySelfEraser::Flush()
4381 {
4382   if ( CanClear() )
4383   {
4384     myIsPublished = false;
4385     _pyObject::ClearCommands();
4386   }
4387 }
4388
4389 //================================================================================
4390 /*!
4391  * \brief _pySubMesh constructor
4392  */
4393 //================================================================================
4394
4395 _pySubMesh::_pySubMesh(const Handle(_pyCommand)& theCreationCmd, bool toKeepAgrCmds):
4396   _pyObject(theCreationCmd)
4397 {
4398   myMesh = ObjectToMesh( theGen->FindObject( theCreationCmd->GetObject() ));
4399   if ( toKeepAgrCmds )
4400     theGen->KeepAgrCmds( GetID() ); // ask to fill myArgCmds
4401 }
4402
4403 //================================================================================
4404 /*!
4405  * \brief Return true if a sub-mesh can be used as argument of the given method
4406  */
4407 //================================================================================
4408
4409 bool _pySubMesh::CanBeArgOfMethod(const _AString& theMethodName)
4410 {
4411   return false;
4412 //   // names of all methods where a sub-mesh can be used as argument
4413 //   static TStringSet methods;
4414 //   if ( methods.empty() ) {
4415 //     const char * names[] = {
4416 //       // methods of SMESH_Gen
4417 //       "CopyMesh",
4418 //       // methods of SMESH_Group
4419 //       "AddFrom",
4420 //       // methods of SMESH_Measurements
4421 //       "MinDistance",
4422 //       // methods of SMESH_Mesh
4423 //       "ExportPartToMED","ExportCGNS","ExportPartToDAT","ExportPartToUNV","ExportPartToSTL",
4424 //       "RemoveSubMesh",
4425 //       // methods of SMESH_MeshEditor
4426 //       "ReorientObject","Reorient2D","TriToQuadObject","QuadToTriObject","SplitQuadObject",
4427 //       "SplitVolumesIntoTetra","SmoothObject","SmoothParametricObject","ConvertFromQuadraticObject",
4428 //       "RotationSweepObject","RotationSweepObjectMakeGroups","RotationSweepObject1D",
4429 //       "RotationSweepObject1DMakeGroups","RotationSweepObject2D","RotationSweepObject2DMakeGroups",
4430 //       "ExtrusionSweepObject","ExtrusionSweepObjectMakeGroups","ExtrusionSweepObject0D",
4431 //       "ExtrusionSweepObject0DMakeGroups","ExtrusionSweepObject1D","ExtrusionSweepObject2D",
4432 //       "ExtrusionSweepObject1DMakeGroups","ExtrusionSweepObject2DMakeGroups",
4433 //       "ExtrusionAlongPathObjX","ExtrusionAlongPathObject","ExtrusionAlongPathObjectMakeGroups",
4434 //       "ExtrusionAlongPathObject1D","ExtrusionAlongPathObject1DMakeGroups",
4435 //       "ExtrusionAlongPathObject2D","ExtrusionAlongPathObject2DMakeGroups","MirrorObject",
4436 //       "MirrorObjectMakeGroups","MirrorObjectMakeMesh","TranslateObject","Scale",
4437 //       "TranslateObjectMakeGroups","TranslateObjectMakeMesh","ScaleMakeGroups","ScaleMakeMesh",
4438 //       "RotateObject","RotateObjectMakeGroups","RotateObjectMakeMesh","FindCoincidentNodesOnPart",
4439 //       "FindCoincidentNodesOnPartBut","FindEqualElements","FindAmongElementsByPoint",
4440 //       "MakeBoundaryMesh","Create0DElementsOnAllNodes",
4441 //       "" }; // <- mark of end
4442 //     methods.Insert( names );
4443 //   }
4444 //   return methods.Contains( theMethodName );
4445 }
4446
4447 //================================================================================
4448 /*!
4449  * \brief count invoked commands
4450  */
4451 //================================================================================
4452
4453 void _pySubMesh::Process( const Handle(_pyCommand)& theCommand )
4454 {
4455   _pyObject::Process(theCommand); // count calls of Process()
4456 }
4457
4458 //================================================================================
4459 /*!
4460  * \brief Move creation command depending on invoked commands
4461  */
4462 //================================================================================
4463
4464 void _pySubMesh::Flush()
4465 {
4466   if ( GetNbCalls() == 0 && myArgCmds.empty() ) // move to the end of all commands
4467     theGen->GetLastCommand()->AddDependantCmd( GetCreationCmd() );
4468   else if ( !myCreator.IsNull() )
4469     // move to be just after creator
4470     myCreator->GetCreationCmd()->AddDependantCmd( GetCreationCmd() );
4471
4472   // move sub-mesh usage after creation cmd
4473   list< Handle(_pyCommand) >::iterator cmd = myArgCmds.begin();
4474   for ( ; cmd != myArgCmds.end(); ++cmd )
4475     if ( !(*cmd)->IsEmpty() )
4476       GetCreationCmd()->AddDependantCmd( *cmd );
4477 }
4478
4479 //================================================================================
4480 /*!
4481  * \brief Creates _pyGroup
4482  */
4483 //================================================================================
4484
4485 _pyGroup::_pyGroup(const Handle(_pyCommand)& theCreationCmd, const _pyID & id)
4486   :_pySubMesh(theCreationCmd, /*toKeepAgrCmds=*/false)
4487 {
4488   if ( !id.IsEmpty() )
4489     setID( id );
4490
4491   myCanClearCreationCmd = true;
4492
4493   const _AString& method = theCreationCmd->GetMethod();
4494   if ( method == "CreateGroup" ) // CreateGroup() --> CreateEmptyGroup()
4495   {
4496     theCreationCmd->SetMethod( "CreateEmptyGroup" );
4497   }
4498   // ----------------------------------------------------------------------
4499   else if ( method == "CreateGroupFromGEOM" ) // (type, name, grp)
4500   {
4501     _pyID geom = theCreationCmd->GetArg( 3 );
4502     // VSR 24/12/2010. PAL21106: always use GroupOnGeom() function on dump
4503     // next if(){...} section is commented
4504     //if ( sameGroupType( geom, theCreationCmd->GetArg( 1 )) ) { // --> Group(geom)
4505     //  theCreationCmd->SetMethod( "Group" );
4506     //  theCreationCmd->RemoveArgs();
4507     //  theCreationCmd->SetArg( 1, geom );
4508     //}
4509     //else {
4510     // ------------------------->>>>> GroupOnGeom( geom, name, typ )
4511       _pyID type = theCreationCmd->GetArg( 1 );
4512       _pyID name = theCreationCmd->GetArg( 2 );
4513       theCreationCmd->SetMethod( "GroupOnGeom" );
4514       theCreationCmd->RemoveArgs();
4515       theCreationCmd->SetArg( 1, geom );
4516       theCreationCmd->SetArg( 2, name );
4517       theCreationCmd->SetArg( 3, type );
4518     //}
4519   }
4520   else if ( method == "CreateGroupFromFilter" )
4521   {
4522     // -> GroupOnFilter(typ, name, aFilter0x4743dc0 -> aFilter_1)
4523     theCreationCmd->SetMethod( "GroupOnFilter" );
4524
4525     _pyID filterID = theCreationCmd->GetArg(3);
4526     Handle(_pyFilter) filter = Handle(_pyFilter)::DownCast( theGen->FindObject( filterID ));
4527     if ( !filter.IsNull())
4528     {
4529       if ( !filter->GetNewID().IsEmpty() )
4530         theCreationCmd->SetArg( 3, filter->GetNewID() );
4531       //filter->AddUser( this );
4532     }
4533     myFilter = filter;
4534   }
4535   else if ( method == "GetGroups" )
4536   {
4537     myCanClearCreationCmd = ( theCreationCmd->GetNbResultValues() == 1 );
4538   }
4539   else
4540   {
4541     // theCreationCmd does something else apart from creation of this group
4542     // and thus it can't be cleared if this group is removed
4543     myCanClearCreationCmd = false;
4544   }
4545 }
4546
4547 //================================================================================
4548 /*!
4549  * \brief Check if "[ group1, group2 ] = mesh.GetGroups()" creation command 
4550  *        can be cleared
4551  */
4552 //================================================================================
4553
4554 bool _pyGroup::CanClear()
4555 {
4556   if ( IsInStudy() )
4557     return false;
4558
4559   if ( !myCanClearCreationCmd &&
4560        !myCreationCmd.IsNull() &&
4561        myCreationCmd->GetMethod() == "GetGroups" )
4562   {
4563     TCollection_AsciiString grIDs = myCreationCmd->GetResultValue();
4564     list< _pyID >          idList = myCreationCmd->GetStudyEntries( grIDs );
4565     list< _pyID >::iterator  grID = idList.begin();
4566     if ( GetID() == *grID )
4567     {
4568       myCanClearCreationCmd = true;
4569       list< Handle(_pyGroup ) > groups;
4570       for ( ; grID != idList.end(); ++grID )
4571       {
4572         Handle(_pyGroup) group = Handle(_pyGroup)::DownCast( theGen->FindObject( *grID ));
4573         if ( group.IsNull() ) continue;
4574         groups.push_back( group );
4575         if ( group->IsInStudy() )
4576           myCanClearCreationCmd = false;
4577       }
4578       // set myCanClearCreationCmd == true to all groups
4579       list< Handle(_pyGroup ) >::iterator group = groups.begin();
4580       for ( ; group != groups.end(); ++group )
4581         (*group)->myCanClearCreationCmd = myCanClearCreationCmd;
4582     }
4583   }
4584
4585   return myCanClearCreationCmd;
4586 }
4587
4588 //================================================================================
4589 /*!
4590  * \brief set myCanClearCreationCmd = true if the main action of the creation
4591  *        command is discarded
4592  */
4593 //================================================================================
4594
4595 void _pyGroup::RemovedWithContents()
4596 {
4597   // this code would be appropriate if Add0DElementsToAllNodes() returned only new nodes
4598   // via a created group
4599   //if ( GetCreationCmd()->GetMethod() == "Add0DElementsToAllNodes")
4600   // myCanClearCreationCmd = true;
4601 }
4602
4603 //================================================================================
4604 /*!
4605  * \brief To convert creation of a group by filter
4606  */
4607 //================================================================================
4608
4609 void _pyGroup::Process( const Handle(_pyCommand)& theCommand)
4610 {
4611   // Convert the following set of commands into mesh.MakeGroupByFilter(groupName, theFilter)
4612   // group = mesh.CreateEmptyGroup( elemType, groupName )
4613   // aFilter.SetMesh(mesh)
4614   // nbAdd = group.AddFrom( aFilter )
4615   Handle(_pyFilter) filter;
4616   if ( theCommand->GetMethod() == "AddFrom" )
4617   {
4618     _pyID idSource = theCommand->GetArg(1);
4619     // check if idSource is a filter
4620     filter = Handle(_pyFilter)::DownCast( theGen->FindObject( idSource ));
4621     if ( !filter.IsNull() )
4622     {
4623       // find aFilter.SetMesh(mesh) to clear it, it should be just before theCommand
4624       list< Handle(_pyCommand) >::reverse_iterator cmdIt = theGen->GetCommands().rbegin();
4625       while ( *cmdIt != theCommand ) ++cmdIt;
4626       while ( (*cmdIt)->GetOrderNb() != 1 )
4627       {
4628         const Handle(_pyCommand)& setMeshCmd = *(++cmdIt);
4629         if ((setMeshCmd->GetObject() == idSource ||
4630              setMeshCmd->GetObject() == filter->GetNewID() )
4631             &&
4632             setMeshCmd->GetMethod() == "SetMesh")
4633         {
4634           setMeshCmd->Clear();
4635           break;
4636         }
4637       }
4638       // replace 3 commands by one
4639       theCommand->Clear();
4640       const Handle(_pyCommand)& makeGroupCmd = GetCreationCmd();
4641       TCollection_AsciiString name = makeGroupCmd->GetArg( 2 );
4642       if ( !filter->GetNewID().IsEmpty() )
4643         idSource = filter->GetNewID();
4644       makeGroupCmd->SetMethod( "MakeGroupByFilter" );
4645       makeGroupCmd->SetArg( 1, name );
4646       makeGroupCmd->SetArg( 2, idSource );
4647       filter->AddArgCmd( makeGroupCmd );
4648     }
4649   }
4650   else if ( theCommand->GetMethod() == "SetFilter" )
4651   {
4652     // set new name of a filter or clear the command if the same filter is set
4653     _pyID filterID = theCommand->GetArg(1);
4654     filter = Handle(_pyFilter)::DownCast( theGen->FindObject( filterID ));
4655     if ( !myFilter.IsNull() && filter == myFilter )
4656       theCommand->Clear();
4657     else if ( !filter.IsNull() && !filter->GetNewID().IsEmpty() )
4658       theCommand->SetArg( 1, filter->GetNewID() );
4659     myFilter = filter;
4660   }
4661   else if ( theCommand->GetMethod() == "GetFilter" )
4662   {
4663     // GetFilter() returns a filter with other ID, make myFilter process
4664     // calls of the returned filter
4665     if ( !myFilter.IsNull() )
4666     {
4667       theGen->SetProxyObject( theCommand->GetResultValue(), myFilter );
4668       theCommand->Clear();
4669     }
4670   }
4671
4672   // if ( !filter.IsNull() )
4673   //   filter->AddUser( this );
4674
4675   theGen->AddMeshAccessorMethod( theCommand );
4676 }
4677
4678 //================================================================================
4679 /*!
4680  * \brief Prevent clearing "DoubleNode...() command if a group created by it is removed
4681  */
4682 //================================================================================
4683
4684 void _pyGroup::Flush()
4685 {
4686   if ( !theGen->IsToKeepAllCommands() &&
4687        !myCreationCmd.IsNull() && !myCanClearCreationCmd )
4688   {
4689     myCreationCmd.Nullify(); // this way myCreationCmd won't be cleared
4690   }
4691 }
4692
4693 //================================================================================
4694 /*!
4695  * \brief Constructor of _pyFilter
4696  */
4697 //================================================================================
4698
4699 _pyFilter::_pyFilter(const Handle(_pyCommand)& theCreationCmd, const _pyID& newID/*=""*/)
4700   :_pyObject(theCreationCmd), myNewID( newID )
4701 {
4702   //myIsPublished = true; // prevent clearing as a not published
4703   theGen->KeepAgrCmds( GetID() ); // ask to fill myArgCmds
4704 }
4705
4706 //================================================================================
4707 /*!
4708  * \brief To convert creation of a filter by criteria and
4709  * to replace an old name by a new one
4710  */
4711 //================================================================================
4712
4713 void _pyFilter::Process( const Handle(_pyCommand)& theCommand)
4714 {
4715   if ( theCommand->GetObject() == GetID() )
4716     _pyObject::Process(theCommand); // count commands
4717
4718   if ( !myNewID.IsEmpty() )
4719     theCommand->SetObject( myNewID );
4720     
4721   // Convert the following set of commands into smesh.GetFilterFromCriteria(criteria)
4722   // aFilter0x2aaab0487080 = aFilterManager.CreateFilter()
4723   // aFilter0x2aaab0487080.SetCriteria(aCriteria)
4724   if ( GetNbCalls() == 1 && // none method was called before this SetCriteria() call
4725        theCommand->GetMethod() == "SetCriteria")
4726   {
4727     // aFilter.SetCriteria(aCriteria) ->
4728     // aFilter = smesh.GetFilterFromCriteria(criteria)
4729     if ( myNewID.IsEmpty() )
4730       theCommand->SetResultValue( GetID() );
4731     else
4732       theCommand->SetResultValue( myNewID );
4733     theCommand->SetObject( SMESH_2smeshpy::GenName() );
4734     theCommand->SetMethod( "GetFilterFromCriteria" );
4735
4736     // Swap "aFilterManager.CreateFilter()" and "smesh.GetFilterFromCriteria(criteria)"
4737     GetCreationCmd()->Clear();
4738     GetCreationCmd()->GetString() = theCommand->GetString();
4739     theCommand->Clear();
4740     theCommand->AddDependantCmd( GetCreationCmd() );
4741     // why swap? -- it's needed
4742     //GetCreationCmd()->Clear();
4743   }
4744   else if ( theCommand->GetMethod() == "SetMesh" )
4745   {
4746     if ( myMesh == theCommand->GetArg( 1 ))
4747       theCommand->Clear();
4748     else
4749       myMesh = theCommand->GetArg( 1 );
4750     theGen->AddMeshAccessorMethod( theCommand );
4751   }
4752 }
4753
4754 //================================================================================
4755 /*!
4756  * \brief Set new filter name to the creation command and to myArgCmds
4757  */
4758 //================================================================================
4759
4760 void _pyFilter::Flush()
4761 {
4762   if ( myNewID.IsEmpty() ) return;
4763   
4764   list< Handle(_pyCommand) >::iterator cmd = myArgCmds.begin();
4765   for ( ; cmd != myArgCmds.end(); ++cmd )
4766     if ( !(*cmd)->IsEmpty() )
4767     {
4768       _AString cmdStr = (*cmd)->GetString();
4769       _AString id     = GetID();
4770       int pos = cmdStr.Search( id );
4771       if ( pos > 0 )
4772       {
4773         cmdStr.Remove( pos, id.Length() );
4774         cmdStr.Insert( pos, myNewID );
4775       }
4776       (*cmd)->Clear();
4777       (*cmd)->GetString() = cmdStr;
4778     }
4779
4780   if ( !GetCreationCmd()->IsEmpty() )
4781     GetCreationCmd()->SetResultValue( myNewID );
4782 }
4783
4784 //================================================================================
4785 /*!
4786  * \brief Return true if all my users can be cleared
4787  */
4788 //================================================================================
4789
4790 bool _pyObject::CanClear()
4791 {
4792   list< Handle(_pyCommand) >::iterator cmd = myArgCmds.begin();
4793   for ( ; cmd != myArgCmds.end(); ++cmd )
4794     if ( !(*cmd)->IsEmpty() )
4795     {
4796       Handle(_pyObject) obj = theGen->FindObject( (*cmd)->GetObject() );
4797       if ( !obj.IsNull() && !obj->CanClear() )
4798         return false;
4799     }
4800   return ( !myIsPublished );
4801 }
4802
4803 //================================================================================
4804 /*!
4805  * \brief Reads _pyHypothesis'es from resource files of mesher Plugins
4806  */
4807 //================================================================================
4808
4809 _pyHypothesisReader::_pyHypothesisReader()
4810 {
4811   // Read xml files
4812   vector< string > xmlPaths = SMESH_Gen::GetPluginXMLPaths();
4813   LDOMParser xmlParser;
4814   for ( size_t i = 0; i < xmlPaths.size(); ++i )
4815   {
4816     bool error = xmlParser.parse( xmlPaths[i].c_str() );
4817     if ( error )
4818     {
4819       _AString data;
4820       INFOS( xmlParser.GetError(data) );
4821       continue;
4822     }
4823     // <algorithm type="Regular_1D"
4824     //            label-id="Wire discretisation"
4825     //            ...>
4826     //   <python-wrap>
4827     //     <algo>Regular_1D=Segment()</algo>
4828     //     <hypo>LocalLength=LocalLength(SetLength(1),,SetPrecision(1))</hypo>
4829     //
4830     LDOM_Document xmlDoc = xmlParser.getDocument();
4831     LDOM_NodeList algoNodeList = xmlDoc.getElementsByTagName( "algorithm" );
4832     for ( int i = 0; i < algoNodeList.getLength(); ++i )
4833     {
4834       LDOM_Node     algoNode = algoNodeList.item( i );
4835       LDOM_Element& algoElem = (LDOM_Element&) algoNode;
4836       LDOM_NodeList pyAlgoNodeList = algoElem.getElementsByTagName( "algo" );
4837       if ( pyAlgoNodeList.getLength() < 1 ) continue;
4838
4839       _AString text, algoType, method, arg;
4840       for ( int iA = 0; iA < pyAlgoNodeList.getLength(); ++iA )
4841       {
4842         LDOM_Node pyAlgoNode = pyAlgoNodeList.item( iA );
4843         LDOM_Node textNode   = pyAlgoNode.getFirstChild();
4844         text = textNode.getNodeValue();
4845         Handle(_pyCommand) algoCmd = new _pyCommand( text );
4846         algoType = algoCmd->GetResultValue();
4847         method   = algoCmd->GetMethod();
4848         arg      = algoCmd->GetArg(1);
4849         if ( !algoType.IsEmpty() && !method.IsEmpty() )
4850         {
4851           Handle(_pyAlgorithm) algo = new _pyAlgorithm( algoCmd );
4852           algo->SetConvMethodAndType( method, algoType );
4853           if ( !arg.IsEmpty() )
4854             algo->setCreationArg( 1, arg );
4855
4856           myType2Hyp[ algoType ] = algo;
4857           break;
4858         }
4859       }
4860       if ( algoType.IsEmpty() ) continue;
4861
4862       LDOM_NodeList pyHypoNodeList = algoElem.getElementsByTagName( "hypo" );
4863       _AString hypType;
4864       Handle( _pyHypothesis ) hyp;
4865       for ( int iH = 0; iH < pyHypoNodeList.getLength(); ++iH )
4866       {
4867         LDOM_Node pyHypoNode = pyHypoNodeList.item( iH );
4868         LDOM_Node textNode   = pyHypoNode.getFirstChild();
4869         text = textNode.getNodeValue();
4870         Handle(_pyCommand) hypoCmd = new _pyCommand( text );
4871         hypType = hypoCmd->GetResultValue();
4872         method  = hypoCmd->GetMethod();
4873         if ( !hypType.IsEmpty() && !method.IsEmpty() )
4874         {
4875           map<_AString, Handle(_pyHypothesis)>::iterator type2hyp = myType2Hyp.find( hypType );
4876           if ( type2hyp == myType2Hyp.end() )
4877             hyp = new _pyHypothesis( hypoCmd );
4878           else
4879             hyp = type2hyp->second;
4880           hyp->SetConvMethodAndType( method, algoType );
4881           for ( int iArg = 1; iArg <= hypoCmd->GetNbArgs(); ++iArg )
4882           {
4883             _pyCommand argCmd( hypoCmd->GetArg( iArg ));
4884             _AString argMethod = argCmd.GetMethod();
4885             _AString argNbText = argCmd.GetArg( 1 );
4886             if ( argMethod.IsEmpty() && !argCmd.IsEmpty() )
4887               hyp->setCreationArg( 1, argCmd.GetString() ); // e.g. Parameters(smesh.SIMPLE)
4888             else
4889               hyp->AddArgMethod( argMethod,
4890                                  argNbText.IsIntegerValue() ? argNbText.IntegerValue() : 1 );
4891           }
4892           myType2Hyp[ hypType ] = hyp;
4893         }
4894       }
4895     }
4896     // <hypothesis type="BLSURF_Parameters"
4897     //          ...
4898     //          dim="2">
4899     //   <python-wrap>
4900     //     <accumulative-methods> 
4901     //       SetEnforcedVertex,
4902     //       SetEnforcedVertexNamed
4903     //     </accumulative-methods>
4904     //   </python-wrap>
4905     // </hypothesis>
4906     //
4907     LDOM_NodeList hypNodeList = xmlDoc.getElementsByTagName( "hypothesis" );
4908     for ( int i = 0; i < hypNodeList.getLength(); ++i )
4909     {
4910       LDOM_Node     hypNode      = hypNodeList.item( i );
4911       LDOM_Element& hypElem      = (LDOM_Element&) hypNode;
4912       _AString      hypType      = hypElem.getAttribute("type");
4913       LDOM_NodeList methNodeList = hypElem.getElementsByTagName( "accumulative-methods" );
4914       if ( methNodeList.getLength() != 1 || hypType.IsEmpty() ) continue;
4915
4916       map<_AString, Handle(_pyHypothesis)>::const_iterator type2hyp = myType2Hyp.find( hypType );
4917       if ( type2hyp == myType2Hyp.end() ) continue;
4918
4919       LDOM_Node methNode = methNodeList.item( 0 );
4920       LDOM_Node textNode = methNode.getFirstChild();
4921       _AString      text = textNode.getNodeValue();
4922       _AString method;
4923       int pos = 1;
4924       do {
4925         method = _pyCommand::GetWord( text, pos, /*forward= */true );
4926         pos += method.Length();
4927         type2hyp->second->AddAccumulativeMethod( method );
4928       }
4929       while ( !method.IsEmpty() );
4930     }
4931
4932   } // loop on xmlPaths
4933 }
4934
4935 //================================================================================
4936 /*!
4937  * \brief Returns a new hypothesis initialized according to the read information
4938  */
4939 //================================================================================
4940
4941 Handle(_pyHypothesis)
4942 _pyHypothesisReader::GetHypothesis(const _AString&           hypType,
4943                                    const Handle(_pyCommand)& creationCmd) const
4944 {
4945   Handle(_pyHypothesis) resHyp, sampleHyp;
4946
4947   map<_AString, Handle(_pyHypothesis)>::const_iterator type2hyp = myType2Hyp.find( hypType );
4948   if ( type2hyp != myType2Hyp.end() )
4949     sampleHyp = type2hyp->second;
4950
4951   if ( sampleHyp.IsNull() )
4952   {
4953     resHyp = new _pyHypothesis(creationCmd);
4954   }
4955   else
4956   {
4957     if ( sampleHyp->IsAlgo() )
4958       resHyp = new _pyAlgorithm( creationCmd );
4959     else
4960       resHyp = new _pyHypothesis(creationCmd);
4961     resHyp->Assign( sampleHyp, _pyID() );
4962   }
4963   return resHyp;
4964 }
4965
4966 //================================================================================
4967 /*!
4968  * \brief Adds an object ID to some family of IDs with a common prefix
4969  *  \param [in] str - the object ID
4970  *  \return bool - \c false if \a str does not have the same prefix as \a this family
4971  *          (for internal usage)
4972  */
4973 //================================================================================
4974
4975 bool _pyStringFamily::Add( const char* str )
4976 {
4977   if ( strncmp( str, _prefix.ToCString(), _prefix.Length() ) != 0 )
4978     return false; // expected prefix is missing
4979
4980   str += _prefix.Length(); // skip _prefix
4981
4982   // try to add to some of child falimies
4983   std::list< _pyStringFamily >::iterator itSub = _subFams.begin();
4984   for ( ; itSub != _subFams.end(); ++itSub )
4985     if ( itSub->Add( str ))
4986       return true;
4987
4988   // no suitable family found - add str to _strings or create a new child family
4989
4990   // look for a proper place within sorted _strings
4991   std::list< _AString >::iterator itStr = _strings.begin();
4992   while ( itStr != _strings.end() && itStr->IsLess( str ))
4993     ++itStr;
4994   if ( itStr != _strings.end() && itStr->IsEqual( str ))
4995     return true; // same ID already kept
4996
4997   const int minPrefixSize = 4;
4998
4999   // count "smaller" strings with the same prefix
5000   std::list< _AString >::iterator itLess = itStr; --itLess;
5001   int nbLess = 0;
5002   for ( ; itLess != _strings.end(); --itLess )
5003     if ( strncmp( str, itLess->ToCString(), minPrefixSize ) == 0 )
5004       ++nbLess;
5005     else
5006       break;
5007   ++itLess;
5008   // count "greater" strings with the same prefix
5009   std::list< _AString >::iterator itMore = itStr;
5010   int nbMore = 0;
5011   for ( ; itMore != _strings.end(); ++itMore )
5012     if ( strncmp( str, itMore->ToCString(), minPrefixSize ) == 0 )
5013       ++nbMore;
5014     else
5015       break;
5016   --itMore;
5017   if ( nbLess + nbMore > 1 ) // ------- ADD a NEW CHILD FAMILY -------------
5018   {
5019     // look for a maximal prefix length
5020     // int lessPrefSize = 3, morePrefSize = 3;
5021     // if ( nbLess > 0 )
5022     //   while( itLess->ToCString()[ lessPrefSize ] == str[ lessPrefSize ]  )
5023     //     ++lessPrefSize;
5024     // if ( nbMore > 0 )
5025     //   while ( itMore->ToCString()[ morePrefSize ] == str[ morePrefSize ] )
5026     //     ++morePrefSize;
5027     // int prefixSize = 3;
5028     // if ( nbLess == 0 )
5029     //   prefixSize = morePrefSize;
5030     // else if ( nbMore == 0 )
5031     //   prefixSize = lessPrefSize;
5032     // else
5033     //   prefixSize = Min( lessPrefSize, morePrefSize );
5034     int prefixSize = minPrefixSize;
5035     _AString newPrefix ( str, prefixSize );
5036
5037     // look for a proper place within _subFams sorted by _prefix
5038     for ( itSub = _subFams.begin(); itSub != _subFams.end(); ++itSub )
5039       if ( !itSub->_prefix.IsLess( newPrefix ))
5040         break;
5041
5042     // add the new _pyStringFamily
5043     itSub = _subFams.insert( itSub, _pyStringFamily());
5044     _pyStringFamily& newSubFam = *itSub;
5045     newSubFam._prefix = newPrefix;
5046
5047     // pass this->_strings to newSubFam._strings
5048     for ( itStr = itLess; nbLess > 0; --nbLess, ++itStr )
5049       newSubFam._strings.push_back( itStr->ToCString() + prefixSize );
5050     newSubFam._strings.push_back( str + prefixSize );
5051     for ( ; nbMore > 0; --nbMore, ++itStr )
5052       newSubFam._strings.push_back( itStr->ToCString() + prefixSize );
5053
5054     _strings.erase( itLess, ++itMore );
5055   }
5056   else // to few string to make a family fot them
5057   {
5058     _strings.insert( itStr, str );
5059   }
5060   return true;
5061 }
5062
5063 //================================================================================
5064 /*!
5065  * \brief Finds an object ID in the command
5066  *  \param [in] longStr - the command string
5067  *  \param [out] subStr - the found object ID
5068  *  \return bool - \c true if the object ID found
5069  */
5070 //================================================================================
5071
5072 bool _pyStringFamily::IsInArgs( Handle( _pyCommand)& cmd, std::list<_AString>& subStr )
5073 {
5074   const _AString& longStr = cmd->GetString();
5075   const char*           s = longStr.ToCString();
5076
5077   // look in _subFams
5078   std::list< _pyStringFamily >::iterator itSub = _subFams.begin();
5079   int nbFound = 0, pos, len, from, argBeg = cmd->GetArgBeginning();
5080   if ( argBeg < 4 || argBeg > longStr.Length() )
5081     return false;
5082   for ( ; itSub != _subFams.end(); ++itSub )
5083   {
5084     from = argBeg;
5085     while (( pos = longStr.Location( itSub->_prefix, from, longStr.Length() )))
5086       if (( len = itSub->isIn( s + pos-1 + itSub->_prefix.Length() )) >= 0 )
5087       {
5088         subStr.push_back( _AString( s + pos-1, len + itSub->_prefix.Length() ));
5089         from = pos + len + itSub->_prefix.Length();
5090         nbFound++;
5091       }
5092       else
5093       {
5094         from += itSub->_prefix.Length();
5095       }
5096   }
5097   // look among _strings
5098   std::list< _AString >::iterator itStr = _strings.begin();
5099   for ( ; itStr != _strings.end(); ++itStr )
5100     if (( pos = longStr.Location( *itStr, argBeg, longStr.Length() )))
5101       // check that object ID does not continue after len
5102       if ( !cmd->IsIDChar( s[ pos + itStr->Length() - 1 ] ))
5103       {
5104         subStr.push_back( *itStr );
5105         nbFound++;
5106       }
5107   return nbFound;
5108 }
5109
5110 //================================================================================
5111 /*!
5112  * \brief Return remainder length of the object ID after my _prefix
5113  *  \param [in] str - remainder of the command after my _prefix
5114  *  \return int - length of the object ID or -1 if not found
5115  */
5116 //================================================================================
5117
5118 int _pyStringFamily::isIn( const char* str )
5119 {
5120   std::list< _pyStringFamily >::iterator itSub = _subFams.begin();
5121   int len = -1;
5122   for ( ; itSub != _subFams.end(); ++itSub )
5123   {
5124     int cmp = strncmp( str, itSub->_prefix.ToCString(), itSub->_prefix.Length() );
5125     if ( cmp == 0 )
5126     {
5127       if (( len = itSub->isIn( str + itSub->_prefix.Length() )) >= 0 )
5128         return itSub->_prefix.Length() + len;
5129     }
5130     else if ( cmp > 0 )
5131       break;
5132   }
5133   if ( !_strings.empty() )
5134   {
5135     std::list< _AString >::iterator itStr = _strings.begin();
5136     bool firstEmpty = itStr->IsEmpty();
5137     if ( firstEmpty )
5138       ++itStr, len = 0;
5139     for ( ; itStr != _strings.end(); ++itStr )
5140     {
5141       int cmp = strncmp( str, itStr->ToCString(), itStr->Length() );
5142       if ( cmp == 0 )
5143       {
5144         len = itStr->Length();
5145         break;
5146       }
5147       else if ( cmp < 0 )
5148       {
5149         break;
5150       }
5151     }
5152
5153     // check that object ID does not continue after len
5154     if ( len >= 0 && _pyCommand::IsIDChar( str[len] ))
5155       len = -1;
5156   }
5157
5158   return len;
5159 }
5160
5161 //================================================================================
5162 /*!
5163  * \brief DEBUG
5164  */
5165 //================================================================================
5166
5167 void _pyStringFamily::Print( int level )
5168 {
5169   cout << string( level, ' ' ) << "prefix = '" << _prefix << "' : ";
5170   std::list< _AString >::iterator itStr = _strings.begin();
5171   for ( ; itStr != _strings.end(); ++itStr )
5172     cout << *itStr << " | ";
5173   cout << endl;
5174   std::list< _pyStringFamily >::iterator itSub = _subFams.begin();
5175   for ( ; itSub != _subFams.end(); ++itSub )
5176     itSub->Print( level + 1 );
5177   if ( level == 0 )
5178     cout << string( 70, '-' ) << endl;
5179 }
5180