mirror of
https://github.com/NixOS/nix
synced 2025-06-26 20:01:15 +02:00
* A GC setting `gc-keep-outputs' to specify whether output paths of
derivations should be kept.
This commit is contained in:
parent
2e6bf723e4
commit
a37338815d
7 changed files with 102 additions and 7 deletions
|
@ -164,6 +164,27 @@ Strings readDirectory(const Path & path)
|
|||
}
|
||||
|
||||
|
||||
string readFile(int fd)
|
||||
{
|
||||
struct stat st;
|
||||
if (fstat(fd, &st) == -1)
|
||||
throw SysError("statting file");
|
||||
unsigned char buf[st.st_size]; /* !!! stack space */
|
||||
readFull(fd, buf, st.st_size);
|
||||
|
||||
return string((char *) buf, st.st_size);
|
||||
}
|
||||
|
||||
|
||||
string readFile(const Path & path)
|
||||
{
|
||||
AutoCloseFD fd = open(path.c_str(), O_RDONLY);
|
||||
if (fd == -1)
|
||||
throw SysError(format("opening file `%1%'") % path);
|
||||
return readFile(fd);
|
||||
}
|
||||
|
||||
|
||||
static void _deletePath(const Path & path)
|
||||
{
|
||||
checkInterrupt();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue