Salome HOME
4bb013d36ca7ed5f0ad66b5ae27f7adbf62f23c7
[tools/libbatch.git] / src / Slurm / BatchManager_Slurm.cxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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_Slurm.cxx :
24  *
25  *  Created on: 12 may 2011
26  *  Author : Renaud BARATE - EDF R&D
27  */
28
29 #include <cstdlib>
30 #include <fstream>
31
32 #include <NotYetImplementedException.hxx>
33 #include <Constants.hxx>
34 #include <Utils.hxx>
35 #include <Log.hxx>
36
37 #include "BatchManager_Slurm.hxx"
38 #include "JobInfo_Slurm.hxx"
39
40 using namespace std;
41
42 namespace Batch {
43
44   BatchManager_Slurm::BatchManager_Slurm(const FactBatchManager * parent,
45                                            const char * host,
46                                            const char * username,
47                                            CommunicationProtocolType protocolType,
48                                            const char * mpiImpl)
49     : BatchManager(parent, host, username, protocolType, mpiImpl)
50   {
51   }
52
53   BatchManager_Slurm::~BatchManager_Slurm()
54   {
55   }
56
57   // Method to submit a job to the batch manager
58   const JobId BatchManager_Slurm::runJob(const Job & job)
59   {
60     Parametre params = job.getParametre();
61     const string workDir = params[WORKDIR];
62
63     // build command file to submit the job and copy it on the server
64     string cmdFile = buildCommandFile(job);
65
66     // define command to submit batch
67     string subCommand = string("cd ") + workDir + "; sbatch " + cmdFile;
68     string command = _protocol.getExecCommand(subCommand, _hostname, _username);
69     command += " 2>&1";
70     LOG(command);
71
72     // submit job
73     string output;
74     int status = Utils::getCommandOutput(command, output);
75     LOG(output);
76     if (status != 0) throw RunTimeException("Can't submit job, error was: " + output);
77
78     // find id of submitted job in output
79     string search = "Submitted batch job ";
80     string::size_type pos = output.find(search);
81     if (pos == string::npos)
82       throw RunTimeException("Error in the submission of the job on the remote host");
83     pos += search.size();
84     string::size_type endl_pos = output.find('\n', pos);
85     string::size_type count = (endl_pos == string::npos)? string::npos : endl_pos - pos;
86     string jobref = output.substr(pos, count);
87
88     JobId id(this, jobref);
89     return id;
90   }
91
92   /**
93    * Create Slurm command file and copy it on the server.
94    * Return the name of the remote file.
95    */
96   string BatchManager_Slurm::buildCommandFile(const Job & job)
97   {
98     Parametre params = job.getParametre();
99
100     // Job Parameters
101     string workDir = "";
102     string fileToExecute = "";
103     string queue = "";
104
105     // Mandatory parameters
106     if (params.find(WORKDIR) != params.end()) 
107       workDir = params[WORKDIR].str();
108     else 
109       throw RunTimeException("params[WORKDIR] is not defined. Please define it, cannot submit this job.");
110     if (params.find(EXECUTABLE) != params.end()) 
111       fileToExecute = params[EXECUTABLE].str();
112     else 
113       throw RunTimeException("params[EXECUTABLE] is not defined. Please define it, cannot submit this job.");
114
115     string::size_type p1 = fileToExecute.find_last_of("/");
116     string::size_type p2 = fileToExecute.find_last_of(".");
117     string rootNameToExecute = fileToExecute.substr(p1+1,p2-p1-1);
118     string fileNameToExecute = fileToExecute.substr(p1+1);
119
120     // Create batch submit file
121     ofstream tempOutputFile;
122     string tmpFileName = Utils::createAndOpenTemporaryFile("slurm-script", tempOutputFile);
123
124     tempOutputFile << "#!/bin/bash -l" << endl;
125     tempOutputFile << "#SBATCH --output=" << workDir << "/logs/output.log." << rootNameToExecute << endl;
126     tempOutputFile << "#SBATCH --error=" << workDir << "/logs/error.log." << rootNameToExecute << endl;
127
128     if (params.find(NAME) != params.end())
129       tempOutputFile << "#SBATCH --job-name=\"" << params[NAME] << "\"" << endl;
130
131     // Optional parameters
132     int nbproc = 1;
133     if (params.find(NBPROC) != params.end())
134       nbproc = params[NBPROC];
135     tempOutputFile << "#SBATCH --ntasks=" << nbproc << endl;
136
137     if (params.find(EXCLUSIVE) != params.end()) {
138       if (params[EXCLUSIVE])
139         tempOutputFile << "#SBATCH --exclusive" << endl;
140       else
141         tempOutputFile << "#SBATCH --share" << endl;
142     }
143
144     if (params.find(MAXWALLTIME) != params.end())
145       tempOutputFile << "#SBATCH --time=" << params[MAXWALLTIME] << endl;
146     if (params.find(MAXRAMSIZE) != params.end())
147       tempOutputFile << "#SBATCH --mem=" << params[MAXRAMSIZE] << endl;
148     else if (params.find(MEMPERCPU) != params.end())
149       tempOutputFile << "#SBATCH --mem-per-cpu=" << params[MEMPERCPU] << endl;
150     if (params.find(QUEUE) != params.end())
151       tempOutputFile << "#SBATCH --qos=" << params[QUEUE] << endl;
152     if (params.find(WCKEY) != params.end())
153       tempOutputFile << "#SBATCH --wckey=" << params[WCKEY] << endl;
154     if (params.find(EXTRAPARAMS) != params.end())
155       tempOutputFile << params[EXTRAPARAMS] << endl;
156
157     // Define environment for the job
158     Environnement env = job.getEnvironnement();
159     for (Environnement::const_iterator iter = env.begin() ; iter != env.end() ; ++iter) {
160       tempOutputFile << "export " << iter->first << "=" << iter->second << endl;
161     }
162
163     // generate nodes file
164     tempOutputFile << "LIBBATCH_NODEFILE=$(mktemp nodefile-XXXXXXXXXX)" << endl;
165     tempOutputFile << "srun hostname > \"$LIBBATCH_NODEFILE\"" << endl;
166     tempOutputFile << "export LIBBATCH_NODEFILE" << endl;
167
168     // Launch the executable
169     tempOutputFile << "cd " << workDir << endl;
170     tempOutputFile << "./" + fileNameToExecute;
171     if (params.find(ARGUMENTS) != params.end()) {
172       Versatile V = params[ARGUMENTS];
173       for(Versatile::const_iterator it=V.begin(); it!=V.end(); it++) {
174         StringType argt = * static_cast<StringType *>(*it);
175         string     arg  = argt;
176         tempOutputFile << " " << arg;
177       }
178     }
179     tempOutputFile << endl;
180
181     // Remove the node file
182     tempOutputFile << "rm \"$LIBBATCH_NODEFILE\"" << endl;
183
184     tempOutputFile.flush();
185     tempOutputFile.close();
186
187     LOG("Batch script file generated is: " << tmpFileName);
188
189     string remoteFileName = rootNameToExecute + "_slurm.cmd";
190     int status = _protocol.copyFile(tmpFileName, "", "",
191                                     workDir + "/" + remoteFileName,
192                                     _hostname, _username);
193     if (status)
194       throw RunTimeException("Cannot copy command file on host " + _hostname);
195
196     return remoteFileName;
197   }
198
199   void BatchManager_Slurm::deleteJob(const JobId & jobid)
200   {
201     // define command to delete job
202     string subCommand = "scancel " + jobid.getReference();
203     string command = _protocol.getExecCommand(subCommand, _hostname, _username);
204     LOG(command);
205
206     int status = system(command.c_str());
207     if (status)
208       throw RunTimeException("Can't delete job " + jobid.getReference());
209
210     LOG("job " << jobid.getReference() << " killed");
211   }
212
213   JobInfo BatchManager_Slurm::queryJob(const JobId & jobid)
214   {
215     // define command to query batch
216     string subCommand = "squeue -o %t -j " + jobid.getReference();
217     string command = _protocol.getExecCommand(subCommand, _hostname, _username);
218     LOG(command);
219     string output;
220     Utils::getCommandOutput(command, output);
221     // We don't test the return code here because with jobs finished since a long time Slurm
222     // returns an error and a message like "slurm_load_jobs error: Invalid job id specified".
223     // So we consider that the job is finished when we get an error.
224
225     JobInfo_Slurm jobinfo = JobInfo_Slurm(jobid.getReference(), output);
226     return jobinfo;
227   }
228
229 }