1 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESH : implementaion of SMESH idl descriptions
24 // File : StdMeshers_ObjRefUlils.cxx
25 // Created : Wed Oct 18 15:38:22 2006
26 // Author : Edward AGAPOV (eap)
28 #include "StdMeshers_ObjRefUlils.hxx"
30 #include <TopoDS_Shape.hxx>
34 //================================================================================
36 * \brief Store the shape in the stream
37 * \param theShape - shape to store
38 * \param stream - the stream
40 //================================================================================
42 void StdMeshers_ObjRefUlils::SaveToStream( const TopoDS_Shape& theShape, ostream & stream)
45 if ( !theShape.IsNull() ) {
46 if (SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen()) {
47 GEOM::GEOM_Object_var geom = gen->ShapeToGeomObject( theShape );
48 if ( ! geom->_is_nil() ) {
49 SALOMEDS::SObject_var sobj = gen->ObjectToSObject( gen->GetCurrentStudy(), geom );
50 if ( !sobj->_is_nil() ) {
51 stream << " " << sobj->GetID();
58 stream << " NULL_SHAPE ";
61 //================================================================================
63 * \brief Retrieve a shape from the stream
64 * \param stream - the stream
65 * \retval TopoDS_Shape - resulting shape
67 //================================================================================
69 TopoDS_Shape StdMeshers_ObjRefUlils::LoadFromStream( istream & stream)
71 if (SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen()) {
72 SALOMEDS::Study_var study = gen->GetCurrentStudy();
73 if ( ! study->_is_nil() ) {
76 SALOMEDS::SObject_var sobj= study->FindObjectID( str.c_str() );
77 CORBA::Object_var obj = gen->SObjectToObject( sobj );
78 GEOM::GEOM_Object_var geom = GEOM::GEOM_Object::_narrow( obj );
79 return gen->GeomObjectToShape( geom.in() );
83 return TopoDS_Shape();
86 //================================================================================
88 * \brief Store the CORBA object in the stream
89 * \param obj - object to store
90 * \param stream - the stream
92 //================================================================================
94 void StdMeshers_ObjRefUlils::SaveToStream( CORBA::Object_ptr obj,
95 std::ostream & stream)
98 if ( !CORBA::is_nil( obj ) ) {
99 if (SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen()) {
100 stream << " " << gen->GetObjectId( obj );
105 stream << " NULL_OBJECT ";