mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-04 20:37:50 +00:00
67 lines
1.1 KiB
C++
67 lines
1.1 KiB
C++
#include <qpdf/Pl_Buffer.hh>
|
|
#include <stdexcept>
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
|
|
Pl_Buffer::Pl_Buffer(char const* identifier, Pipeline* next) :
|
|
Pipeline(identifier, next),
|
|
ready(true),
|
|
total_size(0)
|
|
{
|
|
}
|
|
|
|
Pl_Buffer::~Pl_Buffer()
|
|
{
|
|
}
|
|
|
|
void
|
|
Pl_Buffer::write(unsigned char* buf, size_t len)
|
|
{
|
|
Buffer* b = new Buffer(len);
|
|
memcpy(b->getBuffer(), buf, len);
|
|
this->data.push_back(b);
|
|
this->ready = false;
|
|
this->total_size += len;
|
|
|
|
if (getNext(true))
|
|
{
|
|
getNext()->write(buf, len);
|
|
}
|
|
}
|
|
|
|
void
|
|
Pl_Buffer::finish()
|
|
{
|
|
this->ready = true;
|
|
if (getNext(true))
|
|
{
|
|
getNext()->finish();
|
|
}
|
|
}
|
|
|
|
Buffer*
|
|
Pl_Buffer::getBuffer()
|
|
{
|
|
if (! this->ready)
|
|
{
|
|
throw std::logic_error("Pl_Buffer::getBuffer() called when not ready");
|
|
}
|
|
|
|
Buffer* b = new Buffer(this->total_size);
|
|
unsigned char* p = b->getBuffer();
|
|
while (! this->data.empty())
|
|
{
|
|
PointerHolder<Buffer> bp = this->data.front();
|
|
this->data.pop_front();
|
|
size_t bytes = bp->getSize();
|
|
memcpy(p, bp->getBuffer(), bytes);
|
|
p += bytes;
|
|
this->total_size -= bytes;
|
|
}
|
|
|
|
assert(this->total_size == 0);
|
|
this->ready = false;
|
|
|
|
return b;
|
|
}
|