Salome HOME
Merge branch 'master' into V8_1_BR
[plugins/ghs3dplugin.git] / src / GHS3DPlugin / GHS3DPlugin_GHS3D.hxx
1 // Copyright (C) 2004-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      : GHS3DPlugin_GHS3D.hxx
22 // Author    : Edward AGAPOV, modified by Lioka RAZAFINDRAZAKA (CEA) 09/02/2007
23 // Project   : SALOME
24 //=============================================================================
25 //
26 #ifndef _GHS3DPlugin_GHS3D_HXX_
27 #define _GHS3DPlugin_GHS3D_HXX_
28
29 #include <SMESH_Algo.hxx>
30 #include <SMESH_Gen.hxx>
31 #include <SMESH_Gen_i.hxx>
32 #include <SMESH_ProxyMesh.hxx>
33
34 #include <map>
35 #include <vector>
36
37 #ifndef GMFVERSION
38 #define GMFVERSION GmfDouble
39 #endif
40 #define GMFDIMENSION 3
41
42 class GHS3DPlugin_Hypothesis;
43 class SMDS_MeshNode;
44 class SMESH_Mesh;
45 class StdMeshers_ViscousLayers;
46 class TCollection_AsciiString;
47 class _Ghs2smdsConvertor;
48 class TopoDS_Shape;
49
50 class GHS3DPlugin_GHS3D: public SMESH_3D_Algo
51 {
52 public:
53   GHS3DPlugin_GHS3D(int hypId, int studyId, SMESH_Gen* gen);
54   virtual ~GHS3DPlugin_GHS3D();
55
56   virtual bool CheckHypothesis(SMESH_Mesh&         aMesh,
57                                const TopoDS_Shape& aShape,
58                                Hypothesis_Status&  aStatus);
59
60   virtual bool Compute(SMESH_Mesh&         aMesh,
61                        const TopoDS_Shape& aShape);
62
63   virtual void CancelCompute();
64   bool         computeCanceled() { return _computeCanceled; }
65
66   virtual bool Evaluate(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
67                         MapShapeNbElems& aResMap);
68
69   virtual bool Compute(SMESH_Mesh&         theMesh,
70                        SMESH_MesherHelper* aHelper);
71
72   virtual void SubmeshRestored(SMESH_subMesh* subMesh);
73
74   virtual void SetEventListener(SMESH_subMesh* subMesh);
75
76   bool         importGMFMesh(const char* aGMFFileName, SMESH_Mesh& aMesh);
77
78   static const char* Name() { return "MG-Tetra"; }
79
80   virtual double GetProgress() const;
81
82 protected:
83   const GHS3DPlugin_Hypothesis*   _hyp;
84   const StdMeshers_ViscousLayers* _viscousLayersHyp;
85   std::string                     _genericName;
86    
87 private:
88
89   bool         storeErrorDescription(const char*                logFile,
90                                      const std::string&         log,
91                                      const _Ghs2smdsConvertor & toSmdsConvertor );
92   TopoDS_Shape entryToShape(std::string entry);
93
94   int                 _iShape;
95   int                 _nbShape;
96   bool                _keepFiles;
97   bool                _removeLogOnSuccess;
98   bool                _logInStandardOutput;
99   SALOMEDS::Study_var _study;
100   SMESH_Gen_i*        _smeshGen_i;
101
102   bool                _isLibUsed;
103   double              _progressAdvance;
104 };
105
106 /*!
107  * \brief Convertor of MG-Tetra elements to SMDS ones
108  */
109 class _Ghs2smdsConvertor
110 {
111   const std::map <int,const SMDS_MeshNode*> * _ghs2NodeMap;
112   const std::vector <const SMDS_MeshNode*> *  _nodeByGhsId;
113   SMESH_ProxyMesh::Ptr                        _mesh;
114
115 public:
116   _Ghs2smdsConvertor( const std::map <int,const SMDS_MeshNode*> & ghs2NodeMap,
117                       SMESH_ProxyMesh::Ptr                        mesh);
118
119   _Ghs2smdsConvertor( const std::vector <const SMDS_MeshNode*> &  nodeByGhsId,
120                       SMESH_ProxyMesh::Ptr                        mesh);
121
122   const SMDS_MeshElement* getElement(const std::vector<int>& ghsNodes) const;
123 };
124
125 #endif