File size: 1,669 Bytes
2492322 | 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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | // Copyright (c) 2019, QuantStack and Mamba Contributors
//
// Distributed under the terms of the BSD 3-Clause License.
//
// The full license is in the file LICENSE, distributed with this software.
#include <string>
#include <string_view>
#include <nlohmann/json.hpp>
#include "mamba/core/util.hpp"
#include "mamba/fs/filesystem.hpp"
namespace mamba
{
class Context;
bool is_process_name_running(const std::string& name);
std::string generate_unique_process_name(std::string_view program_name);
const fs::u8path& proc_dir();
LockFile lock_proc_dir();
void daemonize();
class ScopedProcFile
{
const fs::u8path location;
public:
ScopedProcFile(
const Context& context,
const std::string& name,
const std::vector<std::string>& command,
LockFile proc_dir_lock = lock_proc_dir()
);
~ScopedProcFile();
};
enum class STREAM_OPTIONS : int
{
ALL_STREAMS = 0,
SINKOUT = 1,
SINKERR = 1 << 1,
SINKIN = 1 << 2,
};
int run_in_environment(
const Context& context,
const fs::u8path& prefix,
std::vector<std::string> command,
const std::string& cwd,
int stream_options,
bool clean_env,
bool detach,
const std::vector<std::string>& env_vars,
const std::string& specific_process_name
);
nlohmann::json get_all_running_processes_info(
const std::function<bool(const nlohmann::json&)>& filter = std::function<
bool(const nlohmann::json&)>()
);
bool is_process_name_running(const std::string& name);
}
|