]> SALOME platform Git repositories - modules/kernel.git/blob - src/Launcher/SALOME_Launcher.hxx
Salome HOME
Porting functionality on Win32 Platform
[modules/kernel.git] / src / Launcher / SALOME_Launcher.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_LAUNCHER_HXX__
21 #define __SALOME_LAUNCHER_HXX__
22
23 #include "SALOME_Launcher_defs.hxx"
24
25 #include <SALOMEconfig.h>
26 #include CORBA_CLIENT_HEADER(SALOME_ContainerManager)
27 #include "Launcher.hxx"
28
29 #include <string>
30
31 class SALOME_NamingService;
32 class SALOME_ContainerManager;
33 class SALOME_ResourcesManager;
34
35 class SALOMELAUNCHER_EXPORT SALOME_Launcher:
36   public POA_Engines::SalomeLauncher,
37   public PortableServer::RefCountServantBase
38 {
39
40 public:
41   SALOME_Launcher(CORBA::ORB_ptr orb, PortableServer::POA_var poa);
42   ~SALOME_Launcher();
43
44   CORBA::Long submitSalomeJob(const char * fileToExecute ,
45                               const Engines::FilesList& filesToExport ,
46                               const Engines::FilesList& filesToImport ,
47                               const Engines::BatchParameters& batch_params,
48                               const Engines::MachineParameters& params);
49
50   char* querySalomeJob( CORBA::Long jobId, const Engines::MachineParameters& params);
51   void deleteSalomeJob( CORBA::Long jobId, const Engines::MachineParameters& params);
52   void getResultSalomeJob( const char * directory, CORBA::Long jobId, const Engines::MachineParameters& params );
53
54   CORBA::Boolean testBatch(const Engines::MachineParameters& params);
55
56   void Shutdown();
57
58   CORBA::Long getPID();
59
60   static const char *_LauncherNameInNS;
61
62 protected:
63   CORBA::ORB_var _orb;
64   PortableServer::POA_var _poa;
65   SALOME_ContainerManager *_ContManager;
66   SALOME_ResourcesManager *_ResManager;
67   SALOME_NamingService *_NS;
68
69   Launcher_cpp _l;
70 };
71
72 #endif