Public Member Functions | |
ArchiveDecompressionSource (Source &src, std::optional< std::string > compressionMethod=std::nullopt) | |
size_t | read (char *data, size_t len) override |
![]() | |
void | operator() (char *data, size_t len) |
void | operator() (std::string_view data) |
virtual bool | good () |
void | drainInto (Sink &sink) |
std::string | drain () |
Public Attributes | |
std::unique_ptr< TarArchive > | archive = 0 |
Source & | src |
std::optional< std::string > | compressionMethod |
Store up to ‘len’ in the buffer pointed to by ‘data’, and return the number of bytes stored. It blocks until at least one byte is available.
Implements nix::Source.