2016-02-24 15:48:16 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "crypto.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
#include "pool.hh"
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct NarInfo;
|
|
|
|
|
|
|
|
class BinaryCacheStore : public Store
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
std::unique_ptr<SecretKey> secretKey;
|
|
|
|
|
2016-04-29 18:02:57 +03:00
|
|
|
std::string compression;
|
|
|
|
|
2016-02-24 15:48:16 +02:00
|
|
|
protected:
|
|
|
|
|
2016-06-01 15:49:12 +03:00
|
|
|
BinaryCacheStore(const Params & params);
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2016-02-24 15:57:30 +02:00
|
|
|
[[noreturn]] void notImpl();
|
|
|
|
|
2016-02-24 15:48:16 +02:00
|
|
|
virtual bool fileExists(const std::string & path) = 0;
|
|
|
|
|
|
|
|
virtual void upsertFile(const std::string & path, const std::string & data) = 0;
|
|
|
|
|
2016-04-15 16:11:34 +03:00
|
|
|
/* Return the contents of the specified file, or null if it
|
|
|
|
doesn't exist. */
|
2016-09-16 19:54:14 +03:00
|
|
|
virtual void getFile(const std::string & path,
|
|
|
|
std::function<void(std::shared_ptr<std::string>)> success,
|
|
|
|
std::function<void(std::exception_ptr exc)> failure) = 0;
|
|
|
|
|
|
|
|
std::shared_ptr<std::string> getFile(const std::string & path);
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2016-05-30 14:33:05 +03:00
|
|
|
bool wantMassQuery_ = false;
|
|
|
|
int priority = 50;
|
|
|
|
|
2016-02-24 15:48:16 +02:00
|
|
|
public:
|
|
|
|
|
|
|
|
virtual void init();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-02-24 17:52:28 +02:00
|
|
|
std::string narMagic;
|
|
|
|
|
2016-02-24 15:48:16 +02:00
|
|
|
std::string narInfoFileFor(const Path & storePath);
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2016-04-19 19:50:15 +03:00
|
|
|
bool isValidPathUncached(const Path & path) override;
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
PathSet queryAllValidPaths() override
|
2016-02-24 15:57:30 +02:00
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2016-09-16 19:54:14 +03:00
|
|
|
void queryPathInfoUncached(const Path & path,
|
|
|
|
std::function<void(std::shared_ptr<ValidPathInfo>)> success,
|
|
|
|
std::function<void(std::exception_ptr exc)> failure) override;
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
void queryReferrers(const Path & path,
|
|
|
|
PathSet & referrers) override
|
2016-02-24 15:57:30 +02:00
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
PathSet queryValidDerivers(const Path & path) override
|
2016-02-24 17:52:28 +02:00
|
|
|
{ return {}; }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
PathSet queryDerivationOutputs(const Path & path) override
|
2016-02-24 15:57:30 +02:00
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
StringSet queryDerivationOutputNames(const Path & path) override
|
2016-02-24 15:57:30 +02:00
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
Path queryPathFromHashPart(const string & hashPart) override
|
2016-02-24 15:57:30 +02:00
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
PathSet querySubstitutablePaths(const PathSet & paths) override
|
2016-02-24 17:52:28 +02:00
|
|
|
{ return {}; }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
void querySubstitutablePathInfos(const PathSet & paths,
|
2016-05-31 14:31:04 +03:00
|
|
|
SubstitutablePathInfos & infos) override
|
2016-05-04 21:15:41 +03:00
|
|
|
{ }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2016-05-31 14:31:04 +03:00
|
|
|
bool wantMassQuery() override { return wantMassQuery_; }
|
2016-05-30 14:33:05 +03:00
|
|
|
|
2016-05-04 14:36:54 +03:00
|
|
|
void addToStore(const ValidPathInfo & info, const std::string & nar,
|
2016-05-31 12:18:45 +03:00
|
|
|
bool repair = false, bool dontCheckSigs = false) override;
|
2016-05-04 14:36:54 +03:00
|
|
|
|
2016-02-24 15:48:16 +02:00
|
|
|
Path addToStore(const string & name, const Path & srcPath,
|
|
|
|
bool recursive = true, HashType hashAlgo = htSHA256,
|
2016-02-24 17:52:28 +02:00
|
|
|
PathFilter & filter = defaultPathFilter, bool repair = false) override;
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
Path addTextToStore(const string & name, const string & s,
|
2016-02-24 17:52:28 +02:00
|
|
|
const PathSet & references, bool repair = false) override;
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2016-03-22 15:21:45 +02:00
|
|
|
void narFromPath(const Path & path, Sink & sink) override;
|
2016-03-21 18:55:57 +02:00
|
|
|
|
2016-05-04 21:15:41 +03:00
|
|
|
void buildPaths(const PathSet & paths, BuildMode buildMode = bmNormal) override
|
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
BuildResult buildDerivation(const Path & drvPath, const BasicDerivation & drv,
|
|
|
|
BuildMode buildMode = bmNormal) override
|
2016-02-24 15:57:30 +02:00
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2016-05-04 21:15:41 +03:00
|
|
|
void ensurePath(const Path & path) override
|
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
void addTempRoot(const Path & path) override
|
2016-02-24 15:57:30 +02:00
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
void addIndirectRoot(const Path & path) override
|
2016-02-24 15:57:30 +02:00
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
void syncWithGC() override
|
|
|
|
{ }
|
|
|
|
|
|
|
|
Roots findRoots() override
|
2016-02-24 15:57:30 +02:00
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
void collectGarbage(const GCOptions & options, GCResults & results) override
|
2016-02-24 15:57:30 +02:00
|
|
|
{ notImpl(); }
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
void optimiseStore() override
|
|
|
|
{ }
|
|
|
|
|
|
|
|
bool verifyStore(bool checkContents, bool repair) override
|
|
|
|
{ return true; }
|
|
|
|
|
2016-02-25 18:43:19 +02:00
|
|
|
ref<FSAccessor> getFSAccessor() override;
|
|
|
|
|
2016-10-07 19:13:40 +03:00
|
|
|
private:
|
|
|
|
|
|
|
|
void addPathToAccessor(ref<FSAccessor>, const Path & storePath, const ref<std::string> & data) override;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2016-05-31 14:31:04 +03:00
|
|
|
void addSignatures(const Path & storePath, const StringSet & sigs) override
|
2016-04-05 16:30:22 +03:00
|
|
|
{ notImpl(); }
|
|
|
|
|
2016-02-24 15:48:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|