1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libstore/content-address.hh

59 lines
1.7 KiB
C++
Raw Normal View History

2020-06-01 17:32:27 -04:00
#pragma once
2020-06-01 18:53:31 -04:00
#include <variant>
2020-06-01 17:32:27 -04:00
#include "hash.hh"
namespace nix {
enum struct FileIngestionMethod : uint8_t {
Flat = false,
Recursive = true
};
2020-06-01 19:26:40 -04:00
struct TextHash {
Hash hash;
};
2020-06-01 17:32:27 -04:00
/// Pair of a hash, and how the file system was ingested
struct FixedOutputHash {
2020-06-01 17:32:27 -04:00
FileIngestionMethod method;
Hash hash;
std::string printMethodAlgo() const;
};
2020-06-01 18:53:31 -04:00
/*
We've accumulated several types of content-addressed paths over the years;
fixed-output derivations support multiple hash algorithms and serialisation
methods (flat file vs NAR). Thus, ca has one of the following forms:
* text:sha256:<sha256 hash of file contents>: For paths
computed by makeTextPath() / addTextToStore().
* fixed:<r?>:<ht>:<h>: For paths computed by
makeFixedOutputPath() / addToStore().
*/
typedef std::variant<
2020-06-01 19:26:40 -04:00
TextHash, // for paths computed by makeTextPath() / addTextToStore
FixedOutputHash // for path computed by makeFixedOutputPath
2020-06-01 18:53:31 -04:00
> ContentAddress;
2020-06-01 17:32:27 -04:00
/* Compute the prefix to the hash algorithm which indicates how the files were
ingested. */
std::string makeFileIngestionPrefix(const FileIngestionMethod m);
/* Compute the content-addressability assertion (ValidPathInfo::ca)
for paths created by makeFixedOutputPath() / addToStore(). */
std::string makeFixedOutputCA(FileIngestionMethod method, const Hash & hash);
2020-06-01 19:26:40 -04:00
std::string renderContentAddress(ContentAddress ca);
std::string renderContentAddress(std::optional<ContentAddress> ca);
ContentAddress parseContentAddress(std::string_view rawCa);
2020-06-01 20:37:43 -04:00
std::optional<ContentAddress> parseContentAddressOpt(std::string_view rawCaOpt);
2020-06-01 20:37:43 -04:00
Hash getContentAddressHash(const ContentAddress & ca);
2020-06-01 17:32:27 -04:00
}