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