mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 19:49:43 +00:00
cb769c62e5
This comment expands all tabs using an 8-character tab-width. You should ignore this commit when using git blame or use git blame -w. In the early days, I used to use tabs where possible for indentation, since emacs did this automatically. In recent years, I have switched to only using spaces, which means qpdf source code has been a mixture of spaces and tabs. I have avoided cleaning this up because of not wanting gratuitous whitespaces change to cloud the output of git blame, but I changed my mind after discussing with users who view qpdf source code in editors/IDEs that have other tab widths by default and in light of the fact that I am planning to start applying automatic code formatting soon.
64 lines
1.2 KiB
C++
64 lines
1.2 KiB
C++
#include <qpdf/QPDFXRefEntry.hh>
|
|
|
|
#include <qpdf/QPDFExc.hh>
|
|
#include <qpdf/QUtil.hh>
|
|
#include <qpdf/QIntC.hh>
|
|
|
|
QPDFXRefEntry::QPDFXRefEntry() :
|
|
type(0),
|
|
field1(0),
|
|
field2(0)
|
|
{
|
|
}
|
|
|
|
QPDFXRefEntry::QPDFXRefEntry(int type, qpdf_offset_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;
|
|
}
|
|
|
|
qpdf_offset_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 QIntC::to_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;
|
|
}
|