Salome HOME
A patch from Paul RASCLE for: kernel documentation with doxygen, modification on...
[modules/kernel.git] / src / Batch / Batch_BatchManager_PBS.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 /*
21  * BatchManager_PBS.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_PBS_H_
31 #define _BATCHMANAGER_PBS_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_PBS.hxx"
39 #include "Batch_Job_PBS.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_PBS : public BatchManager
54   {
55   public:
56     // Constructeur et destructeur
57     //BatchManager_PBS() throw(InvalidArgumentException,ConnexionFailureException); // connexion au serveur par defaut
58     //BatchManager_PBS(std::string host) throw(InvalidArgumentException,ConnexionFailureException); // connexion a la machine host
59     BatchManager_PBS(const FactBatchManager * parent, const char * host="localhost") throw(InvalidArgumentException,ConnexionFailureException); // connexion a la machine host
60     virtual ~BatchManager_PBS();
61
62     // Recupere le nom du serveur par defaut
63     // static std::string BatchManager_PBS::getDefaultServer();
64
65     // Methodes pour le controle des jobs
66     virtual const JobId submitJob(const Job & job); // soumet un job au gestionnaire
67     virtual void deleteJob(const JobId & jobid); // retire un job du gestionnaire
68     virtual void holdJob(const JobId & jobid); // suspend un job en file d'attente
69     virtual void releaseJob(const JobId & jobid); // relache un job suspendu
70     virtual void alterJob(const JobId & jobid, const Parametre & param, const Environnement & env); // modifie un job en file d'attente
71     virtual void alterJob(const JobId & jobid, const Parametre & param); // modifie un job en file d'attente
72     virtual void alterJob(const JobId & jobid, const Environnement & env); // modifie un job en file d'attente
73     virtual JobInfo queryJob(const JobId & jobid); // renvoie l'etat du job
74
75     virtual void setParametre(const JobId & jobid, const Parametre & param) { return alterJob(jobid, param); } // modifie un job en file d'attente
76     virtual void setEnvironnement(const JobId & jobid, const Environnement & env) { return alterJob(jobid, env); } // modifie un job en file d'attente
77
78
79   protected:
80     int _connect; // PBS connect id
81
82   private:
83
84 #ifdef SWIG
85   public:
86     // Recupere le l'identifiant d'un job deja soumis au BatchManager
87     //virtual const JobId getJobIdByReference(const std::string & ref) { return BatchManager::getJobIdByReference(ref); }
88     virtual const JobId getJobIdByReference(const char * ref) { return BatchManager::getJobIdByReference(ref); }
89 #endif
90
91   };
92
93 }
94
95 #endif