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