nix-super/src/libstore/nar-info.hh

28 lines
605 B
C++
Raw Normal View History

#pragma once
#include "types.hh"
#include "hash.hh"
2020-08-06 21:31:48 +03:00
#include "path-info.hh"
namespace nix {
2020-08-06 21:31:48 +03:00
class Store;
struct NarInfo : ValidPathInfo
{
std::string url;
std::string compression;
2020-06-19 23:50:28 +03:00
std::optional<Hash> fileHash;
uint64_t fileSize = 0;
std::string system;
NarInfo() = delete;
2020-08-06 21:31:48 +03:00
NarInfo(StorePath && path, Hash narHash) : ValidPathInfo(std::move(path), narHash) { }
NarInfo(const ValidPathInfo & info) : ValidPathInfo(info) { }
NarInfo(const Store & store, const std::string & s, const std::string & whence);
std::string to_string(const Store & store) const;
};
}