Merge "Add getCwd
" into main
This commit is contained in:
commit
f5ae72d445
|
@ -18,15 +18,19 @@ namespace fs = std::filesystem;
|
||||||
|
|
||||||
namespace nix {
|
namespace nix {
|
||||||
|
|
||||||
|
Path getCwd() {
|
||||||
|
char buf[PATH_MAX];
|
||||||
|
if (!getcwd(buf, sizeof(buf))) {
|
||||||
|
throw SysError("cannot get cwd");
|
||||||
|
}
|
||||||
|
return Path(buf);
|
||||||
|
}
|
||||||
|
|
||||||
Path absPath(Path path, std::optional<PathView> dir, bool resolveSymlinks)
|
Path absPath(Path path, std::optional<PathView> dir, bool resolveSymlinks)
|
||||||
{
|
{
|
||||||
if (path.empty() || path[0] != '/') {
|
if (path.empty() || path[0] != '/') {
|
||||||
if (!dir) {
|
if (!dir) {
|
||||||
char buf[PATH_MAX];
|
path = concatStrings(getCwd(), "/", path);
|
||||||
if (!getcwd(buf, sizeof(buf))) {
|
|
||||||
throw SysError("cannot get cwd");
|
|
||||||
}
|
|
||||||
path = concatStrings(buf, "/", path);
|
|
||||||
} else {
|
} else {
|
||||||
path = concatStrings(*dir, "/", path);
|
path = concatStrings(*dir, "/", path);
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,6 +29,13 @@ namespace nix {
|
||||||
struct Sink;
|
struct Sink;
|
||||||
struct Source;
|
struct Source;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the current working directory.
|
||||||
|
*
|
||||||
|
* Throw an error if the current directory cannot get got.
|
||||||
|
*/
|
||||||
|
Path getCwd();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return An absolutized path, resolving paths relative to the
|
* @return An absolutized path, resolving paths relative to the
|
||||||
* specified directory, or the current directory otherwise. The path
|
* specified directory, or the current directory otherwise. The path
|
||||||
|
|
Loading…
Reference in a new issue