mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 16:56:17 +02:00
26 lines
567 B
C++
26 lines
567 B
C++
|
#pragma once
|
||
|
|
||
|
#include "references.hh"
|
||
|
#include "path.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
std::pair<StorePathSet, HashResult> scanForReferences(const Path & path, const StorePathSet & refs);
|
||
|
|
||
|
StorePathSet scanForReferences(Sink & toTee, const Path & path, const StorePathSet & refs);
|
||
|
|
||
|
class PathRefScanSink : public RefScanSink
|
||
|
{
|
||
|
std::map<std::string, StorePath> backMap;
|
||
|
|
||
|
PathRefScanSink(StringSet && hashes, std::map<std::string, StorePath> && backMap);
|
||
|
|
||
|
public:
|
||
|
|
||
|
static PathRefScanSink fromPaths(const StorePathSet & refs);
|
||
|
|
||
|
StorePathSet getResultPaths();
|
||
|
};
|
||
|
|
||
|
}
|