Salome HOME
Merge from BR_size_maps
[plugins/hexoticplugin.git] / src / HexoticPlugin / HexoticPlugin_Hypothesis.cxx
1 // Copyright (C) 2007-2013  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.
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   : HexoticPlugin_Hypothesis.cxx
22 // Author : Lioka RAZAFINDRAZAKA (CEA)
23 // ---
24 //
25 #include "HexoticPlugin_Hypothesis.hxx"
26 #include <utilities.h>
27
28 #include <TCollection_AsciiString.hxx>
29
30 //=============================================================================
31 /*!
32  *  
33  */
34 //=============================================================================
35 HexoticPlugin_Hypothesis::HexoticPlugin_Hypothesis (int hypId, int studyId,
36                                                     SMESH_Gen* gen)
37   : SMESH_Hypothesis(hypId, studyId, gen),
38     _hexesMinLevel( GetDefaultHexesMinLevel() ),
39     _hexesMaxLevel( GetDefaultHexesMaxLevel() ),
40     _minSize( GetDefaultMinSize() ),
41     _maxSize( GetDefaultMaxSize() ),
42     _hexoticIgnoreRidges( GetDefaultHexoticIgnoreRidges() ),
43     _hexoticInvalidElements( GetDefaultHexoticInvalidElements() ), 
44     _hexoticSharpAngleThreshold( GetDefaultHexoticSharpAngleThreshold() ),
45     _hexoticNbProc( GetDefaultHexoticNbProc() ),
46     _hexoticWorkingDirectory( GetDefaultHexoticWorkingDirectory() ),
47     _hexoticSdMode(GetDefaultHexoticSdMode()),
48     _hexoticVerbosity(GetDefaultHexoticVerbosity()),
49     _hexoticMaxMemory(GetDefaultHexoticMaxMemory()),
50     _sizeMaps(GetDefaultHexoticSizeMaps())
51 {
52   MESSAGE("HexoticPlugin_Hypothesis::HexoticPlugin_Hypothesis");
53   _name = "Hexotic_Parameters";
54   _param_algo_dim = 3;
55 }
56
57 //=============================================================================
58 /*!
59  *  
60  */
61 //=============================================================================
62
63 void HexoticPlugin_Hypothesis::SetHexesMinLevel(int theVal) {
64   if (theVal != _hexesMinLevel) {
65     _hexesMinLevel = theVal;
66     NotifySubMeshesHypothesisModification();
67   }
68 }
69
70 void HexoticPlugin_Hypothesis::SetHexesMaxLevel(int theVal) {
71   if (theVal != _hexesMaxLevel) {
72     _hexesMaxLevel = theVal;
73     NotifySubMeshesHypothesisModification();
74   }
75 }
76
77 void HexoticPlugin_Hypothesis::SetMinSize(double theVal) {
78   if (theVal != _minSize) {
79           _minSize = theVal;
80     NotifySubMeshesHypothesisModification();
81   }
82 }
83
84 void HexoticPlugin_Hypothesis::SetMaxSize(double theVal) {
85   if (theVal != _maxSize) {
86           _maxSize = theVal;
87     NotifySubMeshesHypothesisModification();
88   }
89 }
90
91 void HexoticPlugin_Hypothesis::SetHexoticIgnoreRidges(bool theVal) {
92   if (theVal != _hexoticIgnoreRidges) {
93     _hexoticIgnoreRidges = theVal;
94     NotifySubMeshesHypothesisModification();
95   }
96 }
97
98 void HexoticPlugin_Hypothesis::SetHexoticInvalidElements(bool theVal) {
99   if (theVal != _hexoticInvalidElements) {
100     _hexoticInvalidElements = theVal;
101     NotifySubMeshesHypothesisModification();
102   }
103 }
104
105 void HexoticPlugin_Hypothesis::SetHexoticSharpAngleThreshold(double theVal) {
106   if (theVal != _hexoticSharpAngleThreshold) {
107     _hexoticSharpAngleThreshold = theVal;
108     NotifySubMeshesHypothesisModification();
109   }
110 }
111
112 void HexoticPlugin_Hypothesis::SetHexoticNbProc(int theVal) {
113   if (theVal != _hexoticNbProc) {
114     _hexoticNbProc = theVal;
115     NotifySubMeshesHypothesisModification();
116   }
117 }
118
119 void HexoticPlugin_Hypothesis::SetHexoticWorkingDirectory(const std::string& path)
120 {
121   if ( _hexoticWorkingDirectory != path ) {
122     _hexoticWorkingDirectory = path;
123     NotifySubMeshesHypothesisModification();
124   }
125 }
126
127 void HexoticPlugin_Hypothesis::SetHexoticSdMode(int theVal) {
128   if (theVal != _hexoticSdMode) {
129     _hexoticSdMode = theVal;
130     NotifySubMeshesHypothesisModification();
131   }
132 }
133
134 void HexoticPlugin_Hypothesis::SetHexoticVerbosity(int theVal) {
135   if (theVal != _hexoticVerbosity) {
136     _hexoticVerbosity = theVal;
137     NotifySubMeshesHypothesisModification();
138   }
139 }
140
141 void HexoticPlugin_Hypothesis::SetHexoticMaxMemory(int theVal) {
142   if (theVal != _hexoticMaxMemory) {
143     _hexoticMaxMemory = theVal;
144     NotifySubMeshesHypothesisModification();
145   }
146 }
147
148 bool HexoticPlugin_Hypothesis::AddSizeMap(std::string theEntry, double theSize) {
149   THexoticSizeMaps::iterator it;
150   it=_sizeMaps.find(theEntry);
151   if( it == _sizeMaps.end() ) // If no size map is defined on the given object
152   {
153     _sizeMaps[theEntry] = theSize;
154     MESSAGE("NEW size map, entry :"<<theEntry<<", size : "<<theSize);
155     NotifySubMeshesHypothesisModification();
156     return true;
157   }
158   else if( it->second != theSize ) // If a size map exists with a different size value
159   {
160     it->second = theSize;
161     MESSAGE("MODIFIED size map, entry :"<<theEntry<<"with size : "<<theSize);
162     NotifySubMeshesHypothesisModification();
163     return true;
164   }
165   else
166   {
167     MESSAGE("NO size map added")
168     return false; // No size map added
169   }
170 }
171
172 void HexoticPlugin_Hypothesis::ClearSizeMaps()
173 {
174   _sizeMaps.clear();
175 }
176
177 //=============================================================================
178 /*!
179  *  
180  */
181 //=============================================================================
182 std::ostream& HexoticPlugin_Hypothesis::SaveTo(std::ostream& save)
183 {
184   //explicit outputs for future code compatibility of saved .hdf
185   //save without any whitespaces!
186   int dummy = -1;
187   save<<"hexesMinLevel="<<_hexesMinLevel<<";"; 
188   save<<"hexesMaxLevel="<<_hexesMaxLevel<<";";
189   save<<"hexoticIgnoreRidges="<<(int)_hexoticIgnoreRidges<<";";
190   save<<"hexoticInvalidElements="<<(int)_hexoticInvalidElements<<";";
191   save<<"hexoticSharpAngleThreshold="<<_hexoticSharpAngleThreshold<<";";
192   save<<"hexoticNbProc="<<_hexoticNbProc<<";";
193   save<<"hexoticWorkingDirectory="<<_hexoticWorkingDirectory<<";";
194   save<<"minSize="<<_minSize<<";";
195   save<<"maxSize="<<_maxSize<<";";
196   save<<"hexoticSdMode="<<_hexoticSdMode<<";";
197   save<<"hexoticVerbosity="<<_hexoticVerbosity<<";";
198   save<<"hexoticMaxMemory="<<_hexoticMaxMemory<<";";
199   return save;
200 }
201
202 //=============================================================================
203 /*!
204  *  
205  */
206 //=============================================================================
207 std::istream& HexoticPlugin_Hypothesis::LoadFrom(std::istream& load)
208 {
209    //explicit inputs for future code compatibility of saved .hdf
210    bool isOK = true;
211    std::string str1,str2,str3,str4;
212
213    //save without any whitespaces!
214    isOK = (load >> str1);
215    if (!(isOK)) {
216      //defaults values assumed
217      load.clear(std::ios::badbit | load.rdstate());
218      return load;
219    }
220    int pos = 0;
221    int len = str1.length();
222    while (pos < len) {
223       int found = str1.find(';',pos);
224       str2 = str1.substr(pos,found-pos);
225       int eqpos = str2.find('=',0);
226       str3 = str2.substr(0,eqpos);
227       str4 = str2.substr(eqpos+1);
228       pos = found + 1;
229
230       if (str3=="hexesMinLevel") _hexesMinLevel = atoi(str4.c_str());
231       if (str3=="hexesMaxLevel") _hexesMaxLevel = atoi(str4.c_str());
232       if (str3=="hexoticQuadrangles") {}
233       if (str3=="hexoticIgnoreRidges") _hexoticIgnoreRidges = (bool) atoi(str4.c_str());
234       if (str3=="hexoticInvalidElements") _hexoticInvalidElements = (bool) atoi(str4.c_str());
235       if (str3=="hexoticSharpAngleThreshold") _hexoticSharpAngleThreshold = atof(str4.c_str());
236       if (str3=="hexoticNbProc") _hexoticNbProc = atoi(str4.c_str());
237       if (str3=="hexoticWorkingDirectory") _hexoticWorkingDirectory = str4;
238       if (str3=="minSize") _minSize = atof(str4.c_str());
239       if (str3=="maxSize") _maxSize = atof(str4.c_str());
240       if (str3=="hexoticSdMode") _hexoticSdMode = atoi(str4.c_str());
241       if (str3=="hexoticVerbosity") _hexoticVerbosity = atoi(str4.c_str());
242       if (str3=="hexoticMaxMemory") _hexoticMaxMemory = atoi(str4.c_str());
243    }
244    return load;
245 }
246
247 //=============================================================================
248 /*!
249  *  
250  */
251 //=============================================================================
252 std::ostream& operator <<(std::ostream& save, HexoticPlugin_Hypothesis& hyp)
253 {
254   return hyp.SaveTo( save );
255 }
256
257 //=============================================================================
258 /*!
259  *  
260  */
261 //=============================================================================
262 std::istream& operator >>(std::istream& load, HexoticPlugin_Hypothesis& hyp)
263 {
264   return hyp.LoadFrom( load );
265 }
266
267
268 //================================================================================
269 /*!
270  * \brief Does nothing
271  * \param theMesh - the built mesh
272  * \param theShape - the geometry of interest
273  * \retval bool - always false
274  */
275 //================================================================================
276 bool HexoticPlugin_Hypothesis::SetParametersByMesh(const SMESH_Mesh*   theMesh,
277                                                    const TopoDS_Shape& theShape)
278 {
279   return false;
280 }
281 //================================================================================
282 /*!
283  * \brief Initialize my parameter values by default parameters.
284  *  \retval bool - true if parameter values have been successfully defined
285  */
286 //================================================================================
287
288 bool HexoticPlugin_Hypothesis::SetParametersByDefaults(const TDefaults&  /*dflts*/,
289                                                        const SMESH_Mesh* /*theMesh*/)
290 {
291   return false;
292 }
293
294 //=============================================================================
295 int HexoticPlugin_Hypothesis::GetDefaultHexesMinLevel()
296 {
297   return 6;
298 }
299
300 int HexoticPlugin_Hypothesis::GetDefaultHexesMaxLevel()
301 {
302   return 10;
303 }
304
305 double HexoticPlugin_Hypothesis::GetDefaultMinSize()
306 {
307   return 0.0;
308 }
309
310 double HexoticPlugin_Hypothesis::GetDefaultMaxSize()
311 {
312   return 0.0;
313 }
314
315 bool HexoticPlugin_Hypothesis::GetDefaultHexoticIgnoreRidges()
316 {
317   return false;
318 }
319
320 bool HexoticPlugin_Hypothesis::GetDefaultHexoticInvalidElements()
321 {
322   return false;
323 }
324
325 double HexoticPlugin_Hypothesis::GetDefaultHexoticSharpAngleThreshold()
326 {
327   return 60.0;
328 }
329
330 int HexoticPlugin_Hypothesis::GetDefaultHexoticNbProc()
331 {
332   return 4;
333 }
334
335 std::string HexoticPlugin_Hypothesis::GetDefaultHexoticWorkingDirectory()
336 {
337   std::string aTmpDir;
338
339   char *Tmp_dir = getenv("SALOME_TMP_DIR");
340 #ifdef WIN32
341   if(Tmp_dir == NULL) {
342     Tmp_dir = getenv("TEMP");
343     if( Tmp_dir== NULL )
344       Tmp_dir = getenv("TMP");
345   }
346 #endif
347   if( Tmp_dir != NULL ) {
348     aTmpDir = std::string(Tmp_dir);
349 #ifdef WIN32
350     if(aTmpDir[aTmpDir.size()-1] != '\\') aTmpDir+='\\';
351 #else
352     if(aTmpDir[aTmpDir.size()-1] != '/') aTmpDir+='/';
353 #endif
354   }
355   else {
356 #ifdef WIN32
357     aTmpDir = "C:\\";
358 #else
359     aTmpDir = "/tmp/";
360 #endif
361   }
362   return aTmpDir;
363 }
364
365 int HexoticPlugin_Hypothesis::GetDefaultHexoticSdMode()
366 {
367   return 4;
368 }
369
370 int HexoticPlugin_Hypothesis::GetDefaultHexoticVerbosity()
371 {
372   return 1;
373 }
374
375 int HexoticPlugin_Hypothesis::GetDefaultHexoticMaxMemory()
376 {
377   return 2048;
378 }
379
380 HexoticPlugin_Hypothesis::THexoticSizeMaps HexoticPlugin_Hypothesis::GetDefaultHexoticSizeMaps()
381 {
382   return THexoticSizeMaps();
383 }
384
385