]> SALOME platform Git repositories - plugins/hybridplugin.git/blob - src/HYBRIDPlugin/HYBRIDPlugin_HYBRID_i.cxx
Salome HOME
Rename tests without test_ prefix
[plugins/hybridplugin.git] / src / HYBRIDPlugin / HYBRIDPlugin_HYBRID_i.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // ---
21 // File   : HYBRIDPlugin_HYBRID_i.cxx
22 // Author : Christian VAN WAMBEKE (CEA) (from GHS3D plugin V730)
23 // ---
24 //
25 #include "HYBRIDPlugin_HYBRID_i.hxx"
26 #include "SMESH_Gen.hxx"
27 #include "SMESH_Mesh_i.hxx"
28 #include "SMESH_Gen_i.hxx"
29 #include "HYBRIDPlugin_HYBRID.hxx"
30 #include "SMESH_PythonDump.hxx"
31
32 #include "utilities.h"
33 #include <cstring>
34
35 //=============================================================================
36 /*!
37  *  HYBRIDPlugin_HYBRID_i::HYBRIDPlugin_HYBRID_i
38  *
39  *  Constructor
40  */
41 //=============================================================================
42
43 HYBRIDPlugin_HYBRID_i::HYBRIDPlugin_HYBRID_i (PortableServer::POA_ptr thePOA,
44                                           int                     theStudyId,
45                                           ::SMESH_Gen*            theGenImpl )
46      : SALOME::GenericObj_i( thePOA ), 
47        SMESH_Hypothesis_i( thePOA ), 
48        SMESH_Algo_i( thePOA ),
49        SMESH_3D_Algo_i( thePOA )
50 {
51   myBaseImpl = new ::HYBRIDPlugin_HYBRID (theGenImpl->GetANewId(),
52                                         theStudyId,
53                                         theGenImpl );
54 }
55
56 //=============================================================================
57 /*!
58  *  HYBRIDPlugin_HYBRID_i::~HYBRIDPlugin_HYBRID_i
59  *
60  *  Destructor
61  */
62 //=============================================================================
63
64 HYBRIDPlugin_HYBRID_i::~HYBRIDPlugin_HYBRID_i()
65 {
66 }
67
68 //=============================================================================
69 /*!
70  *  HYBRIDPlugin_HYBRID_i::GetImpl
71  *
72  *  Get implementation
73  */
74 //=============================================================================
75
76 ::HYBRIDPlugin_HYBRID* HYBRIDPlugin_HYBRID_i::GetImpl()
77 {
78   return ( ::HYBRIDPlugin_HYBRID* )myBaseImpl;
79 }
80
81 //=============================================================================
82 /*!
83  *  HYBRIDPlugin_HYBRID_i::~HYBRIDPlugin_HYBRID_i
84  *
85  *  Destructor
86  */
87 //=============================================================================
88
89 SMESH::SMESH_Mesh_ptr HYBRIDPlugin_HYBRID_i::importGMFMesh(const char* theGMFFileName)
90 {
91   SMESH_Gen_i* smeshGen = SMESH_Gen_i::GetSMESHGen();
92   SMESH::SMESH_Mesh_ptr theMesh = smeshGen->CreateEmptyMesh();
93   smeshGen->RemoveLastFromPythonScript(smeshGen->GetCurrentStudy()->StudyId());
94   SALOMEDS::SObject_ptr theSMesh = smeshGen->ObjectToSObject(smeshGen->GetCurrentStudy(), theMesh);
95 #ifdef WINNT
96 #define SEP '\\'
97 #else
98 #define SEP '/'
99 #endif
100   std::string strFileName (theGMFFileName);
101   strFileName = strFileName.substr(strFileName.rfind(SEP)+1);
102   strFileName.erase(strFileName.rfind('.'));
103   smeshGen->SetName(theSMesh, strFileName.c_str());
104   SMESH_Mesh_i* meshServant = dynamic_cast<SMESH_Mesh_i*>( smeshGen->GetServant( theMesh ).in() );
105   ASSERT( meshServant );
106   if ( meshServant ) {
107     if (GetImpl()->importGMFMesh(theGMFFileName, meshServant->GetImpl()))
108       SMESH::TPythonDump() << theSMesh << " = " << _this() << ".importGMFMesh( \"" << theGMFFileName << "\")";
109   }
110   return theMesh;
111 }