Salome HOME
Merging from V3_2_6pre4
[modules/kernel.git] / src / Container / SALOME_ContainerManager.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 #ifndef __SALOME_CONTAINERMANAGER_HXX__
21 #define __SALOME_CONTAINERMANAGER_HXX__
22
23 #include <SALOME_Container.hxx>
24
25 #include <SALOMEconfig.h>
26 #include CORBA_CLIENT_HEADER(SALOME_Component)
27 #include CORBA_CLIENT_HEADER(SALOME_ContainerManager)
28 #include "SALOME_ResourcesManager.hxx"
29 #include "SALOME_LoadRateManager.hxx"
30
31 #include <string>
32
33 class SALOME_NamingService;
34
35 class CONTAINER_EXPORT SALOME_ContainerManager:
36   public POA_Engines::ContainerManager
37 {
38
39 public:
40   SALOME_ContainerManager(CORBA::ORB_ptr orb);
41   ~SALOME_ContainerManager();
42
43   Engines::Container_ptr
44   FindOrStartContainer(const Engines::MachineParameters& params,
45                        const Engines::MachineList& possibleComputer);
46
47   Engines::MachineList *
48   GetFittingResources(const Engines::MachineParameters& params,
49                       const char *componentName);
50
51   char* FindBest(const Engines::MachineList& possibleComputers);
52
53   void Shutdown();
54   void ShutdownContainers();
55
56   static const char *_ContainerManagerNameInNS;
57
58   // Parallel extension
59   Engines::Container_ptr
60   FindOrStartParallelContainer(const Engines::MachineParameters& params,
61                                const Engines::MachineList& possibleComputer);
62 protected:
63   Engines::Container_ptr
64   FindContainer(const Engines::MachineParameters& params,
65                 const Engines::MachineList& possibleComputers);
66
67   Engines::Container_ptr
68   FindContainer(const Engines::MachineParameters& params,
69                 const char *theMachine);
70
71   // Parallel extension
72   CORBA::Object_ptr 
73   LaunchParallelContainer(const std::string& command, 
74                           const Engines::MachineParameters& params,
75                           const std::string& name);
76
77   long GetIdForContainer(void);
78   long _id;
79
80   SALOME_ResourcesManager *_ResManager;
81   SALOME_NamingService *_NS;
82 };
83
84 #endif