#pragma once #include "types.hh" namespace nix { /* Abstract destination of binary data. */ struct Sink { virtual ~Sink() { } virtual void operator () (const unsigned char * data, size_t len) = 0; }; /* A buffered abstract sink. */ struct BufferedSink : Sink { size_t bufSize, bufPos; unsigned char * buffer; BufferedSink(size_t bufSize = 32 * 1024) : bufSize(bufSize), bufPos(0), buffer(0) { } ~BufferedSink(); void operator () (const unsigned char * data, size_t len); void flush(); virtual void write(const unsigned char * data, size_t len) = 0; }; /* Abstract source of binary data. */ struct Source { virtual ~Source() { } /* Store exactly ‘len’ bytes in the buffer pointed to by ‘data’. It blocks until all the requested data is available, or throws an error if it is not going to be available. */ void operator () (unsigned char * data, size_t len); /* Store up to ‘len’ in the buffer pointed to by ‘dataâ€
aboutsummaryrefslogtreecommitdiff |