2004-06-18 14:34:31 +06:00
|
|
|
// 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 : StdMeshers_NumberOfSegments_i.cxx
|
|
|
|
// Moved here from SMESH_NumberOfSegments_i.cxx
|
|
|
|
// Author : Paul RASCLE, EDF
|
|
|
|
// Module : SMESH
|
|
|
|
// $Header$
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
#include "StdMeshers_NumberOfSegments_i.hxx"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESH_Gen_i.hxx"
|
2004-06-18 14:34:31 +06:00
|
|
|
#include "SMESH_Gen.hxx"
|
2005-12-15 13:38:29 +05:00
|
|
|
#include "SMESH_PythonDump.hxx"
|
2004-06-18 14:34:31 +06:00
|
|
|
|
|
|
|
#include "Utils_CorbaException.hxx"
|
|
|
|
#include "utilities.h"
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
#include <TCollection_AsciiString.hxx>
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* StdMeshers_NumberOfSegments_i::StdMeshers_NumberOfSegments_i
|
|
|
|
*
|
|
|
|
* Constructor
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
StdMeshers_NumberOfSegments_i::StdMeshers_NumberOfSegments_i( PortableServer::POA_ptr thePOA,
|
|
|
|
int theStudyId,
|
|
|
|
::SMESH_Gen* theGenImpl )
|
|
|
|
: SALOME::GenericObj_i( thePOA ),
|
|
|
|
SMESH_Hypothesis_i( thePOA )
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::StdMeshers_NumberOfSegments_i" );
|
|
|
|
myBaseImpl = new ::StdMeshers_NumberOfSegments( theGenImpl->GetANewId(),
|
|
|
|
theStudyId,
|
|
|
|
theGenImpl );
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* StdMeshers_NumberOfSegments_i::~StdMeshers_NumberOfSegments_i
|
|
|
|
*
|
|
|
|
* Destructor
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
StdMeshers_NumberOfSegments_i::~StdMeshers_NumberOfSegments_i()
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::~StdMeshers_NumberOfSegments_i" );
|
|
|
|
}
|
|
|
|
|
2005-12-28 14:17:39 +05:00
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* StdMeshers_NumberOfSegments_i::BuildDistribution
|
|
|
|
*
|
|
|
|
* Builds point distribution according to passed function
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
2006-05-06 14:51:48 +06:00
|
|
|
SMESH::double_array* StdMeshers_NumberOfSegments_i::BuildDistributionExpr( const char* func,
|
|
|
|
CORBA::Long nbSeg,
|
|
|
|
CORBA::Long conv )
|
|
|
|
throw ( SALOME::SALOME_Exception )
|
2005-12-28 14:17:39 +05:00
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::BuildDistribution" );
|
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
try
|
|
|
|
{
|
|
|
|
SMESH::double_array_var aRes = new SMESH::double_array();
|
|
|
|
const std::vector<double>& res = this->GetImpl()->BuildDistributionExpr( func, nbSeg, conv );
|
|
|
|
aRes->length( res.size() );
|
|
|
|
for (int i = 0; i < res.size(); i++)
|
|
|
|
aRes[i] = res[i];
|
|
|
|
return aRes._retn();
|
|
|
|
}
|
|
|
|
catch( SALOME_Exception& S_ex )
|
|
|
|
{
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SMESH::double_array* StdMeshers_NumberOfSegments_i::BuildDistributionTab( const SMESH::double_array& func,
|
2006-05-06 14:51:48 +06:00
|
|
|
CORBA::Long nbSeg,
|
|
|
|
CORBA::Long conv )
|
|
|
|
throw ( SALOME::SALOME_Exception )
|
2005-12-28 14:17:39 +05:00
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::BuildDistribution" );
|
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
|
|
|
|
std::vector<double> tbl( func.length() );
|
|
|
|
for (int i = 0; i < func.length(); i++)
|
|
|
|
tbl[i] = func[i];
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
SMESH::double_array_var aRes = new SMESH::double_array();
|
|
|
|
const std::vector<double>& res = this->GetImpl()->BuildDistributionTab( tbl, nbSeg, conv );
|
|
|
|
aRes->length( res.size() );
|
|
|
|
for (int i = 0; i < res.size(); i++)
|
|
|
|
aRes[i] = res[i];
|
|
|
|
return aRes._retn();
|
|
|
|
}
|
|
|
|
catch( SALOME_Exception& S_ex )
|
|
|
|
{
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* StdMeshers_NumberOfSegments_i::SetNumberOfSegments
|
|
|
|
*
|
|
|
|
* Set number of segments
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
void StdMeshers_NumberOfSegments_i::SetNumberOfSegments( CORBA::Long theSegmentsNumber )
|
|
|
|
throw ( SALOME::SALOME_Exception )
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::SetNumberOfSegments" );
|
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
try {
|
|
|
|
this->GetImpl()->SetNumberOfSegments( theSegmentsNumber );
|
|
|
|
}
|
|
|
|
catch (SALOME_Exception& S_ex) {
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(),
|
|
|
|
SALOME::BAD_PARAM );
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
// Update Python script
|
2005-12-15 13:38:29 +05:00
|
|
|
SMESH::TPythonDump() << _this() << ".SetNumberOfSegments( " << theSegmentsNumber << " )";
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* StdMeshers_NumberOfSegments_i::GetNumberOfSegments
|
|
|
|
*
|
|
|
|
* Get number of segments
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
CORBA::Long StdMeshers_NumberOfSegments_i::GetNumberOfSegments()
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::GetNumberOfSegments" );
|
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
return this->GetImpl()->GetNumberOfSegments();
|
|
|
|
}
|
|
|
|
|
2005-08-16 18:26:35 +06:00
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
void StdMeshers_NumberOfSegments_i::SetDistrType(CORBA::Long typ)
|
|
|
|
throw ( SALOME::SALOME_Exception )
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::SetDistrType" );
|
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
try {
|
|
|
|
this->GetImpl()->SetDistrType( (::StdMeshers_NumberOfSegments::DistrType) typ );
|
2005-12-15 13:38:29 +05:00
|
|
|
|
|
|
|
// Update Python script
|
|
|
|
SMESH::TPythonDump() << _this() << ".SetDistrType( " << typ << " )";
|
2005-08-16 18:26:35 +06:00
|
|
|
}
|
|
|
|
catch ( SALOME_Exception& S_ex ) {
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(),
|
|
|
|
SALOME::BAD_PARAM );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
CORBA::Long StdMeshers_NumberOfSegments_i::GetDistrType()
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::GetDistrType" );
|
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
return this->GetImpl()->GetDistrType();
|
|
|
|
}
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* StdMeshers_NumberOfSegments_i::SetScaleFactor
|
|
|
|
*
|
|
|
|
* Set scalar factor
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
void StdMeshers_NumberOfSegments_i::SetScaleFactor( CORBA::Double theScaleFactor )
|
|
|
|
throw ( SALOME::SALOME_Exception )
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::SetScaleFactor" );
|
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
try {
|
|
|
|
this->GetImpl()->SetScaleFactor( theScaleFactor );
|
2005-12-15 13:38:29 +05:00
|
|
|
// Update Python script
|
|
|
|
SMESH::TPythonDump() << _this() << ".SetScaleFactor( " << theScaleFactor << " )";
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
|
|
|
catch ( SALOME_Exception& S_ex ) {
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(),
|
|
|
|
SALOME::BAD_PARAM );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* StdMeshers_NumberOfSegments_i::GetScaleFactor
|
|
|
|
*
|
|
|
|
* Get scalar factor
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
CORBA::Double StdMeshers_NumberOfSegments_i::GetScaleFactor()
|
2005-08-16 18:26:35 +06:00
|
|
|
throw ( SALOME::SALOME_Exception )
|
2004-06-18 14:34:31 +06:00
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::GetScaleFactor" );
|
|
|
|
ASSERT( myBaseImpl );
|
2005-08-16 18:26:35 +06:00
|
|
|
double scale;
|
|
|
|
try {
|
|
|
|
scale = this->GetImpl()->GetScaleFactor();
|
|
|
|
}
|
|
|
|
catch ( SALOME_Exception& S_ex ) {
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(),
|
|
|
|
SALOME::BAD_PARAM );
|
|
|
|
}
|
|
|
|
return scale;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
void StdMeshers_NumberOfSegments_i::SetTableFunction(const SMESH::double_array& table)
|
|
|
|
throw ( SALOME::SALOME_Exception )
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::SetTableFunction" );
|
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
std::vector<double> tbl( table.length() );
|
|
|
|
for (int i = 0; i < table.length(); i++)
|
|
|
|
tbl[i] = table[i];
|
|
|
|
try {
|
|
|
|
this->GetImpl()->SetTableFunction( tbl );
|
2005-12-15 13:38:29 +05:00
|
|
|
// Update Python script
|
|
|
|
SMESH::TPythonDump() << _this() << ".SetTableFunction( " << table << " )";
|
2005-08-16 18:26:35 +06:00
|
|
|
}
|
|
|
|
catch ( SALOME_Exception& S_ex ) {
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(),
|
|
|
|
SALOME::BAD_PARAM );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
SMESH::double_array* StdMeshers_NumberOfSegments_i::GetTableFunction()
|
|
|
|
throw ( SALOME::SALOME_Exception )
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::GetTableFunction" );
|
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
const std::vector<double>* tbl;
|
|
|
|
try {
|
|
|
|
tbl = &this->GetImpl()->GetTableFunction();
|
|
|
|
}
|
|
|
|
catch ( SALOME_Exception& S_ex ) {
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(),
|
|
|
|
SALOME::BAD_PARAM );
|
|
|
|
}
|
|
|
|
SMESH::double_array_var aRes = new SMESH::double_array();
|
|
|
|
aRes->length(tbl->size());
|
|
|
|
for (int i = 0; i < tbl->size(); i++)
|
|
|
|
aRes[i] = (*tbl)[i];
|
|
|
|
return aRes._retn();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
void StdMeshers_NumberOfSegments_i::SetExpressionFunction(const char* expr)
|
|
|
|
throw ( SALOME::SALOME_Exception )
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::SetExpressionFunction" );
|
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
try {
|
|
|
|
this->GetImpl()->SetExpressionFunction( expr );
|
2005-12-15 13:38:29 +05:00
|
|
|
// Update Python script
|
2006-03-13 20:29:49 +05:00
|
|
|
SMESH::TPythonDump() << _this() << ".SetExpressionFunction( '" << expr << "' )";
|
2005-08-16 18:26:35 +06:00
|
|
|
}
|
|
|
|
catch ( SALOME_Exception& S_ex ) {
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(),
|
|
|
|
SALOME::BAD_PARAM );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
char* StdMeshers_NumberOfSegments_i::GetExpressionFunction()
|
|
|
|
throw ( SALOME::SALOME_Exception )
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::GetExpressionFunction" );
|
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
const char* expr;
|
|
|
|
try {
|
|
|
|
expr = this->GetImpl()->GetExpressionFunction();
|
|
|
|
}
|
|
|
|
catch ( SALOME_Exception& S_ex ) {
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(),
|
|
|
|
SALOME::BAD_PARAM );
|
|
|
|
}
|
|
|
|
return CORBA::string_dup(expr);
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
2005-12-28 14:17:39 +05:00
|
|
|
void StdMeshers_NumberOfSegments_i::SetConversionMode(CORBA::Long conv )
|
2005-08-16 18:26:35 +06:00
|
|
|
throw ( SALOME::SALOME_Exception )
|
|
|
|
{
|
2005-12-28 14:17:39 +05:00
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::SetConversionMode" );
|
2005-08-16 18:26:35 +06:00
|
|
|
ASSERT( myBaseImpl );
|
|
|
|
try {
|
2005-12-28 14:17:39 +05:00
|
|
|
this->GetImpl()->SetConversionMode( conv );
|
2005-12-15 13:38:29 +05:00
|
|
|
// Update Python script
|
2005-12-28 14:17:39 +05:00
|
|
|
SMESH::TPythonDump() << _this() << ".SetConversionMode( " << conv << " )";
|
2005-08-16 18:26:35 +06:00
|
|
|
}
|
|
|
|
catch ( SALOME_Exception& S_ex ) {
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(),
|
|
|
|
SALOME::BAD_PARAM );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
2005-12-28 14:17:39 +05:00
|
|
|
CORBA::Long StdMeshers_NumberOfSegments_i::ConversionMode()
|
2005-08-16 18:26:35 +06:00
|
|
|
throw ( SALOME::SALOME_Exception )
|
|
|
|
{
|
2005-12-28 14:17:39 +05:00
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::ConversionMode" );
|
2005-08-16 18:26:35 +06:00
|
|
|
ASSERT( myBaseImpl );
|
2005-12-28 14:17:39 +05:00
|
|
|
int conv;
|
2005-08-16 18:26:35 +06:00
|
|
|
try {
|
2005-12-28 14:17:39 +05:00
|
|
|
conv = this->GetImpl()->ConversionMode();
|
2005-08-16 18:26:35 +06:00
|
|
|
}
|
|
|
|
catch ( SALOME_Exception& S_ex ) {
|
|
|
|
THROW_SALOME_CORBA_EXCEPTION( S_ex.what(),
|
|
|
|
SALOME::BAD_PARAM );
|
|
|
|
}
|
2005-12-28 14:17:39 +05:00
|
|
|
return conv;
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
* StdMeshers_NumberOfSegments_i::GetImpl
|
|
|
|
*
|
|
|
|
* Get implementation
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
::StdMeshers_NumberOfSegments* StdMeshers_NumberOfSegments_i::GetImpl()
|
|
|
|
{
|
|
|
|
MESSAGE( "StdMeshers_NumberOfSegments_i::GetImpl" );
|
|
|
|
return ( ::StdMeshers_NumberOfSegments* )myBaseImpl;
|
|
|
|
}
|
|
|
|
|
2005-08-23 14:44:44 +06:00
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Verify whether hypothesis supports given entity type
|
|
|
|
* \param type - dimension (see SMESH::Dimension enumeration)
|
|
|
|
* \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
|
|
|
|
*
|
|
|
|
* Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
CORBA::Boolean StdMeshers_NumberOfSegments_i::IsDimSupported( SMESH::Dimension type )
|
|
|
|
{
|
|
|
|
return type == SMESH::DIM_1D;
|
|
|
|
}
|
|
|
|
|