2016-02-24 15:48:16 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "crypto.hh"
|
|
|
|
#include "store-api.hh"
|
2022-03-08 20:20:39 +02:00
|
|
|
#include "log-store.hh"
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
#include "pool.hh"
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct NarInfo;
|
|
|
|
|
2020-09-10 11:55:51 +03:00
|
|
|
struct BinaryCacheStoreConfig : virtual StoreConfig
|
2016-02-24 15:48:16 +02:00
|
|
|
{
|
2020-09-10 11:55:51 +03:00
|
|
|
using StoreConfig::StoreConfig;
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2023-03-22 15:23:36 +02:00
|
|
|
const Setting<std::string> compression{(StoreConfig*) this, "xz", "compression",
|
|
|
|
"NAR compression method (`xz`, `bzip2`, `gzip`, `zstd`, or `none`)."};
|
|
|
|
|
|
|
|
const Setting<bool> writeNARListing{(StoreConfig*) this, false, "write-nar-listing",
|
|
|
|
"Whether to write a JSON file that lists the files in each NAR."};
|
|
|
|
|
|
|
|
const Setting<bool> writeDebugInfo{(StoreConfig*) this, false, "index-debug-info",
|
|
|
|
R"(
|
|
|
|
Whether to index DWARF debug info files by build ID. This allows [`dwarffs`](https://github.com/edolstra/dwarffs) to
|
|
|
|
fetch debug info on demand
|
|
|
|
)"};
|
|
|
|
|
|
|
|
const Setting<Path> secretKeyFile{(StoreConfig*) this, "", "secret-key",
|
|
|
|
"Path to the secret key used to sign the binary cache."};
|
|
|
|
|
|
|
|
const Setting<Path> localNarCache{(StoreConfig*) this, "", "local-nar-cache",
|
|
|
|
"Path to a local cache of NARs fetched from this binary cache, used by commands such as `nix store cat`."};
|
|
|
|
|
2020-09-15 10:10:37 +03:00
|
|
|
const Setting<bool> parallelCompression{(StoreConfig*) this, false, "parallel-compression",
|
2023-03-22 15:23:36 +02:00
|
|
|
"Enable multi-threaded compression of NARs. This is currently only available for `xz` and `zstd`."};
|
|
|
|
|
2021-10-12 09:14:36 +03:00
|
|
|
const Setting<int> compressionLevel{(StoreConfig*) this, -1, "compression-level",
|
2023-03-22 15:23:36 +02:00
|
|
|
R"(
|
|
|
|
The *preset level* to be used when compressing NARs.
|
|
|
|
The meaning and accepted values depend on the compression method selected.
|
|
|
|
`-1` specifies that the default compression level should be used.
|
|
|
|
)"};
|
2020-09-10 11:55:51 +03:00
|
|
|
};
|
|
|
|
|
2022-03-08 20:20:39 +02:00
|
|
|
class BinaryCacheStore : public virtual BinaryCacheStoreConfig,
|
|
|
|
public virtual Store,
|
|
|
|
public virtual LogStore
|
2020-09-10 11:55:51 +03:00
|
|
|
{
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2017-04-13 16:55:38 +03:00
|
|
|
private:
|
2016-04-29 18:02:57 +03:00
|
|
|
|
2017-04-13 16:55:38 +03:00
|
|
|
std::unique_ptr<SecretKey> secretKey;
|
2016-10-21 17:50:28 +03:00
|
|
|
|
2016-02-24 15:48:16 +02:00
|
|
|
protected:
|
|
|
|
|
2020-10-08 18:36:51 +03:00
|
|
|
// The prefix under which realisation infos will be stored
|
2021-05-04 11:35:34 +03:00
|
|
|
const std::string realisationsPrefix = "realisations";
|
2020-10-08 18:36:51 +03:00
|
|
|
|
2016-06-01 15:49:12 +03:00
|
|
|
BinaryCacheStore(const Params & params);
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2016-10-21 17:50:28 +03:00
|
|
|
public:
|
|
|
|
|
2016-02-24 15:48:16 +02:00
|
|
|
virtual bool fileExists(const std::string & path) = 0;
|
|
|
|
|
2017-03-14 16:26:01 +02:00
|
|
|
virtual void upsertFile(const std::string & path,
|
2020-07-13 21:07:19 +03:00
|
|
|
std::shared_ptr<std::basic_iostream<char>> istream,
|
2017-03-14 16:26:01 +02:00
|
|
|
const std::string & mimeType) = 0;
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2020-07-10 21:58:02 +03:00
|
|
|
void upsertFile(const std::string & path,
|
2022-01-18 17:14:01 +02:00
|
|
|
// FIXME: use std::string_view
|
2020-07-13 21:07:19 +03:00
|
|
|
std::string && data,
|
2020-07-10 21:58:02 +03:00
|
|
|
const std::string & mimeType);
|
|
|
|
|
2018-03-28 00:12:31 +03: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. */
|
2022-01-17 23:20:05 +02:00
|
|
|
virtual void getFile(
|
|
|
|
const std::string & path,
|
|
|
|
Callback<std::optional<std::string>> callback) noexcept;
|
2016-09-16 19:54:14 +03:00
|
|
|
|
2022-01-17 23:20:05 +02:00
|
|
|
std::optional<std::string> getFile(const std::string & path);
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2020-09-09 12:29:17 +03:00
|
|
|
virtual void init() override;
|
2016-02-24 15:48:16 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-02-24 17:52:28 +02:00
|
|
|
std::string narMagic;
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
std::string narInfoFileFor(const StorePath & storePath);
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2017-11-14 19:44:05 +02:00
|
|
|
void writeNarInfo(ref<NarInfo> narInfo);
|
|
|
|
|
2020-09-23 17:40:41 +03:00
|
|
|
ref<const ValidPathInfo> addToStoreCommon(
|
2020-08-15 19:41:28 +03:00
|
|
|
Source & narSource, RepairFlag repair, CheckSigsFlag checkSigs,
|
|
|
|
std::function<ValidPathInfo(HashResult)> mkInfo);
|
|
|
|
|
2016-02-24 15:48:16 +02:00
|
|
|
public:
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
bool isValidPathUncached(const StorePath & path) override;
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
void queryPathInfoUncached(const StorePath & path,
|
2018-09-25 19:54:16 +03:00
|
|
|
Callback<std::shared_ptr<const ValidPathInfo>> callback) noexcept override;
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2022-10-18 18:48:09 +03:00
|
|
|
std::optional<StorePath> queryPathFromHashPart(const std::string & hashPart) override;
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2020-05-29 23:19:48 +03:00
|
|
|
void addToStore(const ValidPathInfo & info, Source & narSource,
|
2020-07-13 18:37:44 +03:00
|
|
|
RepairFlag repair, CheckSigsFlag checkSigs) override;
|
2016-05-04 14:36:54 +03:00
|
|
|
|
2022-02-15 16:08:06 +02:00
|
|
|
StorePath addToStoreFromDump(Source & dump, std::string_view name,
|
|
|
|
FileIngestionMethod method, HashType hashAlgo, RepairFlag repair, const StorePathSet & references) override;
|
2020-08-15 19:41:28 +03:00
|
|
|
|
2022-02-25 17:00:00 +02:00
|
|
|
StorePath addToStore(
|
|
|
|
std::string_view name,
|
|
|
|
const Path & srcPath,
|
|
|
|
FileIngestionMethod method,
|
|
|
|
HashType hashAlgo,
|
|
|
|
PathFilter & filter,
|
|
|
|
RepairFlag repair,
|
|
|
|
const StorePathSet & references) override;
|
|
|
|
|
|
|
|
StorePath addTextToStore(
|
|
|
|
std::string_view name,
|
|
|
|
std::string_view s,
|
|
|
|
const StorePathSet & references,
|
|
|
|
RepairFlag repair) override;
|
2016-02-24 15:48:16 +02:00
|
|
|
|
2020-10-08 18:36:51 +03:00
|
|
|
void registerDrvOutput(const Realisation & info) override;
|
|
|
|
|
2021-10-27 12:36:51 +03:00
|
|
|
void queryRealisationUncached(const DrvOutput &,
|
|
|
|
Callback<std::shared_ptr<const Realisation>> callback) noexcept override;
|
2020-10-08 18:36:51 +03:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
void narFromPath(const StorePath & path, Sink & sink) override;
|
2016-03-21 18:55:57 +02:00
|
|
|
|
2016-02-25 18:43:19 +02:00
|
|
|
ref<FSAccessor> getFSAccessor() override;
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
void addSignatures(const StorePath & storePath, const StringSet & sigs) override;
|
2016-04-05 16:30:22 +03:00
|
|
|
|
2022-12-15 22:58:54 +02:00
|
|
|
std::optional<std::string> getBuildLogExact(const StorePath & path) override;
|
2017-03-13 15:07:58 +02:00
|
|
|
|
2022-01-18 17:14:01 +02:00
|
|
|
void addBuildLog(const StorePath & drvPath, std::string_view log) override;
|
|
|
|
|
2016-02-24 15:48:16 +02:00
|
|
|
};
|
|
|
|
|
2018-03-28 00:12:31 +03:00
|
|
|
MakeError(NoSuchBinaryCacheFile, Error);
|
|
|
|
|
2016-02-24 15:48:16 +02:00
|
|
|
}
|