Salome HOME
Copyrights update
[modules/kernel.git] / src / Batch / Batch_BatchManager_LSF.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/
19 //
20 /*
21  * BatchManager_LSF.hxx : 
22  *
23  * Auteur : Ivan DUTKA-MALEN - EDF R&D
24  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
25  * Date   : Thu Nov  6 10:17:22 2003
26  * Projet : Salome 2
27  *
28  */
29
30 #ifndef _BATCHMANAGER_LSF_H_
31 #define _BATCHMANAGER_LSF_H_
32
33
34 #include "Batch_Job.hxx"
35 #include "Batch_Job.hxx"
36 #include "Batch_JobId.hxx"
37 #include "Batch_JobInfo.hxx"
38 #include "Batch_JobInfo_LSF.hxx"
39 #include "Batch_Job_LSF.hxx"
40 #include "Batch_InvalidArgumentException.hxx"
41 #include "Batch_ConnexionFailureException.hxx"
42 #include "Batch_APIInternalFailureException.hxx"
43 #include "Batch_NotYetImplementedException.hxx"
44 #include "Batch_BatchManager.hxx"
45
46 namespace Batch {
47
48   class Job;
49   class JobId;
50   class JobInfo;
51   class FactBatchManager;
52
53   class BatchManager_LSF : public BatchManager
54   {
55   public:
56     // Constructeur et destructeur
57     BatchManager_LSF(const FactBatchManager * parent, const char * host="localhost") throw(InvalidArgumentException,ConnexionFailureException); // connexion a la machine host
58     virtual ~BatchManager_LSF();
59
60     // Recupere le nom du serveur par defaut
61     // static string BatchManager_LSF::getDefaultServer();
62
63     // Methodes pour le controle des jobs
64     virtual const JobId submitJob(const Job & job); // soumet un job au gestionnaire
65     virtual void deleteJob(const JobId & jobid); // retire un job du gestionnaire
66     virtual void holdJob(const JobId & jobid); // suspend un job en file d'attente
67     virtual void releaseJob(const JobId & jobid); // relache un job suspendu
68     virtual void alterJob(const JobId & jobid, const Parametre & param, const Environnement & env); // modifie un job en file d'attente
69     virtual void alterJob(const JobId & jobid, const Parametre & param); // modifie un job en file d'attente
70     virtual void alterJob(const JobId & jobid, const Environnement & env); // modifie un job en file d'attente
71     virtual JobInfo queryJob(const JobId & jobid); // renvoie l'etat du job
72     virtual bool isRunning(const JobId & jobid); // teste si un job est present en machine
73
74     virtual void setParametre(const JobId & jobid, const Parametre & param) { return alterJob(jobid, param); } // modifie un job en file d'attente
75     virtual void setEnvironnement(const JobId & jobid, const Environnement & env) { return alterJob(jobid, env); } // modifie un job en file d'attente
76
77
78   protected:
79     int _connect; // LSF connect id
80
81   private:
82
83 #ifdef SWIG
84   public:
85     // Recupere le l'identifiant d'un job deja soumis au BatchManager
86     //virtual const JobId getJobIdByReference(const string & ref) { return BatchManager::getJobIdByReference(ref); }
87     virtual const JobId getJobIdByReference(const char * ref) { return BatchManager::getJobIdByReference(ref); }
88 #endif
89
90   };
91
92 }
93
94 #endif