Salome HOME
Refactoring of runner
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_Runner.hxx
1 // Copyright (C) 2007-2021  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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, or (at your option) any later version.
10 //
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.
15 //
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
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File   : NETGENPlugin_Runner.hxx
24 //  Author : Yoann AUDOUIN, EDF
25 //  Module : NETGEN
26 //
27
28 #ifndef _NETGENPLUGIN_RUNNER_HXX_
29 #define _NETGENPLUGIN_RUNNER_HXX_
30
31 #include <string>
32 #include <iostream>
33
34 #include "NETGENPlugin_Defs.hxx"
35 #include "NETGENPlugin_Mesher.hxx"
36
37 #include "SMESH_Algo.hxx"
38 #include "Utils_SALOME_Exception.hxx"
39
40 class TopoDS_Shape;
41 class SMESH_Mesh;
42 class SMESH_Comment;
43 class netgen_params;
44 class NETGENPlugin_NetgenLibWrapper;
45 class SMDS_MeshNode;
46
47 // Netgen 2d functions
48 int netgen2dInternal(TopoDS_Shape &aShape,
49              SMESH_Mesh& aMesh,
50              netgen_params& aParams,
51              std::string new_element_file,
52              std::string element_orientation_file,
53              bool output_mesh);
54 int netgen2d(const std::string input_mesh_file,
55              const std::string shape_file,
56              const std::string hypo_file,
57              const std::string element_orientation_file,
58              const std::string new_element_file,
59              const std::string output_mesh_file);
60
61 // Netgen 3D functions
62 bool mycomputeFillNgMesh(
63     SMESH_Mesh&         aMesh,
64     const TopoDS_Shape& aShape,
65     std::vector< const SMDS_MeshNode* > &nodeVec,
66     NETGENPlugin_NetgenLibWrapper &ngLib,
67     SMESH_MesherHelper &helper,
68     netgen_params &aParams,
69     std::string element_orientation_file,
70     int &Netgen_NbOfNodes);
71
72 bool mycomputePrepareParam(
73     SMESH_Mesh&         aMesh,
74     NETGENPlugin_NetgenLibWrapper &ngLib,
75     netgen::OCCGeometry &occgeo,
76     SMESH_MesherHelper &helper,
77     netgen_params &aParams,
78     int &endWith);
79
80 bool mycomputeRunMesher(
81     netgen::OCCGeometry &occgeo,
82     std::vector< const SMDS_MeshNode* > &nodeVec,
83     netgen::Mesh* ngMesh,
84     NETGENPlugin_NetgenLibWrapper &ngLib,
85     int &startWith, int &endWith);
86
87 bool mycomputeFillNewElementFile(
88     std::vector< const SMDS_MeshNode* > &nodeVec,
89     NETGENPlugin_NetgenLibWrapper &ngLib,
90     std::string new_element_file,
91     int &Netgen_NbOfNodes);
92
93 bool mycomputeFillMesh(
94     std::vector< const SMDS_MeshNode* > &nodeVec,
95     NETGENPlugin_NetgenLibWrapper &ngLib,
96     SMESH_MesherHelper &helper,
97     int &Netgen_NbOfNodes);
98
99 int netgen3dInternal(TopoDS_Shape &aShape,
100              SMESH_Mesh& aMesh,
101              netgen_params& aParams,
102              std::string new_element_file,
103              std::string element_orientation_file,
104              bool output_mesh);
105 int netgen3d(const std::string input_mesh_file,
106              const std::string shape_file,
107              const std::string hypo_file,
108              const std::string element_orientation_file,
109              const std::string new_element_file,
110              const std::string output_mesh_file,
111              int nbThreads);
112
113 //TODO: Tmp function replace by real error handling
114 int error(int error_type, std::string msg);
115 int error(const SMESH_Comment& comment);
116
117 #endif