smesh/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx

653 lines
20 KiB
C++
Raw Normal View History

2009-02-17 10:27:49 +05:00
// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
//
// Copyright (C) 2003-2007 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
//
2009-02-17 10:27:49 +05:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
//
// SMESH SMESHGUI : GUI for SMESH component
// File : SMESHGUI_HypothesesUtils.cxx
// Author : Julia DOROVSKIKH, Open CASCADE S.A.S.
// SMESH includes
//
2004-12-01 15:48:31 +05:00
#include "SMESHGUI_HypothesesUtils.h"
#include "SMESHGUI.h"
2004-12-01 15:48:31 +05:00
#include "SMESHGUI_Hypotheses.h"
#include "SMESHGUI_XmlHandler.h"
#include "SMESHGUI_Utils.h"
#include "SMESHGUI_GEOMGenUtils.h"
2009-02-17 10:27:49 +05:00
// SALOME GUI includes
#include <SUIT_Desktop.h>
#include <SUIT_MessageBox.h>
#include <SUIT_OverrideCursor.h>
#include <SUIT_ResourceMgr.h>
2009-02-17 10:27:49 +05:00
#include <SalomeApp_Study.h>
#include <SalomeApp_Tools.h>
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
// SALOME KERNEL includes
#include <utilities.h>
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
// STL includes
#include <string>
2009-02-17 10:27:49 +05:00
// Qt includes
#include <QMap>
//#include <QList>
// Other includes
#ifdef WNT
2009-02-17 10:27:49 +05:00
#include <windows.h>
#else
2009-02-17 10:27:49 +05:00
#include <dlfcn.h>
#endif
#ifdef WNT
2009-02-17 10:27:49 +05:00
#define LibHandle HMODULE
#define LoadLib( name ) LoadLibrary( name )
#define GetProc GetProcAddress
#define UnLoadLib( handle ) FreeLibrary( handle );
#else
2009-02-17 10:27:49 +05:00
#define LibHandle void*
#define LoadLib( name ) dlopen( name, RTLD_LAZY )
#define GetProc dlsym
#define UnLoadLib( handle ) dlclose( handle );
#endif
2004-12-01 15:48:31 +05:00
#ifdef _DEBUG_
static int MYDEBUG = 0;
#else
static int MYDEBUG = 0;
#endif
2009-02-17 10:27:49 +05:00
namespace SMESH
{
typedef QMap<QString,HypothesisData*> THypothesisDataMap;
2004-12-01 15:48:31 +05:00
THypothesisDataMap myHypothesesMap;
THypothesisDataMap myAlgorithmsMap;
2009-02-17 10:27:49 +05:00
typedef QMap<QString,SMESHGUI_GenericHypothesisCreator*> THypCreatorMap;
2004-12-01 15:48:31 +05:00
THypCreatorMap myHypCreatorMap;
2009-02-17 10:27:49 +05:00
QList<HypothesesSet*> myListOfHypothesesSets;
2004-12-01 15:48:31 +05:00
void processHypothesisStatus(const int theHypStatus,
SMESH::SMESH_Hypothesis_ptr theHyp,
const bool theIsAddition)
{
if (theHypStatus > SMESH::HYP_OK) {
2004-12-01 15:48:31 +05:00
// get Hyp name
QString aHypName ("NULL Hypothesis");
if (!CORBA::is_nil(theHyp)) {
_PTR(SObject) Shyp = SMESH::FindSObject(theHyp);
if (Shyp)
2004-12-01 15:48:31 +05:00
// name in study
aHypName = Shyp->GetName().c_str();
2004-12-01 15:48:31 +05:00
else
// label in xml file
aHypName = GetHypothesisData(theHyp->GetName())->Label;
2004-12-01 15:48:31 +05:00
}
// message
bool isFatal = (theHypStatus >= SMESH::HYP_UNKNOWN_FATAL);
2004-12-01 15:48:31 +05:00
QString aMsg;
if (theIsAddition)
aMsg = (isFatal ? "SMESH_CANT_ADD_HYP" : "SMESH_ADD_HYP_WRN");
2004-12-01 15:48:31 +05:00
else
aMsg = (isFatal ? "SMESH_CANT_RM_HYP" : "SMESH_RM_HYP_WRN");
2009-02-17 10:27:49 +05:00
aMsg = QObject::tr(aMsg.toLatin1().data()).arg(aHypName) +
QObject::tr(QString("SMESH_HYP_%1").arg(theHypStatus).toLatin1().data());
if ( theHypStatus == SMESH::HYP_HIDDEN_ALGO ) // PAL18501
aMsg = aMsg.arg( GetHypothesisData(theHyp->GetName())->Dim[0] );
2009-02-17 10:27:49 +05:00
SUIT_MessageBox::warning(SMESHGUI::desktop(),
QObject::tr("SMESH_WRN_WARNING"),
aMsg);
2004-12-01 15:48:31 +05:00
}
}
void InitAvailableHypotheses()
{
SUIT_OverrideCursor wc;
2004-12-01 15:48:31 +05:00
if (myHypothesesMap.empty() && myAlgorithmsMap.empty()) {
// Resource manager
SUIT_ResourceMgr* resMgr = SMESHGUI::resourceMgr();
2004-12-01 15:48:31 +05:00
if (!resMgr) return;
2004-12-01 15:48:31 +05:00
// Find name of a resource XML file ("SMESH_Meshers.xml");
QString HypsXml;
char* cenv = getenv("SMESH_MeshersList");
if (cenv)
HypsXml.sprintf("%s", cenv);
2009-02-17 10:27:49 +05:00
QStringList HypsXmlList = HypsXml.split(":", QString::SkipEmptyParts);
if (HypsXmlList.count() == 0) {
SUIT_MessageBox::critical(SMESHGUI::desktop(),
QObject::tr("SMESH_WRN_WARNING"),
QObject::tr("MESHERS_FILE_NO_VARIABLE"));
return;
}
2004-12-01 15:48:31 +05:00
// loop on files in HypsXml
QString aNoAccessFiles;
for (int i = 0; i < HypsXmlList.count(); i++) {
2004-12-01 15:48:31 +05:00
QString HypsXml = HypsXmlList[ i ];
2004-12-01 15:48:31 +05:00
// Find full path to the resource XML file
QString xmlFile = resMgr->path("resources", "SMESH", HypsXml + ".xml");
if ( xmlFile.isEmpty() ) // try PLUGIN resources
xmlFile = resMgr->path("resources", HypsXml, HypsXml + ".xml");
QFile file (xmlFile);
2009-02-17 10:27:49 +05:00
if (file.exists() && file.open(QIODevice::ReadOnly)) {
2004-12-01 15:48:31 +05:00
file.close();
2004-12-01 15:48:31 +05:00
SMESHGUI_XmlHandler* aXmlHandler = new SMESHGUI_XmlHandler();
ASSERT(aXmlHandler);
2009-02-17 10:27:49 +05:00
QXmlInputSource source (&file);
2004-12-01 15:48:31 +05:00
QXmlSimpleReader reader;
reader.setContentHandler(aXmlHandler);
reader.setErrorHandler(aXmlHandler);
bool ok = reader.parse(source);
file.close();
if (ok) {
2009-02-17 10:27:49 +05:00
myHypothesesMap.unite( aXmlHandler->myHypothesesMap );
myAlgorithmsMap.unite( aXmlHandler->myAlgorithmsMap );
QList<HypothesesSet*>::iterator it, pos = myListOfHypothesesSets.begin();
for ( it = aXmlHandler->myListOfHypothesesSets.begin();
it != aXmlHandler->myListOfHypothesesSets.end();
++it ) {
myListOfHypothesesSets.insert( pos, *it );
}
2004-12-01 15:48:31 +05:00
}
else {
2009-02-17 10:27:49 +05:00
SUIT_MessageBox::critical(SMESHGUI::desktop(),
QObject::tr("INF_PARSE_ERROR"),
QObject::tr(aXmlHandler->errorProtocol().toLatin1().data()));
2004-12-01 15:48:31 +05:00
}
}
else {
if (aNoAccessFiles.isEmpty())
aNoAccessFiles = xmlFile;
else
aNoAccessFiles += ", " + xmlFile;
}
} // end loop
2004-12-01 15:48:31 +05:00
if (!aNoAccessFiles.isEmpty()) {
QString aMess = QObject::tr("MESHERS_FILE_CANT_OPEN") + " " + aNoAccessFiles + "\n";
aMess += QObject::tr("MESHERS_FILE_CHECK_VARIABLE");
wc.suspend();
2009-02-17 10:27:49 +05:00
SUIT_MessageBox::warning(SMESHGUI::desktop(),
QObject::tr("SMESH_WRN_WARNING"),
aMess);
wc.resume();
2004-12-01 15:48:31 +05:00
}
}
}
QStringList GetAvailableHypotheses( const bool isAlgo,
const int theDim,
const bool isAux,
const bool isNeedGeometry)
2004-12-01 15:48:31 +05:00
{
QStringList aHypList;
2004-12-01 15:48:31 +05:00
// Init list of available hypotheses, if needed
InitAvailableHypotheses();
2009-02-17 10:27:49 +05:00
bool checkGeometry = ( !isNeedGeometry && isAlgo );
2004-12-01 15:48:31 +05:00
// fill list of hypotheses/algorithms
2009-02-17 10:27:49 +05:00
THypothesisDataMap& pMap = isAlgo ? myAlgorithmsMap : myHypothesesMap;
2004-12-01 15:48:31 +05:00
THypothesisDataMap::iterator anIter;
2009-02-17 10:27:49 +05:00
for ( anIter = pMap.begin(); anIter != pMap.end(); anIter++ ) {
HypothesisData* aData = anIter.value();
if ( ( theDim < 0 || aData->Dim.contains( theDim ) ) && aData->IsAux == isAux) {
if (checkGeometry) {
if (aData->IsNeedGeometry == isNeedGeometry)
aHypList.append(anIter.key());
}
else {
aHypList.append(anIter.key());
}
}
2004-12-01 15:48:31 +05:00
}
return aHypList;
}
2004-12-01 15:48:31 +05:00
2005-11-01 15:12:45 +05:00
QStringList GetHypothesesSets()
{
QStringList aSetNameList;
// Init list of available hypotheses, if needed
InitAvailableHypotheses();
2009-02-17 10:27:49 +05:00
QList<HypothesesSet*>::iterator hypoSet;
for ( hypoSet = myListOfHypothesesSets.begin();
hypoSet != myListOfHypothesesSets.end();
++hypoSet ) {
2005-11-01 15:12:45 +05:00
HypothesesSet* aSet = *hypoSet;
if ( aSet && aSet->AlgoList.count() ) {
2009-02-17 10:27:49 +05:00
aSetNameList.append( aSet->HypoSetName );
2005-11-01 15:12:45 +05:00
}
}
2009-02-17 10:27:49 +05:00
2005-11-01 15:12:45 +05:00
return aSetNameList;
}
2009-02-17 10:27:49 +05:00
HypothesesSet* GetHypothesesSet(const QString& theSetName)
2005-11-01 15:12:45 +05:00
{
2009-02-17 10:27:49 +05:00
QList<HypothesesSet*>::iterator hypoSet;
for ( hypoSet = myListOfHypothesesSets.begin();
hypoSet != myListOfHypothesesSets.end();
++hypoSet ) {
2005-11-01 15:12:45 +05:00
HypothesesSet* aSet = *hypoSet;
if ( aSet && aSet->HypoSetName == theSetName )
2009-02-17 10:27:49 +05:00
return aSet;
2005-11-01 15:12:45 +05:00
}
return 0;
}
2009-02-17 10:27:49 +05:00
HypothesisData* GetHypothesisData (const QString& aHypType)
2004-12-01 15:48:31 +05:00
{
HypothesisData* aHypData = 0;
// Init list of available hypotheses, if needed
InitAvailableHypotheses();
2009-02-17 10:27:49 +05:00
if (myHypothesesMap.find(aHypType) != myHypothesesMap.end()) {
aHypData = myHypothesesMap[aHypType];
2004-12-01 15:48:31 +05:00
}
2009-02-17 10:27:49 +05:00
else if (myAlgorithmsMap.find(aHypType) != myAlgorithmsMap.end()) {
aHypData = myAlgorithmsMap[aHypType];
2004-12-01 15:48:31 +05:00
}
return aHypData;
}
bool IsAvailableHypothesis(const HypothesisData* algoData,
const QString& hypType,
bool& isAuxiliary)
{
isAuxiliary = false;
if ( !algoData )
return false;
if ( algoData->NeededHypos.contains( hypType ))
return true;
if ( algoData->OptionalHypos.contains( hypType)) {
isAuxiliary = true;
return true;
}
return false;
}
bool IsCompatibleAlgorithm(const HypothesisData* algo1Data,
const HypothesisData* algo2Data)
{
if ( !algo1Data || !algo2Data )
return false;
const HypothesisData* algoIn = algo1Data, *algoMain = algo2Data;
if ( algoIn->Dim.first() > algoMain->Dim.first() ) {
algoIn = algo2Data; algoMain = algo1Data;
}
// look for any output type of algoIn between input types of algoMain
QStringList::const_iterator inElemType = algoIn->OutputTypes.begin();
for ( ; inElemType != algoIn->OutputTypes.end(); ++inElemType )
if ( algoMain->InputTypes.contains( *inElemType ))
return true;
return false;
}
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
SMESHGUI_GenericHypothesisCreator* GetHypothesisCreator(const QString& aHypType)
2004-12-01 15:48:31 +05:00
{
2009-02-17 10:27:49 +05:00
if(MYDEBUG) MESSAGE("Get HypothesisCreator for " << aHypType.toLatin1().data());
2004-12-01 15:48:31 +05:00
SMESHGUI_GenericHypothesisCreator* aCreator = 0;
2004-12-01 15:48:31 +05:00
// check, if creator for this hypothesis type already exists
if (myHypCreatorMap.find(aHypType) != myHypCreatorMap.end()) {
aCreator = myHypCreatorMap[aHypType];
}
else {
// 1. Init list of available hypotheses, if needed
InitAvailableHypotheses();
// 2. Get names of plugin libraries
HypothesisData* aHypData = GetHypothesisData(aHypType);
if (!aHypData)
return aCreator;
2004-12-01 15:48:31 +05:00
QString aClientLibName = aHypData->ClientLibName;
QString aServerLibName = aHypData->ServerLibName;
// 3. Load Client Plugin Library
try {
// load plugin library
if(MYDEBUG) MESSAGE("Loading client meshers plugin library ...");
2009-02-17 10:27:49 +05:00
LibHandle libHandle = LoadLib( aClientLibName.toLatin1().data() );
2004-12-01 15:48:31 +05:00
if (!libHandle) {
// report any error, if occured
2009-02-17 10:27:49 +05:00
if ( MYDEBUG ) {
#ifdef WIN32
2009-02-17 10:27:49 +05:00
const char* anError = "Can't load client meshers plugin library";
#else
const char* anError = dlerror();
#endif
2009-02-17 10:27:49 +05:00
MESSAGE(anError);
}
2004-12-01 15:48:31 +05:00
}
else {
// get method, returning hypothesis creator
if(MYDEBUG) MESSAGE("Find GetHypothesisCreator() method ...");
typedef SMESHGUI_GenericHypothesisCreator* (*GetHypothesisCreator) \
( const QString& );
2004-12-01 15:48:31 +05:00
GetHypothesisCreator procHandle =
(GetHypothesisCreator)GetProc(libHandle, "GetHypothesisCreator");
2004-12-01 15:48:31 +05:00
if (!procHandle) {
if(MYDEBUG) MESSAGE("bad hypothesis client plugin library");
UnLoadLib(libHandle);
2004-12-01 15:48:31 +05:00
}
else {
// get hypothesis creator
2009-02-17 10:27:49 +05:00
if(MYDEBUG) MESSAGE("Get Hypothesis Creator for " << aHypType.toLatin1().data());
aCreator = procHandle( aHypType );
2004-12-01 15:48:31 +05:00
if (!aCreator) {
if(MYDEBUG) MESSAGE("no such a hypothesis in this plugin");
}
else {
// map hypothesis creator to a hypothesis name
myHypCreatorMap[aHypType] = aCreator;
}
}
}
}
catch (const SALOME::SALOME_Exception& S_ex) {
SalomeApp_Tools::QtCatchCorbaException(S_ex);
2004-12-01 15:48:31 +05:00
}
}
return aCreator;
}
2009-02-17 10:27:49 +05:00
SMESH::SMESH_Hypothesis_ptr CreateHypothesis(const QString& aHypType,
const QString& aHypName,
2004-12-01 15:48:31 +05:00
const bool isAlgo)
{
2009-02-17 10:27:49 +05:00
if(MYDEBUG) MESSAGE("Create " << aHypType.toLatin1().data() <<
" with name " << aHypName.toLatin1().data());
2004-12-01 15:48:31 +05:00
HypothesisData* aHypData = GetHypothesisData(aHypType);
QString aServLib = aHypData->ServerLibName;
try {
SMESH::SMESH_Hypothesis_var aHypothesis;
2009-02-17 10:27:49 +05:00
aHypothesis = SMESHGUI::GetSMESHGen()->CreateHypothesis(aHypType.toLatin1().data(),
aServLib.toLatin1().data());
if (!aHypothesis->_is_nil()) {
_PTR(SObject) aHypSObject = SMESH::FindSObject(aHypothesis.in());
if (aHypSObject) {
2009-02-17 10:27:49 +05:00
if (!aHypName.isEmpty())
SMESH::SetName(aHypSObject, aHypName);
SMESHGUI::GetSMESHGUI()->updateObjBrowser();
return aHypothesis._retn();
2004-12-01 15:48:31 +05:00
}
}
} catch (const SALOME::SALOME_Exception & S_ex) {
SalomeApp_Tools::QtCatchCorbaException(S_ex);
2004-12-01 15:48:31 +05:00
}
return SMESH::SMESH_Hypothesis::_nil();
}
bool AddHypothesisOnMesh (SMESH::SMESH_Mesh_ptr aMesh, SMESH::SMESH_Hypothesis_ptr aHyp)
{
if(MYDEBUG) MESSAGE ("SMESHGUI::AddHypothesisOnMesh");
int res = SMESH::HYP_UNKNOWN_FATAL;
SUIT_OverrideCursor wc;
if (!aMesh->_is_nil()) {
_PTR(SObject) SM = SMESH::FindSObject(aMesh);
2004-12-01 15:48:31 +05:00
GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(SM);
try {
res = aMesh->AddHypothesis(aShapeObject, aHyp);
if (res < SMESH::HYP_UNKNOWN_FATAL) {
_PTR(SObject) aSH = SMESH::FindSObject(aHyp);
if (SM && aSH) {
SMESH::ModifiedMesh(SM, false, aMesh->NbNodes()==0);
2004-12-01 15:48:31 +05:00
}
}
if (res > SMESH::HYP_OK) {
wc.suspend();
processHypothesisStatus(res, aHyp, true);
wc.resume();
2004-12-01 15:48:31 +05:00
}
}
catch(const SALOME::SALOME_Exception& S_ex) {
wc.suspend();
SalomeApp_Tools::QtCatchCorbaException(S_ex);
2004-12-01 15:48:31 +05:00
res = SMESH::HYP_UNKNOWN_FATAL;
}
}
return res < SMESH::HYP_UNKNOWN_FATAL;
}
bool AddHypothesisOnSubMesh (SMESH::SMESH_subMesh_ptr aSubMesh, SMESH::SMESH_Hypothesis_ptr aHyp)
{
if(MYDEBUG) MESSAGE("SMESHGUI::AddHypothesisOnSubMesh() ");
2004-12-01 15:48:31 +05:00
int res = SMESH::HYP_UNKNOWN_FATAL;
SUIT_OverrideCursor wc;
if (!aSubMesh->_is_nil() && ! aHyp->_is_nil()) {
2004-12-01 15:48:31 +05:00
try {
SMESH::SMESH_Mesh_var aMesh = aSubMesh->GetFather();
_PTR(SObject) SsubM = SMESH::FindSObject(aSubMesh);
GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(SsubM);
if (!aMesh->_is_nil() && SsubM && !aShapeObject->_is_nil()) {
res = aMesh->AddHypothesis(aShapeObject, aHyp);
if (res < SMESH::HYP_UNKNOWN_FATAL) {
_PTR(SObject) meshSO = SMESH::FindSObject(aMesh);
if (meshSO)
SMESH::ModifiedMesh(meshSO, false, aMesh->NbNodes()==0);
2004-12-01 15:48:31 +05:00
}
if (res > SMESH::HYP_OK) {
wc.suspend();
processHypothesisStatus(res, aHyp, true);
wc.resume();
2004-12-01 15:48:31 +05:00
}
}
else {
SCRUTE(aHyp->_is_nil());
SCRUTE(aMesh->_is_nil());
SCRUTE(!SsubM);
SCRUTE(aShapeObject->_is_nil());
2004-12-01 15:48:31 +05:00
}
}
catch(const SALOME::SALOME_Exception& S_ex) {
wc.suspend();
SalomeApp_Tools::QtCatchCorbaException(S_ex);
2004-12-01 15:48:31 +05:00
res = SMESH::HYP_UNKNOWN_FATAL;
}
}
else {
SCRUTE(aSubMesh->_is_nil());
SCRUTE(aHyp->_is_nil());
2004-12-01 15:48:31 +05:00
}
return res < SMESH::HYP_UNKNOWN_FATAL;
}
2004-12-01 15:48:31 +05:00
bool RemoveHypothesisOrAlgorithmOnMesh (const Handle(SALOME_InteractiveObject)& IObject)
{
int res = SMESH::HYP_UNKNOWN_FATAL;
SUIT_OverrideCursor wc;
try {
_PTR(Study) aStudy = GetActiveStudyDocument();
2005-08-18 17:21:40 +06:00
_PTR(SObject) aHypObj = aStudy->FindObjectID( IObject->getEntry() );
if( aHypObj )
{
2009-02-17 10:27:49 +05:00
_PTR(SObject) MorSM = SMESH::GetMeshOrSubmesh( aHypObj );
_PTR(SObject) aRealHypo;
if( aHypObj->ReferencedObject( aRealHypo ) )
{
SMESH_Hypothesis_var hypo = SMESH_Hypothesis::_narrow( SObjectToObject( aRealHypo ) );
RemoveHypothesisOrAlgorithmOnMesh( MorSM, hypo );
}
else
{
SMESH_Hypothesis_var hypo = SMESH_Hypothesis::_narrow( SObjectToObject( aHypObj ) );
SObjectList meshList = GetMeshesUsingAlgoOrHypothesis( hypo );
for( int i = 0; i < meshList.size(); i++ )
RemoveHypothesisOrAlgorithmOnMesh( meshList[ i ], hypo );
}
2004-12-01 15:48:31 +05:00
}
}
2005-08-18 17:21:40 +06:00
catch(const SALOME::SALOME_Exception& S_ex)
2009-02-17 10:27:49 +05:00
{
wc.suspend();
SalomeApp_Tools::QtCatchCorbaException(S_ex);
res = SMESH::HYP_UNKNOWN_FATAL;
}
2004-12-01 15:48:31 +05:00
return res < SMESH::HYP_UNKNOWN_FATAL;
}
bool RemoveHypothesisOrAlgorithmOnMesh (_PTR(SObject) MorSM,
SMESH::SMESH_Hypothesis_ptr anHyp)
2004-12-01 15:48:31 +05:00
{
SALOMEDS::GenericAttribute_var anAttr;
SALOMEDS::AttributeIOR_var anIOR;
int res = SMESH::HYP_UNKNOWN_FATAL;
SUIT_OverrideCursor wc;
if (MorSM) {
2004-12-01 15:48:31 +05:00
try {
GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(MorSM);
SMESH::SMESH_Mesh_var aMesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>(MorSM);
SMESH::SMESH_subMesh_var aSubMesh = SMESH::SObjectToInterface<SMESH::SMESH_subMesh>(MorSM);
if (!aSubMesh->_is_nil())
aMesh = aSubMesh->GetFather();
if (!aMesh->_is_nil()) {
if (aMesh->HasShapeToMesh() && !aShapeObject->_is_nil()) {
res = aMesh->RemoveHypothesis(aShapeObject, anHyp);
if (res < SMESH::HYP_UNKNOWN_FATAL) {
_PTR(SObject) meshSO = SMESH::FindSObject(aMesh);
if (meshSO)
SMESH::ModifiedMesh(meshSO, false, aMesh->NbNodes()==0);
}
}
else if(!aMesh->HasShapeToMesh()){
res = aMesh->RemoveHypothesis(aShapeObject, anHyp);
if (res < SMESH::HYP_UNKNOWN_FATAL) {
_PTR(SObject) meshSO = SMESH::FindSObject(aMesh);
if (meshSO)
SMESH::ModifiedMesh(meshSO, false, aMesh->NbNodes()==0);
}
}
if (res > SMESH::HYP_OK) {
wc.suspend();
processHypothesisStatus(res, anHyp, false);
wc.resume();
}
}
} catch(const SALOME::SALOME_Exception& S_ex) {
wc.suspend();
SalomeApp_Tools::QtCatchCorbaException(S_ex);
2004-12-01 15:48:31 +05:00
res = SMESH::HYP_UNKNOWN_FATAL;
}
}
return res < SMESH::HYP_UNKNOWN_FATAL;
}
SObjectList GetMeshesUsingAlgoOrHypothesis(SMESH::SMESH_Hypothesis_ptr AlgoOrHyp)
2004-12-01 15:48:31 +05:00
{
SObjectList listSOmesh;
listSOmesh.resize(0);
2004-12-01 15:48:31 +05:00
unsigned int index = 0;
if (!AlgoOrHyp->_is_nil()) {
_PTR(SObject) SO_Hypothesis = SMESH::FindSObject(AlgoOrHyp);
if (SO_Hypothesis) {
SObjectList listSO =
SMESHGUI::activeStudy()->studyDS()->FindDependances(SO_Hypothesis);
if(MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): dependency number ="<<listSO.size());
for (unsigned int i = 0; i < listSO.size(); i++) {
_PTR(SObject) SO = listSO[i];
2005-08-18 17:21:40 +06:00
if (SO) {
_PTR(SObject) aFather = SO->GetFather();
if (aFather) {
_PTR(SObject) SOfatherFather = aFather->GetFather();
if (SOfatherFather) {
2004-12-01 15:48:31 +05:00
if(MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): dependency added to list");
index++;
listSOmesh.resize(index);
2004-12-01 15:48:31 +05:00
listSOmesh[index - 1] = SOfatherFather;
}
}
}
}
}
}
if (MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): completed");
return listSOmesh;
2004-12-01 15:48:31 +05:00
}
#define CASE2MESSAGE(enum) case SMESH::enum: msg = QObject::tr( "STATE_" #enum ); break;
QString GetMessageOnAlgoStateErrors(const algo_error_array& errors)
{
QString resMsg; // PAL14861 = QObject::tr("SMESH_WRN_MISSING_PARAMETERS") + ":\n";
for ( int i = 0; i < errors.length(); ++i ) {
const SMESH::AlgoStateError & error = errors[ i ];
const bool hasAlgo = ( strlen( error.algoName ) != 0 );
QString msg;
if ( !hasAlgo )
msg = QObject::tr( "STATE_ALGO_MISSING" );
else
switch( error.state ) {
CASE2MESSAGE( HYP_MISSING );
CASE2MESSAGE( HYP_NOTCONFORM );
CASE2MESSAGE( HYP_BAD_PARAMETER );
CASE2MESSAGE( HYP_BAD_GEOMETRY );
default: continue;
}
// apply args to message:
// %1 - algo name
if ( hasAlgo )
msg = msg.arg( error.algoName.in() );
// %2 - dimension
msg = msg.arg( error.algoDim );
// %3 - global/local
msg = msg.arg( QObject::tr( error.isGlobalAlgo ? "GLOBAL_ALGO" : "LOCAL_ALGO" ));
// %4 - hypothesis dim == algoDim
msg = msg.arg( error.algoDim );
if ( i ) resMsg += ";\n";
resMsg += msg;
}
return resMsg;
}
2009-02-17 10:27:49 +05:00
} // end of namespace SMESH