Salome HOME
IMP: HexoticPlugin/Size maps: implemented missing save mechanism
[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   
152   if(theSize <= 0)
153     return false;
154   
155   if( it == _sizeMaps.end() ) // If no size map is defined on the given object
156   {
157     _sizeMaps[theEntry] = theSize;
158     MESSAGE("NEW size map, entry :"<<theEntry<<", size : "<<theSize);
159     NotifySubMeshesHypothesisModification();
160     return true;
161   }
162   else if( it->second != theSize ) // If a size map exists with a different size value
163   {
164     it->second = theSize;
165     MESSAGE("MODIFIED size map, entry :"<<theEntry<<"with size : "<<theSize);
166     NotifySubMeshesHypothesisModification();
167     return true;
168   }
169   else
170   {
171     MESSAGE("NO size map added")
172     return false; // No size map added
173   }
174 }
175
176 bool HexoticPlugin_Hypothesis::UnsetSizeMap(std::string theEntry) {
177   THexoticSizeMaps::iterator it;
178   it=_sizeMaps.find(theEntry);
179   if( it != _sizeMaps.end() )
180   {
181     _sizeMaps.erase(it);  
182     return true;
183   }
184   else
185     return false;
186 }
187
188 //=============================================================================
189 /*!
190  *  
191  */
192 //=============================================================================
193 std::ostream& HexoticPlugin_Hypothesis::SaveTo(std::ostream& save)
194 {
195   //explicit outputs for future code compatibility of saved .hdf
196   //save without any whitespaces!
197   int dummy = -1;
198   save<<"hexesMinLevel="<<_hexesMinLevel<<";"; 
199   save<<"hexesMaxLevel="<<_hexesMaxLevel<<";";
200   save<<"hexoticIgnoreRidges="<<(int)_hexoticIgnoreRidges<<";";
201   save<<"hexoticInvalidElements="<<(int)_hexoticInvalidElements<<";";
202   save<<"hexoticSharpAngleThreshold="<<_hexoticSharpAngleThreshold<<";";
203   save<<"hexoticNbProc="<<_hexoticNbProc<<";";
204   save<<"hexoticWorkingDirectory="<<_hexoticWorkingDirectory<<";";
205   save<<"minSize="<<_minSize<<";";
206   save<<"maxSize="<<_maxSize<<";";
207   save<<"hexoticSdMode="<<_hexoticSdMode<<";";
208   save<<"hexoticVerbosity="<<_hexoticVerbosity<<";";
209   save<<"hexoticMaxMemory="<<_hexoticMaxMemory<<";";
210   THexoticSizeMaps::iterator it = _sizeMaps.begin();
211   if ( it != _sizeMaps.end() )
212   {
213     save<<"sizeMaps=";
214     for ( ; it!=_sizeMaps.end() ; it++ )
215     {
216       save<< it->first << "/" << it->second << "#" ;
217     }
218     save<<";";
219   }
220   return save;
221 }
222
223 //=============================================================================
224 /*!
225  *  
226  */
227 //=============================================================================
228 std::istream& HexoticPlugin_Hypothesis::LoadFrom(std::istream& load)
229 {
230    //explicit inputs for future code compatibility of saved .hdf
231    bool isOK = true;
232    std::string str1,str2,str3,str4;
233
234    //save without any whitespaces!
235    isOK = (load >> str1);
236    if (!(isOK)) {
237      //defaults values assumed
238      load.clear(std::ios::badbit | load.rdstate());
239      return load;
240    }
241    int pos = 0;
242    int len = str1.length();
243    while (pos < len) {
244       int found = str1.find(';',pos);
245       str2 = str1.substr(pos,found-pos);
246       int eqpos = str2.find('=',0);
247       str3 = str2.substr(0,eqpos);
248       str4 = str2.substr(eqpos+1);
249       pos = found + 1;
250
251       if (str3=="hexesMinLevel") _hexesMinLevel = atoi(str4.c_str());
252       if (str3=="hexesMaxLevel") _hexesMaxLevel = atoi(str4.c_str());
253       if (str3=="hexoticQuadrangles") {}
254       if (str3=="hexoticIgnoreRidges") _hexoticIgnoreRidges = (bool) atoi(str4.c_str());
255       if (str3=="hexoticInvalidElements") _hexoticInvalidElements = (bool) atoi(str4.c_str());
256       if (str3=="hexoticSharpAngleThreshold") _hexoticSharpAngleThreshold = atof(str4.c_str());
257       if (str3=="hexoticNbProc") _hexoticNbProc = atoi(str4.c_str());
258       if (str3=="hexoticWorkingDirectory") _hexoticWorkingDirectory = str4;
259       if (str3=="minSize") _minSize = atof(str4.c_str());
260       if (str3=="maxSize") _maxSize = atof(str4.c_str());
261       if (str3=="hexoticSdMode") _hexoticSdMode = atoi(str4.c_str());
262       if (str3=="hexoticVerbosity") _hexoticVerbosity = atoi(str4.c_str());
263       if (str3=="hexoticMaxMemory") _hexoticMaxMemory = atoi(str4.c_str());
264       if (str3=="sizeMaps")
265       {
266         std::string sm_substr, sm_substr1, sm_substr2;
267         int sm_pos = 0;
268         int sm_len = str4.length();
269         while ( sm_pos < sm_len )
270         {
271           int sm_found = str4.find('#',sm_pos);
272           sm_substr = str4.substr(sm_pos,sm_found-sm_pos);
273           int sm_slashpos = sm_substr.find('/',0);
274           sm_substr1 = sm_substr.substr(0,sm_slashpos);
275           sm_substr2 = sm_substr.substr(sm_slashpos+1);
276           _sizeMaps[sm_substr1] = atof(sm_substr2.c_str());
277           sm_pos = sm_found + 1;
278         }
279       }
280    }
281    return load;
282 }
283
284 //=============================================================================
285 /*!
286  *  
287  */
288 //=============================================================================
289 std::ostream& operator <<(std::ostream& save, HexoticPlugin_Hypothesis& hyp)
290 {
291   return hyp.SaveTo( save );
292 }
293
294 //=============================================================================
295 /*!
296  *  
297  */
298 //=============================================================================
299 std::istream& operator >>(std::istream& load, HexoticPlugin_Hypothesis& hyp)
300 {
301   return hyp.LoadFrom( load );
302 }
303
304
305 //================================================================================
306 /*!
307  * \brief Does nothing
308  * \param theMesh - the built mesh
309  * \param theShape - the geometry of interest
310  * \retval bool - always false
311  */
312 //================================================================================
313 bool HexoticPlugin_Hypothesis::SetParametersByMesh(const SMESH_Mesh*   theMesh,
314                                                    const TopoDS_Shape& theShape)
315 {
316   return false;
317 }
318 //================================================================================
319 /*!
320  * \brief Initialize my parameter values by default parameters.
321  *  \retval bool - true if parameter values have been successfully defined
322  */
323 //================================================================================
324
325 bool HexoticPlugin_Hypothesis::SetParametersByDefaults(const TDefaults&  /*dflts*/,
326                                                        const SMESH_Mesh* /*theMesh*/)
327 {
328   return false;
329 }
330
331 //=============================================================================
332 int HexoticPlugin_Hypothesis::GetDefaultHexesMinLevel()
333 {
334   return 6;
335 }
336
337 int HexoticPlugin_Hypothesis::GetDefaultHexesMaxLevel()
338 {
339   return 10;
340 }
341
342 double HexoticPlugin_Hypothesis::GetDefaultMinSize()
343 {
344   return 0.0;
345 }
346
347 double HexoticPlugin_Hypothesis::GetDefaultMaxSize()
348 {
349   return 0.0;
350 }
351
352 bool HexoticPlugin_Hypothesis::GetDefaultHexoticIgnoreRidges()
353 {
354   return false;
355 }
356
357 bool HexoticPlugin_Hypothesis::GetDefaultHexoticInvalidElements()
358 {
359   return false;
360 }
361
362 double HexoticPlugin_Hypothesis::GetDefaultHexoticSharpAngleThreshold()
363 {
364   return 60.0;
365 }
366
367 int HexoticPlugin_Hypothesis::GetDefaultHexoticNbProc()
368 {
369   return 4;
370 }
371
372 std::string HexoticPlugin_Hypothesis::GetDefaultHexoticWorkingDirectory()
373 {
374   std::string aTmpDir;
375
376   char *Tmp_dir = getenv("SALOME_TMP_DIR");
377 #ifdef WIN32
378   if(Tmp_dir == NULL) {
379     Tmp_dir = getenv("TEMP");
380     if( Tmp_dir== NULL )
381       Tmp_dir = getenv("TMP");
382   }
383 #endif
384   if( Tmp_dir != NULL ) {
385     aTmpDir = std::string(Tmp_dir);
386 #ifdef WIN32
387     if(aTmpDir[aTmpDir.size()-1] != '\\') aTmpDir+='\\';
388 #else
389     if(aTmpDir[aTmpDir.size()-1] != '/') aTmpDir+='/';
390 #endif
391   }
392   else {
393 #ifdef WIN32
394     aTmpDir = "C:\\";
395 #else
396     aTmpDir = "/tmp/";
397 #endif
398   }
399   return aTmpDir;
400 }
401
402 int HexoticPlugin_Hypothesis::GetDefaultHexoticSdMode()
403 {
404   return 4;
405 }
406
407 int HexoticPlugin_Hypothesis::GetDefaultHexoticVerbosity()
408 {
409   return 1;
410 }
411
412 int HexoticPlugin_Hypothesis::GetDefaultHexoticMaxMemory()
413 {
414   return 2048;
415 }
416
417 HexoticPlugin_Hypothesis::THexoticSizeMaps HexoticPlugin_Hypothesis::GetDefaultHexoticSizeMaps()
418 {
419   return THexoticSizeMaps();
420 }
421
422