2016-02-24 13:48:16 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "crypto.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
#include "pool.hh"
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct NarInfo;
|
|
|
|
|
2020-09-10 08:55:51 +00:00
|
|
|
struct BinaryCacheStoreConfig : virtual StoreConfig
|
2016-02-24 13:48:16 +00:00
|
|
|
{
|
2020-09-10 08:55:51 +00:00
|
|
|
using StoreConfig::StoreConfig;
|
2016-02-24 13:48:16 +00:00
|
|
|
|
2021-10-12 06:14:36 +00:00
|
|
|
const Setting<std::string> compression{(StoreConfig*) this, "xz", "compression", "NAR compression method ('xz', 'bzip2', 'gzip', 'zstd', or 'none')"};
|
2020-09-15 07:10:37 +00:00
|
|
|
const Setting<bool> writeNARListing{(StoreConfig*) this, false, "write-nar-listing", "whether to write a JSON file listing the files in each NAR"};
|
|
|
|
const Setting<bool> writeDebugInfo{(StoreConfig*) this, false, "index-debug-info", "whether to index DWARF debug info files by build ID"};
|
|
|
|
const Setting<Path> secretKeyFile{(StoreConfig*) this, "", "secret-key", "path to secret key used to sign the binary cache"};
|
|
|
|
const Setting<Path> localNarCache{(StoreConfig*) this, "", "local-nar-cache", "path to a local cache of NARs"};
|
|
|
|
const Setting<bool> parallelCompression{(StoreConfig*) this, false, "parallel-compression",
|
2021-10-12 06:14:36 +00:00
|
|
|
"enable multi-threading compression for NARs, available for xz and zstd only currently"};
|
|
|
|
const Setting<int> compressionLevel{(StoreConfig*) this, -1, "compression-level",
|
|
|
|
"specify 'preset level' of compression to be used with NARs: "
|
|
|
|
"meaning and accepted range of values depends on compression method selected, "
|
|
|
|
"other than -1 which we reserve to indicate Nix defaults should be used"};
|
2020-09-10 08:55:51 +00:00
|
|
|
};
|
|
|
|
|
2020-12-20 15:33:12 +00:00
|
|
|
class BinaryCacheStore : public virtual BinaryCacheStoreConfig, public virtual Store
|
2020-09-10 08:55:51 +00:00
|
|
|
{
|
2016-02-24 13:48:16 +00:00
|
|
|
|
2017-04-13 13:55:38 +00:00
|
|
|
private:
|
2016-04-29 15:02:57 +00:00
|
|
|
|
2017-04-13 13:55:38 +00:00
|
|
|
std::unique_ptr<SecretKey> secretKey;
|
2016-10-21 14:50:28 +00:00
|
|
|
|
2016-02-24 13:48:16 +00:00
|
|
|
protected:
|
|
|
|
|
2020-10-08 15:36:51 +00:00
|
|
|
// The prefix under which realisation infos will be stored
|
2021-05-04 08:35:34 +00:00
|
|
|
const std::string realisationsPrefix = "realisations";
|
2020-10-08 15:36:51 +00:00
|
|
|
|
2016-06-01 12:49:12 +00:00
|
|
|
BinaryCacheStore(const Params & params);
|
2016-02-24 13:48:16 +00:00
|
|
|
|
2016-10-21 14:50:28 +00:00
|
|
|
public:
|
|
|
|
|
2016-02-24 13:48:16 +00:00
|
|
|
virtual bool fileExists(const std::string & path) = 0;
|
|
|
|
|
2017-03-14 14:26:01 +00:00
|
|
|
virtual void upsertFile(const std::string & path,
|
2020-07-13 18:07:19 +00:00
|
|
|
std::shared_ptr<std::basic_iostream<char>> istream,
|
2017-03-14 14:26:01 +00:00
|
|
|
const std::string & mimeType) = 0;
|
2016-02-24 13:48:16 +00:00
|
|
|
|
2020-07-10 18:58:02 +00:00
|
|
|
void upsertFile(const std::string & path,
|
2020-07-13 18:07:19 +00:00
|
|
|
std::string && data,
|
2020-07-10 18:58:02 +00:00
|
|
|
const std::string & mimeType);
|
|
|
|
|
2018-03-27 21:12:31 +00:00
|
|
|
/* Note: subclasses must implement at least one of the two
|
|
|
|
following getFile() methods. */
|
|
|
|
|
|
|
|
/* Dump the contents of the specified file to a sink. */
|
|
|
|
virtual void getFile(const std::string & path, Sink & sink);
|
|
|
|
|
|
|
|
/* Fetch the specified file and call the specified callback with
|
|
|
|
the result. A subclass may implement this asynchronously. */
|
2016-09-16 16:54:14 +00:00
|
|
|
virtual void getFile(const std::string & path,
|
2019-09-03 11:00:55 +00:00
|
|
|
Callback<std::shared_ptr<std::string>> callback) noexcept;
|
2016-09-16 16:54:14 +00:00
|
|
|
|
|
|
|
std::shared_ptr<std::string> getFile(const std::string & path);
|
2016-02-24 13:48:16 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2020-09-09 09:29:17 +00:00
|
|
|
virtual void init() override;
|
2016-02-24 13:48:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-02-24 15:52:28 +00:00
|
|
|
std::string narMagic;
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
std::string narInfoFileFor(const StorePath & storePath);
|
2016-02-24 13:48:16 +00:00
|
|
|
|
2017-11-14 17:44:05 +00:00
|
|
|
void writeNarInfo(ref<NarInfo> narInfo);
|
|
|
|
|
2020-09-23 14:40:41 +00:00
|
|
|
ref<const ValidPathInfo> addToStoreCommon(
|
2020-08-15 16:41:28 +00:00
|
|
|
Source & narSource, RepairFlag repair, CheckSigsFlag checkSigs,
|
|
|
|
std::function<ValidPathInfo(HashResult)> mkInfo);
|
|
|
|
|
2016-02-24 13:48:16 +00:00
|
|
|
public:
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
bool isValidPathUncached(const StorePath & path) override;
|
2016-02-24 13:48:16 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
void queryPathInfoUncached(const StorePath & path,
|
2018-09-25 16:54:16 +00:00
|
|
|
Callback<std::shared_ptr<const ValidPathInfo>> callback) noexcept override;
|
2016-02-24 13:48:16 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
std::optional<StorePath> queryPathFromHashPart(const std::string & hashPart) override
|
2019-01-18 12:34:23 +00:00
|
|
|
{ unsupported("queryPathFromHashPart"); }
|
2016-02-24 13:48:16 +00:00
|
|
|
|
2020-05-29 20:19:48 +00:00
|
|
|
void addToStore(const ValidPathInfo & info, Source & narSource,
|
2020-07-13 15:37:44 +00:00
|
|
|
RepairFlag repair, CheckSigsFlag checkSigs) override;
|
2016-05-04 11:36:54 +00:00
|
|
|
|
2020-08-15 16:41:28 +00:00
|
|
|
StorePath addToStoreFromDump(Source & dump, const string & name,
|
2021-10-23 18:30:51 +00:00
|
|
|
FileIngestionMethod method, HashType hashAlgo, RepairFlag repair, StorePathSet references ) override;
|
2020-08-15 16:41:28 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
StorePath addToStore(const string & name, const Path & srcPath,
|
2020-05-27 18:04:20 +00:00
|
|
|
FileIngestionMethod method, HashType hashAlgo,
|
2021-10-23 18:30:51 +00:00
|
|
|
PathFilter & filter, RepairFlag repair, StorePathSet references) override;
|
2016-02-24 13:48:16 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
StorePath addTextToStore(const string & name, const string & s,
|
|
|
|
const StorePathSet & references, RepairFlag repair) override;
|
2016-02-24 13:48:16 +00:00
|
|
|
|
2020-10-08 15:36:51 +00:00
|
|
|
void registerDrvOutput(const Realisation & info) override;
|
|
|
|
|
|
|
|
std::optional<const Realisation> queryRealisation(const DrvOutput &) override;
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
void narFromPath(const StorePath & path, Sink & sink) override;
|
2016-03-21 16:55:57 +00:00
|
|
|
|
2016-02-25 16:43:19 +00:00
|
|
|
ref<FSAccessor> getFSAccessor() override;
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
void addSignatures(const StorePath & storePath, const StringSet & sigs) override;
|
2016-04-05 13:30:22 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
std::shared_ptr<std::string> getBuildLog(const StorePath & path) override;
|
2017-03-13 13:07:58 +00:00
|
|
|
|
2016-02-24 13:48:16 +00:00
|
|
|
};
|
|
|
|
|
2018-03-27 21:12:31 +00:00
|
|
|
MakeError(NoSuchBinaryCacheFile, Error);
|
|
|
|
|
2016-02-24 13:48:16 +00:00
|
|
|
}
|