Salome HOME
0021559: EDF 2175 SMESH: Hexa/Tetra mixed meshes
[modules/smesh.git] / src / SMESH / SMESH_Hypothesis.cxx
1 // Copyright (C) 2007-2012  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.
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.cxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //  $Header$
28 //
29 #include "SMESH_Hypothesis.hxx"
30 #include "SMESH_Gen.hxx"
31 #include "SMESH_subMesh.hxx"
32 #include "utilities.h"
33
34 using namespace std;
35
36 //=============================================================================
37 /*!
38  * 
39  */
40 //=============================================================================
41
42 SMESH_Hypothesis::SMESH_Hypothesis(int hypId,
43                                    int studyId,
44                                    SMESH_Gen* gen) : SMESHDS_Hypothesis(hypId)
45 {
46   _gen = gen;
47   _studyId = studyId;
48   StudyContextStruct* myStudyContext = _gen->GetStudyContext(_studyId);
49   myStudyContext->mapHypothesis[_hypId] = this;
50   _type = PARAM_ALGO;
51   _shapeType = 0; // to be set by algo with TopAbs_Enum
52   _param_algo_dim = -1; // to be set by algo parameter
53   //_parameters = string();
54   //_lastParameters = string();
55 }
56
57 //=============================================================================
58 /*!
59  * 
60  */
61 //=============================================================================
62
63 SMESH_Hypothesis::~SMESH_Hypothesis()
64 {
65   MESSAGE("SMESH_Hypothesis::~SMESH_Hypothesis");
66 }
67
68 //=============================================================================
69 /*!
70  * 
71  */
72 //=============================================================================
73
74 int SMESH_Hypothesis::GetDim() const
75 {
76   int dim = 0;
77   switch (_type)
78     {
79     case ALGO_1D: dim = 1; break;
80     case ALGO_2D: dim = 2; break;
81     case ALGO_3D: dim = 3; break;
82     case PARAM_ALGO:
83       dim = ( _param_algo_dim < 0 ) ? -_param_algo_dim : _param_algo_dim; break;
84     }
85   return dim;
86 }
87
88 //=============================================================================
89 /*!
90  *  
91  */
92 //=============================================================================
93
94 int SMESH_Hypothesis::GetShapeType() const
95 {
96   return _shapeType;
97 }
98
99 //=============================================================================
100 /*!
101  * 
102  */
103 //=============================================================================
104
105 int SMESH_Hypothesis::GetStudyId() const
106 {
107   return _studyId;
108 }
109
110 //=============================================================================
111 /*!
112  * 
113  */
114 //=============================================================================
115
116 void SMESH_Hypothesis::NotifySubMeshesHypothesisModification()
117 {
118   MESSAGE("SMESH_Hypothesis::NotifySubMeshesHypothesisModification");
119
120   // for all meshes in study
121
122   StudyContextStruct* myStudyContext = _gen->GetStudyContext(_studyId);
123   map<int, SMESH_Mesh*>::iterator itm;
124   for (itm = myStudyContext->mapMesh.begin();
125        itm != myStudyContext->mapMesh.end();
126        itm++)
127     {
128       SMESH_Mesh* mesh = (*itm).second;
129       mesh->NotifySubMeshesHypothesisModification( this );
130     }
131 }
132
133 //=============================================================================
134 /*!
135  * 
136  */
137 //=============================================================================
138
139 const char* SMESH_Hypothesis::GetLibName() const
140 {
141   return _libName.c_str();
142 }
143
144 //=============================================================================
145 /*!
146  * 
147  */
148 //=============================================================================
149
150 void SMESH_Hypothesis::SetLibName(const char* theLibName)
151 {
152   _libName = string(theLibName);
153 }
154
155 //=======================================================================
156 //function : GetMeshByPersistentID
157 //purpose  : Find a mesh with given persistent ID
158 //=======================================================================
159
160 SMESH_Mesh* SMESH_Hypothesis::GetMeshByPersistentID(int id)
161 {
162   StudyContextStruct* myStudyContext = _gen->GetStudyContext(_studyId);
163   map<int, SMESH_Mesh*>::iterator itm = itm = myStudyContext->mapMesh.begin();
164   for ( ; itm != myStudyContext->mapMesh.end(); itm++)
165   {
166     SMESH_Mesh* mesh = (*itm).second;
167     if ( mesh->GetMeshDS()->GetPersistentId() == id )
168       return mesh;
169   }
170   return 0;
171 }
172
173 //=============================================================================
174 /*!
175  * 
176  */
177 //=============================================================================
178 // void SMESH_Hypothesis::SetParameters(const char *theParameters)
179 // {
180 //   string aNewParameters(theParameters);
181 //   if(aNewParameters.size()==0 && _parameters.size()==0)
182 //     aNewParameters = " ";
183 //   if(_parameters.size()>0)
184 //     _parameters +="|";
185 //   _parameters +=aNewParameters;
186 //   SetLastParameters(theParameters);
187 // }
188
189 // //=============================================================================
190 // /*!
191 //  * 
192 //  */
193 // //=============================================================================
194 // void SMESH_Hypothesis::ClearParameters()
195 // {
196 //   _parameters = string();
197 // }
198
199 // //=============================================================================
200 // /*!
201 //  * 
202 //  */
203 // //=============================================================================
204 // char* SMESH_Hypothesis::GetParameters() const
205 // {
206 //   return (char*)_parameters.c_str();
207 // }
208
209 // //=============================================================================
210 // /*!
211 //  * 
212 //  */
213 // //=============================================================================
214 // char* SMESH_Hypothesis::GetLastParameters() const
215 // {
216 //   return (char*)_lastParameters.c_str();
217 // }
218
219 // //=============================================================================
220 // /*!
221 //  * 
222 //  */
223 // //=============================================================================
224 // void SMESH_Hypothesis::SetLastParameters(const char* theParameters)
225 // {
226 //   _lastParameters = string(theParameters);
227 // }