smesh/src/SMESH_I/SMESH_MEDFamily_i.cxx

302 lines
10 KiB
C++
Raw Normal View History

2011-06-06 14:15:39 +06:00
// Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-17 10:27:49 +05:00
//
2011-06-06 14:15:39 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2009-02-17 10:27:49 +05:00
//
2011-06-06 14:15:39 +06:00
// 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.
2003-07-10 19:35:03 +06:00
//
2011-06-06 14:15:39 +06:00
// 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.
2003-07-10 19:35:03 +06:00
//
2011-06-06 14:15:39 +06:00
// 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
2003-07-10 19:35:03 +06:00
//
2011-06-06 14:15:39 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2003-07-10 19:35:03 +06:00
//
2010-05-14 21:32:37 +06:00
2009-02-17 10:27:49 +05:00
// SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
2003-07-10 19:35:03 +06:00
// File : SMESH_MEDFamily_i.cxx
// Module : SMESH
2009-02-17 10:27:49 +05:00
//
2003-05-19 19:54:48 +06:00
#include "SMESH_MEDFamily_i.hxx"
#include "utilities.h"
#include "Utils_CorbaException.hxx"
using namespace std;
2003-05-19 19:54:48 +06:00
//=============================================================================
/*!
* Default constructor
*/
//=============================================================================
SMESH_MEDFamily_i::SMESH_MEDFamily_i()
{
BEGIN_OF("Default Constructor SMESH_MEDFamily_i");
END_OF("Default Constructor SMESH_MEDFamily_i");
}
//=============================================================================
/*!
* constructor par recopie
*/
//=============================================================================
SMESH_MEDFamily_i::SMESH_MEDFamily_i(const SMESH_MEDFamily_i & f):
SMESH_MEDSupport_i(f._subMesh_i,f._name,f._description,f._entity),
_subMesh_i(f._subMesh_i),
_identifier(f._identifier),
_numberOfAttribute(f._numberOfAttribute),
_numberOfGroup(f._numberOfGroup),
_attributeValue(f._attributeValue)
{
BEGIN_OF("Copy Constructor SMESH_MEDFamily_i");
_attributeDescription=new string[_numberOfAttribute];
for (int i=0;i<_numberOfAttribute;i++) {
_attributeDescription[i]=f._attributeDescription[i];
};
_groupName=new string[_numberOfGroup];
for (int i=0;i<_numberOfAttribute;i++) {
_groupName[i]=f._groupName[i];
};
END_OF("Copy Constructor SMESH_MEDFamily_i");
}
//=============================================================================
/*!
* Destructor
*/
//=============================================================================
SMESH_MEDFamily_i::~SMESH_MEDFamily_i()
{
}
//=============================================================================
/*!
* Constructor
*/
//=============================================================================
SMESH_MEDFamily_i::SMESH_MEDFamily_i(int identifier, SMESH_subMesh_i* sm,
2009-12-08 18:11:42 +05:00
string name, string description, SALOME_MED::medEntityMesh entity):
2003-05-19 19:54:48 +06:00
SMESH_MEDSupport_i( sm, name, description, entity ),
_subMesh_i(sm),
_identifier(identifier),
_numberOfAttribute(0),
_attributeIdentifier((int*)NULL),
_attributeValue((int*)NULL),
_attributeDescription((string*)NULL),
_numberOfGroup(0),
_groupName((string*)NULL)
{
BEGIN_OF("Constructor SMESH_MEDFamily_i");
END_OF("Constructor SMESH_MEDFamily_i");
}
//=============================================================================
/*!
* CORBA: Accessor for Family's Identifier
*/
//=============================================================================
CORBA::Long SMESH_MEDFamily_i::getIdentifier()
throw (SALOME::SALOME_Exception)
{
if (_subMesh==NULL)
2003-05-19 19:54:48 +06:00
THROW_SALOME_CORBA_EXCEPTION("No associated Family",\
2009-12-08 18:11:42 +05:00
SALOME::INTERNAL_ERROR);
2003-05-19 19:54:48 +06:00
return _identifier;
}
//=============================================================================
/*!
* CORBA: Accessor for number of attributes
*/
//=============================================================================
CORBA::Long SMESH_MEDFamily_i::getNumberOfAttributes()
throw (SALOME::SALOME_Exception)
{
if (_subMesh==NULL)
2003-05-19 19:54:48 +06:00
THROW_SALOME_CORBA_EXCEPTION("No associated Family",\
2009-12-08 18:11:42 +05:00
SALOME::INTERNAL_ERROR);
2003-05-19 19:54:48 +06:00
return _numberOfAttribute;
}
//=============================================================================
/*!
* CORBA: Accessor for attributes identifiers
*/
//=============================================================================
2010-11-25 17:44:43 +05:00
SALOME_TYPES::ListOfLong* SMESH_MEDFamily_i::getAttributesIdentifiers()
2003-05-19 19:54:48 +06:00
throw (SALOME::SALOME_Exception)
{
if (_subMesh==NULL)
2003-05-19 19:54:48 +06:00
THROW_SALOME_CORBA_EXCEPTION("No associated Family",\
2009-12-08 18:11:42 +05:00
SALOME::INTERNAL_ERROR);
2003-05-19 19:54:48 +06:00
if (_numberOfAttribute == 0)
{
MESSAGE("Les familles SMESH n ont pas d attribut");
THROW_SALOME_CORBA_EXCEPTION("No attributes"\
2009-12-08 18:11:42 +05:00
,SALOME::BAD_PARAM);
2003-05-19 19:54:48 +06:00
};
2010-11-25 17:44:43 +05:00
SALOME_TYPES::ListOfLong_var myseq= new SALOME_TYPES::ListOfLong;
2003-05-19 19:54:48 +06:00
myseq->length(_numberOfAttribute);
for (int i=0;i<_numberOfAttribute;i++)
{
myseq[i]=_attributeIdentifier[i];
};
return myseq._retn();
}
//=============================================================================
/*!
* CORBA: Accessor for attribute identifier I
*/
//=============================================================================
CORBA::Long SMESH_MEDFamily_i::getAttributeIdentifier(CORBA::Long i)
throw (SALOME::SALOME_Exception)
{
if (_subMesh==NULL)
2003-05-19 19:54:48 +06:00
THROW_SALOME_CORBA_EXCEPTION("No associated Family",\
2009-12-08 18:11:42 +05:00
SALOME::INTERNAL_ERROR);
2003-05-19 19:54:48 +06:00
MESSAGE("Les familles SMESH n ont pas d attribut");
THROW_SALOME_CORBA_EXCEPTION("No attributes"\
2009-12-08 18:11:42 +05:00
,SALOME::BAD_PARAM);
2004-12-01 15:48:31 +05:00
if (_numberOfAttribute == 0)
2003-05-19 19:54:48 +06:00
{
MESSAGE("Les familles SMESH n ont pas d attribut");
THROW_SALOME_CORBA_EXCEPTION("No attributes"\
2009-12-08 18:11:42 +05:00
,SALOME::BAD_PARAM);
2003-05-19 19:54:48 +06:00
};
ASSERT (i <= _numberOfAttribute);
return _attributeIdentifier[i];
}
//=============================================================================
/*!
* CORBA: Accessor for attributes values
*/
//=============================================================================
2010-11-25 17:44:43 +05:00
SALOME_TYPES::ListOfLong* SMESH_MEDFamily_i::getAttributesValues()
2003-05-19 19:54:48 +06:00
throw (SALOME::SALOME_Exception)
{
if (_subMesh==NULL)
2003-05-19 19:54:48 +06:00
THROW_SALOME_CORBA_EXCEPTION("No associated Family",\
2009-12-08 18:11:42 +05:00
SALOME::INTERNAL_ERROR);
2003-05-19 19:54:48 +06:00
if (_numberOfAttribute == 0)
{
MESSAGE("Les familles SMESH n ont pas d attribut");
THROW_SALOME_CORBA_EXCEPTION("No attributes"\
2009-12-08 18:11:42 +05:00
,SALOME::BAD_PARAM);
2003-05-19 19:54:48 +06:00
};
2010-11-25 17:44:43 +05:00
SALOME_TYPES::ListOfLong_var myseq= new SALOME_TYPES::ListOfLong;
2003-05-19 19:54:48 +06:00
myseq->length(_numberOfAttribute);
for (int i=0;i<_numberOfAttribute;i++)
{
myseq[i]=_attributeValue[i];
};
return myseq._retn();
}
//=============================================================================
/*!
* CORBA: Accessor for attribute value I
*/
//=============================================================================
CORBA::Long SMESH_MEDFamily_i::getAttributeValue(CORBA::Long i)
throw (SALOME::SALOME_Exception)
{
if (_subMesh==NULL)
2003-05-19 19:54:48 +06:00
THROW_SALOME_CORBA_EXCEPTION("No associated Family",\
2009-12-08 18:11:42 +05:00
SALOME::INTERNAL_ERROR);
2004-12-01 15:48:31 +05:00
if (_numberOfAttribute == 0)
2003-05-19 19:54:48 +06:00
{
MESSAGE("Les familles SMESH n ont pas d attribut");
THROW_SALOME_CORBA_EXCEPTION("No attributes"\
2009-12-08 18:11:42 +05:00
,SALOME::BAD_PARAM);
2003-05-19 19:54:48 +06:00
}
ASSERT (i <= _numberOfAttribute);
return _attributeValue[i];
}
//=============================================================================
/*!
* CORBA: Accessor for attributes desriptions
*/
//=============================================================================
2010-11-25 17:44:43 +05:00
SALOME_TYPES::ListOfString * SMESH_MEDFamily_i::getAttributesDescriptions()
2003-05-19 19:54:48 +06:00
throw (SALOME::SALOME_Exception)
{
if (_subMesh==NULL)
2003-05-19 19:54:48 +06:00
THROW_SALOME_CORBA_EXCEPTION("No associated Family",\
2009-12-08 18:11:42 +05:00
SALOME::INTERNAL_ERROR);
2004-12-01 15:48:31 +05:00
if (_numberOfAttribute == 0)
2003-05-19 19:54:48 +06:00
{
MESSAGE("Les familles SMESH n ont pas d attribut");
THROW_SALOME_CORBA_EXCEPTION("No attributes"\
2009-12-08 18:11:42 +05:00
,SALOME::BAD_PARAM);
2003-05-19 19:54:48 +06:00
}
2010-11-25 17:44:43 +05:00
SALOME_TYPES::ListOfString_var myseq = new SALOME_TYPES::ListOfString;
2003-05-19 19:54:48 +06:00
for (int i=0;i<_numberOfAttribute;i++)
{
myseq[i]=CORBA::string_dup(_attributeDescription[i].c_str());
}
return myseq._retn();
}
//=============================================================================
/*!
* CORBA: Accessor for attribute description i
*/
//=============================================================================
char * SMESH_MEDFamily_i::getAttributeDescription( CORBA::Long i)
throw (SALOME::SALOME_Exception)
{
if (_subMesh==NULL)
2003-05-19 19:54:48 +06:00
THROW_SALOME_CORBA_EXCEPTION("No associated Family",\
2009-12-08 18:11:42 +05:00
SALOME::INTERNAL_ERROR);
2004-12-01 15:48:31 +05:00
if (_numberOfAttribute == 0)
2003-05-19 19:54:48 +06:00
{
MESSAGE("Les familles SMESH n ont pas d attribut");
THROW_SALOME_CORBA_EXCEPTION("No attributes"\
2009-12-08 18:11:42 +05:00
,SALOME::BAD_PARAM);
2003-05-19 19:54:48 +06:00
}
ASSERT (i <= _numberOfAttribute);
return CORBA::string_dup(_attributeDescription[i].c_str());
}
//=============================================================================
/*!
* CORBA: Accessor for the number of groups
*/
//=============================================================================
CORBA::Long SMESH_MEDFamily_i::getNumberOfGroups()
throw (SALOME::SALOME_Exception)
{
MESSAGE("!!! NOT YET IMPLEMENTED !!!!");
THROW_SALOME_CORBA_EXCEPTION("Not Implemented", SALOME::BAD_PARAM);
return 0;
}
//=============================================================================
/*!
* CORBA: Accessor for the name of the group i
*/
//=============================================================================
char * SMESH_MEDFamily_i::getGroupName( CORBA::Long i)
throw (SALOME::SALOME_Exception)
{
MESSAGE("!!! NOT YET IMPLEMENTED !!!!");
THROW_SALOME_CORBA_EXCEPTION("Not Implemented", SALOME::BAD_PARAM);
return NULL;
}
//=============================================================================
/*!
* CORBA: Accessor for all the groups name
*/
//=============================================================================
2010-11-25 17:44:43 +05:00
SALOME_TYPES::ListOfString* SMESH_MEDFamily_i::getGroupsNames()
throw (SALOME::SALOME_Exception)
{
MESSAGE("!!! NOT YET IMPLEMENTED !!!!");
THROW_SALOME_CORBA_EXCEPTION("Not Implemented", SALOME::BAD_PARAM);
return NULL;
}