lix/src/libstore/local-binary-cache-store.cc

108 lines
2.6 KiB
C++
Raw Normal View History

2016-02-29 15:14:39 +00:00
#include "binary-cache-store.hh"
#include "globals.hh"
2016-05-30 12:53:57 +00:00
#include "nar-info-disk-cache.hh"
namespace nix {
2016-02-29 15:14:39 +00:00
class LocalBinaryCacheStore : public BinaryCacheStore
{
private:
Path binaryCacheDir;
public:
LocalBinaryCacheStore(
const Params & params)
: LocalBinaryCacheStore("dummy", params)
{
}
LocalBinaryCacheStore(
const Path & binaryCacheDir,
const Params & params)
: BinaryCacheStore(params)
, binaryCacheDir(binaryCacheDir)
{
}
2016-02-29 15:14:39 +00:00
void init() override;
std::string getUri() override
{
return "file://" + binaryCacheDir;
}
static std::vector<std::string> uriPrefixes();
2016-02-29 15:14:39 +00:00
protected:
bool fileExists(const std::string & path) override;
void upsertFile(const std::string & path,
std::shared_ptr<std::basic_iostream<char>> istream,
const std::string & mimeType) override
{
auto path2 = binaryCacheDir + "/" + path;
Path tmp = path2 + ".tmp." + std::to_string(getpid());
AutoDelete del(tmp, false);
StreamToSourceAdapter source(istream);
writeFile(tmp, source);
if (rename(tmp.c_str(), path2.c_str()))
throw SysError("renaming '%1%' to '%2%'", tmp, path2);
del.cancel();
}
2016-02-29 15:14:39 +00:00
void getFile(const std::string & path, Sink & sink) override
{
2018-03-27 20:16:01 +00:00
try {
readFile(binaryCacheDir + "/" + path, sink);
2018-03-27 20:16:01 +00:00
} catch (SysError & e) {
if (e.errNo == ENOENT)
throw NoSuchBinaryCacheFile("file '%s' does not exist in binary cache", path);
}
}
2016-02-29 15:14:39 +00:00
StorePathSet queryAllValidPaths() override
{
StorePathSet paths;
for (auto & entry : readDirectory(binaryCacheDir)) {
if (entry.name.size() != 40 ||
!hasSuffix(entry.name, ".narinfo"))
continue;
paths.insert(parseStorePath(
storeDir + "/" + entry.name.substr(0, entry.name.size() - 8)
+ "-" + MissingName));
}
return paths;
}
2016-02-29 15:14:39 +00:00
};
void LocalBinaryCacheStore::init()
{
createDirs(binaryCacheDir + "/nar");
if (writeDebugInfo)
createDirs(binaryCacheDir + "/debuginfo");
BinaryCacheStore::init();
}
bool LocalBinaryCacheStore::fileExists(const std::string & path)
{
return pathExists(binaryCacheDir + "/" + path);
}
std::vector<std::string> LocalBinaryCacheStore::uriPrefixes()
{
if (getEnv("_NIX_FORCE_HTTP_BINARY_CACHE_STORE") == "1")
return {};
else
return {"file"};
}
2020-09-09 09:18:12 +00:00
static RegisterStoreImplementation<LocalBinaryCacheStore> regStore;
}