Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_ObjRefUlils.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SMESH SMESH : implementaion of SMESH idl descriptions
23 // File      : StdMeshers_ObjRefUlils.hxx
24 // Created   : Wed Oct 18 15:15:27 2006
25 // Author    : Edward AGAPOV (eap)
26 //
27 #ifndef StdMeshers_ObjRefUlils_HeaderFile
28 #define StdMeshers_ObjRefUlils_HeaderFile
29
30 #include "SMESH_Gen_i.hxx"
31
32 /*!
33  * \brief Class encapsulates methods
34  *  - converting internal objects to CORBA objects and backward and
35  *  - persistence methods for such objects
36  *
37  * These methods are useful for hypotheses referring to other objects
38  * like meshes, geom objects, other hypotheses, etc.
39  */
40 class StdMeshers_ObjRefUlils
41 {
42 public:
43   /*!
44    * \brief Return GEOM Object correspoding to TopoDS_Shape
45     * \param theShape - input TopoDS_Shape
46     * \retval GEOM::GEOM_Object_ptr - result object
47    */
48    static GEOM::GEOM_Object_ptr ShapeToGeomObject (const TopoDS_Shape& theShape ) {
49      if (SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen())
50        return gen->ShapeToGeomObject( theShape );
51      else
52        return GEOM::GEOM_Object::_nil();
53    }
54
55   /*!
56    * \brief Return TopoDS_Shape correspoding to GEOM_Object
57     * \param theGeomObject - input object
58     * \retval TopoDS_Shape - result TopoDS_Shape
59    */
60   static TopoDS_Shape GeomObjectToShape(GEOM::GEOM_Object_ptr theGeomObject) {
61      if (SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen())
62        return gen->GeomObjectToShape( theGeomObject );
63      else
64        return TopoDS_Shape();
65   }
66
67   /*!
68    * \brief Store the shape in the stream
69     * \param theShape - shape to store
70     * \param stream - the stream
71    */
72   static void SaveToStream( const TopoDS_Shape& theShape, std::ostream & stream);
73
74   /*!
75    * \brief Retrieve a shape from the stream
76     * \param stream - the stream
77     * \retval TopoDS_Shape - resulting shape
78    */
79   static TopoDS_Shape LoadFromStream( std::istream & stream);
80
81   /*!
82    * \brief Store the CORBA object in the stream
83     * \param obj - object to store
84     * \param stream - the stream
85    */
86   static void SaveToStream( CORBA::Object_ptr obj, std::ostream & stream);
87
88   /*!
89    * \brief Retrieve a CORBA object from the stream 
90     * \param stream - the stream
91     * \retval CORBA::Object_ptr - result object
92    */
93   template<class TInterface> 
94   static 
95   typename TInterface::_var_type LoadObjectFromStream( std::istream & stream )
96   {
97     if (SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen()) {
98       std::string str;
99       if (stream >> str) {
100         if ( StudyContext* myStudyContext = gen->GetCurrentStudyContext() ) {
101           string ior = myStudyContext->getIORbyOldId( atoi( str.c_str() ));
102           if ( !ior.empty() )
103              return TInterface::_narrow(gen->GetORB()->string_to_object( ior.c_str() ));
104         }
105       }
106     }
107     return TInterface::_nil();
108   }
109 };
110
111 #endif