]> SALOME platform Git repositories - modules/yacs.git/blob - src/Launcher/Launcher_Job.hxx
Salome HOME
Minimize external dependencies: libxml is "local" dependency for KERNEL
[modules/yacs.git] / src / Launcher / Launcher_Job.hxx
1 // Copyright (C) 2009-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // Author: André RIBES - EDF R&D
21 //
22 #ifndef _LAUNCHER_JOB_HXX_
23 #define _LAUNCHER_JOB_HXX_
24
25 #include "Launcher_Utils.hxx"
26 #include "ResourcesManager.hxx"
27
28 #include <stdlib.h>
29 #include <time.h>
30 #include <sys/stat.h>
31
32 #include <string>
33 #include <list>
34 #include <map>
35 #include <iostream>
36 #include <sstream>
37 #include <algorithm>
38 #include <exception>
39
40 #ifdef WITH_LIBBATCH
41 #include <libbatch/Job.hxx>
42 #include <libbatch/JobId.hxx>
43 #include <libbatch/GenericException.hxx>
44 #endif
45
46 namespace Launcher
47 {
48   class LAUNCHER_EXPORT Job
49   {
50     public:
51       Job();
52       virtual ~Job();
53
54       // Launcher managing parameters
55       // State of a Job: CREATED, IN_PROCESS, QUEUED, RUNNING, PAUSED, FINISHED, ERROR
56       void setState(const std::string & state);
57       std::string getState();
58           // Get names or ids of hosts assigned to the job
59       std::string getAssignedHostnames();
60
61       void setNumber(const int & number);
62       int getNumber();
63
64       virtual void setResourceDefinition(const ParserResourcesType & resource_definition);
65       ParserResourcesType getResourceDefinition();
66
67       // Common parameters
68       void setJobName(const std::string & job_name);
69       virtual void setJobFile(const std::string & job_file);
70       void setWorkDirectory(const std::string & work_directory);
71       void setLocalDirectory(const std::string & local_directory);
72       void setResultDirectory(const std::string & result_directory);
73       void add_in_file(const std::string & file);
74       void add_out_file(const std::string & file);
75       void setMaximumDuration(const std::string & maximum_duration);
76       void setResourceRequiredParams(const resourceParams & resource_required_params);
77       void setQueue(const std::string & queue);
78       void setEnvFile(const std::string & env_file);
79       void setExclusive(bool exclusive);
80       void setExclusiveStr(const std::string & exclusiveStr);
81       void setMemPerCpu(unsigned long mem_per_cpu);
82           // For COORM
83           void setLauncherFile(const std::string & launcher_file);
84           void setLauncherArgs(const std::string & launcher_args);
85
86       std::string getJobName();
87       std::string getJobFile();
88       std::string getWorkDirectory();
89       std::string getLocalDirectory();
90       std::string getResultDirectory();
91       const std::list<std::string> & get_in_files();
92       const std::list<std::string> & get_out_files();
93       std::string getMaximumDuration();
94       resourceParams getResourceRequiredParams();
95       std::string getQueue();
96       std::string getEnvFile();
97       std::string getJobType();
98       bool getExclusive();
99       std::string getExclusiveStr() const;
100       unsigned long getMemPerCpu() const;
101
102           // For COORM
103           std::string getLauncherFile();
104           std::string getLauncherArgs();
105
106       std::string updateJobState();
107
108       void addSpecificParameter(const std::string & name,
109                                   const std::string & value);
110       const std::map<std::string, std::string> & getSpecificParameters();
111       virtual void checkSpecificParameters();
112
113       // Checks
114       void checkMaximumDuration(const std::string & maximum_duration);
115       void checkResourceRequiredParams(const resourceParams & resource_required_params);
116
117       // Helps
118       long convertMaximumDuration(const std::string & maximum_duration);
119       std::string getLaunchDate();
120
121       void stopJob();
122       void removeJob();
123
124       // Abstract class
125       virtual void update_job() = 0;
126
127     protected:
128       int _number;
129
130       std::string _job_type;
131
132       std::string _state;
133       std::string _assigned_hostnames; // Assigned hostnames
134       std::string _launch_date;
135       std::string _env_file;
136
137       ParserResourcesType _resource_definition;
138
139       std::string _job_name;
140       std::string _job_file;
141       std::string _job_file_name;
142       std::string _job_file_name_complete;
143
144       std::string _work_directory;
145       std::string _local_directory;
146       std::string _result_directory;
147       std::list<std::string> _in_files;
148       std::list<std::string> _out_files;
149       std::map<std::string, std::string> _specific_parameters;
150       std::string _maximum_duration;
151       long _maximum_duration_in_second;
152       resourceParams _resource_required_params;
153       std::string _queue;
154       bool _exclusive;
155       unsigned long _mem_per_cpu;
156
157           // Parameters for COORM
158           std::string _launcher_file;
159           std::string _launcher_args;
160
161 #ifdef WITH_LIBBATCH
162     // Connection with LIBBATCH
163     public:      
164       Batch::Job * getBatchJob();
165       Batch::Parametre common_job_params();
166       void setBatchManagerJobId(Batch::JobId batch_manager_job_id);
167       Batch::JobId getBatchManagerJobId();
168
169     protected:
170       Batch::Job * _batch_job;
171       Batch::JobId _batch_job_id;
172 #endif
173   };
174 }
175
176 #endif
177