Salome HOME
27a72053534d4d31727633bbdb7468a46e251784
[plugins/hybridplugin.git] / src / HYBRIDPlugin / HYBRIDPlugin_HYBRID_i.cxx
1 // Copyright (C) 2007-2022  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                                               ::SMESH_Gen*            theGenImpl )
45      : SALOME::GenericObj_i( thePOA ), 
46        SMESH_Hypothesis_i( thePOA ), 
47        SMESH_Algo_i( thePOA ),
48        SMESH_3D_Algo_i( thePOA )
49 {
50   myBaseImpl = new ::HYBRIDPlugin_HYBRID (theGenImpl->GetANewId(),
51                                           theGenImpl );
52 }
53
54 //=============================================================================
55 /*!
56  *  HYBRIDPlugin_HYBRID_i::~HYBRIDPlugin_HYBRID_i
57  *
58  *  Destructor
59  */
60 //=============================================================================
61
62 HYBRIDPlugin_HYBRID_i::~HYBRIDPlugin_HYBRID_i()
63 {
64 }
65
66 //=============================================================================
67 /*!
68  *  HYBRIDPlugin_HYBRID_i::GetImpl
69  *
70  *  Get implementation
71  */
72 //=============================================================================
73
74 ::HYBRIDPlugin_HYBRID* HYBRIDPlugin_HYBRID_i::GetImpl()
75 {
76   return ( ::HYBRIDPlugin_HYBRID* )myBaseImpl;
77 }
78
79 //=============================================================================
80 /*!
81  *  HYBRIDPlugin_HYBRID_i::~HYBRIDPlugin_HYBRID_i
82  *
83  *  Destructor
84  */
85 //=============================================================================
86
87 SMESH::SMESH_Mesh_ptr HYBRIDPlugin_HYBRID_i::importGMFMesh(const char* theGMFFileName)
88 {
89   SMESH_Gen_i* smeshGen = SMESH_Gen_i::GetSMESHGen();
90   SMESH::SMESH_Mesh_ptr theMesh = smeshGen->CreateEmptyMesh();
91   smeshGen->RemoveLastFromPythonScript();
92   SALOMEDS::SObject_ptr theSMesh = smeshGen->ObjectToSObject(theMesh);
93 #ifdef WINNT
94 #define SEP '\\'
95 #else
96 #define SEP '/'
97 #endif
98   std::string strFileName (theGMFFileName);
99   strFileName = strFileName.substr(strFileName.rfind(SEP)+1);
100   strFileName.erase(strFileName.rfind('.'));
101   smeshGen->SetName(theSMesh, strFileName.c_str());
102   SMESH_Mesh_i* meshServant = dynamic_cast<SMESH_Mesh_i*>( smeshGen->GetServant( theMesh ).in() );
103   ASSERT( meshServant );
104   if ( meshServant ) {
105     if (GetImpl()->importGMFMesh(theGMFFileName, meshServant->GetImpl()))
106       SMESH::TPythonDump() << theSMesh << " = " << _this() << ".importGMFMesh( \"" << theGMFFileName << "\")";
107   }
108   return theMesh;
109 }