Salome HOME
23586: [EDF] HYDRO: Copy mesh to new geometry
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_ObjRefUlils.hxx
1 // Copyright (C) 2007-2016  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, or (at your option) any later version.
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
23 //  SMESH SMESH : implementation of SMESH idl descriptions
24 // File      : StdMeshers_ObjRefUlils.hxx
25 // Created   : Wed Oct 18 15:15:27 2006
26 // Author    : Edward AGAPOV (eap)
27 //
28 #ifndef StdMeshers_ObjRefUlils_HeaderFile
29 #define StdMeshers_ObjRefUlils_HeaderFile
30
31 #include "SMESH_Gen_i.hxx"
32
33 /*!
34  * \brief Class encapsulates methods
35  *  - converting internal objects to CORBA objects and backward and
36  *  - persistence methods for such objects
37  *
38  * These methods are useful for hypotheses referring to other objects
39  * like meshes, geom objects, other hypotheses, etc.
40  */
41 class StdMeshers_ObjRefUlils
42 {
43 public:
44   /*!
45    * \brief Return GEOM Object corresponding to TopoDS_Shape
46     * \param theShape - input TopoDS_Shape
47     * \retval GEOM::GEOM_Object_ptr - result object
48    */
49    static GEOM::GEOM_Object_ptr ShapeToGeomObject (const TopoDS_Shape& theShape ) {
50      if (SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen())
51        return gen->ShapeToGeomObject( theShape );
52      else
53        return GEOM::GEOM_Object::_nil();
54    }
55
56   /*!
57    * \brief Return TopoDS_Shape corresponding to GEOM_Object
58     * \param theGeomObject - input object
59     * \retval TopoDS_Shape - result TopoDS_Shape
60    */
61   static TopoDS_Shape GeomObjectToShape(GEOM::GEOM_Object_ptr theGeomObject) {
62      if (SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen())
63        return gen->GeomObjectToShape( theGeomObject );
64      else
65        return TopoDS_Shape();
66   }
67
68   /*!
69    * \brief Return TopoDS_Shape by a study entry
70    *  \param theEntry - study entry
71    *  \retval TopoDS_Shape - result TopoDS_Shape
72    */
73   static TopoDS_Shape EntryToShape(const std::string theEntry);
74
75   /*!
76    * \brief Return study entry of GEOM Object
77    */
78   static std::string GeomObjectToEntry(GEOM::GEOM_Object_ptr theGeomObject);
79
80   /*!
81    * \brief Return GEOM Object by its study entry or TopoDS_Shape
82    */
83   static GEOM::GEOM_Object_ptr EntryOrShapeToGeomObject (const std::string&  theEntry,
84                                                          const TopoDS_Shape& theShape);
85
86
87   /*!
88    * \brief Store the shape in the stream
89     * \param theShape - shape to store
90     * \param stream - the stream
91    */
92   static void SaveToStream( const TopoDS_Shape& theShape, std::ostream & stream);
93
94   /*!
95    * \brief Retrieve a shape from the stream
96     * \param stream - the stream
97     * \retval TopoDS_Shape - resulting shape
98    */
99   static TopoDS_Shape LoadFromStream( std::istream & stream, std::string* entry=NULL );
100
101   /*!
102    * \brief Store the CORBA object in the stream
103     * \param obj - object to store
104     * \param stream - the stream
105    */
106   static void SaveToStream( CORBA::Object_ptr obj, std::ostream & stream );
107
108   /*!
109    * \brief Retrieve a CORBA object from the stream 
110     * \param stream - the stream
111     * \retval CORBA::Object_ptr - result object
112    */
113   template<class TInterface> 
114   static 
115   typename TInterface::_var_type LoadObjectFromStream( std::istream & stream )
116   {
117     if (SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen()) {
118       std::string str;
119       if (stream >> str) {
120         if ( StudyContext* myStudyContext = gen->GetStudyContext() ) {
121           std::string ior = myStudyContext->getIORbyOldId( atoi( str.c_str() ));
122           if ( !ior.empty() )
123              return TInterface::_narrow(gen->GetORB()->string_to_object( ior.c_str() ));
124         }
125       }
126     }
127     return TInterface::_nil();
128   }
129
130   /*!
131    * \brief Store the study entry of object in the stream
132     * \param studyEntry - the study entry
133     * \param stream - the stream
134    */
135   static void SaveToStream( const std::string& studyEntry, std::ostream & stream);
136
137 };
138
139 #endif