aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Buffer.cc
blob: 3dde1f9048849b5fe8e4bf0c1bb3244924eb2cc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79

#include <qpdf/Buffer.hh>

#include <string.h>

Buffer::Buffer()
{
    init(0);
}

Buffer::Buffer(unsigned long size)
{
    init(size);
}

Buffer::Buffer(Buffer const& rhs)
{
    init(0);
    copy(rhs);
}

Buffer&
Buffer::operator=(Buffer const& rhs)
{
    copy(rhs);
    return *this;
}

Buffer::~Buffer()
{
    destroy();
}

void
Buffer::init(unsigned long size)
{
    this->size = size;
    this->buf = (size ? new unsigned char[size] : 0);
}

void
Buffer::copy(Buffer const& rhs)
{
    if (this != &rhs)
    {
	this->destroy();
	this->init(rhs.size);
	if (this->size)
	{
	    memcpy(this->buf, rhs.buf, this->size);
	}
    }
}

void
Buffer::destroy()
{
    delete [] this->buf;
    this->size = 0;
    this->buf = 0;
}

unsigned long
Buffer::getSize() const
{
    return this->size;
}

unsigned char const*
Buffer::getBuffer() const
{
    return this->buf;
}

unsigned char*
Buffer::getBuffer()
{
    return this->buf;
}