1 // Copyright (C) 2007-2012 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_I : idl implementation based on 'SMESH' unit's classes
24 // File : StdMeshers_ProjectionSource1D_i.cxx
25 // Author : Edward AGAPOV
28 #include "StdMeshers_ProjectionSource1D_i.hxx"
30 #include "SMESH_Gen_i.hxx"
31 #include "SMESH_Gen.hxx"
32 #include "SMESH_PythonDump.hxx"
34 #include "Utils_CorbaException.hxx"
35 #include "utilities.h"
37 #include "StdMeshers_ObjRefUlils.hxx"
41 //=============================================================================
43 * StdMeshers_ProjectionSource1D_i::StdMeshers_ProjectionSource1D_i
47 //=============================================================================
49 StdMeshers_ProjectionSource1D_i::StdMeshers_ProjectionSource1D_i
50 ( PortableServer::POA_ptr thePOA,
52 ::SMESH_Gen* theGenImpl ) : SALOME::GenericObj_i( thePOA ),
53 SMESH_Hypothesis_i( thePOA )
55 MESSAGE( "StdMeshers_ProjectionSource1D_i::StdMeshers_ProjectionSource1D_i" );
56 myBaseImpl = new ::StdMeshers_ProjectionSource1D( theGenImpl->GetANewId(),
61 //=============================================================================
63 * StdMeshers_ProjectionSource1D_i::~StdMeshers_ProjectionSource1D_i
67 //=============================================================================
69 StdMeshers_ProjectionSource1D_i::~StdMeshers_ProjectionSource1D_i()
71 MESSAGE( "StdMeshers_ProjectionSource1D_i::~StdMeshers_ProjectionSource1D_i" );
74 //=============================================================================
76 * Sets source <edge> or a group containing edges to take a mesh pattern from
78 //=============================================================================
80 void StdMeshers_ProjectionSource1D_i::SetSourceEdge(GEOM::GEOM_Object_ptr edge)
81 throw ( SALOME::SALOME_Exception )
85 this->GetImpl()->SetSourceEdge( StdMeshers_ObjRefUlils::GeomObjectToShape( edge ));
86 CORBA::String_var entry = edge->GetStudyEntry();
87 myShapeEntries[ SRC_EDGE ] = entry.in();
89 catch ( SALOME_Exception& S_ex ) {
90 THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
92 // Update Python script
93 SMESH::TPythonDump() << _this() << ".SetSourceEdge( " << edge << " )";
96 //=============================================================================
98 * Sets vertex association between the source edge and the target one.
99 * This parameter is optional
101 //=============================================================================
103 void StdMeshers_ProjectionSource1D_i::SetVertexAssociation(GEOM::GEOM_Object_ptr sourceVertex,
104 GEOM::GEOM_Object_ptr targetVertex)
105 throw ( SALOME::SALOME_Exception )
107 ASSERT( myBaseImpl );
109 TopoDS_Shape v1 = StdMeshers_ObjRefUlils::GeomObjectToShape( sourceVertex );
110 TopoDS_Shape v2 = StdMeshers_ObjRefUlils::GeomObjectToShape( targetVertex );
111 this->GetImpl()->SetVertexAssociation( v1, v2 );
113 myShapeEntries[ SRC_VERTEX ] = StdMeshers_ObjRefUlils::GeomObjectToEntry( sourceVertex );
114 myShapeEntries[ TGT_VERTEX ] = StdMeshers_ObjRefUlils::GeomObjectToEntry( targetVertex );
116 catch ( SALOME_Exception& S_ex ) {
117 THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
119 // Update Python script
120 SMESH::TPythonDump() << _this() << ".SetVertexAssociation( "
121 << sourceVertex << ", " << targetVertex << " )";
124 //=============================================================================
126 * Sets source <mesh> to take a mesh pattern from
128 //=============================================================================
130 void StdMeshers_ProjectionSource1D_i::SetSourceMesh(SMESH::SMESH_Mesh_ptr theMesh)
131 throw ( SALOME::SALOME_Exception )
133 ASSERT( myBaseImpl );
135 ::SMESH_Mesh* mesh = 0;
137 if ( !CORBA::is_nil( theMesh ))
139 SMESH_Mesh_i* mesh_i = SMESH::DownCast< SMESH_Mesh_i* >( theMesh );
141 THROW_SALOME_CORBA_EXCEPTION( "bad mesh", SALOME::BAD_PARAM );
142 mesh = &mesh_i->GetImpl();
146 this->GetImpl()->SetSourceMesh ( mesh );
148 catch ( SALOME_Exception& S_ex ) {
149 THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
152 myCorbaMesh = SMESH::SMESH_Mesh::_duplicate( theMesh );
154 // Update Python script
155 SMESH::TPythonDump() << _this() << ".SetSourceMesh( " << theMesh << " )";
158 //=============================================================================
162 //=============================================================================
164 SMESH::SMESH_Mesh_ptr StdMeshers_ProjectionSource1D_i::GetSourceMesh()
166 SMESH::SMESH_Mesh_var mesh = myCorbaMesh;
170 //=============================================================================
172 * Returns the source edge or a group containing edge
174 //=============================================================================
176 GEOM::GEOM_Object_ptr StdMeshers_ProjectionSource1D_i::GetSourceEdge()
178 ASSERT( myBaseImpl );
179 return StdMeshers_ObjRefUlils::EntryOrShapeToGeomObject
180 ( myShapeEntries[ SRC_EDGE ],
181 this->GetImpl()->GetSourceEdge() );
184 //=============================================================================
186 * Returns the vertex associated with the target vertex.
187 * Result may be nil if association not set
189 //=============================================================================
191 GEOM::GEOM_Object_ptr StdMeshers_ProjectionSource1D_i::GetSourceVertex()
193 ASSERT( myBaseImpl );
194 return StdMeshers_ObjRefUlils::EntryOrShapeToGeomObject
195 ( myShapeEntries[ SRC_VERTEX ],
196 this->GetImpl()->GetSourceVertex() );
199 //=============================================================================
201 * Returns the vertex associated with the source vertex.
202 * Result may be nil if association not set
204 //=============================================================================
206 GEOM::GEOM_Object_ptr StdMeshers_ProjectionSource1D_i::GetTargetVertex()
208 ASSERT( myBaseImpl );
209 return StdMeshers_ObjRefUlils::EntryOrShapeToGeomObject
210 ( myShapeEntries[ TGT_VERTEX ],
211 this->GetImpl()->GetTargetVertex() );
214 //=============================================================================
216 * StdMeshers_ProjectionSource1D_i::GetImpl
220 //=============================================================================
222 ::StdMeshers_ProjectionSource1D* StdMeshers_ProjectionSource1D_i::GetImpl()
224 return ( ::StdMeshers_ProjectionSource1D* )myBaseImpl;
227 //================================================================================
229 * \brief Verify whether hypothesis supports given entity type
230 * \param type - dimension (see SMESH::Dimension enumeration)
231 * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
233 * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
235 //================================================================================
236 CORBA::Boolean StdMeshers_ProjectionSource1D_i::IsDimSupported( SMESH::Dimension type )
238 return type == SMESH::DIM_1D;
241 //================================================================================
243 * \brief Write parameters in a string
244 * \retval char* - resulting string
246 //================================================================================
248 char* StdMeshers_ProjectionSource1D_i::SaveTo()
250 ASSERT( myBaseImpl );
251 std::ostringstream os;
253 for ( int i = 0; i < NB_SHAPES; ++i )
254 StdMeshers_ObjRefUlils::SaveToStream( myShapeEntries[ i ], os );
255 StdMeshers_ObjRefUlils::SaveToStream( GetSourceMesh(), os );
257 myBaseImpl->SaveTo( os );
259 return CORBA::string_dup( os.str().c_str() );
262 //================================================================================
264 * \brief Retrieve parameters from the string
265 * \param theStream - the input string
267 //================================================================================
269 void StdMeshers_ProjectionSource1D_i::LoadFrom( const char* theStream )
271 ASSERT( myBaseImpl );
272 std::istringstream is( theStream );
274 TopoDS_Shape shapes[ NB_SHAPES ];
275 for ( int i = 0; i < NB_SHAPES; ++i )
276 shapes[ i ] = StdMeshers_ObjRefUlils::LoadFromStream( is );
277 SMESH::SMESH_Mesh_var mesh =
278 StdMeshers_ObjRefUlils::LoadObjectFromStream< SMESH::SMESH_Mesh >( is );
280 ::SMESH_Mesh* meshImpl = 0;
282 if ( !CORBA::is_nil( mesh ))
284 SMESH_Mesh_i* mesh_i = SMESH::DownCast< SMESH_Mesh_i* >( mesh );
286 meshImpl = &mesh_i->GetImpl();
289 myCorbaMesh = SMESH::SMESH_Mesh::_duplicate( mesh );
290 GetImpl()->SetSourceMesh ( meshImpl );
291 GetImpl()->SetSourceEdge ( shapes[ SRC_EDGE ] );
292 GetImpl()->SetVertexAssociation( shapes[ SRC_VERTEX ],
293 shapes[ TGT_VERTEX ]);
295 myBaseImpl->LoadFrom( is );
297 std::istringstream str( theStream );
298 for ( int i = 0; i < NB_SHAPES; ++i )
299 str >> myShapeEntries[ i ];