forked from lix-project/lix
libutil: convert readFile to generator
Change-Id: I5f92b15fd367d46eb047d74ab6e317b4f51a46d3
This commit is contained in:
parent
98d9dcb221
commit
bb253a95cb
|
@ -416,7 +416,7 @@ StorePath BinaryCacheStore::addToStore(
|
|||
if (method == FileIngestionMethod::Recursive) {
|
||||
sink << dumpPath(srcPath, filter);
|
||||
} else {
|
||||
readFile(srcPath, sink);
|
||||
sink << readFileSource(srcPath);
|
||||
}
|
||||
auto h = sink.finish().first;
|
||||
|
||||
|
|
|
@ -2454,7 +2454,7 @@ SingleDrvOutputs LocalDerivationGoal::registerOutputs()
|
|||
HashModuloSink caSink { outputHash.hashType, oldHashPart };
|
||||
std::visit(overloaded {
|
||||
[&](const TextIngestionMethod &) {
|
||||
readFile(actualPath, caSink);
|
||||
caSink << readFileSource(actualPath);
|
||||
},
|
||||
[&](const FileIngestionMethod & m2) {
|
||||
switch (m2) {
|
||||
|
@ -2462,7 +2462,7 @@ SingleDrvOutputs LocalDerivationGoal::registerOutputs()
|
|||
caSink << dumpPath(actualPath);
|
||||
break;
|
||||
case FileIngestionMethod::Flat:
|
||||
readFile(actualPath, caSink);
|
||||
caSink << readFileSource(actualPath);
|
||||
break;
|
||||
}
|
||||
},
|
||||
|
|
|
@ -71,7 +71,7 @@ protected:
|
|||
void getFile(const std::string & path, Sink & sink) override
|
||||
{
|
||||
try {
|
||||
readFile(binaryCacheDir + "/" + path, sink);
|
||||
sink << readFileSource(binaryCacheDir + "/" + path);
|
||||
} catch (SysError & e) {
|
||||
if (e.errNo == ENOENT)
|
||||
throw NoSuchBinaryCacheFile("file '%s' does not exist in binary cache", path);
|
||||
|
|
|
@ -1886,7 +1886,7 @@ ContentAddress LocalStore::hashCAPath(
|
|||
HashModuloSink caSink ( hashType, std::string(pathHash) );
|
||||
std::visit(overloaded {
|
||||
[&](const TextIngestionMethod &) {
|
||||
readFile(path, caSink);
|
||||
caSink << readFileSource(path);
|
||||
},
|
||||
[&](const FileIngestionMethod & m2) {
|
||||
switch (m2) {
|
||||
|
@ -1894,7 +1894,7 @@ ContentAddress LocalStore::hashCAPath(
|
|||
caSink << dumpPath(path);
|
||||
break;
|
||||
case FileIngestionMethod::Flat:
|
||||
readFile(path, caSink);
|
||||
caSink << readFileSource(path);
|
||||
break;
|
||||
}
|
||||
},
|
||||
|
|
|
@ -271,13 +271,12 @@ StorePath Store::addToStore(
|
|||
const StorePathSet & references)
|
||||
{
|
||||
Path srcPath(absPath(_srcPath));
|
||||
auto source = sinkToSource([&](Sink & sink) {
|
||||
if (method == FileIngestionMethod::Recursive)
|
||||
sink << dumpPath(srcPath, filter);
|
||||
else
|
||||
readFile(srcPath, sink);
|
||||
});
|
||||
return addToStoreFromDump(*source, name, method, hashAlgo, repair, references);
|
||||
auto source = WireSource{
|
||||
method == FileIngestionMethod::Recursive
|
||||
? static_cast<Generator<std::span<const char>, void>>(dumpPath(srcPath, filter))
|
||||
: readFileSource(srcPath)
|
||||
};
|
||||
return addToStoreFromDump(source, name, method, hashAlgo, repair, references);
|
||||
}
|
||||
|
||||
void Store::addMultipleToStore(
|
||||
|
|
|
@ -10,29 +10,40 @@
|
|||
namespace nix {
|
||||
|
||||
template<typename T, typename Transform = std::identity>
|
||||
struct Generator : private Generator<T, void>
|
||||
struct Generator
|
||||
{
|
||||
struct promise_type;
|
||||
using handle_type = std::coroutine_handle<promise_type>;
|
||||
|
||||
explicit Generator(handle_type h) : Generator<T, void>{h, h.promise().state} {}
|
||||
explicit Generator(handle_type h) : impl{h, h.promise().state} {}
|
||||
|
||||
using Generator<T, void>::operator bool;
|
||||
using Generator<T, void>::operator();
|
||||
explicit operator bool()
|
||||
{
|
||||
return bool(impl);
|
||||
}
|
||||
T operator()()
|
||||
{
|
||||
return impl();
|
||||
}
|
||||
|
||||
operator Generator<T, void> &() &
|
||||
{
|
||||
return *this;
|
||||
return impl;
|
||||
}
|
||||
operator Generator<T, void>() &&
|
||||
{
|
||||
return std::move(*this);
|
||||
return std::move(impl);
|
||||
}
|
||||
|
||||
private:
|
||||
Generator<T, void> impl;
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
struct Generator<T, void>
|
||||
{
|
||||
template<typename, typename>
|
||||
friend struct Generator;
|
||||
template<typename T2, typename Transform>
|
||||
friend struct Generator<T2, Transform>::promise_type;
|
||||
|
||||
|
|
|
@ -325,7 +325,7 @@ Hash hashString(HashType ht, std::string_view s)
|
|||
Hash hashFile(HashType ht, const Path & path)
|
||||
{
|
||||
HashSink sink(ht);
|
||||
readFile(path, sink);
|
||||
sink << readFileSource(path);
|
||||
return sink.finish().first;
|
||||
}
|
||||
|
||||
|
|
|
@ -388,7 +388,8 @@ void drainGenerator(Generator<std::span<const char>, T> g, std::derived_from<Sin
|
|||
|
||||
struct WireSource : Source
|
||||
{
|
||||
WireSource(WireFormatGenerator && g) : g(std::move(g)) {}
|
||||
template<typename F>
|
||||
explicit WireSource(Generator<std::span<const char>, F> g) : g(std::move(g)) {}
|
||||
|
||||
virtual size_t read(char * data, size_t len)
|
||||
{
|
||||
|
@ -406,7 +407,7 @@ struct WireSource : Source
|
|||
}
|
||||
|
||||
private:
|
||||
WireFormatGenerator g;
|
||||
Generator<std::span<const char>, void> g;
|
||||
std::span<const char> buf{};
|
||||
};
|
||||
|
||||
|
|
|
@ -366,12 +366,12 @@ std::string readFile(const Path & path)
|
|||
}
|
||||
|
||||
|
||||
void readFile(const Path & path, Sink & sink)
|
||||
Generator<std::span<const char>> readFileSource(const Path & path)
|
||||
{
|
||||
AutoCloseFD fd{open(path.c_str(), O_RDONLY | O_CLOEXEC)};
|
||||
if (!fd)
|
||||
throw SysError("opening file '%s'", path);
|
||||
drainGenerator(drainFDSource(fd.get()), sink);
|
||||
co_yield drainFDSource(fd.get());
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -163,7 +163,7 @@ unsigned char getFileType(const Path & path);
|
|||
*/
|
||||
std::string readFile(int fd);
|
||||
std::string readFile(const Path & path);
|
||||
void readFile(const Path & path, Sink & sink);
|
||||
Generator<std::span<const char>> readFileSource(const Path & path);
|
||||
|
||||
/**
|
||||
* Write a string to a file.
|
||||
|
|
|
@ -37,7 +37,7 @@ struct CmdAddToStore : MixDryRun, StoreCommand
|
|||
Hash hash = narHash;
|
||||
if (ingestionMethod == FileIngestionMethod::Flat) {
|
||||
HashSink hsink(htSHA256);
|
||||
readFile(path, hsink);
|
||||
hsink << readFileSource(path);
|
||||
hash = hsink.finish().first;
|
||||
}
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ struct CmdHashBase : Command
|
|||
|
||||
switch (mode) {
|
||||
case FileIngestionMethod::Flat:
|
||||
readFile(path, *hashSink);
|
||||
*hashSink << readFileSource(path);
|
||||
break;
|
||||
case FileIngestionMethod::Recursive:
|
||||
*hashSink << dumpPath(path);
|
||||
|
|
Loading…
Reference in a new issue