Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/smesh.git] / src / SMESH / SMESH_Gen.hxx
1 //  SMESH SMESH : implementaion of SMESH idl descriptions
2 //
3 //  Copyright (C) 2003  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. 
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 //
24 //  File   : SMESH_Gen.hxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef _SMESH_GEN_HXX_
30 #define _SMESH_GEN_HXX_
31
32 #include "SMESH_SMESH.hxx"
33
34 #include "Utils_SALOME_Exception.hxx"
35
36 #include "SMESH_Hypothesis.hxx"
37 #include "SMESH_ComputeError.hxx"
38 #include "SMESH_Algo.hxx"
39 #include "SMESH_0D_Algo.hxx"
40 #include "SMESH_1D_Algo.hxx"
41 #include "SMESH_2D_Algo.hxx"
42 #include "SMESH_3D_Algo.hxx"
43 #include "SMESH_Mesh.hxx"
44
45 #include <TopoDS_Shape.hxx>
46
47 #include <map>
48
49 class SMESHDS_Document;
50
51 typedef SMESH_Hypothesis::Hypothesis_Status TAlgoStateErrorName;
52
53 typedef struct studyContextStruct
54 {
55   std::map < int, SMESH_Hypothesis * >mapHypothesis;
56   std::map < int, SMESH_Mesh * >mapMesh;
57   SMESHDS_Document * myDocument;
58 } StudyContextStruct;
59
60 class SMESH_EXPORT  SMESH_Gen
61 {
62  public:
63   SMESH_Gen();
64   ~SMESH_Gen();
65
66   SMESH_Mesh* CreateMesh(int theStudyId, bool theIsEmbeddedMode)
67     throw(SALOME_Exception);
68
69   bool Compute(::SMESH_Mesh & aMesh, const TopoDS_Shape & aShape);
70
71   bool CheckAlgoState(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape);
72   // notify on bad state of attached algos, return false
73   // if Compute() would fail because of some algo bad state
74
75   
76   struct TAlgoStateError
77   {
78     TAlgoStateErrorName _name;
79     const SMESH_Algo*   _algo;
80     int                 _algoDim;
81     bool                _isGlobalAlgo;
82
83     TAlgoStateError(): _algoDim(0),_algo(0),_name(SMESH_Hypothesis::HYP_OK) {}
84     void Set(TAlgoStateErrorName name, const SMESH_Algo* algo, bool isGlobal)
85     { _name = name; _algo = algo; _algoDim = algo->GetDim(); _isGlobalAlgo = isGlobal; }
86     void Set(TAlgoStateErrorName name, const int algoDim,      bool isGlobal)
87     { _name = name; _algo = 0;    _algoDim = algoDim;        _isGlobalAlgo = isGlobal; }
88   };
89
90   bool GetAlgoState(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
91                     std::list< SMESH_Gen::TAlgoStateError > & theErrors);
92   // notify on bad state of attached algos, return false
93   // if Compute() would fail because of some algo bad state
94   // theErrors list contains problems description
95
96   StudyContextStruct *GetStudyContext(int studyId);
97
98   static int GetShapeDim(const TopAbs_ShapeEnum & aShapeType);
99   static int GetShapeDim(const TopoDS_Shape & aShape)
100   { return GetShapeDim( aShape.ShapeType() ); }
101   SMESH_Algo* GetAlgo(SMESH_Mesh & aMesh, const TopoDS_Shape & aShape);
102   static bool IsGlobalHypothesis(const SMESH_Hypothesis* theHyp, SMESH_Mesh& aMesh);
103
104   // inherited methods from SALOMEDS::Driver
105
106   void Save(int studyId, const char *aUrlOfFile);
107   void Load(int studyId, const char *aUrlOfFile);
108   void Close(int studyId);
109   const char *ComponentDataType();
110
111   const char *IORToLocalPersistentID(const char *IORString, bool & IsAFile);
112   const char *LocalPersistentIDToIOR(const char *aLocalPersistentID);
113
114   int GetANewId();
115
116   std::map < int, SMESH_Algo * >_mapAlgo;
117   std::map < int, SMESH_0D_Algo * >_map0D_Algo;
118   std::map < int, SMESH_1D_Algo * >_map1D_Algo;
119   std::map < int, SMESH_2D_Algo * >_map2D_Algo;
120   std::map < int, SMESH_3D_Algo * >_map3D_Algo;
121
122  private:
123
124   int _localId;                         // unique Id of created objects, within SMESH_Gen entity
125   std::map < int, StudyContextStruct * >_mapStudyContext;
126
127   // hypotheses managing
128   int _hypId;
129 };
130
131 #endif