2012-07-18 21:59:03 +03:00
|
|
|
#pragma once
|
2003-04-04 19:14:56 +03:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "types.hh"
|
2016-04-25 16:26:07 +03:00
|
|
|
#include "logging.hh"
|
2003-04-08 15:00:51 +03:00
|
|
|
|
2003-10-22 13:48:22 +03:00
|
|
|
#include <sys/types.h>
|
2010-12-13 15:32:58 +02:00
|
|
|
#include <sys/stat.h>
|
2003-10-22 13:48:22 +03:00
|
|
|
#include <dirent.h>
|
2003-04-08 15:00:51 +03:00
|
|
|
#include <unistd.h>
|
2004-01-15 22:23:55 +02:00
|
|
|
#include <signal.h>
|
2016-09-20 16:39:08 +03:00
|
|
|
|
2014-07-10 17:50:51 +03:00
|
|
|
#include <functional>
|
2016-01-19 14:00:02 +02:00
|
|
|
#include <limits>
|
2009-11-24 15:28:46 +02:00
|
|
|
#include <cstdio>
|
2016-09-20 16:39:08 +03:00
|
|
|
#include <map>
|
2017-03-08 23:24:10 +02:00
|
|
|
#include <sstream>
|
2019-02-12 14:43:32 +02:00
|
|
|
#include <optional>
|
2018-03-27 23:16:01 +03:00
|
|
|
#include <future>
|
2009-11-24 14:56:26 +02:00
|
|
|
|
2015-11-07 05:51:33 +02:00
|
|
|
#ifndef HAVE_STRUCT_DIRENT_D_TYPE
|
|
|
|
#define DT_UNKNOWN 0
|
|
|
|
#define DT_REG 1
|
|
|
|
#define DT_LNK 2
|
|
|
|
#define DT_DIR 3
|
|
|
|
#endif
|
2003-06-27 16:55:12 +03:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
namespace nix {
|
2003-10-07 17:37:41 +03:00
|
|
|
|
2018-03-16 17:59:31 +02:00
|
|
|
struct Sink;
|
|
|
|
struct Source;
|
|
|
|
|
2003-10-07 17:37:41 +03:00
|
|
|
|
2019-05-03 11:44:32 +03:00
|
|
|
/* The system for which Nix is compiled. */
|
|
|
|
extern const std::string nativeSystem;
|
|
|
|
|
|
|
|
|
2004-05-12 12:35:51 +03:00
|
|
|
/* Return an environment variable. */
|
2019-11-22 17:06:44 +02:00
|
|
|
std::optional<std::string> getEnv(const std::string & key);
|
2004-05-12 12:35:51 +03:00
|
|
|
|
2016-09-20 16:39:08 +03:00
|
|
|
/* Get the entire environment. */
|
|
|
|
std::map<std::string, std::string> getEnv();
|
|
|
|
|
2018-02-26 19:29:40 +02:00
|
|
|
/* Clear the environment. */
|
|
|
|
void clearEnv();
|
|
|
|
|
2003-06-16 16:33:38 +03:00
|
|
|
/* Return an absolutized path, resolving paths relative to the
|
2003-07-07 12:25:26 +03:00
|
|
|
specified directory, or the current directory otherwise. The path
|
|
|
|
is also canonicalised. */
|
2003-10-07 17:37:41 +03:00
|
|
|
Path absPath(Path path, Path dir = "");
|
2003-06-16 16:33:38 +03:00
|
|
|
|
2004-03-27 19:58:04 +02:00
|
|
|
/* Canonicalise a path by removing all `.' or `..' components and
|
2006-01-08 19:16:03 +02:00
|
|
|
double or trailing slashes. Optionally resolves all symlink
|
|
|
|
components such that each component of the resulting path is *not*
|
|
|
|
a symbolic link. */
|
|
|
|
Path canonPath(const Path & path, bool resolveSymlinks = false);
|
2003-07-07 12:25:26 +03:00
|
|
|
|
2004-03-27 19:58:04 +02:00
|
|
|
/* Return the directory part of the given canonical path, i.e.,
|
|
|
|
everything before the final `/'. If the path is the root or an
|
|
|
|
immediate child thereof (e.g., `/foo'), this means an empty string
|
|
|
|
is returned. */
|
2003-10-07 17:37:41 +03:00
|
|
|
Path dirOf(const Path & path);
|
2003-06-16 16:33:38 +03:00
|
|
|
|
2004-03-27 19:58:04 +02:00
|
|
|
/* Return the base name of the given canonical path, i.e., everything
|
|
|
|
following the final `/'. */
|
2003-10-07 17:37:41 +03:00
|
|
|
string baseNameOf(const Path & path);
|
2003-04-08 15:00:51 +03:00
|
|
|
|
2018-01-16 19:50:38 +02:00
|
|
|
/* Check whether 'path' is a descendant of 'dir'. */
|
2013-07-12 15:01:25 +03:00
|
|
|
bool isInDir(const Path & path, const Path & dir);
|
|
|
|
|
2018-01-16 19:50:38 +02:00
|
|
|
/* Check whether 'path' is equal to 'dir' or a descendant of 'dir'. */
|
|
|
|
bool isDirOrInDir(const Path & path, const Path & dir);
|
|
|
|
|
2010-12-13 15:32:58 +02:00
|
|
|
/* Get status of `path'. */
|
|
|
|
struct stat lstat(const Path & path);
|
|
|
|
|
2003-07-08 16:22:08 +03:00
|
|
|
/* Return true iff the given path exists. */
|
2003-10-07 17:37:41 +03:00
|
|
|
bool pathExists(const Path & path);
|
2003-04-08 15:00:51 +03:00
|
|
|
|
2004-01-05 18:26:43 +02:00
|
|
|
/* Read the contents (target) of a symbolic link. The result is not
|
|
|
|
in any way canonicalised. */
|
|
|
|
Path readLink(const Path & path);
|
|
|
|
|
2005-02-01 15:48:46 +02:00
|
|
|
bool isLink(const Path & path);
|
|
|
|
|
2003-11-19 19:27:16 +02:00
|
|
|
/* Read the contents of a directory. The entries `.' and `..' are
|
|
|
|
removed. */
|
2014-08-01 17:37:47 +03:00
|
|
|
struct DirEntry
|
|
|
|
{
|
|
|
|
string name;
|
|
|
|
ino_t ino;
|
|
|
|
unsigned char type; // one of DT_*
|
2014-08-01 18:30:51 +03:00
|
|
|
DirEntry(const string & name, ino_t ino, unsigned char type)
|
|
|
|
: name(name), ino(ino), type(type) { }
|
2014-08-01 17:37:47 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef vector<DirEntry> DirEntries;
|
|
|
|
|
|
|
|
DirEntries readDirectory(const Path & path);
|
2003-11-19 19:27:16 +02:00
|
|
|
|
2014-10-03 23:37:51 +03:00
|
|
|
unsigned char getFileType(const Path & path);
|
|
|
|
|
2005-02-02 00:07:48 +02:00
|
|
|
/* Read the contents of a file into a string. */
|
|
|
|
string readFile(int fd);
|
2012-08-20 22:27:30 +03:00
|
|
|
string readFile(const Path & path, bool drain = false);
|
2018-03-28 00:12:31 +03:00
|
|
|
void readFile(const Path & path, Sink & sink);
|
2005-02-02 00:07:48 +02:00
|
|
|
|
2005-02-09 11:50:29 +02:00
|
|
|
/* Write a string to a file. */
|
2017-02-16 16:42:49 +02:00
|
|
|
void writeFile(const Path & path, const string & s, mode_t mode = 0666);
|
2005-02-09 11:50:29 +02:00
|
|
|
|
2018-03-28 14:32:44 +03:00
|
|
|
void writeFile(const Path & path, Source & source, mode_t mode = 0666);
|
|
|
|
|
2009-03-28 21:29:55 +02:00
|
|
|
/* Read a line from a file descriptor. */
|
|
|
|
string readLine(int fd);
|
|
|
|
|
|
|
|
/* Write a line to a file descriptor. */
|
|
|
|
void writeLine(int fd, string s);
|
|
|
|
|
2003-06-23 17:40:49 +03:00
|
|
|
/* Delete a path; i.e., in the case of a directory, it is deleted
|
2016-02-24 18:44:12 +02:00
|
|
|
recursively. It's not an error if the path does not exist. The
|
|
|
|
second variant returns the number of bytes and blocks freed. */
|
2003-10-07 17:37:41 +03:00
|
|
|
void deletePath(const Path & path);
|
2003-08-22 23:12:44 +03:00
|
|
|
|
2012-08-02 05:34:46 +03:00
|
|
|
void deletePath(const Path & path, unsigned long long & bytesFreed);
|
2005-12-15 23:11:39 +02:00
|
|
|
|
2019-10-09 20:21:07 +03:00
|
|
|
std::string getUserName();
|
|
|
|
|
2017-05-05 17:40:12 +03:00
|
|
|
/* Return $HOME or the user's home directory from /etc/passwd. */
|
|
|
|
Path getHome();
|
|
|
|
|
2017-04-20 15:58:16 +03:00
|
|
|
/* Return $XDG_CACHE_HOME or $HOME/.cache. */
|
2016-04-20 15:12:38 +03:00
|
|
|
Path getCacheDir();
|
|
|
|
|
2017-04-20 15:58:16 +03:00
|
|
|
/* Return $XDG_CONFIG_HOME or $HOME/.config. */
|
|
|
|
Path getConfigDir();
|
|
|
|
|
2018-10-25 14:00:21 +03:00
|
|
|
/* Return the directories to search for user configuration files */
|
|
|
|
std::vector<Path> getConfigDirs();
|
|
|
|
|
2017-04-25 19:56:29 +03:00
|
|
|
/* Return $XDG_DATA_HOME or $HOME/.local/share. */
|
|
|
|
Path getDataDir();
|
|
|
|
|
2007-10-27 03:46:59 +03:00
|
|
|
/* Create a directory and all its parents, if necessary. Returns the
|
|
|
|
list of created directories, in order of creation. */
|
|
|
|
Paths createDirs(const Path & path);
|
2005-03-24 19:46:38 +02:00
|
|
|
|
2014-02-28 00:17:53 +02:00
|
|
|
/* Create a symlink. */
|
2019-05-28 23:35:41 +03:00
|
|
|
void createSymlink(const Path & target, const Path & link,
|
|
|
|
std::optional<time_t> mtime = {});
|
2014-02-28 00:17:53 +02:00
|
|
|
|
2015-04-09 12:42:04 +03:00
|
|
|
/* Atomically create or replace a symlink. */
|
2019-05-28 23:35:41 +03:00
|
|
|
void replaceSymlink(const Path & target, const Path & link,
|
|
|
|
std::optional<time_t> mtime = {});
|
2015-04-09 12:42:04 +03:00
|
|
|
|
2003-11-22 17:58:34 +02:00
|
|
|
|
2003-07-21 00:11:43 +03:00
|
|
|
/* Wrappers arount read()/write() that read/write exactly the
|
|
|
|
requested number of bytes. */
|
|
|
|
void readFull(int fd, unsigned char * buf, size_t count);
|
2016-09-16 19:52:42 +03:00
|
|
|
void writeFull(int fd, const unsigned char * buf, size_t count, bool allowInterrupts = true);
|
|
|
|
void writeFull(int fd, const string & s, bool allowInterrupts = true);
|
2003-07-21 00:11:43 +03:00
|
|
|
|
2019-11-10 18:14:26 +02:00
|
|
|
MakeError(EndOfFile, Error);
|
2006-12-04 19:17:13 +02:00
|
|
|
|
2003-07-21 00:11:43 +03:00
|
|
|
|
2006-07-20 15:17:25 +03:00
|
|
|
/* Read a file descriptor until EOF occurs. */
|
2018-03-20 16:17:59 +02:00
|
|
|
string drainFD(int fd, bool block = true);
|
2006-07-20 15:17:25 +03:00
|
|
|
|
2018-03-20 16:17:59 +02:00
|
|
|
void drainFD(int fd, Sink & sink, bool block = true);
|
2006-07-20 15:17:25 +03:00
|
|
|
|
|
|
|
|
2003-10-22 13:48:22 +03:00
|
|
|
/* Automatic cleanup of resources. */
|
|
|
|
|
2006-12-04 19:17:13 +02:00
|
|
|
|
2003-10-22 13:48:22 +03:00
|
|
|
class AutoDelete
|
|
|
|
{
|
2006-12-13 01:05:01 +02:00
|
|
|
Path path;
|
2003-10-22 13:48:22 +03:00
|
|
|
bool del;
|
2013-01-03 14:00:46 +02:00
|
|
|
bool recursive;
|
2003-10-22 13:48:22 +03:00
|
|
|
public:
|
2015-11-16 12:53:10 +02:00
|
|
|
AutoDelete();
|
2007-10-27 03:46:59 +03:00
|
|
|
AutoDelete(const Path & p, bool recursive = true);
|
2003-10-22 13:48:22 +03:00
|
|
|
~AutoDelete();
|
|
|
|
void cancel();
|
2015-11-16 12:53:10 +02:00
|
|
|
void reset(const Path & p, bool recursive = true);
|
2015-10-01 17:47:43 +03:00
|
|
|
operator Path() const { return path; }
|
2003-10-22 13:48:22 +03:00
|
|
|
};
|
|
|
|
|
2004-06-22 12:51:44 +03:00
|
|
|
|
2003-10-22 13:48:22 +03:00
|
|
|
class AutoCloseFD
|
|
|
|
{
|
|
|
|
int fd;
|
2016-07-11 22:44:44 +03:00
|
|
|
void close();
|
2003-10-22 13:48:22 +03:00
|
|
|
public:
|
|
|
|
AutoCloseFD();
|
|
|
|
AutoCloseFD(int fd);
|
2016-07-11 22:44:44 +03:00
|
|
|
AutoCloseFD(const AutoCloseFD & fd) = delete;
|
|
|
|
AutoCloseFD(AutoCloseFD&& fd);
|
2003-10-22 13:48:22 +03:00
|
|
|
~AutoCloseFD();
|
2016-07-11 22:44:44 +03:00
|
|
|
AutoCloseFD& operator =(const AutoCloseFD & fd) = delete;
|
|
|
|
AutoCloseFD& operator =(AutoCloseFD&& fd);
|
|
|
|
int get() const;
|
|
|
|
explicit operator bool() const;
|
|
|
|
int release();
|
2004-06-15 16:49:42 +03:00
|
|
|
};
|
|
|
|
|
2004-06-22 12:51:44 +03:00
|
|
|
|
2019-05-02 22:28:41 +03:00
|
|
|
/* Create a temporary directory. */
|
|
|
|
Path createTempDir(const Path & tmpRoot = "", const Path & prefix = "nix",
|
|
|
|
bool includePid = true, bool useGlobalCounter = true, mode_t mode = 0755);
|
|
|
|
|
|
|
|
/* Create a temporary file, returning a file handle and its path. */
|
|
|
|
std::pair<AutoCloseFD, Path> createTempFile(const Path & prefix = "nix");
|
|
|
|
|
|
|
|
|
2004-06-15 16:49:42 +03:00
|
|
|
class Pipe
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AutoCloseFD readSide, writeSide;
|
|
|
|
void create();
|
2003-10-22 13:48:22 +03:00
|
|
|
};
|
|
|
|
|
2004-06-22 12:51:44 +03:00
|
|
|
|
2017-01-16 23:39:27 +02:00
|
|
|
struct DIRDeleter
|
2003-10-22 13:48:22 +03:00
|
|
|
{
|
2017-01-16 23:39:27 +02:00
|
|
|
void operator()(DIR * dir) const {
|
|
|
|
closedir(dir);
|
|
|
|
}
|
2003-10-22 13:48:22 +03:00
|
|
|
};
|
|
|
|
|
2017-01-16 23:39:27 +02:00
|
|
|
typedef std::unique_ptr<DIR, DIRDeleter> AutoCloseDir;
|
|
|
|
|
2003-10-22 13:48:22 +03:00
|
|
|
|
2004-06-22 12:51:44 +03:00
|
|
|
class Pid
|
|
|
|
{
|
2017-01-19 17:58:39 +02:00
|
|
|
pid_t pid = -1;
|
|
|
|
bool separatePG = false;
|
|
|
|
int killSignal = SIGKILL;
|
2004-06-22 12:51:44 +03:00
|
|
|
public:
|
|
|
|
Pid();
|
2014-07-10 17:50:51 +03:00
|
|
|
Pid(pid_t pid);
|
2004-06-22 12:51:44 +03:00
|
|
|
~Pid();
|
|
|
|
void operator =(pid_t pid);
|
|
|
|
operator pid_t();
|
2017-03-16 11:52:28 +02:00
|
|
|
int kill();
|
2017-01-19 17:58:39 +02:00
|
|
|
int wait();
|
|
|
|
|
2004-06-22 12:51:44 +03:00
|
|
|
void setSeparatePG(bool separatePG);
|
2007-03-19 14:48:45 +02:00
|
|
|
void setKillSignal(int signal);
|
2016-10-12 16:49:37 +03:00
|
|
|
pid_t release();
|
2004-06-22 12:51:44 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-12-07 02:16:07 +02:00
|
|
|
/* Kill all processes running under the specified uid by sending them
|
|
|
|
a SIGKILL. */
|
|
|
|
void killUser(uid_t uid);
|
|
|
|
|
|
|
|
|
2014-07-10 17:50:51 +03:00
|
|
|
/* Fork a process that runs the given function, and return the child
|
|
|
|
pid to the caller. */
|
2014-12-10 17:35:42 +02:00
|
|
|
struct ProcessOptions
|
|
|
|
{
|
2017-01-19 16:15:45 +02:00
|
|
|
string errorPrefix = "error: ";
|
|
|
|
bool dieWithParent = true;
|
|
|
|
bool runExitHandlers = false;
|
|
|
|
bool allowVfork = true;
|
2014-12-10 17:35:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
pid_t startProcess(std::function<void()> fun, const ProcessOptions & options = ProcessOptions());
|
2014-07-10 17:50:51 +03:00
|
|
|
|
|
|
|
|
2006-07-20 15:17:25 +03:00
|
|
|
/* Run a program and return its stdout in a string (i.e., like the
|
|
|
|
shell backtick operator). */
|
2007-02-21 16:31:42 +02:00
|
|
|
string runProgram(Path program, bool searchPath = false,
|
2017-03-15 15:40:47 +02:00
|
|
|
const Strings & args = Strings(),
|
2019-02-12 14:43:32 +02:00
|
|
|
const std::optional<std::string> & input = {});
|
2006-07-20 15:17:25 +03:00
|
|
|
|
2017-11-01 19:43:11 +02:00
|
|
|
struct RunOptions
|
|
|
|
{
|
2019-05-11 23:35:53 +03:00
|
|
|
std::optional<uid_t> uid;
|
|
|
|
std::optional<uid_t> gid;
|
|
|
|
std::optional<Path> chdir;
|
2019-07-11 21:23:03 +03:00
|
|
|
std::optional<std::map<std::string, std::string>> environment;
|
2017-11-01 19:43:11 +02:00
|
|
|
Path program;
|
|
|
|
bool searchPath = true;
|
|
|
|
Strings args;
|
2019-02-12 14:43:32 +02:00
|
|
|
std::optional<std::string> input;
|
2018-03-19 18:09:52 +02:00
|
|
|
Source * standardIn = nullptr;
|
|
|
|
Sink * standardOut = nullptr;
|
2019-07-11 21:23:03 +03:00
|
|
|
bool mergeStderrToStdout = false;
|
2017-11-01 19:43:11 +02:00
|
|
|
bool _killStderr = false;
|
|
|
|
|
|
|
|
RunOptions(const Path & program, const Strings & args)
|
|
|
|
: program(program), args(args) { };
|
|
|
|
|
|
|
|
RunOptions & killStderr(bool v) { _killStderr = true; return *this; }
|
|
|
|
};
|
|
|
|
|
|
|
|
std::pair<int, std::string> runProgram(const RunOptions & options);
|
|
|
|
|
2018-03-16 17:59:31 +02:00
|
|
|
void runProgram2(const RunOptions & options);
|
|
|
|
|
2017-11-01 19:43:11 +02:00
|
|
|
|
2016-09-21 17:21:47 +03:00
|
|
|
class ExecError : public Error
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int status;
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
ExecError(int status, Args... args)
|
|
|
|
: Error(args...), status(status)
|
|
|
|
{ }
|
|
|
|
};
|
2014-05-21 18:19:36 +03:00
|
|
|
|
2014-12-12 16:01:16 +02:00
|
|
|
/* Convert a list of strings to a null-terminated vector of char
|
|
|
|
*'s. The result must not be accessed beyond the lifetime of the
|
|
|
|
list of strings. */
|
2015-06-09 11:50:55 +03:00
|
|
|
std::vector<char *> stringsToCharPtrs(const Strings & ss);
|
2014-12-12 16:01:16 +02:00
|
|
|
|
2017-08-09 17:22:05 +03:00
|
|
|
/* Close all file descriptors except those listed in the given set.
|
|
|
|
Good practice in child processes. */
|
2008-08-02 15:54:35 +03:00
|
|
|
void closeMostFDs(const set<int> & exceptions);
|
|
|
|
|
2012-03-05 21:29:00 +02:00
|
|
|
/* Set the close-on-exec flag for the given file descriptor. */
|
|
|
|
void closeOnExec(int fd);
|
|
|
|
|
2006-07-20 15:17:25 +03:00
|
|
|
|
2004-01-15 22:23:55 +02:00
|
|
|
/* User interruption. */
|
|
|
|
|
2017-01-17 19:21:02 +02:00
|
|
|
extern bool _isInterrupted;
|
2004-01-15 22:23:55 +02:00
|
|
|
|
2017-09-08 16:31:24 +03:00
|
|
|
extern thread_local std::function<bool()> interruptCheck;
|
|
|
|
|
2017-04-21 17:28:10 +03:00
|
|
|
void setInterruptThrown();
|
2016-03-29 16:08:24 +03:00
|
|
|
|
2004-01-15 22:23:55 +02:00
|
|
|
void _interrupted();
|
|
|
|
|
|
|
|
void inline checkInterrupt()
|
|
|
|
{
|
2017-09-08 16:31:24 +03:00
|
|
|
if (_isInterrupted || (interruptCheck && interruptCheck()))
|
|
|
|
_interrupted();
|
2004-01-15 22:23:55 +02:00
|
|
|
}
|
|
|
|
|
2019-11-10 18:14:26 +02:00
|
|
|
MakeError(Interrupted, BaseError);
|
2006-12-04 19:17:13 +02:00
|
|
|
|
2004-01-15 22:23:55 +02:00
|
|
|
|
2019-11-10 18:14:26 +02:00
|
|
|
MakeError(FormatError, Error);
|
2016-07-19 01:50:27 +03:00
|
|
|
|
|
|
|
|
2005-09-22 18:43:22 +03:00
|
|
|
/* String tokenizer. */
|
2012-09-19 22:43:23 +03:00
|
|
|
template<class C> C tokenizeString(const string & s, const string & separators = " \t\n\r");
|
2005-09-22 18:43:22 +03:00
|
|
|
|
|
|
|
|
2010-08-27 16:18:13 +03:00
|
|
|
/* Concatenate the given strings with a separator between the
|
|
|
|
elements. */
|
2019-05-02 22:09:52 +03:00
|
|
|
template<class C>
|
|
|
|
string concatStringsSep(const string & sep, const C & ss)
|
|
|
|
{
|
|
|
|
string s;
|
|
|
|
for (auto & i : ss) {
|
|
|
|
if (s.size() != 0) s += sep;
|
|
|
|
s += i;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Add quotes around a collection of strings. */
|
|
|
|
template<class C> Strings quoteStrings(const C & c)
|
|
|
|
{
|
|
|
|
Strings res;
|
|
|
|
for (auto & s : c)
|
|
|
|
res.push_back("'" + s + "'");
|
|
|
|
return res;
|
|
|
|
}
|
2010-08-27 16:18:13 +03:00
|
|
|
|
|
|
|
|
2012-08-01 18:19:24 +03:00
|
|
|
/* Remove trailing whitespace from a string. */
|
|
|
|
string chomp(const string & s);
|
|
|
|
|
|
|
|
|
2015-04-09 12:42:04 +03:00
|
|
|
/* Remove whitespace from the start and end of a string. */
|
|
|
|
string trim(const string & s, const string & whitespace = " \n\r\t");
|
|
|
|
|
|
|
|
|
2015-06-17 17:20:11 +03:00
|
|
|
/* Replace all occurrences of a string inside another string. */
|
|
|
|
string replaceStrings(const std::string & s,
|
|
|
|
const std::string & from, const std::string & to);
|
|
|
|
|
|
|
|
|
2018-03-30 01:56:13 +03:00
|
|
|
std::string rewriteStrings(const std::string & s, const StringMap & rewrites);
|
|
|
|
|
|
|
|
|
|
|
|
/* If a set contains 'from', remove it and insert 'to'. */
|
|
|
|
template<typename T>
|
|
|
|
void replaceInSet(std::set<T> & set, const T & from, const T & to)
|
|
|
|
{
|
|
|
|
auto i = set.find(from);
|
|
|
|
if (i == set.end()) return;
|
|
|
|
set.erase(i);
|
|
|
|
set.insert(to);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-22 11:50:25 +03:00
|
|
|
/* Convert the exit status of a child as returned by wait() into an
|
|
|
|
error string. */
|
|
|
|
string statusToString(int status);
|
|
|
|
|
2004-06-22 14:03:41 +03:00
|
|
|
bool statusOk(int status);
|
|
|
|
|
2004-06-22 11:50:25 +03:00
|
|
|
|
2004-09-10 16:32:08 +03:00
|
|
|
/* Parse a string into an integer. */
|
2009-11-24 14:26:25 +02:00
|
|
|
template<class N> bool string2Int(const string & s, N & n)
|
|
|
|
{
|
2016-01-19 14:00:02 +02:00
|
|
|
if (string(s, 0, 1) == "-" && !std::numeric_limits<N>::is_signed)
|
|
|
|
return false;
|
2009-11-24 14:26:25 +02:00
|
|
|
std::istringstream str(s);
|
|
|
|
str >> n;
|
|
|
|
return str && str.get() == EOF;
|
|
|
|
}
|
|
|
|
|
2016-01-05 01:40:40 +02:00
|
|
|
/* Parse a string into a float. */
|
|
|
|
template<class N> bool string2Float(const string & s, N & n)
|
|
|
|
{
|
|
|
|
std::istringstream str(s);
|
|
|
|
str >> n;
|
|
|
|
return str && str.get() == EOF;
|
|
|
|
}
|
|
|
|
|
2004-09-10 16:32:08 +03:00
|
|
|
|
2016-04-29 22:04:40 +03:00
|
|
|
/* Return true iff `s' starts with `prefix'. */
|
|
|
|
bool hasPrefix(const string & s, const string & prefix);
|
|
|
|
|
|
|
|
|
2008-08-25 16:31:57 +03:00
|
|
|
/* Return true iff `s' ends in `suffix'. */
|
|
|
|
bool hasSuffix(const string & s, const string & suffix);
|
|
|
|
|
|
|
|
|
2016-09-14 15:42:15 +03:00
|
|
|
/* Convert a string to lower case. */
|
|
|
|
std::string toLower(const std::string & s);
|
|
|
|
|
|
|
|
|
2017-10-25 14:01:50 +03:00
|
|
|
/* Escape a string as a shell word. */
|
|
|
|
std::string shellEscape(const std::string & s);
|
2017-08-25 16:57:49 +03:00
|
|
|
|
|
|
|
|
2010-04-19 16:46:58 +03:00
|
|
|
/* Exception handling in destructors: print an error message, then
|
|
|
|
ignore the exception. */
|
|
|
|
void ignoreException();
|
2008-09-17 13:02:55 +03:00
|
|
|
|
|
|
|
|
2014-08-20 17:01:16 +03:00
|
|
|
/* Some ANSI escape sequences. */
|
|
|
|
#define ANSI_NORMAL "\e[0m"
|
|
|
|
#define ANSI_BOLD "\e[1m"
|
2019-05-15 18:33:56 +03:00
|
|
|
#define ANSI_FAINT "\e[2m"
|
2014-08-20 17:01:16 +03:00
|
|
|
#define ANSI_RED "\e[31;1m"
|
2017-05-16 17:09:57 +03:00
|
|
|
#define ANSI_GREEN "\e[32;1m"
|
|
|
|
#define ANSI_BLUE "\e[34;1m"
|
2014-08-20 17:01:16 +03:00
|
|
|
|
|
|
|
|
2018-03-15 17:08:07 +02:00
|
|
|
/* Truncate a string to 'width' printable characters. If 'filterAll'
|
|
|
|
is true, all ANSI escape sequences are filtered out. Otherwise,
|
|
|
|
some escape sequences (such as colour setting) are copied but not
|
|
|
|
included in the character count. Also, tabs are expanded to
|
|
|
|
spaces. */
|
2018-02-07 16:19:10 +02:00
|
|
|
std::string filterANSIEscapes(const std::string & s,
|
2018-03-15 17:08:07 +02:00
|
|
|
bool filterAll = false,
|
2018-02-07 16:19:10 +02:00
|
|
|
unsigned int width = std::numeric_limits<unsigned int>::max());
|
2014-08-20 17:01:16 +03:00
|
|
|
|
|
|
|
|
2015-02-09 16:09:39 +02:00
|
|
|
/* Base64 encoding/decoding. */
|
|
|
|
string base64Encode(const string & s);
|
|
|
|
string base64Decode(const string & s);
|
|
|
|
|
|
|
|
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 15:28:26 +02:00
|
|
|
/* Get a value for the specified key from an associate container, or a
|
|
|
|
default value if the key doesn't exist. */
|
|
|
|
template <class T>
|
|
|
|
string get(const T & map, const string & key, const string & def = "")
|
|
|
|
{
|
|
|
|
auto i = map.find(key);
|
|
|
|
return i == map.end() ? def : i->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-27 23:16:01 +03:00
|
|
|
/* A callback is a wrapper around a lambda that accepts a valid of
|
|
|
|
type T or an exception. (We abuse std::future<T> to pass the value or
|
|
|
|
exception.) */
|
|
|
|
template<typename T>
|
2019-09-03 13:51:35 +03:00
|
|
|
class Callback
|
2018-03-27 23:16:01 +03:00
|
|
|
{
|
|
|
|
std::function<void(std::future<T>)> fun;
|
2019-09-03 13:51:35 +03:00
|
|
|
std::atomic_flag done = ATOMIC_FLAG_INIT;
|
|
|
|
|
|
|
|
public:
|
2016-09-16 19:54:14 +03:00
|
|
|
|
2018-03-27 23:16:01 +03:00
|
|
|
Callback(std::function<void(std::future<T>)> fun) : fun(fun) { }
|
2016-09-16 19:54:14 +03:00
|
|
|
|
2019-09-03 13:51:35 +03:00
|
|
|
Callback(Callback && callback) : fun(std::move(callback.fun))
|
|
|
|
{
|
|
|
|
auto prev = callback.done.test_and_set();
|
|
|
|
if (prev) done.test_and_set();
|
|
|
|
}
|
|
|
|
|
2019-09-03 14:00:55 +03:00
|
|
|
void operator()(T && t) noexcept
|
2018-03-27 23:16:01 +03:00
|
|
|
{
|
2019-09-03 13:51:35 +03:00
|
|
|
auto prev = done.test_and_set();
|
|
|
|
assert(!prev);
|
2018-03-27 23:16:01 +03:00
|
|
|
std::promise<T> promise;
|
|
|
|
promise.set_value(std::move(t));
|
|
|
|
fun(promise.get_future());
|
2016-09-16 19:54:14 +03:00
|
|
|
}
|
|
|
|
|
2019-09-03 14:00:55 +03:00
|
|
|
void rethrow(const std::exception_ptr & exc = std::current_exception()) noexcept
|
2018-03-27 23:16:01 +03:00
|
|
|
{
|
2019-09-03 13:51:35 +03:00
|
|
|
auto prev = done.test_and_set();
|
|
|
|
assert(!prev);
|
2018-03-27 23:16:01 +03:00
|
|
|
std::promise<T> promise;
|
|
|
|
promise.set_exception(exc);
|
|
|
|
fun(promise.get_future());
|
2016-09-16 19:54:14 +03:00
|
|
|
}
|
2018-03-27 23:16:01 +03:00
|
|
|
};
|
2016-09-16 19:54:14 +03:00
|
|
|
|
|
|
|
|
2017-01-17 19:21:02 +02:00
|
|
|
/* Start a thread that handles various signals. Also block those signals
|
|
|
|
on the current thread (and thus any threads created by it). */
|
|
|
|
void startSignalHandlerThread();
|
|
|
|
|
2017-02-01 14:00:21 +02:00
|
|
|
/* Restore default signal handling. */
|
|
|
|
void restoreSignals();
|
|
|
|
|
2017-01-17 19:21:02 +02:00
|
|
|
struct InterruptCallback
|
|
|
|
{
|
|
|
|
virtual ~InterruptCallback() { };
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Register a function that gets called on SIGINT (in a non-signal
|
|
|
|
context). */
|
|
|
|
std::unique_ptr<InterruptCallback> createInterruptCallback(
|
|
|
|
std::function<void()> callback);
|
|
|
|
|
2017-01-25 14:37:02 +02:00
|
|
|
void triggerInterrupt();
|
|
|
|
|
|
|
|
/* A RAII class that causes the current thread to receive SIGUSR1 when
|
|
|
|
the signal handler thread receives SIGINT. That is, this allows
|
|
|
|
SIGINT to be multiplexed to multiple threads. */
|
|
|
|
struct ReceiveInterrupts
|
|
|
|
{
|
|
|
|
pthread_t target;
|
|
|
|
std::unique_ptr<InterruptCallback> callback;
|
|
|
|
|
|
|
|
ReceiveInterrupts()
|
|
|
|
: target(pthread_self())
|
|
|
|
, callback(createInterruptCallback([&]() { pthread_kill(target, SIGUSR1); }))
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2017-08-14 23:42:17 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* A RAII helper that increments a counter on construction and
|
|
|
|
decrements it on destruction. */
|
|
|
|
template<typename T>
|
|
|
|
struct MaintainCount
|
|
|
|
{
|
|
|
|
T & counter;
|
|
|
|
long delta;
|
|
|
|
MaintainCount(T & counter, long delta = 1) : counter(counter), delta(delta) { counter += delta; }
|
|
|
|
~MaintainCount() { counter -= delta; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-08-25 16:57:49 +03:00
|
|
|
/* Return the number of rows and columns of the terminal. */
|
|
|
|
std::pair<unsigned short, unsigned short> getWindowSize();
|
|
|
|
|
|
|
|
|
2017-10-30 20:57:40 +02:00
|
|
|
/* Used in various places. */
|
|
|
|
typedef std::function<bool(const Path & path)> PathFilter;
|
|
|
|
|
|
|
|
extern PathFilter defaultPathFilter;
|
|
|
|
|
|
|
|
|
2018-09-25 13:36:11 +03:00
|
|
|
/* Create a Unix domain socket in listen mode. */
|
|
|
|
AutoCloseFD createUnixDomainSocket(const Path & path, mode_t mode);
|
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|