24 lines
579 B
C++
24 lines
579 B
C++
#pragma once
|
|
|
|
#include <nix/util/source-accessor.hh>
|
|
#include <nix/util/types.hh>
|
|
#include <nix/util/serialise.hh>
|
|
#include <nix/util/hash.hh>
|
|
|
|
struct NarMemberData
|
|
{
|
|
nix::SourceAccessor::Type type;
|
|
std::optional<uint64_t> fileSize;
|
|
std::optional<std::string> contents;
|
|
std::optional<nix::Hash> sha256;
|
|
};
|
|
|
|
typedef std::map<nix::Path, NarMemberData> NarMemberDatas;
|
|
|
|
/* Read a NAR from a source and get to some info about every file
|
|
inside the NAR. */
|
|
void extractNarData(
|
|
nix::Source & source,
|
|
const nix::Path & prefix,
|
|
NarMemberDatas & members);
|