Salome HOME
215f11471d577b845b736de8359c9f450b2e4e60
[modules/smesh.git] / src / SMESH / SMESH_Hypothesis.hxx
1 // Copyright (C) 2007-2014  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 //  SMESH SMESH : implementaion of SMESH idl descriptions
24 //  File   : SMESH_Hypothesis.hxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //
28 #ifndef _SMESH_HYPOTHESIS_HXX_
29 #define _SMESH_HYPOTHESIS_HXX_
30
31 #include "SMESH_SMESH.hxx"
32
33 #include "SMESHDS_Hypothesis.hxx"
34
35 class SMESH_Gen;
36 class TopoDS_Shape;
37 class SMESH_Mesh;
38
39 enum MeshDimension // dimension of mesh
40 {
41   MeshDim_0D = 0,
42   MeshDim_1D,
43   MeshDim_2D,
44   MeshDim_3D
45 };
46
47 class SMESH_EXPORT SMESH_Hypothesis: public SMESHDS_Hypothesis
48 {
49 public:
50   enum Hypothesis_Status // in the order of severity
51   {
52     HYP_OK = 0,
53     HYP_MISSING,      // algo misses a hypothesis
54     HYP_CONCURENT,    // several applicable hypotheses assigned to father shapes
55     HYP_BAD_PARAMETER,// hypothesis has a bad parameter value
56     HYP_HIDDEN_ALGO,  // an algo is hidden by an upper dim algo generating all-dim elements
57     HYP_HIDING_ALGO,  // an algo hides lower dim algos by generating all-dim elements
58     HYP_UNKNOWN_FATAL,//  --- all statuses below should be considered as fatal
59                       //      for Add/RemoveHypothesis operations
60     HYP_INCOMPATIBLE, // hypothesis does not fit algo
61     HYP_NOTCONFORM,   // not conform mesh is produced appling a hypothesis
62     HYP_ALREADY_EXIST,// several applicable hypothesis of same priority assigned
63     HYP_BAD_DIM,      // bad dimension
64     HYP_BAD_SUBSHAPE, // shape is neither the main one, nor its sub-shape, nor a group
65     HYP_BAD_GEOMETRY, // shape geometry mismatches algorithm's expectation
66     HYP_NEED_SHAPE    // algorithm can work on shape only
67   };
68   static bool IsStatusFatal(Hypothesis_Status theStatus)
69   { return theStatus >= HYP_UNKNOWN_FATAL; }
70
71   SMESH_Hypothesis(int hypId, int studyId, SMESH_Gen* gen);
72   virtual ~SMESH_Hypothesis();
73   virtual int GetDim() const;
74   int         GetStudyId() const;
75   SMESH_Gen*  GetGen() const { return (SMESH_Gen*) _gen; }
76   virtual int GetShapeType() const;
77   virtual const char* GetLibName() const;
78   virtual void NotifySubMeshesHypothesisModification();
79   void  SetLibName(const char* theLibName);
80
81   //void  SetParameters(const char *theParameters);
82   //char* GetParameters() const;
83
84   // void SetLastParameters(const char* theParameters);
85   // char* GetLastParameters() const;
86   // void ClearParameters();
87   
88   /*!
89    * \brief Initialize my parameter values by the mesh built on the geometry
90    *  \param theMesh - the built mesh
91    *  \param theShape - the geometry of interest
92    *  \retval bool - true if parameter values have been successfully defined
93    */
94   virtual bool SetParametersByMesh(const SMESH_Mesh* theMesh, const TopoDS_Shape& theShape)=0;
95
96   struct TDefaults
97   {
98     double        _elemLength;
99     int           _nbSegments;
100     TopoDS_Shape* _shape; // future shape of the mesh being created
101   };
102   /*!
103    * \brief Initialize my parameter values by default parameters.
104    *  \retval bool - true if parameter values have been successfully defined
105    */
106   virtual bool SetParametersByDefaults(const TDefaults& dflts, const SMESH_Mesh* theMesh=0)=0;
107
108   /*!
109    * \brief Return true if me is an auxiliary hypothesis
110     * \retval bool - auxiliary or not
111    * 
112    * An auxiliary hypothesis is optional, i.e. an algorithm
113    * can work without it and another hypothesis of the same
114    * dimention can be assigned to the shape
115    */
116   virtual bool IsAuxiliary() const
117   { return GetType() == PARAM_ALGO && _param_algo_dim < 0; }
118
119   /*!
120    * \brief Find a mesh with given persistent ID
121    */
122   SMESH_Mesh* GetMeshByPersistentID(int id);
123
124 protected:
125   SMESH_Gen* _gen;
126   int        _studyId;
127   int        _shapeType;
128   int        _param_algo_dim; // to be set at descendant hypothesis constructor
129
130 private:
131   std::string _libName; // name of library of plug-in Engine
132   //std::string _parameters;
133   //std::string _lastParameters;
134 };
135
136 #endif