2016-02-24 14:48:16 +01: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 17:02:57 +02:00
|
|
|
std::string compression;
|
|
|
|
|
2016-10-21 16:50:28 +02:00
|
|
|
bool writeNARListing;
|
|
|
|
|
2016-02-24 14:48:16 +01:00
|
|
|
protected:
|
|
|
|
|
2016-06-01 14:49:12 +02:00
|
|
|
BinaryCacheStore(const Params & params);
|
2016-02-24 14:48:16 +01:00
|
|
|
|
2016-02-24 14:57:30 +01:00
|
|
|
[[noreturn]] void notImpl();
|
|
|
|
|
2016-10-21 16:50:28 +02:00
|
|
|
public:
|
|
|
|
|
2016-02-24 14:48:16 +01:00
|
|
|
virtual bool fileExists(const std::string & path) = 0;
|
|
|
|
|
2017-03-14 15:26:01 +01:00
|
|
|
virtual void upsertFile(const std::string & path,
|
|
|
|
const std::string & data,
|
|
|
|
const std::string & mimeType) = 0;
|
2016-02-24 14:48:16 +01:00
|
|
|
|
2016-04-15 15:11:34 +02:00
|
|
|
/* Return the contents of the specified file, or null if it
|
|
|
|
doesn't exist. */
|
2016-09-16 18:54:14 +02: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 14:48:16 +01:00
|
|
|
|
2016-10-21 16:50:28 +02:00
|
|
|
protected:
|
|
|
|
|
2016-05-30 13:33:05 +02:00
|
|
|
bool wantMassQuery_ = false;
|
|
|
|
int priority = 50;
|
|
|
|
|
2016-02-24 14:48:16 +01:00
|
|
|
public:
|
|
|
|
|
|
|
|
virtual void init();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-02-24 16:52:28 +01:00
|
|
|
std::string narMagic;
|
|
|
|
|
2016-02-24 14:48:16 +01:00
|
|
|
std::string narInfoFileFor(const Path & storePath);
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2016-04-19 18:50:15 +02:00
|
|
|
bool isValidPathUncached(const Path & path) override;
|
2016-02-24 14:48:16 +01:00
|
|
|
|
|
|
|
PathSet queryAllValidPaths() override
|
2016-02-24 14:57:30 +01:00
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
2016-09-16 18:54:14 +02: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 14:48:16 +01:00
|
|
|
|
|
|
|
void queryReferrers(const Path & path,
|
|
|
|
PathSet & referrers) override
|
2016-02-24 14:57:30 +01:00
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
|
|
|
PathSet queryDerivationOutputs(const Path & path) override
|
2016-02-24 14:57:30 +01:00
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
|
|
|
StringSet queryDerivationOutputNames(const Path & path) override
|
2016-02-24 14:57:30 +01:00
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
|
|
|
Path queryPathFromHashPart(const string & hashPart) override
|
2016-02-24 14:57:30 +01:00
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
2016-05-31 13:31:04 +02:00
|
|
|
bool wantMassQuery() override { return wantMassQuery_; }
|
2016-05-30 13:33:05 +02:00
|
|
|
|
2016-10-21 16:50:28 +02:00
|
|
|
void addToStore(const ValidPathInfo & info, const ref<std::string> & nar,
|
2016-10-21 18:09:30 +02:00
|
|
|
bool repair, bool dontCheckSigs,
|
|
|
|
std::shared_ptr<FSAccessor> accessor) override;
|
2016-05-04 13:36:54 +02:00
|
|
|
|
2016-02-24 14:48:16 +01:00
|
|
|
Path addToStore(const string & name, const Path & srcPath,
|
2016-10-21 18:09:30 +02:00
|
|
|
bool recursive, HashType hashAlgo,
|
|
|
|
PathFilter & filter, bool repair) override;
|
2016-02-24 14:48:16 +01:00
|
|
|
|
|
|
|
Path addTextToStore(const string & name, const string & s,
|
2016-10-21 18:09:30 +02:00
|
|
|
const PathSet & references, bool repair) override;
|
2016-02-24 14:48:16 +01:00
|
|
|
|
2016-03-22 14:21:45 +01:00
|
|
|
void narFromPath(const Path & path, Sink & sink) override;
|
2016-03-21 17:55:57 +01:00
|
|
|
|
2016-10-21 18:09:30 +02:00
|
|
|
void buildPaths(const PathSet & paths, BuildMode buildMode) override
|
2016-05-04 20:15:41 +02:00
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
|
|
|
BuildResult buildDerivation(const Path & drvPath, const BasicDerivation & drv,
|
2016-10-21 18:09:30 +02:00
|
|
|
BuildMode buildMode) override
|
2016-02-24 14:57:30 +01:00
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
2016-05-04 20:15:41 +02:00
|
|
|
void ensurePath(const Path & path) override
|
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
|
|
|
void addTempRoot(const Path & path) override
|
2016-02-24 14:57:30 +01:00
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
|
|
|
void addIndirectRoot(const Path & path) override
|
2016-02-24 14:57:30 +01:00
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
|
|
|
Roots findRoots() override
|
2016-02-24 14:57:30 +01:00
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
|
|
|
void collectGarbage(const GCOptions & options, GCResults & results) override
|
2016-02-24 14:57:30 +01:00
|
|
|
{ notImpl(); }
|
2016-02-24 14:48:16 +01:00
|
|
|
|
2016-02-25 17:43:19 +01:00
|
|
|
ref<FSAccessor> getFSAccessor() override;
|
|
|
|
|
2016-05-31 13:31:04 +02:00
|
|
|
void addSignatures(const Path & storePath, const StringSet & sigs) override
|
2016-04-05 15:30:22 +02:00
|
|
|
{ notImpl(); }
|
|
|
|
|
2017-03-13 14:07:58 +01:00
|
|
|
std::shared_ptr<std::string> getBuildLog(const Path & path) override;
|
|
|
|
|
2016-02-24 14:48:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|