1 // Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
25 * Auteur : Ivan DUTKA-MALEN - EDF R&D
26 * Date : Septembre 2003
31 #include "Batch_JobId.hxx"
32 #include "Batch_BatchManager.hxx"
35 //#include "MEDMEM_STRING.hxx"
40 // Constructeur standard
41 JobId::JobId() : _p_batchmanager(), _reference("undefined")
46 // Constructeur avec le pointeur sur le BatchManager associe et avec une reference
47 JobId::JobId(BatchManager * _p_bm, string ref) : _p_batchmanager(_p_bm), _reference(ref)
58 // Operateur d'affectation entre objets
59 JobId & JobId::operator =(const JobId & jobid)
61 _p_batchmanager = jobid._p_batchmanager;
62 _reference = jobid._reference;
67 // Constructeur par recopie
68 JobId::JobId(const JobId & jobid) : _p_batchmanager(jobid._p_batchmanager), _reference(jobid._reference)
73 // Accesseur pour la reference interne
74 string JobId::getReference() const
79 // Permet de recharger un job depuis un fichier
80 void JobId::setReference(const std::string & new_reference)
82 _reference = new_reference;
85 // Methode pour le controle du job : retire le job du gestionnaire
86 void JobId::deleteJob() const
88 assert(_p_batchmanager != 0);
89 _p_batchmanager->deleteJob(*this);
92 // Methode pour le controle du job : suspend le job en file d'attente
93 void JobId::holdJob() const
95 assert(_p_batchmanager != 0);
96 _p_batchmanager->holdJob(*this);
99 // Methode pour le controle du job : relache le job suspendu
100 void JobId::releaseJob() const
102 assert(_p_batchmanager != 0);
103 _p_batchmanager->releaseJob(*this);
106 // Methode pour le controle du job : modifie le job en file d'attente
107 void JobId::alterJob(const Parametre & param, const Environnement & env) const
109 assert(_p_batchmanager != 0);
110 _p_batchmanager->alterJob(*this, param, env);
113 // Methode pour le controle du job : modifie le job en file d'attente
114 void JobId::alterJob(const Parametre & param) const
116 assert(_p_batchmanager != 0);
117 _p_batchmanager->alterJob(*this, param);
120 // Methode pour le controle du job : modifie le job en file d'attente
121 void JobId::alterJob(const Environnement & env) const
123 assert(_p_batchmanager != 0);
124 _p_batchmanager->alterJob(*this, env);
127 // Methode pour le controle du job : renvoie l'etat du job
128 JobInfo JobId::queryJob() const
130 assert(_p_batchmanager != 0);
131 return _p_batchmanager->queryJob(*this);
135 // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
136 string JobId::__str__() const {
137 //MEDMEM::STRING str;
139 str << "<JobId (" << this << ") : referenced '" << _reference << "'>";