2019-12-05 18:11:09 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-06-02 19:44:58 +00:00
|
|
|
#include "content-address.hh"
|
2020-06-16 12:16:39 +00:00
|
|
|
#include "types.hh"
|
2019-12-05 18:11:09 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2020-01-22 20:20:01 +00:00
|
|
|
class Store;
|
2020-06-16 12:16:39 +00:00
|
|
|
struct Hash;
|
2019-12-16 18:11:47 +00:00
|
|
|
|
2020-06-16 12:16:39 +00:00
|
|
|
class StorePath
|
2019-12-05 18:11:09 +00:00
|
|
|
{
|
2020-06-16 12:16:39 +00:00
|
|
|
std::string baseName;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/* Size of the hash part of store paths, in base-32 characters. */
|
|
|
|
constexpr static size_t HashLen = 32; // i.e. 160 bits
|
|
|
|
|
2020-02-13 15:12:16 +00:00
|
|
|
StorePath() = delete;
|
|
|
|
|
2020-06-16 12:16:39 +00:00
|
|
|
StorePath(std::string_view baseName);
|
2019-12-05 18:11:09 +00:00
|
|
|
|
2020-06-16 12:16:39 +00:00
|
|
|
StorePath(const Hash & hash, std::string_view name);
|
2019-12-05 18:11:09 +00:00
|
|
|
|
2020-06-16 12:16:39 +00:00
|
|
|
std::string_view to_string() const
|
|
|
|
{
|
|
|
|
return baseName;
|
|
|
|
}
|
2019-12-05 18:11:09 +00:00
|
|
|
|
|
|
|
bool operator < (const StorePath & other) const
|
|
|
|
{
|
2020-06-16 12:16:39 +00:00
|
|
|
return baseName < other.baseName;
|
2019-12-05 18:11:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator == (const StorePath & other) const
|
|
|
|
{
|
2020-06-16 12:16:39 +00:00
|
|
|
return baseName == other.baseName;
|
2019-12-05 18:11:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator != (const StorePath & other) const
|
|
|
|
{
|
2020-06-16 12:16:39 +00:00
|
|
|
return baseName != other.baseName;
|
2019-12-05 18:11:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check whether a file name ends with the extension for
|
|
|
|
derivations. */
|
|
|
|
bool isDerivation() const;
|
|
|
|
|
2020-06-16 12:16:39 +00:00
|
|
|
std::string_view name() const
|
|
|
|
{
|
|
|
|
return std::string_view(baseName).substr(HashLen + 1);
|
|
|
|
}
|
2019-12-05 18:11:09 +00:00
|
|
|
|
2020-06-16 12:16:39 +00:00
|
|
|
std::string_view hashPart() const
|
2019-12-05 18:11:09 +00:00
|
|
|
{
|
2020-06-16 12:16:39 +00:00
|
|
|
return std::string_view(baseName).substr(0, HashLen);
|
2019-12-05 18:11:09 +00:00
|
|
|
}
|
2020-01-21 20:14:13 +00:00
|
|
|
|
|
|
|
static StorePath dummy;
|
2019-12-05 18:11:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::set<StorePath> StorePathSet;
|
|
|
|
typedef std::vector<StorePath> StorePaths;
|
2020-06-10 09:20:52 +00:00
|
|
|
typedef std::map<string, StorePath> OutputPathMap;
|
2019-12-05 18:11:09 +00:00
|
|
|
|
2020-06-22 17:08:11 +00:00
|
|
|
typedef std::map<StorePath, std::optional<ContentAddress>> StorePathCAMap;
|
2020-06-17 19:03:05 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
/* Extension of derivations in the Nix store. */
|
|
|
|
const std::string drvExtension = ".drv";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
|
|
|
|
template<> struct hash<nix::StorePath> {
|
|
|
|
std::size_t operator()(const nix::StorePath & path) const noexcept
|
|
|
|
{
|
2020-06-16 12:16:39 +00:00
|
|
|
return * (std::size_t *) path.to_string().data();
|
2019-12-05 18:11:09 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|