Salome HOME
Added Windows implementation for local submission based on SSH and PBS emulation...
[tools/libbatch.git] / src / Core / Batch_BatchManager_eClient.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 /*
23  * BatchManager_eLSF.hxx : emulation of client
24  *
25  * Auteur : Bernard SECHER - CEA DEN
26  * Mail   : mailto:bernard.secher@cea.fr
27  * Date   : Thu Apr 24 10:17:22 2008
28  * Projet : PAL Salome
29  *
30  */
31
32 #ifndef _BATCHMANAGER_eClient_H_
33 #define _BATCHMANAGER_eClient_H_
34
35 #include "Batch_Defines.hxx"
36 #include "Batch_MpiImpl.hxx"
37 #include "Batch_BatchManager.hxx"
38 #include "Batch_EmulationException.hxx"
39
40 #include <string>
41
42 namespace Batch {
43
44   class Job;
45
46   class BATCH_EXPORT BatchManager_eClient : public BatchManager
47   {
48   public:
49     // Constructeur et destructeur
50     BatchManager_eClient(const Batch::FactBatchManager * parent, const char* host="localhost",
51                          const char* protocol="ssh", const char* mpiImpl="mpich1");
52     virtual ~BatchManager_eClient();
53     void importOutputFiles( const Job & job, const std::string directory ) throw(EmulationException);
54
55   protected:
56     std::string _protocol; // protocol to access _hostname
57     std::string _username; // username to access _hostname
58     MpiImpl *_mpiImpl; // Mpi implementation to launch executable in batch script
59
60     std::string generateTemporaryFileName(const std::string & prefix);
61     std::string createAndOpenTemporaryFile(const std::string & prefix, std::ofstream & outputStream);
62     MpiImpl* FactoryMpiImpl(std::string mpiImpl) throw(EmulationException);
63     void exportInputFiles(const Job & job);
64     const std::string & getTmpDir();
65
66   private:
67     std::string tmpDirName; // Path to the directory for temporary files
68
69   };
70
71 }
72
73 #endif