2008-04-29 12:55:25 +00:00
|
|
|
#include <qpdf/QPDFXRefEntry.hh>
|
|
|
|
#include <qpdf/QPDFExc.hh>
|
|
|
|
#include <qpdf/QUtil.hh>
|
|
|
|
|
|
|
|
QPDFXRefEntry::QPDFXRefEntry() :
|
|
|
|
type(0),
|
|
|
|
field1(0),
|
|
|
|
field2(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-06-21 23:32:21 +00:00
|
|
|
QPDFXRefEntry::QPDFXRefEntry(int type, qpdf_offset_t field1, int field2) :
|
2008-04-29 12:55:25 +00:00
|
|
|
type(type),
|
|
|
|
field1(field1),
|
|
|
|
field2(field2)
|
|
|
|
{
|
|
|
|
if ((type < 1) || (type > 2))
|
|
|
|
{
|
2009-10-19 23:09:19 +00:00
|
|
|
throw std::logic_error(
|
|
|
|
"invalid xref type " + QUtil::int_to_string(type));
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
QPDFXRefEntry::getType() const
|
|
|
|
{
|
|
|
|
return this->type;
|
|
|
|
}
|
|
|
|
|
2012-06-21 23:32:21 +00:00
|
|
|
qpdf_offset_t
|
2008-04-29 12:55:25 +00:00
|
|
|
QPDFXRefEntry::getOffset() const
|
|
|
|
{
|
|
|
|
if (this->type != 1)
|
|
|
|
{
|
2009-10-19 23:09:19 +00:00
|
|
|
throw std::logic_error(
|
2008-04-29 12:55:25 +00:00
|
|
|
"getOffset called for xref entry of type != 1");
|
|
|
|
}
|
|
|
|
return this->field1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
QPDFXRefEntry::getObjStreamNumber() const
|
|
|
|
{
|
|
|
|
if (this->type != 2)
|
|
|
|
{
|
2009-10-19 23:09:19 +00:00
|
|
|
throw std::logic_error(
|
2008-04-29 12:55:25 +00:00
|
|
|
"getObjStreamNumber called for xref entry of type != 2");
|
|
|
|
}
|
2013-02-24 02:46:21 +00:00
|
|
|
return this->field1;
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
QPDFXRefEntry::getObjStreamIndex() const
|
|
|
|
{
|
|
|
|
if (this->type != 2)
|
|
|
|
{
|
2009-10-19 23:09:19 +00:00
|
|
|
throw std::logic_error(
|
2008-04-29 12:55:25 +00:00
|
|
|
"getObjStreamIndex called for xref entry of type != 2");
|
|
|
|
}
|
|
|
|
return this->field2;
|
|
|
|
}
|