mirror of
https://github.com/qpdf/qpdf.git
synced 2024-10-31 19:02:30 +00:00
a68703b07e
(patrepl and cleanpatch are my own utilities) patrepl s/PointerHolder/std::shared_ptr/g {include,libqpdf}/qpdf/*.hh patrepl s/PointerHolder/std::shared_ptr/g libqpdf/*.cc patrepl s/make_pointer_holder/std::make_shared/g libqpdf/*.cc patrepl s/make_array_pointer_holder/QUtil::make_shared_array/g libqpdf/*.cc patrepl s,qpdf/std::shared_ptr,qpdf/PointerHolder, **/*.cc **/*.hh git restore include/qpdf/PointerHolder.hh cleanpatch ./format-code
79 lines
1.2 KiB
C++
79 lines
1.2 KiB
C++
#include <qpdf/Buffer.hh>
|
|
|
|
#include <cstring>
|
|
|
|
Buffer::Members::Members(size_t size, unsigned char* buf, bool own_memory) :
|
|
own_memory(own_memory),
|
|
size(size),
|
|
buf(0)
|
|
{
|
|
if (own_memory) {
|
|
this->buf = (size ? new unsigned char[size] : 0);
|
|
} else {
|
|
this->buf = buf;
|
|
}
|
|
}
|
|
|
|
Buffer::Members::~Members()
|
|
{
|
|
if (this->own_memory) {
|
|
delete[] this->buf;
|
|
}
|
|
}
|
|
|
|
Buffer::Buffer() :
|
|
m(new Members(0, 0, true))
|
|
{
|
|
}
|
|
|
|
Buffer::Buffer(size_t size) :
|
|
m(new Members(size, 0, true))
|
|
{
|
|
}
|
|
|
|
Buffer::Buffer(unsigned char* buf, size_t size) :
|
|
m(new Members(size, buf, false))
|
|
{
|
|
}
|
|
|
|
Buffer::Buffer(Buffer const& rhs)
|
|
{
|
|
copy(rhs);
|
|
}
|
|
|
|
Buffer&
|
|
Buffer::operator=(Buffer const& rhs)
|
|
{
|
|
copy(rhs);
|
|
return *this;
|
|
}
|
|
|
|
void
|
|
Buffer::copy(Buffer const& rhs)
|
|
{
|
|
if (this != &rhs) {
|
|
this->m = std::shared_ptr<Members>(new Members(rhs.m->size, 0, true));
|
|
if (this->m->size) {
|
|
memcpy(this->m->buf, rhs.m->buf, this->m->size);
|
|
}
|
|
}
|
|
}
|
|
|
|
size_t
|
|
Buffer::getSize() const
|
|
{
|
|
return this->m->size;
|
|
}
|
|
|
|
unsigned char const*
|
|
Buffer::getBuffer() const
|
|
{
|
|
return this->m->buf;
|
|
}
|
|
|
|
unsigned char*
|
|
Buffer::getBuffer()
|
|
{
|
|
return this->m->buf;
|
|
}
|