1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
/*
* Copyright 2009- ECMWF.
*
* This software is licensed under the terms of the Apache Licence version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
* In applying this licence, ECMWF does not waive the privileges and immunities
* granted to it by virtue of its status as an intergovernmental organisation
* nor does it submit to any jurisdiction.
*/
#include "LocalServerLauncher.hpp"
#include <iostream>
#include "ecflow/core/Converter.hpp"
#include "ecflow/core/File.hpp"
#include "ecflow/core/Host.hpp"
void LocalServerLauncher::launch() {
// (1) Clear previous execution artifacts, before launching the server
ecf::Host h{host_};
// Remove the log file, to ensure we start with a clean slate
fs::remove(h.ecf_log_file(port_));
// Remove the check point files, otherwise server will load check point file
fs::remove(h.ecf_checkpt_file(port_));
fs::remove(h.ecf_backup_checkpt_file(port_));
// (2) Build the command to launch the server
std::string cmd = ecf::File::find_ecf_server_path();
cmd += " -d";
cmd += " --port " + port_;
cmd += use_http_ ? " --http" : "";
cmd += " --ecfinterval=" + ecf::convert_to<std::string>(submission_interval_);
cmd += " &";
// (3) Launch the server
int exit = system(cmd.c_str());
assert(exit == 0);
std::cout << " Local ecFlow server launched with command: '" << cmd << "'. Exit code: " << exit << std::endl;
}
|