Skip to content

Commit

Permalink
Make Buffered{Source,Sink} move-safe
Browse files Browse the repository at this point in the history
  • Loading branch information
shlevy committed Jul 13, 2016
1 parent cb5e725 commit b33e852
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 27 deletions.
27 changes: 6 additions & 21 deletions src/libutil/serialise.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,9 @@
namespace nix {


BufferedSink::~BufferedSink()
{
/* We can't call flush() here, because C++ for some insane reason
doesn't allow you to call virtual methods from a destructor. */
assert(!bufPos);
delete[] buffer;
}


void BufferedSink::operator () (const unsigned char * data, size_t len)
{
if (!buffer) buffer = new unsigned char[bufSize];
if (!buffer) buffer = decltype(buffer)(new unsigned char[bufSize]);

while (len) {
/* Optimisation: bypass the buffer if the data exceeds the
Expand All @@ -32,7 +23,7 @@ void BufferedSink::operator () (const unsigned char * data, size_t len)
/* Otherwise, copy the bytes to the buffer. Flush the buffer
when it's full. */
size_t n = bufPos + len > bufSize ? bufSize - bufPos : len;
memcpy(buffer + bufPos, data, n);
memcpy(buffer.get() + bufPos, data, n);
data += n; bufPos += n; len -= n;
if (bufPos == bufSize) flush();
}
Expand All @@ -44,7 +35,7 @@ void BufferedSink::flush()
if (bufPos == 0) return;
size_t n = bufPos;
bufPos = 0; // don't trigger the assert() in ~BufferedSink()
write(buffer, n);
write(buffer.get(), n);
}


Expand Down Expand Up @@ -95,21 +86,15 @@ void Source::operator () (unsigned char * data, size_t len)
}


BufferedSource::~BufferedSource()
{
delete[] buffer;
}


size_t BufferedSource::read(unsigned char * data, size_t len)
{
if (!buffer) buffer = new unsigned char[bufSize];
if (!buffer) buffer = decltype(buffer)(new unsigned char[bufSize]);

if (!bufPosIn) bufPosIn = readUnbuffered(buffer, bufSize);
if (!bufPosIn) bufPosIn = readUnbuffered(buffer.get(), bufSize);

/* Copy out the data in the buffer. */
size_t n = len > bufPosIn - bufPosOut ? bufPosIn - bufPosOut : len;
memcpy(data, buffer + bufPosOut, n);
memcpy(data, buffer.get() + bufPosOut, n);
bufPosOut += n;
if (bufPosIn == bufPosOut) bufPosIn = bufPosOut = 0;
return n;
Expand Down
12 changes: 6 additions & 6 deletions src/libutil/serialise.hh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#pragma once

#include <memory>

#include "types.hh"
#include "util.hh"

Expand All @@ -25,11 +27,10 @@ struct Sink
struct BufferedSink : Sink
{
size_t bufSize, bufPos;
unsigned char * buffer;
std::unique_ptr<unsigned char[]> buffer;

BufferedSink(size_t bufSize = 32 * 1024)
: bufSize(bufSize), bufPos(0), buffer(0) { }
~BufferedSink();
: bufSize(bufSize), bufPos(0), buffer(nullptr) { }

void operator () (const unsigned char * data, size_t len) override;

Expand Down Expand Up @@ -67,11 +68,10 @@ struct Source
struct BufferedSource : Source
{
size_t bufSize, bufPosIn, bufPosOut;
unsigned char * buffer;
std::unique_ptr<unsigned char[]> buffer;

BufferedSource(size_t bufSize = 32 * 1024)
: bufSize(bufSize), bufPosIn(0), bufPosOut(0), buffer(0) { }
~BufferedSource();
: bufSize(bufSize), bufPosIn(0), bufPosOut(0), buffer(nullptr) { }

size_t read(unsigned char * data, size_t len) override;

Expand Down

0 comments on commit b33e852

Please sign in to comment.