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