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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
#include "lix/libutil/archive.hh"
#include "lix/libstore/fs-accessor.hh"
#include "lix/libstore/store-api.hh"
#include "lix/libstore/local-fs-store.hh"
#include "lix/libutil/async-io.hh"
#include "lix/libutil/c-calls.hh"
#include "lix/libutil/compression.hh"
#include "lix/libutil/file-system.hh"
#include "lix/libutil/result.hh"
namespace nix {
kj::Promise<Result<Path>> LocalStoreAccessor::toRealPath(const Path & path, bool requireValidPath)
try {
auto storePath = store->toStorePath(path).first;
if (requireValidPath && !TRY_AWAIT(store->isValidPath(storePath))) {
throw InvalidPath(
"path '%1%' does not exist in the store", store->printStorePath(storePath)
);
}
co_return store->getRealStoreDir() + std::string(path, store->config().storeDir.size());
} catch (...) {
co_return result::current_exception();
}
kj::Promise<Result<FSAccessor::Stat>> LocalStoreAccessor::stat(const Path & path)
try {
auto realPath = TRY_AWAIT(toRealPath(path));
struct stat st;
if (sys::lstat(realPath, &st)) {
if (errno == ENOENT || errno == ENOTDIR) {
co_return {Type::tMissing, 0, false};
}
throw SysError("getting status of '%1%'", path);
}
if (!S_ISREG(st.st_mode) && !S_ISDIR(st.st_mode) && !S_ISLNK(st.st_mode)) {
throw Error("file '%1%' has unsupported type", path);
}
co_return {
S_ISREG(st.st_mode) ? Type::tRegular
: S_ISLNK(st.st_mode) ? Type::tSymlink
: Type::tDirectory,
S_ISREG(st.st_mode) ? (uint64_t) st.st_size : 0,
S_ISREG(st.st_mode) && st.st_mode & S_IXUSR
};
} catch (...) {
co_return result::current_exception();
}
kj::Promise<Result<StringSet>> LocalStoreAccessor::readDirectory(const Path & path)
try {
auto realPath = TRY_AWAIT(toRealPath(path));
auto entries = nix::readDirectory(realPath);
StringSet res;
for (auto & entry : entries) {
res.insert(entry.name);
}
co_return res;
} catch (...) {
co_return result::current_exception();
}
kj::Promise<Result<std::string>>
LocalStoreAccessor::readFile(const Path & path, bool requireValidPath)
try {
co_return nix::readFile(TRY_AWAIT(toRealPath(path, requireValidPath)));
} catch (...) {
co_return result::current_exception();
}
kj::Promise<Result<std::string>> LocalStoreAccessor::readLink(const Path & path)
try {
co_return nix::readLink(TRY_AWAIT(toRealPath(path)));
} catch (...) {
co_return result::current_exception();
}
ref<FSAccessor> LocalFSStore::getFSAccessor()
{
return make_ref<LocalStoreAccessor>(ref<LocalFSStore>::unsafeFromPtr(
std::dynamic_pointer_cast<LocalFSStore>(shared_from_this())));
}
kj::Promise<Result<box_ptr<AsyncInputStream>>>
LocalFSStore::narFromPath(const StorePath & path, const Activity * context)
try {
if (!TRY_AWAIT(isValidPath(path, context))) {
throw Error("path '%s' does not exist in store", printStorePath(path));
}
co_return make_box_ptr<AsyncGeneratorInputStream>(
dumpPath(getRealStoreDir() + std::string(printStorePath(path), config().storeDir.size()))
);
} catch (...) {
co_return result::current_exception();
}
const std::string LocalFSStore::drvsLogDir = "drvs";
kj::Promise<Result<std::optional<std::string>>>
LocalFSStore::getBuildLogExact(const StorePath & path)
try {
auto baseName = path.to_string();
for (int j = 0; j < 2; j++) {
Path logPath =
j == 0
? fmt("%s/%s/%s/%s", config().logDir, drvsLogDir, baseName.substr(0, 2), baseName.substr(2))
: fmt("%s/%s/%s", config().logDir, drvsLogDir, baseName);
Path logBz2Path = logPath + ".bz2";
if (pathExists(logPath))
co_return readFile(logPath);
else if (pathExists(logBz2Path)) {
try {
co_return decompress("bzip2", readFile(logBz2Path));
} catch (Error &) { }
}
}
co_return std::nullopt;
} catch (...) {
co_return result::current_exception();
}
}
|