Salome HOME
22806: EDF SMESH: Regression: Prism_3D error
[modules/smesh.git] / src / SMESH_I / SMESH_Hypothesis_i.cxx
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_I : idl implementation based on 'SMESH' unit's calsses
24 //  File   : SMESH_Hypothesis_i.cxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //
28 #include "SMESH_Hypothesis_i.hxx"
29 #include "SMESH_Gen_i.hxx"
30
31 #include <utilities.h>
32 #include <SALOMEDS_wrap.hxx>
33
34 #include <iostream>
35 #include <sstream>
36
37 using namespace std;
38
39 //=============================================================================
40 /*!
41  *  SMESH_Hypothesis_i::SMESH_Hypothesis_i
42  * 
43  *  Constructor
44  */
45 //=============================================================================
46
47 SMESH_Hypothesis_i::SMESH_Hypothesis_i( PortableServer::POA_ptr thePOA )
48   : SALOME::GenericObj_i( thePOA )
49 {
50   myBaseImpl = 0;
51 };
52
53 //=============================================================================
54 /*!
55  *  SMESH_Hypothesis_i::~SMESH_Hypothesis_i
56  *
57  *  Destructor
58  */
59 //=============================================================================
60
61 SMESH_Hypothesis_i::~SMESH_Hypothesis_i()
62 {
63   MESSAGE( "SMESH_Hypothesis_i::~SMESH_Hypothesis_i" );
64   if ( myBaseImpl )
65     delete myBaseImpl;
66 };
67
68 //=============================================================================
69 /*!
70  *  SMESH_Hypothesis_i::GetName
71  *
72  *  Get type name of hypothesis
73  */
74 //=============================================================================
75
76 char* SMESH_Hypothesis_i::GetName()
77 {
78   return CORBA::string_dup( myBaseImpl->GetName() );
79 };
80
81 //=============================================================================
82 /*!
83  *  SMESH_Hypothesis_i::GetLibName
84  *
85  *  Get plugin library name of hypothesis (required by persistency mechanism)
86  */
87 //=============================================================================
88
89 char* SMESH_Hypothesis_i::GetLibName()
90 {
91   return CORBA::string_dup( myBaseImpl->GetLibName() );
92 };
93
94 //=============================================================================
95 /*!
96  *  SMESH_Hypothesis_i::SetLibName
97  *
98  *  Set plugin library name of hypothesis (required by persistency mechanism)
99  */
100 //=============================================================================
101
102 void SMESH_Hypothesis_i::SetLibName(const char* theLibName)
103 {
104   myBaseImpl->SetLibName( theLibName );
105 };
106
107 //=============================================================================
108 /*!
109  *  SMESH_Hypothesis_i::GetId
110  *
111  *  Get unique id of hypothesis
112  */
113 //=============================================================================
114
115 CORBA::Long SMESH_Hypothesis_i::GetId()
116 {
117   return myBaseImpl->GetID();
118 }
119
120 //=============================================================================
121 /*!
122  *  SMESH_Hypothesis_i::IsPublished()
123  *
124  */
125 //=============================================================================
126 bool SMESH_Hypothesis_i::IsPublished()
127 {
128   bool res = false;
129   if ( SMESH_Gen_i *gen = SMESH_Gen_i::GetSMESHGen())
130   {
131     SALOMEDS::Study_var study = gen->GetCurrentStudy();
132     SALOMEDS::SObject_wrap SO = SMESH_Gen_i::ObjectToSObject( study, _this());
133     res = !SO->_is_nil();
134   }
135   return res;
136 }
137
138 //================================================================================
139 /*!
140  * \brief Set the pramIndex-th parameter
141  */
142 //================================================================================
143
144 void SMESH_Hypothesis_i::SetVarParameter (const char* theParameter,
145                                           const char* theMethod)
146 {
147   if ( SMESH_Gen_i *gen = SMESH_Gen_i::GetSMESHGen() )
148   {
149     SMESH::SMESH_Hypothesis_var varHolder;
150     if ( myHolder->_is_nil() ) varHolder = _this();
151     else                       varHolder = myHolder;
152     gen->UpdateParameters( varHolder, theParameter );
153
154     const std::vector< std::string >& pars = gen->GetLastParameters();
155     if ( !pars.empty() )
156       myMethod2VarParams[ theMethod ] = pars[0];
157   }
158 }
159
160 //================================================================================
161 /*!
162  * \brief Return the pramIndex-th variable parameter used for Hypothesis creation
163  */
164 //================================================================================
165
166 char* SMESH_Hypothesis_i::GetVarParameter (const char* theMethod)
167 {
168   if ( myMethod2VarParams.count("needs update by old study"))
169   {
170     // restore myMethod2VarParams by old study
171     myMethod2VarParams.clear();
172     if ( SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen() )
173     {
174       CORBA::String_var oldparVar = gen->GetParameters( _this() );
175       setOldParameters( oldparVar.in() );
176     }
177   }
178   std::map< std::string, std::string >::iterator meth_param = myMethod2VarParams.find( theMethod );
179   if ( meth_param != myMethod2VarParams.end() )
180     return CORBA::string_dup( meth_param->second.c_str() );
181
182   return CORBA::string_dup("");
183 }
184
185 //================================================================================
186 /*!
187  * \brief Store a hypothesis wrapping this not published one.
188  *
189  * This hyp, which has no own parameters but is published, is used to store variables
190  * defining parameters of this hypothesis.
191  */
192 //================================================================================
193
194 void SMESH_Hypothesis_i::SetHolderHypothesis(const SMESH::SMESH_Hypothesis_ptr hyp)
195 {
196   myHolder = SMESH::SMESH_Hypothesis::_duplicate( hyp );
197 }
198
199 //================================================================================
200 /*!
201  * \brief Restore myMethod2VarParams by parameters stored in an old study
202  */
203 //================================================================================
204
205 void SMESH_Hypothesis_i::setOldParameters (const char* theParameters)
206 {
207   if ( SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen() )
208   {
209     TCollection_AsciiString aOldParameters(theParameters);
210     int pos = aOldParameters.SearchFromEnd("|");
211     if ( pos >= 0 ) aOldParameters = aOldParameters.Split(pos);
212     pos = aOldParameters.SearchFromEnd(";*=");
213     if ( pos >= 0 ) aOldParameters.Split(pos-1);
214     gen->UpdateParameters( CORBA::Object_var( _this() ).in(), aOldParameters.ToCString() );
215
216     myMethod2VarParams.clear();
217     const std::vector< std::string >& pars = gen->GetLastParameters();
218     for ( size_t i = 0; i < pars.size(); ++i )
219     {
220       std::string meth = getMethodOfParameter( i, pars.size() );
221       myMethod2VarParams[ meth ] = pars[i];
222     }
223     gen->UpdateParameters( CORBA::Object_var( _this() ).in(), "" ); // clear params
224   }
225 }
226
227 //=============================================================================
228 /*!
229  *  SMESH_Hypothesis_i::GetImpl
230  *
231  *  Get implementation
232  */
233 //=============================================================================
234
235 ::SMESH_Hypothesis* SMESH_Hypothesis_i::GetImpl()
236 {
237   return myBaseImpl;
238 }
239
240 //=============================================================================
241 /*!
242  *  SMESH_Hypothesis_i::SaveTo
243  *
244  *  Persistence: Dumps parameters to the string stream
245  */
246 //=============================================================================
247
248 char* SMESH_Hypothesis_i::SaveTo()
249 {
250   std::ostringstream os;
251
252   // assure that parameters are loaded from an old study
253   CORBA::String_var p = GetVarParameter("");
254
255   os << "VARS " << myMethod2VarParams.size()  << " ";
256   std::map< std::string, std::string >::iterator meth_param = myMethod2VarParams.begin();
257   for ( ; meth_param != myMethod2VarParams.end(); ++meth_param )
258     os << meth_param->first << " "
259        << meth_param->second.size() << " "
260        << meth_param->second << " ";
261
262   myBaseImpl->SaveTo( os );
263   return CORBA::string_dup( os.str().c_str() );
264 }
265
266 //=============================================================================
267 /*!
268 *  SMESH_Hypothesis_i::LoadFrom
269 *
270 *  Persistence: Restores parameters from string
271 */
272 //=============================================================================
273
274 void SMESH_Hypothesis_i::LoadFrom( const char* theStream )
275 {
276   std::istringstream is( theStream );
277   if ( strncmp( theStream, "VARS", 4 ) == 0 )
278   {
279     int nbVars, len;
280     char str[256];
281     std::string meth;
282     is >> str >> nbVars;
283     for ( int i = 0; i < nbVars; ++i )
284     {
285       is >> meth >> len;
286       if ( len < 256 )
287       {
288         is.get( str, len + 2 ); // 2 - to read at least 1 white space
289         if ( len > 0 )
290           myMethod2VarParams[ meth ] = std::string( str+1, len );
291       }
292     }
293   }
294   else
295   {
296     // we can't restore myMethod2VarParams by old study here because SObject
297     // isn't yet bound to _this()
298     myMethod2VarParams["needs update by old study"] = "yes";
299   }
300
301   myBaseImpl->LoadFrom( is );
302
303   // let listeners know about loading (issue 0020918)
304   myBaseImpl->NotifySubMeshesHypothesisModification();
305 }
306
307 //================================================================================
308 /*!
309  * \brief This mesthod is called after completion of loading a study 
310  */
311 //================================================================================
312
313 void SMESH_Hypothesis_i::UpdateAsMeshesRestored()
314 {
315   // for hyps needing full data restored
316 }