aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFXRefEntry.cc
blob: 70c0257946d8a2ae4b67d7ceed2066611f0e25d5 (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
#include <qpdf/QPDFXRefEntry.hh>
#include <qpdf/QPDFExc.hh>
#include <qpdf/QUtil.hh>

DLL_EXPORT
QPDFXRefEntry::QPDFXRefEntry() :
    type(0),
    field1(0),
    field2(0)
{
}

DLL_EXPORT
QPDFXRefEntry::QPDFXRefEntry(int type, int field1, int field2) :
    type(type),
    field1(field1),
    field2(field2)
{
    if ((type < 1) || (type > 2))
    {
	throw QPDFExc("invalid xref type " + QUtil::int_to_string(type));
    }
}

DLL_EXPORT
int
QPDFXRefEntry::getType() const
{
    return this->type;
}

DLL_EXPORT
int
QPDFXRefEntry::getOffset() const
{
    if (this->type != 1)
    {
	throw QPDFExc(
	    "getOffset called for xref entry of type != 1");
    }
    return this->field1;
}

DLL_EXPORT
int
QPDFXRefEntry::getObjStreamNumber() const
{
    if (this->type != 2)
    {
	throw QPDFExc(
	    "getObjStreamNumber called for xref entry of type != 2");
    }
    return this->field1;
}

DLL_EXPORT
int
QPDFXRefEntry::getObjStreamIndex() const
{
    if (this->type != 2)
    {
	throw QPDFExc(
	    "getObjStreamIndex called for xref entry of type != 2");
    }
    return this->field2;
}