Salome HOME
Copyright update 2022
[modules/homard.git] / src / HOMARD_I / HOMARD_YACS_i.hxx
1 // Copyright (C) 2011-2022  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 #ifndef _HOMARD_YACS_I_HXX_
31 #define _HOMARD_YACS_I_HXX_
32
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(HOMARD_Gen)
35 #include CORBA_SERVER_HEADER(HOMARD_YACS)
36
37 #include "HOMARD_i.hxx"
38 #include "SALOME_Component_i.hxx"
39 #include "SALOME_NamingService.hxx"
40 #include "Utils_CorbaException.hxx"
41
42 #include <string>
43
44 class HOMARD_YACS;
45
46 class HOMARDENGINE_EXPORT HOMARD_YACS_i:
47   public virtual Engines_Component_i,
48   public virtual POA_HOMARD::HOMARD_YACS,
49   public virtual PortableServer::ServantBase
50 {
51 public:
52   HOMARD_YACS_i( CORBA::ORB_ptr orb,
53                       HOMARD::HOMARD_Gen_var gen_i );
54   HOMARD_YACS_i();
55
56   virtual ~HOMARD_YACS_i();
57
58 // Generalites
59   void                   SetName( const char* Name );
60   char*                  GetName();
61
62   CORBA::Long            Delete( CORBA::Long Option );
63
64   char*                  GetDumpPython();
65
66   std::string            Dump() const;
67   bool                   Restore( const std::string& stream );
68
69 // Caracteristiques
70   void                   SetType( CORBA::Long Type );
71   CORBA::Long            GetType();
72
73   void                   SetMaxIter( CORBA::Long MaxIter );
74   CORBA::Long            GetMaxIter();
75   void                   SetMaxNode( CORBA::Long MaxNode );
76   CORBA::Long            GetMaxNode();
77   void                   SetMaxElem( CORBA::Long MaxElem );
78   CORBA::Long            GetMaxElem();
79
80   void                   SetTestConvergence( CORBA::Long TypeTest, CORBA::Double VRef );
81   CORBA::Long            GetTestConvergenceType();
82   CORBA::Double          GetTestConvergenceVRef();
83
84   void                   SetDirName( const char* NomDir );
85   char*                  GetDirName();
86
87   void                   SetMeshFile( const char* MeshFile );
88   char*                  GetMeshFile();
89
90   void                   SetScriptFile( const char* ScriptFile );
91   char*                  GetScriptFile();
92
93   void                   SetXMLFile( const char* XMLFile );
94   char*                  GetXMLFile();
95
96   CORBA::Long            Write() ;
97   CORBA::Long            WriteOnFile( const char* XMLFile ) ;
98
99   // Liens avec les autres structures
100   void                   SetCaseName( const char* NomCas );
101   char*                  GetCaseName();
102
103 // Divers
104
105 private:
106   ::HOMARD_YACS*    myHomardYACS;
107
108   CORBA::ORB_ptr         _orb;
109   HOMARD::HOMARD_Gen_var _gen_i;
110 };
111
112 #endif