Salome HOME
f15cfa2fbb76cee00badbe774b36c7d39b44ab26
[modules/homard.git] / src / HOMARD_I / HOMARD_Iteration_i.hxx
1 // Copyright (C) 2011-2012  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 #ifndef _HOMARD_ITERATION_I_HXX_
21 #define _HOMARD_ITERATION_I_HXX_
22
23 #include <SALOMEconfig.h>
24 #include CORBA_SERVER_HEADER(HOMARD_Gen)
25 #include CORBA_SERVER_HEADER(HOMARD_Iteration)
26
27 #include "SALOME_Component_i.hxx"
28 #include "SALOME_NamingService.hxx"
29 #include "Utils_CorbaException.hxx"
30
31 #include <string>
32
33 class HOMARD_Iteration;
34
35 class HOMARD_Iteration_i:
36   public virtual Engines_Component_i,
37   public virtual POA_HOMARD::HOMARD_Iteration,
38   public virtual PortableServer::ServantBase
39 {
40 public:
41   HOMARD_Iteration_i( CORBA::ORB_ptr orb,
42                       HOMARD::HOMARD_Gen_var gen_i );
43   HOMARD_Iteration_i();
44
45   virtual ~HOMARD_Iteration_i();
46
47   void                   SetName( const char* Name );
48   char*                  GetName();
49
50   HOMARD::HOMARD_Iteration_ptr NextIteration( const char* Name) ;
51
52   void                   SetIterParentName( const char* NomIterParent );
53   char*                  GetIterParentName();
54   HOMARD::HOMARD_Iteration_ptr GetIterParent() ;
55
56   void                   SetEtat( CORBA::Boolean etat );
57   CORBA::Boolean         GetEtat();
58
59   void                   SetNumber( CORBA::Long NumIter );
60   CORBA::Long            GetNumber();
61
62   void                   SetMeshName( const char* NomMesh );
63   char*                  GetMeshName();
64
65   void                   SetMeshFile( const char* MeshFile );
66   char*                  GetMeshFile();
67
68   void                   SetFieldFile( const char* FieldFile );
69   char*                  GetFieldFile();
70   void                   SetTimeStepRank( CORBA::Long TimeStep, CORBA::Long Rank );
71   CORBA::Long            GetTimeStep();
72   CORBA::Long            GetRank();
73
74   void                   SetMessFile( const char* MessFile );
75   char*                  GetMessFile();
76
77   void                   AddIteration( const char* NomIteration );
78   HOMARD::listeIterFilles* GetIterations();
79
80   void                   SetCaseName( const char* NomCas );
81   char*                  GetCaseName();
82
83   void                   SetDirName( const char* NomDir );
84   char*                  GetDirName();
85
86   void                   AssociateHypo( const char* NomHypo);
87
88   void                   SetHypoName( const char* NomHypo );
89   char*                  GetHypoName();
90
91   CORBA::Long            Compute(CORBA::Long etatMenage);
92
93   std::string            Dump() const;
94   bool                   Restore( const std::string& stream );
95
96   char*                  GetDumpPython();
97
98 private:
99   ::HOMARD_Iteration*    myHomardIteration;
100
101   CORBA::ORB_ptr         _orb;
102   HOMARD::HOMARD_Gen_var _gen_i;
103 };
104
105 #endif