1 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
24 // File : SMESH_Hypothesis_i.cxx
25 // Author : Paul RASCLE, EDF
30 #include "SMESH_Hypothesis_i.hxx"
31 #include "SMESH_Gen_i.hxx"
32 #include "utilities.h"
36 //=============================================================================
38 * SMESH_Hypothesis_i::SMESH_Hypothesis_i
42 //=============================================================================
44 SMESH_Hypothesis_i::SMESH_Hypothesis_i( PortableServer::POA_ptr thePOA )
45 : SALOME::GenericObj_i( thePOA )
47 MESSAGE( "SMESH_Hypothesis_i::SMESH_Hypothesis_i / Début" );
50 MESSAGE( "SMESH_Hypothesis_i::SMESH_Hypothesis_i / Fin" );
53 //=============================================================================
55 * SMESH_Hypothesis_i::~SMESH_Hypothesis_i
59 //=============================================================================
61 SMESH_Hypothesis_i::~SMESH_Hypothesis_i()
63 MESSAGE( "SMESH_Hypothesis_i::~SMESH_Hypothesis_i" );
68 //=============================================================================
70 * SMESH_Hypothesis_i::GetName
72 * Get type name of hypothesis
74 //=============================================================================
76 char* SMESH_Hypothesis_i::GetName()
78 //MESSAGE( "SMESH_Hypothesis_i::GetName" );
79 return CORBA::string_dup( myBaseImpl->GetName() );
82 //=============================================================================
84 * SMESH_Hypothesis_i::GetLibName
86 * Get plugin library name of hypothesis (required by persistency mechanism)
88 //=============================================================================
90 char* SMESH_Hypothesis_i::GetLibName()
92 MESSAGE( "SMESH_Hypothesis_i::GetLibName" );
93 return CORBA::string_dup( myBaseImpl->GetLibName() );
96 //=============================================================================
98 * SMESH_Hypothesis_i::SetLibName
100 * Set plugin library name of hypothesis (required by persistency mechanism)
102 //=============================================================================
104 void SMESH_Hypothesis_i::SetLibName(const char* theLibName)
106 MESSAGE( "SMESH_Hypothesis_i::SetLibName" );
107 myBaseImpl->SetLibName( theLibName );
110 //=============================================================================
112 * SMESH_Hypothesis_i::GetId
114 * Get unique id of hypothesis
116 //=============================================================================
118 CORBA::Long SMESH_Hypothesis_i::GetId()
120 MESSAGE( "SMESH_Hypothesis_i::GetId" );
121 return myBaseImpl->GetID();
124 //=============================================================================
126 * SMESH_Hypothesis_i::IsPublished()
129 //=============================================================================
130 bool SMESH_Hypothesis_i::IsPublished(){
132 SMESH_Gen_i *gen = SMESH_Gen_i::GetSMESHGen();
134 SALOMEDS::SObject_var SO =
135 SMESH_Gen_i::ObjectToSObject(gen->GetCurrentStudy() , SMESH::SMESH_Hypothesis::_narrow(_this()));
136 res = !SO->_is_nil();
141 //================================================================================
143 * \brief Set the pramIndex-th parameter
145 //================================================================================
147 void SMESH_Hypothesis_i::SetVarParameter (const char* theParameter,
148 const char* theMethod)
150 if ( SMESH_Gen_i *gen = SMESH_Gen_i::GetSMESHGen() )
152 gen->UpdateParameters(theParameter);
154 const std::vector< std::string >& pars = gen->GetLastParameters();
156 myMethod2VarParams[ theMethod ] = pars[0];
160 //================================================================================
162 * \brief Return the pramIndex-th variable parameter used for Hypothesis creation
164 //================================================================================
166 char* SMESH_Hypothesis_i::GetVarParameter (const char* theMethod)
168 if ( myMethod2VarParams.count("needs update by old study"))
170 // restore myMethod2VarParams by old study
171 myMethod2VarParams.clear();
172 if ( SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen() )
174 CORBA::String_var oldparVar = gen->GetParameters( _this() );
175 setOldParameters( oldparVar.in() );
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() );
182 return CORBA::string_dup("");
185 //================================================================================
187 * \brief Restore myMethod2VarParams by parameters stored in an old study
189 //================================================================================
191 void SMESH_Hypothesis_i::setOldParameters (const char* theParameters)
193 if ( SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen() )
195 TCollection_AsciiString aOldParameters(theParameters);
196 int pos = aOldParameters.SearchFromEnd("|");
197 if ( pos >= 0 ) aOldParameters = aOldParameters.Split(pos);
198 pos = aOldParameters.SearchFromEnd(";*=");
199 if ( pos >= 0 ) aOldParameters.Split(pos-1);
200 gen->UpdateParameters( aOldParameters.ToCString() );
202 myMethod2VarParams.clear();
203 const std::vector< std::string >& pars = gen->GetLastParameters();
204 for ( size_t i = 0; i < pars.size(); ++i )
206 std::string meth = getMethodOfParameter( i, pars.size() );
207 myMethod2VarParams[ meth ] = pars[i];
209 gen->UpdateParameters(""); // clear params
213 //=============================================================================
215 * SMESH_Hypothesis_i::SetParameters()
218 //=============================================================================
219 void SMESH_Hypothesis_i::SetParameters(const char* theParameters)
221 SMESH_Gen_i *gen = SMESH_Gen_i::GetSMESHGen();
222 //char * aParameters = CORBA::string_dup(theParameters);
224 gen->UpdateParameters(theParameters);
225 // if(IsPublished()) {
226 // SMESH_Gen_i::GetSMESHGen()->UpdateParameters(SMESH::SMESH_Hypothesis::_narrow(_this()),aParameters);
229 // myBaseImpl->SetParameters(gen->ParseParameters(aParameters));
234 //=============================================================================
236 * SMESH_Hypothesis_i::GetParameters()
239 //=============================================================================
240 char* SMESH_Hypothesis_i::GetParameters()
242 SMESH_Gen_i *gen = SMESH_Gen_i::GetSMESHGen();
245 MESSAGE("SMESH_Hypothesis_i::GetParameters() : Get Parameters from SObject");
246 aResult = gen->GetParameters(SMESH::SMESH_Hypothesis::_narrow(_this()));
249 MESSAGE("SMESH_Hypothesis_i::GetParameters() : Get local parameters");
250 aResult = myBaseImpl->GetParameters();
252 return CORBA::string_dup(aResult);
255 //=============================================================================
257 * SMESH_Hypothesis_i::GetLastParameters()
260 //=============================================================================
261 SMESH::ListOfParameters* SMESH_Hypothesis_i::GetLastParameters()
263 SMESH::ListOfParameters_var aResult = new SMESH::ListOfParameters();
264 SMESH_Gen_i *gen = SMESH_Gen_i::GetSMESHGen();
268 aParameters = GetParameters();
270 aParameters = myBaseImpl->GetLastParameters();
272 SALOMEDS::Study_ptr aStudy = gen->GetCurrentStudy();
273 if(!aStudy->_is_nil()) {
274 SALOMEDS::ListOfListOfStrings_var aSections = aStudy->ParseVariables(aParameters);
275 if(aSections->length() > 0) {
276 SALOMEDS::ListOfStrings aVars = aSections[aSections->length()-1];
277 aResult->length(aVars.length());
278 for(int i = 0;i < aVars.length();i++)
279 aResult[i] = CORBA::string_dup( aVars[i]);
283 return aResult._retn();
286 //=============================================================================
288 * SMESH_Hypothesis_i::SetLastParameters()
291 //=============================================================================
292 void SMESH_Hypothesis_i::SetLastParameters(const char* theParameters)
295 myBaseImpl->SetLastParameters(theParameters);
298 //=============================================================================
300 * SMESH_Hypothesis_i::ClearParameters()
303 //=============================================================================
304 void SMESH_Hypothesis_i::ClearParameters()
306 myMethod2VarParams.clear();
307 // if(!IsPublished()) {
308 // myBaseImpl->ClearParameters();
312 //=============================================================================
314 * SMESH_Hypothesis_i::GetImpl
318 //=============================================================================
320 ::SMESH_Hypothesis* SMESH_Hypothesis_i::GetImpl()
325 //=============================================================================
327 * SMESH_Hypothesis_i::SaveTo
329 * Persistence: Dumps parameters to the string stream
331 //=============================================================================
333 char* SMESH_Hypothesis_i::SaveTo()
335 std::ostringstream os;
337 // assure that parameters are loaded from an old study
338 CORBA::String_var p = GetVarParameter("");
340 os << "VARS " << myMethod2VarParams.size() << " ";
341 std::map< std::string, std::string >::iterator meth_param = myMethod2VarParams.begin();
342 for ( ; meth_param != myMethod2VarParams.end(); ++meth_param )
343 os << meth_param->first << " "
344 << meth_param->second.size() << " "
345 << meth_param->second << " ";
347 myBaseImpl->SaveTo( os );
348 return CORBA::string_dup( os.str().c_str() );
351 //=============================================================================
353 * SMESH_Hypothesis_i::LoadFrom
355 * Persistence: Restores parameters from string
357 //=============================================================================
359 void SMESH_Hypothesis_i::LoadFrom( const char* theStream )
361 std::istringstream is( theStream );
362 if ( strncmp( theStream, "VARS", 4 ) == 0 )
368 for ( int i = 0; i < nbVars; ++i )
373 is.get( str, len + 2 ); // 2 - to read at least 1 white space
375 myMethod2VarParams[ meth ] = std::string( str+1, len );
381 // we can't restore myMethod2VarParams by old study here because SObject
382 // isn't yet bound to _this()
383 myMethod2VarParams["needs update by old study"] = "yes";
386 myBaseImpl->LoadFrom( is );
388 // let listeners know about loading (issue 0020918)
389 myBaseImpl->NotifySubMeshesHypothesisModification();
392 //================================================================================
394 * \brief This mesthod is called after completion of loading a study
396 //================================================================================
398 void SMESH_Hypothesis_i::UpdateAsMeshesRestored()
400 // for hyps needing full data restored