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