Salome HOME
Copyrights update 2015.
[modules/homard.git] / src / HOMARD_I / HOMARD_Cas_i.cxx
1 // Copyright (C) 2011-2015  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, or (at your option) any later version.
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 // Remarques :
21 // L'ordre de description des fonctions est le meme dans tous les fichiers
22 // HOMARD_aaaa.idl, HOMARD_aaaa.hxx, HOMARD_aaaa.cxx, HOMARD_aaaa_i.hxx, HOMARD_aaaa_i.cxx :
23 // 1. Les generalites : Name, Delete, DumpPython, Dump, Restore
24 // 2. Les caracteristiques
25 // 3. Le lien avec les autres structures
26 //
27 // Quand les 2 fonctions Setxxx et Getxxx sont presentes, Setxxx est decrit en premier
28 //
29
30 #include "HOMARD_Cas_i.hxx"
31 #include "HOMARD_Gen_i.hxx"
32 #include "HOMARD_Cas.hxx"
33 #include "HOMARD_DriverTools.hxx"
34 #include "HOMARD.hxx"
35
36 #include "utilities.h"
37 #include <vector>
38 #include <sys/stat.h>
39
40 #ifdef WIN32
41 #include <direct.h>
42 #endif
43
44 //=============================================================================
45 /*!
46  *  standard constructor
47  */
48 //=============================================================================
49 HOMARD_Cas_i::HOMARD_Cas_i()
50 {
51   MESSAGE( "Default constructor, not for use" );
52   ASSERT( 0 );
53 }
54
55 //=============================================================================
56 /*!
57  *  standard constructor
58  */
59 //=============================================================================
60 HOMARD_Cas_i::HOMARD_Cas_i( CORBA::ORB_ptr orb,
61                             HOMARD::HOMARD_Gen_var engine )
62 {
63   MESSAGE( "HOMARD_Cas_i" );
64   _gen_i = engine;
65   _orb = orb;
66   myHomardCas = new ::HOMARD_Cas();
67   ASSERT( myHomardCas );
68 }
69
70 //=============================================================================
71 /*!
72  *  standard destructor
73  */
74 //=============================================================================
75 HOMARD_Cas_i::~HOMARD_Cas_i()
76 {
77 }
78 //=============================================================================
79 //=============================================================================
80 // Generalites
81 //=============================================================================
82 //=============================================================================
83 void HOMARD_Cas_i::SetName( const char* Name )
84 {
85   ASSERT( myHomardCas );
86   myHomardCas->SetName( Name );
87 }
88 //=============================================================================
89 char* HOMARD_Cas_i::GetName()
90 {
91   ASSERT( myHomardCas );
92   return CORBA::string_dup( myHomardCas->GetName().c_str() );
93 }
94 //=============================================================================
95 CORBA::Long  HOMARD_Cas_i::Delete( CORBA::Long Option )
96 {
97   ASSERT( myHomardCas );
98   char* CaseName = GetName() ;
99   MESSAGE ( "Delete : destruction du cas " << CaseName << ", Option = " << Option );
100   return _gen_i->DeleteCase(CaseName, Option) ;
101 }
102 //=============================================================================
103 char* HOMARD_Cas_i::GetDumpPython()
104 {
105   ASSERT( myHomardCas );
106   return CORBA::string_dup( myHomardCas->GetDumpPython().c_str() );
107 }
108 //=============================================================================
109 std::string HOMARD_Cas_i::Dump() const
110 {
111   return HOMARD::Dump( *myHomardCas );
112 }
113 //=============================================================================
114 bool HOMARD_Cas_i::Restore( const std::string& stream )
115 {
116   return HOMARD::Restore( *myHomardCas, stream );
117 }
118 //=============================================================================
119 //=============================================================================
120 // Caracteristiques
121 //=============================================================================
122 //=============================================================================
123 void HOMARD_Cas_i::SetDirName( const char* NomDir )
124 {
125   ASSERT( myHomardCas );
126   int codret ;
127   // A. recuperation du nom ; on ne fait rien si c'est le meme
128   char* oldrep = GetDirName() ;
129   if ( strcmp(oldrep,NomDir) == 0 )
130   {
131    return ;
132   }
133   MESSAGE ( "SetDirName : passage de oldrep = "<< oldrep << " a NomDir = "<<NomDir);
134   // B. controle de l'usage du repertoire
135   char* CaseName = GetName() ;
136   char* casenamedir = _gen_i->VerifieDir(NomDir) ;
137   if ( ( std::string(casenamedir).size() > 0 ) & ( strcmp(CaseName,casenamedir)!=0 ) )
138   {
139     INFOS ( "Le repertoire " << NomDir << " est deja utilise pour le cas "<< casenamedir );
140     SALOME::ExceptionStruct es;
141     es.type = SALOME::BAD_PARAM;
142     std::string text ;
143     text = "The directory " + std::string(NomDir) + " is already used for the case " + std::string(casenamedir) ;
144     es.text = CORBA::string_dup(text.c_str());
145     throw SALOME::SALOME_Exception(es);
146   }
147   // C. Changement/creation du repertoire
148   codret = myHomardCas->SetDirName( NomDir );
149   if ( codret != 0 )
150   {
151     SALOME::ExceptionStruct es;
152     es.type = SALOME::BAD_PARAM;
153     std::string text ;
154     if ( codret == 1 ) { text = "The directory for the case cannot be modified because some iterations are already defined." ; }
155     else               { text = "The directory for the case cannot be reached." ; }
156     es.text = CORBA::string_dup(text.c_str());
157     throw SALOME::SALOME_Exception(es);
158   }
159   // D. En cas de reprise, deplacement du point de depart
160   if ( GetState() != 0 )
161   {
162     MESSAGE ( "etat : " << GetState() ) ;
163     // D.1. Nom local du repertoire de l'iteration de depart dans le repertoire actuel du cas
164     HOMARD::HOMARD_Iteration_ptr Iter = GetIter0() ;
165     char* DirNameIter = Iter->GetDirNameLoc() ;
166     MESSAGE ( "SetDirName : nom actuel pour le repertoire de l iteration, DirNameIter = "<< DirNameIter);
167     // D.2. Recherche d'un nom local pour l'iteration de depart dans le futur repertoire du cas
168     char* nomDirIter = _gen_i->CreateDirNameIter(NomDir, 0 );
169     MESSAGE ( "SetDirName : nom futur pour le repertoire de l iteration, nomDirIter = "<< nomDirIter);
170     // D.3. Creation du futur repertoire local pour l'iteration de depart
171     std::string nomDirIterTotal ;
172     nomDirIterTotal = std::string(NomDir) + "/" + std::string(nomDirIter) ;
173 #ifndef WIN32
174     if (mkdir(nomDirIterTotal.c_str(), S_IRWXU|S_IRGRP|S_IXGRP) != 0)
175 #else
176     if (_mkdir(nomDirIterTotal.c_str()) != 0)
177 #endif
178     {
179       MESSAGE ( "nomDirIterTotal : " << nomDirIterTotal ) ;
180       SALOME::ExceptionStruct es;
181       es.type = SALOME::BAD_PARAM;
182       std::string text = "The directory for the starting iteration cannot be created." ;
183       es.text = CORBA::string_dup(text.c_str());
184       throw SALOME::SALOME_Exception(es);
185     }
186     // D.4. Deplacement du contenu du repertoire
187     std::string oldnomDirIterTotal ;
188     oldnomDirIterTotal = std::string(oldrep) + "/" + std::string(DirNameIter) ;
189     std::string commande = "mv " + std::string(oldnomDirIterTotal) + "/*" + " " + std::string(nomDirIterTotal) ;
190     codret = system(commande.c_str()) ;
191     if ( codret != 0 )
192     {
193       SALOME::ExceptionStruct es;
194       es.type = SALOME::BAD_PARAM;
195       std::string text = "The starting point for the case cannot be moved into the new directory." ;
196       es.text = CORBA::string_dup(text.c_str());
197       throw SALOME::SALOME_Exception(es);
198     }
199     commande = "rm -rf " + std::string(oldnomDirIterTotal) ;
200     codret = system(commande.c_str()) ;
201     if ( codret != 0 )
202     {
203       SALOME::ExceptionStruct es;
204       es.type = SALOME::BAD_PARAM;
205       std::string text = "The starting point for the case cannot be deleted." ;
206       es.text = CORBA::string_dup(text.c_str());
207       throw SALOME::SALOME_Exception(es);
208     }
209     // D.5. Memorisation du nom du repertoire de l'iteration
210     Iter->SetDirNameLoc(nomDirIter) ;
211   }
212   return ;
213 }
214 //=============================================================================
215 char* HOMARD_Cas_i::GetDirName()
216 {
217   ASSERT( myHomardCas );
218   return CORBA::string_dup( myHomardCas->GetDirName().c_str() );
219 }
220 //=============================================================================
221 CORBA::Long HOMARD_Cas_i::GetState()
222 {
223   ASSERT( myHomardCas );
224 // Nom de l'iteration initiale
225   char* Iter0Name = GetIter0Name() ;
226   HOMARD::HOMARD_Iteration_ptr Iter = _gen_i->GetIteration(Iter0Name) ;
227   int state = Iter->GetNumber() ;
228   return state ;
229 }
230 //=============================================================================
231 CORBA::Long HOMARD_Cas_i::GetNumberofIter()
232 {
233   ASSERT( myHomardCas );
234   return myHomardCas->GetNumberofIter();
235 }
236 //=============================================================================
237 void HOMARD_Cas_i::SetConfType( CORBA::Long ConfType )
238 {
239   ASSERT( myHomardCas );
240 //   VERIFICATION( (ConfType>=1) && (ConfType<=4) );
241   myHomardCas->SetConfType( ConfType );
242 }
243 //=============================================================================
244 CORBA::Long HOMARD_Cas_i::GetConfType()
245 {
246   ASSERT( myHomardCas );
247   return myHomardCas->GetConfType();
248 }
249 //=============================================================================
250 void HOMARD_Cas_i::SetBoundingBox( const HOMARD::extrema& LesExtrema )
251 {
252   ASSERT( myHomardCas );
253   std::vector<double> VExtrema;
254   ASSERT( LesExtrema.length() == 10 );
255   VExtrema.resize( LesExtrema.length() );
256   for ( int i = 0; i < LesExtrema.length(); i++ )
257   {
258     VExtrema[i] = LesExtrema[i];
259   }
260   myHomardCas->SetBoundingBox( VExtrema );
261 }
262 //=============================================================================
263 HOMARD::extrema* HOMARD_Cas_i::GetBoundingBox()
264 {
265   ASSERT(myHomardCas );
266   HOMARD::extrema_var aResult = new HOMARD::extrema();
267   std::vector<double> LesExtremes = myHomardCas->GetBoundingBox();
268   ASSERT( LesExtremes.size() == 10 );
269   aResult->length( 10 );
270   for ( int i = 0; i < LesExtremes.size(); i++ )
271   {
272     aResult[i] = LesExtremes[i];
273   }
274   return aResult._retn();
275 }
276 //=============================================================================
277 void HOMARD_Cas_i::AddGroup( const char* Group)
278 {
279   ASSERT( myHomardCas );
280   myHomardCas->AddGroup( Group );
281 }
282 //=============================================================================
283 void HOMARD_Cas_i::SetGroups( const HOMARD::ListGroupType& ListGroup )
284 {
285   ASSERT( myHomardCas );
286   std::list<std::string> ListString ;
287   for ( int i = 0; i < ListGroup.length(); i++ )
288   {
289     ListString.push_back(std::string(ListGroup[i]));
290   }
291   myHomardCas->SetGroups( ListString );
292 }
293 //=============================================================================
294 HOMARD::ListGroupType* HOMARD_Cas_i::GetGroups()
295 {
296   ASSERT(myHomardCas );
297   const std::list<std::string>& ListString = myHomardCas->GetGroups();
298   HOMARD::ListGroupType_var aResult = new HOMARD::ListGroupType();
299   aResult->length( ListString.size() );
300   std::list<std::string>::const_iterator it;
301   int i = 0;
302   for ( it = ListString.begin(); it != ListString.end(); it++ )
303   {
304     aResult[i++] = CORBA::string_dup( (*it).c_str() );
305   }
306   return aResult._retn();
307 }
308 //=============================================================================
309 void HOMARD_Cas_i::AddBoundaryGroup( const char* BoundaryName, const char* Group)
310 {
311   MESSAGE ("AddBoundaryGroup : BoundaryName = "<< BoundaryName << ", Group = " << Group );
312   ASSERT( myHomardCas );
313   // A. La liste des frontiere+groupes
314   const std::list<std::string>& ListBoundaryGroup = myHomardCas->GetBoundaryGroup();
315   std::list<std::string>::const_iterator it;
316   // B. La frontiere
317   // B.1. La frontiere est-elle deja enregistree pour ce cas ?
318   bool existe = false ;
319   for ( it = ListBoundaryGroup.begin(); it != ListBoundaryGroup.end(); it++ )
320   {
321 //     MESSAGE ("..  Frontiere : "<< *it );
322     if ( *it == BoundaryName ) { existe = true ; }
323     it++ ;
324   }
325   // B.2. Pour une nouvelle frontiere, publication dans l'arbre d'etudes sous le cas
326   if ( !existe )
327   {
328     char* CaseName = GetName() ;
329     MESSAGE ( "AddBoundaryGroup : insertion de la frontiere dans l'arbre de " << CaseName );
330     _gen_i->PublishBoundaryUnderCase(CaseName, BoundaryName) ;
331   }
332   // C. Le groupe est-il deja enregistre pour une frontiere de ce cas ?
333   for ( it = ListBoundaryGroup.begin(); it != ListBoundaryGroup.end(); it++ )
334   {
335     std::string boun = *it ;
336     it++ ;
337 //     MESSAGE ("..  Group : "<< *it );
338     if ( *it == Group )
339     { INFOS ("Frontiere " << boun << " Un groupe est deja associe " << Group ) ;
340       SALOME::ExceptionStruct es;
341       es.type = SALOME::BAD_PARAM;
342       es.text = "Invalid AddBoundaryGroup";
343       throw SALOME::SALOME_Exception(es);
344       return ;
345     }
346   }
347   // D. Enregistrement du couple (frontiere,groupe) dans la reference du cas
348   myHomardCas->AddBoundaryGroup( BoundaryName, Group );
349 }
350 //=============================================================================
351 HOMARD::ListBoundaryGroupType* HOMARD_Cas_i::GetBoundaryGroup()
352 {
353   MESSAGE ("GetBoundaryGroup");
354   ASSERT(myHomardCas );
355   const std::list<std::string>& ListBoundaryGroup = myHomardCas->GetBoundaryGroup();
356   HOMARD::ListBoundaryGroupType_var aResult = new HOMARD::ListBoundaryGroupType();
357   aResult->length( ListBoundaryGroup.size() );
358   std::list<std::string>::const_iterator it;
359   int i = 0;
360   for ( it = ListBoundaryGroup.begin(); it != ListBoundaryGroup.end(); it++ )
361   {
362     aResult[i++] = CORBA::string_dup( (*it).c_str() );
363   }
364   return aResult._retn();
365 }
366 //=============================================================================
367 void HOMARD_Cas_i::SupprBoundaryGroup()
368 {
369   MESSAGE ("SupprBoundaryGroup");
370   ASSERT(myHomardCas );
371   myHomardCas->SupprBoundaryGroup();
372 }
373 //=============================================================================
374 void HOMARD_Cas_i::SetPyram( CORBA::Long Pyram )
375 {
376   MESSAGE ("SetPyram, Pyram = " << Pyram );
377   ASSERT( myHomardCas );
378   myHomardCas->SetPyram( Pyram );
379 }
380 //=============================================================================
381 CORBA::Long HOMARD_Cas_i::GetPyram()
382 {
383   MESSAGE ("GetPyram");
384   ASSERT( myHomardCas );
385   return myHomardCas->GetPyram();
386 }
387 //=============================================================================
388 void HOMARD_Cas_i::MeshInfo(CORBA::Long Qual, CORBA::Long Diam, CORBA::Long Conn, CORBA::Long Tail, CORBA::Long Inte)
389 {
390   MESSAGE ( "MeshInfo : information sur le maillage initial du cas" );
391   ASSERT( myHomardCas );
392 //
393 // Nom de l'iteration
394   char* IterName = GetIter0Name() ;
395   CORBA::Long etatMenage = -1 ;
396   CORBA::Long modeHOMARD = 7 ;
397   CORBA::Long Option1 = 1 ;
398   CORBA::Long Option2 = 1 ;
399   if ( Qual != 0 ) { modeHOMARD = modeHOMARD*5 ; }
400   if ( Diam != 0 ) { modeHOMARD = modeHOMARD*19 ; }
401   if ( Conn != 0 ) { modeHOMARD = modeHOMARD*11 ; }
402   if ( Tail != 0 ) { modeHOMARD = modeHOMARD*13 ; }
403   if ( Inte != 0 ) { modeHOMARD = modeHOMARD*3 ; }
404   CORBA::Long codret = _gen_i->Compute(IterName, etatMenage, modeHOMARD, Option1, Option2) ;
405   MESSAGE ( "MeshInfo : codret = " << codret );
406   return ;
407 }
408 //=============================================================================
409 //=============================================================================
410 // Liens avec les autres structures
411 //=============================================================================
412 //=============================================================================
413 char* HOMARD_Cas_i::GetIter0Name()
414 {
415   ASSERT( myHomardCas );
416   return CORBA::string_dup( myHomardCas->GetIter0Name().c_str() );
417 }
418 //=============================================================================
419 HOMARD::HOMARD_Iteration_ptr HOMARD_Cas_i::GetIter0()
420 {
421 // Nom de l'iteration initiale
422   char* Iter0Name = GetIter0Name() ;
423   MESSAGE ( "GetIter0 : Iter0Name      = " << Iter0Name );
424   return _gen_i->GetIteration(Iter0Name) ;
425 }
426 //=============================================================================
427 HOMARD::HOMARD_Iteration_ptr HOMARD_Cas_i::NextIteration( const char* IterName )
428 {
429 // Nom de l'iteration parent
430   char* NomIterParent = GetIter0Name() ;
431   MESSAGE ( "NextIteration : IterName      = " << IterName );
432   MESSAGE ( "NextIteration : NomIterParent = " << NomIterParent );
433   return _gen_i->CreateIteration(IterName, NomIterParent) ;
434 }
435 //=============================================================================
436 HOMARD::HOMARD_Iteration_ptr HOMARD_Cas_i::LastIteration( )
437 {
438   HOMARD::HOMARD_Iteration_ptr Iter ;
439   HOMARD::listeIterFilles_var ListeIterFilles ;
440   char* IterName ;
441 // Iteration initiale du cas
442   IterName = GetIter0Name() ;
443 // On va explorer la descendance de cette iteration initiale
444 // jusqu'a trouver celle qui n'a pas de filles
445   int nbiterfilles = 1 ;
446   while ( nbiterfilles == 1 )
447   {
448 // L'iteration associee
449 //     MESSAGE ( ".. IterName = " << IterName );
450     Iter = _gen_i->GetIteration(IterName) ;
451 // Les filles de cette iteration
452     ListeIterFilles = Iter->GetIterations() ;
453     nbiterfilles = ListeIterFilles->length() ;
454 //     MESSAGE ( ".. nbiterfilles = " << nbiterfilles );
455 // S'il y a au moins 2 filles, arret : on ne sait pas faire
456     VERIFICATION( nbiterfilles <= 1 ) ;
457 // S'il y a une fille unique, on recupere le nom de la fille et on recommence
458     if ( nbiterfilles == 1 )
459     { IterName = ListeIterFilles[0] ; }
460   }
461 //
462   return Iter ;
463 }
464 //=============================================================================
465 void HOMARD_Cas_i::AddIteration( const char* NomIteration )
466 {
467   ASSERT( myHomardCas );
468   myHomardCas->AddIteration( NomIteration );
469 }
470 //=============================================================================
471 //=============================================================================
472 // YACS
473 //=============================================================================
474 //=============================================================================
475 //=============================================================================
476 // Creation d'un schema YACS
477 // YACSName : nom du schema
478 // ScriptFile : nom du fichier contenant le script de lancement du calcul
479 // DirName : le repertoire de lancement des calculs du sch?ma
480 // MeshFile : nom du fichier contenant le maillage pour le premier calcul
481 //=============================================================================
482 HOMARD::HOMARD_YACS_ptr HOMARD_Cas_i::CreateYACSSchema( const char* YACSName, const char* ScriptFile, const char* DirName, const char* MeshFile )
483 {
484 // Nom du cas
485   const char* CaseName = GetName() ;
486   MESSAGE ( "CreateYACSSchema : Schema YACS pour le cas " << YACSName);
487   MESSAGE ( "nomCas     : " << CaseName);
488   MESSAGE ( "ScriptFile : " << ScriptFile);
489   MESSAGE ( "DirName    : " << DirName);
490   MESSAGE ( "MeshFile   : " << MeshFile);
491   return _gen_i->CreateYACSSchema(YACSName, CaseName, ScriptFile, DirName, MeshFile) ;
492 }