Salome HOME
Merge from V7_3_BR (09/01/2014)
[modules/homard.git] / src / HOMARD_I / HOMARD_Cas_i.hxx
1 // Copyright (C) 2011-2013  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 // Remarques :
20 // L'ordre de description des fonctions est le meme dans tous les fichiers
21 // HOMARD_aaaa.idl, HOMARD_aaaa.hxx, HOMARD_aaaa.cxx, HOMARD_aaaa_i.hxx, HOMARD_aaaa_i.cxx :
22 // 1. Les generalites : Name, Delete, DumpPython, Dump, Restore
23 // 2. Les caracteristiques
24 // 3. Le lien avec les autres structures
25 //
26 // Quand les 2 fonctions Setxxx et Getxxx sont presentes, Setxxx est decrit en premier
27 //
28
29 #ifndef _HOMARD_CAS_I_HXX_
30 #define _HOMARD_CAS_I_HXX_
31
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(HOMARD_Gen)
34 #include CORBA_SERVER_HEADER(HOMARD_Cas)
35
36 #include "HOMARD_i.hxx"
37 #include "SALOME_Component_i.hxx"
38 #include "SALOME_NamingService.hxx"
39 #include "Utils_CorbaException.hxx"
40
41 #include <string>
42
43 class HOMARD_Cas;
44
45 class HOMARDENGINE_EXPORT HOMARD_Cas_i:
46   public virtual Engines_Component_i,
47   public virtual POA_HOMARD::HOMARD_Cas,
48   public virtual PortableServer::ServantBase
49 {
50 public:
51   HOMARD_Cas_i( CORBA::ORB_ptr orb, HOMARD::HOMARD_Gen_var gen_i );
52   HOMARD_Cas_i();
53
54   virtual ~HOMARD_Cas_i();
55
56 // Generalites
57   void                   SetName( const char* Name );
58   char*                  GetName();
59
60   CORBA::Long            Delete( CORBA::Long Option );
61
62   char*                  GetDumpPython();
63
64   std::string            Dump() const;
65   bool                   Restore( const std::string& stream );
66
67 // Caracteristiques
68   void                   SetDirName( const char* NomDir );
69   char*                  GetDirName();
70
71   CORBA::Long            GetState();
72
73   CORBA::Long            GetNumberofIter();
74
75   void                   SetConfType( CORBA::Long ConfType );
76   CORBA::Long            GetConfType();
77
78   void                   SetBoundingBox( const HOMARD::extrema& LesExtremes );
79   HOMARD::extrema*       GetBoundingBox();
80
81   void                   AddGroup( const char* Group);
82   void                   SetGroups(const HOMARD::ListGroupType& ListGroup);
83   HOMARD::ListGroupType* GetGroups();
84
85   void                   AddBoundaryGroup( const char* Boundary, const char* Group);
86   HOMARD::ListBoundaryGroupType*  GetBoundaryGroup();
87   void                   SupprBoundaryGroup( );
88
89   void                   SetPyram( CORBA::Long Pyram );
90   CORBA::Long            GetPyram();
91
92   void                   MeshInfo(CORBA::Long Qual, CORBA::Long Diam, CORBA::Long Conn, CORBA::Long Tail, CORBA::Long Inte);
93
94 // Liens avec les autres structures
95   char*                  GetIter0Name();
96   HOMARD::HOMARD_Iteration_ptr GetIter0() ;
97
98   HOMARD::HOMARD_Iteration_ptr  NextIteration( const char* Name ) ;
99
100   HOMARD::HOMARD_Iteration_ptr  LastIteration() ;
101
102   void                   AddIteration( const char* NomIteration );
103
104 // YACS
105   HOMARD::HOMARD_YACS_ptr CreateYACSSchema( const char* YACSName, const char* ScriptFile, const char* DirName, const char* MeshFile );
106
107 private:
108   ::HOMARD_Cas*          myHomardCas;
109
110   CORBA::ORB_ptr         _orb;
111   HOMARD::HOMARD_Gen_var _gen_i;
112 };
113
114 #endif