From b51ea465de48e4c5516ba0182cc642b4e644be10 Mon Sep 17 00:00:00 2001 From: eldritch horrors Date: Thu, 27 Jun 2024 21:23:50 +0200 Subject: libutil: allow construction of sources from generators Change-Id: I78ff8d0720f06bce731e26d5e1c53b1382bbd589 --- src/libutil/serialise.hh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'src/libutil/serialise.hh') diff --git a/src/libutil/serialise.hh b/src/libutil/serialise.hh index 2651ec979..874c67b75 100644 --- a/src/libutil/serialise.hh +++ b/src/libutil/serialise.hh @@ -334,6 +334,34 @@ struct ChainSource : Source size_t read(char * data, size_t len) override; }; +struct GeneratorSource : Source +{ + GeneratorSource(Generator && g) : g(std::move(g)) {} + + virtual size_t read(char * data, size_t len) + { + // we explicitly do not poll the generator multiple times to fill the + // buffer, only to produce some output at all. this is allowed by the + // semantics of read(), only operator() must fill the buffer entirely + while (!buf.size()) { + if (auto next = g.next()) { + buf = *next; + } else { + throw EndOfFile("coroutine has finished"); + } + } + + len = std::min(len, buf.size()); + memcpy(data, buf.data(), len); + buf = buf.subspan(len); + return len; + } + +private: + Generator g; + Bytes buf{}; +}; + std::unique_ptr sourceToSink(std::function fun); /** -- cgit v1.2.3