mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
58 lines
1.1 KiB
C++
58 lines
1.1 KiB
C++
#include "source-accessor.hh"
|
|
#include "archive.hh"
|
|
|
|
namespace nix {
|
|
|
|
static std::atomic<size_t> nextNumber{0};
|
|
|
|
SourceAccessor::SourceAccessor()
|
|
: number(++nextNumber)
|
|
{
|
|
}
|
|
|
|
std::string SourceAccessor::readFile(const CanonPath & path)
|
|
{
|
|
StringSink sink;
|
|
std::optional<uint64_t> size;
|
|
readFile(path, sink, [&](uint64_t _size)
|
|
{
|
|
size = _size;
|
|
});
|
|
assert(size && *size == sink.s.size());
|
|
return std::move(sink.s);
|
|
}
|
|
|
|
void SourceAccessor::readFile(
|
|
const CanonPath & path,
|
|
Sink & sink,
|
|
std::function<void(uint64_t)> sizeCallback)
|
|
{
|
|
auto s = readFile(path);
|
|
sizeCallback(s.size());
|
|
sink(s);
|
|
}
|
|
|
|
Hash SourceAccessor::hashPath(
|
|
const CanonPath & path,
|
|
PathFilter & filter,
|
|
HashType ht)
|
|
{
|
|
HashSink sink(ht);
|
|
dumpPath(path, sink, filter);
|
|
return sink.finish().first;
|
|
}
|
|
|
|
std::optional<SourceAccessor::Stat> SourceAccessor::maybeLstat(const CanonPath & path)
|
|
{
|
|
// FIXME: merge these into one operation.
|
|
if (!pathExists(path))
|
|
return {};
|
|
return lstat(path);
|
|
}
|
|
|
|
std::string SourceAccessor::showPath(const CanonPath & path)
|
|
{
|
|
return path.abs();
|
|
}
|
|
|
|
}
|