mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 08:39:16 +05:00
851 lines
29 KiB
C++
851 lines
29 KiB
C++
|
// SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
|
||
|
//
|
||
|
// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
||
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
||
|
//
|
||
|
// This library is free software; you can redistribute it and/or
|
||
|
// modify it under the terms of the GNU Lesser General Public
|
||
|
// License as published by the Free Software Foundation; either
|
||
|
// version 2.1 of the License.
|
||
|
//
|
||
|
// This library is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
// Lesser General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU Lesser General Public
|
||
|
// License along with this library; if not, write to the Free Software
|
||
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
//
|
||
|
// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
|
||
|
//
|
||
|
//
|
||
|
// File : SMESH_Gen_i_1.cxx
|
||
|
// Created : Thu Oct 21 17:24:06 2004
|
||
|
// Author : Edward AGAPOV (eap)
|
||
|
// Module : SMESH
|
||
|
// $Header:
|
||
|
|
||
|
#include "SMESH_Gen_i.hxx"
|
||
|
|
||
|
#include "SMESH_Mesh_i.hxx"
|
||
|
#include "SMESH_Hypothesis_i.hxx"
|
||
|
#include "SMESH_Algo_i.hxx"
|
||
|
#include "SMESH_Group_i.hxx"
|
||
|
|
||
|
#include CORBA_CLIENT_HEADER(SALOME_ModuleCatalog)
|
||
|
|
||
|
#include "utilities.h"
|
||
|
#include "Utils_ExceptHandlers.hxx"
|
||
|
|
||
|
#include <TCollection_AsciiString.hxx>
|
||
|
|
||
|
#ifdef _DEBUG_
|
||
|
static int MYDEBUG = 0;
|
||
|
#else
|
||
|
static int MYDEBUG = 0;
|
||
|
#endif
|
||
|
|
||
|
// Tags definition ===========================================================
|
||
|
// Top level
|
||
|
long Tag_HypothesisRoot = 1; // hypotheses root
|
||
|
long Tag_AlgorithmsRoot = 2; // algorithms root
|
||
|
// Mesh/Submesh
|
||
|
long Tag_RefOnShape = 1; // references to shape
|
||
|
long Tag_RefOnAppliedHypothesis = 2; // applied hypotheses root
|
||
|
long Tag_RefOnAppliedAlgorithms = 3; // applied algorithms root
|
||
|
// Mesh only
|
||
|
long Tag_SubMeshOnVertex = 4; // sub-meshes roots by type
|
||
|
long Tag_SubMeshOnEdge = 5; // ...
|
||
|
long Tag_SubMeshOnWire = 6; // ...
|
||
|
long Tag_SubMeshOnFace = 7; // ...
|
||
|
long Tag_SubMeshOnShell = 8; // ...
|
||
|
long Tag_SubMeshOnSolid = 9; // ...
|
||
|
long Tag_SubMeshOnCompound = 10; // ...
|
||
|
long Tag_NodeGroups = 11; // Group roots by type
|
||
|
long Tag_EdgeGroups = 12; // ...
|
||
|
long Tag_FaceGroups = 13; // ...
|
||
|
long Tag_VolumeGroups = 14; // ...
|
||
|
// ===========================================================================
|
||
|
|
||
|
//=============================================================================
|
||
|
/*!
|
||
|
* Get...Tag [ static ]
|
||
|
*
|
||
|
* Methods which determine SMESH data model structure
|
||
|
*/
|
||
|
//=============================================================================
|
||
|
|
||
|
long SMESH_Gen_i::GetHypothesisRootTag()
|
||
|
{
|
||
|
return Tag_HypothesisRoot;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetAlgorithmsRootTag()
|
||
|
{
|
||
|
return Tag_AlgorithmsRoot;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetRefOnShapeTag()
|
||
|
{
|
||
|
return Tag_RefOnShape;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetRefOnAppliedHypothesisTag()
|
||
|
{
|
||
|
return Tag_RefOnAppliedHypothesis;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetRefOnAppliedAlgorithmsTag()
|
||
|
{
|
||
|
return Tag_RefOnAppliedAlgorithms;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetSubMeshOnVertexTag()
|
||
|
{
|
||
|
return Tag_SubMeshOnVertex;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetSubMeshOnEdgeTag()
|
||
|
{
|
||
|
return Tag_SubMeshOnEdge;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetSubMeshOnFaceTag()
|
||
|
{
|
||
|
return Tag_SubMeshOnFace;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetSubMeshOnSolidTag()
|
||
|
{
|
||
|
return Tag_SubMeshOnSolid;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetSubMeshOnCompoundTag()
|
||
|
{
|
||
|
return Tag_SubMeshOnCompound;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetSubMeshOnWireTag()
|
||
|
{
|
||
|
return Tag_SubMeshOnWire;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetSubMeshOnShellTag()
|
||
|
{
|
||
|
return Tag_SubMeshOnShell;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetNodeGroupsTag()
|
||
|
{
|
||
|
return Tag_NodeGroups;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetEdgeGroupsTag()
|
||
|
{
|
||
|
return Tag_EdgeGroups;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetFaceGroupsTag()
|
||
|
{
|
||
|
return Tag_FaceGroups;
|
||
|
}
|
||
|
|
||
|
long SMESH_Gen_i::GetVolumeGroupsTag()
|
||
|
{
|
||
|
return Tag_VolumeGroups;
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
/*!
|
||
|
* SMESH_Gen_i::CanPublishInStudy
|
||
|
*
|
||
|
* Returns true if object can be published in the study
|
||
|
*/
|
||
|
//=============================================================================
|
||
|
|
||
|
bool SMESH_Gen_i::CanPublishInStudy(CORBA::Object_ptr theIOR)
|
||
|
{
|
||
|
if(MYDEBUG) MESSAGE("CanPublishInStudy");
|
||
|
SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_narrow(theIOR);
|
||
|
if( !aMesh->_is_nil() )
|
||
|
return true;
|
||
|
|
||
|
SMESH::SMESH_subMesh_var aSubMesh = SMESH::SMESH_subMesh::_narrow(theIOR);
|
||
|
if( !aSubMesh->_is_nil() )
|
||
|
return true;
|
||
|
|
||
|
SMESH::SMESH_Hypothesis_var aHyp = SMESH::SMESH_Hypothesis::_narrow(theIOR);
|
||
|
if( !aHyp->_is_nil() )
|
||
|
return true;
|
||
|
|
||
|
SMESH::SMESH_GroupBase_var aGroup = SMESH::SMESH_GroupBase::_narrow(theIOR);
|
||
|
if( !aGroup->_is_nil() )
|
||
|
return true;
|
||
|
|
||
|
if(MYDEBUG) MESSAGE("CanPublishInStudy--CANT");
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : ObjectToSObject
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
SALOMEDS::SObject_ptr SMESH_Gen_i::ObjectToSObject(SALOMEDS::Study_ptr theStudy,
|
||
|
CORBA::Object_ptr theObject)
|
||
|
{
|
||
|
SALOMEDS::SObject_var aSO;
|
||
|
if ( !CORBA::is_nil( theStudy ) && !CORBA::is_nil( theObject ))
|
||
|
aSO = theStudy->FindObjectIOR( SMESH_Gen_i::GetORB()->object_to_string( theObject ) );
|
||
|
return aSO._retn();
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : objectToServant
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
template<typename T> static inline T* objectToServant( CORBA::Object_ptr theIOR )
|
||
|
{
|
||
|
return dynamic_cast<T*>( SMESH_Gen_i::GetServant( theIOR ).in() );
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : ShapeToGeomObject
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
GEOM::GEOM_Object_ptr SMESH_Gen_i::ShapeToGeomObject (const TopoDS_Shape& theShape )
|
||
|
{
|
||
|
GEOM::GEOM_Object_var aShapeObj;
|
||
|
if ( !theShape.IsNull() ) {
|
||
|
GEOM_Client* aClient = GetShapeReader();
|
||
|
TCollection_AsciiString IOR;
|
||
|
if ( aClient && aClient->Find( theShape, IOR ))
|
||
|
aShapeObj = GEOM::GEOM_Object::_narrow
|
||
|
( GetORB()->string_to_object( IOR.ToCString() ) );
|
||
|
}
|
||
|
return aShapeObj._retn();
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : GeomObjectToShape
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
TopoDS_Shape SMESH_Gen_i::GeomObjectToShape(GEOM::GEOM_Object_ptr theGeomObject)
|
||
|
{
|
||
|
TopoDS_Shape S;
|
||
|
if ( !theGeomObject->_is_nil() ) {
|
||
|
GEOM_Client* aClient = GetShapeReader();
|
||
|
GEOM::GEOM_Gen_var aGeomEngine = GetGeomEngine();
|
||
|
if ( aClient && !aGeomEngine->_is_nil () )
|
||
|
S = aClient->GetShape( aGeomEngine, theGeomObject );
|
||
|
}
|
||
|
return S;
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : publish
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
static SALOMEDS::SObject_ptr publish(SALOMEDS::Study_ptr theStudy,
|
||
|
CORBA::Object_ptr theIOR,
|
||
|
SALOMEDS::SObject_ptr theFatherObject,
|
||
|
const int theTag = 0,
|
||
|
const char* thePixMap = 0,
|
||
|
const bool theSelectable = true)
|
||
|
{
|
||
|
SALOMEDS::SObject_var SO = SMESH_Gen_i::ObjectToSObject( theStudy, theIOR );
|
||
|
SALOMEDS::StudyBuilder_var aStudyBuilder = theStudy->NewBuilder();
|
||
|
if ( SO->_is_nil() ) {
|
||
|
if ( theTag == 0 )
|
||
|
SO = aStudyBuilder->NewObject( theFatherObject );
|
||
|
else if ( !theFatherObject->FindSubObject( theTag, SO ))
|
||
|
SO = aStudyBuilder->NewObjectToTag( theFatherObject, theTag );
|
||
|
}
|
||
|
|
||
|
SALOMEDS::GenericAttribute_var anAttr;
|
||
|
if ( !CORBA::is_nil( theIOR )) {
|
||
|
anAttr = aStudyBuilder->FindOrCreateAttribute( SO, "AttributeIOR" );
|
||
|
SALOMEDS::AttributeIOR::_narrow(anAttr)->SetValue
|
||
|
( SMESH_Gen_i::GetORB()->object_to_string( theIOR ) );
|
||
|
}
|
||
|
if ( thePixMap ) {
|
||
|
anAttr = aStudyBuilder->FindOrCreateAttribute( SO, "AttributePixMap" );
|
||
|
SALOMEDS::AttributePixMap::_narrow( anAttr )->SetPixMap( thePixMap );
|
||
|
}
|
||
|
if ( !theSelectable ) {
|
||
|
anAttr = aStudyBuilder->FindOrCreateAttribute( SO, "AttributeSelectable" );
|
||
|
SALOMEDS::AttributeSelectable::_narrow( anAttr )->SetSelectable( false );
|
||
|
}
|
||
|
return SO._retn();
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : setName
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
void SMESH_Gen_i::SetName(SALOMEDS::SObject_ptr theSObject,
|
||
|
const char* theName,
|
||
|
const char* theDefaultName)
|
||
|
{
|
||
|
if ( !theSObject->_is_nil() ) {
|
||
|
SALOMEDS::StudyBuilder_var aStudyBuilder = theSObject->GetStudy()->NewBuilder();
|
||
|
SALOMEDS::GenericAttribute_var anAttr =
|
||
|
aStudyBuilder->FindOrCreateAttribute( theSObject, "AttributeName" );
|
||
|
SALOMEDS::AttributeName_var aNameAttr = SALOMEDS::AttributeName::_narrow( anAttr );
|
||
|
if ( theName && strlen( theName ) != 0 )
|
||
|
aNameAttr->SetValue( theName );
|
||
|
else {
|
||
|
CORBA::String_var curName = CORBA::string_dup( aNameAttr->Value() );
|
||
|
if ( strlen( curName ) == 0 ) {
|
||
|
TCollection_AsciiString aName( (char*) theDefaultName );
|
||
|
aName += TCollection_AsciiString("_") + TCollection_AsciiString( theSObject->Tag() );
|
||
|
aNameAttr->SetValue( aName.ToCString() );
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : addReference
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
static void addReference (SALOMEDS::Study_ptr theStudy,
|
||
|
SALOMEDS::SObject_ptr theSObject,
|
||
|
CORBA::Object_ptr theToObject,
|
||
|
int theTag = 0)
|
||
|
{
|
||
|
SALOMEDS::SObject_var aToObjSO = SMESH_Gen_i::ObjectToSObject( theStudy, theToObject );
|
||
|
if ( !aToObjSO->_is_nil() && !theSObject->_is_nil() ) {
|
||
|
SALOMEDS::StudyBuilder_var aStudyBuilder = theStudy->NewBuilder();
|
||
|
SALOMEDS::SObject_var aReferenceSO;
|
||
|
if ( !theTag ) {
|
||
|
bool isReferred = false;
|
||
|
SALOMEDS::ChildIterator_var anIter = theStudy->NewChildIterator( theSObject );
|
||
|
for ( ; !isReferred && anIter->More(); anIter->Next() ) {
|
||
|
if ( anIter->Value()->ReferencedObject( aReferenceSO ) &&
|
||
|
strcmp( aReferenceSO->GetID(), aToObjSO->GetID() ) == 0 )
|
||
|
isReferred = true;
|
||
|
}
|
||
|
if ( !isReferred ) {
|
||
|
aReferenceSO = aStudyBuilder->NewObject( theSObject );
|
||
|
aStudyBuilder->Addreference( aReferenceSO, aToObjSO );
|
||
|
}
|
||
|
}
|
||
|
else {
|
||
|
if ( !theSObject->FindSubObject( theTag, aReferenceSO ))
|
||
|
aReferenceSO = aStudyBuilder->NewObjectToTag( theSObject, theTag );
|
||
|
aStudyBuilder->Addreference( aReferenceSO, aToObjSO );
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
/*!
|
||
|
* SMESH_Gen_i::PublishInStudy
|
||
|
*
|
||
|
* Publish object in the study
|
||
|
*/
|
||
|
//=============================================================================
|
||
|
|
||
|
SALOMEDS::SObject_ptr SMESH_Gen_i::PublishInStudy(SALOMEDS::Study_ptr theStudy,
|
||
|
SALOMEDS::SObject_ptr theSObject,
|
||
|
CORBA::Object_ptr theIOR,
|
||
|
const char* theName)
|
||
|
throw (SALOME::SALOME_Exception)
|
||
|
{
|
||
|
Unexpect aCatch(SALOME_SalomeException);
|
||
|
SALOMEDS::SObject_var aSO;
|
||
|
if ( CORBA::is_nil( theStudy ) || CORBA::is_nil( theIOR ))
|
||
|
return aSO._retn();
|
||
|
if(MYDEBUG) MESSAGE("PublishInStudy");
|
||
|
|
||
|
// Publishing a mesh
|
||
|
SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_narrow( theIOR );
|
||
|
if( !aMesh->_is_nil() )
|
||
|
aSO = PublishMesh( theStudy, aMesh, theName );
|
||
|
|
||
|
// Publishing a sub-mesh
|
||
|
SMESH::SMESH_subMesh_var aSubMesh = SMESH::SMESH_subMesh::_narrow( theIOR );
|
||
|
if( aSO->_is_nil() && !aSubMesh->_is_nil() ) {
|
||
|
GEOM::GEOM_Object_var aShapeObject = aSubMesh->GetSubShape();
|
||
|
aMesh = aSubMesh->GetFather();
|
||
|
aSO = PublishSubMesh( theStudy, aMesh, aSubMesh, aShapeObject, theName );
|
||
|
}
|
||
|
|
||
|
// Publishing a hypothesis or algorithm
|
||
|
SMESH::SMESH_Hypothesis_var aHyp = SMESH::SMESH_Hypothesis::_narrow( theIOR );
|
||
|
if ( aSO->_is_nil() && !aHyp->_is_nil() )
|
||
|
aSO = PublishHypothesis( theStudy, aHyp );
|
||
|
|
||
|
// Publishing a group
|
||
|
SMESH::SMESH_GroupBase_var aGroup = SMESH::SMESH_GroupBase::_narrow(theIOR);
|
||
|
if ( aSO->_is_nil() && !aGroup->_is_nil() ) {
|
||
|
GEOM::GEOM_Object_var aShapeObject;
|
||
|
aMesh = aGroup->GetMesh();
|
||
|
aSO = PublishGroup( theStudy, aMesh, aGroup, aShapeObject, theName );
|
||
|
}
|
||
|
if(MYDEBUG) MESSAGE("PublishInStudy_END");
|
||
|
|
||
|
return aSO._retn();
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : PublishComponent
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
SALOMEDS::SComponent_ptr SMESH_Gen_i::PublishComponent(SALOMEDS::Study_ptr theStudy)
|
||
|
{
|
||
|
if ( CORBA::is_nil( theStudy ))
|
||
|
return SALOMEDS::SComponent::_nil();
|
||
|
if(MYDEBUG) MESSAGE("PublishComponent");
|
||
|
|
||
|
SALOMEDS::SComponent_var father =
|
||
|
SALOMEDS::SComponent::_narrow( theStudy->FindComponent( ComponentDataType() ) );
|
||
|
if ( !CORBA::is_nil( father ) )
|
||
|
return father._retn();
|
||
|
|
||
|
SALOME_ModuleCatalog::ModuleCatalog_var aCat =
|
||
|
SALOME_ModuleCatalog::ModuleCatalog::_narrow( GetNS()->Resolve("/Kernel/ModulCatalog") );
|
||
|
if ( CORBA::is_nil( aCat ) )
|
||
|
return father._retn();
|
||
|
|
||
|
SALOME_ModuleCatalog::Acomponent_var aComp = aCat->GetComponent( ComponentDataType() );
|
||
|
if ( CORBA::is_nil( aComp ) )
|
||
|
return father._retn();
|
||
|
|
||
|
SALOMEDS::StudyBuilder_var aStudyBuilder = theStudy->NewBuilder();
|
||
|
SALOMEDS::GenericAttribute_var anAttr;
|
||
|
SALOMEDS::AttributePixMap_var aPixmap;
|
||
|
|
||
|
father = aStudyBuilder->NewComponent( ComponentDataType() );
|
||
|
aStudyBuilder->DefineComponentInstance( father, SMESH_Gen::_this() );
|
||
|
anAttr = aStudyBuilder->FindOrCreateAttribute( father, "AttributePixMap" );
|
||
|
aPixmap = SALOMEDS::AttributePixMap::_narrow( anAttr );
|
||
|
aPixmap ->SetPixMap( "ICON_OBJBROWSER_SMESH" );
|
||
|
SetName( father, aComp->componentusername(), "MESH" );
|
||
|
if(MYDEBUG) MESSAGE("PublishComponent--END");
|
||
|
|
||
|
return father._retn();
|
||
|
}
|
||
|
|
||
|
//=============================================================================
|
||
|
/*!
|
||
|
* findMaxChildTag [ static internal ]
|
||
|
*
|
||
|
* Finds maximum child tag for the given object
|
||
|
*/
|
||
|
//=============================================================================
|
||
|
|
||
|
static long findMaxChildTag( SALOMEDS::SObject_ptr theSObject )
|
||
|
{
|
||
|
long aTag = 0;
|
||
|
if ( !theSObject->_is_nil() ) {
|
||
|
SALOMEDS::Study_var aStudy = theSObject->GetStudy();
|
||
|
if ( !aStudy->_is_nil() ) {
|
||
|
SALOMEDS::ChildIterator_var anIter = aStudy->NewChildIterator( theSObject );
|
||
|
for ( ; anIter->More(); anIter->Next() ) {
|
||
|
long nTag = anIter->Value()->Tag();
|
||
|
if ( nTag > aTag )
|
||
|
aTag = nTag;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return aTag;
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : PublishMesh
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
SALOMEDS::SObject_ptr SMESH_Gen_i::PublishMesh (SALOMEDS::Study_ptr theStudy,
|
||
|
SMESH::SMESH_Mesh_ptr theMesh,
|
||
|
const char* theName)
|
||
|
{
|
||
|
if ( CORBA::is_nil( theStudy ) ||
|
||
|
CORBA::is_nil( theMesh ))
|
||
|
return SALOMEDS::SComponent::_nil();
|
||
|
if(MYDEBUG) MESSAGE("PublishMesh--IN");
|
||
|
|
||
|
// find or publish a mesh
|
||
|
|
||
|
SALOMEDS::SObject_var aMeshSO = ObjectToSObject( theStudy, theMesh );
|
||
|
if ( aMeshSO->_is_nil() )
|
||
|
{
|
||
|
SALOMEDS::SComponent_var father = PublishComponent( theStudy );
|
||
|
if ( father->_is_nil() )
|
||
|
return aMeshSO._retn();
|
||
|
|
||
|
// Find correct free tag
|
||
|
long aTag = findMaxChildTag( father.in() );
|
||
|
if ( aTag <= GetAlgorithmsRootTag() )
|
||
|
aTag = GetAlgorithmsRootTag() + 1;
|
||
|
else
|
||
|
aTag++;
|
||
|
|
||
|
aMeshSO = publish (theStudy, theMesh, father, aTag, "ICON_SMESH_TREE_MESH" );
|
||
|
if ( aMeshSO->_is_nil() )
|
||
|
return aMeshSO._retn();
|
||
|
}
|
||
|
SetName( aMeshSO, theName, "Mesh" );
|
||
|
|
||
|
// Add shape reference
|
||
|
|
||
|
GEOM::GEOM_Object_var aShapeObject = theMesh->GetShapeToMesh();
|
||
|
if ( !CORBA::is_nil( aShapeObject )) {
|
||
|
addReference( theStudy, aMeshSO, aShapeObject, GetRefOnShapeTag() );
|
||
|
|
||
|
// Publish global hypotheses
|
||
|
|
||
|
SMESH::ListOfHypothesis * hypList = theMesh->GetHypothesisList( aShapeObject );
|
||
|
if ( hypList )
|
||
|
for ( int i = 0; i < hypList->length(); i++ ) {
|
||
|
SMESH::SMESH_Hypothesis_var aHyp = SMESH::SMESH_Hypothesis::_narrow( (*hypList)[ i ]);
|
||
|
PublishHypothesis( theStudy, aHyp );
|
||
|
AddHypothesisToShape( theStudy, theMesh, aShapeObject, aHyp );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Publish submeshes
|
||
|
|
||
|
SMESH_Mesh_i* mesh_i = objectToServant<SMESH_Mesh_i>( theMesh );
|
||
|
if ( !mesh_i )
|
||
|
return aMeshSO._retn();
|
||
|
map<int, SMESH_subMesh_i*>& subMap = mesh_i->_mapSubMesh_i;
|
||
|
map<int, SMESH_subMesh_i*>::iterator subIt = subMap.begin();
|
||
|
for ( ; subIt != subMap.end(); subIt++ ) {
|
||
|
SMESH::SMESH_subMesh_ptr aSubMesh = (*subIt).second->_this();
|
||
|
if ( !CORBA::is_nil( aSubMesh )) {
|
||
|
aShapeObject = aSubMesh->GetSubShape();
|
||
|
PublishSubMesh( theStudy, theMesh, aSubMesh, aShapeObject );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Publish groups
|
||
|
const map<int, SMESH::SMESH_GroupBase_ptr>& grMap = mesh_i->getGroups();
|
||
|
map<int, SMESH::SMESH_GroupBase_ptr>::const_iterator it = grMap.begin();
|
||
|
for ( ; it != grMap.end(); it++ )
|
||
|
{
|
||
|
SMESH::SMESH_GroupBase_ptr aGroup = (*it).second;
|
||
|
if ( !aGroup->_is_nil() ) {
|
||
|
GEOM::GEOM_Object_var aShapeObj;
|
||
|
SMESH::SMESH_GroupOnGeom_var aGeomGroup =
|
||
|
SMESH::SMESH_GroupOnGeom::_narrow( aGroup );
|
||
|
if ( !aGeomGroup->_is_nil() )
|
||
|
aShapeObj = aGeomGroup->GetShape();
|
||
|
PublishGroup( theStudy, theMesh, aGroup, aShapeObj );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if(MYDEBUG) MESSAGE("PublishMesh_END");
|
||
|
return aMeshSO._retn();
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : PublishSubMesh
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
SALOMEDS::SObject_ptr SMESH_Gen_i::PublishSubMesh (SALOMEDS::Study_ptr theStudy,
|
||
|
SMESH::SMESH_Mesh_ptr theMesh,
|
||
|
SMESH::SMESH_subMesh_ptr theSubMesh,
|
||
|
GEOM::GEOM_Object_ptr theShapeObject,
|
||
|
const char* theName)
|
||
|
{
|
||
|
if (theStudy->_is_nil() || theMesh->_is_nil() ||
|
||
|
theSubMesh->_is_nil() || theShapeObject->_is_nil() )
|
||
|
return SALOMEDS::SObject::_nil();
|
||
|
|
||
|
SALOMEDS::SObject_var aSubMeshSO = ObjectToSObject( theStudy, theSubMesh );
|
||
|
if ( aSubMeshSO->_is_nil() )
|
||
|
{
|
||
|
SALOMEDS::SObject_var aMeshSO = ObjectToSObject( theStudy, theMesh );
|
||
|
if ( aMeshSO->_is_nil() ) {
|
||
|
aMeshSO = PublishMesh( theStudy, theMesh );
|
||
|
if ( aMeshSO->_is_nil())
|
||
|
return SALOMEDS::SObject::_nil();
|
||
|
}
|
||
|
// Find submesh sub-tree tag
|
||
|
long aRootTag;
|
||
|
char* aRootName = "";
|
||
|
switch ( theShapeObject->GetShapeType() ) {
|
||
|
case GEOM::VERTEX:
|
||
|
aRootTag = GetSubMeshOnVertexTag();
|
||
|
aRootName = "SubMeshes on Vertex";
|
||
|
break;
|
||
|
case GEOM::EDGE:
|
||
|
aRootTag = GetSubMeshOnEdgeTag();
|
||
|
aRootName = "SubMeshes on Edge";
|
||
|
break;
|
||
|
case GEOM::WIRE:
|
||
|
aRootTag = GetSubMeshOnWireTag();
|
||
|
aRootName = "SubMeshes on Wire";
|
||
|
break;
|
||
|
case GEOM::FACE:
|
||
|
aRootTag = GetSubMeshOnFaceTag();
|
||
|
aRootName = "SubMeshes on Face";
|
||
|
break;
|
||
|
case GEOM::SHELL:
|
||
|
aRootTag = GetSubMeshOnShellTag();
|
||
|
aRootName = "SubMeshes on Shell";
|
||
|
break;
|
||
|
case GEOM::SOLID:
|
||
|
aRootTag = GetSubMeshOnSolidTag();
|
||
|
aRootName = "SubMeshes on Solid";
|
||
|
break;
|
||
|
default:
|
||
|
aRootTag = GetSubMeshOnCompoundTag();
|
||
|
aRootName = "SubMeshes on Compound";
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
// Find or create submesh root
|
||
|
SALOMEDS::SObject_var aRootSO = publish (theStudy, CORBA::Object::_nil(),
|
||
|
aMeshSO, aRootTag, 0, false );
|
||
|
SetName( aRootSO, aRootName );
|
||
|
|
||
|
// Add new submesh to corresponding sub-tree
|
||
|
aSubMeshSO = publish (theStudy, theSubMesh, aRootSO, 0, "ICON_SMESH_TREE_MESH");
|
||
|
if ( aSubMeshSO->_is_nil() )
|
||
|
return aSubMeshSO._retn();
|
||
|
}
|
||
|
SetName( aSubMeshSO, theName, "SubMesh" );
|
||
|
|
||
|
// Add reference to theShapeObject
|
||
|
|
||
|
addReference( theStudy, aSubMeshSO, theShapeObject, 1 );
|
||
|
|
||
|
// Publish hypothesis
|
||
|
|
||
|
SMESH::ListOfHypothesis * hypList = theMesh->GetHypothesisList( theShapeObject );
|
||
|
if ( hypList )
|
||
|
for ( int i = 0; i < hypList->length(); i++ ) {
|
||
|
SMESH::SMESH_Hypothesis_var aHyp = SMESH::SMESH_Hypothesis::_narrow( (*hypList)[ i ]);
|
||
|
PublishHypothesis( theStudy, aHyp );
|
||
|
AddHypothesisToShape( theStudy, theMesh, theShapeObject, aHyp );
|
||
|
}
|
||
|
|
||
|
return aSubMeshSO._retn();
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : PublishGroup
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
SALOMEDS::SObject_ptr SMESH_Gen_i::PublishGroup (SALOMEDS::Study_ptr theStudy,
|
||
|
SMESH::SMESH_Mesh_ptr theMesh,
|
||
|
SMESH::SMESH_GroupBase_ptr theGroup,
|
||
|
GEOM::GEOM_Object_ptr theShapeObject,
|
||
|
const char* theName)
|
||
|
{
|
||
|
if (theStudy->_is_nil() || theMesh->_is_nil() || theGroup->_is_nil() )
|
||
|
return SALOMEDS::SObject::_nil();
|
||
|
|
||
|
SALOMEDS::SObject_var aGroupSO = ObjectToSObject( theStudy, theGroup );
|
||
|
if ( aGroupSO->_is_nil() )
|
||
|
{
|
||
|
SALOMEDS::SObject_var aMeshSO = ObjectToSObject( theStudy, theMesh );
|
||
|
if ( aMeshSO->_is_nil() ) {
|
||
|
aMeshSO = PublishInStudy( theStudy, SALOMEDS::SObject::_nil(), theMesh, "");
|
||
|
if ( aMeshSO->_is_nil())
|
||
|
return SALOMEDS::SObject::_nil();
|
||
|
}
|
||
|
int aType = (int)theGroup->GetType();
|
||
|
const char* aRootNames[] = {
|
||
|
"Compound Groups", "Groups of Nodes",
|
||
|
"Groups of Edges", "Groups of Faces", "Groups of Volumes" };
|
||
|
|
||
|
// Currently, groups with heterogenous content are not supported
|
||
|
if ( aType != SMESH::ALL ) {
|
||
|
long aRootTag = GetNodeGroupsTag() + aType - 1;
|
||
|
|
||
|
// Find or create groups root
|
||
|
SALOMEDS::SObject_var aRootSO = publish (theStudy, CORBA::Object::_nil(),
|
||
|
aMeshSO, aRootTag, 0, false );
|
||
|
if ( aType < 5 )
|
||
|
SetName( aRootSO, aRootNames[aType] );
|
||
|
|
||
|
// Add new group to corresponding sub-tree
|
||
|
aGroupSO = publish (theStudy, theGroup, aRootSO, 0, "ICON_SMESH_TREE_GROUP" );
|
||
|
}
|
||
|
if ( aGroupSO->_is_nil() )
|
||
|
return aGroupSO._retn();
|
||
|
}
|
||
|
|
||
|
SetName( aGroupSO, theName, "Group" );
|
||
|
|
||
|
//Add reference to geometry
|
||
|
if ( !theShapeObject->_is_nil() )
|
||
|
addReference( theStudy, aGroupSO, theShapeObject, 1 );
|
||
|
|
||
|
return aGroupSO._retn();
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : PublishHypothesis
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
SALOMEDS::SObject_ptr
|
||
|
SMESH_Gen_i::PublishHypothesis (SALOMEDS::Study_ptr theStudy,
|
||
|
SMESH::SMESH_Hypothesis_ptr theHyp,
|
||
|
const char* theName)
|
||
|
{
|
||
|
if(MYDEBUG) MESSAGE("PublishHypothesis")
|
||
|
if (theStudy->_is_nil() || theHyp->_is_nil())
|
||
|
return SALOMEDS::SObject::_nil();
|
||
|
|
||
|
SALOMEDS::SObject_var aHypSO = ObjectToSObject( theStudy, theHyp );
|
||
|
if ( aHypSO->_is_nil() )
|
||
|
{
|
||
|
SALOMEDS::SComponent_var father = PublishComponent( theStudy );
|
||
|
if ( father->_is_nil() )
|
||
|
return aHypSO._retn();
|
||
|
|
||
|
//Find or Create Hypothesis root
|
||
|
bool isAlgo = ( !SMESH::SMESH_Algo::_narrow( theHyp )->_is_nil() );
|
||
|
int aRootTag = isAlgo ? GetAlgorithmsRootTag() : GetHypothesisRootTag();
|
||
|
SALOMEDS::SObject_var aRootSO =
|
||
|
publish (theStudy, CORBA::Object::_nil(),father, aRootTag,
|
||
|
isAlgo ? "ICON_SMESH_TREE_ALGO" : "ICON_SMESH_TREE_HYPO", false);
|
||
|
SetName( aRootSO, isAlgo ? "Algorithms" : "Hypotheses" );
|
||
|
|
||
|
// Add New Hypothesis
|
||
|
string aPmName = isAlgo ? "ICON_SMESH_TREE_ALGO_" : "ICON_SMESH_TREE_HYPO_";
|
||
|
aPmName += theHyp->GetName();
|
||
|
aHypSO = publish( theStudy, theHyp, aRootSO, 0, aPmName.c_str() );
|
||
|
}
|
||
|
|
||
|
if ( !aHypSO->_is_nil() ) {
|
||
|
CORBA::String_var aHypName = CORBA::string_dup( theHyp->GetName() );
|
||
|
SetName( aHypSO, theName, aHypName );
|
||
|
}
|
||
|
|
||
|
if(MYDEBUG) MESSAGE("PublishHypothesis--END")
|
||
|
return aHypSO._retn();
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : GetMeshOrSubmeshByShape
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
SALOMEDS::SObject_ptr
|
||
|
SMESH_Gen_i::GetMeshOrSubmeshByShape (SALOMEDS::Study_ptr theStudy,
|
||
|
SMESH::SMESH_Mesh_ptr theMesh,
|
||
|
GEOM::GEOM_Object_ptr theShape)
|
||
|
{
|
||
|
if(MYDEBUG) MESSAGE("GetMeshOrSubmeshByShape")
|
||
|
SALOMEDS::SObject_var aMeshOrSubMesh;
|
||
|
if ( theShape->_is_nil() || theMesh->_is_nil() )
|
||
|
return aMeshOrSubMesh._retn();
|
||
|
|
||
|
TopoDS_Shape aShape = GeomObjectToShape( theShape );
|
||
|
SMESH_Mesh_i* mesh_i = objectToServant<SMESH_Mesh_i>( theMesh );
|
||
|
|
||
|
if ( !aShape.IsNull() && mesh_i && mesh_i->GetImpl().GetMeshDS() ) {
|
||
|
SMESHDS_Mesh* meshDS = mesh_i->GetImpl().GetMeshDS();
|
||
|
if ( aShape.IsSame( meshDS->ShapeToMesh() ))
|
||
|
aMeshOrSubMesh = ObjectToSObject( theStudy, theMesh );
|
||
|
else {
|
||
|
int shapeID = meshDS->ShapeToIndex( aShape );
|
||
|
SMESH::SMESH_subMesh_var aSubMesh = mesh_i->getSubMesh(shapeID);
|
||
|
if ( !aSubMesh->_is_nil() )
|
||
|
aMeshOrSubMesh = ObjectToSObject( theStudy, aSubMesh );
|
||
|
}
|
||
|
}
|
||
|
if(MYDEBUG) MESSAGE("GetMeshOrSubmeshByShape--END")
|
||
|
return aMeshOrSubMesh._retn();
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : AddHypothesisToShape
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
bool SMESH_Gen_i::AddHypothesisToShape(SALOMEDS::Study_ptr theStudy,
|
||
|
SMESH::SMESH_Mesh_ptr theMesh,
|
||
|
GEOM::GEOM_Object_ptr theShape,
|
||
|
SMESH::SMESH_Hypothesis_ptr theHyp)
|
||
|
{
|
||
|
if(MYDEBUG) MESSAGE("AddHypothesisToShape")
|
||
|
if (theStudy->_is_nil() || theMesh->_is_nil() ||
|
||
|
theHyp->_is_nil() || theShape->_is_nil() )
|
||
|
return false;
|
||
|
|
||
|
SALOMEDS::SObject_var aMeshSO = ObjectToSObject( theStudy, theMesh );
|
||
|
if ( aMeshSO->_is_nil() )
|
||
|
aMeshSO = PublishMesh( theStudy, theMesh );
|
||
|
SALOMEDS::SObject_var aHypSO = PublishHypothesis( theStudy, theHyp );
|
||
|
if ( aMeshSO->_is_nil() || aHypSO->_is_nil())
|
||
|
return false;
|
||
|
|
||
|
// Find a mesh or submesh refering to theShape
|
||
|
SALOMEDS::SObject_var aMeshOrSubMesh =
|
||
|
GetMeshOrSubmeshByShape( theStudy, theMesh, theShape );
|
||
|
if ( aMeshOrSubMesh->_is_nil() )
|
||
|
return false;
|
||
|
|
||
|
//Find or Create Applied Hypothesis root
|
||
|
bool aIsAlgo = !SMESH::SMESH_Algo::_narrow( theHyp )->_is_nil();
|
||
|
SALOMEDS::SObject_var AHR =
|
||
|
publish (theStudy, CORBA::Object::_nil(), aMeshOrSubMesh,
|
||
|
aIsAlgo ? GetRefOnAppliedAlgorithmsTag() : GetRefOnAppliedHypothesisTag(),
|
||
|
aIsAlgo ? "ICON_SMESH_TREE_ALGO" : "ICON_SMESH_TREE_HYPO", false);
|
||
|
SetName( AHR, aIsAlgo ? "Applied algorithms" : "Applied hypotheses" );
|
||
|
if ( AHR->_is_nil() )
|
||
|
return false;
|
||
|
|
||
|
addReference( theStudy, AHR, theHyp );
|
||
|
if(MYDEBUG) MESSAGE("AddHypothesisToShape--END")
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : RemoveHypothesisFromShape
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
bool SMESH_Gen_i::RemoveHypothesisFromShape(SALOMEDS::Study_ptr theStudy,
|
||
|
SMESH::SMESH_Mesh_ptr theMesh,
|
||
|
GEOM::GEOM_Object_ptr theShape,
|
||
|
SMESH::SMESH_Hypothesis_ptr theHyp)
|
||
|
{
|
||
|
if (theStudy->_is_nil() || theMesh->_is_nil() ||
|
||
|
theHyp->_is_nil() || theShape->_is_nil() )
|
||
|
return false;
|
||
|
|
||
|
SALOMEDS::SObject_var aHypSO = ObjectToSObject( theStudy, theHyp );
|
||
|
if ( aHypSO->_is_nil() )
|
||
|
return false;
|
||
|
|
||
|
// Find a mesh or submesh refering to theShape
|
||
|
SALOMEDS::SObject_var aMeshOrSubMesh =
|
||
|
GetMeshOrSubmeshByShape( theStudy, theMesh, theShape );
|
||
|
if ( aMeshOrSubMesh->_is_nil() )
|
||
|
return false;
|
||
|
|
||
|
// Find and remove a reference to aHypSO
|
||
|
SALOMEDS::SObject_var aRef, anObj;
|
||
|
CORBA::String_var anID = CORBA::string_dup( aHypSO->GetID() );
|
||
|
SALOMEDS::ChildIterator_var it = theStudy->NewChildIterator( aMeshOrSubMesh );
|
||
|
for ( it->InitEx( true ); it->More(); it->Next() ) {
|
||
|
anObj = it->Value();
|
||
|
if (anObj->ReferencedObject( aRef ) && strcmp( aRef->GetID(), anID ) == 0 ) {
|
||
|
theStudy->NewBuilder()->RemoveObject( anObj );
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|