mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-15 21:21:21 +05:00
0021014: EDF 1583 SMESH: Improvement of the Python Dump for the creation of groups
1) fix dump of Filter_i::SetCriteria() 2) + void Filter_i::AddWaiter( TPredicateChangeWaiter* waiter ); + void Filter_i::RemoveWaiter( TPredicateChangeWaiter* waiter ); 3) + const char* SMESH::FunctorTypeToString(SMESH::FunctorType ft); + SMESH::FunctorType SMESH::StringToFunctorType(const char* str);
This commit is contained in:
parent
fe2d0f0f5c
commit
a39a0e1f84
@ -2292,6 +2292,9 @@ void Filter_i::SetPredicate( Predicate_ptr thePredicate )
|
|||||||
myPredicate->Register();
|
myPredicate->Register();
|
||||||
TPythonDump()<<this<<".SetPredicate("<<myPredicate<<")";
|
TPythonDump()<<this<<".SetPredicate("<<myPredicate<<")";
|
||||||
}
|
}
|
||||||
|
std::list<TPredicateChangeWaiter*>::iterator i = myWaiters.begin();
|
||||||
|
for ( ; i != myWaiters.end(); ++i )
|
||||||
|
(*i)->PredicateChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
@ -2400,26 +2403,25 @@ SMESH::long_array* ::Filter_i::GetMeshInfo()
|
|||||||
SMDS_ElemIteratorPtr it;
|
SMDS_ElemIteratorPtr it;
|
||||||
switch( GetElementType() )
|
switch( GetElementType() )
|
||||||
{
|
{
|
||||||
case SMDSAbs_Node:
|
case SMDSAbs_Node:
|
||||||
collectMeshInfo<const SMDS_MeshNode*>(aMesh->nodesIterator(),myPredicate,aRes);
|
collectMeshInfo<const SMDS_MeshNode*>(aMesh->nodesIterator(),myPredicate,aRes);
|
||||||
break;
|
break;
|
||||||
case SMDSAbs_Edge:
|
case SMDSAbs_Edge:
|
||||||
collectMeshInfo<const SMDS_MeshElement*>(aMesh->edgesIterator(),myPredicate,aRes);
|
collectMeshInfo<const SMDS_MeshElement*>(aMesh->edgesIterator(),myPredicate,aRes);
|
||||||
break;
|
break;
|
||||||
case SMDSAbs_Face:
|
case SMDSAbs_Face:
|
||||||
collectMeshInfo<const SMDS_MeshElement*>(aMesh->facesIterator(),myPredicate,aRes);
|
collectMeshInfo<const SMDS_MeshElement*>(aMesh->facesIterator(),myPredicate,aRes);
|
||||||
break;
|
break;
|
||||||
case SMDSAbs_Volume:
|
case SMDSAbs_Volume:
|
||||||
collectMeshInfo<const SMDS_MeshElement*>(aMesh->volumesIterator(),myPredicate,aRes);
|
collectMeshInfo<const SMDS_MeshElement*>(aMesh->volumesIterator(),myPredicate,aRes);
|
||||||
break;
|
break;
|
||||||
case SMDSAbs_All:
|
case SMDSAbs_All:
|
||||||
default:
|
default:
|
||||||
collectMeshInfo<const SMDS_MeshElement*>(aMesh->elementsIterator(),myPredicate,aRes);
|
collectMeshInfo<const SMDS_MeshElement*>(aMesh->elementsIterator(),myPredicate,aRes);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return aRes._retn();
|
return aRes._retn();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2433,8 +2435,20 @@ SMESH::long_array* ::Filter_i::GetMeshInfo()
|
|||||||
SMESH::array_of_ElementType* Filter_i::GetTypes()
|
SMESH::array_of_ElementType* Filter_i::GetTypes()
|
||||||
{
|
{
|
||||||
SMESH::array_of_ElementType_var types = new SMESH::array_of_ElementType;
|
SMESH::array_of_ElementType_var types = new SMESH::array_of_ElementType;
|
||||||
types->length( 1 );
|
|
||||||
types[0] = GetElementType();
|
// check if any element passes through the filter
|
||||||
|
if ( !CORBA::is_nil(myMesh) && myPredicate )
|
||||||
|
{
|
||||||
|
const SMDS_Mesh* aMesh = MeshPtr2SMDSMesh(myMesh);
|
||||||
|
SMDS_ElemIteratorPtr it = aMesh->elementsIterator( SMDSAbs_ElementType( GetElementType() ));
|
||||||
|
bool satisfies = false;
|
||||||
|
while ( !satisfies && it->more() )
|
||||||
|
satisfies = myPredicate->IsSatisfy( it->next()->GetID() );
|
||||||
|
if ( satisfies ) {
|
||||||
|
types->length( 1 );
|
||||||
|
types[0] = GetElementType();
|
||||||
|
}
|
||||||
|
}
|
||||||
return types._retn();
|
return types._retn();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2448,6 +2462,29 @@ SMESH::SMESH_Mesh_ptr Filter_i::GetMesh()
|
|||||||
return SMESH_Mesh::_duplicate( myMesh );
|
return SMESH_Mesh::_duplicate( myMesh );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//================================================================================
|
||||||
|
/*!
|
||||||
|
* \brief Stores an object to be notified on change of predicate
|
||||||
|
*/
|
||||||
|
//================================================================================
|
||||||
|
|
||||||
|
void Filter_i::AddWaiter( TPredicateChangeWaiter* waiter )
|
||||||
|
{
|
||||||
|
if ( waiter )
|
||||||
|
myWaiters.push_back( waiter );
|
||||||
|
}
|
||||||
|
|
||||||
|
//================================================================================
|
||||||
|
/*!
|
||||||
|
* \brief Removes an object to be notified on change of predicate
|
||||||
|
*/
|
||||||
|
//================================================================================
|
||||||
|
|
||||||
|
void Filter_i::RemoveWaiter( TPredicateChangeWaiter* waiter )
|
||||||
|
{
|
||||||
|
myWaiters.remove( waiter );
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
// name : getCriteria
|
// name : getCriteria
|
||||||
// Purpose : Retrieve criterions from predicate
|
// Purpose : Retrieve criterions from predicate
|
||||||
@ -2748,17 +2785,20 @@ CORBA::Boolean Filter_i::SetCriteria( const SMESH::Filter::Criteria& theCriteria
|
|||||||
|
|
||||||
{
|
{
|
||||||
TPythonDump pd;
|
TPythonDump pd;
|
||||||
pd << "aCriterion = SMESH.Filter.Criterion(" << aCriterion << "," << aCompare
|
pd << "aCriterion = SMESH.Filter.Criterion("
|
||||||
<< "," << aThreshold << ",'" << aThresholdStr;
|
<< aCriterion << ", "
|
||||||
if (aThresholdID && strlen(aThresholdID))
|
<< aCompare << ", "
|
||||||
//pd << "',salome.ObjectToID(" << aThresholdID
|
<< aThreshold << ", '"
|
||||||
pd << "','" << aThresholdID
|
<< aThresholdStr << "', '";
|
||||||
<< "'," << aUnary << "," << aBinary << "," << aTolerance
|
if (aThresholdID) pd << aThresholdID;
|
||||||
<< "," << aTypeOfElem << "," << aPrecision << ")";
|
pd << "', "
|
||||||
else
|
<< aUnary << ", "
|
||||||
pd << "',''," << aUnary << "," << aBinary << "," << aTolerance
|
<< aBinary << ", "
|
||||||
<< "," << aTypeOfElem << "," << aPrecision << ")";
|
<< aTolerance << ", "
|
||||||
|
<< aTypeOfElem << ", "
|
||||||
|
<< aPrecision << ")";
|
||||||
}
|
}
|
||||||
|
TPythonDump pd;
|
||||||
|
|
||||||
SMESH::Predicate_ptr aPredicate = SMESH::Predicate::_nil();
|
SMESH::Predicate_ptr aPredicate = SMESH::Predicate::_nil();
|
||||||
SMESH::NumericalFunctor_ptr aFunctor = SMESH::NumericalFunctor::_nil();
|
SMESH::NumericalFunctor_ptr aFunctor = SMESH::NumericalFunctor::_nil();
|
||||||
@ -2968,10 +3008,10 @@ CORBA::Boolean Filter_i::SetCriteria( const SMESH::Filter::Criteria& theCriteria
|
|||||||
// logical op
|
// logical op
|
||||||
aPredicates.push_back( aPredicate );
|
aPredicates.push_back( aPredicate );
|
||||||
aBinaries.push_back( aBinary );
|
aBinaries.push_back( aBinary );
|
||||||
TPythonDump()<<"aCriteria.append(aCriterion)";
|
pd <<"aCriteria.append(aCriterion)";
|
||||||
|
|
||||||
} // end of for
|
} // end of for
|
||||||
TPythonDump()<<this<<".SetCriteria(aCriteria)";
|
TPythonDump pd; pd<<this<<".SetCriteria(aCriteria)";
|
||||||
|
|
||||||
// CREATE ONE PREDICATE FROM PREVIOUSLY CREATED MAP
|
// CREATE ONE PREDICATE FROM PREVIOUSLY CREATED MAP
|
||||||
|
|
||||||
@ -3613,7 +3653,7 @@ CORBA::Boolean FilterLibrary_i::Replace( const char* theFilterName,
|
|||||||
{
|
{
|
||||||
aFilterItem.ReplaceElement( aNewItem );
|
aFilterItem.ReplaceElement( aNewItem );
|
||||||
if(Filter_i* aFilter = DownCast<Filter_i*>(theFilter))
|
if(Filter_i* aFilter = DownCast<Filter_i*>(theFilter))
|
||||||
TPythonDump()<<this<<".Replace('"<<theFilterName<<"',"<<theNewName<<"',"<<aFilter<<")";
|
TPythonDump()<<this<<".Replace('"<<theFilterName<<"','"<<theNewName<<"',"<<aFilter<<")";
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -3718,3 +3758,60 @@ string_array* FilterLibrary_i::GetAllNames()
|
|||||||
|
|
||||||
return aResArray._retn();
|
return aResArray._retn();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//================================================================================
|
||||||
|
/*!
|
||||||
|
* \brief Return an array of strings corresponding to items of enum FunctorType
|
||||||
|
*/
|
||||||
|
//================================================================================
|
||||||
|
|
||||||
|
static const char** getFunctNames()
|
||||||
|
{
|
||||||
|
static const char* functName[ SMESH::FT_Undefined + 1 ] = {
|
||||||
|
// If this line doesn't compile, this means that enum FunctorType has changed and
|
||||||
|
// it's necessary to update this array accordingly (refer to SMESH_Filter.idl)
|
||||||
|
"FT_AspectRatio", "FT_AspectRatio3D", "FT_Warping", "FT_MinimumAngle",
|
||||||
|
"FT_Taper", "FT_Skew", "FT_Area", "FT_Volume3D", "FT_MaxElementLength2D",
|
||||||
|
"FT_MaxElementLength3D", "FT_FreeBorders", "FT_FreeEdges", "FT_FreeNodes",
|
||||||
|
"FT_FreeFaces", "FT_MultiConnection", "FT_MultiConnection2D", "FT_Length",
|
||||||
|
"FT_Length2D", "FT_BelongToGeom", "FT_BelongToPlane", "FT_BelongToCylinder",
|
||||||
|
"FT_BelongToGenSurface", "FT_LyingOnGeom", "FT_RangeOfIds", "FT_BadOrientedVolume",
|
||||||
|
"FT_BareBorderVolume", "FT_BareBorderFace", "FT_OverConstrainedVolume",
|
||||||
|
"FT_OverConstrainedFace", "FT_LinearOrQuadratic", "FT_GroupColor", "FT_ElemGeomType",
|
||||||
|
"FT_CoplanarFaces", "FT_LessThan", "FT_MoreThan", "FT_EqualTo", "FT_LogicalNOT",
|
||||||
|
"FT_LogicalAND", "FT_LogicalOR", "FT_Undefined" };
|
||||||
|
return functName;
|
||||||
|
}
|
||||||
|
|
||||||
|
//================================================================================
|
||||||
|
/*!
|
||||||
|
* \brief Return a string corresponding to an item of enum FunctorType
|
||||||
|
*/
|
||||||
|
//================================================================================
|
||||||
|
|
||||||
|
const char* SMESH::FunctorTypeToString(SMESH::FunctorType ft)
|
||||||
|
{
|
||||||
|
if ( ft < 0 || ft > SMESH::FT_Undefined )
|
||||||
|
return 0;
|
||||||
|
return getFunctNames()[ ft ];
|
||||||
|
}
|
||||||
|
|
||||||
|
//================================================================================
|
||||||
|
/*!
|
||||||
|
* \brief Converts a string to FunctorType. This is reverse of FunctorTypeToString()
|
||||||
|
*/
|
||||||
|
//================================================================================
|
||||||
|
|
||||||
|
SMESH::FunctorType SMESH::StringToFunctorType(const char* str)
|
||||||
|
{
|
||||||
|
std::string name( str + 3 ); // skip "FT_"
|
||||||
|
const char** functNames = getFunctNames();
|
||||||
|
int ft = SMESH::FT_Undefined;
|
||||||
|
for ( ; ft >= 0; --ft )
|
||||||
|
if ( name == ( functNames[ft] + 3 ))
|
||||||
|
break;
|
||||||
|
|
||||||
|
//ASSERT( strcmp( str, FunctorTypeToString( SMESH::FunctorType( ft ))) == 0 );
|
||||||
|
|
||||||
|
return SMESH::FunctorType( ft );
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user