1 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
24 // File : SMESH_2smeshpy.cxx
25 // Created : Fri Nov 18 13:20:10 2005
26 // Author : Edward AGAPOV (eap)
28 #include "SMESH_2smeshpy.hxx"
30 #include "utilities.h"
31 #include "SMESH_PythonDump.hxx"
32 #include "SMESH_NoteBook.hxx"
33 #include "SMESH_Filter_i.hxx"
35 #include <Resource_DataMapOfAsciiStringAsciiString.hxx>
36 #include <Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString.hxx>
38 #include "SMESH_Gen_i.hxx"
39 /* SALOME headers that include CORBA headers that include windows.h
40 * that defines GetObject symbol as GetObjectA should stand before SALOME headers
41 * that declare methods named GetObject - to apply the same rules of GetObject renaming
42 * and thus to avoid mess with GetObject symbol on Windows */
44 #include <LDOMParser.hxx>
53 IMPLEMENT_STANDARD_HANDLE (_pyObject ,Standard_Transient);
54 IMPLEMENT_STANDARD_HANDLE (_pyCommand ,Standard_Transient);
55 IMPLEMENT_STANDARD_HANDLE (_pyHypothesisReader,Standard_Transient);
56 IMPLEMENT_STANDARD_HANDLE (_pyGen ,_pyObject);
57 IMPLEMENT_STANDARD_HANDLE (_pyMesh ,_pyObject);
58 IMPLEMENT_STANDARD_HANDLE (_pySubMesh ,_pyObject);
59 IMPLEMENT_STANDARD_HANDLE (_pyMeshEditor ,_pyObject);
60 IMPLEMENT_STANDARD_HANDLE (_pyHypothesis ,_pyObject);
61 IMPLEMENT_STANDARD_HANDLE (_pySelfEraser ,_pyObject);
62 IMPLEMENT_STANDARD_HANDLE (_pyGroup ,_pyObject);
63 IMPLEMENT_STANDARD_HANDLE (_pyFilter ,_pyObject);
64 IMPLEMENT_STANDARD_HANDLE (_pyAlgorithm ,_pyHypothesis);
65 IMPLEMENT_STANDARD_HANDLE (_pyComplexParamHypo,_pyHypothesis);
66 IMPLEMENT_STANDARD_HANDLE (_pyNumberOfSegmentsHyp,_pyHypothesis);
68 IMPLEMENT_STANDARD_RTTIEXT(_pyObject ,Standard_Transient);
69 IMPLEMENT_STANDARD_RTTIEXT(_pyCommand ,Standard_Transient);
70 IMPLEMENT_STANDARD_RTTIEXT(_pyHypothesisReader,Standard_Transient);
71 IMPLEMENT_STANDARD_RTTIEXT(_pyGen ,_pyObject);
72 IMPLEMENT_STANDARD_RTTIEXT(_pyMesh ,_pyObject);
73 IMPLEMENT_STANDARD_RTTIEXT(_pySubMesh ,_pyObject);
74 IMPLEMENT_STANDARD_RTTIEXT(_pyMeshEditor ,_pyObject);
75 IMPLEMENT_STANDARD_RTTIEXT(_pyHypothesis ,_pyObject);
76 IMPLEMENT_STANDARD_RTTIEXT(_pySelfEraser ,_pyObject);
77 IMPLEMENT_STANDARD_RTTIEXT(_pyGroup ,_pyObject);
78 IMPLEMENT_STANDARD_RTTIEXT(_pyFilter ,_pyObject);
79 IMPLEMENT_STANDARD_RTTIEXT(_pyAlgorithm ,_pyHypothesis);
80 IMPLEMENT_STANDARD_RTTIEXT(_pyComplexParamHypo,_pyHypothesis);
81 IMPLEMENT_STANDARD_RTTIEXT(_pyNumberOfSegmentsHyp,_pyHypothesis);
82 IMPLEMENT_STANDARD_RTTIEXT(_pyLayerDistributionHypo,_pyHypothesis);
83 IMPLEMENT_STANDARD_RTTIEXT(_pySegmentLengthAroundVertexHyp,_pyHypothesis);
86 using SMESH::TPythonDump;
89 * \brief Container of commands into which the initial script is split.
90 * It also contains data coresponding to SMESH_Gen contents
92 static Handle(_pyGen) theGen;
94 static TCollection_AsciiString theEmptyString;
96 //#define DUMP_CONVERSION
98 #if !defined(_DEBUG_) && defined(DUMP_CONVERSION)
99 #undef DUMP_CONVERSION
105 //================================================================================
107 * \brief Set of TCollection_AsciiString initialized by C array of C strings
109 //================================================================================
111 struct TStringSet: public set<TCollection_AsciiString>
114 * \brief Filling. The last string must be ""
116 void Insert(const char* names[]) {
117 for ( int i = 0; names[i][0] ; ++i )
118 insert( (char*) names[i] );
121 * \brief Check if a string is in
123 bool Contains(const TCollection_AsciiString& name ) {
124 return find( name ) != end();
128 //================================================================================
130 * \brief Returns a mesh by object
132 //================================================================================
134 Handle(_pyMesh) ObjectToMesh( const Handle( _pyObject )& obj )
138 if ( obj->IsKind( STANDARD_TYPE( _pyMesh )))
139 return Handle(_pyMesh)::DownCast( obj );
140 else if ( obj->IsKind( STANDARD_TYPE( _pySubMesh )))
141 return Handle(_pySubMesh)::DownCast( obj )->GetMesh();
142 else if ( obj->IsKind( STANDARD_TYPE( _pyGroup )))
143 return Handle(_pyGroup)::DownCast( obj )->GetMesh();
145 return Handle(_pyMesh)();
148 //================================================================================
150 * \brief Check if objects used as args have been created by previous commands
152 //================================================================================
154 void CheckObjectPresence( const Handle(_pyCommand)& cmd, set<_pyID> & presentObjects)
156 for ( int iArg = cmd->GetNbArgs(); iArg; --iArg )
158 const _pyID& arg = cmd->GetArg( iArg );
159 if ( arg.IsEmpty() || arg.Value( 1 ) == '"' || arg.Value( 1 ) == '\'' )
161 list< _pyID > idList = cmd->GetStudyEntries( arg );
162 list< _pyID >::iterator id = idList.begin();
163 for ( ; id != idList.end(); ++id )
164 if ( !theGen->IsGeomObject( *id ) && !presentObjects.count( *id ))
167 cmd->GetString() += " ### " ;
168 cmd->GetString() += *id + " has not been yet created";
172 const _pyID& obj = cmd->GetObject();
173 if ( !obj.IsEmpty() && cmd->IsStudyEntry( obj ) && !presentObjects.count( obj ))
176 cmd->GetString() += " ### not created object" ;
178 const _pyID& result = cmd->GetResultValue();
179 if ( result.IsEmpty() || result.Value( 1 ) == '"' || result.Value( 1 ) == '\'' )
181 list< _pyID > idList = cmd->GetStudyEntries( result );
182 list< _pyID >::iterator id = idList.begin();
183 for ( ; id != idList.end(); ++id )
184 presentObjects.insert( *id );
187 //================================================================================
189 * \brief Fix SMESH::FunctorType arguments of SMESH::Filter::Criterion()
191 //================================================================================
193 void fixFunctorType( TCollection_AsciiString& Type,
194 TCollection_AsciiString& Compare,
195 TCollection_AsciiString& UnaryOp,
196 TCollection_AsciiString& BinaryOp )
198 // The problem is that dumps of old studies created using filters becomes invalid
199 // when new items are inserted in the enum SMESH::FunctorType since values
200 // of this enum are dumped as integer values.
201 // This function corrects enum values of old studies given as args (Type,Compare,...)
202 // We can find out how to correct them by value of BinaryOp which can have only two
203 // values: FT_Undefined or FT_LogicalNOT.
204 // Hereafter is the history of the enum SMESH::FunctorType since v3.0.0
205 // where PythonDump appeared
206 // v 3.0.0: FT_Undefined == 25
207 // v 3.1.0: FT_Undefined == 26, new items:
209 // v 4.1.2: FT_Undefined == 27, new items:
210 // - FT_BelongToGenSurface = 17
211 // v 5.1.1: FT_Undefined == 32, new items:
212 // - FT_FreeNodes = 10
213 // - FT_FreeFaces = 11
214 // - FT_LinearOrQuadratic = 23
215 // - FT_GroupColor = 24
216 // - FT_ElemGeomType = 25
217 // v 5.1.5: FT_Undefined == 33, new items:
218 // - FT_CoplanarFaces = 26
219 // v 6.2.0: FT_Undefined == 39, new items:
220 // - FT_MaxElementLength2D = 8
221 // - FT_MaxElementLength3D = 9
222 // - FT_BareBorderVolume = 25
223 // - FT_BareBorderFace = 26
224 // - FT_OverConstrainedVolume = 27
225 // - FT_OverConstrainedFace = 28
226 // v 6.5.0: FT_Undefined == 43, new items:
227 // - FT_EqualNodes = 14
228 // - FT_EqualEdges = 15
229 // - FT_EqualFaces = 16
230 // - FT_EqualVolumes = 17
232 typedef map< int, vector< int > > TUndef2newItems;
233 static TUndef2newItems undef2newItems;
234 if ( undef2newItems.empty() )
236 undef2newItems[ 26 ].push_back( 7 );
237 undef2newItems[ 27 ].push_back( 17 );
238 { int items[] = { 10, 11, 23, 24, 25 };
239 undef2newItems[ 32 ].assign( items, items+5 ); }
240 undef2newItems[ 33 ].push_back( 26 );
241 { int items[] = { 8, 9, 25, 26, 27, 28 };
242 undef2newItems[ 39 ].assign( items, items+6 ); }
243 { int items[] = { 14, 15, 16, 17 };
244 undef2newItems[ 43 ].assign( items, items+4 ); }
247 int iType = Type.IntegerValue();
248 int iCompare = Compare.IntegerValue();
249 int iUnaryOp = UnaryOp.IntegerValue();
250 int iBinaryOp = BinaryOp.IntegerValue();
252 // find out integer value of FT_Undefined at the moment of dump
253 int oldUndefined = iBinaryOp;
254 if ( iBinaryOp < iUnaryOp ) // BinaryOp was FT_LogicalNOT
257 // apply history to args
258 TUndef2newItems::const_iterator undef_items =
259 undef2newItems.upper_bound( oldUndefined );
260 if ( undef_items != undef2newItems.end() )
262 int* pArg[4] = { &iType, &iCompare, &iUnaryOp, &iBinaryOp };
263 for ( ; undef_items != undef2newItems.end(); ++undef_items )
265 const vector< int > & addedItems = undef_items->second;
266 for ( size_t i = 0; i < addedItems.size(); ++i )
267 for ( int iArg = 0; iArg < 4; ++iArg )
269 int& arg = *pArg[iArg];
270 if ( arg >= addedItems[i] )
274 Type = TCollection_AsciiString( iType );
275 Compare = TCollection_AsciiString( iCompare );
276 UnaryOp = TCollection_AsciiString( iUnaryOp );
277 BinaryOp = TCollection_AsciiString( iBinaryOp );
282 //================================================================================
284 * \brief Convert python script using commands of smesh.py
285 * \param theScript - Input script
286 * \retval TCollection_AsciiString - Convertion result
287 * \param theToKeepAllCommands - to keep all commands or
288 * to exclude commands relating to objects removed from study
290 * Class SMESH_2smeshpy declared in SMESH_PythonDump.hxx
292 //================================================================================
294 TCollection_AsciiString
295 SMESH_2smeshpy::ConvertScript(const TCollection_AsciiString& theScript,
296 Resource_DataMapOfAsciiStringAsciiString& theEntry2AccessorMethod,
297 Resource_DataMapOfAsciiStringAsciiString& theObjectNames,
298 SALOMEDS::Study_ptr& theStudy,
299 const bool theToKeepAllCommands)
301 theGen = new _pyGen( theEntry2AccessorMethod, theObjectNames, theStudy, theToKeepAllCommands );
303 // split theScript into separate commands
305 SMESH_NoteBook * aNoteBook = new SMESH_NoteBook();
307 int from = 1, end = theScript.Length(), to;
308 while ( from < end && ( to = theScript.Location( "\n", from, end )))
311 // cut out and store a command
312 aNoteBook->AddCommand( theScript.SubString( from, to - 1 ));
316 aNoteBook->ReplaceVariables();
318 TCollection_AsciiString aNoteScript = aNoteBook->GetResultScript();
322 // split theScript into separate commands
323 from = 1, end = aNoteScript.Length();
324 while ( from < end && ( to = aNoteScript.Location( "\n", from, end )))
327 // cut out and store a command
328 theGen->AddCommand( aNoteScript.SubString( from, to - 1 ));
334 #ifdef DUMP_CONVERSION
335 MESSAGE_BEGIN ( std::endl << " ######## RESULT ######## " << std::endl<< std::endl );
338 // clean commmands of removed objects depending on myIsPublished flag
339 theGen->ClearCommands();
341 // reorder commands after conversion
342 list< Handle(_pyCommand) >::iterator cmd;
345 orderChanges = false;
346 for ( cmd = theGen->GetCommands().begin(); cmd != theGen->GetCommands().end(); ++cmd )
347 if ( (*cmd)->SetDependentCmdsAfter() )
349 } while ( orderChanges );
351 // concat commands back into a script
352 TCollection_AsciiString aScript, aPrevCmd;
353 set<_pyID> createdObjects;
354 for ( cmd = theGen->GetCommands().begin(); cmd != theGen->GetCommands().end(); ++cmd )
356 #ifdef DUMP_CONVERSION
357 MESSAGE_ADD ( "## COM " << (*cmd)->GetOrderNb() << ": "<< (*cmd)->GetString() << std::endl );
359 if ( !(*cmd)->IsEmpty() && aPrevCmd != (*cmd)->GetString()) {
360 CheckObjectPresence( *cmd, createdObjects );
361 aPrevCmd = (*cmd)->GetString();
374 //================================================================================
376 * \brief _pyGen constructor
378 //================================================================================
380 _pyGen::_pyGen(Resource_DataMapOfAsciiStringAsciiString& theEntry2AccessorMethod,
381 Resource_DataMapOfAsciiStringAsciiString& theObjectNames,
382 SALOMEDS::Study_ptr& theStudy,
383 const bool theToKeepAllCommands)
384 : _pyObject( new _pyCommand( "", 0 )),
386 myID2AccessorMethod( theEntry2AccessorMethod ),
387 myObjectNames( theObjectNames ),
389 myToKeepAllCommands( theToKeepAllCommands ),
390 myStudy( SALOMEDS::Study::_duplicate( theStudy )),
391 myGeomIDNb(0), myGeomIDIndex(-1)
393 // make that GetID() to return TPythonDump::SMESHGenName()
394 GetCreationCmd()->Clear();
395 GetCreationCmd()->GetString() = TPythonDump::SMESHGenName();
396 GetCreationCmd()->GetString() += "=";
398 // Find 1st digit of study entry by which a GEOM object differs from a SMESH object
399 if ( !theObjectNames.IsEmpty() && !CORBA::is_nil( theStudy ))
403 SALOMEDS::SComponent_var geomComp = theStudy->FindComponent("GEOM");
404 if ( geomComp->_is_nil() ) return;
405 CORBA::String_var entry = geomComp->GetID();
408 // find a SMESH entry
410 Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString e2n( theObjectNames );
411 for ( ; e2n.More() && smeshID.IsEmpty(); e2n.Next() )
412 if ( _pyCommand::IsStudyEntry( e2n.Key() ))
415 // find 1st difference between smeshID and geomID
416 if ( !geomID.IsEmpty() && !smeshID.IsEmpty() )
417 for ( int i = 1; i <= geomID.Length() && i <= smeshID.Length(); ++i )
418 if ( geomID.Value( i ) != smeshID.Value( i ))
420 myGeomIDNb = geomID.Value( i );
426 //================================================================================
428 * \brief name of SMESH_Gen in smesh.py
430 //================================================================================
432 const char* _pyGen::AccessorMethod() const
434 return SMESH_2smeshpy::GenName();
437 //================================================================================
439 * \brief Convert a command using a specific converter
440 * \param theCommand - the command to convert
442 //================================================================================
444 Handle(_pyCommand) _pyGen::AddCommand( const TCollection_AsciiString& theCommand)
446 // store theCommand in the sequence
447 myCommands.push_back( new _pyCommand( theCommand, ++myNbCommands ));
449 Handle(_pyCommand) aCommand = myCommands.back();
450 #ifdef DUMP_CONVERSION
451 MESSAGE ( "## COM " << myNbCommands << ": "<< aCommand->GetString() );
454 const _pyID& objID = aCommand->GetObject();
456 if ( objID.IsEmpty() )
459 // Find an object to process theCommand
462 if ( objID == this->GetID() || objID == SMESH_2smeshpy::GenName())
464 this->Process( aCommand );
468 // SMESH_Mesh method?
469 map< _pyID, Handle(_pyMesh) >::iterator id_mesh = myMeshes.find( objID );
470 if ( id_mesh != myMeshes.end() )
472 //id_mesh->second->AddProcessedCmd( aCommand );
474 // check for mesh editor object
475 if ( aCommand->GetMethod() == "GetMeshEditor" ) { // MeshEditor creation
476 _pyID editorID = aCommand->GetResultValue();
477 Handle(_pyMeshEditor) editor = new _pyMeshEditor( aCommand );
478 myMeshEditors.insert( make_pair( editorID, editor ));
481 // check for SubMesh objects
482 else if ( aCommand->GetMethod() == "GetSubMesh" ) { // SubMesh creation
483 _pyID subMeshID = aCommand->GetResultValue();
484 Handle(_pySubMesh) subMesh = new _pySubMesh( aCommand );
485 myObjects.insert( make_pair( subMeshID, subMesh ));
488 id_mesh->second->Process( aCommand );
489 id_mesh->second->AddProcessedCmd( aCommand );
493 // SMESH_MeshEditor method?
494 map< _pyID, Handle(_pyMeshEditor) >::iterator id_editor = myMeshEditors.find( objID );
495 if ( id_editor != myMeshEditors.end() )
497 const TCollection_AsciiString& method = aCommand->GetMethod();
499 // some commands of SMESH_MeshEditor create meshes and groups
500 _pyID meshID, groups;
501 if ( method.Search("MakeMesh") != -1 )
502 meshID = aCommand->GetResultValue();
503 else if ( method == "MakeBoundaryMesh")
504 meshID = aCommand->GetResultValue(1);
505 else if ( method == "MakeBoundaryElements")
506 meshID = aCommand->GetResultValue(2);
508 if ( method.Search("MakeGroups") != -1 ||
509 method == "ExtrusionAlongPathX" ||
510 method == "ExtrusionAlongPathObjX" ||
511 method == "DoubleNodeGroupNew" ||
512 method == "DoubleNodeGroupsNew" ||
513 method == "DoubleNodeElemGroupNew" ||
514 method == "DoubleNodeElemGroupsNew" )
515 groups = aCommand->GetResultValue();
516 else if ( method == "MakeBoundaryMesh" )
517 groups = aCommand->GetResultValue(2);
518 else if ( method == "MakeBoundaryElements")
519 groups = aCommand->GetResultValue(3);
521 id_editor->second->Process( aCommand );
522 id_editor->second->AddProcessedCmd( aCommand );
524 if ( !meshID.IsEmpty() &&
525 !myMeshes.count( meshID ) &&
526 aCommand->IsStudyEntry( meshID ))
528 TCollection_AsciiString processedCommand = aCommand->GetString();
529 Handle(_pyMesh) mesh = new _pyMesh( aCommand, meshID );
530 myMeshes.insert( make_pair( meshID, mesh ));
532 aCommand->GetString() = processedCommand; // discard changes made by _pyMesh
534 if ( !groups.IsEmpty() )
536 if ( !aCommand->IsStudyEntry( meshID ))
537 meshID = id_editor->second->GetMesh();
538 Handle(_pyMesh) mesh = myMeshes[ meshID ];
540 list< _pyID > idList = aCommand->GetStudyEntries( groups );
541 list< _pyID >::iterator grID = idList.begin();
542 for ( ; grID != idList.end(); ++grID )
543 if ( !myObjects.count( *grID ))
545 Handle(_pyGroup) group = new _pyGroup( aCommand, *grID );
547 if ( !mesh.IsNull() ) mesh->AddGroup( group );
551 } // SMESH_MeshEditor methods
553 // SMESH_Hypothesis method?
554 list< Handle(_pyHypothesis) >::iterator hyp = myHypos.begin();
555 for ( ; hyp != myHypos.end(); ++hyp )
556 if ( !(*hyp)->IsAlgo() && objID == (*hyp)->GetID() ) {
557 (*hyp)->Process( aCommand );
558 (*hyp)->AddProcessedCmd( aCommand );
562 // aFilterManager.CreateFilter() ?
563 if ( aCommand->GetMethod() == "CreateFilter" )
565 // Set a more human readable name to a filter
566 // aFilter0x7fbf6c71cfb0 -> aFilter_nb
567 _pyID newID, filterID = aCommand->GetResultValue();
568 int pos = filterID.Search( "0x" );
570 newID = (filterID.SubString(1,pos-1) + "_") + _pyID( ++myNbFilters );
572 Handle(_pyObject) filter( new _pyFilter( aCommand, newID ));
576 // other object method?
577 map< _pyID, Handle(_pyObject) >::iterator id_obj = myObjects.find( objID );
578 if ( id_obj != myObjects.end() ) {
579 id_obj->second->Process( aCommand );
580 id_obj->second->AddProcessedCmd( aCommand );
584 // Add access to a wrapped mesh
585 AddMeshAccessorMethod( aCommand );
587 // Add access to a wrapped algorithm
588 // AddAlgoAccessorMethod( aCommand ); // ??? what if algo won't be wrapped at all ???
590 // PAL12227. PythonDump was not updated at proper time; result is
591 // aCriteria.append(SMESH.Filter.Criterion(17,26,0,'L1',26,25,1e-07,SMESH.EDGE,-1))
592 // TypeError: __init__() takes exactly 11 arguments (10 given)
593 const char wrongCommand[] = "SMESH.Filter.Criterion(";
594 if ( int beg = theCommand.Location( wrongCommand, 1, theCommand.Length() ))
596 _pyCommand tmpCmd( theCommand.SubString( beg, theCommand.Length() ), -1);
597 // there must be 10 arguments, 5-th arg ThresholdID is missing,
598 const int wrongNbArgs = 9, missingArg = 5;
599 if ( tmpCmd.GetNbArgs() == wrongNbArgs )
601 for ( int i = wrongNbArgs; i > missingArg; --i )
602 tmpCmd.SetArg( i + 1, tmpCmd.GetArg( i ));
603 tmpCmd.SetArg( missingArg, "''");
604 aCommand->GetString().Trunc( beg - 1 );
605 aCommand->GetString() += tmpCmd.GetString();
608 // set GetCriterion(elementType,CritType,Compare,Treshold,UnaryOp,BinaryOp,Tolerance)
610 // instead of "SMESH.Filter.Criterion(
611 // Type,Compare,Threshold,ThresholdStr,ThresholdID,UnaryOp,BinaryOp,Tolerance,TypeOfElement,Precision)
612 // 1 2 3 4 5 6 7 8 9 10
613 // in order to avoid the problem of type mismatch of long and FunctorType
614 const TCollection_AsciiString
615 SMESH("SMESH."), dfltFunctor = "SMESH.FT_Undefined", dftlTol = "1e-07", dftlPreci = "-1";
616 TCollection_AsciiString
617 Type = aCommand->GetArg(1), // long
618 Compare = aCommand->GetArg(2), // long
619 Threshold = aCommand->GetArg(3), // double
620 ThresholdStr = aCommand->GetArg(4), // string
621 ThresholdID = aCommand->GetArg(5), // string
622 UnaryOp = aCommand->GetArg(6), // long
623 BinaryOp = aCommand->GetArg(7), // long
624 Tolerance = aCommand->GetArg(8), // double
625 TypeOfElement = aCommand->GetArg(9), // ElementType
626 Precision = aCommand->GetArg(10); // long
627 fixFunctorType( Type, Compare, UnaryOp, BinaryOp );
628 Type = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( Type.IntegerValue() ));
629 Compare = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( Compare.IntegerValue() ));
630 UnaryOp = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( UnaryOp.IntegerValue() ));
631 BinaryOp = SMESH + SMESH::FunctorTypeToString( SMESH::FunctorType( BinaryOp.IntegerValue() ));
633 aCommand->RemoveArgs();
634 aCommand->SetObject( SMESH_2smeshpy::GenName() );
635 aCommand->SetMethod( "GetCriterion" );
637 aCommand->SetArg( 1, TypeOfElement );
638 aCommand->SetArg( 2, Type );
639 aCommand->SetArg( 3, Compare );
641 if ( Type == "SMESH.FT_ElemGeomType" && Threshold.IsIntegerValue() )
643 // set SMESH.GeometryType instead of a numerical Threshold
644 const char* types[SMESH::Geom_POLYHEDRA+1] = {
645 "Geom_POINT", "Geom_EDGE", "Geom_TRIANGLE", "Geom_QUADRANGLE", "Geom_POLYGON",
646 "Geom_TETRA", "Geom_PYRAMID", "Geom_HEXA", "Geom_PENTA", "Geom_HEXAGONAL_PRISM",
649 int iGeom = Threshold.IntegerValue();
650 if ( -1 < iGeom && iGeom < SMESH::Geom_POLYHEDRA+1 )
651 Threshold = SMESH + types[ iGeom ];
653 if ( ThresholdID.Length() != 2 && ThresholdStr.Length() != 2) // not '' or ""
654 aCommand->SetArg( 4, ThresholdID.SubString( 2, ThresholdID.Length()-1 )); // shape entry
655 else if ( ThresholdStr.Length() != 2 )
656 aCommand->SetArg( 4, ThresholdStr );
657 else if ( ThresholdID.Length() != 2 )
658 aCommand->SetArg( 4, ThresholdID );
660 aCommand->SetArg( 4, Threshold );
661 // find the last not default arg
663 if ( Tolerance == dftlTol ) {
665 if ( BinaryOp == dfltFunctor ) {
667 if ( UnaryOp == dfltFunctor )
671 if ( 5 < lastDefault ) aCommand->SetArg( 5, UnaryOp );
672 if ( 6 < lastDefault ) aCommand->SetArg( 6, BinaryOp );
673 if ( 7 < lastDefault ) aCommand->SetArg( 7, Tolerance );
674 if ( Precision != dftlPreci )
676 TCollection_AsciiString crit = aCommand->GetResultValue();
677 aCommand->GetString() += "; ";
678 aCommand->GetString() += crit + ".Precision = " + Precision;
684 //================================================================================
686 * \brief Convert the command or remember it for later conversion
687 * \param theCommand - The python command calling a method of SMESH_Gen
689 //================================================================================
691 void _pyGen::Process( const Handle(_pyCommand)& theCommand )
693 // there are methods to convert:
694 // CreateMesh( shape )
695 // Concatenate( [mesh1, ...], ... )
696 // CreateHypothesis( theHypType, theLibName )
697 // Compute( mesh, geom )
698 // Evaluate( mesh, geom )
700 TCollection_AsciiString method = theCommand->GetMethod();
702 if ( method == "CreateMesh" || method == "CreateEmptyMesh")
704 Handle(_pyMesh) mesh = new _pyMesh( theCommand );
705 myMeshes.insert( make_pair( mesh->GetID(), mesh ));
708 if ( method == "CreateMeshesFromUNV" ||
709 method == "CreateMeshesFromSTL" ||
710 method == "CreateMeshesFromCGNS" ||
711 method == "CopyMesh" )
713 Handle(_pyMesh) mesh = new _pyMesh( theCommand, theCommand->GetResultValue() );
714 myMeshes.insert( make_pair( mesh->GetID(), mesh ));
717 if( method == "CreateMeshesFromMED" || method == "CreateMeshesFromSAUV")
719 for(int ind = 0;ind<theCommand->GetNbResultValues();ind++)
721 const _pyID& meshID = theCommand->GetResultValue(ind+1);
722 if ( !theCommand->IsStudyEntry( meshID ) ) continue;
723 Handle(_pyMesh) mesh = new _pyMesh( theCommand, theCommand->GetResultValue(ind+1));
724 myMeshes.insert( make_pair( mesh->GetID(), mesh ));
728 // CreateHypothesis()
729 if ( method == "CreateHypothesis" )
731 // issue 199929, remove standard library name (default parameter)
732 const TCollection_AsciiString & aLibName = theCommand->GetArg( 2 );
733 if ( aLibName.Search( "StdMeshersEngine" ) != -1 ) {
734 // keep first argument
735 TCollection_AsciiString arg = theCommand->GetArg( 1 );
736 theCommand->RemoveArgs();
737 theCommand->SetArg( 1, arg );
740 myHypos.push_back( _pyHypothesis::NewHypothesis( theCommand ));
744 // smeshgen.Compute( mesh, geom ) --> mesh.Compute()
745 if ( method == "Compute" )
747 const _pyID& meshID = theCommand->GetArg( 1 );
748 map< _pyID, Handle(_pyMesh) >::iterator id_mesh = myMeshes.find( meshID );
749 if ( id_mesh != myMeshes.end() ) {
750 theCommand->SetObject( meshID );
751 theCommand->RemoveArgs();
752 id_mesh->second->Process( theCommand );
753 id_mesh->second->AddProcessedCmd( theCommand );
758 // smeshgen.Evaluate( mesh, geom ) --> mesh.Evaluate(geom)
759 if ( method == "Evaluate" )
761 const _pyID& meshID = theCommand->GetArg( 1 );
762 map< _pyID, Handle(_pyMesh) >::iterator id_mesh = myMeshes.find( meshID );
763 if ( id_mesh != myMeshes.end() ) {
764 theCommand->SetObject( meshID );
765 _pyID geom = theCommand->GetArg( 2 );
766 theCommand->RemoveArgs();
767 theCommand->SetArg( 1, geom );
768 id_mesh->second->AddProcessedCmd( theCommand );
773 // objects erasing creation command if no more it's commands invoked:
774 // SMESH_Pattern, FilterManager
775 if ( method == "GetPattern" ||
776 method == "CreateFilterManager" ||
777 method == "CreateMeasurements" ) {
778 Handle(_pyObject) obj = new _pySelfEraser( theCommand );
779 if ( !myObjects.insert( make_pair( obj->GetID(), obj )).second )
780 theCommand->Clear(); // already created
782 // Concatenate( [mesh1, ...], ... )
783 else if ( method == "Concatenate" || method == "ConcatenateWithGroups")
785 if ( method == "ConcatenateWithGroups" ) {
786 theCommand->SetMethod( "Concatenate" );
787 theCommand->SetArg( theCommand->GetNbArgs() + 1, "True" );
789 Handle(_pyMesh) mesh = new _pyMesh( theCommand, theCommand->GetResultValue() );
790 myMeshes.insert( make_pair( mesh->GetID(), mesh ));
791 AddMeshAccessorMethod( theCommand );
793 else if ( method == "SetName" ) // SetName(obj,name)
795 // store theCommand as one of object commands to erase it along with the object
796 const _pyID& objID = theCommand->GetArg( 1 );
797 Handle(_pyObject) obj = FindObject( objID );
799 obj->AddProcessedCmd( theCommand );
802 // Replace name of SMESH_Gen
804 // names of SMESH_Gen methods fully equal to methods defined in smesh.py
805 static TStringSet smeshpyMethods;
806 if ( smeshpyMethods.empty() ) {
807 const char * names[] =
808 { "SetEmbeddedMode","IsEmbeddedMode","SetCurrentStudy","GetCurrentStudy",
809 "GetPattern","GetSubShapesId",
810 "" }; // <- mark of array end
811 smeshpyMethods.Insert( names );
813 if ( smeshpyMethods.Contains( theCommand->GetMethod() ))
814 // smeshgen.Method() --> smesh.Method()
815 theCommand->SetObject( SMESH_2smeshpy::SmeshpyName() );
817 // smeshgen.Method() --> smesh.smesh.Method()
818 theCommand->SetObject( SMESH_2smeshpy::GenName() );
821 //================================================================================
823 * \brief Convert the remembered commands
825 //================================================================================
829 // create an empty command
830 myLastCommand = new _pyCommand();
832 map< _pyID, Handle(_pyMesh) >::iterator id_mesh;
833 map< _pyID, Handle(_pyObject) >::iterator id_obj;
834 list< Handle(_pyHypothesis) >::iterator hyp;
836 if ( IsToKeepAllCommands() ) // historical dump
838 // set myIsPublished = true to all objects
839 for ( id_mesh = myMeshes.begin(); id_mesh != myMeshes.end(); ++id_mesh )
840 id_mesh->second->SetRemovedFromStudy( false );
841 for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
842 (*hyp)->SetRemovedFromStudy( false );
843 for ( id_obj = myObjects.begin(); id_obj != myObjects.end(); ++id_obj )
844 id_obj->second->SetRemovedFromStudy( false );
848 // let hypotheses find referred objects in order to prevent clearing
849 // not published referred hyps (it's needed for hyps like "LayerDistribution")
850 list< Handle(_pyMesh) > fatherMeshes;
851 for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
852 if ( !hyp->IsNull() )
853 (*hyp)->GetReferredMeshesAndGeom( fatherMeshes );
855 // set myIsPublished = false to all objects depending on
856 // meshes built on a removed geometry
857 for ( id_mesh = myMeshes.begin(); id_mesh != myMeshes.end(); ++id_mesh )
858 if ( id_mesh->second->IsNotGeomPublished() )
859 id_mesh->second->SetRemovedFromStudy( true );
862 for ( id_mesh = myMeshes.begin(); id_mesh != myMeshes.end(); ++id_mesh )
863 if ( ! id_mesh->second.IsNull() )
864 id_mesh->second->Flush();
867 for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
868 if ( !hyp->IsNull() ) {
870 // smeshgen.CreateHypothesis() --> smesh.smesh.CreateHypothesis()
871 if ( !(*hyp)->IsWrapped() )
872 (*hyp)->GetCreationCmd()->SetObject( SMESH_2smeshpy::GenName() );
875 // Flush other objects
876 for ( id_obj = myObjects.begin(); id_obj != myObjects.end(); ++id_obj )
877 if ( ! id_obj->second.IsNull() )
878 id_obj->second->Flush();
880 myLastCommand->SetOrderNb( ++myNbCommands );
881 myCommands.push_back( myLastCommand );
884 //================================================================================
886 * \brief Clean commmands of removed objects depending on myIsPublished flag
888 //================================================================================
890 void _pyGen::ClearCommands()
892 map< _pyID, Handle(_pyMesh) >::iterator id_mesh = myMeshes.begin();
893 for ( ; id_mesh != myMeshes.end(); ++id_mesh )
894 id_mesh->second->ClearCommands();
896 list< Handle(_pyHypothesis) >::iterator hyp = myHypos.begin();
897 for ( ; hyp != myHypos.end(); ++hyp )
898 if ( !hyp->IsNull() )
899 (*hyp)->ClearCommands();
901 map< _pyID, Handle(_pyObject) >::iterator id_obj = myObjects.begin();
902 for ( ; id_obj != myObjects.end(); ++id_obj )
903 id_obj->second->ClearCommands();
906 //================================================================================
908 * \brief Release mutual handles of objects
910 //================================================================================
914 map< _pyID, Handle(_pyMesh) >::iterator id_mesh = myMeshes.begin();
915 for ( ; id_mesh != myMeshes.end(); ++id_mesh )
916 id_mesh->second->Free();
919 map< _pyID, Handle(_pyMeshEditor) >::iterator id_ed = myMeshEditors.begin();
920 for ( ; id_ed != myMeshEditors.end(); ++id_ed )
921 id_ed->second->Free();
922 myMeshEditors.clear();
924 map< _pyID, Handle(_pyObject) >::iterator id_obj = myObjects.begin();
925 for ( ; id_obj != myObjects.end(); ++id_obj )
926 id_obj->second->Free();
929 list< Handle(_pyHypothesis) >::iterator hyp = myHypos.begin();
930 for ( ; hyp != myHypos.end(); ++hyp )
931 if ( !hyp->IsNull() )
935 myFile2ExportedMesh.clear();
938 //================================================================================
940 * \brief Add access method to mesh that is an argument
941 * \param theCmd - command to add access method
942 * \retval bool - true if added
944 //================================================================================
946 bool _pyGen::AddMeshAccessorMethod( Handle(_pyCommand) theCmd ) const
949 map< _pyID, Handle(_pyMesh) >::const_iterator id_mesh = myMeshes.begin();
950 for ( ; id_mesh != myMeshes.end(); ++id_mesh ) {
951 if ( theCmd->AddAccessorMethod( id_mesh->first, id_mesh->second->AccessorMethod() ))
957 //================================================================================
959 * \brief Add access method to algo that is an object or an argument
960 * \param theCmd - command to add access method
961 * \retval bool - true if added
963 //================================================================================
965 bool _pyGen::AddAlgoAccessorMethod( Handle(_pyCommand) theCmd ) const
968 list< Handle(_pyHypothesis) >::const_iterator hyp = myHypos.begin();
969 for ( ; hyp != myHypos.end(); ++hyp ) {
970 if ( (*hyp)->IsAlgo() && /*(*hyp)->IsWrapped() &&*/
971 theCmd->AddAccessorMethod( (*hyp)->GetID(), (*hyp)->AccessorMethod() ))
977 //================================================================================
979 * \brief Find hypothesis by ID (entry)
980 * \param theHypID - The hypothesis ID
981 * \retval Handle(_pyHypothesis) - The found hypothesis
983 //================================================================================
985 Handle(_pyHypothesis) _pyGen::FindHyp( const _pyID& theHypID )
987 list< Handle(_pyHypothesis) >::iterator hyp = myHypos.begin();
988 for ( ; hyp != myHypos.end(); ++hyp )
989 if ( !hyp->IsNull() && theHypID == (*hyp)->GetID() )
991 return Handle(_pyHypothesis)();
994 //================================================================================
996 * \brief Find algorithm the created algorithm
997 * \param theGeom - The shape ID the algorithm was created on
998 * \param theMesh - The mesh ID that created the algorithm
999 * \param dim - The algo dimension
1000 * \retval Handle(_pyHypothesis) - The found algo
1002 //================================================================================
1004 Handle(_pyHypothesis) _pyGen::FindAlgo( const _pyID& theGeom, const _pyID& theMesh,
1005 const Handle(_pyHypothesis)& theHypothesis )
1007 list< Handle(_pyHypothesis) >::iterator hyp = myHypos.begin();
1008 for ( ; hyp != myHypos.end(); ++hyp )
1009 if ( !hyp->IsNull() &&
1011 theHypothesis->CanBeCreatedBy( (*hyp)->GetAlgoType() ) &&
1012 (*hyp)->GetGeom() == theGeom &&
1013 (*hyp)->GetMesh() == theMesh )
1018 //================================================================================
1020 * \brief Find subMesh by ID (entry)
1021 * \param theSubMeshID - The subMesh ID
1022 * \retval Handle(_pySubMesh) - The found subMesh
1024 //================================================================================
1026 Handle(_pySubMesh) _pyGen::FindSubMesh( const _pyID& theSubMeshID )
1028 map< _pyID, Handle(_pyObject) >::iterator id_subMesh = myObjects.find(theSubMeshID);
1029 if ( id_subMesh != myObjects.end() )
1030 return Handle(_pySubMesh)::DownCast( id_subMesh->second );
1031 return Handle(_pySubMesh)();
1035 //================================================================================
1037 * \brief Change order of commands in the script
1038 * \param theCmd1 - One command
1039 * \param theCmd2 - Another command
1041 //================================================================================
1043 void _pyGen::ExchangeCommands( Handle(_pyCommand) theCmd1, Handle(_pyCommand) theCmd2 )
1045 list< Handle(_pyCommand) >::iterator pos1, pos2;
1046 pos1 = find( myCommands.begin(), myCommands.end(), theCmd1 );
1047 pos2 = find( myCommands.begin(), myCommands.end(), theCmd2 );
1048 myCommands.insert( pos1, theCmd2 );
1049 myCommands.insert( pos2, theCmd1 );
1050 myCommands.erase( pos1 );
1051 myCommands.erase( pos2 );
1053 int nb1 = theCmd1->GetOrderNb();
1054 theCmd1->SetOrderNb( theCmd2->GetOrderNb() );
1055 theCmd2->SetOrderNb( nb1 );
1056 // cout << "BECOME " << theCmd1->GetOrderNb() << "\t" << theCmd1->GetString() << endl
1057 // << "BECOME " << theCmd2->GetOrderNb() << "\t" << theCmd2->GetString() << endl << endl;
1060 //================================================================================
1062 * \brief Set one command after the other
1063 * \param theCmd - Command to move
1064 * \param theAfterCmd - Command ater which to insert the first one
1066 //================================================================================
1068 void _pyGen::SetCommandAfter( Handle(_pyCommand) theCmd, Handle(_pyCommand) theAfterCmd )
1070 setNeighbourCommand( theCmd, theAfterCmd, true );
1073 //================================================================================
1075 * \brief Set one command before the other
1076 * \param theCmd - Command to move
1077 * \param theBeforeCmd - Command before which to insert the first one
1079 //================================================================================
1081 void _pyGen::SetCommandBefore( Handle(_pyCommand) theCmd, Handle(_pyCommand) theBeforeCmd )
1083 setNeighbourCommand( theCmd, theBeforeCmd, false );
1086 //================================================================================
1088 * \brief Set one command before or after the other
1089 * \param theCmd - Command to move
1090 * \param theOtherCmd - Command ater or before which to insert the first one
1092 //================================================================================
1094 void _pyGen::setNeighbourCommand( Handle(_pyCommand)& theCmd,
1095 Handle(_pyCommand)& theOtherCmd,
1096 const bool theIsAfter )
1098 list< Handle(_pyCommand) >::iterator pos;
1099 pos = find( myCommands.begin(), myCommands.end(), theCmd );
1100 myCommands.erase( pos );
1101 pos = find( myCommands.begin(), myCommands.end(), theOtherCmd );
1102 myCommands.insert( (theIsAfter ? ++pos : pos), theCmd );
1105 for ( pos = myCommands.begin(); pos != myCommands.end(); ++pos)
1106 (*pos)->SetOrderNb( i++ );
1109 //================================================================================
1111 * \brief Set command be last in list of commands
1112 * \param theCmd - Command to be last
1114 //================================================================================
1116 Handle(_pyCommand)& _pyGen::GetLastCommand()
1118 return myLastCommand;
1121 //================================================================================
1123 * \brief Set method to access to object wrapped with python class
1124 * \param theID - The wrapped object entry
1125 * \param theMethod - The accessor method
1127 //================================================================================
1129 void _pyGen::SetAccessorMethod(const _pyID& theID, const char* theMethod )
1131 myID2AccessorMethod.Bind( theID, (char*) theMethod );
1134 //================================================================================
1136 * \brief Generated new ID for object and assign with existing name
1137 * \param theID - ID of existing object
1139 //================================================================================
1141 _pyID _pyGen::GenerateNewID( const _pyID& theID )
1146 aNewID = theID + _pyID( ":" ) + _pyID( index++ );
1148 while ( myObjectNames.IsBound( aNewID ) );
1150 myObjectNames.Bind( aNewID, myObjectNames.IsBound( theID )
1151 ? (myObjectNames.Find( theID ) + _pyID( "_" ) + _pyID( index-1 ))
1152 : _pyID( "A" ) + aNewID );
1156 //================================================================================
1158 * \brief Stores theObj in myObjects
1160 //================================================================================
1162 void _pyGen::AddObject( Handle(_pyObject)& theObj )
1164 if ( theObj.IsNull() ) return;
1166 if ( theObj->IsKind( STANDARD_TYPE( _pyMesh )))
1167 myMeshes.insert( make_pair( theObj->GetID(), Handle(_pyMesh)::DownCast( theObj )));
1169 else if ( theObj->IsKind( STANDARD_TYPE( _pyMeshEditor )))
1170 myMeshEditors.insert( make_pair( theObj->GetID(), Handle(_pyMeshEditor)::DownCast( theObj )));
1173 myObjects.insert( make_pair( theObj->GetID(), theObj ));
1176 //================================================================================
1178 * \brief Re-register an object with other ID to make it Process() commands of
1179 * other object having this ID
1181 //================================================================================
1183 void _pyGen::SetProxyObject( const _pyID& theID, Handle(_pyObject)& theObj )
1185 if ( theObj.IsNull() ) return;
1187 if ( theObj->IsKind( STANDARD_TYPE( _pyMesh )))
1188 myMeshes.insert( make_pair( theID, Handle(_pyMesh)::DownCast( theObj )));
1190 else if ( theObj->IsKind( STANDARD_TYPE( _pyMeshEditor )))
1191 myMeshEditors.insert( make_pair( theID, Handle(_pyMeshEditor)::DownCast( theObj )));
1194 myObjects.insert( make_pair( theID, theObj ));
1197 //================================================================================
1199 * \brief Finds a _pyObject by ID
1201 //================================================================================
1203 Handle(_pyObject) _pyGen::FindObject( const _pyID& theObjID ) const
1206 map< _pyID, Handle(_pyObject) >::const_iterator id_obj = myObjects.find( theObjID );
1207 if ( id_obj != myObjects.end() )
1208 return id_obj->second;
1211 map< _pyID, Handle(_pyMesh) >::const_iterator id_obj = myMeshes.find( theObjID );
1212 if ( id_obj != myMeshes.end() )
1213 return id_obj->second;
1216 // map< _pyID, Handle(_pyMeshEditor) >::const_iterator id_obj = myMeshEditors.find( theObjID );
1217 // if ( id_obj != myMeshEditors.end() )
1218 // return id_obj->second;
1220 return Handle(_pyObject)();
1223 //================================================================================
1225 * \brief Check if a study entry is under GEOM component
1227 //================================================================================
1229 bool _pyGen::IsGeomObject(const _pyID& theObjID) const
1233 return ( myGeomIDIndex <= theObjID.Length() &&
1234 int( theObjID.Value( myGeomIDIndex )) == myGeomIDNb);
1239 //================================================================================
1241 * \brief Returns true if an object is not present in a study
1243 //================================================================================
1245 bool _pyGen::IsNotPublished(const _pyID& theObjID) const
1247 if ( theObjID.IsEmpty() ) return false;
1249 if ( myObjectNames.IsBound( theObjID ))
1250 return false; // SMESH object is in study
1252 // either the SMESH object is not in study or it is a GEOM object
1253 if ( IsGeomObject( theObjID ))
1255 SALOMEDS::SObject_var so = myStudy->FindObjectID( theObjID.ToCString() );
1256 if ( so->_is_nil() ) return true;
1257 CORBA::Object_var obj = so->GetObject();
1258 return CORBA::is_nil( obj );
1260 return true; // SMESH object not in study
1263 //================================================================================
1265 * \brief Return reader of hypotheses of plugins
1267 //================================================================================
1269 Handle( _pyHypothesisReader ) _pyGen::GetHypothesisReader() const
1271 if (myHypReader.IsNull() )
1272 ((_pyGen*) this)->myHypReader = new _pyHypothesisReader;
1278 //================================================================================
1280 * \brief Mesh created by SMESH_Gen
1282 //================================================================================
1284 _pyMesh::_pyMesh(const Handle(_pyCommand) theCreationCmd)
1285 : _pyObject( theCreationCmd ), myGeomNotInStudy( false )
1287 if ( theCreationCmd->GetMethod() == "CreateMesh" && theGen->IsNotPublished( GetGeom() ))
1288 myGeomNotInStudy = true;
1290 // convert my creation command --> smeshpy.Mesh(...)
1291 Handle(_pyCommand) creationCmd = GetCreationCmd();
1292 creationCmd->SetObject( SMESH_2smeshpy::SmeshpyName() );
1293 creationCmd->SetMethod( "Mesh" );
1294 theGen->SetAccessorMethod( GetID(), _pyMesh::AccessorMethod() );
1297 //================================================================================
1299 * \brief Mesh created by SMESH_MeshEditor
1301 //================================================================================
1303 _pyMesh::_pyMesh(const Handle(_pyCommand) theCreationCmd, const _pyID& meshId):
1304 _pyObject(theCreationCmd,meshId), myGeomNotInStudy(false )
1306 if ( theCreationCmd->MethodStartsFrom( "CreateMeshesFrom" ))
1308 // this mesh depends on the exported mesh
1309 const TCollection_AsciiString& file = theCreationCmd->GetArg( 1 );
1310 if ( !file.IsEmpty() )
1312 ExportedMeshData& exportData = theGen->FindExportedMesh( file );
1313 addFatherMesh( exportData.myMesh );
1314 if ( !exportData.myLastComputeCmd.IsNull() )
1316 // restore cleared Compute() by which the exported mesh was generated
1317 exportData.myLastComputeCmd->GetString() = exportData.myLastComputeCmdString;
1318 // protect that Compute() cmd from clearing
1319 if ( exportData.myMesh->myLastComputeCmd == exportData.myLastComputeCmd )
1320 exportData.myMesh->myLastComputeCmd.Nullify();
1324 else if ( theCreationCmd->MethodStartsFrom( "Concatenate" ))
1326 // this mesh depends on concatenated meshes
1327 const TCollection_AsciiString& meshIDs = theCreationCmd->GetArg( 1 );
1328 list< _pyID > idList = theCreationCmd->GetStudyEntries( meshIDs );
1329 list< _pyID >::iterator meshID = idList.begin();
1330 for ( ; meshID != idList.end(); ++meshID )
1331 addFatherMesh( *meshID );
1333 else if ( theCreationCmd->GetMethod() == "CopyMesh" )
1335 // this mesh depends on a copied IdSource
1336 const _pyID& objID = theCreationCmd->GetArg( 1 );
1337 addFatherMesh( objID );
1339 else if ( theCreationCmd->GetMethod().Search("MakeMesh") != -1 ||
1340 theCreationCmd->GetMethod() == "MakeBoundaryMesh" ||
1341 theCreationCmd->GetMethod() == "MakeBoundaryElements" )
1343 // this mesh depends on a source mesh
1344 // (theCreationCmd is already Process()ed by _pyMeshEditor)
1345 const _pyID& meshID = theCreationCmd->GetObject();
1346 addFatherMesh( meshID );
1349 // convert my creation command
1350 Handle(_pyCommand) creationCmd = GetCreationCmd();
1351 creationCmd->SetObject( SMESH_2smeshpy::SmeshpyName() );
1352 theGen->SetAccessorMethod( meshId, _pyMesh::AccessorMethod() );
1355 //================================================================================
1357 * \brief Convert an IDL API command of SMESH::SMESH_Mesh to a method call of python Mesh
1358 * \param theCommand - Engine method called for this mesh
1360 //================================================================================
1362 void _pyMesh::Process( const Handle(_pyCommand)& theCommand )
1364 // some methods of SMESH_Mesh interface needs special conversion
1365 // to methods of Mesh python class
1367 // 1. GetSubMesh(geom, name) + AddHypothesis(geom, algo)
1368 // --> in Mesh_Algorithm.Create(mesh, geom, hypo, so)
1369 // 2. AddHypothesis(geom, hyp)
1370 // --> in Mesh_Algorithm.Hypothesis(hyp, args, so)
1371 // 3. CreateGroupFromGEOM(type, name, grp)
1372 // --> in Mesh.Group(grp, name="")
1373 // 4. ExportToMED(f, auto_groups, version)
1374 // --> in Mesh.ExportMED( f, auto_groups, version )
1377 const TCollection_AsciiString& method = theCommand->GetMethod();
1378 // ----------------------------------------------------------------------
1379 if ( method == "Compute" ) // in snapshot mode, clear the previous Compute()
1381 if ( !theGen->IsToKeepAllCommands() ) // !historical
1383 list< Handle(_pyHypothesis) >::iterator hyp;
1384 if ( !myLastComputeCmd.IsNull() )
1386 for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
1387 (*hyp)->ComputeDiscarded( myLastComputeCmd );
1389 myLastComputeCmd->Clear();
1391 myLastComputeCmd = theCommand;
1393 for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
1394 (*hyp)->MeshComputed( myLastComputeCmd );
1398 // ----------------------------------------------------------------------
1399 else if ( method == "Clear" ) // in snapshot mode, clear all previous commands
1401 if ( !theGen->IsToKeepAllCommands() ) // !historical
1404 myChildMeshes.empty() ? 0 : myChildMeshes.back()->GetCreationCmd()->GetOrderNb();
1405 // list< Handle(_pyCommand) >::reverse_iterator cmd = myProcessedCmds.rbegin();
1406 // for ( ; cmd != myProcessedCmds.rend() && (*cmd)->GetOrderNb() > untilCmdNb; ++cmd )
1408 if ( !myLastComputeCmd.IsNull() )
1410 list< Handle(_pyHypothesis) >::iterator hyp;
1411 for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
1412 (*hyp)->ComputeDiscarded( myLastComputeCmd );
1414 myLastComputeCmd->Clear();
1417 list< Handle(_pyMeshEditor)>::iterator e = myEditors.begin();
1418 for ( ; e != myEditors.end(); ++e )
1420 list< Handle(_pyCommand)>& cmds = (*e)->GetProcessedCmds();
1421 list< Handle(_pyCommand) >::reverse_iterator cmd = cmds.rbegin();
1422 for ( ; cmd != cmds.rend() && (*cmd)->GetOrderNb() > untilCmdNb; ++cmd )
1423 if ( !(*cmd)->IsEmpty() )
1425 if ( (*cmd)->GetStudyEntries( (*cmd)->GetResultValue() ).empty() ) // no object created
1429 myLastComputeCmd = theCommand; // to clear Clear() the same way as Compute()
1432 // ----------------------------------------------------------------------
1433 else if ( method == "GetSubMesh" ) { // collect submeshes of the mesh
1434 Handle(_pySubMesh) subMesh = theGen->FindSubMesh( theCommand->GetResultValue() );
1435 if ( !subMesh.IsNull() ) {
1436 subMesh->SetCreator( this );
1437 mySubmeshes.push_back( subMesh );
1440 else if ( method == "RemoveSubMesh" ) { // move submesh creation before its removal
1441 Handle(_pySubMesh) subMesh = theGen->FindSubMesh( theCommand->GetArg(1) );
1442 if ( !subMesh.IsNull() )
1443 subMesh->Process( theCommand );
1444 AddMeshAccess( theCommand );
1446 // ----------------------------------------------------------------------
1447 else if ( method == "AddHypothesis" ) { // mesh.AddHypothesis(geom, HYPO )
1448 myAddHypCmds.push_back( theCommand );
1450 const _pyID& hypID = theCommand->GetArg( 2 );
1451 Handle(_pyHypothesis) hyp = theGen->FindHyp( hypID );
1452 if ( !hyp.IsNull() ) {
1453 myHypos.push_back( hyp );
1454 if ( hyp->GetMesh().IsEmpty() )
1455 hyp->SetMesh( this->GetID() );
1458 // ----------------------------------------------------------------------
1459 else if ( method == "CreateGroup" ||
1460 method == "CreateGroupFromGEOM" ||
1461 method == "CreateGroupFromFilter" )
1463 Handle(_pyGroup) group = new _pyGroup( theCommand );
1464 myGroups.push_back( group );
1465 theGen->AddObject( group );
1467 // ----------------------------------------------------------------------
1468 else if ( theCommand->MethodStartsFrom( "Export" ))
1470 if ( method == "ExportToMED" || // ExportToMED() --> ExportMED()
1471 method == "ExportToMEDX" ) { // ExportToMEDX() --> ExportMED()
1472 theCommand->SetMethod( "ExportMED" );
1474 else if ( method == "ExportCGNS" )
1475 { // ExportCGNS(part, ...) -> ExportCGNS(..., part)
1476 _pyID partID = theCommand->GetArg( 1 );
1477 int nbArgs = theCommand->GetNbArgs();
1478 for ( int i = 2; i <= nbArgs; ++i )
1479 theCommand->SetArg( i-1, theCommand->GetArg( i ));
1480 theCommand->SetArg( nbArgs, partID );
1482 else if ( theCommand->MethodStartsFrom( "ExportPartTo" ))
1483 { // ExportPartTo*(part, ...) -> Export*(..., part)
1485 // remove "PartTo" from the method
1486 TCollection_AsciiString newMethod = method;
1487 newMethod.Remove( 7, 6 );
1488 theCommand->SetMethod( newMethod );
1489 // make the 1st arg be the last one
1490 _pyID partID = theCommand->GetArg( 1 );
1491 int nbArgs = theCommand->GetNbArgs();
1492 for ( int i = 2; i <= nbArgs; ++i )
1493 theCommand->SetArg( i-1, theCommand->GetArg( i ));
1494 theCommand->SetArg( nbArgs, partID );
1496 // remember file name
1497 theGen->AddExportedMesh( theCommand->GetArg( 1 ),
1498 ExportedMeshData( this, myLastComputeCmd ));
1500 // ----------------------------------------------------------------------
1501 else if ( method == "RemoveHypothesis" ) // (geom, hyp)
1503 _pyID hypID = theCommand->GetArg( 2 );
1505 // check if this mesh still has corresponding addition command
1506 bool hasAddCmd = false;
1507 list< Handle(_pyCommand) >::iterator cmd = myAddHypCmds.begin();
1508 while ( cmd != myAddHypCmds.end() )
1510 // AddHypothesis(geom, hyp)
1511 if ( hypID == (*cmd)->GetArg( 2 )) { // erase both (add and remove) commands
1512 theCommand->Clear();
1514 cmd = myAddHypCmds.erase( cmd );
1521 Handle(_pyHypothesis) hyp = theGen->FindHyp( hypID );
1522 if ( ! hasAddCmd && hypID.Length() != 0 ) { // hypo addition already wrapped
1523 // RemoveHypothesis(geom, hyp) --> RemoveHypothesis( hyp, geom=0 )
1524 _pyID geom = theCommand->GetArg( 1 );
1525 theCommand->RemoveArgs();
1526 theCommand->SetArg( 1, hypID );
1527 if ( geom != GetGeom() )
1528 theCommand->SetArg( 2, geom );
1530 // remove hyp from myHypos
1531 myHypos.remove( hyp );
1533 // check for SubMesh order commands
1534 else if ( method == "GetMeshOrder" || method == "SetMeshOrder" )
1536 // make commands GetSubMesh() returning sub-meshes be before using sub-meshes
1537 // by GetMeshOrder() and SetMeshOrder(), since by defalut GetSubMesh()
1538 // commands are moved at the end of the script
1539 TCollection_AsciiString subIDs =
1540 ( method == "SetMeshOrder" ) ? theCommand->GetArg(1) : theCommand->GetResultValue();
1541 list< _pyID > idList = theCommand->GetStudyEntries( subIDs );
1542 list< _pyID >::iterator subID = idList.begin();
1543 for ( ; subID != idList.end(); ++subID )
1545 Handle(_pySubMesh) subMesh = theGen->FindSubMesh( *subID );
1546 if ( !subMesh.IsNull() )
1547 subMesh->Process( theCommand ); // it moves GetSubMesh() before theCommand
1550 // update list of groups
1551 else if ( method == "GetGroups" )
1553 TCollection_AsciiString grIDs = theCommand->GetResultValue();
1554 list< _pyID > idList = theCommand->GetStudyEntries( grIDs );
1555 list< _pyID >::iterator grID = idList.begin();
1556 for ( ; grID != idList.end(); ++grID )
1558 Handle(_pyObject) obj = theGen->FindObject( *grID );
1561 Handle(_pyGroup) group = new _pyGroup( theCommand, *grID );
1562 theGen->AddObject( group );
1563 myGroups.push_back( group );
1567 // add accessor method if necessary
1570 if ( NeedMeshAccess( theCommand ))
1571 // apply theCommand to the mesh wrapped by smeshpy mesh
1572 AddMeshAccess( theCommand );
1576 //================================================================================
1578 * \brief Return True if addition of accesor method is needed
1580 //================================================================================
1582 bool _pyMesh::NeedMeshAccess( const Handle(_pyCommand)& theCommand )
1584 // names of SMESH_Mesh methods fully equal to methods of python class Mesh,
1585 // so no conversion is needed for them at all:
1586 static TStringSet sameMethods;
1587 if ( sameMethods.empty() ) {
1588 const char * names[] =
1589 { "ExportDAT","ExportUNV","ExportSTL","ExportSAUV", "RemoveGroup","RemoveGroupWithContents",
1590 "GetGroups","UnionGroups","IntersectGroups","CutGroups","GetLog","GetId","ClearLog",
1591 "GetStudyId","HasDuplicatedGroupNamesMED","GetMEDMesh","NbNodes","NbElements",
1592 "NbEdges","NbEdgesOfOrder","NbFaces","NbFacesOfOrder","NbTriangles",
1593 "NbTrianglesOfOrder","NbQuadrangles","NbQuadranglesOfOrder","NbPolygons","NbVolumes",
1594 "NbVolumesOfOrder","NbTetras","NbTetrasOfOrder","NbHexas","NbHexasOfOrder",
1595 "NbPyramids","NbPyramidsOfOrder","NbPrisms","NbPrismsOfOrder","NbPolyhedrons",
1596 "NbSubMesh","GetElementsId","GetElementsByType","GetNodesId","GetElementType",
1597 "GetSubMeshElementsId","GetSubMeshNodesId","GetSubMeshElementType","Dump","GetNodeXYZ",
1598 "GetNodeInverseElements","GetShapeID","GetShapeIDForElem","GetElemNbNodes",
1599 "GetElemNode","IsMediumNode","IsMediumNodeOfAnyElem","ElemNbEdges","ElemNbFaces",
1600 "IsPoly","IsQuadratic","BaryCenter","GetHypothesisList", "SetAutoColor", "GetAutoColor",
1601 "Clear", "ConvertToStandalone", "GetMeshOrder", "SetMeshOrder"
1602 ,"" }; // <- mark of end
1603 sameMethods.Insert( names );
1606 return !sameMethods.Contains( theCommand->GetMethod() );
1609 //================================================================================
1611 * \brief Convert creation and addition of all algos and hypos
1613 //================================================================================
1615 void _pyMesh::Flush()
1618 // get the meshes this mesh depends on via hypotheses
1619 list< Handle(_pyMesh) > fatherMeshes;
1620 list< Handle(_pyHypothesis) >::iterator hyp = myHypos.begin();
1621 for ( ; hyp != myHypos.end(); ++hyp )
1622 if ( ! (*hyp)->GetReferredMeshesAndGeom( fatherMeshes ))
1623 myGeomNotInStudy = true;
1625 list< Handle(_pyMesh) >::iterator m = fatherMeshes.begin();
1626 for ( ; m != fatherMeshes.end(); ++m )
1627 addFatherMesh( *m );
1628 // if ( removedGeom )
1629 // SetRemovedFromStudy(); // as reffered geometry not in study
1631 if ( myGeomNotInStudy )
1634 list < Handle(_pyCommand) >::iterator cmd;
1636 // try to convert algo addition like this:
1637 // mesh.AddHypothesis(geom, ALGO ) --> ALGO = mesh.Algo()
1638 for ( cmd = myAddHypCmds.begin(); cmd != myAddHypCmds.end(); ++cmd )
1640 Handle(_pyCommand) addCmd = *cmd;
1642 _pyID algoID = addCmd->GetArg( 2 );
1643 Handle(_pyHypothesis) algo = theGen->FindHyp( algoID );
1644 if ( algo.IsNull() || !algo->IsAlgo() )
1647 // check and create new algorithm instance if it is already wrapped
1648 if ( algo->IsWrapped() ) {
1649 _pyID localAlgoID = theGen->GenerateNewID( algoID );
1650 TCollection_AsciiString aNewCmdStr = addCmd->GetIndentation() + localAlgoID +
1651 TCollection_AsciiString( " = " ) + theGen->GetID() +
1652 TCollection_AsciiString( ".CreateHypothesis( \"" ) + algo->GetAlgoType() +
1653 TCollection_AsciiString( "\" )" );
1655 Handle(_pyCommand) newCmd = theGen->AddCommand( aNewCmdStr );
1656 Handle(_pyAlgorithm) newAlgo = Handle(_pyAlgorithm)::DownCast(theGen->FindHyp( localAlgoID ));
1657 if ( !newAlgo.IsNull() ) {
1658 newAlgo->Assign( algo, this->GetID() );
1659 newAlgo->SetCreationCmd( newCmd );
1661 // set algorithm creation
1662 theGen->SetCommandBefore( newCmd, addCmd );
1663 myHypos.push_back( newAlgo );
1664 if ( !myLastComputeCmd.IsNull() &&
1665 newCmd->GetOrderNb() == myLastComputeCmd->GetOrderNb() + 1)
1666 newAlgo->MeshComputed( myLastComputeCmd );
1671 _pyID geom = addCmd->GetArg( 1 );
1672 bool isLocalAlgo = ( geom != GetGeom() );
1675 if ( algo->Addition2Creation( addCmd, this->GetID() )) // OK
1677 // wrapped algo is created after mesh creation
1678 GetCreationCmd()->AddDependantCmd( addCmd );
1680 if ( isLocalAlgo ) {
1681 // mesh.AddHypothesis(geom, ALGO ) --> mesh.AlgoMethod(geom)
1682 addCmd->SetArg( addCmd->GetNbArgs() + 1,
1683 TCollection_AsciiString( "geom=" ) + geom );
1684 // sm = mesh.GetSubMesh(geom, name) --> sm = ALGO.GetSubMesh()
1685 list < Handle(_pySubMesh) >::iterator smIt;
1686 for ( smIt = mySubmeshes.begin(); smIt != mySubmeshes.end(); ++smIt ) {
1687 Handle(_pySubMesh) subMesh = *smIt;
1688 Handle(_pyCommand) subCmd = subMesh->GetCreationCmd();
1689 if ( geom == subCmd->GetArg( 1 )) {
1690 subCmd->SetObject( algo->GetID() );
1691 subCmd->RemoveArgs();
1692 subMesh->SetCreator( algo );
1697 else // KO - ALGO was already created
1699 // mesh.AddHypothesis(geom, ALGO) --> mesh.AddHypothesis(ALGO, geom=0)
1700 addCmd->RemoveArgs();
1701 addCmd->SetArg( 1, algoID );
1703 addCmd->SetArg( 2, geom );
1707 // try to convert hypo addition like this:
1708 // mesh.AddHypothesis(geom, HYPO ) --> HYPO = algo.Hypo()
1709 for ( cmd = myAddHypCmds.begin(); cmd != myAddHypCmds.end(); ++cmd )
1711 Handle(_pyCommand) addCmd = *cmd;
1712 _pyID hypID = addCmd->GetArg( 2 );
1713 Handle(_pyHypothesis) hyp = theGen->FindHyp( hypID );
1714 if ( hyp.IsNull() || hyp->IsAlgo() )
1716 bool converted = hyp->Addition2Creation( addCmd, this->GetID() );
1718 // mesh.AddHypothesis(geom, HYP) --> mesh.AddHypothesis(HYP, geom=0)
1719 _pyID geom = addCmd->GetArg( 1 );
1720 addCmd->RemoveArgs();
1721 addCmd->SetArg( 1, hypID );
1722 if ( geom != GetGeom() )
1723 addCmd->SetArg( 2, geom );
1727 myAddHypCmds.clear();
1728 mySubmeshes.clear();
1731 list< Handle(_pyHypothesis) >::iterator hyp = myHypos.begin();
1732 for ( hyp = myHypos.begin(); hyp != myHypos.end(); ++hyp )
1736 //================================================================================
1738 * \brief Sets myIsPublished of me and of all objects depending on me.
1740 //================================================================================
1742 void _pyMesh::SetRemovedFromStudy(const bool isRemoved)
1744 _pyObject::SetRemovedFromStudy(isRemoved);
1746 list< Handle(_pySubMesh) >::iterator sm = mySubmeshes.begin();
1747 for ( ; sm != mySubmeshes.end(); ++sm )
1748 (*sm)->SetRemovedFromStudy(isRemoved);
1750 list< Handle(_pyGroup) >::iterator gr = myGroups.begin();
1751 for ( ; gr != myGroups.end(); ++gr )
1752 (*gr)->SetRemovedFromStudy(isRemoved);
1754 list< Handle(_pyMesh) >::iterator m = myChildMeshes.begin();
1755 for ( ; m != myChildMeshes.end(); ++m )
1756 (*m)->SetRemovedFromStudy(isRemoved);
1758 list< Handle(_pyMeshEditor)>::iterator e = myEditors.begin();
1759 for ( ; e != myEditors.end(); ++e )
1760 (*e)->SetRemovedFromStudy(isRemoved);
1763 //================================================================================
1765 * \brief Return true if none of myChildMeshes is in study
1767 //================================================================================
1769 bool _pyMesh::CanClear()
1774 list< Handle(_pyMesh) >::iterator m = myChildMeshes.begin();
1775 for ( ; m != myChildMeshes.end(); ++m )
1776 if ( !(*m)->CanClear() )
1782 //================================================================================
1784 * \brief Clear my commands and commands of mesh editor
1786 //================================================================================
1788 void _pyMesh::ClearCommands()
1794 // mark all sub-objects as not removed, except child meshes
1795 list< Handle(_pyMesh) > children;
1796 children.swap( myChildMeshes );
1797 SetRemovedFromStudy( false );
1798 children.swap( myChildMeshes );
1802 _pyObject::ClearCommands();
1804 list< Handle(_pySubMesh) >::iterator sm = mySubmeshes.begin();
1805 for ( ; sm != mySubmeshes.end(); ++sm )
1806 (*sm)->ClearCommands();
1808 list< Handle(_pyGroup) >::iterator gr = myGroups.begin();
1809 for ( ; gr != myGroups.end(); ++gr )
1810 (*gr)->ClearCommands();
1812 list< Handle(_pyMeshEditor)>::iterator e = myEditors.begin();
1813 for ( ; e != myEditors.end(); ++e )
1814 (*e)->ClearCommands();
1817 //================================================================================
1819 * \brief Add a father mesh by ID
1821 //================================================================================
1823 void _pyMesh::addFatherMesh( const _pyID& meshID )
1825 if ( !meshID.IsEmpty() )
1826 addFatherMesh( Handle(_pyMesh)::DownCast( theGen->FindObject( meshID )));
1829 //================================================================================
1831 * \brief Add a father mesh
1833 //================================================================================
1835 void _pyMesh::addFatherMesh( const Handle(_pyMesh)& mesh )
1837 if ( !mesh.IsNull() )
1839 //myFatherMeshes.push_back( mesh );
1840 mesh->myChildMeshes.push_back( this );
1842 // protect last Compute() from clearing by the next Compute()
1843 mesh->myLastComputeCmd.Nullify();
1847 //================================================================================
1849 * \brief MeshEditor convert its commands to ones of mesh
1851 //================================================================================
1853 _pyMeshEditor::_pyMeshEditor(const Handle(_pyCommand)& theCreationCmd):
1854 _pyObject( theCreationCmd )
1856 myMesh = theCreationCmd->GetObject();
1857 myCreationCmdStr = theCreationCmd->GetString();
1858 theCreationCmd->Clear();
1860 Handle(_pyMesh) mesh = ObjectToMesh( theGen->FindObject( myMesh ));
1861 if ( !mesh.IsNull() )
1862 mesh->AddEditor( this );
1865 //================================================================================
1867 * \brief convert its commands to ones of mesh
1869 //================================================================================
1871 void _pyMeshEditor::Process( const Handle(_pyCommand)& theCommand)
1873 // names of SMESH_MeshEditor methods fully equal to methods of python class Mesh, so
1874 // commands calling this methods are converted to calls of methods of Mesh
1875 static TStringSet sameMethods;
1876 if ( sameMethods.empty() ) {
1877 const char * names[] = {
1878 "RemoveElements","RemoveNodes","RemoveOrphanNodes","AddNode","Add0DElement","AddEdge","AddFace","AddPolygonalFace",
1879 "AddVolume","AddPolyhedralVolume","AddPolyhedralVolumeByFaces","MoveNode", "MoveClosestNodeToPoint",
1880 "InverseDiag","DeleteDiag","Reorient","ReorientObject","TriToQuad","SplitQuad","SplitQuadObject",
1881 "BestSplit","Smooth","SmoothObject","SmoothParametric","SmoothParametricObject",
1882 "ConvertToQuadratic","ConvertFromQuadratic","RenumberNodes","RenumberElements",
1883 "RotationSweep","RotationSweepObject","RotationSweepObject1D","RotationSweepObject2D",
1884 "ExtrusionSweep","AdvancedExtrusion","ExtrusionSweepObject","ExtrusionSweepObject1D","ExtrusionSweepObject2D",
1885 "ExtrusionAlongPath","ExtrusionAlongPathObject","ExtrusionAlongPathX",
1886 "ExtrusionAlongPathObject1D","ExtrusionAlongPathObject2D",
1887 "Mirror","MirrorObject","Translate","TranslateObject","Rotate","RotateObject",
1888 "FindCoincidentNodes",/*"FindCoincidentNodesOnPart",*/"MergeNodes","FindEqualElements",
1889 "MergeElements","MergeEqualElements","SewFreeBorders","SewConformFreeBorders",
1890 "SewBorderToSide","SewSideElements","ChangeElemNodes","GetLastCreatedNodes",
1891 "GetLastCreatedElems",
1892 "MirrorMakeMesh","MirrorObjectMakeMesh","TranslateMakeMesh",
1893 "TranslateObjectMakeMesh","RotateMakeMesh","RotateObjectMakeMesh","MakeBoundaryMesh",
1894 "MakeBoundaryElements"
1895 ,"" }; // <- mark of the end
1896 sameMethods.Insert( names );
1899 // names of SMESH_MeshEditor methods which differ from methods of class Mesh
1900 // only by last two arguments
1901 static TStringSet diffLastTwoArgsMethods;
1902 if (diffLastTwoArgsMethods.empty() ) {
1903 const char * names[] = {
1904 "MirrorMakeGroups","MirrorObjectMakeGroups",
1905 "TranslateMakeGroups","TranslateObjectMakeGroups",
1906 "RotateMakeGroups","RotateObjectMakeGroups",
1907 ""};// <- mark of the end
1908 diffLastTwoArgsMethods.Insert( names );
1911 const TCollection_AsciiString & method = theCommand->GetMethod();
1912 bool isPyMeshMethod = sameMethods.Contains( method );
1913 if ( !isPyMeshMethod )
1915 //Replace SMESH_MeshEditor "MakeGroups" functions by the Mesh
1916 //functions with the flag "theMakeGroups = True" like:
1917 //SMESH_MeshEditor.CmdMakeGroups => Mesh.Cmd(...,True)
1918 int pos = method.Search("MakeGroups");
1921 isPyMeshMethod = true;
1922 bool is0DmethId = ( method == "ExtrusionSweepMakeGroups0D" );
1923 bool is0DmethObj = ( method == "ExtrusionSweepObject0DMakeGroups");
1925 // 1. Remove "MakeGroups" from the Command
1926 TCollection_AsciiString aMethod = theCommand->GetMethod();
1927 int nbArgsToAdd = diffLastTwoArgsMethods.Contains(aMethod) ? 2 : 1;
1930 pos = pos-2; //Remove "0D" from the Command too
1931 aMethod.Trunc(pos-1);
1932 theCommand->SetMethod(aMethod);
1934 // 2. And add last "True" argument(s)
1935 while(nbArgsToAdd--)
1936 theCommand->SetArg(theCommand->GetNbArgs()+1,"True");
1937 if( is0DmethId || is0DmethObj )
1938 theCommand->SetArg(theCommand->GetNbArgs()+1,"True");
1942 // ExtrusionSweep0D() -> ExtrusionSweep()
1943 // ExtrusionSweepObject0D() -> ExtrusionSweepObject()
1944 if ( !isPyMeshMethod && ( method == "ExtrusionSweep0D" ||
1945 method == "ExtrusionSweepObject0D" ))
1947 isPyMeshMethod=true;
1948 theCommand->SetMethod( method.SubString( 1, method.Length()-2));
1949 theCommand->SetArg(theCommand->GetNbArgs()+1,"False"); //sets flag "MakeGroups = False"
1950 theCommand->SetArg(theCommand->GetNbArgs()+1,"True"); //sets flag "IsNode = True"
1952 // set "ExtrusionAlongPathX()" instead of "ExtrusionAlongPathObjX()"
1953 if ( !isPyMeshMethod && method == "ExtrusionAlongPathObjX")
1955 isPyMeshMethod=true;
1956 theCommand->SetMethod("ExtrusionAlongPathX");
1959 // set "FindCoincidentNodesOnPart()" instead of "FindCoincidentNodesOnPartBut()"
1960 if ( !isPyMeshMethod && method == "FindCoincidentNodesOnPartBut")
1962 isPyMeshMethod=true;
1963 theCommand->SetMethod("FindCoincidentNodesOnPart");
1965 // DoubleNodeElemGroupNew() -> DoubleNodeElemGroup()
1966 // DoubleNodeGroupNew() -> DoubleNodeGroup()
1967 // DoubleNodeGroupsNew() -> DoubleNodeGroups()
1968 // DoubleNodeElemGroupsNew() -> DoubleNodeElemGroups()
1969 if ( !isPyMeshMethod && ( method == "DoubleNodeElemGroupNew" ||
1970 method == "DoubleNodeElemGroupsNew" ||
1971 method == "DoubleNodeGroupNew" ||
1972 method == "DoubleNodeGroupsNew"))
1974 isPyMeshMethod=true;
1975 theCommand->SetMethod( method.SubString( 1, method.Length()-3));
1976 theCommand->SetArg(theCommand->GetNbArgs()+1,"True");
1978 // ConvertToQuadraticObject(bool,obj) -> ConvertToQuadratic(bool,obj)
1979 // ConvertFromQuadraticObject(obj) -> ConvertFromQuadratic(obj)
1980 if ( !isPyMeshMethod && ( method == "ConvertToQuadraticObject" ||
1981 method == "ConvertFromQuadraticObject" ))
1983 isPyMeshMethod=true;
1984 theCommand->SetMethod( method.SubString( 1, method.Length()-6));
1985 // prevent moving creation of the converted sub-mesh to the end of the script
1986 bool isFromQua = ( method.Value( 8 ) == 'F' );
1987 Handle(_pySubMesh) sm = theGen->FindSubMesh( theCommand->GetArg( isFromQua ? 1 : 2 ));
1989 sm->Process( theCommand );
1991 // FindAmongElementsByPoint(meshPart, x, y, z, elementType) ->
1992 // FindElementsByPoint(x, y, z, elementType, meshPart)
1993 if ( !isPyMeshMethod && method == "FindAmongElementsByPoint" )
1995 isPyMeshMethod=true;
1996 theCommand->SetMethod( "FindElementsByPoint" );
1997 // make the 1st arg be the last one
1998 _pyID partID = theCommand->GetArg( 1 );
1999 int nbArgs = theCommand->GetNbArgs();
2000 for ( int i = 2; i <= nbArgs; ++i )
2001 theCommand->SetArg( i-1, theCommand->GetArg( i ));
2002 theCommand->SetArg( nbArgs, partID );
2005 // meshes made by *MakeMesh() methods are not wrapped by _pyMesh,
2006 // so let _pyMesh care of it (TMP?)
2007 // if ( theCommand->GetMethod().Search("MakeMesh") != -1 )
2008 // _pyMesh( new _pyCommand( theCommand->GetString(), 0 )); // for theGen->SetAccessorMethod()
2009 if ( isPyMeshMethod )
2011 theCommand->SetObject( myMesh );
2015 // editor creation command is needed only if any editor function is called
2016 theGen->AddMeshAccessorMethod( theCommand ); // for *Object()
2017 if ( !myCreationCmdStr.IsEmpty() ) {
2018 GetCreationCmd()->GetString() = myCreationCmdStr;
2019 myCreationCmdStr.Clear();
2024 //================================================================================
2026 * \brief Return true if my mesh can be removed
2028 //================================================================================
2030 bool _pyMeshEditor::CanClear()
2032 Handle(_pyMesh) mesh = ObjectToMesh( theGen->FindObject( myMesh ));
2033 return mesh.IsNull() ? true : mesh->CanClear();
2036 //================================================================================
2038 * \brief _pyHypothesis constructor
2039 * \param theCreationCmd -
2041 //================================================================================
2043 _pyHypothesis::_pyHypothesis(const Handle(_pyCommand)& theCreationCmd):
2044 _pyObject( theCreationCmd ), myCurCrMethod(0)
2046 myIsAlgo = myIsWrapped = /*myIsConverted = myIsLocal = myDim = */false;
2049 //================================================================================
2051 * \brief Creates algorithm or hypothesis
2052 * \param theCreationCmd - The engine command creating a hypothesis
2053 * \retval Handle(_pyHypothesis) - Result _pyHypothesis
2055 //================================================================================
2057 Handle(_pyHypothesis) _pyHypothesis::NewHypothesis( const Handle(_pyCommand)& theCreationCmd)
2059 // theCreationCmd: CreateHypothesis( "theHypType", "theLibName" )
2060 ASSERT (( theCreationCmd->GetMethod() == "CreateHypothesis"));
2062 Handle(_pyHypothesis) hyp, algo;
2065 const TCollection_AsciiString & hypTypeQuoted = theCreationCmd->GetArg( 1 );
2066 if ( hypTypeQuoted.IsEmpty() )
2069 TCollection_AsciiString hypType =
2070 hypTypeQuoted.SubString( 2, hypTypeQuoted.Length() - 1 );
2072 algo = new _pyAlgorithm( theCreationCmd );
2073 hyp = new _pyHypothesis( theCreationCmd );
2075 if ( hypType == "NumberOfSegments" ) {
2076 hyp = new _pyNumberOfSegmentsHyp( theCreationCmd );
2077 hyp->SetConvMethodAndType( "NumberOfSegments", "Regular_1D");
2078 // arg of SetNumberOfSegments() will become the 1-st arg of hyp creation command
2079 hyp->AddArgMethod( "SetNumberOfSegments" );
2080 // arg of SetScaleFactor() will become the 2-nd arg of hyp creation command
2081 hyp->AddArgMethod( "SetScaleFactor" );
2082 hyp->AddArgMethod( "SetReversedEdges" );
2083 // same for ""CompositeSegment_1D:
2084 hyp->SetConvMethodAndType( "NumberOfSegments", "CompositeSegment_1D");
2085 hyp->AddArgMethod( "SetNumberOfSegments" );
2086 hyp->AddArgMethod( "SetScaleFactor" );
2087 hyp->AddArgMethod( "SetReversedEdges" );
2089 else if ( hypType == "SegmentLengthAroundVertex" ) {
2090 hyp = new _pySegmentLengthAroundVertexHyp( theCreationCmd );
2091 hyp->SetConvMethodAndType( "LengthNearVertex", "Regular_1D" );
2092 hyp->AddArgMethod( "SetLength" );
2093 // same for ""CompositeSegment_1D:
2094 hyp->SetConvMethodAndType( "LengthNearVertex", "CompositeSegment_1D");
2095 hyp->AddArgMethod( "SetLength" );
2097 else if ( hypType == "LayerDistribution2D" ) {
2098 hyp = new _pyLayerDistributionHypo( theCreationCmd, "Get2DHypothesis" );
2099 hyp->SetConvMethodAndType( "LayerDistribution", "RadialQuadrangle_1D2D");
2101 else if ( hypType == "LayerDistribution" ) {
2102 hyp = new _pyLayerDistributionHypo( theCreationCmd, "Get3DHypothesis" );
2103 hyp->SetConvMethodAndType( "LayerDistribution", "RadialPrism_3D");
2105 else if ( hypType == "CartesianParameters3D" ) {
2106 hyp = new _pyComplexParamHypo( theCreationCmd );
2107 hyp->SetConvMethodAndType( "SetGrid", "Cartesian_3D");
2108 for ( int iArg = 0; iArg < 4; ++iArg )
2109 hyp->setCreationArg( iArg+1, "[]");
2113 hyp = theGen->GetHypothesisReader()->GetHypothesis( hypType, theCreationCmd );
2116 return algo->IsValid() ? algo : hyp;
2119 //================================================================================
2121 * \brief Returns true if addition of this hypothesis to a given mesh can be
2122 * wrapped into hypothesis creation
2124 //================================================================================
2126 bool _pyHypothesis::IsWrappable(const _pyID& theMesh) const
2128 if ( !myIsWrapped && myMesh == theMesh && IsInStudy() )
2130 Handle(_pyObject) pyMesh = theGen->FindObject( myMesh );
2131 if ( !pyMesh.IsNull() && pyMesh->IsInStudy() )
2137 //================================================================================
2139 * \brief Convert the command adding a hypothesis to mesh into a smesh command
2140 * \param theCmd - The command like mesh.AddHypothesis( geom, hypo )
2141 * \param theAlgo - The algo that can create this hypo
2142 * \retval bool - false if the command cant be converted
2144 //================================================================================
2146 bool _pyHypothesis::Addition2Creation( const Handle(_pyCommand)& theCmd,
2147 const _pyID& theMesh)
2149 ASSERT(( theCmd->GetMethod() == "AddHypothesis" ));
2151 if ( !IsWrappable( theMesh ))
2154 myGeom = theCmd->GetArg( 1 );
2156 Handle(_pyHypothesis) algo;
2158 // find algo created on myGeom in theMesh
2159 algo = theGen->FindAlgo( myGeom, theMesh, this );
2160 if ( algo.IsNull() )
2162 // attach hypothesis creation command to be after algo creation command
2163 // because it can be new created instance of algorithm
2164 algo->GetCreationCmd()->AddDependantCmd( theCmd );
2168 // mesh.AddHypothesis(geom,hyp) --> hyp = <theMesh or algo>.myCreationMethod(args)
2169 theCmd->SetResultValue( GetID() );
2170 theCmd->SetObject( IsAlgo() ? theMesh : algo->GetID());
2171 theCmd->SetMethod( IsAlgo() ? GetAlgoCreationMethod() : GetCreationMethod( algo->GetAlgoType() ));
2172 // set args (geom will be set by _pyMesh calling this method)
2173 theCmd->RemoveArgs();
2174 for ( size_t i = 0; i < myCurCrMethod->myArgs.size(); ++i ) {
2175 if ( !myCurCrMethod->myArgs[ i ].IsEmpty() )
2176 theCmd->SetArg( i+1, myCurCrMethod->myArgs[ i ]);
2178 theCmd->SetArg( i+1, "[]");
2180 // set a new creation command
2181 GetCreationCmd()->Clear();
2182 // replace creation command by wrapped instance
2183 // please note, that hypothesis attaches to algo creation command (see upper)
2184 SetCreationCmd( theCmd );
2187 // clear commands setting arg values
2188 list < Handle(_pyCommand) >::iterator argCmd = myArgCommands.begin();
2189 for ( ; argCmd != myArgCommands.end(); ++argCmd )
2192 // set unknown arg commands after hypo creation
2193 Handle(_pyCommand) afterCmd = myIsWrapped ? theCmd : GetCreationCmd();
2194 list<Handle(_pyCommand)>::iterator cmd = myUnusedCommands.begin();
2195 for ( ; cmd != myUnusedCommands.end(); ++cmd ) {
2196 afterCmd->AddDependantCmd( *cmd );
2202 //================================================================================
2204 * \brief Remember hypothesis parameter values
2205 * \param theCommand - The called hypothesis method
2207 //================================================================================
2209 void _pyHypothesis::Process( const Handle(_pyCommand)& theCommand)
2211 ASSERT( !myIsAlgo );
2212 if ( !theGen->IsToKeepAllCommands() )
2213 rememberCmdOfParameter( theCommand );
2215 bool usedCommand = false;
2216 TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
2217 for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
2219 CreationMethod& crMethod = type2meth->second;
2220 for ( size_t i = 0; i < crMethod.myArgMethods.size(); ++i ) {
2221 if ( crMethod.myArgMethods[ i ] == theCommand->GetMethod() ) {
2223 myArgCommands.push_back( theCommand );
2225 while ( crMethod.myArgs.size() < i+1 )
2226 crMethod.myArgs.push_back( "[]" );
2227 crMethod.myArgs[ i ] = theCommand->GetArg( crMethod.myArgNb[i] );
2232 myUnusedCommands.push_back( theCommand );
2235 //================================================================================
2237 * \brief Finish conversion
2239 //================================================================================
2241 void _pyHypothesis::Flush()
2245 list < Handle(_pyCommand) >::iterator cmd = myArgCommands.begin();
2246 for ( ; cmd != myArgCommands.end(); ++cmd ) {
2247 // Add access to a wrapped mesh
2248 theGen->AddMeshAccessorMethod( *cmd );
2249 // Add access to a wrapped algorithm
2250 theGen->AddAlgoAccessorMethod( *cmd );
2252 cmd = myUnusedCommands.begin();
2253 for ( ; cmd != myUnusedCommands.end(); ++cmd ) {
2254 // Add access to a wrapped mesh
2255 theGen->AddMeshAccessorMethod( *cmd );
2256 // Add access to a wrapped algorithm
2257 theGen->AddAlgoAccessorMethod( *cmd );
2260 // forget previous hypothesis modifications
2261 myArgCommands.clear();
2262 myUnusedCommands.clear();
2265 //================================================================================
2267 * \brief clear creation, arg and unkown commands
2269 //================================================================================
2271 void _pyHypothesis::ClearAllCommands()
2273 GetCreationCmd()->Clear();
2274 list<Handle(_pyCommand)>::iterator cmd = myArgCommands.begin();
2275 for ( ; cmd != myArgCommands.end(); ++cmd )
2277 cmd = myUnusedCommands.begin();
2278 for ( ; cmd != myUnusedCommands.end(); ++cmd )
2283 //================================================================================
2285 * \brief Assign fields of theOther to me except myIsWrapped
2287 //================================================================================
2289 void _pyHypothesis::Assign( const Handle(_pyHypothesis)& theOther,
2290 const _pyID& theMesh )
2292 // myCreationCmd = theOther->myCreationCmd;
2293 myIsAlgo = theOther->myIsAlgo;
2294 myIsWrapped = false;
2295 myGeom = theOther->myGeom;
2297 myAlgoType2CreationMethod = theOther->myAlgoType2CreationMethod;
2298 //myArgCommands = theOther->myArgCommands;
2299 //myUnusedCommands = theOther->myUnusedCommands;
2300 // init myCurCrMethod
2301 GetCreationMethod( theOther->GetAlgoType() );
2304 //================================================================================
2306 * \brief Analyze my erasability depending on myReferredObjs
2308 //================================================================================
2310 bool _pyHypothesis::CanClear()
2314 list< Handle(_pyObject) >::iterator obj = myReferredObjs.begin();
2315 for ( ; obj != myReferredObjs.end(); ++obj )
2316 if ( (*obj)->CanClear() )
2323 //================================================================================
2325 * \brief Clear my commands depending on usage by meshes
2327 //================================================================================
2329 void _pyHypothesis::ClearCommands()
2331 // if ( !theGen->IsToKeepAllCommands() )
2333 // bool isUsed = false;
2334 // int lastComputeOrder = 0;
2335 // list<Handle(_pyCommand) >::iterator cmd = myComputeCmds.begin();
2336 // for ( ; cmd != myComputeCmds.end(); ++cmd )
2337 // if ( ! (*cmd)->IsEmpty() )
2340 // if ( (*cmd)->GetOrderNb() > lastComputeOrder )
2341 // lastComputeOrder = (*cmd)->GetOrderNb();
2345 // SetRemovedFromStudy( true );
2349 // // clear my commands invoked after lastComputeOrder
2350 // // map<TCollection_AsciiString, list< Handle(_pyCommand) > >::iterator m2c;
2351 // // for ( m2c = myMeth2Commands.begin(); m2c != myMeth2Commands.end(); ++m2c )
2353 // // list< Handle(_pyCommand)> & cmds = m2c->second;
2354 // // if ( !cmds.empty() && cmds.back()->GetOrderNb() > lastComputeOrder )
2355 // // cmds.back()->Clear();
2359 _pyObject::ClearCommands();
2362 //================================================================================
2364 * \brief Find arguments that are objects like mesh, group, geometry
2365 * \param meshes - referred meshes (directly or indirrectly)
2366 * \retval bool - false if a referred geometry is not in the study
2368 //================================================================================
2370 bool _pyHypothesis::GetReferredMeshesAndGeom( list< Handle(_pyMesh) >& meshes )
2372 if ( IsAlgo() ) return true;
2374 bool geomPublished = true;
2375 vector< _AString > args;
2376 TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
2377 for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
2379 CreationMethod& crMethod = type2meth->second;
2380 args.insert( args.end(), crMethod.myArgs.begin(), crMethod.myArgs.end());
2382 list<Handle(_pyCommand)>::iterator cmd = myUnusedCommands.begin();
2383 for ( ; cmd != myUnusedCommands.end(); ++cmd ) {
2384 for ( int nb = (*cmd)->GetNbArgs(); nb; --nb )
2385 args.push_back( (*cmd)->GetArg( nb ));
2388 for ( size_t i = 0; i < args.size(); ++i )
2390 list< _pyID > idList = _pyCommand::GetStudyEntries( args[ i ]);
2391 if ( idList.empty() && !args[ i ].IsEmpty() )
2392 idList.push_back( args[ i ]);
2393 list< _pyID >::iterator id = idList.begin();
2394 for ( ; id != idList.end(); ++id )
2396 Handle(_pyObject) obj = theGen->FindObject( *id );
2397 if ( obj.IsNull() ) obj = theGen->FindHyp( *id );
2400 if ( theGen->IsGeomObject( *id ) && theGen->IsNotPublished( *id ))
2401 geomPublished = false;
2405 myReferredObjs.push_back( obj );
2406 Handle(_pyMesh) mesh = ObjectToMesh( obj );
2407 if ( !mesh.IsNull() )
2408 meshes.push_back( mesh );
2409 // prevent clearing not published hyps referred e.g. by "LayerDistribution"
2410 else if ( obj->IsKind( STANDARD_TYPE( _pyHypothesis )) && this->IsInStudy() )
2411 obj->SetRemovedFromStudy( false );
2415 return geomPublished;
2418 //================================================================================
2420 * \brief Remember theCommand setting a parameter
2422 //================================================================================
2424 void _pyHypothesis::rememberCmdOfParameter( const Handle(_pyCommand) & theCommand )
2426 // parameters are discriminated by method name
2427 TCollection_AsciiString method = theCommand->GetMethod();
2429 // discriminate commands setting different parameters via one method
2430 // by passing parameter names like e.g. SetOption("size", "0.2")
2431 if ( theCommand->GetString().FirstLocationInSet( "'\"", 1, theCommand->Length() ) &&
2432 theCommand->GetNbArgs() > 1 )
2434 // mangle method by appending a 1st textual arg
2435 for ( int iArg = 1; iArg <= theCommand->GetNbArgs(); ++iArg )
2437 const TCollection_AsciiString& arg = theCommand->GetArg( iArg );
2438 if ( arg.Value(1) != '\"' && arg.Value(1) != '\'' ) continue;
2439 if ( !isalpha( arg.Value(2))) continue;
2444 // parameters are discriminated by method name
2445 list< Handle(_pyCommand)>& cmds = myMeth2Commands[ theCommand->GetMethod() ];
2446 if ( !cmds.empty() && !isCmdUsedForCompute( cmds.back() ))
2448 cmds.back()->Clear(); // previous parameter value has not been used
2449 cmds.back() = theCommand;
2453 cmds.push_back( theCommand );
2457 //================================================================================
2459 * \brief Return true if a setting parameter command ha been used to compute mesh
2461 //================================================================================
2463 bool _pyHypothesis::isCmdUsedForCompute( const Handle(_pyCommand) & cmd,
2464 _pyCommand::TAddr avoidComputeAddr ) const
2466 bool isUsed = false;
2467 map< _pyCommand::TAddr, list<Handle(_pyCommand) > >::const_iterator addr2cmds =
2468 myComputeAddr2Cmds.begin();
2469 for ( ; addr2cmds != myComputeAddr2Cmds.end() && !isUsed; ++addr2cmds )
2471 if ( addr2cmds->first == avoidComputeAddr ) continue;
2472 const list<Handle(_pyCommand)> & cmds = addr2cmds->second;
2473 isUsed = ( std::find( cmds.begin(), cmds.end(), cmd ) != cmds.end() );
2478 //================================================================================
2480 * \brief Save commands setting parameters as they are used for a mesh computation
2482 //================================================================================
2484 void _pyHypothesis::MeshComputed( const Handle(_pyCommand)& theComputeCmd )
2486 myComputeCmds.push_back( theComputeCmd );
2487 list<Handle(_pyCommand)>& savedCmds = myComputeAddr2Cmds[ theComputeCmd->GetAddress() ];
2489 map<TCollection_AsciiString, list< Handle(_pyCommand) > >::iterator m2c;
2490 for ( m2c = myMeth2Commands.begin(); m2c != myMeth2Commands.end(); ++m2c )
2491 savedCmds.push_back( m2c->second.back() );
2494 //================================================================================
2496 * \brief Clear commands setting parameters as a mesh computed using them is cleared
2498 //================================================================================
2500 void _pyHypothesis::ComputeDiscarded( const Handle(_pyCommand)& theComputeCmd )
2502 list<Handle(_pyCommand)>& savedCmds = myComputeAddr2Cmds[ theComputeCmd->GetAddress() ];
2504 list<Handle(_pyCommand)>::iterator cmd = savedCmds.begin();
2505 for ( ; cmd != savedCmds.end(); ++cmd )
2507 // check if a cmd has been used to compute another mesh
2508 if ( isCmdUsedForCompute( *cmd, theComputeCmd->GetAddress() ))
2510 // check if a cmd is a sole command setting its parameter;
2511 // don't use method name for search as it can change
2512 map<TCollection_AsciiString, list<Handle(_pyCommand)> >::iterator
2513 m2cmds = myMeth2Commands.begin();
2514 for ( ; m2cmds != myMeth2Commands.end(); ++m2cmds )
2516 list< Handle(_pyCommand)>& cmds = m2cmds->second;
2517 list< Handle(_pyCommand)>::iterator cmdIt = std::find( cmds.begin(), cmds.end(), *cmd );
2518 if ( cmdIt != cmds.end() )
2520 if ( cmds.back() != *cmd )
2522 cmds.erase( cmdIt );
2529 myComputeAddr2Cmds.erase( theComputeCmd->GetAddress() );
2532 //================================================================================
2534 * \brief Sets an argNb-th argument of current creation command
2535 * \param argNb - argument index countered from 1
2537 //================================================================================
2539 void _pyHypothesis::setCreationArg( const int argNb, const _AString& arg )
2541 if ( myCurCrMethod )
2543 while ( myCurCrMethod->myArgs.size() < argNb )
2544 myCurCrMethod->myArgs.push_back( "None" );
2545 if ( arg.IsEmpty() )
2546 myCurCrMethod->myArgs[ argNb-1 ] = "None";
2548 myCurCrMethod->myArgs[ argNb-1 ] = arg;
2553 //================================================================================
2555 * \brief Remember hypothesis parameter values
2556 * \param theCommand - The called hypothesis method
2558 //================================================================================
2560 void _pyComplexParamHypo::Process( const Handle(_pyCommand)& theCommand)
2562 if ( GetAlgoType() == "Cartesian_3D" )
2564 // CartesianParameters3D hyp
2566 if ( theCommand->GetMethod() == "SetSizeThreshold" )
2568 setCreationArg( 4, theCommand->GetArg( 1 ));
2569 myArgCommands.push_back( theCommand );
2572 if ( theCommand->GetMethod() == "SetGrid" ||
2573 theCommand->GetMethod() == "SetGridSpacing" )
2575 TCollection_AsciiString axis = theCommand->GetArg( theCommand->GetNbArgs() );
2576 int iArg = axis.Value(1) - '0';
2577 if ( theCommand->GetMethod() == "SetGrid" )
2579 setCreationArg( 1+iArg, theCommand->GetArg( 1 ));
2583 myCurCrMethod->myArgs[ iArg ] = "[ ";
2584 myCurCrMethod->myArgs[ iArg ] += theCommand->GetArg( 1 );
2585 myCurCrMethod->myArgs[ iArg ] += ", ";
2586 myCurCrMethod->myArgs[ iArg ] += theCommand->GetArg( 2 );
2587 myCurCrMethod->myArgs[ iArg ] += "]";
2589 myArgCommands.push_back( theCommand );
2590 rememberCmdOfParameter( theCommand );
2595 if( theCommand->GetMethod() == "SetLength" )
2597 // NOW it is OBSOLETE
2598 // ex: hyp.SetLength(start, 1)
2599 // hyp.SetLength(end, 0)
2600 ASSERT(( theCommand->GetArg( 2 ).IsIntegerValue() ));
2601 int i = 1 - theCommand->GetArg( 2 ).IntegerValue();
2602 TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
2603 for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
2605 CreationMethod& crMethod = type2meth->second;
2606 while ( crMethod.myArgs.size() < i+1 )
2607 crMethod.myArgs.push_back( "[]" );
2608 crMethod.myArgs[ i ] = theCommand->GetArg( 1 ); // arg value
2610 myArgCommands.push_back( theCommand );
2614 _pyHypothesis::Process( theCommand );
2617 //================================================================================
2619 * \brief Clear SetObjectEntry() as it is called by methods of Mesh_Segment
2621 //================================================================================
2623 void _pyComplexParamHypo::Flush()
2627 list < Handle(_pyCommand) >::iterator cmd = myUnusedCommands.begin();
2628 for ( ; cmd != myUnusedCommands.end(); ++cmd )
2629 if ((*cmd)->GetMethod() == "SetObjectEntry" )
2634 //================================================================================
2636 * \brief Convert methods of 1D hypotheses to my own methods
2637 * \param theCommand - The called hypothesis method
2639 //================================================================================
2641 void _pyLayerDistributionHypo::Process( const Handle(_pyCommand)& theCommand)
2643 if ( theCommand->GetMethod() != "SetLayerDistribution" )
2646 const _pyID& hyp1dID = theCommand->GetArg( 1 );
2647 // Handle(_pyHypothesis) hyp1d = theGen->FindHyp( hyp1dID );
2648 // if ( hyp1d.IsNull() && ! my1dHyp.IsNull()) // apparently hypId changed at study restoration
2650 // TCollection_AsciiString cmd =
2651 // my1dHyp->GetCreationCmd()->GetIndentation() + hyp1dID + " = " + my1dHyp->GetID();
2652 // Handle(_pyCommand) newCmd = theGen->AddCommand( cmd );
2653 // theGen->SetCommandAfter( newCmd, my1dHyp->GetCreationCmd() );
2656 // else if ( !my1dHyp.IsNull() && hyp1dID != my1dHyp->GetID() )
2658 // // 1D hypo is already set, so distribution changes and the old
2659 // // 1D hypo is thrown away
2660 // my1dHyp->ClearAllCommands();
2663 // //my1dHyp->SetRemovedFromStudy( false );
2665 // if ( !myArgCommands.empty() )
2666 // myArgCommands.back()->Clear();
2667 myCurCrMethod->myArgs.push_back( hyp1dID );
2668 myArgCommands.push_back( theCommand );
2671 //================================================================================
2674 * \param theAdditionCmd - command to be converted
2675 * \param theMesh - mesh instance
2676 * \retval bool - status
2678 //================================================================================
2680 bool _pyLayerDistributionHypo::Addition2Creation( const Handle(_pyCommand)& theAdditionCmd,
2681 const _pyID& theMesh)
2683 myIsWrapped = false;
2685 if ( my1dHyp.IsNull() )
2688 // set "SetLayerDistribution()" after addition cmd
2689 theAdditionCmd->AddDependantCmd( myArgCommands.front() );
2691 _pyID geom = theAdditionCmd->GetArg( 1 );
2693 Handle(_pyHypothesis) algo = theGen->FindAlgo( geom, theMesh, this );
2694 if ( !algo.IsNull() )
2696 my1dHyp->SetMesh( theMesh );
2697 my1dHyp->SetConvMethodAndType(my1dHyp->GetAlgoCreationMethod().ToCString(),
2698 algo->GetAlgoType().ToCString());
2699 if ( !my1dHyp->Addition2Creation( theAdditionCmd, theMesh ))
2702 // clear "SetLayerDistribution()" cmd
2703 myArgCommands.back()->Clear();
2705 // Convert my creation => me = RadialPrismAlgo.Get3DHypothesis()
2707 // find RadialPrism algo created on <geom> for theMesh
2708 GetCreationCmd()->SetObject( algo->GetID() );
2709 GetCreationCmd()->SetMethod( myAlgoMethod );
2710 GetCreationCmd()->RemoveArgs();
2711 theAdditionCmd->AddDependantCmd( GetCreationCmd() );
2717 //================================================================================
2721 //================================================================================
2723 void _pyLayerDistributionHypo::Flush()
2725 // as creation of 1D hyp was written later then it's edition,
2726 // we need to find all it's edition calls and process them
2727 list< Handle(_pyCommand) >::iterator cmd = myArgCommands.begin();
2729 for ( cmd = myArgCommands.begin(); cmd != myArgCommands.end(); ++cmd )
2731 const _pyID& hyp1dID = (*cmd)->GetArg( 1 );
2732 if ( hyp1dID.IsEmpty() ) continue;
2734 Handle(_pyHypothesis) hyp1d = theGen->FindHyp( hyp1dID );
2736 // make a new name for 1D hyp = "HypType" + "_Distribution"
2738 if ( hyp1d.IsNull() ) // apparently hypId changed at study restoration
2740 if ( prevNewName.IsEmpty() ) continue;
2741 newName = prevNewName;
2745 if ( hyp1d->IsWrapped() ) {
2746 newName = hyp1d->GetCreationCmd()->GetMethod();
2749 TCollection_AsciiString hypTypeQuoted = hyp1d->GetCreationCmd()->GetArg(1);
2750 newName = hypTypeQuoted.SubString( 2, hypTypeQuoted.Length() - 1 );
2752 newName += "_Distribution";
2753 prevNewName = newName;
2755 hyp1d->GetCreationCmd()->SetResultValue( newName );
2757 list< Handle(_pyCommand) >& cmds = theGen->GetCommands();
2758 list< Handle(_pyCommand) >::iterator cmdIt = cmds.begin();
2759 for ( ; cmdIt != cmds.end(); ++cmdIt ) {
2760 const _pyID& objID = (*cmdIt)->GetObject();
2761 if ( objID == hyp1dID ) {
2762 if ( !hyp1d.IsNull() )
2764 hyp1d->Process( *cmdIt );
2765 hyp1d->GetCreationCmd()->AddDependantCmd( *cmdIt );
2767 ( *cmdIt )->SetObject( newName );
2770 // Set new hyp name to SetLayerDistribution(hyp1dID) cmd
2771 (*cmd)->SetArg( 1, newName );
2775 //================================================================================
2777 * \brief additionally to Addition2Creation, clears SetDistrType() command
2778 * \param theCmd - AddHypothesis() command
2779 * \param theMesh - mesh to which a hypothesis is added
2780 * \retval bool - convertion result
2782 //================================================================================
2784 bool _pyNumberOfSegmentsHyp::Addition2Creation( const Handle(_pyCommand)& theCmd,
2785 const _pyID& theMesh)
2787 if ( IsWrappable( theMesh ) && myCurCrMethod->myArgs.size() > 1 ) {
2788 // scale factor (2-nd arg) is provided: clear SetDistrType(1) command
2789 bool scaleDistrType = false;
2790 list<Handle(_pyCommand)>::reverse_iterator cmd = myUnusedCommands.rbegin();
2791 for ( ; cmd != myUnusedCommands.rend(); ++cmd ) {
2792 if ( (*cmd)->GetMethod() == "SetDistrType" ) {
2793 if ( (*cmd)->GetArg( 1 ) == "1" ) {
2794 scaleDistrType = true;
2797 else if ( !scaleDistrType ) {
2798 // distribution type changed: remove scale factor from args
2799 TType2CrMethod::iterator type2meth = myAlgoType2CreationMethod.begin();
2800 for ( ; type2meth != myAlgoType2CreationMethod.end(); ++type2meth )
2802 CreationMethod& crMethod = type2meth->second;
2803 if ( crMethod.myArgs.size() == 2 )
2804 crMethod.myArgs.pop_back();
2811 return _pyHypothesis::Addition2Creation( theCmd, theMesh );
2814 //================================================================================
2816 * \brief remove repeated commands defining distribution
2818 //================================================================================
2820 void _pyNumberOfSegmentsHyp::Flush()
2822 // find number of the last SetDistrType() command
2823 list<Handle(_pyCommand)>::reverse_iterator cmd = myUnusedCommands.rbegin();
2824 int distrTypeNb = 0;
2825 for ( ; !distrTypeNb && cmd != myUnusedCommands.rend(); ++cmd )
2826 if ( (*cmd)->GetMethod() == "SetDistrType" )
2827 distrTypeNb = (*cmd)->GetOrderNb();
2828 else if (IsWrapped() && (*cmd)->GetMethod() == "SetObjectEntry" )
2831 // clear commands before the last SetDistrType()
2832 list<Handle(_pyCommand)> * cmds[2] = { &myArgCommands, &myUnusedCommands };
2833 for ( int i = 0; i < 2; ++i ) {
2834 set<TCollection_AsciiString> uniqueMethods;
2835 list<Handle(_pyCommand)> & cmdList = *cmds[i];
2836 for ( cmd = cmdList.rbegin(); cmd != cmdList.rend(); ++cmd )
2838 bool clear = ( (*cmd)->GetOrderNb() < distrTypeNb );
2839 const TCollection_AsciiString& method = (*cmd)->GetMethod();
2840 if ( !clear || method == "SetNumberOfSegments" ) {
2841 bool isNewInSet = uniqueMethods.insert( method ).second;
2842 clear = !isNewInSet;
2851 //================================================================================
2853 * \brief Convert the command adding "SegmentLengthAroundVertex" to mesh
2854 * into regular1D.LengthNearVertex( length, vertex )
2855 * \param theCmd - The command like mesh.AddHypothesis( vertex, SegmentLengthAroundVertex )
2856 * \param theMesh - The mesh needing this hypo
2857 * \retval bool - false if the command cant be converted
2859 //================================================================================
2861 bool _pySegmentLengthAroundVertexHyp::Addition2Creation( const Handle(_pyCommand)& theCmd,
2862 const _pyID& theMeshID)
2864 if ( IsWrappable( theMeshID )) {
2866 _pyID vertex = theCmd->GetArg( 1 );
2868 // the problem here is that segment algo will not be found
2869 // by pyHypothesis::Addition2Creation() for <vertex>, so we try to find
2870 // geometry where segment algorithm is assigned
2871 Handle(_pyHypothesis) algo;
2872 _pyID geom = vertex;
2873 while ( algo.IsNull() && !geom.IsEmpty()) {
2874 // try to find geom as a father of <vertex>
2875 geom = FatherID( geom );
2876 algo = theGen->FindAlgo( geom, theMeshID, this );
2878 if ( algo.IsNull() )
2879 return false; // also possible to find geom as brother of veretex...
2880 // set geom instead of vertex
2881 theCmd->SetArg( 1, geom );
2883 // set vertex as a second arg
2884 if ( myCurCrMethod->myArgs.size() < 1) setCreationArg( 1, "1" ); // :(
2885 setCreationArg( 2, vertex );
2887 // mesh.AddHypothesis(vertex, SegmentLengthAroundVertex) -->
2888 // theMeshID.LengthNearVertex( length, vertex )
2889 return _pyHypothesis::Addition2Creation( theCmd, theMeshID );
2894 //================================================================================
2896 * \brief _pyAlgorithm constructor
2897 * \param theCreationCmd - The command like "algo = smeshgen.CreateHypothesis(type,lib)"
2899 //================================================================================
2901 _pyAlgorithm::_pyAlgorithm(const Handle(_pyCommand)& theCreationCmd)
2902 : _pyHypothesis( theCreationCmd )
2907 //================================================================================
2909 * \brief Convert the command adding an algorithm to mesh
2910 * \param theCmd - The command like mesh.AddHypothesis( geom, algo )
2911 * \param theMesh - The mesh needing this algo
2912 * \retval bool - false if the command cant be converted
2914 //================================================================================
2916 bool _pyAlgorithm::Addition2Creation( const Handle(_pyCommand)& theCmd,
2917 const _pyID& theMeshID)
2919 // mesh.AddHypothesis(geom,algo) --> theMeshID.myCreationMethod()
2920 if ( _pyHypothesis::Addition2Creation( theCmd, theMeshID )) {
2921 theGen->SetAccessorMethod( GetID(), "GetAlgorithm()" );
2927 //================================================================================
2929 * \brief Return starting position of a part of python command
2930 * \param thePartIndex - The index of command part
2931 * \retval int - Part position
2933 //================================================================================
2935 int _pyCommand::GetBegPos( int thePartIndex )
2939 if ( myBegPos.Length() < thePartIndex )
2941 return myBegPos( thePartIndex );
2944 //================================================================================
2946 * \brief Store starting position of a part of python command
2947 * \param thePartIndex - The index of command part
2948 * \param thePosition - Part position
2950 //================================================================================
2952 void _pyCommand::SetBegPos( int thePartIndex, int thePosition )
2954 while ( myBegPos.Length() < thePartIndex )
2955 myBegPos.Append( UNKNOWN );
2956 myBegPos( thePartIndex ) = thePosition;
2959 //================================================================================
2961 * \brief Returns whitespace symbols at the line beginning
2962 * \retval TCollection_AsciiString - result
2964 //================================================================================
2966 TCollection_AsciiString _pyCommand::GetIndentation()
2969 if ( GetBegPos( RESULT_IND ) == UNKNOWN )
2970 GetWord( myString, end, true );
2972 end = GetBegPos( RESULT_IND );
2973 return myString.SubString( 1, end - 1 );
2976 //================================================================================
2978 * \brief Return substring of python command looking like ResultValue = Obj.Meth()
2979 * \retval const TCollection_AsciiString & - ResultValue substring
2981 //================================================================================
2983 const TCollection_AsciiString & _pyCommand::GetResultValue()
2985 if ( GetBegPos( RESULT_IND ) == UNKNOWN )
2987 SetBegPos( RESULT_IND, EMPTY );
2988 int begPos, endPos = myString.Location( "=", 1, Length() );
2992 while ( begPos < endPos && isspace( myString.Value( begPos ))) ++begPos;
2993 if ( begPos < endPos )
2995 SetBegPos( RESULT_IND, begPos );
2997 while ( begPos < endPos && isspace( myString.Value( endPos ))) --endPos;
2998 myRes = myString.SubString( begPos, endPos );
3005 //================================================================================
3007 * \brief Return number of python command result value ResultValue = Obj.Meth()
3010 //================================================================================
3012 const int _pyCommand::GetNbResultValues()
3016 int endPos = myString.Location( "=", 1, Length() );
3017 TCollection_AsciiString str = "";
3018 while ( begPos < endPos) {
3019 str = GetWord( myString, begPos, true );
3020 begPos = begPos+ str.Length();
3027 //================================================================================
3029 * \brief Return substring of python command looking like
3030 * ResultValue1 , ResultValue1,... = Obj.Meth() with res index
3031 * \retval const TCollection_AsciiString & - ResultValue with res index substring
3033 //================================================================================
3034 const TCollection_AsciiString & _pyCommand::GetResultValue(int res)
3038 int endPos = myString.Location( "=", 1, Length() );
3039 while ( begPos < endPos) {
3040 myRes = GetWord( myString, begPos, true );
3041 begPos = begPos + myRes.Length();
3044 myRes.RemoveAll('[');myRes.RemoveAll(']');
3050 return theEmptyString;
3053 //================================================================================
3055 * \brief Return substring of python command looking like ResVal = Object.Meth()
3056 * \retval const TCollection_AsciiString & - Object substring
3058 //================================================================================
3060 const TCollection_AsciiString & _pyCommand::GetObject()
3062 if ( GetBegPos( OBJECT_IND ) == UNKNOWN )
3065 int begPos = GetBegPos( RESULT_IND ) + myRes.Length();
3067 begPos = myString.Location( "=", 1, Length() ) + 1;
3068 // is '=' in the string argument (for example, name) or not
3069 int nb1 = 0; // number of ' character at the left of =
3070 int nb2 = 0; // number of " character at the left of =
3071 for ( int i = 1; i < begPos-1; i++ ) {
3072 if ( myString.Value( i )=='\'' )
3074 else if ( myString.Value( i )=='"' )
3077 // if number of ' or " is not divisible by 2,
3078 // then get an object at the start of the command
3079 if ( nb1 % 2 != 0 || nb2 % 2 != 0 )
3082 myObj = GetWord( myString, begPos, true );
3083 // check if object is complex,
3084 // so far consider case like "smesh.smesh.Method()"
3085 if ( int bracketPos = myString.Location( "(", begPos, Length() )) {
3086 //if ( bracketPos==0 ) bracketPos = Length();
3087 int dotPos = begPos+myObj.Length();
3088 while ( dotPos+1 < bracketPos ) {
3089 if ( int pos = myString.Location( ".", dotPos+1, bracketPos ))
3094 if ( dotPos > begPos+myObj.Length() )
3095 myObj = myString.SubString( begPos, dotPos-1 );
3097 // 1st word after '=' is an object
3098 // else // no method -> no object
3104 SetBegPos( OBJECT_IND, begPos );
3110 //================================================================================
3112 * \brief Return substring of python command looking like ResVal = Obj.Method()
3113 * \retval const TCollection_AsciiString & - Method substring
3115 //================================================================================
3117 const TCollection_AsciiString & _pyCommand::GetMethod()
3119 if ( GetBegPos( METHOD_IND ) == UNKNOWN )
3122 int begPos = GetBegPos( OBJECT_IND ) + myObj.Length();
3123 bool forward = true;
3125 begPos = myString.Location( "(", 1, Length() ) - 1;
3129 myMeth = GetWord( myString, begPos, forward );
3130 SetBegPos( METHOD_IND, begPos );
3136 //================================================================================
3138 * \brief Return substring of python command looking like ResVal = Obj.Meth(Arg1,...)
3139 * \retval const TCollection_AsciiString & - Arg<index> substring
3141 //================================================================================
3143 const TCollection_AsciiString & _pyCommand::GetArg( int index )
3145 if ( GetBegPos( ARG1_IND ) == UNKNOWN )
3149 int pos = GetBegPos( METHOD_IND ) + myMeth.Length();
3151 pos = myString.Location( "(", 1, Length() );
3155 // we are at or before '(', skip it if present
3157 while ( pos <= Length() && myString.Value( pos ) != '(' ) ++pos;
3158 if ( pos > Length() )
3162 SetBegPos( ARG1_IND, 0 ); // even no '('
3163 return theEmptyString;
3167 list< TCollection_AsciiString > separatorStack( 1, ",)");
3168 bool ignoreNesting = false;
3170 while ( pos <= Length() )
3172 const char chr = myString.Value( pos );
3174 if ( separatorStack.back().Location( chr, 1, separatorStack.back().Length()))
3176 if ( separatorStack.size() == 1 ) // a comma dividing args or a terminal ')' found
3178 while ( pos-1 >= prevPos && isspace( myString.Value( prevPos )))
3180 TCollection_AsciiString arg;
3181 if ( pos-1 >= prevPos ) {
3182 arg = myString.SubString( prevPos, pos-1 );
3183 arg.RightAdjust(); // remove spaces
3186 if ( !arg.IsEmpty() || chr == ',' )
3188 SetBegPos( ARG1_IND + myArgs.Length(), prevPos );
3189 myArgs.Append( arg );
3195 else // end of nesting args found
3197 separatorStack.pop_back();
3198 ignoreNesting = false;
3201 else if ( !ignoreNesting )
3204 case '(' : separatorStack.push_back(")"); break;
3205 case '[' : separatorStack.push_back("]"); break;
3206 case '\'': separatorStack.push_back("'"); ignoreNesting=true; break;
3207 case '"' : separatorStack.push_back("\""); ignoreNesting=true; break;
3214 if ( myArgs.Length() < index )
3215 return theEmptyString;
3216 return myArgs( index );
3219 //================================================================================
3221 * \brief Check if char is a word part
3222 * \param c - The character to check
3223 * \retval bool - The check result
3225 //================================================================================
3227 static inline bool isWord(const char c, const bool dotIsWord)
3230 !isspace(c) && c != ',' && c != '=' && c != ')' && c != '(' && ( dotIsWord || c != '.');
3233 //================================================================================
3235 * \brief Looks for a word in the string and returns word's beginning
3236 * \param theString - The input string
3237 * \param theStartPos - The position to start the search, returning word's beginning
3238 * \param theForward - The search direction
3239 * \retval TCollection_AsciiString - The found word
3241 //================================================================================
3243 TCollection_AsciiString _pyCommand::GetWord( const TCollection_AsciiString & theString,
3245 const bool theForward,
3246 const bool dotIsWord )
3248 int beg = theStartPos, end = theStartPos;
3249 theStartPos = EMPTY;
3250 if ( beg < 1 || beg > theString.Length() )
3251 return theEmptyString;
3253 if ( theForward ) { // search forward
3255 while ( beg <= theString.Length() && !isWord( theString.Value( beg ), dotIsWord))
3257 if ( beg > theString.Length() )
3258 return theEmptyString; // no word found
3261 char begChar = theString.Value( beg );
3262 if ( begChar == '"' || begChar == '\'' || begChar == '[') {
3263 char endChar = ( begChar == '[' ) ? ']' : begChar;
3264 // end is at the corresponding quoting mark or bracket
3265 while ( end < theString.Length() &&
3266 ( theString.Value( end ) != endChar || theString.Value( end-1 ) == '\\'))
3270 while ( end <= theString.Length() && isWord( theString.Value( end ), dotIsWord))
3275 else { // search backward
3277 while ( end > 0 && !isWord( theString.Value( end ), dotIsWord))
3280 return theEmptyString; // no word found
3282 char endChar = theString.Value( end );
3283 if ( endChar == '"' || endChar == '\'' || endChar == ']') {
3284 char begChar = ( endChar == ']' ) ? '[' : endChar;
3285 // beg is at the corresponding quoting mark
3287 ( theString.Value( beg ) != begChar || theString.Value( beg-1 ) == '\\'))
3291 while ( beg > 0 && isWord( theString.Value( beg ), dotIsWord))
3297 //cout << theString << " ---- " << beg << " - " << end << endl;
3298 return theString.SubString( beg, end );
3301 //================================================================================
3303 * \brief Returns true if the string looks like a study entry
3305 //================================================================================
3307 bool _pyCommand::IsStudyEntry( const TCollection_AsciiString& str )
3309 if ( str.Length() < 5 ) return false;
3311 int nbColons = 0, isColon;
3312 for ( int i = 1; i <= str.Length(); ++i )
3314 char c = str.Value(i);
3315 if (!( isColon = (c == ':')) && ( c < '0' || c > '9' ))
3317 nbColons += isColon;
3319 return nbColons > 2 && str.Length()-nbColons > 2;
3322 //================================================================================
3324 * \brief Finds entries in a sting
3326 //================================================================================
3328 std::list< _pyID > _pyCommand::GetStudyEntries( const TCollection_AsciiString& str )
3330 std::list< _pyID > resList;
3332 while ( ++pos <= str.Length() )
3334 if ( !isdigit( str.Value( pos ))) continue;
3335 if ( pos != 1 && ( isalpha( str.Value( pos-1 ) || str.Value( pos-1 ) == ':'))) continue;
3338 while ( ++end <= str.Length() && ( isdigit( str.Value( end )) || str.Value( end ) == ':' ));
3339 _pyID entry = str.SubString( pos, end-1 );
3341 if ( IsStudyEntry( entry ))
3342 resList.push_back( entry );
3347 //================================================================================
3349 * \brief Look for position where not space char is
3350 * \param theString - The string
3351 * \param thePos - The position to search from and which returns result
3352 * \retval bool - false if there are only space after thePos in theString
3356 //================================================================================
3358 bool _pyCommand::SkipSpaces( const TCollection_AsciiString & theString, int & thePos )
3360 if ( thePos < 1 || thePos > theString.Length() )
3363 while ( thePos <= theString.Length() && isspace( theString.Value( thePos )))
3366 return thePos <= theString.Length();
3369 //================================================================================
3371 * \brief Modify a part of the command
3372 * \param thePartIndex - The index of the part
3373 * \param thePart - The new part string
3374 * \param theOldPart - The old part
3376 //================================================================================
3378 void _pyCommand::SetPart(int thePartIndex, const TCollection_AsciiString& thePart,
3379 TCollection_AsciiString& theOldPart)
3381 int pos = GetBegPos( thePartIndex );
3382 if ( pos <= Length() && theOldPart != thePart)
3384 TCollection_AsciiString seperator;
3386 pos = GetBegPos( thePartIndex + 1 );
3387 if ( pos < 1 ) return;
3388 switch ( thePartIndex ) {
3389 case RESULT_IND: seperator = " = "; break;
3390 case OBJECT_IND: seperator = "."; break;
3391 case METHOD_IND: seperator = "()"; break;
3395 myString.Remove( pos, theOldPart.Length() );
3396 if ( !seperator.IsEmpty() )
3397 myString.Insert( pos , seperator );
3398 myString.Insert( pos, thePart );
3399 // update starting positions of the following parts
3400 int posDelta = thePart.Length() + seperator.Length() - theOldPart.Length();
3401 for ( int i = thePartIndex + 1; i <= myBegPos.Length(); ++i ) {
3402 if ( myBegPos( i ) > 0 )
3403 myBegPos( i ) += posDelta;
3405 theOldPart = thePart;
3409 //================================================================================
3411 * \brief Set agrument
3412 * \param index - The argument index, it counts from 1
3413 * \param theArg - The argument string
3415 //================================================================================
3417 void _pyCommand::SetArg( int index, const TCollection_AsciiString& theArg)
3420 int argInd = ARG1_IND + index - 1;
3421 int pos = GetBegPos( argInd );
3422 if ( pos < 1 ) // no index-th arg exist, append inexistent args
3424 // find a closing parenthesis
3425 if ( GetNbArgs() != 0 && index <= GetNbArgs() ) {
3426 int lastArgInd = GetNbArgs();
3427 pos = GetBegPos( ARG1_IND + lastArgInd - 1 ) + GetArg( lastArgInd ).Length();
3428 while ( pos > 0 && pos <= Length() && myString.Value( pos ) != ')' )
3433 while ( pos > 0 && myString.Value( pos ) != ')' )
3436 if ( pos < 1 || myString.Value( pos ) != ')' ) { // no parentheses at all
3440 while ( myArgs.Length() < index ) {
3441 if ( myArgs.Length() )
3442 myString.Insert( pos++, "," );
3443 myArgs.Append("None");
3444 myString.Insert( pos, myArgs.Last() );
3445 SetBegPos( ARG1_IND + myArgs.Length() - 1, pos );
3446 pos += myArgs.Last().Length();
3449 SetPart( argInd, theArg, myArgs( index ));
3452 //================================================================================
3454 * \brief Empty arg list
3456 //================================================================================
3458 void _pyCommand::RemoveArgs()
3460 if ( int pos = myString.Location( '(', 1, Length() ))
3461 myString.Trunc( pos );
3464 if ( myBegPos.Length() >= ARG1_IND )
3465 myBegPos.Remove( ARG1_IND, myBegPos.Length() );
3468 //================================================================================
3470 * \brief Comment a python command
3472 //================================================================================
3474 void _pyCommand::Comment()
3476 if ( IsEmpty() ) return;
3479 while ( i <= Length() && isspace( myString.Value(i) )) ++i;
3480 if ( i <= Length() )
3482 myString.Insert( i, "#" );
3483 for ( int iPart = 0; iPart < myBegPos.Length(); ++iPart )
3485 int begPos = GetBegPos( iPart );
3486 if ( begPos != UNKNOWN )
3487 SetBegPos( iPart, begPos + 1 );
3492 //================================================================================
3494 * \brief Set dependent commands after this one
3496 //================================================================================
3498 bool _pyCommand::SetDependentCmdsAfter() const
3500 bool orderChanged = false;
3501 list< Handle(_pyCommand)>::const_reverse_iterator cmd = myDependentCmds.rbegin();
3502 for ( ; cmd != myDependentCmds.rend(); ++cmd ) {
3503 if ( (*cmd)->GetOrderNb() < GetOrderNb() ) {
3504 orderChanged = true;
3505 theGen->SetCommandAfter( *cmd, this );
3506 (*cmd)->SetDependentCmdsAfter();
3509 return orderChanged;
3511 //================================================================================
3513 * \brief Insert accessor method after theObjectID
3514 * \param theObjectID - id of the accessed object
3515 * \param theAcsMethod - name of the method giving access to the object
3516 * \retval bool - false if theObjectID is not found in the command string
3518 //================================================================================
3520 bool _pyCommand::AddAccessorMethod( _pyID theObjectID, const char* theAcsMethod )
3522 if ( !theAcsMethod )
3524 // start object search from the object, i.e. ignore result
3526 int beg = GetBegPos( OBJECT_IND );
3527 if ( beg < 1 || beg > Length() )
3530 while (( beg = myString.Location( theObjectID, beg, Length() )))
3532 // check that theObjectID is not just a part of a longer ID
3533 int afterEnd = beg + theObjectID.Length();
3534 Standard_Character c = myString.Value( afterEnd );
3535 if ( !isalnum( c ) && c != ':' ) {
3536 // check if accessor method already present
3538 myString.Location( (char*) theAcsMethod, afterEnd, Length() ) != afterEnd+1) {
3540 int oldLen = Length();
3541 myString.Insert( afterEnd, (char*) theAcsMethod );
3542 myString.Insert( afterEnd, "." );
3543 // update starting positions of the parts following the modified one
3544 int posDelta = Length() - oldLen;
3545 for ( int i = 1; i <= myBegPos.Length(); ++i ) {
3546 if ( myBegPos( i ) > afterEnd )
3547 myBegPos( i ) += posDelta;
3552 beg = afterEnd; // is a part - next search
3557 //================================================================================
3559 * \brief Creates pyObject
3561 //================================================================================
3563 _pyObject::_pyObject(const Handle(_pyCommand)& theCreationCmd, const _pyID& theID)
3564 : myID(theID), myCreationCmd(theCreationCmd), myIsPublished(false)
3569 //================================================================================
3571 * \brief Set up myID and myIsPublished
3573 //================================================================================
3575 void _pyObject::setID(const _pyID& theID)
3578 myIsPublished = !theGen->IsNotPublished( GetID() );
3581 //================================================================================
3583 * \brief Clear myCreationCmd and myProcessedCmds
3585 //================================================================================
3587 void _pyObject::ClearCommands()
3592 if ( !myCreationCmd.IsNull() )
3593 myCreationCmd->Clear();
3595 list< Handle(_pyCommand) >::iterator cmd = myProcessedCmds.begin();
3596 for ( ; cmd != myProcessedCmds.end(); ++cmd )
3600 //================================================================================
3602 * \brief Return method name giving access to an interaface object wrapped by python class
3603 * \retval const char* - method name
3605 //================================================================================
3607 const char* _pyObject::AccessorMethod() const
3611 //================================================================================
3613 * \brief Return ID of a father
3615 //================================================================================
3617 _pyID _pyObject::FatherID(const _pyID & childID)
3619 int colPos = childID.SearchFromEnd(':');
3621 return childID.SubString( 1, colPos-1 );
3625 //================================================================================
3627 * \brief SelfEraser erases creation command if no more it's commands invoked
3629 //================================================================================
3631 void _pySelfEraser::Flush()
3633 if ( GetNbCalls() == 0 )
3634 GetCreationCmd()->Clear();
3637 //================================================================================
3639 * \brief _pySubMesh constructor
3641 //================================================================================
3643 _pySubMesh::_pySubMesh(const Handle(_pyCommand)& theCreationCmd):
3644 _pyObject(theCreationCmd)
3646 myMesh = ObjectToMesh( theGen->FindObject( theCreationCmd->GetObject() ));
3649 //================================================================================
3651 * \brief count invoked commands
3653 //================================================================================
3655 void _pySubMesh::Process( const Handle(_pyCommand)& theCommand )
3657 _pyObject::Process(theCommand); // count calls of Process()
3658 GetCreationCmd()->AddDependantCmd( theCommand );
3661 //================================================================================
3663 * \brief Move creation command depending on invoked commands
3665 //================================================================================
3667 void _pySubMesh::Flush()
3669 if ( GetNbCalls() == 0 ) // move to the end of all commands
3670 theGen->GetLastCommand()->AddDependantCmd( GetCreationCmd() );
3671 else if ( !myCreator.IsNull() )
3672 // move to be just after creator
3673 myCreator->GetCreationCmd()->AddDependantCmd( GetCreationCmd() );
3676 //================================================================================
3678 * \brief Creates _pyGroup
3680 //================================================================================
3682 _pyGroup::_pyGroup(const Handle(_pyCommand)& theCreationCmd, const _pyID & id)
3683 :_pySubMesh(theCreationCmd)
3685 if ( !id.IsEmpty() )
3688 const _AString& method = theCreationCmd->GetMethod();
3689 if ( method == "CreateGroup" ) // CreateGroup() --> CreateEmptyGroup()
3691 theCreationCmd->SetMethod( "CreateEmptyGroup" );
3693 // ----------------------------------------------------------------------
3694 else if ( method == "CreateGroupFromGEOM" ) // (type, name, grp)
3696 _pyID geom = theCreationCmd->GetArg( 3 );
3697 // VSR 24/12/2010. PAL21106: always use GroupOnGeom() function on dump
3698 // next if(){...} section is commented
3699 //if ( sameGroupType( geom, theCreationCmd->GetArg( 1 )) ) { // --> Group(geom)
3700 // theCreationCmd->SetMethod( "Group" );
3701 // theCreationCmd->RemoveArgs();
3702 // theCreationCmd->SetArg( 1, geom );
3705 // ------------------------->>>>> GroupOnGeom( geom, name, typ )
3706 _pyID type = theCreationCmd->GetArg( 1 );
3707 _pyID name = theCreationCmd->GetArg( 2 );
3708 theCreationCmd->SetMethod( "GroupOnGeom" );
3709 theCreationCmd->RemoveArgs();
3710 theCreationCmd->SetArg( 1, geom );
3711 theCreationCmd->SetArg( 2, name );
3712 theCreationCmd->SetArg( 3, type );
3715 else if ( method == "CreateGroupFromFilter" )
3717 // -> GroupOnFilter(typ, name, aFilter0x4743dc0 -> aFilter_1)
3718 theCreationCmd->SetMethod( "GroupOnFilter" );
3720 _pyID filterID = theCreationCmd->GetArg(3);
3721 Handle(_pyFilter) filter = Handle(_pyFilter)::DownCast( theGen->FindObject( filterID ));
3722 if ( !filter.IsNull())
3724 if ( !filter->GetNewID().IsEmpty() )
3725 theCreationCmd->SetArg( 3, filter->GetNewID() );
3726 filter->AddUser( this );
3732 //================================================================================
3734 * \brief To convert creation of a group by filter
3736 //================================================================================
3738 void _pyGroup::Process( const Handle(_pyCommand)& theCommand)
3740 // Convert the following set of commands into mesh.MakeGroupByFilter(groupName, theFilter)
3741 // group = mesh.CreateEmptyGroup( elemType, groupName )
3742 // aFilter.SetMesh(mesh)
3743 // nbAdd = group.AddFrom( aFilter )
3744 Handle(_pyFilter) filter;
3745 if ( theCommand->GetMethod() == "AddFrom" )
3747 _pyID idSource = theCommand->GetArg(1);
3748 // check if idSource is a filter
3749 filter = Handle(_pyFilter)::DownCast( theGen->FindObject( idSource ));
3750 if ( !filter.IsNull() )
3752 // find aFilter.SetMesh(mesh) to clear it, it should be just before theCommand
3753 list< Handle(_pyCommand) >::reverse_iterator cmdIt = theGen->GetCommands().rbegin();
3754 while ( *cmdIt != theCommand ) ++cmdIt;
3755 while ( (*cmdIt)->GetOrderNb() != 1 )
3757 const Handle(_pyCommand)& setMeshCmd = *(++cmdIt);
3758 if ((setMeshCmd->GetObject() == idSource ||
3759 setMeshCmd->GetObject() == filter->GetNewID() )
3761 setMeshCmd->GetMethod() == "SetMesh")
3763 setMeshCmd->Clear();
3767 // replace 3 commands by one
3768 theCommand->Clear();
3769 const Handle(_pyCommand)& makeGroupCmd = GetCreationCmd();
3770 TCollection_AsciiString name = makeGroupCmd->GetArg( 2 );
3771 if ( !filter->GetNewID().IsEmpty() )
3772 idSource = filter->GetNewID();
3773 makeGroupCmd->SetMethod( "MakeGroupByFilter" );
3774 makeGroupCmd->SetArg( 1, name );
3775 makeGroupCmd->SetArg( 2, idSource );
3778 else if ( theCommand->GetMethod() == "SetFilter" )
3780 // set new name of a filter or clear the command if the same filter is set
3781 _pyID filterID = theCommand->GetArg(1);
3782 filter = Handle(_pyFilter)::DownCast( theGen->FindObject( filterID ));
3783 if ( !myFilter.IsNull() && filter == myFilter )
3784 theCommand->Clear();
3785 else if ( !filter.IsNull() && !filter->GetNewID().IsEmpty() )
3786 theCommand->SetArg( 1, filter->GetNewID() );
3789 else if ( theCommand->GetMethod() == "GetFilter" )
3791 // GetFilter() returns a filter with other ID, make myFilter process
3792 // calls of the returned filter
3793 if ( !myFilter.IsNull() )
3795 theGen->SetProxyObject( theCommand->GetResultValue(), myFilter );
3796 theCommand->Clear();
3800 if ( !filter.IsNull() )
3801 filter->AddUser( this );
3803 theGen->AddMeshAccessorMethod( theCommand );
3806 //================================================================================
3808 * \brief Constructor of _pyFilter
3810 //================================================================================
3812 _pyFilter::_pyFilter(const Handle(_pyCommand)& theCreationCmd, const _pyID& newID/*=""*/)
3813 :_pyObject(theCreationCmd), myNewID( newID )
3817 //================================================================================
3819 * \brief To convert creation of a filter by criteria and
3820 * to replace an old name by a new one
3822 //================================================================================
3824 void _pyFilter::Process( const Handle(_pyCommand)& theCommand)
3826 if ( theCommand->GetObject() == GetID() )
3827 _pyObject::Process(theCommand); // count commands
3829 if ( !myNewID.IsEmpty() )
3830 theCommand->SetObject( myNewID );
3832 // Convert the following set of commands into smesh.GetFilterFromCriteria(criteria)
3833 // aFilter0x2aaab0487080 = aFilterManager.CreateFilter()
3834 // aFilter0x2aaab0487080.SetCriteria(aCriteria)
3835 if ( GetNbCalls() == 1 && // none method was called before this SetCriteria() call
3836 theCommand->GetMethod() == "SetCriteria")
3838 // aFilter.SetCriteria(aCriteria) ->
3839 // aFilter = smesh.GetFilterFromCriteria(criteria)
3840 if ( myNewID.IsEmpty() )
3841 theCommand->SetResultValue( GetID() );
3843 theCommand->SetResultValue( myNewID );
3844 theCommand->SetObject( SMESH_2smeshpy::GenName() );
3845 theCommand->SetMethod( "GetFilterFromCriteria" );
3847 // Clear aFilterManager.CreateFilter()
3848 GetCreationCmd()->Clear();
3850 else if ( theCommand->GetMethod() == "SetMesh" )
3852 if ( myMesh == theCommand->GetArg( 1 ))
3853 theCommand->Clear();
3855 myMesh = theCommand->GetArg( 1 );
3856 theGen->AddMeshAccessorMethod( theCommand );
3860 //================================================================================
3862 * \brief Set new filter name to the creation command
3864 //================================================================================
3866 void _pyFilter::Flush()
3868 if ( !myNewID.IsEmpty() && !GetCreationCmd()->IsEmpty() )
3869 GetCreationCmd()->SetResultValue( myNewID );
3872 //================================================================================
3874 * \brief Return true if all my users can be cleared
3876 //================================================================================
3878 bool _pyFilter::CanClear()
3880 list< Handle(_pyObject) >::iterator obj = myUsers.begin();
3881 for ( ; obj != myUsers.end(); ++obj )
3882 if ( !(*obj)->CanClear() )
3888 //================================================================================
3890 * \brief Reads _pyHypothesis'es from resource files of mesher Plugins
3892 //================================================================================
3894 _pyHypothesisReader::_pyHypothesisReader()
3896 // Get paths to xml files of plugins
3897 vector< string > xmlPaths;
3899 if ( const char* meshersList = getenv("SMESH_MeshersList") )
3901 string meshers = meshersList, plugin;
3902 string::size_type from = 0, pos;
3903 while ( from < meshers.size() )
3905 // cut off plugin name
3906 pos = meshers.find( ':', from );
3907 if ( pos != string::npos )
3908 plugin = meshers.substr( from, pos-from );
3910 plugin = meshers.substr( from ), pos = meshers.size();
3913 // get PLUGIN_ROOT_DIR path
3914 string rootDirVar, pluginSubDir = plugin;
3915 if ( plugin == "StdMeshers" )
3916 rootDirVar = "SMESH", pluginSubDir = "smesh";
3918 for ( pos = 0; pos < plugin.size(); ++pos )
3919 rootDirVar += toupper( plugin[pos] );
3920 rootDirVar += "_ROOT_DIR";
3922 const char* rootDir = getenv( rootDirVar.c_str() );
3923 if ( !rootDir || strlen(rootDir) == 0 )
3925 rootDirVar = plugin + "_ROOT_DIR"; // HexoticPLUGIN_ROOT_DIR
3926 rootDir = getenv( rootDirVar.c_str() );
3927 if ( !rootDir || strlen(rootDir) == 0 ) continue;
3930 // get a separator from rootDir
3931 for ( pos = strlen( rootDir )-1; pos >= 0 && sep.empty(); --pos )
3932 if ( rootDir[pos] == '/' || rootDir[pos] == '\\' )
3938 if (sep.empty() ) sep = "\\";
3940 if (sep.empty() ) sep = "/";
3943 // get a path to resource file
3944 string xmlPath = rootDir;
3945 if ( xmlPath[ xmlPath.size()-1 ] != sep[0] )
3947 xmlPath += "share" + sep + "salome" + sep + "resources" + sep;
3948 for ( pos = 0; pos < pluginSubDir.size(); ++pos )
3949 xmlPath += tolower( pluginSubDir[pos] );
3950 xmlPath += sep + plugin + ".xml";
3953 fileOK = (GetFileAttributes(xmlPath.c_str()) != INVALID_FILE_ATTRIBUTES);
3955 fileOK = (access(xmlPath.c_str(), F_OK) == 0);
3958 xmlPaths.push_back( xmlPath );
3963 LDOMParser xmlParser;
3964 for ( size_t i = 0; i < xmlPaths.size(); ++i )
3966 bool error = xmlParser.parse( xmlPaths[i].c_str() );
3970 INFOS( xmlParser.GetError(data) );
3973 // <algorithm type="Regular_1D"
3974 // label-id="Wire discretisation"
3977 // <algo>Regular_1D=Segment()</algo>
3978 // <hypo>LocalLength=LocalLength(SetLength(1),,SetPrecision(1))</hypo>
3980 LDOM_Document xmlDoc = xmlParser.getDocument();
3981 LDOM_NodeList algoNodeList = xmlDoc.getElementsByTagName( "algorithm" );
3982 for ( int i = 0; i < algoNodeList.getLength(); ++i )
3984 LDOM_Node algoNode = algoNodeList.item( i );
3985 LDOM_Element& algoElem = (LDOM_Element&) algoNode;
3986 LDOM_NodeList pyAlgoNodeList = algoElem.getElementsByTagName( "algo" );
3987 if ( pyAlgoNodeList.getLength() < 1 ) continue;
3989 _AString text, algoType, method, arg;
3990 for ( int iA = 0; iA < pyAlgoNodeList.getLength(); ++iA )
3992 LDOM_Node pyAlgoNode = pyAlgoNodeList.item( iA );
3993 LDOM_Node textNode = pyAlgoNode.getFirstChild();
3994 text = textNode.getNodeValue();
3995 Handle(_pyCommand) algoCmd = new _pyCommand( text );
3996 algoType = algoCmd->GetResultValue();
3997 method = algoCmd->GetMethod();
3998 arg = algoCmd->GetArg(1);
3999 if ( !algoType.IsEmpty() && !method.IsEmpty() )
4001 Handle(_pyAlgorithm) algo = new _pyAlgorithm( algoCmd );
4002 algo->SetConvMethodAndType( method, algoType );
4003 if ( !arg.IsEmpty() )
4004 algo->setCreationArg( 1, arg );
4006 myType2Hyp[ algoType ] = algo;
4010 if ( algoType.IsEmpty() ) continue;
4012 LDOM_NodeList pyHypoNodeList = algoElem.getElementsByTagName( "hypo" );
4014 Handle( _pyHypothesis ) hyp;
4015 for ( int iH = 0; iH < pyHypoNodeList.getLength(); ++iH )
4017 LDOM_Node pyHypoNode = pyHypoNodeList.item( iH );
4018 LDOM_Node textNode = pyHypoNode.getFirstChild();
4019 text = textNode.getNodeValue();
4020 Handle(_pyCommand) hypoCmd = new _pyCommand( text );
4021 hypType = hypoCmd->GetResultValue();
4022 method = hypoCmd->GetMethod();
4023 if ( !hypType.IsEmpty() && !method.IsEmpty() )
4025 map<_AString, Handle(_pyHypothesis)>::iterator type2hyp = myType2Hyp.find( hypType );
4026 if ( type2hyp == myType2Hyp.end() )
4027 hyp = new _pyHypothesis( hypoCmd );
4029 hyp = type2hyp->second;
4030 hyp->SetConvMethodAndType( method, algoType );
4031 for ( int iArg = 1; iArg <= hypoCmd->GetNbArgs(); ++iArg )
4033 _pyCommand argCmd( hypoCmd->GetArg( iArg ));
4034 _AString argMethod = argCmd.GetMethod();
4035 _AString argNbText = argCmd.GetArg( 1 );
4036 if ( argMethod.IsEmpty() && !argCmd.IsEmpty() )
4037 hyp->setCreationArg( 1, argCmd.GetString() ); // e.g. Parameters(smesh.SIMPLE)
4039 hyp->AddArgMethod( argMethod,
4040 argNbText.IsIntegerValue() ? argNbText.IntegerValue() : 1 );
4042 myType2Hyp[ hypType ] = hyp;
4049 //================================================================================
4051 * \brief Returns a new hypothesis initialized according to the read information
4053 //================================================================================
4055 Handle(_pyHypothesis)
4056 _pyHypothesisReader::GetHypothesis(const _AString& hypType,
4057 const Handle(_pyCommand)& creationCmd) const
4059 Handle(_pyHypothesis) resHyp, sampleHyp;
4061 map<_AString, Handle(_pyHypothesis)>::const_iterator type2hyp = myType2Hyp.find( hypType );
4062 if ( type2hyp != myType2Hyp.end() )
4063 sampleHyp = type2hyp->second;
4065 if ( sampleHyp.IsNull() )
4067 resHyp = new _pyHypothesis(creationCmd);
4071 if ( sampleHyp->IsAlgo() )
4072 resHyp = new _pyAlgorithm( creationCmd );
4074 resHyp = new _pyHypothesis(creationCmd);
4075 resHyp->Assign( sampleHyp, _pyID() );