2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-07-01 01:23:34 +00:00
qpdf/libqpdf/QPDFXRefEntry.cc
Jay Berkenbilt 5d4cad9c02 ABI change: fix use of off_t, size_t, and integer types
Significantly improve the code's use of off_t for file offsets, size_t
for memory sizes, and integer types in cases where there has to be
compatibility with external interfaces.  Rework sections of the code
that would have prevented qpdf from working on files larger than 2 (or
maybe 4) GB in size.
2012-06-20 15:20:26 -04:00

62 lines
1.0 KiB
C++

#include <qpdf/QPDFXRefEntry.hh>
#include <qpdf/QPDFExc.hh>
#include <qpdf/QUtil.hh>
QPDFXRefEntry::QPDFXRefEntry() :
type(0),
field1(0),
field2(0)
{
}
QPDFXRefEntry::QPDFXRefEntry(int type, off_t field1, int field2) :
type(type),
field1(field1),
field2(field2)
{
if ((type < 1) || (type > 2))
{
throw std::logic_error(
"invalid xref type " + QUtil::int_to_string(type));
}
}
int
QPDFXRefEntry::getType() const
{
return this->type;
}
off_t
QPDFXRefEntry::getOffset() const
{
if (this->type != 1)
{
throw std::logic_error(
"getOffset called for xref entry of type != 1");
}
return this->field1;
}
int
QPDFXRefEntry::getObjStreamNumber() const
{
if (this->type != 2)
{
throw std::logic_error(
"getObjStreamNumber called for xref entry of type != 2");
}
return (int) this->field1;
}
int
QPDFXRefEntry::getObjStreamIndex() const
{
if (this->type != 2)
{
throw std::logic_error(
"getObjStreamIndex called for xref entry of type != 2");
}
return this->field2;
}