Salome HOME
0021891: EDF 2398 : Error when dumping a study with non historical mode
[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     _pyID geomID = theCommand->GetArg( 1 );
1544     bool isLocal = ( geomID != GetGeom() );
1545
1546     // check if this mesh still has corresponding addition command
1547     Handle(_pyCommand) addCmd;
1548     list< Handle(_pyCommand) >::iterator cmd;
1549     list< Handle(_pyCommand) >* addCmds[2] = { &myAddHypCmds, &myNotConvertedAddHypCmds };
1550     for ( int i = 0; i < 2; ++i )
1551     {
1552       list< Handle(_pyCommand )> & addHypCmds = *(addCmds[i]);
1553       for ( cmd = addHypCmds.begin(); cmd != addHypCmds.end(); )
1554       {
1555         bool sameHyp = true;
1556         if ( hypID != (*cmd)->GetArg( 1 ) && hypID != (*cmd)->GetArg( 2 ))
1557           sameHyp = false; // other hyp
1558         if ( (*cmd)->GetNbArgs() == 2 &&
1559              geomID != (*cmd)->GetArg( 1 ) && geomID != (*cmd)->GetArg( 2 ))
1560           sameHyp = false; // other geom
1561         if ( (*cmd)->GetNbArgs() == 1 && isLocal )
1562           sameHyp = false; // other geom
1563         if ( sameHyp )
1564         {
1565           addCmd = *cmd;
1566           addCmd->Clear();
1567           theCommand->Clear();
1568           cmd = addHypCmds.erase( cmd );
1569         }
1570         else
1571         {
1572           ++cmd;
1573         }
1574       }
1575     }
1576     Handle(_pyHypothesis) hyp = theGen->FindHyp( hypID );
1577     if ( addCmd.IsNull() && !hypID.IsEmpty() ) { // hypo addition already wrapped
1578       // RemoveHypothesis(geom, hyp) --> RemoveHypothesis( hyp, geom=0 )
1579       _pyID geom = theCommand->GetArg( 1 );
1580       theCommand->RemoveArgs();
1581       theCommand->SetArg( 1, hypID );
1582       if ( geom != GetGeom() )
1583         theCommand->SetArg( 2, geom );
1584     }
1585     // remove hyp from myHypos
1586     myHypos.remove( hyp );
1587   }
1588   // check for SubMesh order commands
1589   else if ( method == "GetMeshOrder" || method == "SetMeshOrder" )
1590   {
1591     // make commands GetSubMesh() returning sub-meshes be before using sub-meshes
1592     // by GetMeshOrder() and SetMeshOrder(), since by defalut GetSubMesh()
1593     // commands are moved at the end of the script
1594     TCollection_AsciiString subIDs =
1595       ( method == "SetMeshOrder" ) ? theCommand->GetArg(1) : theCommand->GetResultValue();
1596     list< _pyID > idList = theCommand->GetStudyEntries( subIDs );
1597     list< _pyID >::iterator subID = idList.begin();
1598     for ( ; subID != idList.end(); ++subID )
1599     {
1600       Handle(_pySubMesh) subMesh = theGen->FindSubMesh( *subID );
1601       if ( !subMesh.IsNull() )
1602         subMesh->Process( theCommand ); // it moves GetSubMesh() before theCommand
1603     }
1604   }
1605   // update list of groups
1606   else if ( method == "GetGroups" )
1607   {
1608     TCollection_AsciiString grIDs = theCommand->GetResultValue();
1609     list< _pyID > idList = theCommand->GetStudyEntries( grIDs );
1610     list< _pyID >::iterator grID = idList.begin();
1611     for ( ; grID != idList.end(); ++grID )
1612     {
1613       Handle(_pyObject) obj = theGen->FindObject( *grID );
1614       if ( obj.IsNull() )
1615       {
1616         Handle(_pyGroup) group = new _pyGroup( theCommand, *grID );
1617         theGen->AddObject( group );
1618         myGroups.push_back( group );
1619       }
1620     }
1621   }
1622   // add accessor method if necessary
1623   else
1624   {
1625     if ( NeedMeshAccess( theCommand ))
1626       // apply theCommand to the mesh wrapped by smeshpy mesh
1627       AddMeshAccess( theCommand );
1628   }
1629 }
1630
1631 //================================================================================
1632 /*!
1633  * \brief Return True if addition of accesor method is needed
1634  */
1635 //================================================================================
1636
1637 bool _pyMesh::NeedMeshAccess( const Handle(_pyCommand)& theCommand )
1638 {
1639   // names of SMESH_Mesh methods fully equal to methods of python class Mesh,
1640   // so no conversion is needed for them at all:
1641   static TStringSet sameMethods;
1642   if ( sameMethods.empty() ) {
1643     const char * names[] =
1644       { "ExportDAT","ExportUNV","ExportSTL","ExportSAUV", "RemoveGroup","RemoveGroupWithContents",
1645         "GetGroups","UnionGroups","IntersectGroups","CutGroups","GetLog","GetId","ClearLog",
1646         "GetStudyId","HasDuplicatedGroupNamesMED","GetMEDMesh","NbNodes","NbElements",
1647         "NbEdges","NbEdgesOfOrder","NbFaces","NbFacesOfOrder","NbTriangles",
1648         "NbTrianglesOfOrder","NbQuadrangles","NbQuadranglesOfOrder","NbPolygons","NbVolumes",
1649         "NbVolumesOfOrder","NbTetras","NbTetrasOfOrder","NbHexas","NbHexasOfOrder",
1650         "NbPyramids","NbPyramidsOfOrder","NbPrisms","NbPrismsOfOrder","NbPolyhedrons",
1651         "NbSubMesh","GetElementsId","GetElementsByType","GetNodesId","GetElementType",
1652         "GetSubMeshElementsId","GetSubMeshNodesId","GetSubMeshElementType","Dump","GetNodeXYZ",
1653         "GetNodeInverseElements","GetShapeID","GetShapeIDForElem","GetElemNbNodes",
1654         "GetElemNode","IsMediumNode","IsMediumNodeOfAnyElem","ElemNbEdges","ElemNbFaces",
1655         "IsPoly","IsQuadratic","BaryCenter","GetHypothesisList", "SetAutoColor", "GetAutoColor",
1656         "Clear", "ConvertToStandalone", "GetMeshOrder", "SetMeshOrder"
1657         ,"" }; // <- mark of end
1658     sameMethods.Insert( names );
1659   }
1660
1661   return !sameMethods.Contains( theCommand->GetMethod() );
1662 }
1663
1664 //================================================================================
1665 /*!
1666  * \brief Convert creation and addition of all algos and hypos
1667  */
1668 //================================================================================
1669
1670 void _pyMesh::Flush()
1671 {
1672   {
1673     // get the meshes this mesh depends on via hypotheses
1674     list< Handle(_pyMesh) > fatherMeshes;
1675     list< Handle(_pyHypothesis) >::iterator hyp = myHypos.begin();
1676     for ( ; hyp != myHypos.end(); ++hyp )
1677       if ( ! (*hyp)->GetReferredMeshesAndGeom( fatherMeshes ))
1678         myGeomNotInStudy = true;
1679
1680     list< Handle(_pyMesh) >::iterator m = fatherMeshes.begin();
1681     for ( ; m != fatherMeshes.end(); ++m )
1682       addFatherMesh( *m );
1683     // if ( removedGeom )
1684     //     SetRemovedFromStudy(); // as reffered geometry not in study
1685   }
1686   if ( myGeomNotInStudy )
1687     return;
1688
1689   list < Handle(_pyCommand) >::iterator cmd;
1690
1691   // try to convert algo addition like this:
1692   // mesh.AddHypothesis(geom, ALGO ) --> ALGO = mesh.Algo()
1693   for ( cmd = myAddHypCmds.begin(); cmd != myAddHypCmds.end(); ++cmd )
1694   {
1695     Handle(_pyCommand) addCmd = *cmd;
1696
1697     _pyID algoID = addCmd->GetArg( 2 );
1698     Handle(_pyHypothesis) algo = theGen->FindHyp( algoID );
1699     if ( algo.IsNull() || !algo->IsAlgo() )
1700       continue;
1701
1702     // check and create new algorithm instance if it is already wrapped
1703     if ( algo->IsWrapped() ) {
1704       _pyID localAlgoID = theGen->GenerateNewID( algoID );
1705       TCollection_AsciiString aNewCmdStr = addCmd->GetIndentation() + localAlgoID +
1706         TCollection_AsciiString( " = " ) + theGen->GetID() +
1707         TCollection_AsciiString( ".CreateHypothesis( \"" ) + algo->GetAlgoType() +
1708         TCollection_AsciiString( "\" )" );
1709
1710       Handle(_pyCommand) newCmd = theGen->AddCommand( aNewCmdStr );
1711       Handle(_pyAlgorithm) newAlgo = Handle(_pyAlgorithm)::DownCast(theGen->FindHyp( localAlgoID ));
1712       if ( !newAlgo.IsNull() ) {
1713         newAlgo->Assign( algo, this->GetID() );
1714         newAlgo->SetCreationCmd( newCmd );
1715         algo = newAlgo;
1716         // set algorithm creation
1717         theGen->SetCommandBefore( newCmd, addCmd );
1718         myHypos.push_back( newAlgo );
1719         if ( !myLastComputeCmd.IsNull() &&
1720              newCmd->GetOrderNb() == myLastComputeCmd->GetOrderNb() + 1)
1721           newAlgo->MeshComputed( myLastComputeCmd );
1722       }
1723       else
1724         newCmd->Clear();
1725     }
1726     _pyID geom = addCmd->GetArg( 1 );
1727     bool isLocalAlgo = ( geom != GetGeom() );
1728
1729     // try to convert
1730     if ( algo->Addition2Creation( addCmd, this->GetID() )) // OK
1731     {
1732       // wrapped algo is created after mesh creation
1733       GetCreationCmd()->AddDependantCmd( addCmd );
1734
1735       if ( isLocalAlgo ) {
1736         // mesh.AddHypothesis(geom, ALGO ) --> mesh.AlgoMethod(geom)
1737         addCmd->SetArg( addCmd->GetNbArgs() + 1,
1738                         TCollection_AsciiString( "geom=" ) + geom );
1739         // sm = mesh.GetSubMesh(geom, name) --> sm = ALGO.GetSubMesh()
1740         list < Handle(_pySubMesh) >::iterator smIt;
1741         for ( smIt = mySubmeshes.begin(); smIt != mySubmeshes.end(); ++smIt ) {
1742           Handle(_pySubMesh) subMesh = *smIt;
1743           Handle(_pyCommand) subCmd = subMesh->GetCreationCmd();
1744           if ( geom == subCmd->GetArg( 1 )) {
1745             subCmd->SetObject( algo->GetID() );
1746             subCmd->RemoveArgs();
1747             subMesh->SetCreator( algo );
1748           }
1749         }
1750       }
1751     }
1752     else // KO - ALGO was already created
1753     {
1754       // mesh.AddHypothesis(geom, ALGO) --> mesh.AddHypothesis(ALGO, geom=0)
1755       addCmd->RemoveArgs();
1756       addCmd->SetArg( 1, algoID );
1757       if ( isLocalAlgo )
1758         addCmd->SetArg( 2, geom );
1759       myNotConvertedAddHypCmds.push_back( addCmd );
1760     }
1761   }
1762
1763   // try to convert hypo addition like this:
1764   // mesh.AddHypothesis(geom, HYPO ) --> HYPO = algo.Hypo()
1765   for ( cmd = myAddHypCmds.begin(); cmd != myAddHypCmds.end(); ++cmd )
1766   {
1767     Handle(_pyCommand) addCmd = *cmd;
1768     _pyID hypID = addCmd->GetArg( 2 );
1769     Handle(_pyHypothesis) hyp = theGen->FindHyp( hypID );
1770     if ( hyp.IsNull() || hyp->IsAlgo() )
1771       continue;
1772     bool converted = hyp->Addition2Creation( addCmd, this->GetID() );
1773     if ( !converted ) {
1774       // mesh.AddHypothesis(geom, HYP) --> mesh.AddHypothesis(HYP, geom=0)
1775       _pyID geom = addCmd->GetArg( 1 );
1776       addCmd->RemoveArgs();
1777       addCmd->SetArg( 1, hypID );
1778       if ( geom != GetGeom() )
1779         addCmd->SetArg( 2, geom );
1780       myNotConvertedAddHypCmds.push_back( addCmd );
1781     }
1782   }
1783
1784   myAddHypCmds.clear();
1785   mySubmeshes.clear();
1786
1787   // flush hypotheses
1788   list< Handle(_pyHypothesis) >::iterator hyp = myHypos.begin();
1789   for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
1790     (*hyp)->Flush();
1791 }
1792
1793 //================================================================================
1794 /*!
1795  * \brief Sets myIsPublished of me and of all objects depending on me.
1796  */
1797 //================================================================================
1798
1799 void _pyMesh::SetRemovedFromStudy(const bool isRemoved)
1800 {
1801   _pyObject::SetRemovedFromStudy(isRemoved);
1802
1803   list< Handle(_pySubMesh) >::iterator sm = mySubmeshes.begin();
1804   for ( ; sm != mySubmeshes.end(); ++sm )
1805     (*sm)->SetRemovedFromStudy(isRemoved);
1806
1807   list< Handle(_pyGroup) >::iterator gr = myGroups.begin();
1808   for ( ; gr != myGroups.end(); ++gr )
1809     (*gr)->SetRemovedFromStudy(isRemoved);
1810
1811   list< Handle(_pyMesh) >::iterator m = myChildMeshes.begin();
1812   for ( ; m != myChildMeshes.end(); ++m )
1813     (*m)->SetRemovedFromStudy(isRemoved);
1814
1815   list< Handle(_pyMeshEditor)>::iterator e = myEditors.begin();
1816   for ( ; e != myEditors.end(); ++e )
1817     (*e)->SetRemovedFromStudy(isRemoved);
1818 }
1819
1820 //================================================================================
1821 /*!
1822  * \brief Return true if none of myChildMeshes is in study
1823  */
1824 //================================================================================
1825
1826 bool _pyMesh::CanClear()
1827 {
1828   if ( IsInStudy() )
1829     return false;
1830
1831   list< Handle(_pyMesh) >::iterator m = myChildMeshes.begin();
1832   for ( ; m != myChildMeshes.end(); ++m )
1833     if ( !(*m)->CanClear() )
1834       return false;
1835
1836   return true;
1837 }
1838
1839 //================================================================================
1840 /*!
1841  * \brief Clear my commands and commands of mesh editor
1842  */
1843 //================================================================================
1844
1845 void _pyMesh::ClearCommands()
1846 {
1847   if ( !CanClear() )
1848   {
1849     if ( !IsInStudy() )
1850     {
1851       // mark all sub-objects as not removed, except child meshes
1852       list< Handle(_pyMesh) > children;
1853       children.swap( myChildMeshes );
1854       SetRemovedFromStudy( false );
1855       children.swap( myChildMeshes );
1856     }
1857     return;
1858   }
1859   _pyObject::ClearCommands();
1860
1861   list< Handle(_pySubMesh) >::iterator sm = mySubmeshes.begin();
1862   for ( ; sm != mySubmeshes.end(); ++sm )
1863     (*sm)->ClearCommands();
1864   
1865   list< Handle(_pyGroup) >::iterator gr = myGroups.begin();
1866   for ( ; gr != myGroups.end(); ++gr )
1867     (*gr)->ClearCommands();
1868
1869   list< Handle(_pyMeshEditor)>::iterator e = myEditors.begin();
1870   for ( ; e != myEditors.end(); ++e )
1871     (*e)->ClearCommands();
1872 }
1873
1874 //================================================================================
1875 /*!
1876  * \brief Add a father mesh by ID
1877  */
1878 //================================================================================
1879
1880 void _pyMesh::addFatherMesh( const _pyID& meshID )
1881 {
1882   if ( !meshID.IsEmpty() )
1883     addFatherMesh( Handle(_pyMesh)::DownCast( theGen->FindObject( meshID )));
1884 }
1885
1886 //================================================================================
1887 /*!
1888  * \brief Add a father mesh
1889  */
1890 //================================================================================
1891
1892 void _pyMesh::addFatherMesh( const Handle(_pyMesh)& mesh )
1893 {
1894   if ( !mesh.IsNull() )
1895   {
1896     //myFatherMeshes.push_back( mesh );
1897     mesh->myChildMeshes.push_back( this );
1898
1899     // protect last Compute() from clearing by the next Compute()
1900     mesh->myLastComputeCmd.Nullify();
1901   }
1902 }
1903
1904 //================================================================================
1905 /*!
1906  * \brief MeshEditor convert its commands to ones of mesh
1907  */
1908 //================================================================================
1909
1910 _pyMeshEditor::_pyMeshEditor(const Handle(_pyCommand)& theCreationCmd):
1911   _pyObject( theCreationCmd )
1912 {
1913   myMesh = theCreationCmd->GetObject();
1914   myCreationCmdStr = theCreationCmd->GetString();
1915   theCreationCmd->Clear();
1916
1917   Handle(_pyMesh) mesh = ObjectToMesh( theGen->FindObject( myMesh ));
1918   if ( !mesh.IsNull() )
1919     mesh->AddEditor( this );
1920 }
1921
1922 //================================================================================
1923 /*!
1924  * \brief convert its commands to ones of mesh
1925  */
1926 //================================================================================
1927
1928 void _pyMeshEditor::Process( const Handle(_pyCommand)& theCommand)
1929 {
1930   // names of SMESH_MeshEditor methods fully equal to methods of python class Mesh, so
1931   // commands calling this methods are converted to calls of methods of Mesh
1932   static TStringSet sameMethods;
1933   if ( sameMethods.empty() ) {
1934     const char * names[] = {
1935       "RemoveElements","RemoveNodes","RemoveOrphanNodes","AddNode","Add0DElement","AddEdge","AddFace","AddPolygonalFace","AddBall",
1936       "AddVolume","AddPolyhedralVolume","AddPolyhedralVolumeByFaces","MoveNode", "MoveClosestNodeToPoint",
1937       "InverseDiag","DeleteDiag","Reorient","ReorientObject","TriToQuad","SplitQuad","SplitQuadObject",
1938       "BestSplit","Smooth","SmoothObject","SmoothParametric","SmoothParametricObject",
1939       "ConvertToQuadratic","ConvertFromQuadratic","RenumberNodes","RenumberElements",
1940       "RotationSweep","RotationSweepObject","RotationSweepObject1D","RotationSweepObject2D",
1941       "ExtrusionSweep","AdvancedExtrusion","ExtrusionSweepObject","ExtrusionSweepObject1D","ExtrusionSweepObject2D",
1942       "ExtrusionAlongPath","ExtrusionAlongPathObject","ExtrusionAlongPathX",
1943       "ExtrusionAlongPathObject1D","ExtrusionAlongPathObject2D",
1944       "Mirror","MirrorObject","Translate","TranslateObject","Rotate","RotateObject",
1945       "FindCoincidentNodes",/*"FindCoincidentNodesOnPart",*/"MergeNodes","FindEqualElements",
1946       "MergeElements","MergeEqualElements","SewFreeBorders","SewConformFreeBorders",
1947       "SewBorderToSide","SewSideElements","ChangeElemNodes","GetLastCreatedNodes",
1948       "GetLastCreatedElems",
1949       "MirrorMakeMesh","MirrorObjectMakeMesh","TranslateMakeMesh",
1950       "TranslateObjectMakeMesh","RotateMakeMesh","RotateObjectMakeMesh","MakeBoundaryMesh",
1951       "MakeBoundaryElements", "SplitVolumesIntoTetra"
1952       ,"" }; // <- mark of the end
1953     sameMethods.Insert( names );
1954   }
1955
1956   // names of SMESH_MeshEditor methods which differ from methods of class Mesh
1957   // only by last two arguments
1958   static TStringSet diffLastTwoArgsMethods;
1959   if (diffLastTwoArgsMethods.empty() ) {
1960     const char * names[] = {
1961       "MirrorMakeGroups","MirrorObjectMakeGroups",
1962       "TranslateMakeGroups","TranslateObjectMakeGroups",
1963       "RotateMakeGroups","RotateObjectMakeGroups",
1964       ""};// <- mark of the end
1965     diffLastTwoArgsMethods.Insert( names );
1966   }
1967
1968   const TCollection_AsciiString & method = theCommand->GetMethod();
1969   bool isPyMeshMethod = sameMethods.Contains( method );
1970   if ( !isPyMeshMethod )
1971   {
1972     //Replace SMESH_MeshEditor "MakeGroups" functions by the Mesh
1973     //functions with the flag "theMakeGroups = True" like:
1974     //SMESH_MeshEditor.CmdMakeGroups => Mesh.Cmd(...,True)
1975     int pos = method.Search("MakeGroups");
1976     if( pos != -1)
1977     {
1978       isPyMeshMethod = true;
1979       bool is0DmethId  = ( method == "ExtrusionSweepMakeGroups0D" );
1980       bool is0DmethObj = ( method == "ExtrusionSweepObject0DMakeGroups");
1981
1982       // 1. Remove "MakeGroups" from the Command
1983       TCollection_AsciiString aMethod = theCommand->GetMethod();
1984       int nbArgsToAdd = diffLastTwoArgsMethods.Contains(aMethod) ? 2 : 1;
1985       
1986       if(is0DmethObj)
1987         pos = pos-2;  //Remove "0D" from the Command too
1988       aMethod.Trunc(pos-1);
1989       theCommand->SetMethod(aMethod);
1990
1991       // 2. And add last "True" argument(s)
1992       while(nbArgsToAdd--)
1993         theCommand->SetArg(theCommand->GetNbArgs()+1,"True");
1994       if( is0DmethId || is0DmethObj )
1995         theCommand->SetArg(theCommand->GetNbArgs()+1,"True");
1996     }
1997   }
1998
1999   // ExtrusionSweep0D() -> ExtrusionSweep()
2000   // ExtrusionSweepObject0D() -> ExtrusionSweepObject()
2001   if ( !isPyMeshMethod && ( method == "ExtrusionSweep0D"  ||
2002                             method == "ExtrusionSweepObject0D" ))
2003   {
2004     isPyMeshMethod = true;
2005     theCommand->SetMethod( method.SubString( 1, method.Length()-2));
2006     theCommand->SetArg(theCommand->GetNbArgs()+1,"False");  //sets flag "MakeGroups = False"
2007     theCommand->SetArg(theCommand->GetNbArgs()+1,"True");  //sets flag "IsNode = True"
2008   }
2009   // set "ExtrusionAlongPathX()" instead of "ExtrusionAlongPathObjX()"
2010   if ( !isPyMeshMethod && method == "ExtrusionAlongPathObjX")
2011   {
2012     isPyMeshMethod = true;
2013     theCommand->SetMethod("ExtrusionAlongPathX");
2014   }
2015
2016   // set "FindCoincidentNodesOnPart()" instead of "FindCoincidentNodesOnPartBut()"
2017   if ( !isPyMeshMethod && method == "FindCoincidentNodesOnPartBut")
2018   {
2019     isPyMeshMethod = true;
2020     theCommand->SetMethod("FindCoincidentNodesOnPart");
2021   }
2022   // DoubleNode...New(...) -> DoubleNode...(...,True)
2023   if ( !isPyMeshMethod && ( method == "DoubleNodeElemGroupNew"  ||
2024                             method == "DoubleNodeElemGroupsNew" ||
2025                             method == "DoubleNodeGroupNew"      ||
2026                             method == "DoubleNodeGroupsNew"     ||
2027                             method == "DoubleNodeElemGroup2New" ||
2028                             method == "DoubleNodeElemGroups2New"))
2029   {
2030     isPyMeshMethod = true;
2031     const int excessLen = 3 + int( method.Value( method.Length()-3 ) == '2' );
2032     theCommand->SetMethod( method.SubString( 1, method.Length()-excessLen));
2033     if ( excessLen == 3 )
2034     {
2035       theCommand->SetArg(theCommand->GetNbArgs()+1,"True");
2036     }
2037     else if ( theCommand->GetArg(4) == "0" ||
2038               theCommand->GetArg(5) == "0" )
2039     {
2040       // [ nothing, Group ] = DoubleNodeGroup2New(,,,False, True) ->
2041       // Group = DoubleNodeGroup2New(,,,False, True)
2042       _pyID groupID = theCommand->GetResultValue( 1 + int( theCommand->GetArg(4) == "0"));
2043       theCommand->SetResultValue( groupID );
2044     }
2045   }
2046   // ConvertToQuadraticObject(bool,obj) -> ConvertToQuadratic(bool,obj)
2047   // ConvertFromQuadraticObject(obj) -> ConvertFromQuadratic(obj)
2048   if ( !isPyMeshMethod && ( method == "ConvertToQuadraticObject" ||
2049                             method == "ConvertFromQuadraticObject" ))
2050   {
2051     isPyMeshMethod = true;
2052     theCommand->SetMethod( method.SubString( 1, method.Length()-6));
2053   }
2054   // FindAmongElementsByPoint(meshPart, x, y, z, elementType) ->
2055   // FindElementsByPoint(x, y, z, elementType, meshPart)
2056   if ( !isPyMeshMethod && method == "FindAmongElementsByPoint" )
2057   {
2058     isPyMeshMethod = true;
2059     theCommand->SetMethod( "FindElementsByPoint" );
2060     // make the 1st arg be the last one
2061     _pyID partID = theCommand->GetArg( 1 );
2062     int nbArgs = theCommand->GetNbArgs();
2063     for ( int i = 2; i <= nbArgs; ++i )
2064       theCommand->SetArg( i-1, theCommand->GetArg( i ));
2065     theCommand->SetArg( nbArgs, partID );
2066   }
2067   // Reorient2D( mesh, dir, face, point ) -> Reorient2D( mesh, dir, faceORpoint )
2068   if ( !isPyMeshMethod && method == "Reorient2D" )
2069   {
2070     isPyMeshMethod = true;
2071     _AString mesh  = theCommand->GetArg( 1 );
2072     _AString dir   = theCommand->GetArg( 2 );
2073     _AString face  = theCommand->GetArg( 3 );
2074     _AString point = theCommand->GetArg( 4 );
2075     theCommand->RemoveArgs();
2076     theCommand->SetArg( 1, mesh );
2077     theCommand->SetArg( 2, dir );
2078     if ( face.Value(1) == '-' || face.Value(1) == '0' ) // invalid: face <= 0
2079       theCommand->SetArg( 3, point );
2080     else
2081       theCommand->SetArg( 3, face );
2082   }
2083
2084   // meshes made by *MakeMesh() methods are not wrapped by _pyMesh,
2085   // so let _pyMesh care of it (TMP?)
2086   //     if ( theCommand->GetMethod().Search("MakeMesh") != -1 )
2087   //       _pyMesh( new _pyCommand( theCommand->GetString(), 0 )); // for theGen->SetAccessorMethod()
2088   if ( isPyMeshMethod )
2089   {
2090     theCommand->SetObject( myMesh );
2091   }
2092   else
2093   {
2094     // editor creation command is needed only if any editor function is called
2095     theGen->AddMeshAccessorMethod( theCommand ); // for *Object()
2096     if ( !myCreationCmdStr.IsEmpty() ) {
2097       GetCreationCmd()->GetString() = myCreationCmdStr;
2098       myCreationCmdStr.Clear();
2099     }
2100   }
2101 }
2102
2103 //================================================================================
2104 /*!
2105  * \brief Return true if my mesh can be removed
2106  */
2107 //================================================================================
2108
2109 bool _pyMeshEditor::CanClear()
2110 {
2111   Handle(_pyMesh) mesh = ObjectToMesh( theGen->FindObject( myMesh ));
2112   return mesh.IsNull() ? true : mesh->CanClear();
2113 }
2114
2115 //================================================================================
2116 /*!
2117  * \brief _pyHypothesis constructor
2118   * \param theCreationCmd -
2119  */
2120 //================================================================================
2121
2122 _pyHypothesis::_pyHypothesis(const Handle(_pyCommand)& theCreationCmd):
2123   _pyObject( theCreationCmd ), myCurCrMethod(0)
2124 {
2125   myIsAlgo = myIsWrapped = /*myIsConverted = myIsLocal = myDim = */false;
2126 }
2127
2128 //================================================================================
2129 /*!
2130  * \brief Creates algorithm or hypothesis
2131   * \param theCreationCmd - The engine command creating a hypothesis
2132   * \retval Handle(_pyHypothesis) - Result _pyHypothesis
2133  */
2134 //================================================================================
2135
2136 Handle(_pyHypothesis) _pyHypothesis::NewHypothesis( const Handle(_pyCommand)& theCreationCmd)
2137 {
2138   // theCreationCmd: CreateHypothesis( "theHypType", "theLibName" )
2139   ASSERT (( theCreationCmd->GetMethod() == "CreateHypothesis"));
2140
2141   Handle(_pyHypothesis) hyp, algo;
2142
2143   // "theHypType"
2144   const TCollection_AsciiString & hypTypeQuoted = theCreationCmd->GetArg( 1 );
2145   if ( hypTypeQuoted.IsEmpty() )
2146     return hyp;
2147   // theHypType
2148   TCollection_AsciiString  hypType =
2149     hypTypeQuoted.SubString( 2, hypTypeQuoted.Length() - 1 );
2150
2151   algo = new _pyAlgorithm( theCreationCmd );
2152   hyp  = new _pyHypothesis( theCreationCmd );
2153
2154   if ( hypType == "NumberOfSegments" ) {
2155     hyp = new _pyNumberOfSegmentsHyp( theCreationCmd );
2156     hyp->SetConvMethodAndType( "NumberOfSegments", "Regular_1D");
2157     // arg of SetNumberOfSegments() will become the 1-st arg of hyp creation command
2158     hyp->AddArgMethod( "SetNumberOfSegments" );
2159     // arg of SetScaleFactor() will become the 2-nd arg of hyp creation command
2160     hyp->AddArgMethod( "SetScaleFactor" );
2161     hyp->AddArgMethod( "SetReversedEdges" );
2162     // same for ""CompositeSegment_1D:
2163     hyp->SetConvMethodAndType( "NumberOfSegments", "CompositeSegment_1D");
2164     hyp->AddArgMethod( "SetNumberOfSegments" );
2165     hyp->AddArgMethod( "SetScaleFactor" );
2166     hyp->AddArgMethod( "SetReversedEdges" );
2167   }
2168   else if ( hypType == "SegmentLengthAroundVertex" ) {
2169     hyp = new _pySegmentLengthAroundVertexHyp( theCreationCmd );
2170     hyp->SetConvMethodAndType( "LengthNearVertex", "Regular_1D" );
2171     hyp->AddArgMethod( "SetLength" );
2172     // same for ""CompositeSegment_1D:
2173     hyp->SetConvMethodAndType( "LengthNearVertex", "CompositeSegment_1D");
2174     hyp->AddArgMethod( "SetLength" );
2175   }
2176   else if ( hypType == "LayerDistribution2D" ) {
2177     hyp = new _pyLayerDistributionHypo( theCreationCmd, "Get2DHypothesis" );
2178     hyp->SetConvMethodAndType( "LayerDistribution", "RadialQuadrangle_1D2D");
2179   }
2180   else if ( hypType == "LayerDistribution" ) {
2181     hyp = new _pyLayerDistributionHypo( theCreationCmd, "Get3DHypothesis" );
2182     hyp->SetConvMethodAndType( "LayerDistribution", "RadialPrism_3D");
2183   }
2184   else if ( hypType == "CartesianParameters3D" ) {
2185     hyp = new _pyComplexParamHypo( theCreationCmd );
2186     hyp->SetConvMethodAndType( "SetGrid", "Cartesian_3D");
2187     for ( int iArg = 0; iArg < 4; ++iArg )
2188       hyp->setCreationArg( iArg+1, "[]");
2189   }
2190   else
2191   {
2192     hyp = theGen->GetHypothesisReader()->GetHypothesis( hypType, theCreationCmd );
2193   }
2194
2195   return algo->IsValid() ? algo : hyp;
2196 }
2197
2198 //================================================================================
2199 /*!
2200  * \brief Returns true if addition of this hypothesis to a given mesh can be
2201  *        wrapped into hypothesis creation
2202  */
2203 //================================================================================
2204
2205 bool _pyHypothesis::IsWrappable(const _pyID& theMesh) const
2206 {
2207   if ( !myIsWrapped && myMesh == theMesh && IsInStudy() )
2208   {
2209     Handle(_pyObject) pyMesh = theGen->FindObject( myMesh );
2210     if ( !pyMesh.IsNull() && pyMesh->IsInStudy() )
2211       return true;
2212   }
2213   return false;
2214 }
2215
2216 //================================================================================
2217 /*!
2218  * \brief Convert the command adding a hypothesis to mesh into a smesh command
2219   * \param theCmd - The command like mesh.AddHypothesis( geom, hypo )
2220   * \param theAlgo - The algo that can create this hypo
2221   * \retval bool - false if the command cant be converted
2222  */
2223 //================================================================================
2224
2225 bool _pyHypothesis::Addition2Creation( const Handle(_pyCommand)& theCmd,
2226                                        const _pyID&              theMesh)
2227 {
2228   ASSERT(( theCmd->GetMethod() == "AddHypothesis" ));
2229
2230   if ( !IsWrappable( theMesh ))
2231     return false;
2232
2233   myGeom = theCmd->GetArg( 1 );
2234
2235   Handle(_pyHypothesis) algo;
2236   if ( !IsAlgo() ) {
2237     // find algo created on myGeom in theMesh
2238     algo = theGen->FindAlgo( myGeom, theMesh, this );
2239     if ( algo.IsNull() )
2240       return false;
2241     // attach hypothesis creation command to be after algo creation command
2242     // because it can be new created instance of algorithm
2243     algo->GetCreationCmd()->AddDependantCmd( theCmd );
2244   }
2245   myIsWrapped = true;
2246
2247   // mesh.AddHypothesis(geom,hyp) --> hyp = <theMesh or algo>.myCreationMethod(args)
2248   theCmd->SetResultValue( GetID() );
2249   theCmd->SetObject( IsAlgo() ? theMesh : algo->GetID());
2250   theCmd->SetMethod( IsAlgo() ? GetAlgoCreationMethod() : GetCreationMethod( algo->GetAlgoType() ));
2251   // set args (geom will be set by _pyMesh calling this method)
2252   theCmd->RemoveArgs();
2253   for ( size_t i = 0; i < myCurCrMethod->myArgs.size(); ++i ) {
2254     if ( !myCurCrMethod->myArgs[ i ].IsEmpty() )
2255       theCmd->SetArg( i+1, myCurCrMethod->myArgs[ i ]);
2256     else
2257       theCmd->SetArg( i+1, "[]");
2258   }
2259   // set a new creation command
2260   GetCreationCmd()->Clear();
2261   // replace creation command by wrapped instance
2262   // please note, that hypothesis attaches to algo creation command (see upper)
2263   SetCreationCmd( theCmd );
2264
2265
2266   // clear commands setting arg values
2267   list < Handle(_pyCommand) >::iterator argCmd = myArgCommands.begin();
2268   for ( ; argCmd != myArgCommands.end(); ++argCmd )
2269     (*argCmd)->Clear();
2270
2271   // set unknown arg commands after hypo creation
2272   Handle(_pyCommand) afterCmd = myIsWrapped ? theCmd : GetCreationCmd();
2273   list<Handle(_pyCommand)>::iterator cmd = myUnusedCommands.begin();
2274   for ( ; cmd != myUnusedCommands.end(); ++cmd ) {
2275     afterCmd->AddDependantCmd( *cmd );
2276   }
2277
2278   return myIsWrapped;
2279 }
2280
2281 //================================================================================
2282 /*!
2283  * \brief Remember hypothesis parameter values
2284  * \param theCommand - The called hypothesis method
2285  */
2286 //================================================================================
2287
2288 void _pyHypothesis::Process( const Handle(_pyCommand)& theCommand)
2289 {
2290   ASSERT( !myIsAlgo );
2291   if ( !theGen->IsToKeepAllCommands() )
2292     rememberCmdOfParameter( theCommand );
2293   // set args
2294   bool usedCommand = false;
2295   TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
2296   for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
2297   {
2298     CreationMethod& crMethod = type2meth->second;
2299     for ( size_t i = 0; i < crMethod.myArgMethods.size(); ++i ) {
2300       if ( crMethod.myArgMethods[ i ] == theCommand->GetMethod() ) {
2301         if ( !usedCommand )
2302           myArgCommands.push_back( theCommand );
2303         usedCommand = true;
2304         while ( crMethod.myArgs.size() < i+1 )
2305           crMethod.myArgs.push_back( "[]" );
2306         crMethod.myArgs[ i ] = theCommand->GetArg( crMethod.myArgNb[i] );
2307       }
2308     }
2309   }
2310   if ( !usedCommand )
2311     myUnusedCommands.push_back( theCommand );
2312 }
2313
2314 //================================================================================
2315 /*!
2316  * \brief Finish conversion
2317  */
2318 //================================================================================
2319
2320 void _pyHypothesis::Flush()
2321 {
2322   if ( !IsAlgo() )
2323   {
2324     list < Handle(_pyCommand) >::iterator cmd = myArgCommands.begin();
2325     for ( ; cmd != myArgCommands.end(); ++cmd ) {
2326       // Add access to a wrapped mesh
2327       theGen->AddMeshAccessorMethod( *cmd );
2328       // Add access to a wrapped algorithm
2329       theGen->AddAlgoAccessorMethod( *cmd );
2330     }
2331     cmd = myUnusedCommands.begin();
2332     for ( ; cmd != myUnusedCommands.end(); ++cmd ) {
2333       // Add access to a wrapped mesh
2334       theGen->AddMeshAccessorMethod( *cmd );
2335       // Add access to a wrapped algorithm
2336       theGen->AddAlgoAccessorMethod( *cmd );
2337     }
2338   }
2339   // forget previous hypothesis modifications
2340   myArgCommands.clear();
2341   myUnusedCommands.clear();
2342 }
2343
2344 //================================================================================
2345 /*!
2346  * \brief clear creation, arg and unkown commands
2347  */
2348 //================================================================================
2349
2350 void _pyHypothesis::ClearAllCommands()
2351 {
2352   GetCreationCmd()->Clear();
2353   list<Handle(_pyCommand)>::iterator cmd = myArgCommands.begin();
2354   for ( ; cmd != myArgCommands.end(); ++cmd )
2355     ( *cmd )->Clear();
2356   cmd = myUnusedCommands.begin();
2357   for ( ; cmd != myUnusedCommands.end(); ++cmd )
2358     ( *cmd )->Clear();
2359 }
2360
2361
2362 //================================================================================
2363 /*!
2364  * \brief Assign fields of theOther to me except myIsWrapped
2365  */
2366 //================================================================================
2367
2368 void _pyHypothesis::Assign( const Handle(_pyHypothesis)& theOther,
2369                             const _pyID&                 theMesh )
2370 {
2371   // myCreationCmd = theOther->myCreationCmd;
2372   myIsAlgo                  = theOther->myIsAlgo;
2373   myIsWrapped               = false;
2374   myGeom                    = theOther->myGeom;
2375   myMesh                    = theMesh;
2376   myAlgoType2CreationMethod = theOther->myAlgoType2CreationMethod;
2377   myAccumulativeMethods     = theOther->myAccumulativeMethods;
2378   //myUnusedCommands          = theOther->myUnusedCommands;
2379   // init myCurCrMethod
2380   GetCreationMethod( theOther->GetAlgoType() );
2381 }
2382
2383 //================================================================================
2384 /*!
2385  * \brief Analyze my erasability depending on myReferredObjs
2386  */
2387 //================================================================================
2388
2389 bool _pyHypothesis::CanClear()
2390 {
2391   if ( IsInStudy() )
2392   {
2393     list< Handle(_pyObject) >::iterator obj = myReferredObjs.begin();
2394     for ( ; obj != myReferredObjs.end(); ++obj )
2395       if ( (*obj)->CanClear() )
2396         return true;
2397     return false;
2398   }
2399   return true;
2400 }
2401
2402 //================================================================================
2403 /*!
2404  * \brief Clear my commands depending on usage by meshes
2405  */
2406 //================================================================================
2407
2408 void _pyHypothesis::ClearCommands()
2409 {
2410   // if ( !theGen->IsToKeepAllCommands() )
2411   // {
2412   //   bool isUsed = false;
2413   //   int lastComputeOrder = 0;
2414   //   list<Handle(_pyCommand) >::iterator cmd = myComputeCmds.begin();
2415   //   for ( ; cmd != myComputeCmds.end(); ++cmd )
2416   //     if ( ! (*cmd)->IsEmpty() )
2417   //     {
2418   //       isUsed = true;
2419   //       if ( (*cmd)->GetOrderNb() > lastComputeOrder )
2420   //         lastComputeOrder = (*cmd)->GetOrderNb();
2421   //     }
2422   //   if ( !isUsed )
2423   //   {
2424   //     SetRemovedFromStudy( true );
2425   //   }
2426   //   else
2427   //   {
2428   //     // clear my commands invoked after lastComputeOrder
2429   //     // map<TCollection_AsciiString, list< Handle(_pyCommand) > >::iterator m2c;
2430   //     // for ( m2c = myMeth2Commands.begin(); m2c != myMeth2Commands.end(); ++m2c )
2431   //     // {
2432   //     //   list< Handle(_pyCommand)> & cmds = m2c->second;
2433   //     //   if ( !cmds.empty() && cmds.back()->GetOrderNb() > lastComputeOrder )
2434   //     //     cmds.back()->Clear();
2435   //     // }
2436   //   }
2437   // }
2438   _pyObject::ClearCommands();
2439 }
2440
2441 //================================================================================
2442 /*!
2443  * \brief Find arguments that are objects like mesh, group, geometry
2444  *  \param meshes - referred meshes (directly or indirrectly)
2445  *  \retval bool - false if a referred geometry is not in the study
2446  */
2447 //================================================================================
2448
2449 bool _pyHypothesis::GetReferredMeshesAndGeom( list< Handle(_pyMesh) >& meshes )
2450 {
2451   if ( IsAlgo() ) return true;
2452
2453   bool geomPublished = true;
2454   vector< _AString > args;
2455   TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
2456   for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
2457   {
2458     CreationMethod& crMethod = type2meth->second;
2459     args.insert( args.end(), crMethod.myArgs.begin(), crMethod.myArgs.end());
2460   }
2461   list<Handle(_pyCommand)>::iterator cmd = myUnusedCommands.begin();
2462   for ( ; cmd != myUnusedCommands.end(); ++cmd ) {
2463     for ( int nb = (*cmd)->GetNbArgs(); nb; --nb )
2464       args.push_back( (*cmd)->GetArg( nb ));
2465   }
2466
2467   for ( size_t i = 0; i < args.size(); ++i )
2468   {
2469     list< _pyID > idList = _pyCommand::GetStudyEntries( args[ i ]);
2470     if ( idList.empty() && !args[ i ].IsEmpty() )
2471       idList.push_back( args[ i ]);
2472     list< _pyID >::iterator id = idList.begin();
2473     for ( ; id != idList.end(); ++id )
2474     {
2475       Handle(_pyObject)   obj = theGen->FindObject( *id );
2476       if ( obj.IsNull() ) obj = theGen->FindHyp( *id );
2477       if ( obj.IsNull() )
2478       {
2479         if ( theGen->IsGeomObject( *id ) && theGen->IsNotPublished( *id ))
2480           geomPublished = false;
2481       }
2482       else
2483       {
2484         myReferredObjs.push_back( obj );
2485         Handle(_pyMesh) mesh = ObjectToMesh( obj );
2486         if ( !mesh.IsNull() )
2487           meshes.push_back( mesh );
2488         // prevent clearing not published hyps referred e.g. by "LayerDistribution"
2489         else if ( obj->IsKind( STANDARD_TYPE( _pyHypothesis )) && this->IsInStudy() )
2490           obj->SetRemovedFromStudy( false );
2491       }
2492     }
2493   }
2494   return geomPublished;
2495 }
2496
2497 //================================================================================
2498 /*!
2499  * \brief Remember theCommand setting a parameter
2500  */
2501 //================================================================================
2502
2503 void _pyHypothesis::rememberCmdOfParameter( const Handle(_pyCommand) & theCommand )
2504 {
2505   // parameters are discriminated by method name
2506   _AString method = theCommand->GetMethod();
2507   if ( myAccumulativeMethods.count( method ))
2508     return; // this method adds values and not override the previus value
2509
2510   // discriminate commands setting different parameters via one method
2511   // by passing parameter names like e.g. SetOption("size", "0.2")
2512   if ( theCommand->GetString().FirstLocationInSet( "'\"", 1, theCommand->Length() ) &&
2513        theCommand->GetNbArgs() > 1 )
2514   {
2515     // mangle method by appending a 1st textual arg
2516     for ( int iArg = 1; iArg <= theCommand->GetNbArgs(); ++iArg )
2517     {
2518       const TCollection_AsciiString& arg = theCommand->GetArg( iArg );
2519       if ( arg.Value(1) != '\"' && arg.Value(1) != '\'' ) continue;
2520       if ( !isalpha( arg.Value(2))) continue;
2521       method += arg;
2522       break;
2523     }
2524   }
2525   // parameters are discriminated by method name
2526   list< Handle(_pyCommand)>& cmds = myMeth2Commands[ method /*theCommand->GetMethod()*/ ];
2527   if ( !cmds.empty() && !isCmdUsedForCompute( cmds.back() ))
2528   {
2529     cmds.back()->Clear(); // previous parameter value has not been used
2530     cmds.back() = theCommand;
2531   }
2532   else
2533   {
2534     cmds.push_back( theCommand );
2535   }
2536 }
2537
2538 //================================================================================
2539 /*!
2540  * \brief Return true if a setting parameter command ha been used to compute mesh
2541  */
2542 //================================================================================
2543
2544 bool _pyHypothesis::isCmdUsedForCompute( const Handle(_pyCommand) & cmd,
2545                                          _pyCommand::TAddr          avoidComputeAddr ) const
2546 {
2547   bool isUsed = false;
2548   map< _pyCommand::TAddr, list<Handle(_pyCommand) > >::const_iterator addr2cmds =
2549     myComputeAddr2Cmds.begin();
2550   for ( ; addr2cmds != myComputeAddr2Cmds.end() && !isUsed; ++addr2cmds )
2551   {
2552     if ( addr2cmds->first == avoidComputeAddr ) continue;
2553     const list<Handle(_pyCommand)> & cmds = addr2cmds->second;
2554     isUsed = ( std::find( cmds.begin(), cmds.end(), cmd ) != cmds.end() );
2555   }
2556   return isUsed;
2557 }
2558
2559 //================================================================================
2560 /*!
2561  * \brief Save commands setting parameters as they are used for a mesh computation
2562  */
2563 //================================================================================
2564
2565 void _pyHypothesis::MeshComputed( const Handle(_pyCommand)& theComputeCmd )
2566 {
2567   myComputeCmds.push_back( theComputeCmd );
2568   list<Handle(_pyCommand)>& savedCmds = myComputeAddr2Cmds[ theComputeCmd->GetAddress() ];
2569
2570   map<TCollection_AsciiString, list< Handle(_pyCommand) > >::iterator m2c;
2571   for ( m2c = myMeth2Commands.begin(); m2c != myMeth2Commands.end(); ++m2c )
2572     savedCmds.push_back( m2c->second.back() );
2573 }
2574
2575 //================================================================================
2576 /*!
2577  * \brief Clear commands setting parameters as a mesh computed using them is cleared
2578  */
2579 //================================================================================
2580
2581 void _pyHypothesis::ComputeDiscarded( const Handle(_pyCommand)& theComputeCmd )
2582 {
2583   list<Handle(_pyCommand)>& savedCmds = myComputeAddr2Cmds[ theComputeCmd->GetAddress() ];
2584
2585   list<Handle(_pyCommand)>::iterator cmd = savedCmds.begin();
2586   for ( ; cmd != savedCmds.end(); ++cmd )
2587   {
2588     // check if a cmd has been used to compute another mesh
2589     if ( isCmdUsedForCompute( *cmd, theComputeCmd->GetAddress() ))
2590       continue;
2591     // check if a cmd is a sole command setting its parameter;
2592     // don't use method name for search as it can change
2593     map<TCollection_AsciiString, list<Handle(_pyCommand)> >::iterator
2594       m2cmds = myMeth2Commands.begin();
2595     for ( ; m2cmds != myMeth2Commands.end(); ++m2cmds )
2596     {
2597       list< Handle(_pyCommand)>& cmds = m2cmds->second;
2598       list< Handle(_pyCommand)>::iterator cmdIt = std::find( cmds.begin(), cmds.end(), *cmd );
2599       if ( cmdIt != cmds.end() )
2600       {
2601         if ( cmds.back() != *cmd )
2602         {
2603           cmds.erase( cmdIt );
2604           (*cmd)->Clear();
2605         }
2606         break;
2607       }
2608     }
2609   }
2610   myComputeAddr2Cmds.erase( theComputeCmd->GetAddress() );
2611 }
2612
2613 //================================================================================
2614 /*!
2615  * \brief Sets an argNb-th argument of current creation command
2616  *  \param argNb - argument index countered from 1
2617  */
2618 //================================================================================
2619
2620 void _pyHypothesis::setCreationArg( const int argNb, const _AString& arg )
2621 {
2622   if ( myCurCrMethod )
2623   {
2624     while ( myCurCrMethod->myArgs.size() < argNb )
2625       myCurCrMethod->myArgs.push_back( "None" );
2626     if ( arg.IsEmpty() )
2627       myCurCrMethod->myArgs[ argNb-1 ] = "None";
2628     else
2629       myCurCrMethod->myArgs[ argNb-1 ] = arg;
2630   }
2631 }
2632
2633
2634 //================================================================================
2635 /*!
2636  * \brief Remember hypothesis parameter values
2637  * \param theCommand - The called hypothesis method
2638  */
2639 //================================================================================
2640
2641 void _pyComplexParamHypo::Process( const Handle(_pyCommand)& theCommand)
2642 {
2643   if ( GetAlgoType() == "Cartesian_3D" )
2644   {
2645     // CartesianParameters3D hyp
2646
2647     if ( theCommand->GetMethod() == "SetSizeThreshold" )
2648     {
2649       setCreationArg( 4, theCommand->GetArg( 1 ));
2650       myArgCommands.push_back( theCommand );
2651       return;
2652     }
2653     if ( theCommand->GetMethod() == "SetGrid" ||
2654          theCommand->GetMethod() == "SetGridSpacing" )
2655     {
2656       TCollection_AsciiString axis = theCommand->GetArg( theCommand->GetNbArgs() );
2657       int iArg = axis.Value(1) - '0';
2658       if ( theCommand->GetMethod() == "SetGrid" )
2659       {
2660         setCreationArg( 1+iArg, theCommand->GetArg( 1 ));
2661       }
2662       else
2663       {
2664         myCurCrMethod->myArgs[ iArg ] = "[ ";
2665         myCurCrMethod->myArgs[ iArg ] += theCommand->GetArg( 1 );
2666         myCurCrMethod->myArgs[ iArg ] += ", ";
2667         myCurCrMethod->myArgs[ iArg ] += theCommand->GetArg( 2 );
2668         myCurCrMethod->myArgs[ iArg ] += "]";
2669       }
2670       myArgCommands.push_back( theCommand );
2671       rememberCmdOfParameter( theCommand );
2672       return;
2673     }
2674   }
2675
2676   if( theCommand->GetMethod() == "SetLength" )
2677   {
2678     // NOW it is OBSOLETE
2679     // ex: hyp.SetLength(start, 1)
2680     //     hyp.SetLength(end,   0)
2681     ASSERT(( theCommand->GetArg( 2 ).IsIntegerValue() ));
2682     int i = 1 - theCommand->GetArg( 2 ).IntegerValue();
2683     TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
2684     for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
2685     {
2686       CreationMethod& crMethod = type2meth->second;
2687         while ( crMethod.myArgs.size() < i+1 )
2688           crMethod.myArgs.push_back( "[]" );
2689         crMethod.myArgs[ i ] = theCommand->GetArg( 1 ); // arg value
2690     }
2691     myArgCommands.push_back( theCommand );
2692   }
2693   else
2694   {
2695     _pyHypothesis::Process( theCommand );
2696   }
2697 }
2698 //================================================================================
2699 /*!
2700  * \brief Clear SetObjectEntry() as it is called by methods of Mesh_Segment
2701  */
2702 //================================================================================
2703
2704 void _pyComplexParamHypo::Flush()
2705 {
2706   if ( IsWrapped() )
2707   {
2708     list < Handle(_pyCommand) >::iterator cmd = myUnusedCommands.begin();
2709     for ( ; cmd != myUnusedCommands.end(); ++cmd )
2710       if ((*cmd)->GetMethod() == "SetObjectEntry" )
2711         (*cmd)->Clear();
2712   }
2713 }
2714
2715 //================================================================================
2716 /*!
2717  * \brief Convert methods of 1D hypotheses to my own methods
2718   * \param theCommand - The called hypothesis method
2719  */
2720 //================================================================================
2721
2722 void _pyLayerDistributionHypo::Process( const Handle(_pyCommand)& theCommand)
2723 {
2724   if ( theCommand->GetMethod() != "SetLayerDistribution" )
2725     return;
2726
2727   const _pyID& hyp1dID = theCommand->GetArg( 1 );
2728   // Handle(_pyHypothesis) hyp1d = theGen->FindHyp( hyp1dID );
2729   // if ( hyp1d.IsNull() && ! my1dHyp.IsNull()) // apparently hypId changed at study restoration
2730   // {
2731   //   TCollection_AsciiString cmd =
2732   //     my1dHyp->GetCreationCmd()->GetIndentation() + hyp1dID + " = " + my1dHyp->GetID();
2733   //   Handle(_pyCommand) newCmd = theGen->AddCommand( cmd );
2734   //   theGen->SetCommandAfter( newCmd, my1dHyp->GetCreationCmd() );
2735   //   hyp1d = my1dHyp;
2736   // }
2737   // else if ( !my1dHyp.IsNull() && hyp1dID != my1dHyp->GetID() )
2738   // {
2739   //   // 1D hypo is already set, so distribution changes and the old
2740   //   // 1D hypo is thrown away
2741   //   my1dHyp->ClearAllCommands();
2742   // }
2743   // my1dHyp = hyp1d;
2744   // //my1dHyp->SetRemovedFromStudy( false );
2745
2746   // if ( !myArgCommands.empty() )
2747   //   myArgCommands.back()->Clear();
2748   myCurCrMethod->myArgs.push_back( hyp1dID );
2749   myArgCommands.push_back( theCommand );
2750 }
2751
2752 //================================================================================
2753 /*!
2754  * \brief
2755   * \param theAdditionCmd - command to be converted
2756   * \param theMesh - mesh instance
2757   * \retval bool - status
2758  */
2759 //================================================================================
2760
2761 bool _pyLayerDistributionHypo::Addition2Creation( const Handle(_pyCommand)& theAdditionCmd,
2762                                                   const _pyID&              theMesh)
2763 {
2764   myIsWrapped = false;
2765
2766   if ( my1dHyp.IsNull() )
2767     return false;
2768
2769   // set "SetLayerDistribution()" after addition cmd
2770   theAdditionCmd->AddDependantCmd( myArgCommands.front() );
2771
2772   _pyID geom = theAdditionCmd->GetArg( 1 );
2773
2774   Handle(_pyHypothesis) algo = theGen->FindAlgo( geom, theMesh, this );
2775   if ( !algo.IsNull() )
2776   {
2777     my1dHyp->SetMesh( theMesh );
2778     my1dHyp->SetConvMethodAndType(my1dHyp->GetAlgoCreationMethod().ToCString(),
2779                                   algo->GetAlgoType().ToCString());
2780     if ( !my1dHyp->Addition2Creation( theAdditionCmd, theMesh ))
2781       return false;
2782
2783     // clear "SetLayerDistribution()" cmd
2784     myArgCommands.back()->Clear();
2785
2786     // Convert my creation => me = RadialPrismAlgo.Get3DHypothesis()
2787
2788     // find RadialPrism algo created on <geom> for theMesh
2789     GetCreationCmd()->SetObject( algo->GetID() );
2790     GetCreationCmd()->SetMethod( myAlgoMethod );
2791     GetCreationCmd()->RemoveArgs();
2792     theAdditionCmd->AddDependantCmd( GetCreationCmd() );
2793     myIsWrapped = true;
2794   }
2795   return myIsWrapped;
2796 }
2797
2798 //================================================================================
2799 /*!
2800  * \brief
2801  */
2802 //================================================================================
2803
2804 void _pyLayerDistributionHypo::Flush()
2805 {
2806   // as creation of 1D hyp was written later then it's edition,
2807   // we need to find all it's edition calls and process them
2808   list< Handle(_pyCommand) >::iterator cmd = myArgCommands.begin();
2809   _pyID prevNewName;
2810   for ( cmd = myArgCommands.begin(); cmd != myArgCommands.end(); ++cmd )
2811   {    
2812     const _pyID& hyp1dID = (*cmd)->GetArg( 1 );
2813     if ( hyp1dID.IsEmpty() ) continue;
2814
2815     Handle(_pyHypothesis) hyp1d = theGen->FindHyp( hyp1dID );
2816
2817     // make a new name for 1D hyp = "HypType" + "_Distribution"
2818     _pyID newName;
2819     if ( hyp1d.IsNull() ) // apparently hypId changed at study restoration
2820     {
2821       if ( prevNewName.IsEmpty() ) continue;
2822       newName = prevNewName;
2823     }
2824     else
2825     {
2826       if ( hyp1d->IsWrapped() ) {
2827         newName = hyp1d->GetCreationCmd()->GetMethod();
2828       }
2829       else {
2830         TCollection_AsciiString hypTypeQuoted = hyp1d->GetCreationCmd()->GetArg(1);
2831         newName = hypTypeQuoted.SubString( 2, hypTypeQuoted.Length() - 1 );
2832       }
2833       newName += "_Distribution";
2834       prevNewName = newName;
2835     
2836       hyp1d->GetCreationCmd()->SetResultValue( newName );
2837     }
2838     list< Handle(_pyCommand) >& cmds = theGen->GetCommands();
2839     list< Handle(_pyCommand) >::iterator cmdIt = cmds.begin();
2840     for ( ; cmdIt != cmds.end(); ++cmdIt ) {
2841       const _pyID& objID = (*cmdIt)->GetObject();
2842       if ( objID == hyp1dID ) {
2843         if ( !hyp1d.IsNull() )
2844         {
2845           hyp1d->Process( *cmdIt );
2846           hyp1d->GetCreationCmd()->AddDependantCmd( *cmdIt );
2847         }
2848         ( *cmdIt )->SetObject( newName );
2849       }
2850     }
2851     // Set new hyp name to SetLayerDistribution(hyp1dID) cmd
2852     (*cmd)->SetArg( 1, newName );
2853   }
2854 }
2855
2856 //================================================================================
2857 /*!
2858  * \brief additionally to Addition2Creation, clears SetDistrType() command
2859   * \param theCmd - AddHypothesis() command
2860   * \param theMesh - mesh to which a hypothesis is added
2861   * \retval bool - convertion result
2862  */
2863 //================================================================================
2864
2865 bool _pyNumberOfSegmentsHyp::Addition2Creation( const Handle(_pyCommand)& theCmd,
2866                                                 const _pyID&              theMesh)
2867 {
2868   if ( IsWrappable( theMesh ) && myCurCrMethod->myArgs.size() > 1 ) {
2869     // scale factor (2-nd arg) is provided: clear SetDistrType(1) command
2870     bool scaleDistrType = false;
2871     list<Handle(_pyCommand)>::reverse_iterator cmd = myUnusedCommands.rbegin();
2872     for ( ; cmd != myUnusedCommands.rend(); ++cmd ) {
2873       if ( (*cmd)->GetMethod() == "SetDistrType" ) {
2874         if ( (*cmd)->GetArg( 1 ) == "1" ) {
2875           scaleDistrType = true;
2876           (*cmd)->Clear();
2877         }
2878         else if ( !scaleDistrType ) {
2879           // distribution type changed: remove scale factor from args
2880           TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
2881           for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
2882           {
2883             CreationMethod& crMethod = type2meth->second;
2884             if ( crMethod.myArgs.size() == 2 )
2885               crMethod.myArgs.pop_back();
2886           }
2887           break;
2888         }
2889       }
2890     }
2891   }
2892   return _pyHypothesis::Addition2Creation( theCmd, theMesh );
2893 }
2894
2895 //================================================================================
2896 /*!
2897  * \brief remove repeated commands defining distribution
2898  */
2899 //================================================================================
2900
2901 void _pyNumberOfSegmentsHyp::Flush()
2902 {
2903   // find number of the last SetDistrType() command
2904   list<Handle(_pyCommand)>::reverse_iterator cmd = myUnusedCommands.rbegin();
2905   int distrTypeNb = 0;
2906   for ( ; !distrTypeNb && cmd != myUnusedCommands.rend(); ++cmd )
2907     if ( (*cmd)->GetMethod() == "SetDistrType" )
2908       distrTypeNb = (*cmd)->GetOrderNb();
2909     else if (IsWrapped() && (*cmd)->GetMethod() == "SetObjectEntry" )
2910       (*cmd)->Clear();
2911
2912   // clear commands before the last SetDistrType()
2913   list<Handle(_pyCommand)> * cmds[2] = { &myArgCommands, &myUnusedCommands };
2914   for ( int i = 0; i < 2; ++i ) {
2915     set<TCollection_AsciiString> uniqueMethods;
2916     list<Handle(_pyCommand)> & cmdList = *cmds[i];
2917     for ( cmd = cmdList.rbegin(); cmd != cmdList.rend(); ++cmd )
2918     {
2919       bool clear = ( (*cmd)->GetOrderNb() < distrTypeNb );
2920       const TCollection_AsciiString& method = (*cmd)->GetMethod();
2921       if ( !clear || method == "SetNumberOfSegments" ) {
2922         bool isNewInSet = uniqueMethods.insert( method ).second;
2923         clear = !isNewInSet;
2924       }
2925       if ( clear )
2926         (*cmd)->Clear();
2927     }
2928     cmdList.clear();
2929   }
2930 }
2931
2932 //================================================================================
2933 /*!
2934  * \brief Convert the command adding "SegmentLengthAroundVertex" to mesh
2935  * into regular1D.LengthNearVertex( length, vertex )
2936   * \param theCmd - The command like mesh.AddHypothesis( vertex, SegmentLengthAroundVertex )
2937   * \param theMesh - The mesh needing this hypo
2938   * \retval bool - false if the command cant be converted
2939  */
2940 //================================================================================
2941
2942 bool _pySegmentLengthAroundVertexHyp::Addition2Creation( const Handle(_pyCommand)& theCmd,
2943                                                          const _pyID&              theMeshID)
2944 {
2945   if ( IsWrappable( theMeshID )) {
2946
2947     _pyID vertex = theCmd->GetArg( 1 );
2948
2949     // the problem here is that segment algo will not be found
2950     // by pyHypothesis::Addition2Creation() for <vertex>, so we try to find
2951     // geometry where segment algorithm is assigned
2952     Handle(_pyHypothesis) algo;
2953     _pyID geom = vertex;
2954     while ( algo.IsNull() && !geom.IsEmpty()) {
2955       // try to find geom as a father of <vertex>
2956       geom = FatherID( geom );
2957       algo = theGen->FindAlgo( geom, theMeshID, this );
2958     }
2959     if ( algo.IsNull() )
2960       return false; // also possible to find geom as brother of veretex...
2961     // set geom instead of vertex
2962     theCmd->SetArg( 1, geom );
2963
2964     // set vertex as a second arg
2965     if ( myCurCrMethod->myArgs.size() < 1) setCreationArg( 1, "1" ); // :(
2966     setCreationArg( 2, vertex );
2967
2968     // mesh.AddHypothesis(vertex, SegmentLengthAroundVertex) -->
2969     // theMeshID.LengthNearVertex( length, vertex )
2970     return _pyHypothesis::Addition2Creation( theCmd, theMeshID );
2971   }
2972   return false;
2973 }
2974
2975 //================================================================================
2976 /*!
2977  * \brief _pyAlgorithm constructor
2978  * \param theCreationCmd - The command like "algo = smeshgen.CreateHypothesis(type,lib)"
2979  */
2980 //================================================================================
2981
2982 _pyAlgorithm::_pyAlgorithm(const Handle(_pyCommand)& theCreationCmd)
2983   : _pyHypothesis( theCreationCmd )
2984 {
2985   myIsAlgo = true;
2986 }
2987
2988 //================================================================================
2989 /*!
2990  * \brief Convert the command adding an algorithm to mesh
2991   * \param theCmd - The command like mesh.AddHypothesis( geom, algo )
2992   * \param theMesh - The mesh needing this algo
2993   * \retval bool - false if the command cant be converted
2994  */
2995 //================================================================================
2996
2997 bool _pyAlgorithm::Addition2Creation( const Handle(_pyCommand)& theCmd,
2998                                       const _pyID&              theMeshID)
2999 {
3000   // mesh.AddHypothesis(geom,algo) --> theMeshID.myCreationMethod()
3001   if ( _pyHypothesis::Addition2Creation( theCmd, theMeshID )) {
3002     theGen->SetAccessorMethod( GetID(), "GetAlgorithm()" );
3003     return true;
3004   }
3005   return false;
3006 }
3007
3008 //================================================================================
3009 /*!
3010  * \brief Return starting position of a part of python command
3011   * \param thePartIndex - The index of command part
3012   * \retval int - Part position
3013  */
3014 //================================================================================
3015
3016 int _pyCommand::GetBegPos( int thePartIndex )
3017 {
3018   if ( IsEmpty() )
3019     return EMPTY;
3020   if ( myBegPos.Length() < thePartIndex )
3021     return UNKNOWN;
3022   return myBegPos( thePartIndex );
3023 }
3024
3025 //================================================================================
3026 /*!
3027  * \brief Store starting position of a part of python command
3028   * \param thePartIndex - The index of command part
3029   * \param thePosition - Part position
3030  */
3031 //================================================================================
3032
3033 void _pyCommand::SetBegPos( int thePartIndex, int thePosition )
3034 {
3035   while ( myBegPos.Length() < thePartIndex )
3036     myBegPos.Append( UNKNOWN );
3037   myBegPos( thePartIndex ) = thePosition;
3038 }
3039
3040 //================================================================================
3041 /*!
3042  * \brief Returns whitespace symbols at the line beginning
3043   * \retval TCollection_AsciiString - result
3044  */
3045 //================================================================================
3046
3047 TCollection_AsciiString _pyCommand::GetIndentation()
3048 {
3049   int end = 1;
3050   if ( GetBegPos( RESULT_IND ) == UNKNOWN )
3051     GetWord( myString, end, true );
3052   else
3053     end = GetBegPos( RESULT_IND );
3054   return myString.SubString( 1, end - 1 );
3055 }
3056
3057 //================================================================================
3058 /*!
3059  * \brief Return substring of python command looking like ResultValue = Obj.Meth()
3060   * \retval const TCollection_AsciiString & - ResultValue substring
3061  */
3062 //================================================================================
3063
3064 const TCollection_AsciiString & _pyCommand::GetResultValue()
3065 {
3066   if ( GetBegPos( RESULT_IND ) == UNKNOWN )
3067   {
3068     SetBegPos( RESULT_IND, EMPTY );
3069     int begPos, endPos = myString.Location( "=", 1, Length() );
3070     if ( endPos )
3071     {
3072       begPos = 1;
3073       while ( begPos < endPos && isspace( myString.Value( begPos ))) ++begPos;
3074       if ( begPos < endPos )
3075       {
3076         SetBegPos( RESULT_IND, begPos );
3077         --endPos;
3078         while ( begPos < endPos && isspace( myString.Value( endPos ))) --endPos;
3079         myRes = myString.SubString( begPos, endPos );
3080       }
3081     }
3082   }
3083   return myRes;
3084 }
3085
3086 //================================================================================
3087 /*!
3088  * \brief Return number of python command result value ResultValue = Obj.Meth()
3089   * \retval const int
3090  */
3091 //================================================================================
3092
3093 const int _pyCommand::GetNbResultValues()
3094 {
3095   int begPos = 1;
3096   int Nb=0;
3097   int endPos = myString.Location( "=", 1, Length() );
3098   TCollection_AsciiString str = "";
3099   while ( begPos < endPos) {
3100     str = GetWord( myString, begPos, true );
3101     begPos = begPos+ str.Length();
3102     Nb++;
3103   }
3104   return (Nb-1);
3105 }
3106
3107
3108 //================================================================================
3109 /*!
3110  * \brief Return substring of python command looking like
3111  *  ResultValue1 , ResultValue2,... = Obj.Meth() with res index
3112  * \retval const TCollection_AsciiString & - ResultValue with res index substring
3113  */
3114 //================================================================================
3115 TCollection_AsciiString _pyCommand::GetResultValue(int res)
3116 {
3117   int begPos = 1;
3118   if ( SkipSpaces( myString, begPos ) && myString.Value( begPos ) == '[' )
3119     ++begPos; // skip [, else the whole list is returned
3120   int endPos = myString.Location( "=", 1, Length() );
3121   int Nb=0;
3122   while ( begPos < endPos) {
3123     _AString result = GetWord( myString, begPos, true );
3124     begPos = begPos + result.Length();
3125     Nb++;
3126     if(res == Nb) {
3127       result.RemoveAll('[');
3128       result.RemoveAll(']');
3129       return result;
3130     }
3131     if(Nb>res)
3132       break;
3133   }
3134   return theEmptyString;
3135 }
3136
3137 //================================================================================
3138 /*!
3139  * \brief Return substring of python command looking like ResVal = Object.Meth()
3140   * \retval const TCollection_AsciiString & - Object substring
3141  */
3142 //================================================================================
3143
3144 const TCollection_AsciiString & _pyCommand::GetObject()
3145 {
3146   if ( GetBegPos( OBJECT_IND ) == UNKNOWN )
3147   {
3148     // beginning
3149     int begPos = GetBegPos( RESULT_IND ) + myRes.Length();
3150     if ( begPos < 1 ) {
3151       begPos = myString.Location( "=", 1, Length() ) + 1;
3152       // is '=' in the string argument (for example, name) or not
3153       int nb1 = 0; // number of ' character at the left of =
3154       int nb2 = 0; // number of " character at the left of =
3155       for ( int i = 1; i < begPos-1; i++ ) {
3156         if ( myString.Value( i )=='\'' )
3157           nb1 += 1;
3158         else if ( myString.Value( i )=='"' )
3159           nb2 += 1;
3160       }
3161       // if number of ' or " is not divisible by 2,
3162       // then get an object at the start of the command
3163       if ( nb1 % 2 != 0 || nb2 % 2 != 0 )
3164         begPos = 1;
3165     }
3166     myObj = GetWord( myString, begPos, true );
3167     // check if object is complex,
3168     // so far consider case like "smesh.smesh.Method()"
3169     if ( int bracketPos = myString.Location( "(", begPos, Length() )) {
3170       //if ( bracketPos==0 ) bracketPos = Length();
3171       int dotPos = begPos+myObj.Length();
3172       while ( dotPos+1 < bracketPos ) {
3173         if ( int pos = myString.Location( ".", dotPos+1, bracketPos ))
3174           dotPos = pos;
3175         else
3176           break;
3177       }
3178       if ( dotPos > begPos+myObj.Length() )
3179         myObj = myString.SubString( begPos, dotPos-1 );
3180     }
3181     // 1st word after '=' is an object
3182     // else // no method -> no object
3183     // {
3184     //   myObj.Clear();
3185     //   begPos = EMPTY;
3186     // }
3187     // store
3188     SetBegPos( OBJECT_IND, begPos );
3189   }
3190   //SCRUTE(myObj);
3191   return myObj;
3192 }
3193
3194 //================================================================================
3195 /*!
3196  * \brief Return substring of python command looking like ResVal = Obj.Method()
3197   * \retval const TCollection_AsciiString & - Method substring
3198  */
3199 //================================================================================
3200
3201 const TCollection_AsciiString & _pyCommand::GetMethod()
3202 {
3203   if ( GetBegPos( METHOD_IND ) == UNKNOWN )
3204   {
3205     // beginning
3206     int begPos = GetBegPos( OBJECT_IND ) + myObj.Length();
3207     bool forward = true;
3208     if ( begPos < 1 ) {
3209       begPos = myString.Location( "(", 1, Length() ) - 1;
3210       forward = false;
3211     }
3212     // store
3213     myMeth = GetWord( myString, begPos, forward );
3214     SetBegPos( METHOD_IND, begPos );
3215   }
3216   //SCRUTE(myMeth);
3217   return myMeth;
3218 }
3219
3220 //================================================================================
3221 /*!
3222  * \brief Return substring of python command looking like ResVal = Obj.Meth(Arg1,...)
3223   * \retval const TCollection_AsciiString & - Arg<index> substring
3224  */
3225 //================================================================================
3226
3227 const TCollection_AsciiString & _pyCommand::GetArg( int index )
3228 {
3229   if ( GetBegPos( ARG1_IND ) == UNKNOWN )
3230   {
3231     // Find all args
3232
3233     int pos = GetBegPos( METHOD_IND ) + myMeth.Length();
3234     if ( pos < 1 )
3235       pos = myString.Location( "(", 1, Length() );
3236     else
3237       --pos;
3238
3239     // we are at or before '(', skip it if present
3240     if ( pos > 0 ) {
3241       while ( pos <= Length() && myString.Value( pos ) != '(' ) ++pos;
3242       if ( pos > Length() )
3243         pos = 0;
3244     }
3245     if ( pos < 1 ) {
3246       SetBegPos( ARG1_IND, 0 ); // even no '('
3247       return theEmptyString;
3248     }
3249     ++pos;
3250
3251     list< TCollection_AsciiString > separatorStack( 1, ",)");
3252     bool ignoreNesting = false;
3253     int prevPos = pos;
3254     while ( pos <= Length() )
3255     {
3256       const char chr = myString.Value( pos );
3257
3258       if ( separatorStack.back().Location( chr, 1, separatorStack.back().Length()))
3259       {
3260         if ( separatorStack.size() == 1 ) // a comma dividing args or a terminal ')' found
3261         {
3262           while ( pos-1 >= prevPos && isspace( myString.Value( prevPos )))
3263             ++prevPos;
3264           TCollection_AsciiString arg;
3265           if ( pos-1 >= prevPos ) {
3266             arg = myString.SubString( prevPos, pos-1 );
3267             arg.RightAdjust(); // remove spaces
3268             arg.LeftAdjust();
3269           }
3270           if ( !arg.IsEmpty() || chr == ',' )
3271           {
3272             SetBegPos( ARG1_IND + myArgs.Length(), prevPos );
3273             myArgs.Append( arg );
3274           }
3275           if ( chr == ')' )
3276             break;
3277           prevPos = pos+1;
3278         }
3279         else // end of nesting args found
3280         {
3281           separatorStack.pop_back();
3282           ignoreNesting = false;
3283         }
3284       }
3285       else if ( !ignoreNesting )
3286       {
3287         switch ( chr ) {
3288         case '(' : separatorStack.push_back(")"); break;
3289         case '[' : separatorStack.push_back("]"); break;
3290         case '\'': separatorStack.push_back("'");  ignoreNesting=true; break;
3291         case '"' : separatorStack.push_back("\""); ignoreNesting=true; break;
3292         default:;
3293         }
3294       }
3295       ++pos;
3296     }
3297   }
3298   if ( myArgs.Length() < index )
3299     return theEmptyString;
3300   return myArgs( index );
3301 }
3302
3303 //================================================================================
3304 /*!
3305  * \brief Check if char is a word part
3306   * \param c - The character to check
3307   * \retval bool - The check result
3308  */
3309 //================================================================================
3310
3311 static inline bool isWord(const char c, const bool dotIsWord)
3312 {
3313   return
3314     !isspace(c) && c != ',' && c != '=' && c != ')' && c != '(' && ( dotIsWord || c != '.');
3315 }
3316
3317 //================================================================================
3318 /*!
3319  * \brief Looks for a word in the string and returns word's beginning
3320   * \param theString - The input string
3321   * \param theStartPos - The position to start the search, returning word's beginning
3322   * \param theForward - The search direction
3323   * \retval TCollection_AsciiString - The found word
3324  */
3325 //================================================================================
3326
3327 TCollection_AsciiString _pyCommand::GetWord( const _AString & theString,
3328                                              int &            theStartPos,
3329                                              const bool       theForward,
3330                                              const bool       dotIsWord )
3331 {
3332   int beg = theStartPos, end = theStartPos;
3333   theStartPos = EMPTY;
3334   if ( beg < 1 || beg > theString.Length() )
3335     return theEmptyString;
3336
3337   if ( theForward ) { // search forward
3338     // beg
3339     while ( beg <= theString.Length() && !isWord( theString.Value( beg ), dotIsWord))
3340       ++beg;
3341     if ( beg > theString.Length() )
3342       return theEmptyString; // no word found
3343     // end
3344     end = beg + 1;
3345     char begChar = theString.Value( beg );
3346     if ( begChar == '"' || begChar == '\'' || begChar == '[') {
3347       char endChar = ( begChar == '[' ) ? ']' : begChar;
3348       // end is at the corresponding quoting mark or bracket
3349       while ( end < theString.Length() &&
3350               ( theString.Value( end ) != endChar || theString.Value( end-1 ) == '\\'))
3351         ++end;
3352     }
3353     else {
3354       while ( end <= theString.Length() && isWord( theString.Value( end ), dotIsWord))
3355         ++end;
3356       --end;
3357     }
3358   }
3359   else {  // search backward
3360     // end
3361     while ( end > 0 && !isWord( theString.Value( end ), dotIsWord))
3362       --end;
3363     if ( end == 0 )
3364       return theEmptyString; // no word found
3365     beg = end - 1;
3366     char endChar = theString.Value( end );
3367     if ( endChar == '"' || endChar == '\'' || endChar == ']') {
3368       char begChar = ( endChar == ']' ) ? '[' : endChar;
3369       // beg is at the corresponding quoting mark
3370       while ( beg > 1 &&
3371               ( theString.Value( beg ) != begChar || theString.Value( beg-1 ) == '\\'))
3372         --beg;
3373     }
3374     else {
3375       while ( beg > 0 && isWord( theString.Value( beg ), dotIsWord))
3376         --beg;
3377       ++beg;
3378     }
3379   }
3380   theStartPos = beg;
3381   //cout << theString << " ---- " << beg << " - " << end << endl;
3382   return theString.SubString( beg, end );
3383 }
3384
3385 //================================================================================
3386 /*!
3387  * \brief Returns true if the string looks like a study entry
3388  */
3389 //================================================================================
3390
3391 bool _pyCommand::IsStudyEntry( const TCollection_AsciiString& str )
3392 {
3393   if ( str.Length() < 5 ) return false;
3394
3395   int nbColons = 0, isColon;
3396   for ( int i = 1; i <= str.Length(); ++i )
3397   {
3398     char c = str.Value(i);
3399     if (!( isColon = (c == ':')) && ( c < '0' || c > '9' ))
3400       return false;
3401     nbColons += isColon;
3402   }
3403   return nbColons > 2 && str.Length()-nbColons > 2;
3404 }
3405
3406 //================================================================================
3407 /*!
3408  * \brief Finds entries in a sting
3409  */
3410 //================================================================================
3411
3412 std::list< _pyID > _pyCommand::GetStudyEntries( const TCollection_AsciiString& str )
3413 {
3414   std::list< _pyID > resList;
3415   int pos = 0;
3416   while ( ++pos <= str.Length() )
3417   {
3418     if ( !isdigit( str.Value( pos ))) continue;
3419     if ( pos != 1 && ( isalpha( str.Value( pos-1 ) || str.Value( pos-1 ) == ':'))) continue;
3420
3421     int end = pos;
3422     while ( ++end <= str.Length() && ( isdigit( str.Value( end )) || str.Value( end ) == ':' ));
3423     _pyID entry = str.SubString( pos, end-1 );
3424     pos = end;
3425     if ( IsStudyEntry( entry ))
3426       resList.push_back( entry );
3427   }
3428   return resList;
3429 }
3430
3431 //================================================================================
3432 /*!
3433  * \brief Look for position where not space char is
3434   * \param theString - The string
3435   * \param thePos - The position to search from and which returns result
3436   * \retval bool - false if there are only space after thePos in theString
3437  */
3438 //================================================================================
3439
3440 bool _pyCommand::SkipSpaces( const TCollection_AsciiString & theString, int & thePos )
3441 {
3442   if ( thePos < 1 || thePos > theString.Length() )
3443     return false;
3444
3445   while ( thePos <= theString.Length() && isspace( theString.Value( thePos )))
3446     ++thePos;
3447
3448   return thePos <= theString.Length();
3449 }
3450
3451 //================================================================================
3452 /*!
3453  * \brief Modify a part of the command
3454   * \param thePartIndex - The index of the part
3455   * \param thePart - The new part string
3456   * \param theOldPart - The old part
3457  */
3458 //================================================================================
3459
3460 void _pyCommand::SetPart(int thePartIndex, const TCollection_AsciiString& thePart,
3461                         TCollection_AsciiString& theOldPart)
3462 {
3463   int pos = GetBegPos( thePartIndex );
3464   if ( pos <= Length() && theOldPart != thePart)
3465   {
3466     TCollection_AsciiString seperator;
3467     if ( pos < 1 ) {
3468       pos = GetBegPos( thePartIndex + 1 );
3469       if ( pos < 1 ) return;
3470       switch ( thePartIndex ) {
3471       case RESULT_IND: seperator = " = "; break;
3472       case OBJECT_IND: seperator = "."; break;
3473       case METHOD_IND: seperator = "()"; break;
3474       default:;
3475       }
3476     }
3477     myString.Remove( pos, theOldPart.Length() );
3478     if ( !seperator.IsEmpty() )
3479       myString.Insert( pos , seperator );
3480     myString.Insert( pos, thePart );
3481     // update starting positions of the following parts
3482     int posDelta = thePart.Length() + seperator.Length() - theOldPart.Length();
3483     for ( int i = thePartIndex + 1; i <= myBegPos.Length(); ++i ) {
3484       if ( myBegPos( i ) > 0 )
3485         myBegPos( i ) += posDelta;
3486     }
3487     theOldPart = thePart;
3488   }
3489 }
3490
3491 //================================================================================
3492 /*!
3493  * \brief Set agrument
3494   * \param index - The argument index, it counts from 1
3495   * \param theArg - The argument string
3496  */
3497 //================================================================================
3498
3499 void _pyCommand::SetArg( int index, const TCollection_AsciiString& theArg)
3500 {
3501   FindAllArgs();
3502   int argInd = ARG1_IND + index - 1;
3503   int pos = GetBegPos( argInd );
3504   if ( pos < 1 ) // no index-th arg exist, append inexistent args
3505   {
3506     // find a closing parenthesis
3507     if ( GetNbArgs() != 0 && index <= GetNbArgs() ) {
3508       int lastArgInd = GetNbArgs();
3509       pos = GetBegPos( ARG1_IND + lastArgInd  - 1 ) + GetArg( lastArgInd ).Length();
3510       while ( pos > 0 && pos <= Length() && myString.Value( pos ) != ')' )
3511         ++pos;
3512     }
3513     else {
3514       pos = Length();
3515       while ( pos > 0 && myString.Value( pos ) != ')' )
3516         --pos;
3517     }
3518     if ( pos < 1 || myString.Value( pos ) != ')' ) { // no parentheses at all
3519       myString += "()";
3520       pos = Length();
3521     }
3522     while ( myArgs.Length() < index ) {
3523       if ( myArgs.Length() )
3524         myString.Insert( pos++, "," );
3525       myArgs.Append("None");
3526       myString.Insert( pos, myArgs.Last() );
3527       SetBegPos( ARG1_IND + myArgs.Length() - 1, pos );
3528       pos += myArgs.Last().Length();
3529     }
3530   }
3531   SetPart( argInd, theArg, myArgs( index ));
3532 }
3533
3534 //================================================================================
3535 /*!
3536  * \brief Empty arg list
3537  */
3538 //================================================================================
3539
3540 void _pyCommand::RemoveArgs()
3541 {
3542   if ( int pos = myString.Location( '(', 1, Length() ))
3543     myString.Trunc( pos );
3544   myString += ")";
3545   myArgs.Clear();
3546   if ( myBegPos.Length() >= ARG1_IND )
3547     myBegPos.Remove( ARG1_IND, myBegPos.Length() );
3548 }
3549
3550 //================================================================================
3551 /*!
3552  * \brief Comment a python command
3553  */
3554 //================================================================================
3555
3556 void _pyCommand::Comment()
3557 {
3558   if ( IsEmpty() ) return;
3559
3560   int i = 1;
3561   while ( i <= Length() && isspace( myString.Value(i) )) ++i;
3562   if ( i <= Length() )
3563   {
3564     myString.Insert( i, "#" );
3565     for ( int iPart = 0; iPart < myBegPos.Length(); ++iPart )
3566     {
3567       int begPos = GetBegPos( iPart );
3568       if ( begPos != UNKNOWN )
3569         SetBegPos( iPart, begPos + 1 );
3570     }
3571   }
3572 }
3573
3574 //================================================================================
3575 /*!
3576  * \brief Set dependent commands after this one
3577  */
3578 //================================================================================
3579
3580 bool _pyCommand::SetDependentCmdsAfter() const
3581 {
3582   bool orderChanged = false;
3583   list< Handle(_pyCommand)>::const_reverse_iterator cmd = myDependentCmds.rbegin();
3584   for ( ; cmd != myDependentCmds.rend(); ++cmd ) {
3585     if ( (*cmd)->GetOrderNb() < GetOrderNb() ) {
3586       orderChanged = true;
3587       theGen->SetCommandAfter( *cmd, this );
3588       (*cmd)->SetDependentCmdsAfter();
3589     }
3590   }
3591   return orderChanged;
3592 }
3593 //================================================================================
3594 /*!
3595  * \brief Insert accessor method after theObjectID
3596   * \param theObjectID - id of the accessed object
3597   * \param theAcsMethod - name of the method giving access to the object
3598   * \retval bool - false if theObjectID is not found in the command string
3599  */
3600 //================================================================================
3601
3602 bool _pyCommand::AddAccessorMethod( _pyID theObjectID, const char* theAcsMethod )
3603 {
3604   if ( !theAcsMethod )
3605     return false;
3606   // start object search from the object, i.e. ignore result
3607   GetObject();
3608   int beg = GetBegPos( OBJECT_IND );
3609   if ( beg < 1 || beg > Length() )
3610     return false;
3611   bool added = false;
3612   while (( beg = myString.Location( theObjectID, beg, Length() )))
3613   {
3614     // check that theObjectID is not just a part of a longer ID
3615     int afterEnd = beg + theObjectID.Length();
3616     Standard_Character c = myString.Value( afterEnd );
3617     if ( !isalnum( c ) && c != ':' ) {
3618       // check if accessor method already present
3619       if ( c != '.' ||
3620            myString.Location( (char*) theAcsMethod, afterEnd, Length() ) != afterEnd+1) {
3621         // insertion
3622         int oldLen = Length();
3623         myString.Insert( afterEnd, (char*) theAcsMethod );
3624         myString.Insert( afterEnd, "." );
3625         // update starting positions of the parts following the modified one
3626         int posDelta = Length() - oldLen;
3627         for ( int i = 1; i <= myBegPos.Length(); ++i ) {
3628           if ( myBegPos( i ) > afterEnd )
3629             myBegPos( i ) += posDelta;
3630         }
3631         added = true;
3632       }
3633     }
3634     beg = afterEnd; // is a part - next search
3635   }
3636   return added;
3637 }
3638
3639 //================================================================================
3640 /*!
3641  * \brief Creates pyObject
3642  */
3643 //================================================================================
3644
3645 _pyObject::_pyObject(const Handle(_pyCommand)& theCreationCmd, const _pyID& theID)
3646   : myID(theID), myCreationCmd(theCreationCmd), myIsPublished(false)
3647 {
3648   setID( theID );
3649 }
3650
3651 //================================================================================
3652 /*!
3653  * \brief Set up myID and myIsPublished
3654  */
3655 //================================================================================
3656
3657 void _pyObject::setID(const _pyID& theID)
3658 {
3659   myID = theID;
3660   myIsPublished = !theGen->IsNotPublished( GetID() );
3661 }
3662
3663 //================================================================================
3664 /*!
3665  * \brief Clear myCreationCmd and myProcessedCmds
3666  */
3667 //================================================================================
3668
3669 void _pyObject::ClearCommands()
3670 {
3671   if ( !CanClear() )
3672     return;
3673
3674   if ( !myCreationCmd.IsNull() )
3675     myCreationCmd->Clear();
3676
3677   list< Handle(_pyCommand) >::iterator cmd = myProcessedCmds.begin();
3678   for ( ; cmd != myProcessedCmds.end(); ++cmd )
3679     (*cmd)->Clear();
3680 }
3681
3682 //================================================================================
3683 /*!
3684  * \brief Return method name giving access to an interaface object wrapped by python class
3685   * \retval const char* - method name
3686  */
3687 //================================================================================
3688
3689 const char* _pyObject::AccessorMethod() const
3690 {
3691   return 0;
3692 }
3693 //================================================================================
3694 /*!
3695  * \brief Return ID of a father
3696  */
3697 //================================================================================
3698
3699 _pyID _pyObject::FatherID(const _pyID & childID)
3700 {
3701   int colPos = childID.SearchFromEnd(':');
3702   if ( colPos > 0 )
3703     return childID.SubString( 1, colPos-1 );
3704   return "";
3705 }
3706
3707 //================================================================================
3708 /*!
3709  * \brief SelfEraser erases creation command if no more it's commands invoked
3710  */
3711 //================================================================================
3712
3713 void _pySelfEraser::Flush()
3714 {
3715   if ( GetNbCalls() == 0 )
3716     GetCreationCmd()->Clear();
3717 }
3718
3719 //================================================================================
3720 /*!
3721  * \brief _pySubMesh constructor
3722  */
3723 //================================================================================
3724
3725 _pySubMesh::_pySubMesh(const Handle(_pyCommand)& theCreationCmd):
3726   _pyObject(theCreationCmd)
3727 {
3728   myMesh = ObjectToMesh( theGen->FindObject( theCreationCmd->GetObject() ));
3729 }
3730
3731 //================================================================================
3732 /*!
3733  * \brief Return true if a sub-mesh can be used as argument of the given method
3734  */
3735 //================================================================================
3736
3737 bool _pySubMesh::CanBeArgOfMethod(const _AString& theMethodName)
3738 {
3739   // names of all methods where a sub-mesh can be used as argument
3740   static TStringSet methods;
3741   if ( methods.empty() ) {
3742     const char * names[] = {
3743       // methods of SMESH_Gen
3744       "CopyMesh",
3745       // methods of SMESH_Group
3746       "AddFrom",
3747       // methods of SMESH_Measurements
3748       "MinDistance",
3749       // methods of SMESH_Mesh
3750       "ExportPartToMED","ExportCGNS","ExportPartToDAT","ExportPartToUNV","ExportPartToSTL",
3751       "RemoveSubMesh",
3752       // methods of SMESH_MeshEditor
3753       "ReorientObject","Reorient2D","TriToQuadObject","QuadToTriObject","SplitQuadObject",
3754       "SplitVolumesIntoTetra","SmoothObject","SmoothParametricObject","ConvertFromQuadraticObject",
3755       "RotationSweepObject","RotationSweepObjectMakeGroups","RotationSweepObject1D",
3756       "RotationSweepObject1DMakeGroups","RotationSweepObject2D","RotationSweepObject2DMakeGroups",
3757       "ExtrusionSweepObject","ExtrusionSweepObjectMakeGroups","ExtrusionSweepObject0D",
3758       "ExtrusionSweepObject0DMakeGroups","ExtrusionSweepObject1D","ExtrusionSweepObject2D",
3759       "ExtrusionSweepObject1DMakeGroups","ExtrusionSweepObject2DMakeGroups",
3760       "ExtrusionAlongPathObjX","ExtrusionAlongPathObject","ExtrusionAlongPathObjectMakeGroups",
3761       "ExtrusionAlongPathObject1D","ExtrusionAlongPathObject1DMakeGroups",
3762       "ExtrusionAlongPathObject2D","ExtrusionAlongPathObject2DMakeGroups","MirrorObject",
3763       "MirrorObjectMakeGroups","MirrorObjectMakeMesh","TranslateObject","Scale",
3764       "TranslateObjectMakeGroups","TranslateObjectMakeMesh","ScaleMakeGroups","ScaleMakeMesh",
3765       "RotateObject","RotateObjectMakeGroups","RotateObjectMakeMesh","FindCoincidentNodesOnPart",
3766       "FindCoincidentNodesOnPartBut","FindEqualElements","FindAmongElementsByPoint",
3767       "MakeBoundaryMesh",
3768       "" }; // <- mark of end
3769     methods.Insert( names );
3770   }
3771   return methods.Contains( theMethodName );
3772 }
3773
3774 //================================================================================
3775 /*!
3776  * \brief count invoked commands
3777  */
3778 //================================================================================
3779
3780 void _pySubMesh::Process( const Handle(_pyCommand)& theCommand )
3781 {
3782   _pyObject::Process(theCommand); // count calls of Process()
3783   GetCreationCmd()->AddDependantCmd( theCommand );
3784 }
3785
3786 //================================================================================
3787 /*!
3788  * \brief Move creation command depending on invoked commands
3789  */
3790 //================================================================================
3791
3792 void _pySubMesh::Flush()
3793 {
3794   if ( GetNbCalls() == 0 ) // move to the end of all commands
3795     theGen->GetLastCommand()->AddDependantCmd( GetCreationCmd() );
3796   else if ( !myCreator.IsNull() )
3797     // move to be just after creator
3798     myCreator->GetCreationCmd()->AddDependantCmd( GetCreationCmd() );
3799 }
3800
3801 //================================================================================
3802 /*!
3803  * \brief Creates _pyGroup
3804  */
3805 //================================================================================
3806
3807 _pyGroup::_pyGroup(const Handle(_pyCommand)& theCreationCmd, const _pyID & id)
3808   :_pySubMesh(theCreationCmd)
3809 {
3810   if ( !id.IsEmpty() )
3811     setID( id );
3812
3813   myCanClearCreationCmd = true;
3814
3815   const _AString& method = theCreationCmd->GetMethod();
3816   if ( method == "CreateGroup" ) // CreateGroup() --> CreateEmptyGroup()
3817   {
3818     theCreationCmd->SetMethod( "CreateEmptyGroup" );
3819   }
3820   // ----------------------------------------------------------------------
3821   else if ( method == "CreateGroupFromGEOM" ) // (type, name, grp)
3822   {
3823     _pyID geom = theCreationCmd->GetArg( 3 );
3824     // VSR 24/12/2010. PAL21106: always use GroupOnGeom() function on dump
3825     // next if(){...} section is commented
3826     //if ( sameGroupType( geom, theCreationCmd->GetArg( 1 )) ) { // --> Group(geom)
3827     //  theCreationCmd->SetMethod( "Group" );
3828     //  theCreationCmd->RemoveArgs();
3829     //  theCreationCmd->SetArg( 1, geom );
3830     //}
3831     //else {
3832     // ------------------------->>>>> GroupOnGeom( geom, name, typ )
3833       _pyID type = theCreationCmd->GetArg( 1 );
3834       _pyID name = theCreationCmd->GetArg( 2 );
3835       theCreationCmd->SetMethod( "GroupOnGeom" );
3836       theCreationCmd->RemoveArgs();
3837       theCreationCmd->SetArg( 1, geom );
3838       theCreationCmd->SetArg( 2, name );
3839       theCreationCmd->SetArg( 3, type );
3840     //}
3841   }
3842   else if ( method == "CreateGroupFromFilter" )
3843   {
3844     // -> GroupOnFilter(typ, name, aFilter0x4743dc0 -> aFilter_1)
3845     theCreationCmd->SetMethod( "GroupOnFilter" );
3846
3847     _pyID filterID = theCreationCmd->GetArg(3);
3848     Handle(_pyFilter) filter = Handle(_pyFilter)::DownCast( theGen->FindObject( filterID ));
3849     if ( !filter.IsNull())
3850     {
3851       if ( !filter->GetNewID().IsEmpty() )
3852         theCreationCmd->SetArg( 3, filter->GetNewID() );
3853       filter->AddUser( this );
3854     }
3855     myFilter = filter;
3856   }
3857   else
3858   {
3859     // theCreationCmd does something else apart from creation of this group
3860     // and thus it can't be cleared if this group is removed
3861     myCanClearCreationCmd = false;
3862   }
3863 }
3864
3865 //================================================================================
3866 /*!
3867  * \brief To convert creation of a group by filter
3868  */
3869 //================================================================================
3870
3871 void _pyGroup::Process( const Handle(_pyCommand)& theCommand)
3872 {
3873   // Convert the following set of commands into mesh.MakeGroupByFilter(groupName, theFilter)
3874   // group = mesh.CreateEmptyGroup( elemType, groupName )
3875   // aFilter.SetMesh(mesh)
3876   // nbAdd = group.AddFrom( aFilter )
3877   Handle(_pyFilter) filter;
3878   if ( theCommand->GetMethod() == "AddFrom" )
3879   {
3880     _pyID idSource = theCommand->GetArg(1);
3881     // check if idSource is a filter
3882     filter = Handle(_pyFilter)::DownCast( theGen->FindObject( idSource ));
3883     if ( !filter.IsNull() )
3884     {
3885       // find aFilter.SetMesh(mesh) to clear it, it should be just before theCommand
3886       list< Handle(_pyCommand) >::reverse_iterator cmdIt = theGen->GetCommands().rbegin();
3887       while ( *cmdIt != theCommand ) ++cmdIt;
3888       while ( (*cmdIt)->GetOrderNb() != 1 )
3889       {
3890         const Handle(_pyCommand)& setMeshCmd = *(++cmdIt);
3891         if ((setMeshCmd->GetObject() == idSource ||
3892              setMeshCmd->GetObject() == filter->GetNewID() )
3893             &&
3894             setMeshCmd->GetMethod() == "SetMesh")
3895         {
3896           setMeshCmd->Clear();
3897           break;
3898         }
3899       }
3900       // replace 3 commands by one
3901       theCommand->Clear();
3902       const Handle(_pyCommand)& makeGroupCmd = GetCreationCmd();
3903       TCollection_AsciiString name = makeGroupCmd->GetArg( 2 );
3904       if ( !filter->GetNewID().IsEmpty() )
3905         idSource = filter->GetNewID();
3906       makeGroupCmd->SetMethod( "MakeGroupByFilter" );
3907       makeGroupCmd->SetArg( 1, name );
3908       makeGroupCmd->SetArg( 2, idSource );
3909     }
3910   }
3911   else if ( theCommand->GetMethod() == "SetFilter" )
3912   {
3913     // set new name of a filter or clear the command if the same filter is set
3914     _pyID filterID = theCommand->GetArg(1);
3915     filter = Handle(_pyFilter)::DownCast( theGen->FindObject( filterID ));
3916     if ( !myFilter.IsNull() && filter == myFilter )
3917       theCommand->Clear();
3918     else if ( !filter.IsNull() && !filter->GetNewID().IsEmpty() )
3919       theCommand->SetArg( 1, filter->GetNewID() );
3920     myFilter = filter;
3921   }
3922   else if ( theCommand->GetMethod() == "GetFilter" )
3923   {
3924     // GetFilter() returns a filter with other ID, make myFilter process
3925     // calls of the returned filter
3926     if ( !myFilter.IsNull() )
3927     {
3928       theGen->SetProxyObject( theCommand->GetResultValue(), myFilter );
3929       theCommand->Clear();
3930     }
3931   }
3932
3933   if ( !filter.IsNull() )
3934     filter->AddUser( this );
3935
3936   theGen->AddMeshAccessorMethod( theCommand );
3937 }
3938
3939 //================================================================================
3940 /*!
3941  * \brief Prevent clearing "DoubleNode...() command if a group created by it is removed
3942  * 
3943  * 
3944  */
3945 //================================================================================
3946
3947 void _pyGroup::Flush()
3948 {
3949   if ( !theGen->IsToKeepAllCommands() &&
3950        myCreationCmd && !myCanClearCreationCmd )
3951   {
3952     myCreationCmd.Nullify(); // this way myCreationCmd won't be cleared
3953   }
3954 }
3955
3956 //================================================================================
3957 /*!
3958  * \brief Constructor of _pyFilter
3959  */
3960 //================================================================================
3961
3962 _pyFilter::_pyFilter(const Handle(_pyCommand)& theCreationCmd, const _pyID& newID/*=""*/)
3963   :_pyObject(theCreationCmd), myNewID( newID )
3964 {
3965 }
3966
3967 //================================================================================
3968 /*!
3969  * \brief To convert creation of a filter by criteria and
3970  * to replace an old name by a new one
3971  */
3972 //================================================================================
3973
3974 void _pyFilter::Process( const Handle(_pyCommand)& theCommand)
3975 {
3976   if ( theCommand->GetObject() == GetID() )
3977     _pyObject::Process(theCommand); // count commands
3978
3979   if ( !myNewID.IsEmpty() )
3980     theCommand->SetObject( myNewID );
3981     
3982   // Convert the following set of commands into smesh.GetFilterFromCriteria(criteria)
3983   // aFilter0x2aaab0487080 = aFilterManager.CreateFilter()
3984   // aFilter0x2aaab0487080.SetCriteria(aCriteria)
3985   if ( GetNbCalls() == 1 && // none method was called before this SetCriteria() call
3986        theCommand->GetMethod() == "SetCriteria")
3987   {
3988     // aFilter.SetCriteria(aCriteria) ->
3989     // aFilter = smesh.GetFilterFromCriteria(criteria)
3990     if ( myNewID.IsEmpty() )
3991       theCommand->SetResultValue( GetID() );
3992     else
3993       theCommand->SetResultValue( myNewID );
3994     theCommand->SetObject( SMESH_2smeshpy::GenName() );
3995     theCommand->SetMethod( "GetFilterFromCriteria" );
3996
3997     // Clear aFilterManager.CreateFilter()
3998     GetCreationCmd()->Clear();
3999   }
4000   else if ( theCommand->GetMethod() == "SetMesh" )
4001   {
4002     if ( myMesh == theCommand->GetArg( 1 ))
4003       theCommand->Clear();
4004     else
4005       myMesh = theCommand->GetArg( 1 );
4006     theGen->AddMeshAccessorMethod( theCommand );
4007   }
4008 }
4009
4010 //================================================================================
4011 /*!
4012  * \brief Set new filter name to the creation command
4013  */
4014 //================================================================================
4015
4016 void _pyFilter::Flush()
4017 {
4018   if ( !myNewID.IsEmpty() && !GetCreationCmd()->IsEmpty() )
4019     GetCreationCmd()->SetResultValue( myNewID );
4020 }
4021
4022 //================================================================================
4023 /*!
4024  * \brief Return true if all my users can be cleared
4025  */
4026 //================================================================================
4027
4028 bool _pyFilter::CanClear()
4029 {
4030   list< Handle(_pyObject) >::iterator obj = myUsers.begin();
4031   for ( ; obj != myUsers.end(); ++obj )
4032     if ( !(*obj)->CanClear() )
4033       return false;
4034
4035   return true;
4036 }
4037
4038 //================================================================================
4039 /*!
4040  * \brief Reads _pyHypothesis'es from resource files of mesher Plugins
4041  */
4042 //================================================================================
4043
4044 _pyHypothesisReader::_pyHypothesisReader()
4045 {
4046   // Read xml files
4047   vector< string > xmlPaths = SMESH_Gen::GetPluginXMLPaths();
4048   LDOMParser xmlParser;
4049   for ( size_t i = 0; i < xmlPaths.size(); ++i )
4050   {
4051     bool error = xmlParser.parse( xmlPaths[i].c_str() );
4052     if ( error )
4053     {
4054       _AString data;
4055       INFOS( xmlParser.GetError(data) );
4056       continue;
4057     }
4058     // <algorithm type="Regular_1D"
4059     //            label-id="Wire discretisation"
4060     //            ...>
4061     //   <python-wrap>
4062     //     <algo>Regular_1D=Segment()</algo>
4063     //     <hypo>LocalLength=LocalLength(SetLength(1),,SetPrecision(1))</hypo>
4064     //
4065     LDOM_Document xmlDoc = xmlParser.getDocument();
4066     LDOM_NodeList algoNodeList = xmlDoc.getElementsByTagName( "algorithm" );
4067     for ( int i = 0; i < algoNodeList.getLength(); ++i )
4068     {
4069       LDOM_Node     algoNode = algoNodeList.item( i );
4070       LDOM_Element& algoElem = (LDOM_Element&) algoNode;
4071       LDOM_NodeList pyAlgoNodeList = algoElem.getElementsByTagName( "algo" );
4072       if ( pyAlgoNodeList.getLength() < 1 ) continue;
4073
4074       _AString text, algoType, method, arg;
4075       for ( int iA = 0; iA < pyAlgoNodeList.getLength(); ++iA )
4076       {
4077         LDOM_Node pyAlgoNode = pyAlgoNodeList.item( iA );
4078         LDOM_Node textNode   = pyAlgoNode.getFirstChild();
4079         text = textNode.getNodeValue();
4080         Handle(_pyCommand) algoCmd = new _pyCommand( text );
4081         algoType = algoCmd->GetResultValue();
4082         method   = algoCmd->GetMethod();
4083         arg      = algoCmd->GetArg(1);
4084         if ( !algoType.IsEmpty() && !method.IsEmpty() )
4085         {
4086           Handle(_pyAlgorithm) algo = new _pyAlgorithm( algoCmd );
4087           algo->SetConvMethodAndType( method, algoType );
4088           if ( !arg.IsEmpty() )
4089             algo->setCreationArg( 1, arg );
4090
4091           myType2Hyp[ algoType ] = algo;
4092           break;
4093         }
4094       }
4095       if ( algoType.IsEmpty() ) continue;
4096
4097       LDOM_NodeList pyHypoNodeList = algoElem.getElementsByTagName( "hypo" );
4098       _AString hypType;
4099       Handle( _pyHypothesis ) hyp;
4100       for ( int iH = 0; iH < pyHypoNodeList.getLength(); ++iH )
4101       {
4102         LDOM_Node pyHypoNode = pyHypoNodeList.item( iH );
4103         LDOM_Node textNode   = pyHypoNode.getFirstChild();
4104         text = textNode.getNodeValue();
4105         Handle(_pyCommand) hypoCmd = new _pyCommand( text );
4106         hypType = hypoCmd->GetResultValue();
4107         method  = hypoCmd->GetMethod();
4108         if ( !hypType.IsEmpty() && !method.IsEmpty() )
4109         {
4110           map<_AString, Handle(_pyHypothesis)>::iterator type2hyp = myType2Hyp.find( hypType );
4111           if ( type2hyp == myType2Hyp.end() )
4112             hyp = new _pyHypothesis( hypoCmd );
4113           else
4114             hyp = type2hyp->second;
4115           hyp->SetConvMethodAndType( method, algoType );
4116           for ( int iArg = 1; iArg <= hypoCmd->GetNbArgs(); ++iArg )
4117           {
4118             _pyCommand argCmd( hypoCmd->GetArg( iArg ));
4119             _AString argMethod = argCmd.GetMethod();
4120             _AString argNbText = argCmd.GetArg( 1 );
4121             if ( argMethod.IsEmpty() && !argCmd.IsEmpty() )
4122               hyp->setCreationArg( 1, argCmd.GetString() ); // e.g. Parameters(smesh.SIMPLE)
4123             else
4124               hyp->AddArgMethod( argMethod,
4125                                  argNbText.IsIntegerValue() ? argNbText.IntegerValue() : 1 );
4126           }
4127           myType2Hyp[ hypType ] = hyp;
4128         }
4129       }
4130     }
4131     // <hypothesis type="BLSURF_Parameters"
4132     //          ...
4133     //          dim="2">
4134     //   <python-wrap>
4135     //     <accumulative-methods> 
4136     //       SetEnforcedVertex,
4137     //       SetEnforcedVertexNamed
4138     //     </accumulative-methods>
4139     //   </python-wrap>
4140     // </hypothesis>
4141     //
4142     LDOM_NodeList hypNodeList = xmlDoc.getElementsByTagName( "hypothesis" );
4143     for ( int i = 0; i < hypNodeList.getLength(); ++i )
4144     {
4145       LDOM_Node     hypNode      = hypNodeList.item( i );
4146       LDOM_Element& hypElem      = (LDOM_Element&) hypNode;
4147       _AString      hypType      = hypElem.getAttribute("type");
4148       LDOM_NodeList methNodeList = hypElem.getElementsByTagName( "accumulative-methods" );
4149       if ( methNodeList.getLength() != 1 || hypType.IsEmpty() ) continue;
4150
4151       map<_AString, Handle(_pyHypothesis)>::const_iterator type2hyp = myType2Hyp.find( hypType );
4152       if ( type2hyp == myType2Hyp.end() ) continue;
4153
4154       LDOM_Node methNode = methNodeList.item( 0 );
4155       LDOM_Node textNode = methNode.getFirstChild();
4156       _AString      text = textNode.getNodeValue();
4157       _AString method;
4158       int pos = 1;
4159       do {
4160         method = _pyCommand::GetWord( text, pos, /*forward= */true );
4161         pos += method.Length();
4162         type2hyp->second->AddAccumulativeMethod( method );
4163       }
4164       while ( !method.IsEmpty() );
4165     }
4166
4167   } // loop on xmlPaths
4168 }
4169
4170 //================================================================================
4171 /*!
4172  * \brief Returns a new hypothesis initialized according to the read information
4173  */
4174 //================================================================================
4175
4176 Handle(_pyHypothesis)
4177 _pyHypothesisReader::GetHypothesis(const _AString&           hypType,
4178                                    const Handle(_pyCommand)& creationCmd) const
4179 {
4180   Handle(_pyHypothesis) resHyp, sampleHyp;
4181
4182   map<_AString, Handle(_pyHypothesis)>::const_iterator type2hyp = myType2Hyp.find( hypType );
4183   if ( type2hyp != myType2Hyp.end() )
4184     sampleHyp = type2hyp->second;
4185
4186   if ( sampleHyp.IsNull() )
4187   {
4188     resHyp = new _pyHypothesis(creationCmd);
4189   }
4190   else
4191   {
4192     if ( sampleHyp->IsAlgo() )
4193       resHyp = new _pyAlgorithm( creationCmd );
4194     else
4195       resHyp = new _pyHypothesis(creationCmd);
4196     resHyp->Assign( sampleHyp, _pyID() );
4197   }
4198   return resHyp;
4199 }