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