Salome HOME
bug on ccrt + eris
[tools/libbatch.git] / src / Core / Batch_BatchManager_eClient.hxx
1 //  Copyright (C) 2007-2012  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 #include "Batch_CommunicationProtocol.hxx"
40
41 #include <string>
42
43 namespace Batch {
44
45   class Job;
46
47   class BATCH_EXPORT BatchManager_eClient : virtual public BatchManager
48   {
49   public:
50     // Constructeur et destructeur
51     BatchManager_eClient(const Batch::FactBatchManager * parent, const char* host="localhost",
52                          const char * username="",
53                          CommunicationProtocolType protocolType = SSH, const char* mpiImpl="mpich1");
54     virtual ~BatchManager_eClient();
55     virtual void importOutputFiles( const Job & job, const std::string directory );
56     bool importDumpStateFile( const Job & job, const std::string directory );
57
58   protected:
59     const CommunicationProtocol & _protocol; // protocol to access _hostname
60     const std::string _username; // username to access _hostname
61     MpiImpl *_mpiImpl; // Mpi implementation to launch executable in batch script
62
63     std::string generateTemporaryFileName(const std::string & prefix);
64     std::string createAndOpenTemporaryFile(const std::string & prefix, std::ofstream & outputStream);
65     MpiImpl* FactoryMpiImpl(std::string mpiImpl);
66     void exportInputFiles(const Job & job);
67     const std::string & getTmpDir();
68
69   private:
70     std::string tmpDirName; // Path to the directory for temporary files
71
72   };
73
74 }
75
76 #endif