2015-09-13 20:25:26 +00:00
|
|
|
///
|
2016-07-25 12:00:49 +00:00
|
|
|
/// Copyright 2016 Oliver Giles
|
2015-09-13 20:25:26 +00:00
|
|
|
///
|
|
|
|
/// This file is part of Laminar
|
|
|
|
///
|
|
|
|
/// Laminar is free software: you can redistribute it and/or modify
|
|
|
|
/// it under the terms of the GNU General Public License as published by
|
|
|
|
/// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
/// (at your option) any later version.
|
|
|
|
///
|
2015-09-24 19:07:48 +00:00
|
|
|
/// Laminar is distributed in the hope that it will be useful,
|
2015-09-13 20:25:26 +00:00
|
|
|
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
/// GNU General Public License for more details.
|
|
|
|
///
|
|
|
|
/// You should have received a copy of the GNU General Public License
|
|
|
|
/// along with Laminar. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
///
|
|
|
|
#include "run.h"
|
2015-09-19 13:40:09 +00:00
|
|
|
#include "node.h"
|
2015-09-19 12:55:16 +00:00
|
|
|
#include "conf.h"
|
2015-12-06 11:36:12 +00:00
|
|
|
#include "log.h"
|
2015-09-13 20:25:26 +00:00
|
|
|
|
2015-12-06 11:36:12 +00:00
|
|
|
#include <iostream>
|
2015-09-13 20:25:26 +00:00
|
|
|
#include <unistd.h>
|
2016-07-25 11:59:45 +00:00
|
|
|
#include <signal.h>
|
2015-09-13 20:25:26 +00:00
|
|
|
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
|
|
|
std::string to_string(const RunState& rs) {
|
|
|
|
switch(rs) {
|
|
|
|
case RunState::PENDING: return "pending";
|
2015-12-06 11:15:05 +00:00
|
|
|
case RunState::RUNNING: return "running";
|
2015-09-13 20:25:26 +00:00
|
|
|
case RunState::ABORTED: return "aborted";
|
|
|
|
case RunState::FAILED: return "failed";
|
|
|
|
case RunState::SUCCESS: return "success";
|
|
|
|
case RunState::UNKNOWN:
|
|
|
|
default:
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Run::Run() {
|
|
|
|
result = RunState::SUCCESS;
|
2015-09-19 08:31:51 +00:00
|
|
|
lastResult = RunState::UNKNOWN;
|
2015-09-13 20:25:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Run::~Run() {
|
2015-12-06 11:36:12 +00:00
|
|
|
LLOG(INFO, "Run destroyed");
|
2015-09-13 20:25:26 +00:00
|
|
|
}
|
2015-09-19 12:55:16 +00:00
|
|
|
|
2015-09-13 20:25:26 +00:00
|
|
|
std::string Run::reason() const {
|
|
|
|
if(!parentName.empty()) {
|
|
|
|
return std::string("Triggered by upstream ") + parentName + " #" + std::to_string(parentBuild);
|
|
|
|
}
|
|
|
|
return reasonMsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Run::step() {
|
2017-08-07 05:06:49 +00:00
|
|
|
if(!currentScript.path.empty() && procStatus != 0)
|
2015-09-13 20:25:26 +00:00
|
|
|
result = RunState::FAILED;
|
|
|
|
|
|
|
|
if(scripts.size()) {
|
|
|
|
currentScript = scripts.front();
|
|
|
|
scripts.pop();
|
|
|
|
|
|
|
|
int pfd[2];
|
|
|
|
pipe(pfd);
|
|
|
|
pid_t pid = fork();
|
2016-07-25 11:59:45 +00:00
|
|
|
if(pid == 0) { // child
|
|
|
|
// reset signal mask (SIGCHLD blocked in Laminar::start)
|
|
|
|
sigset_t mask;
|
|
|
|
sigemptyset(&mask);
|
|
|
|
sigaddset(&mask, SIGCHLD);
|
|
|
|
sigprocmask(SIG_UNBLOCK, &mask, NULL);
|
|
|
|
|
2015-09-13 20:25:26 +00:00
|
|
|
close(pfd[0]);
|
|
|
|
dup2(pfd[1], 1);
|
|
|
|
dup2(pfd[1], 2);
|
|
|
|
close(pfd[1]);
|
|
|
|
std::string buildNum = std::to_string(build);
|
|
|
|
|
|
|
|
std::string PATH = (fs::path(laminarHome)/"cfg"/"scripts").string() + ":";
|
|
|
|
if(const char* p = getenv("PATH")) {
|
|
|
|
PATH.append(p);
|
|
|
|
}
|
|
|
|
|
2017-08-07 05:06:49 +00:00
|
|
|
chdir(currentScript.cwd.c_str());
|
2015-09-13 20:25:26 +00:00
|
|
|
|
2015-09-19 12:55:16 +00:00
|
|
|
for(std::string file : env) {
|
|
|
|
StringMap vars = parseConfFile(file.c_str());
|
|
|
|
for(auto& it : vars) {
|
|
|
|
setenv(it.first.c_str(), it.second.c_str(), true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-13 20:25:26 +00:00
|
|
|
setenv("PATH", PATH.c_str(), true);
|
|
|
|
setenv("lBuildNum", buildNum.c_str(), true);
|
|
|
|
setenv("lJobName", name.c_str(), true);
|
2015-09-24 20:02:11 +00:00
|
|
|
if(!node->name.empty())
|
|
|
|
setenv("lNode", node->name.c_str(), true);
|
2015-09-19 08:31:51 +00:00
|
|
|
setenv("lResult", to_string(result).c_str(), true);
|
|
|
|
setenv("lLastResult", to_string(lastResult).c_str(), true);
|
2015-09-13 20:25:26 +00:00
|
|
|
setenv("lWorkspace", (fs::path(laminarHome)/"run"/name/"workspace").string().c_str(), true);
|
2015-09-19 11:40:00 +00:00
|
|
|
setenv("lArchive", (fs::path(laminarHome)/"archive"/name/buildNum.c_str()).string().c_str(), true);
|
2015-09-13 20:25:26 +00:00
|
|
|
for(auto& pair : params) {
|
|
|
|
setenv(pair.first.c_str(), pair.second.c_str(), false);
|
|
|
|
}
|
2017-08-07 05:06:49 +00:00
|
|
|
fprintf(stderr, "[laminar] Executing %s\n", currentScript.path.c_str());
|
|
|
|
execl(currentScript.path.c_str(), currentScript.path.c_str(), NULL);
|
2015-12-06 11:41:38 +00:00
|
|
|
// cannot use LLOG because stdout/stderr are captured
|
2017-08-07 05:06:49 +00:00
|
|
|
fprintf(stderr, "[laminar] Failed to execute %s\n", currentScript.path.c_str());
|
2015-09-13 20:25:26 +00:00
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
|
2017-08-07 05:06:49 +00:00
|
|
|
LLOG(INFO, "Forked", currentScript.path, currentScript.cwd, pid);
|
2015-09-13 20:25:26 +00:00
|
|
|
close(pfd[1]);
|
|
|
|
fd = pfd[0];
|
|
|
|
this->pid = pid;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2017-08-07 05:06:49 +00:00
|
|
|
void Run::addScript(std::string scriptPath, std::string scriptWorkingDir) {
|
|
|
|
scripts.push({scriptPath, scriptWorkingDir});
|
2015-09-13 20:25:26 +00:00
|
|
|
}
|
2015-09-19 12:55:16 +00:00
|
|
|
void Run::addEnv(std::string path) {
|
|
|
|
env.push_back(path);
|
|
|
|
}
|
2015-09-13 20:25:26 +00:00
|
|
|
void Run::reaped(int status) {
|
|
|
|
procStatus = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Run::complete() {
|
|
|
|
notifyCompletion(this);
|
|
|
|
}
|