-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPl_Count.cc
48 lines (40 loc) · 789 Bytes
/
Pl_Count.cc
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
#include <qpdf/Pl_Count.hh>
#include <qpdf/QIntC.hh>
Pl_Count::Members::Members() :
count(0),
last_char('\0')
{
}
Pl_Count::Pl_Count(char const* identifier, Pipeline* next) :
Pipeline(identifier, next),
m(new Members())
{
}
Pl_Count::~Pl_Count() // NOLINT (modernize-use-equals-default)
{
// Must be explicit and not inline -- see QPDF_DLL_CLASS in README-maintainer
}
void
Pl_Count::write(unsigned char const* buf, size_t len)
{
if (len) {
m->count += QIntC::to_offset(len);
m->last_char = buf[len - 1];
getNext()->write(buf, len);
}
}
void
Pl_Count::finish()
{
getNext()->finish();
}
qpdf_offset_t
Pl_Count::getCount() const
{
return m->count;
}
unsigned char
Pl_Count::getLastChar() const
{
return m->last_char;
}