2016-02-29 16:14:39 +01:00
|
|
|
|
#include "binary-cache-store.hh"
|
2016-03-04 17:23:42 +01:00
|
|
|
|
#include "globals.hh"
|
2016-02-24 14:48:16 +01:00
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
2016-02-29 16:14:39 +01:00
|
|
|
|
class LocalBinaryCacheStore : public BinaryCacheStore
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
Path binaryCacheDir;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
LocalBinaryCacheStore(std::shared_ptr<Store> localStore,
|
2016-04-29 16:47:20 +02:00
|
|
|
|
const StoreParams & params, const Path & binaryCacheDir)
|
|
|
|
|
: BinaryCacheStore(localStore, params)
|
|
|
|
|
, binaryCacheDir(binaryCacheDir)
|
|
|
|
|
{
|
|
|
|
|
}
|
2016-02-29 16:14:39 +01:00
|
|
|
|
|
|
|
|
|
void init() override;
|
|
|
|
|
|
2016-04-29 16:26:16 +02:00
|
|
|
|
std::string getUri() override
|
|
|
|
|
{
|
|
|
|
|
return "file://" + binaryCacheDir;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-29 16:14:39 +01:00
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
bool fileExists(const std::string & path) override;
|
|
|
|
|
|
|
|
|
|
void upsertFile(const std::string & path, const std::string & data) override;
|
|
|
|
|
|
2016-04-15 15:11:34 +02:00
|
|
|
|
std::shared_ptr<std::string> getFile(const std::string & path) override;
|
2016-02-29 16:14:39 +01:00
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2016-02-24 14:48:16 +01:00
|
|
|
|
void LocalBinaryCacheStore::init()
|
|
|
|
|
{
|
|
|
|
|
createDirs(binaryCacheDir + "/nar");
|
|
|
|
|
BinaryCacheStore::init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void atomicWrite(const Path & path, const std::string & s)
|
|
|
|
|
{
|
|
|
|
|
Path tmp = path + ".tmp." + std::to_string(getpid());
|
|
|
|
|
AutoDelete del(tmp, false);
|
|
|
|
|
writeFile(tmp, s);
|
|
|
|
|
if (rename(tmp.c_str(), path.c_str()))
|
|
|
|
|
throw SysError(format("renaming ‘%1%’ to ‘%2%’") % tmp % path);
|
|
|
|
|
del.cancel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool LocalBinaryCacheStore::fileExists(const std::string & path)
|
|
|
|
|
{
|
|
|
|
|
return pathExists(binaryCacheDir + "/" + path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocalBinaryCacheStore::upsertFile(const std::string & path, const std::string & data)
|
|
|
|
|
{
|
|
|
|
|
atomicWrite(binaryCacheDir + "/" + path, data);
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-15 15:11:34 +02:00
|
|
|
|
std::shared_ptr<std::string> LocalBinaryCacheStore::getFile(const std::string & path)
|
2016-02-24 14:48:16 +01:00
|
|
|
|
{
|
2016-04-15 15:11:34 +02:00
|
|
|
|
try {
|
|
|
|
|
return std::make_shared<std::string>(readFile(binaryCacheDir + "/" + path));
|
|
|
|
|
} catch (SysError & e) {
|
|
|
|
|
if (e.errNo == ENOENT) return 0;
|
|
|
|
|
throw;
|
|
|
|
|
}
|
2016-02-24 14:48:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-29 16:26:16 +02:00
|
|
|
|
static RegisterStoreImplementation regStore([](
|
|
|
|
|
const std::string & uri, const StoreParams & params)
|
|
|
|
|
-> std::shared_ptr<Store>
|
|
|
|
|
{
|
2016-02-29 16:11:11 +01:00
|
|
|
|
if (std::string(uri, 0, 7) != "file://") return 0;
|
2016-04-29 16:47:20 +02:00
|
|
|
|
auto store = std::make_shared<LocalBinaryCacheStore>(
|
|
|
|
|
std::shared_ptr<Store>(0), params, std::string(uri, 7));
|
|
|
|
|
store->init();
|
|
|
|
|
return store;
|
2016-02-29 16:11:11 +01:00
|
|
|
|
});
|
|
|
|
|
|
2016-02-24 14:48:16 +01:00
|
|
|
|
}
|