2008-04-29 12:55:25 +00:00
|
|
|
#include <qpdf/QPDFObjectHandle.hh>
|
|
|
|
|
2012-07-21 13:00:06 +00:00
|
|
|
#include <qpdf/BufferInputSource.hh>
|
2017-07-29 14:40:31 +00:00
|
|
|
#include <qpdf/Pl_Buffer.hh>
|
2018-02-11 20:41:02 +00:00
|
|
|
#include <qpdf/Pl_QPDFTokenizer.hh>
|
2024-02-09 13:09:08 +00:00
|
|
|
#include <qpdf/JSON_writer.hh>
|
2008-04-29 12:55:25 +00:00
|
|
|
#include <qpdf/QPDF.hh>
|
2012-07-21 13:00:06 +00:00
|
|
|
#include <qpdf/QPDFExc.hh>
|
2022-06-18 14:33:27 +00:00
|
|
|
#include <qpdf/QPDFLogger.hh>
|
2021-02-21 10:11:31 +00:00
|
|
|
#include <qpdf/QPDFMatrix.hh>
|
2022-09-08 15:12:10 +00:00
|
|
|
#include <qpdf/QPDFObject_private.hh>
|
2019-01-25 11:55:31 +00:00
|
|
|
#include <qpdf/QPDFPageObjectHelper.hh>
|
2022-08-16 12:59:32 +00:00
|
|
|
#include <qpdf/QPDFParser.hh>
|
2008-04-29 12:55:25 +00:00
|
|
|
#include <qpdf/QPDF_Array.hh>
|
|
|
|
#include <qpdf/QPDF_Bool.hh>
|
|
|
|
#include <qpdf/QPDF_Dictionary.hh>
|
2013-01-20 19:55:01 +00:00
|
|
|
#include <qpdf/QPDF_InlineImage.hh>
|
2008-04-29 12:55:25 +00:00
|
|
|
#include <qpdf/QPDF_Integer.hh>
|
|
|
|
#include <qpdf/QPDF_Name.hh>
|
|
|
|
#include <qpdf/QPDF_Null.hh>
|
2013-01-23 14:38:05 +00:00
|
|
|
#include <qpdf/QPDF_Operator.hh>
|
2008-04-29 12:55:25 +00:00
|
|
|
#include <qpdf/QPDF_Real.hh>
|
2012-07-08 18:19:19 +00:00
|
|
|
#include <qpdf/QPDF_Reserved.hh>
|
2018-02-11 20:41:02 +00:00
|
|
|
#include <qpdf/QPDF_Stream.hh>
|
2012-07-21 13:00:06 +00:00
|
|
|
#include <qpdf/QPDF_String.hh>
|
2022-08-02 15:20:24 +00:00
|
|
|
#include <qpdf/QPDF_Unresolved.hh>
|
2008-04-29 12:55:25 +00:00
|
|
|
|
2019-06-21 03:35:23 +00:00
|
|
|
#include <qpdf/QIntC.hh>
|
2008-04-29 12:55:25 +00:00
|
|
|
#include <qpdf/QTC.hh>
|
|
|
|
#include <qpdf/QUtil.hh>
|
|
|
|
|
2009-09-26 18:36:04 +00:00
|
|
|
#include <algorithm>
|
2023-05-20 11:22:32 +00:00
|
|
|
#include <cctype>
|
|
|
|
#include <climits>
|
|
|
|
#include <cstdlib>
|
2008-05-04 16:02:53 +00:00
|
|
|
#include <cstring>
|
2019-06-22 01:49:12 +00:00
|
|
|
#include <stdexcept>
|
2008-05-04 16:02:53 +00:00
|
|
|
|
2023-02-17 13:58:21 +00:00
|
|
|
using namespace std::literals;
|
|
|
|
|
2022-04-16 17:21:57 +00:00
|
|
|
namespace
|
2013-03-03 20:48:31 +00:00
|
|
|
{
|
2022-04-16 17:21:57 +00:00
|
|
|
class TerminateParsing
|
|
|
|
{
|
|
|
|
};
|
|
|
|
} // namespace
|
2013-03-03 20:48:31 +00:00
|
|
|
|
2020-04-05 03:35:35 +00:00
|
|
|
QPDFObjectHandle::StreamDataProvider::StreamDataProvider(bool supports_retry) :
|
|
|
|
supports_retry(supports_retry)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-06-01 13:47:36 +00:00
|
|
|
QPDFObjectHandle::StreamDataProvider::~StreamDataProvider() // NOLINT (modernize-use-equals-default)
|
2022-04-15 23:44:07 +00:00
|
|
|
{
|
|
|
|
// Must be explicit and not inline -- see QPDF_DLL_CLASS in README-maintainer
|
|
|
|
}
|
|
|
|
|
2022-07-24 13:16:37 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::StreamDataProvider::provideStreamData(QPDFObjGen const& og, Pipeline* pipeline)
|
|
|
|
{
|
|
|
|
return provideStreamData(og.getObj(), og.getGen(), pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::StreamDataProvider::provideStreamData(
|
|
|
|
QPDFObjGen const& og, Pipeline* pipeline, bool suppress_warnings, bool will_retry)
|
|
|
|
{
|
|
|
|
return provideStreamData(og.getObj(), og.getGen(), pipeline, suppress_warnings, will_retry);
|
|
|
|
}
|
|
|
|
|
2020-04-05 03:35:35 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::StreamDataProvider::provideStreamData(
|
|
|
|
int objid, int generation, Pipeline* pipeline)
|
|
|
|
{
|
|
|
|
throw std::logic_error("you must override provideStreamData -- see QPDFObjectHandle.hh");
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::StreamDataProvider::provideStreamData(
|
|
|
|
int objid, int generation, Pipeline* pipeline, bool suppress_warnings, bool will_retry)
|
|
|
|
{
|
|
|
|
throw std::logic_error("you must override provideStreamData -- see QPDFObjectHandle.hh");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::StreamDataProvider::supportsRetry()
|
|
|
|
{
|
|
|
|
return this->supports_retry;
|
|
|
|
}
|
|
|
|
|
2022-04-16 17:21:57 +00:00
|
|
|
namespace
|
2018-01-31 14:47:58 +00:00
|
|
|
{
|
2022-04-16 17:21:57 +00:00
|
|
|
class CoalesceProvider: public QPDFObjectHandle::StreamDataProvider
|
2018-01-31 14:47:58 +00:00
|
|
|
{
|
2022-04-16 17:21:57 +00:00
|
|
|
public:
|
|
|
|
CoalesceProvider(QPDFObjectHandle containing_page, QPDFObjectHandle old_contents) :
|
|
|
|
containing_page(containing_page),
|
|
|
|
old_contents(old_contents)
|
|
|
|
{
|
|
|
|
}
|
2023-05-20 13:25:46 +00:00
|
|
|
~CoalesceProvider() override = default;
|
|
|
|
void provideStreamData(QPDFObjGen const&, Pipeline* pipeline) override;
|
2018-01-31 14:47:58 +00:00
|
|
|
|
2022-04-16 17:21:57 +00:00
|
|
|
private:
|
|
|
|
QPDFObjectHandle containing_page;
|
|
|
|
QPDFObjectHandle old_contents;
|
|
|
|
};
|
|
|
|
} // namespace
|
2018-01-31 14:47:58 +00:00
|
|
|
|
|
|
|
void
|
2022-07-24 13:16:37 +00:00
|
|
|
CoalesceProvider::provideStreamData(QPDFObjGen const&, Pipeline* p)
|
2018-01-31 14:47:58 +00:00
|
|
|
{
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle coalesce provide stream data");
|
2022-07-16 10:21:11 +00:00
|
|
|
std::string description = "page object " + containing_page.getObjGen().unparse(' ');
|
2018-01-31 14:47:58 +00:00
|
|
|
std::string all_description;
|
2021-01-02 17:05:09 +00:00
|
|
|
old_contents.pipeContentStreams(p, description, all_description);
|
2018-01-31 14:47:58 +00:00
|
|
|
}
|
|
|
|
|
2018-02-16 01:45:19 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::TokenFilter::handleEOF()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-02-02 23:21:34 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::TokenFilter::setPipeline(Pipeline* p)
|
|
|
|
{
|
|
|
|
this->pipeline = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::TokenFilter::write(char const* data, size_t len)
|
|
|
|
{
|
|
|
|
if (!this->pipeline) {
|
2018-02-16 01:45:19 +00:00
|
|
|
return;
|
2018-02-02 23:21:34 +00:00
|
|
|
}
|
|
|
|
if (len) {
|
2022-05-03 22:09:49 +00:00
|
|
|
this->pipeline->write(data, len);
|
2018-02-02 23:21:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::TokenFilter::write(std::string const& str)
|
|
|
|
{
|
|
|
|
write(str.c_str(), str.length());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::TokenFilter::writeToken(QPDFTokenizer::Token const& token)
|
|
|
|
{
|
|
|
|
std::string value = token.getRawValue();
|
|
|
|
write(value.c_str(), value.length());
|
|
|
|
}
|
|
|
|
|
2019-08-22 23:16:25 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::ParserCallbacks::handleObject(QPDFObjectHandle)
|
|
|
|
{
|
|
|
|
throw std::logic_error("You must override one of the handleObject methods in ParserCallbacks");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::ParserCallbacks::handleObject(QPDFObjectHandle oh, size_t, size_t)
|
|
|
|
{
|
|
|
|
// This version of handleObject was added in qpdf 9. If the developer did not override it, fall
|
|
|
|
// back to the older interface.
|
|
|
|
handleObject(oh);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::ParserCallbacks::contentSize(size_t)
|
|
|
|
{
|
|
|
|
// Ignore by default; overriding this is optional.
|
|
|
|
}
|
|
|
|
|
2013-03-03 20:48:31 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::ParserCallbacks::terminateParsing()
|
|
|
|
{
|
|
|
|
throw TerminateParsing();
|
|
|
|
}
|
|
|
|
|
2022-04-16 17:21:57 +00:00
|
|
|
namespace
|
2020-10-23 10:40:27 +00:00
|
|
|
{
|
2022-04-16 17:21:57 +00:00
|
|
|
class LastChar: public Pipeline
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LastChar(Pipeline* next);
|
2023-05-20 13:25:46 +00:00
|
|
|
~LastChar() override = default;
|
|
|
|
void write(unsigned char const* data, size_t len) override;
|
|
|
|
void finish() override;
|
2022-04-16 17:21:57 +00:00
|
|
|
unsigned char getLastChar();
|
|
|
|
|
|
|
|
private:
|
2023-06-01 13:12:39 +00:00
|
|
|
unsigned char last_char{0};
|
2022-04-16 17:21:57 +00:00
|
|
|
};
|
|
|
|
} // namespace
|
2020-10-23 10:40:27 +00:00
|
|
|
|
|
|
|
LastChar::LastChar(Pipeline* next) :
|
2023-06-01 13:12:39 +00:00
|
|
|
Pipeline("lastchar", next)
|
2020-10-23 10:40:27 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-05-03 21:43:07 +00:00
|
|
|
LastChar::write(unsigned char const* data, size_t len)
|
2020-10-23 10:40:27 +00:00
|
|
|
{
|
|
|
|
if (len > 0) {
|
|
|
|
this->last_char = data[len - 1];
|
|
|
|
}
|
|
|
|
getNext()->write(data, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LastChar::finish()
|
|
|
|
{
|
|
|
|
getNext()->finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char
|
|
|
|
LastChar::getLastChar()
|
|
|
|
{
|
|
|
|
return this->last_char;
|
|
|
|
}
|
|
|
|
|
2022-09-06 22:30:31 +00:00
|
|
|
bool
|
2022-09-09 19:40:02 +00:00
|
|
|
QPDFObjectHandle::isSameObjectAs(QPDFObjectHandle const& rhs) const
|
2022-09-06 22:30:31 +00:00
|
|
|
{
|
|
|
|
return this->obj == rhs.obj;
|
|
|
|
}
|
|
|
|
|
2022-09-07 20:49:31 +00:00
|
|
|
void
|
2022-09-08 15:06:15 +00:00
|
|
|
QPDFObjectHandle::disconnect()
|
2022-09-07 20:49:31 +00:00
|
|
|
{
|
|
|
|
// Recursively remove association with any QPDF object. This method may only be called during
|
2022-09-08 12:03:57 +00:00
|
|
|
// final destruction. QPDF::~QPDF() calls it for indirect objects using the object pointer
|
|
|
|
// itself, so we don't do that here. Other objects call it through this method.
|
2023-07-24 17:51:30 +00:00
|
|
|
if (obj && !isIndirect()) {
|
2022-09-08 15:06:15 +00:00
|
|
|
this->obj->disconnect();
|
2022-09-07 20:49:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-01 21:39:52 +00:00
|
|
|
qpdf_object_type_e
|
2013-03-04 15:59:20 +00:00
|
|
|
QPDFObjectHandle::getTypeCode()
|
2013-01-22 14:57:07 +00:00
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() ? this->obj->getTypeCode() : ::ot_uninitialized;
|
2013-01-22 14:57:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char const*
|
2013-03-04 15:59:20 +00:00
|
|
|
QPDFObjectHandle::getTypeName()
|
2013-01-22 14:57:07 +00:00
|
|
|
{
|
2022-06-25 14:59:39 +00:00
|
|
|
return dereference() ? this->obj->getTypeName() : "uninitialized";
|
2013-01-22 14:57:07 +00:00
|
|
|
}
|
|
|
|
|
2022-08-02 18:13:29 +00:00
|
|
|
QPDF_Array*
|
|
|
|
QPDFObjectHandle::asArray()
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_Array>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_Bool*
|
|
|
|
QPDFObjectHandle::asBool()
|
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_Bool>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_Dictionary*
|
|
|
|
QPDFObjectHandle::asDictionary()
|
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_Dictionary>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_InlineImage*
|
|
|
|
QPDFObjectHandle::asInlineImage()
|
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_InlineImage>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_Integer*
|
|
|
|
QPDFObjectHandle::asInteger()
|
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_Integer>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_Name*
|
|
|
|
QPDFObjectHandle::asName()
|
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_Name>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_Null*
|
|
|
|
QPDFObjectHandle::asNull()
|
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_Null>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_Operator*
|
|
|
|
QPDFObjectHandle::asOperator()
|
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_Operator>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_Real*
|
|
|
|
QPDFObjectHandle::asReal()
|
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_Real>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_Reserved*
|
|
|
|
QPDFObjectHandle::asReserved()
|
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_Reserved>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_Stream*
|
|
|
|
QPDFObjectHandle::asStream()
|
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_Stream>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_Stream*
|
|
|
|
QPDFObjectHandle::asStreamWithAssert()
|
|
|
|
{
|
|
|
|
auto stream = asStream();
|
|
|
|
assertType("stream", stream);
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
QPDF_String*
|
|
|
|
QPDFObjectHandle::asString()
|
|
|
|
{
|
2022-08-02 20:35:04 +00:00
|
|
|
return dereference() ? obj->as<QPDF_String>() : nullptr;
|
2022-08-02 18:13:29 +00:00
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
|
2022-09-08 12:03:57 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isDestroyed()
|
|
|
|
{
|
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_destroyed);
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isBool()
|
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_boolean);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2019-08-17 22:54:24 +00:00
|
|
|
bool
|
2019-08-22 21:53:20 +00:00
|
|
|
QPDFObjectHandle::isDirectNull() const
|
2019-08-17 22:54:24 +00:00
|
|
|
{
|
2021-02-25 10:38:52 +00:00
|
|
|
// Don't call dereference() -- this is a const method, and we know
|
|
|
|
// objid == 0, so there's nothing to resolve.
|
2022-08-09 20:34:34 +00:00
|
|
|
return (isInitialized() && (getObjectID() == 0) && (obj->getTypeCode() == ::ot_null));
|
2019-08-17 22:54:24 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isNull()
|
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_null);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isInteger()
|
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_integer);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isReal()
|
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_real);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isNumber()
|
|
|
|
{
|
|
|
|
return (isInteger() || isReal());
|
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
QPDFObjectHandle::getNumericValue()
|
|
|
|
{
|
|
|
|
double result = 0.0;
|
|
|
|
if (isInteger()) {
|
2022-02-08 14:18:08 +00:00
|
|
|
result = static_cast<double>(getIntValue());
|
2008-04-29 12:55:25 +00:00
|
|
|
} else if (isReal()) {
|
2022-02-08 14:18:08 +00:00
|
|
|
result = atof(getRealValue().c_str());
|
2008-04-29 12:55:25 +00:00
|
|
|
} else {
|
2018-02-16 22:25:27 +00:00
|
|
|
typeWarning("number", "returning 0");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle numeric non-numeric");
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsNumber(double& value)
|
|
|
|
{
|
|
|
|
if (!isNumber()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
value = getNumericValue();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isName()
|
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_name);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isString()
|
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_string);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2013-01-20 19:55:01 +00:00
|
|
|
bool
|
2013-01-23 14:38:05 +00:00
|
|
|
QPDFObjectHandle::isOperator()
|
2013-01-20 19:55:01 +00:00
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_operator);
|
2013-01-20 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isInlineImage()
|
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_inlineimage);
|
2013-01-20 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isArray()
|
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_array);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isDictionary()
|
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_dictionary);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isStream()
|
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_stream);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2012-07-08 18:19:19 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isReserved()
|
|
|
|
{
|
2022-09-01 21:39:52 +00:00
|
|
|
return dereference() && (obj->getTypeCode() == ::ot_reserved);
|
2012-07-08 18:19:19 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isScalar()
|
|
|
|
{
|
2022-12-21 18:50:02 +00:00
|
|
|
return isBool() || isInteger() || isName() || isNull() || isReal() || isString();
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 14:09:06 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isNameAndEquals(std::string const& name)
|
|
|
|
{
|
|
|
|
return isName() && (getName() == name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isDictionaryOfType(std::string const& type, std::string const& subtype)
|
|
|
|
{
|
2022-01-26 01:28:53 +00:00
|
|
|
return isDictionary() && (type.empty() || getKey("/Type").isNameAndEquals(type)) &&
|
|
|
|
(subtype.empty() || getKey("/Subtype").isNameAndEquals(subtype));
|
2022-01-21 14:09:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isStreamOfType(std::string const& type, std::string const& subtype)
|
|
|
|
{
|
|
|
|
return isStream() && getDict().isDictionaryOfType(type, subtype);
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
// Bool accessors
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getBoolValue()
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto boolean = asBool();
|
|
|
|
if (boolean) {
|
|
|
|
return boolean->getVal();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("boolean", "returning false");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle boolean returning false");
|
|
|
|
return false;
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsBool(bool& value)
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto boolean = asBool();
|
|
|
|
if (boolean == nullptr) {
|
2022-02-05 14:46:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
2022-08-02 18:13:29 +00:00
|
|
|
value = boolean->getVal();
|
2022-02-05 14:46:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
// Integer accessors
|
|
|
|
|
2012-06-23 19:08:21 +00:00
|
|
|
long long
|
2008-04-29 12:55:25 +00:00
|
|
|
QPDFObjectHandle::getIntValue()
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto integer = asInteger();
|
|
|
|
if (integer) {
|
|
|
|
return integer->getVal();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("integer", "returning 0");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle integer returning 0");
|
|
|
|
return 0;
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsInt(long long& value)
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto integer = asInteger();
|
|
|
|
if (integer == nullptr) {
|
2022-02-05 14:46:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
2022-08-02 18:13:29 +00:00
|
|
|
value = integer->getVal();
|
2022-02-05 14:46:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-06-20 17:04:57 +00:00
|
|
|
int
|
|
|
|
QPDFObjectHandle::getIntValueAsInt()
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
long long v = getIntValue();
|
|
|
|
if (v < INT_MIN) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle int returning INT_MIN");
|
2022-06-18 14:33:27 +00:00
|
|
|
warnIfPossible("requested value of integer is too small; returning INT_MIN");
|
2019-06-20 17:04:57 +00:00
|
|
|
result = INT_MIN;
|
|
|
|
} else if (v > INT_MAX) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle int returning INT_MAX");
|
2022-06-18 14:33:27 +00:00
|
|
|
warnIfPossible("requested value of integer is too big; returning INT_MAX");
|
2019-06-20 17:04:57 +00:00
|
|
|
result = INT_MAX;
|
|
|
|
} else {
|
|
|
|
result = static_cast<int>(v);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsInt(int& value)
|
|
|
|
{
|
|
|
|
if (!isInteger()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
value = getIntValueAsInt();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-06-20 17:04:57 +00:00
|
|
|
unsigned long long
|
|
|
|
QPDFObjectHandle::getUIntValue()
|
|
|
|
{
|
|
|
|
unsigned long long result = 0;
|
|
|
|
long long v = getIntValue();
|
|
|
|
if (v < 0) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle uint returning 0");
|
2022-06-18 14:33:27 +00:00
|
|
|
warnIfPossible("unsigned value request for negative number; returning 0");
|
2019-06-20 17:04:57 +00:00
|
|
|
} else {
|
|
|
|
result = static_cast<unsigned long long>(v);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsUInt(unsigned long long& value)
|
|
|
|
{
|
|
|
|
if (!isInteger()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
value = getUIntValue();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-06-20 17:04:57 +00:00
|
|
|
unsigned int
|
|
|
|
QPDFObjectHandle::getUIntValueAsUInt()
|
|
|
|
{
|
|
|
|
unsigned int result = 0;
|
|
|
|
long long v = getIntValue();
|
|
|
|
if (v < 0) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle uint uint returning 0");
|
2022-06-18 14:33:27 +00:00
|
|
|
warnIfPossible("unsigned integer value request for negative number; returning 0");
|
2019-06-20 17:04:57 +00:00
|
|
|
result = 0;
|
|
|
|
} else if (v > UINT_MAX) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle uint returning UINT_MAX");
|
2022-06-18 14:33:27 +00:00
|
|
|
warnIfPossible("requested value of unsigned integer is too big; returning UINT_MAX");
|
2019-06-20 17:04:57 +00:00
|
|
|
result = UINT_MAX;
|
|
|
|
} else {
|
|
|
|
result = static_cast<unsigned int>(v);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsUInt(unsigned int& value)
|
|
|
|
{
|
|
|
|
if (!isInteger()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
value = getUIntValueAsUInt();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
// Real accessors
|
|
|
|
|
|
|
|
std::string
|
|
|
|
QPDFObjectHandle::getRealValue()
|
|
|
|
{
|
2022-12-21 13:14:05 +00:00
|
|
|
if (isReal()) {
|
|
|
|
return obj->getStringValue();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("real", "returning 0.0");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle real returning 0.0");
|
|
|
|
return "0.0";
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsReal(std::string& value)
|
|
|
|
{
|
2022-12-21 13:14:05 +00:00
|
|
|
if (!isReal()) {
|
2022-02-05 14:46:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
2022-12-21 13:14:05 +00:00
|
|
|
value = obj->getStringValue();
|
2022-02-05 14:46:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-21 02:54:31 +00:00
|
|
|
// Name accessors
|
2008-04-29 12:55:25 +00:00
|
|
|
|
|
|
|
std::string
|
|
|
|
QPDFObjectHandle::getName()
|
|
|
|
{
|
2022-12-21 13:14:05 +00:00
|
|
|
if (isName()) {
|
|
|
|
return obj->getStringValue();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("name", "returning dummy name");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle name returning dummy name");
|
|
|
|
return "/QPDFFakeName";
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsName(std::string& value)
|
|
|
|
{
|
2022-12-21 13:14:05 +00:00
|
|
|
if (!isName()) {
|
2022-02-05 14:46:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
2022-12-21 13:14:05 +00:00
|
|
|
value = obj->getStringValue();
|
2022-02-05 14:46:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
// String accessors
|
|
|
|
|
|
|
|
std::string
|
|
|
|
QPDFObjectHandle::getStringValue()
|
|
|
|
{
|
2022-12-21 13:14:05 +00:00
|
|
|
if (isString()) {
|
|
|
|
return obj->getStringValue();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("string", "returning empty string");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle string returning empty string");
|
|
|
|
return "";
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsString(std::string& value)
|
|
|
|
{
|
2022-12-21 13:14:05 +00:00
|
|
|
if (!isString()) {
|
2022-02-05 14:46:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
2022-12-21 13:14:05 +00:00
|
|
|
value = obj->getStringValue();
|
2022-02-05 14:46:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
std::string
|
|
|
|
QPDFObjectHandle::getUTF8Value()
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto str = asString();
|
|
|
|
if (str) {
|
|
|
|
return str->getUTF8Val();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("string", "returning empty string");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle string returning empty utf8");
|
|
|
|
return "";
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsUTF8(std::string& value)
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto str = asString();
|
|
|
|
if (str == nullptr) {
|
2022-02-05 14:46:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
2022-08-02 18:13:29 +00:00
|
|
|
value = str->getUTF8Val();
|
2022-02-05 14:46:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-23 14:38:05 +00:00
|
|
|
// Operator and Inline Image accessors
|
2013-01-20 19:55:01 +00:00
|
|
|
|
|
|
|
std::string
|
2013-01-23 14:38:05 +00:00
|
|
|
QPDFObjectHandle::getOperatorValue()
|
2013-01-20 19:55:01 +00:00
|
|
|
{
|
2022-12-21 13:14:05 +00:00
|
|
|
if (isOperator()) {
|
|
|
|
return obj->getStringValue();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("operator", "returning fake value");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle operator returning fake value");
|
|
|
|
return "QPDFFAKE";
|
|
|
|
}
|
2013-01-20 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsOperator(std::string& value)
|
|
|
|
{
|
2022-12-21 13:14:05 +00:00
|
|
|
if (!isOperator()) {
|
2022-02-05 14:46:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
2022-12-21 13:14:05 +00:00
|
|
|
value = obj->getStringValue();
|
2022-02-05 14:46:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-20 19:55:01 +00:00
|
|
|
std::string
|
|
|
|
QPDFObjectHandle::getInlineImageValue()
|
|
|
|
{
|
2022-12-21 13:14:05 +00:00
|
|
|
if (isInlineImage()) {
|
|
|
|
return obj->getStringValue();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("inlineimage", "returning empty data");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle inlineimage returning empty data");
|
|
|
|
return "";
|
|
|
|
}
|
2013-01-20 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 14:46:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getValueAsInlineImage(std::string& value)
|
|
|
|
{
|
2022-12-21 13:14:05 +00:00
|
|
|
if (!isInlineImage()) {
|
2022-02-05 14:46:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
2022-12-21 13:14:05 +00:00
|
|
|
value = obj->getStringValue();
|
2022-02-05 14:46:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-21 02:54:31 +00:00
|
|
|
// Array accessors
|
2008-04-29 12:55:25 +00:00
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems
|
|
|
|
QPDFObjectHandle::aitems()
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return *this;
|
2021-02-22 16:02:18 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
int
|
|
|
|
QPDFObjectHandle::getArrayNItems()
|
|
|
|
{
|
2023-03-24 12:58:36 +00:00
|
|
|
if (auto array = asArray()) {
|
|
|
|
return array->size();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("array", "treating as empty");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle array treating as empty");
|
|
|
|
return 0;
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::getArrayItem(int n)
|
|
|
|
{
|
2023-03-24 15:01:40 +00:00
|
|
|
if (auto array = asArray()) {
|
|
|
|
if (auto result = array->at(n); result.obj != nullptr) {
|
|
|
|
return result;
|
|
|
|
} else {
|
2018-02-16 22:25:27 +00:00
|
|
|
objectWarning("returning null for out of bounds array access");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle array bounds");
|
|
|
|
}
|
2023-03-24 15:01:40 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("array", "returning null");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle array null for non-array");
|
2018-02-16 22:25:27 +00:00
|
|
|
}
|
2023-03-24 15:01:40 +00:00
|
|
|
static auto constexpr msg = " -> null returned from invalid array access"sv;
|
|
|
|
return QPDF_Null::create(obj, msg, "");
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2018-06-19 15:00:15 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isRectangle()
|
|
|
|
{
|
2023-03-24 15:01:40 +00:00
|
|
|
if (auto array = asArray()) {
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
if (auto item = array->at(i); !(item.obj && item.isNumber())) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-06-19 15:00:15 +00:00
|
|
|
}
|
2023-03-24 15:01:40 +00:00
|
|
|
return array->size() == 4;
|
2018-06-19 15:00:15 +00:00
|
|
|
}
|
2023-03-24 15:01:40 +00:00
|
|
|
return false;
|
2018-06-19 15:00:15 +00:00
|
|
|
}
|
|
|
|
|
2018-12-25 00:29:30 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isMatrix()
|
|
|
|
{
|
2023-03-24 15:01:40 +00:00
|
|
|
if (auto array = asArray()) {
|
|
|
|
for (int i = 0; i < 6; ++i) {
|
|
|
|
if (auto item = array->at(i); !(item.obj && item.isNumber())) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-12-25 00:29:30 +00:00
|
|
|
}
|
2023-03-24 15:01:40 +00:00
|
|
|
return array->size() == 6;
|
2018-12-25 00:29:30 +00:00
|
|
|
}
|
2023-03-24 15:01:40 +00:00
|
|
|
return false;
|
2018-12-25 00:29:30 +00:00
|
|
|
}
|
2018-06-19 15:00:15 +00:00
|
|
|
|
|
|
|
QPDFObjectHandle::Rectangle
|
|
|
|
QPDFObjectHandle::getArrayAsRectangle()
|
|
|
|
{
|
2023-03-24 15:01:40 +00:00
|
|
|
if (auto array = asArray()) {
|
|
|
|
if (array->size() != 4) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
double items[4];
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
if (!array->at(i).getValueAsNumber(items[i])) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
2023-05-27 20:04:32 +00:00
|
|
|
return {
|
2023-03-24 15:01:40 +00:00
|
|
|
std::min(items[0], items[2]),
|
|
|
|
std::min(items[1], items[3]),
|
|
|
|
std::max(items[0], items[2]),
|
2023-05-27 20:04:32 +00:00
|
|
|
std::max(items[1], items[3])};
|
2018-06-19 15:00:15 +00:00
|
|
|
}
|
2023-03-24 15:01:40 +00:00
|
|
|
return {};
|
2018-06-19 15:00:15 +00:00
|
|
|
}
|
|
|
|
|
2018-12-25 00:29:30 +00:00
|
|
|
QPDFObjectHandle::Matrix
|
|
|
|
QPDFObjectHandle::getArrayAsMatrix()
|
|
|
|
{
|
2023-03-24 15:01:40 +00:00
|
|
|
if (auto array = asArray()) {
|
|
|
|
if (array->size() != 6) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
double items[6];
|
|
|
|
for (int i = 0; i < 6; ++i) {
|
|
|
|
if (!array->at(i).getValueAsNumber(items[i])) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
2023-05-27 20:04:32 +00:00
|
|
|
return {items[0], items[1], items[2], items[3], items[4], items[5]};
|
2018-12-25 00:29:30 +00:00
|
|
|
}
|
2023-03-24 15:01:40 +00:00
|
|
|
return {};
|
2018-12-25 00:29:30 +00:00
|
|
|
}
|
|
|
|
|
2011-08-10 17:33:58 +00:00
|
|
|
std::vector<QPDFObjectHandle>
|
|
|
|
QPDFObjectHandle::getArrayAsVector()
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto array = asArray();
|
|
|
|
if (array) {
|
2023-01-02 19:49:42 +00:00
|
|
|
return array->getAsVector();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("array", "treating as empty");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle array treating as empty vector");
|
|
|
|
}
|
2023-01-02 19:49:42 +00:00
|
|
|
return {};
|
2011-08-10 17:33:58 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
// Array mutators
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::setArrayItem(int n, QPDFObjectHandle const& item)
|
|
|
|
{
|
2023-01-01 12:47:03 +00:00
|
|
|
if (auto array = asArray()) {
|
|
|
|
if (!array->setAt(n, item)) {
|
|
|
|
objectWarning("ignoring attempt to set out of bounds array item");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle set array bounds");
|
|
|
|
}
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("array", "ignoring attempt to set item");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle array ignoring set item");
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
2012-06-18 20:38:59 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::setArrayFromVector(std::vector<QPDFObjectHandle> const& items)
|
|
|
|
{
|
2023-03-30 13:16:07 +00:00
|
|
|
if (auto array = asArray()) {
|
2022-08-02 18:13:29 +00:00
|
|
|
array->setFromVector(items);
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("array", "ignoring attempt to replace items");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle array ignoring replace items");
|
|
|
|
}
|
2012-06-18 20:38:59 +00:00
|
|
|
}
|
|
|
|
|
2022-05-17 22:28:50 +00:00
|
|
|
void
|
2012-06-18 20:38:59 +00:00
|
|
|
QPDFObjectHandle::insertItem(int at, QPDFObjectHandle const& item)
|
|
|
|
{
|
2022-12-10 19:48:07 +00:00
|
|
|
if (auto array = asArray()) {
|
|
|
|
if (!array->insert(at, item)) {
|
|
|
|
objectWarning("ignoring attempt to insert out of bounds array item");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle insert array bounds");
|
|
|
|
}
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("array", "ignoring attempt to insert item");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle array ignoring insert item");
|
|
|
|
}
|
2012-06-18 20:38:59 +00:00
|
|
|
}
|
|
|
|
|
2022-04-30 00:09:10 +00:00
|
|
|
QPDFObjectHandle
|
2022-07-24 19:42:23 +00:00
|
|
|
QPDFObjectHandle::insertItemAndGetNew(int at, QPDFObjectHandle const& item)
|
2022-04-30 00:09:10 +00:00
|
|
|
{
|
|
|
|
insertItem(at, item);
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2022-05-17 22:28:50 +00:00
|
|
|
void
|
2012-06-18 20:38:59 +00:00
|
|
|
QPDFObjectHandle::appendItem(QPDFObjectHandle const& item)
|
|
|
|
{
|
2022-12-10 19:05:12 +00:00
|
|
|
if (auto array = asArray()) {
|
|
|
|
array->push_back(item);
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("array", "ignoring attempt to append item");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle array ignoring append item");
|
|
|
|
}
|
2012-06-18 20:38:59 +00:00
|
|
|
}
|
|
|
|
|
2022-04-30 00:09:10 +00:00
|
|
|
QPDFObjectHandle
|
2022-07-24 19:42:23 +00:00
|
|
|
QPDFObjectHandle::appendItemAndGetNew(QPDFObjectHandle const& item)
|
2022-04-30 00:09:10 +00:00
|
|
|
{
|
|
|
|
appendItem(item);
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2022-05-17 22:28:50 +00:00
|
|
|
void
|
2012-06-18 20:38:59 +00:00
|
|
|
QPDFObjectHandle::eraseItem(int at)
|
|
|
|
{
|
2022-12-12 13:29:52 +00:00
|
|
|
if (auto array = asArray()) {
|
|
|
|
if (!array->erase(at)) {
|
2018-02-16 22:25:27 +00:00
|
|
|
objectWarning("ignoring attempt to erase out of bounds array item");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle erase array bounds");
|
|
|
|
}
|
2022-12-12 13:29:52 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("array", "ignoring attempt to erase item");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle array ignoring erase item");
|
2018-02-16 22:25:27 +00:00
|
|
|
}
|
2022-04-30 00:09:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
2022-07-24 19:42:23 +00:00
|
|
|
QPDFObjectHandle::eraseItemAndGetOld(int at)
|
2022-04-30 00:09:10 +00:00
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto array = asArray();
|
2023-03-24 15:01:40 +00:00
|
|
|
auto result = (array && at < array->size() && at >= 0) ? array->at(at) : newNull();
|
2022-04-30 00:09:10 +00:00
|
|
|
eraseItem(at);
|
|
|
|
return result;
|
2012-06-18 20:38:59 +00:00
|
|
|
}
|
|
|
|
|
2009-02-21 02:54:31 +00:00
|
|
|
// Dictionary accessors
|
2008-04-29 12:55:25 +00:00
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems
|
|
|
|
QPDFObjectHandle::ditems()
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {*this};
|
2021-02-22 16:02:18 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::hasKey(std::string const& key)
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto dict = asDictionary();
|
|
|
|
if (dict) {
|
|
|
|
return dict->hasKey(key);
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("dictionary", "returning false for a key containment request");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle dictionary false for hasKey");
|
|
|
|
return false;
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::getKey(std::string const& key)
|
|
|
|
{
|
2023-02-17 14:59:33 +00:00
|
|
|
if (auto dict = asDictionary()) {
|
|
|
|
return dict->getKey(key);
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("dictionary", "returning null for attempted key retrieval");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle dictionary null for getKey");
|
2023-02-17 13:58:21 +00:00
|
|
|
static auto constexpr msg = " -> null returned from getting key $VD from non-Dictionary"sv;
|
2023-02-17 14:59:33 +00:00
|
|
|
return QPDF_Null::create(obj, msg, "");
|
2018-02-16 22:25:27 +00:00
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
2022-02-06 02:13:04 +00:00
|
|
|
|
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::getKeyIfDict(std::string const& key)
|
|
|
|
{
|
|
|
|
return isNull() ? newNull() : getKey(key);
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
|
|
|
|
std::set<std::string>
|
|
|
|
QPDFObjectHandle::getKeys()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
std::set<std::string> result;
|
2022-08-02 18:13:29 +00:00
|
|
|
auto dict = asDictionary();
|
|
|
|
if (dict) {
|
|
|
|
result = dict->getKeys();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("dictionary", "treating as empty");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle dictionary empty set for getKeys");
|
|
|
|
}
|
|
|
|
return result;
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2011-08-10 17:33:58 +00:00
|
|
|
std::map<std::string, QPDFObjectHandle>
|
|
|
|
QPDFObjectHandle::getDictAsMap()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
std::map<std::string, QPDFObjectHandle> result;
|
2022-08-02 18:13:29 +00:00
|
|
|
auto dict = asDictionary();
|
|
|
|
if (dict) {
|
|
|
|
result = dict->getAsMap();
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("dictionary", "treating as empty");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle dictionary empty map for asMap");
|
|
|
|
}
|
|
|
|
return result;
|
2011-08-10 17:33:58 +00:00
|
|
|
}
|
|
|
|
|
2009-10-19 01:58:31 +00:00
|
|
|
// Array and Name accessors
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isOrHasName(std::string const& value)
|
|
|
|
{
|
2022-01-27 14:03:32 +00:00
|
|
|
if (isNameAndEquals(value)) {
|
|
|
|
return true;
|
|
|
|
} else if (isArray()) {
|
|
|
|
for (auto& item: aitems()) {
|
|
|
|
if (item.isNameAndEquals(value)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2009-10-19 01:58:31 +00:00
|
|
|
}
|
|
|
|
|
2021-03-02 11:28:55 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::makeResourcesIndirect(QPDF& owning_qpdf)
|
|
|
|
{
|
|
|
|
if (!isDictionary()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (auto const& i1: ditems()) {
|
|
|
|
QPDFObjectHandle sub = i1.second;
|
|
|
|
if (!sub.isDictionary()) {
|
|
|
|
continue;
|
|
|
|
}
|
2023-06-01 15:16:21 +00:00
|
|
|
for (auto const& i2: sub.ditems()) {
|
2021-03-02 11:28:55 +00:00
|
|
|
std::string const& key = i2.first;
|
|
|
|
QPDFObjectHandle val = i2.second;
|
|
|
|
if (!val.isIndirect()) {
|
|
|
|
sub.replaceKey(key, owning_qpdf.makeIndirectObject(val));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::mergeResources(
|
|
|
|
QPDFObjectHandle other, std::map<std::string, std::map<std::string, std::string>>* conflicts)
|
2018-12-31 22:12:38 +00:00
|
|
|
{
|
|
|
|
if (!(isDictionary() && other.isDictionary())) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle merge top type mismatch");
|
|
|
|
return;
|
|
|
|
}
|
2021-03-02 11:28:55 +00:00
|
|
|
|
|
|
|
auto make_og_to_name = [](QPDFObjectHandle& dict,
|
|
|
|
std::map<QPDFObjGen, std::string>& og_to_name) {
|
2023-06-01 15:16:21 +00:00
|
|
|
for (auto const& i: dict.ditems()) {
|
2021-03-02 11:28:55 +00:00
|
|
|
if (i.second.isIndirect()) {
|
|
|
|
og_to_name[i.second.getObjGen()] = i.first;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// This algorithm is described in comments in QPDFObjectHandle.hh
|
|
|
|
// above the declaration of mergeResources.
|
2023-06-01 15:16:21 +00:00
|
|
|
for (auto const& o_top: other.ditems()) {
|
2021-03-02 11:28:55 +00:00
|
|
|
std::string const& rtype = o_top.first;
|
|
|
|
QPDFObjectHandle other_val = o_top.second;
|
|
|
|
if (hasKey(rtype)) {
|
|
|
|
QPDFObjectHandle this_val = getKey(rtype);
|
2018-12-31 22:12:38 +00:00
|
|
|
if (this_val.isDictionary() && other_val.isDictionary()) {
|
2019-01-03 02:44:10 +00:00
|
|
|
if (this_val.isIndirect()) {
|
2021-03-02 11:28:55 +00:00
|
|
|
// Do this even if there are no keys. Various places in the code call
|
|
|
|
// mergeResources with resource dictionaries that contain empty subdictionaries
|
|
|
|
// just to get this shallow copy functionality.
|
2019-01-03 02:44:10 +00:00
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle replace with copy");
|
2022-07-24 19:42:23 +00:00
|
|
|
this_val = replaceKeyAndGetNew(rtype, this_val.shallowCopy());
|
2018-12-31 22:12:38 +00:00
|
|
|
}
|
2021-03-02 11:28:55 +00:00
|
|
|
std::map<QPDFObjGen, std::string> og_to_name;
|
|
|
|
std::set<std::string> rnames;
|
|
|
|
int min_suffix = 1;
|
|
|
|
bool initialized_maps = false;
|
2023-06-01 15:16:21 +00:00
|
|
|
for (auto const& ov_iter: other_val.ditems()) {
|
2021-03-02 11:28:55 +00:00
|
|
|
std::string const& key = ov_iter.first;
|
|
|
|
QPDFObjectHandle rval = ov_iter.second;
|
|
|
|
if (!this_val.hasKey(key)) {
|
|
|
|
if (!rval.isIndirect()) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle merge shallow copy");
|
|
|
|
rval = rval.shallowCopy();
|
|
|
|
}
|
|
|
|
this_val.replaceKey(key, rval);
|
|
|
|
} else if (conflicts) {
|
|
|
|
if (!initialized_maps) {
|
|
|
|
make_og_to_name(this_val, og_to_name);
|
|
|
|
rnames = this_val.getResourceNames();
|
|
|
|
initialized_maps = true;
|
|
|
|
}
|
|
|
|
auto rval_og = rval.getObjGen();
|
|
|
|
if (rval.isIndirect() && og_to_name.count(rval_og)) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle merge reuse");
|
|
|
|
auto new_key = og_to_name[rval_og];
|
|
|
|
if (new_key != key) {
|
|
|
|
(*conflicts)[rtype][key] = new_key;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle merge generate");
|
|
|
|
std::string new_key =
|
|
|
|
getUniqueResourceName(key + "_", min_suffix, &rnames);
|
|
|
|
(*conflicts)[rtype][key] = new_key;
|
|
|
|
this_val.replaceKey(new_key, rval);
|
|
|
|
}
|
2018-12-31 22:12:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (this_val.isArray() && other_val.isArray()) {
|
|
|
|
std::set<std::string> scalars;
|
2021-03-02 11:28:55 +00:00
|
|
|
for (auto this_item: this_val.aitems()) {
|
2018-12-31 22:12:38 +00:00
|
|
|
if (this_item.isScalar()) {
|
|
|
|
scalars.insert(this_item.unparse());
|
|
|
|
}
|
|
|
|
}
|
2021-03-02 11:28:55 +00:00
|
|
|
for (auto other_item: other_val.aitems()) {
|
2018-12-31 22:12:38 +00:00
|
|
|
if (other_item.isScalar()) {
|
|
|
|
if (scalars.count(other_item.unparse()) == 0) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle merge array");
|
|
|
|
this_val.appendItem(other_item);
|
|
|
|
} else {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle merge array dup");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle merge copy from other");
|
2021-03-02 11:28:55 +00:00
|
|
|
replaceKey(rtype, other_val.shallowCopy());
|
2019-01-03 02:44:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::set<std::string>
|
|
|
|
QPDFObjectHandle::getResourceNames()
|
|
|
|
{
|
|
|
|
// Return second-level dictionary keys
|
|
|
|
std::set<std::string> result;
|
|
|
|
if (!isDictionary()) {
|
|
|
|
return result;
|
|
|
|
}
|
2022-05-21 14:18:15 +00:00
|
|
|
for (auto const& key: getKeys()) {
|
2019-01-03 02:44:10 +00:00
|
|
|
QPDFObjectHandle val = getKey(key);
|
|
|
|
if (val.isDictionary()) {
|
2022-05-21 14:18:15 +00:00
|
|
|
for (auto const& val_key: val.getKeys()) {
|
2022-04-30 17:23:18 +00:00
|
|
|
result.insert(val_key);
|
2019-01-03 02:44:10 +00:00
|
|
|
}
|
2018-12-31 22:12:38 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-03 02:44:10 +00:00
|
|
|
return result;
|
2018-12-31 22:12:38 +00:00
|
|
|
}
|
|
|
|
|
2021-03-02 11:28:55 +00:00
|
|
|
std::string
|
|
|
|
QPDFObjectHandle::getUniqueResourceName(
|
|
|
|
std::string const& prefix, int& min_suffix, std::set<std::string>* namesp)
|
|
|
|
|
|
|
|
{
|
|
|
|
std::set<std::string> names = (namesp ? *namesp : getResourceNames());
|
2019-06-21 03:35:23 +00:00
|
|
|
int max_suffix = min_suffix + QIntC::to_int(names.size());
|
2019-01-25 23:15:23 +00:00
|
|
|
while (min_suffix <= max_suffix) {
|
2022-09-21 16:49:21 +00:00
|
|
|
std::string candidate = prefix + std::to_string(min_suffix);
|
2019-01-25 23:15:23 +00:00
|
|
|
if (names.count(candidate) == 0) {
|
|
|
|
return candidate;
|
|
|
|
}
|
|
|
|
// Increment after return; min_suffix should be the value
|
|
|
|
// used, not the next value.
|
|
|
|
++min_suffix;
|
|
|
|
}
|
|
|
|
// This could only happen if there is a coding error.
|
|
|
|
// The number of candidates we test is more than the
|
|
|
|
// number of keys we're checking against.
|
|
|
|
throw std::logic_error("unable to find unconflicting name in"
|
|
|
|
" QPDFObjectHandle::getUniqueResourceName");
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
// Dictionary mutators
|
|
|
|
|
2022-05-17 22:28:50 +00:00
|
|
|
void
|
2022-04-24 13:05:50 +00:00
|
|
|
QPDFObjectHandle::replaceKey(std::string const& key, QPDFObjectHandle const& value)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto dict = asDictionary();
|
|
|
|
if (dict) {
|
2021-11-04 15:55:36 +00:00
|
|
|
checkOwnership(value);
|
2022-08-02 18:13:29 +00:00
|
|
|
dict->replaceKey(key, value);
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("dictionary", "ignoring key replacement request");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle dictionary ignoring replaceKey");
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2022-04-30 00:09:10 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::replaceKeyAndGetNew(std::string const& key, QPDFObjectHandle const& value)
|
|
|
|
{
|
|
|
|
replaceKey(key, value);
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2022-07-24 19:42:23 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::replaceKeyAndGetOld(std::string const& key, QPDFObjectHandle const& value)
|
|
|
|
{
|
|
|
|
QPDFObjectHandle old = removeKeyAndGetOld(key);
|
|
|
|
replaceKey(key, value);
|
|
|
|
return old;
|
|
|
|
}
|
|
|
|
|
2022-05-17 22:28:50 +00:00
|
|
|
void
|
2008-04-29 12:55:25 +00:00
|
|
|
QPDFObjectHandle::removeKey(std::string const& key)
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto dict = asDictionary();
|
|
|
|
if (dict) {
|
|
|
|
dict->removeKey(key);
|
2018-02-16 22:25:27 +00:00
|
|
|
} else {
|
|
|
|
typeWarning("dictionary", "ignoring key removal request");
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle dictionary ignoring removeKey");
|
|
|
|
}
|
2022-04-30 00:09:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
2022-07-24 19:42:23 +00:00
|
|
|
QPDFObjectHandle::removeKeyAndGetOld(std::string const& key)
|
2022-04-30 00:09:10 +00:00
|
|
|
{
|
|
|
|
auto result = QPDFObjectHandle::newNull();
|
2022-08-02 18:13:29 +00:00
|
|
|
auto dict = asDictionary();
|
|
|
|
if (dict) {
|
|
|
|
result = dict->getKey(key);
|
2022-04-30 00:09:10 +00:00
|
|
|
}
|
|
|
|
removeKey(key);
|
|
|
|
return result;
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2022-04-30 18:14:41 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::replaceOrRemoveKey(std::string const& key, QPDFObjectHandle const& value)
|
|
|
|
{
|
|
|
|
replaceKey(key, value);
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
// Stream accessors
|
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::getDict()
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
return asStreamWithAssert()->getDict();
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2020-12-27 00:45:01 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::setFilterOnWrite(bool val)
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
asStreamWithAssert()->setFilterOnWrite(val);
|
2020-12-27 00:45:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::getFilterOnWrite()
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
return asStreamWithAssert()->getFilterOnWrite();
|
2020-12-27 00:45:01 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 23:21:34 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isDataModified()
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
return asStreamWithAssert()->isDataModified();
|
2018-02-02 23:21:34 +00:00
|
|
|
}
|
|
|
|
|
2012-07-21 13:00:06 +00:00
|
|
|
void
|
2022-04-24 13:05:50 +00:00
|
|
|
QPDFObjectHandle::replaceDict(QPDFObjectHandle const& new_dict)
|
2012-07-21 13:00:06 +00:00
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
asStreamWithAssert()->replaceDict(new_dict);
|
2012-07-21 13:00:06 +00:00
|
|
|
}
|
|
|
|
|
2022-04-09 18:35:56 +00:00
|
|
|
std::shared_ptr<Buffer>
|
2017-08-19 13:18:14 +00:00
|
|
|
QPDFObjectHandle::getStreamData(qpdf_stream_decode_level_e level)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
return asStreamWithAssert()->getStreamData(level);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2022-04-09 18:35:56 +00:00
|
|
|
std::shared_ptr<Buffer>
|
2010-08-09 23:33:40 +00:00
|
|
|
QPDFObjectHandle::getRawStreamData()
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
return asStreamWithAssert()->getRawStreamData();
|
2010-08-09 23:33:40 +00:00
|
|
|
}
|
|
|
|
|
2017-09-12 19:48:08 +00:00
|
|
|
bool
|
2020-04-05 03:35:35 +00:00
|
|
|
QPDFObjectHandle::pipeStreamData(
|
|
|
|
Pipeline* p,
|
|
|
|
bool* filtering_attempted,
|
2019-06-21 03:29:02 +00:00
|
|
|
int encode_flags,
|
2017-09-12 19:48:08 +00:00
|
|
|
qpdf_stream_decode_level_e decode_level,
|
|
|
|
bool suppress_warnings,
|
|
|
|
bool will_retry)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
return asStreamWithAssert()->pipeStreamData(
|
2022-02-08 14:18:08 +00:00
|
|
|
p, filtering_attempted, encode_flags, decode_level, suppress_warnings, will_retry);
|
2020-04-05 03:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::pipeStreamData(
|
|
|
|
Pipeline* p,
|
|
|
|
int encode_flags,
|
|
|
|
qpdf_stream_decode_level_e decode_level,
|
|
|
|
bool suppress_warnings,
|
|
|
|
bool will_retry)
|
|
|
|
{
|
|
|
|
bool filtering_attempted;
|
2022-08-02 18:13:29 +00:00
|
|
|
asStreamWithAssert()->pipeStreamData(
|
2022-02-08 14:18:08 +00:00
|
|
|
p, &filtering_attempted, encode_flags, decode_level, suppress_warnings, will_retry);
|
2020-04-05 03:35:35 +00:00
|
|
|
return filtering_attempted;
|
2017-08-19 13:18:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2022-02-08 14:18:08 +00:00
|
|
|
QPDFObjectHandle::pipeStreamData(Pipeline* p, bool filter, bool normalize, bool compress)
|
2017-08-19 13:18:14 +00:00
|
|
|
{
|
2019-06-21 03:29:02 +00:00
|
|
|
int encode_flags = 0;
|
2017-08-19 13:18:14 +00:00
|
|
|
qpdf_stream_decode_level_e decode_level = qpdf_dl_none;
|
|
|
|
if (filter) {
|
|
|
|
decode_level = qpdf_dl_generalized;
|
|
|
|
if (normalize) {
|
|
|
|
encode_flags |= qpdf_ef_normalize;
|
|
|
|
}
|
|
|
|
if (compress) {
|
|
|
|
encode_flags |= qpdf_ef_compress;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pipeStreamData(p, encode_flags, decode_level, false);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2010-08-02 22:17:01 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::replaceStreamData(
|
2022-04-09 18:35:56 +00:00
|
|
|
std::shared_ptr<Buffer> data,
|
2022-02-08 14:18:08 +00:00
|
|
|
QPDFObjectHandle const& filter,
|
|
|
|
QPDFObjectHandle const& decode_parms)
|
2010-08-02 22:17:01 +00:00
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
asStreamWithAssert()->replaceStreamData(data, filter, decode_parms);
|
2010-08-02 22:17:01 +00:00
|
|
|
}
|
|
|
|
|
2012-07-25 01:01:57 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::replaceStreamData(
|
2022-02-08 14:18:08 +00:00
|
|
|
std::string const& data, QPDFObjectHandle const& filter, QPDFObjectHandle const& decode_parms)
|
2012-07-25 01:01:57 +00:00
|
|
|
{
|
2022-04-09 18:35:56 +00:00
|
|
|
auto b = std::make_shared<Buffer>(data.length());
|
2012-07-25 01:01:57 +00:00
|
|
|
unsigned char* bp = b->getBuffer();
|
2022-05-16 15:07:26 +00:00
|
|
|
if (bp) {
|
|
|
|
memcpy(bp, data.c_str(), data.length());
|
|
|
|
}
|
2022-08-02 18:13:29 +00:00
|
|
|
asStreamWithAssert()->replaceStreamData(b, filter, decode_parms);
|
2012-07-25 01:01:57 +00:00
|
|
|
}
|
|
|
|
|
2010-08-05 19:04:22 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::replaceStreamData(
|
2022-04-09 18:35:56 +00:00
|
|
|
std::shared_ptr<StreamDataProvider> provider,
|
2022-02-08 14:18:08 +00:00
|
|
|
QPDFObjectHandle const& filter,
|
|
|
|
QPDFObjectHandle const& decode_parms)
|
2010-08-05 19:04:22 +00:00
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
asStreamWithAssert()->replaceStreamData(provider, filter, decode_parms);
|
2010-08-05 19:04:22 +00:00
|
|
|
}
|
|
|
|
|
2022-04-16 17:21:57 +00:00
|
|
|
namespace
|
2021-02-14 19:04:40 +00:00
|
|
|
{
|
2022-04-16 17:21:57 +00:00
|
|
|
class FunctionProvider: public QPDFObjectHandle::StreamDataProvider
|
2021-02-14 19:04:40 +00:00
|
|
|
{
|
2022-04-16 17:21:57 +00:00
|
|
|
public:
|
|
|
|
FunctionProvider(std::function<void(Pipeline*)> provider) :
|
|
|
|
StreamDataProvider(false),
|
|
|
|
p1(provider),
|
|
|
|
p2(nullptr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
FunctionProvider(std::function<bool(Pipeline*, bool, bool)> provider) :
|
|
|
|
StreamDataProvider(true),
|
|
|
|
p1(nullptr),
|
|
|
|
p2(provider)
|
|
|
|
{
|
|
|
|
}
|
2021-02-14 19:04:40 +00:00
|
|
|
|
2023-05-20 12:56:33 +00:00
|
|
|
void
|
2022-07-24 13:16:37 +00:00
|
|
|
provideStreamData(QPDFObjGen const&, Pipeline* pipeline) override
|
2022-04-16 17:21:57 +00:00
|
|
|
{
|
|
|
|
p1(pipeline);
|
|
|
|
}
|
2021-02-14 19:04:40 +00:00
|
|
|
|
2023-05-20 12:56:33 +00:00
|
|
|
bool
|
2022-04-16 17:21:57 +00:00
|
|
|
provideStreamData(
|
|
|
|
QPDFObjGen const&, Pipeline* pipeline, bool suppress_warnings, bool will_retry) override
|
|
|
|
{
|
|
|
|
return p2(pipeline, suppress_warnings, will_retry);
|
|
|
|
}
|
2021-02-14 19:04:40 +00:00
|
|
|
|
2022-04-16 17:21:57 +00:00
|
|
|
private:
|
|
|
|
std::function<void(Pipeline*)> p1;
|
|
|
|
std::function<bool(Pipeline*, bool, bool)> p2;
|
|
|
|
};
|
|
|
|
} // namespace
|
2021-02-14 19:04:40 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::replaceStreamData(
|
|
|
|
std::function<void(Pipeline*)> provider,
|
|
|
|
QPDFObjectHandle const& filter,
|
|
|
|
QPDFObjectHandle const& decode_parms)
|
|
|
|
{
|
2022-04-09 18:35:56 +00:00
|
|
|
auto sdp = std::shared_ptr<StreamDataProvider>(new FunctionProvider(provider));
|
2022-08-02 18:13:29 +00:00
|
|
|
asStreamWithAssert()->replaceStreamData(sdp, filter, decode_parms);
|
2021-02-14 19:04:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::replaceStreamData(
|
|
|
|
std::function<bool(Pipeline*, bool, bool)> provider,
|
|
|
|
QPDFObjectHandle const& filter,
|
|
|
|
QPDFObjectHandle const& decode_parms)
|
|
|
|
{
|
2022-04-09 18:35:56 +00:00
|
|
|
auto sdp = std::shared_ptr<StreamDataProvider>(new FunctionProvider(provider));
|
2022-08-02 18:13:29 +00:00
|
|
|
asStreamWithAssert()->replaceStreamData(sdp, filter, decode_parms);
|
2021-02-14 19:04:40 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
std::map<std::string, QPDFObjectHandle>
|
|
|
|
QPDFObjectHandle::getPageImages()
|
|
|
|
{
|
2020-12-31 18:23:49 +00:00
|
|
|
return QPDFPageObjectHelper(*this).getImages();
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<QPDFObjectHandle>
|
2018-01-31 02:25:51 +00:00
|
|
|
QPDFObjectHandle::arrayOrStreamToStreamArray(
|
|
|
|
std::string const& description, std::string& all_description)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2018-01-31 02:25:51 +00:00
|
|
|
all_description = description;
|
2008-04-29 12:55:25 +00:00
|
|
|
std::vector<QPDFObjectHandle> result;
|
2023-03-24 12:58:36 +00:00
|
|
|
if (auto array = asArray()) {
|
|
|
|
int n_items = array->size();
|
2022-02-08 14:18:08 +00:00
|
|
|
for (int i = 0; i < n_items; ++i) {
|
2023-03-24 15:01:40 +00:00
|
|
|
QPDFObjectHandle item = array->at(i);
|
2022-02-08 14:18:08 +00:00
|
|
|
if (item.isStream()) {
|
2018-01-31 02:25:51 +00:00
|
|
|
result.push_back(item);
|
|
|
|
} else {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle non-stream in stream array");
|
|
|
|
warn(
|
|
|
|
item.getOwningQPDF(),
|
|
|
|
QPDFExc(
|
|
|
|
qpdf_e_damaged_pdf,
|
2022-04-23 22:03:44 +00:00
|
|
|
"",
|
2022-09-21 16:49:21 +00:00
|
|
|
description + ": item index " + std::to_string(i) + " (from 0)",
|
2018-01-31 02:25:51 +00:00
|
|
|
0,
|
|
|
|
"ignoring non-stream in an array of streams"));
|
2022-02-08 14:18:08 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-31 02:25:51 +00:00
|
|
|
} else if (isStream()) {
|
2022-02-08 14:18:08 +00:00
|
|
|
result.push_back(*this);
|
2018-01-31 02:25:51 +00:00
|
|
|
} else if (!isNull()) {
|
|
|
|
warn(
|
|
|
|
getOwningQPDF(),
|
|
|
|
QPDFExc(
|
|
|
|
qpdf_e_damaged_pdf,
|
|
|
|
"",
|
|
|
|
description,
|
|
|
|
0,
|
|
|
|
" object is supposed to be a stream or an array of streams but is neither"));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool first = true;
|
2022-04-30 17:23:18 +00:00
|
|
|
for (auto const& item: result) {
|
2018-01-31 02:25:51 +00:00
|
|
|
if (first) {
|
|
|
|
first = false;
|
|
|
|
} else {
|
|
|
|
all_description += ",";
|
|
|
|
}
|
2022-07-16 10:21:11 +00:00
|
|
|
all_description += " stream " + item.getObjGen().unparse(' ');
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-01-31 02:25:51 +00:00
|
|
|
std::vector<QPDFObjectHandle>
|
|
|
|
QPDFObjectHandle::getPageContents()
|
|
|
|
{
|
2022-07-16 10:21:11 +00:00
|
|
|
std::string description = "page object " + getObjGen().unparse(' ');
|
2018-01-31 02:25:51 +00:00
|
|
|
std::string all_description;
|
|
|
|
return this->getKey("/Contents").arrayOrStreamToStreamArray(description, all_description);
|
|
|
|
}
|
|
|
|
|
2010-08-05 21:06:49 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::addPageContents(QPDFObjectHandle new_contents, bool first)
|
|
|
|
{
|
2012-06-18 22:58:30 +00:00
|
|
|
new_contents.assertStream();
|
2010-08-05 21:06:49 +00:00
|
|
|
|
|
|
|
std::vector<QPDFObjectHandle> content_streams;
|
|
|
|
if (first) {
|
2022-02-08 14:18:08 +00:00
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle prepend page contents");
|
|
|
|
content_streams.push_back(new_contents);
|
2010-08-05 21:06:49 +00:00
|
|
|
}
|
2022-05-21 14:18:15 +00:00
|
|
|
for (auto const& iter: getPageContents()) {
|
2022-02-08 14:18:08 +00:00
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle append page contents");
|
2022-04-30 17:23:18 +00:00
|
|
|
content_streams.push_back(iter);
|
2010-08-05 21:06:49 +00:00
|
|
|
}
|
|
|
|
if (!first) {
|
2022-02-08 14:18:08 +00:00
|
|
|
content_streams.push_back(new_contents);
|
2010-08-05 21:06:49 +00:00
|
|
|
}
|
|
|
|
|
2022-05-21 14:18:15 +00:00
|
|
|
this->replaceKey("/Contents", newArray(content_streams));
|
2010-08-05 21:06:49 +00:00
|
|
|
}
|
|
|
|
|
2017-08-12 17:22:46 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::rotatePage(int angle, bool relative)
|
|
|
|
{
|
|
|
|
if ((angle % 90) != 0) {
|
|
|
|
throw std::runtime_error(
|
|
|
|
"QPDF::rotatePage called with an angle that is not a multiple of 90");
|
|
|
|
}
|
|
|
|
int new_angle = angle;
|
|
|
|
if (relative) {
|
|
|
|
int old_angle = 0;
|
|
|
|
QPDFObjectHandle cur_obj = *this;
|
2023-01-05 15:29:38 +00:00
|
|
|
QPDFObjGen::set visited;
|
|
|
|
while (visited.add(cur_obj)) {
|
|
|
|
// Don't get stuck in an infinite loop
|
|
|
|
if (cur_obj.getKey("/Rotate").getValueAsInt(old_angle)) {
|
2017-08-12 17:22:46 +00:00
|
|
|
break;
|
|
|
|
} else if (cur_obj.getKey("/Parent").isDictionary()) {
|
|
|
|
cur_obj = cur_obj.getKey("/Parent");
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle found old angle", visited.size() > 1 ? 0 : 1);
|
|
|
|
if ((old_angle % 90) != 0) {
|
|
|
|
old_angle = 0;
|
|
|
|
}
|
|
|
|
new_angle += old_angle;
|
|
|
|
}
|
|
|
|
new_angle = (new_angle + 360) % 360;
|
2021-02-20 21:28:58 +00:00
|
|
|
// Make this explicit even with new_angle == 0 since /Rotate can be inherited.
|
2017-08-12 17:22:46 +00:00
|
|
|
replaceKey("/Rotate", QPDFObjectHandle::newInteger(new_angle));
|
|
|
|
}
|
|
|
|
|
2018-01-31 14:47:58 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::coalesceContentStreams()
|
|
|
|
{
|
|
|
|
QPDFObjectHandle contents = this->getKey("/Contents");
|
|
|
|
if (contents.isStream()) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle coalesce called on stream");
|
|
|
|
return;
|
2019-06-21 21:37:33 +00:00
|
|
|
} else if (!contents.isArray()) {
|
|
|
|
// /Contents is optional for pages, and some very damaged files may have pages that are
|
|
|
|
// invalid in other ways.
|
|
|
|
return;
|
|
|
|
}
|
2022-08-06 18:52:07 +00:00
|
|
|
// Should not be possible for a page object to not have an owning PDF unless it was manually
|
|
|
|
// constructed in some incorrect way. However, it can happen in a PDF file whose page structure
|
|
|
|
// is direct, which is against spec but still possible to hand construct, as in fuzz issue
|
|
|
|
// 27393.
|
|
|
|
QPDF& qpdf = getQPDF("coalesceContentStreams called on object with no associated PDF file");
|
|
|
|
|
2022-09-07 15:29:17 +00:00
|
|
|
QPDFObjectHandle new_contents = newStream(&qpdf);
|
2018-01-31 14:47:58 +00:00
|
|
|
this->replaceKey("/Contents", new_contents);
|
|
|
|
|
2022-04-09 18:35:56 +00:00
|
|
|
auto provider = std::shared_ptr<StreamDataProvider>(new CoalesceProvider(*this, contents));
|
2018-01-31 14:47:58 +00:00
|
|
|
new_contents.replaceStreamData(provider, newNull(), newNull());
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
std::string
|
|
|
|
QPDFObjectHandle::unparse()
|
|
|
|
{
|
|
|
|
std::string result;
|
|
|
|
if (this->isIndirect()) {
|
2022-07-16 10:21:11 +00:00
|
|
|
result = getObjGen().unparse(' ') + " R";
|
2008-04-29 12:55:25 +00:00
|
|
|
} else {
|
2022-02-08 14:18:08 +00:00
|
|
|
result = unparseResolved();
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string
|
|
|
|
QPDFObjectHandle::unparseResolved()
|
|
|
|
{
|
2022-06-25 14:59:39 +00:00
|
|
|
if (!dereference()) {
|
|
|
|
throw std::logic_error("attempted to dereference an uninitialized QPDFObjectHandle");
|
2012-07-08 18:19:19 +00:00
|
|
|
}
|
2022-08-02 20:35:04 +00:00
|
|
|
return obj->unparse();
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2018-06-21 18:03:45 +00:00
|
|
|
std::string
|
|
|
|
QPDFObjectHandle::unparseBinary()
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
auto str = asString();
|
|
|
|
if (str) {
|
|
|
|
return str->unparse(true);
|
2018-06-21 18:03:45 +00:00
|
|
|
} else {
|
|
|
|
return unparse();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-07 11:53:45 +00:00
|
|
|
// Deprecated versionless getJSON to be removed in qpdf 12
|
2018-12-17 22:40:29 +00:00
|
|
|
JSON
|
|
|
|
QPDFObjectHandle::getJSON(bool dereference_indirect)
|
2022-05-07 11:53:45 +00:00
|
|
|
{
|
|
|
|
return getJSON(1, dereference_indirect);
|
|
|
|
}
|
|
|
|
|
|
|
|
JSON
|
|
|
|
QPDFObjectHandle::getJSON(int json_version, bool dereference_indirect)
|
2018-12-17 22:40:29 +00:00
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
if ((!dereference_indirect) && isIndirect()) {
|
2018-12-17 22:40:29 +00:00
|
|
|
return JSON::makeString(unparse());
|
2022-06-25 14:59:39 +00:00
|
|
|
} else if (!dereference()) {
|
|
|
|
throw std::logic_error("attempted to dereference an uninitialized QPDFObjectHandle");
|
2018-12-17 22:40:29 +00:00
|
|
|
} else {
|
2024-02-12 18:40:21 +00:00
|
|
|
Pl_Buffer p{"json"};
|
|
|
|
JSON::Writer jw{&p, 0};
|
|
|
|
writeJSON(json_version, jw, dereference_indirect);
|
|
|
|
p.finish();
|
|
|
|
return JSON::parse(p.getString());
|
2018-12-17 22:40:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-09 13:09:08 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::writeJSON(int json_version, JSON::Writer& p, bool dereference_indirect)
|
|
|
|
{
|
|
|
|
if (!dereference_indirect && isIndirect()) {
|
|
|
|
p << "\"" << getObjGen().unparse(' ') << " R\"";
|
|
|
|
} else if (!dereference()) {
|
|
|
|
throw std::logic_error("attempted to dereference an uninitialized QPDFObjectHandle");
|
|
|
|
} else {
|
|
|
|
obj->writeJSON(json_version, p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-07 15:12:15 +00:00
|
|
|
JSON
|
|
|
|
QPDFObjectHandle::getStreamJSON(
|
|
|
|
int json_version,
|
2022-05-07 17:33:45 +00:00
|
|
|
qpdf_json_stream_data_e json_data,
|
2022-05-07 15:12:15 +00:00
|
|
|
qpdf_stream_decode_level_e decode_level,
|
|
|
|
Pipeline* p,
|
|
|
|
std::string const& data_filename)
|
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
return asStreamWithAssert()->getStreamJSON(
|
2022-05-07 15:12:15 +00:00
|
|
|
json_version, json_data, decode_level, p, data_filename);
|
|
|
|
}
|
|
|
|
|
2018-12-17 22:36:06 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::wrapInArray()
|
|
|
|
{
|
|
|
|
if (isArray()) {
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
QPDFObjectHandle result = QPDFObjectHandle::newArray();
|
|
|
|
result.appendItem(*this);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-07-21 13:00:06 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::parse(std::string const& object_str, std::string const& object_description)
|
2021-02-15 16:32:56 +00:00
|
|
|
{
|
|
|
|
return parse(nullptr, object_str, object_description);
|
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::parse(
|
|
|
|
QPDF* context, std::string const& object_str, std::string const& object_description)
|
2012-07-21 13:00:06 +00:00
|
|
|
{
|
2022-02-06 16:40:24 +00:00
|
|
|
auto input = std::shared_ptr<InputSource>(new BufferInputSource("parsed object", object_str));
|
2012-07-21 13:00:06 +00:00
|
|
|
QPDFTokenizer tokenizer;
|
|
|
|
bool empty = false;
|
2022-07-26 11:37:50 +00:00
|
|
|
QPDFObjectHandle result = parse(input, object_description, tokenizer, empty, nullptr, context);
|
2019-06-21 03:35:23 +00:00
|
|
|
size_t offset = QIntC::to_size(input->tell());
|
2012-07-21 13:00:06 +00:00
|
|
|
while (offset < object_str.length()) {
|
2013-10-05 23:42:39 +00:00
|
|
|
if (!isspace(object_str.at(offset))) {
|
2012-07-21 13:00:06 +00:00
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle trailing data in parse");
|
|
|
|
throw QPDFExc(
|
|
|
|
qpdf_e_damaged_pdf,
|
|
|
|
input->getName(),
|
|
|
|
object_description,
|
|
|
|
input->getLastOffset(),
|
|
|
|
"trailing data found parsing object from string");
|
|
|
|
}
|
|
|
|
++offset;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-01-20 20:26:45 +00:00
|
|
|
void
|
2018-01-31 02:25:51 +00:00
|
|
|
QPDFObjectHandle::pipePageContents(Pipeline* p)
|
2013-01-20 20:26:45 +00:00
|
|
|
{
|
2022-07-16 10:21:11 +00:00
|
|
|
std::string description = "page object " + getObjGen().unparse(' ');
|
2018-01-31 02:25:51 +00:00
|
|
|
std::string all_description;
|
|
|
|
this->getKey("/Contents").pipeContentStreams(p, description, all_description);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::pipeContentStreams(
|
|
|
|
Pipeline* p, std::string const& description, std::string& all_description)
|
|
|
|
{
|
|
|
|
std::vector<QPDFObjectHandle> streams =
|
|
|
|
arrayOrStreamToStreamArray(description, all_description);
|
2020-10-23 10:40:27 +00:00
|
|
|
bool need_newline = false;
|
2021-01-02 17:05:09 +00:00
|
|
|
Pl_Buffer buf("concatenated content stream buffer");
|
2022-04-30 17:23:18 +00:00
|
|
|
for (auto stream: streams) {
|
2020-10-23 10:40:27 +00:00
|
|
|
if (need_newline) {
|
2022-05-03 22:09:49 +00:00
|
|
|
buf.writeCStr("\n");
|
2020-10-23 10:40:27 +00:00
|
|
|
}
|
2021-01-02 17:05:09 +00:00
|
|
|
LastChar lc(&buf);
|
2020-10-23 10:40:27 +00:00
|
|
|
if (!stream.pipeStreamData(&lc, 0, qpdf_dl_specialized)) {
|
2018-01-31 02:25:51 +00:00
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle errors in parsecontent");
|
2018-06-22 14:44:08 +00:00
|
|
|
throw QPDFExc(
|
|
|
|
qpdf_e_damaged_pdf,
|
|
|
|
"content stream",
|
2022-07-16 10:21:11 +00:00
|
|
|
"content stream object " + stream.getObjGen().unparse(' '),
|
2020-04-16 15:43:37 +00:00
|
|
|
0,
|
2018-06-22 14:44:08 +00:00
|
|
|
"errors while decoding content stream");
|
2013-03-03 20:48:31 +00:00
|
|
|
}
|
2020-10-23 10:40:27 +00:00
|
|
|
lc.finish();
|
|
|
|
need_newline = (lc.getLastChar() != static_cast<unsigned char>('\n'));
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle need_newline", need_newline ? 0 : 1);
|
2013-01-20 20:26:45 +00:00
|
|
|
}
|
2023-11-16 16:26:04 +00:00
|
|
|
p->writeString(buf.getString());
|
2021-01-02 17:05:09 +00:00
|
|
|
p->finish();
|
2018-01-31 02:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::parsePageContents(ParserCallbacks* callbacks)
|
|
|
|
{
|
2022-07-16 10:21:11 +00:00
|
|
|
std::string description = "page object " + getObjGen().unparse(' ');
|
2018-01-31 02:25:51 +00:00
|
|
|
this->getKey("/Contents").parseContentStream_internal(description, callbacks);
|
|
|
|
}
|
|
|
|
|
2021-01-02 19:05:17 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::parseAsContents(ParserCallbacks* callbacks)
|
|
|
|
{
|
2022-07-16 10:21:11 +00:00
|
|
|
std::string description = "object " + getObjGen().unparse(' ');
|
2021-01-02 19:05:17 +00:00
|
|
|
this->parseContentStream_internal(description, callbacks);
|
|
|
|
}
|
|
|
|
|
2018-02-11 20:41:02 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::filterPageContents(TokenFilter* filter, Pipeline* next)
|
|
|
|
{
|
2022-07-16 10:21:11 +00:00
|
|
|
auto description = "token filter for page object " + getObjGen().unparse(' ');
|
2018-02-16 01:45:19 +00:00
|
|
|
Pl_QPDFTokenizer token_pipeline(description.c_str(), filter, next);
|
2018-02-11 20:41:02 +00:00
|
|
|
this->pipePageContents(&token_pipeline);
|
|
|
|
}
|
|
|
|
|
2020-03-31 16:28:54 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::filterAsContents(TokenFilter* filter, Pipeline* next)
|
|
|
|
{
|
2022-07-16 10:21:11 +00:00
|
|
|
auto description = "token filter for object " + getObjGen().unparse(' ');
|
2020-03-31 16:28:54 +00:00
|
|
|
Pl_QPDFTokenizer token_pipeline(description.c_str(), filter, next);
|
|
|
|
this->pipeStreamData(&token_pipeline, 0, qpdf_dl_specialized);
|
|
|
|
}
|
|
|
|
|
2018-01-31 02:25:51 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::parseContentStream(QPDFObjectHandle stream_or_array, ParserCallbacks* callbacks)
|
|
|
|
{
|
|
|
|
stream_or_array.parseContentStream_internal("content stream objects", callbacks);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::parseContentStream_internal(
|
|
|
|
std::string const& description, ParserCallbacks* callbacks)
|
|
|
|
{
|
|
|
|
Pl_Buffer buf("concatenated stream data buffer");
|
|
|
|
std::string all_description;
|
|
|
|
pipeContentStreams(&buf, description, all_description);
|
2022-02-06 16:40:24 +00:00
|
|
|
auto stream_data = buf.getBufferSharedPointer();
|
2019-08-22 23:16:25 +00:00
|
|
|
callbacks->contentSize(stream_data->getSize());
|
2017-07-29 14:40:31 +00:00
|
|
|
try {
|
2021-03-04 20:47:51 +00:00
|
|
|
parseContentStream_data(stream_data, all_description, callbacks, getOwningQPDF());
|
2017-07-29 14:40:31 +00:00
|
|
|
} catch (TerminateParsing&) {
|
|
|
|
return;
|
|
|
|
}
|
2013-01-20 20:26:45 +00:00
|
|
|
callbacks->handleEOF();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-01-31 02:25:51 +00:00
|
|
|
QPDFObjectHandle::parseContentStream_data(
|
2022-04-09 18:35:56 +00:00
|
|
|
std::shared_ptr<Buffer> stream_data,
|
2018-01-31 02:25:51 +00:00
|
|
|
std::string const& description,
|
2019-08-19 01:26:19 +00:00
|
|
|
ParserCallbacks* callbacks,
|
|
|
|
QPDF* context)
|
2013-01-20 20:26:45 +00:00
|
|
|
{
|
2020-04-16 15:43:37 +00:00
|
|
|
size_t stream_length = stream_data->getSize();
|
2022-04-09 18:35:56 +00:00
|
|
|
auto input =
|
2022-02-06 16:40:24 +00:00
|
|
|
std::shared_ptr<InputSource>(new BufferInputSource(description, stream_data.get()));
|
2013-01-20 20:26:45 +00:00
|
|
|
QPDFTokenizer tokenizer;
|
|
|
|
tokenizer.allowEOF();
|
|
|
|
bool empty = false;
|
2020-04-16 15:43:37 +00:00
|
|
|
while (QIntC::to_size(input->tell()) < stream_length) {
|
2019-08-22 23:16:25 +00:00
|
|
|
// Read a token and seek to the beginning. The offset we get from this process is the
|
|
|
|
// beginning of the next non-ignorable (space, comment) token. This way, the offset and
|
|
|
|
// don't including ignorable content.
|
|
|
|
tokenizer.readToken(input, "content", true);
|
|
|
|
qpdf_offset_t offset = input->getLastOffset();
|
|
|
|
input->seek(offset, SEEK_SET);
|
2022-08-16 12:59:32 +00:00
|
|
|
auto obj = QPDFParser(input, "content", tokenizer, nullptr, context).parse(empty, true);
|
2013-01-20 20:26:45 +00:00
|
|
|
if (!obj.isInitialized()) {
|
|
|
|
// EOF
|
|
|
|
break;
|
|
|
|
}
|
2019-08-22 23:16:25 +00:00
|
|
|
size_t length = QIntC::to_size(input->tell() - offset);
|
2013-01-20 20:26:45 +00:00
|
|
|
|
2019-08-22 23:16:25 +00:00
|
|
|
callbacks->handleObject(obj, QIntC::to_size(offset), length);
|
2013-01-23 14:38:05 +00:00
|
|
|
if (obj.isOperator() && (obj.getOperatorValue() == "ID")) {
|
2013-01-20 20:26:45 +00:00
|
|
|
// Discard next character; it is the space after ID that terminated the token. Read
|
|
|
|
// until end of inline image.
|
|
|
|
char ch;
|
|
|
|
input->read(&ch, 1);
|
2019-01-30 19:20:56 +00:00
|
|
|
tokenizer.expectInlineImage(input);
|
2018-02-16 02:36:19 +00:00
|
|
|
QPDFTokenizer::Token t = tokenizer.readToken(input, description, true);
|
2019-08-22 23:16:25 +00:00
|
|
|
offset = input->getLastOffset();
|
|
|
|
length = QIntC::to_size(input->tell() - offset);
|
2018-01-30 02:34:24 +00:00
|
|
|
if (t.getType() == QPDFTokenizer::tt_bad) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle EOF in inline image");
|
2019-08-19 01:26:19 +00:00
|
|
|
warn(
|
|
|
|
context,
|
|
|
|
QPDFExc(
|
|
|
|
qpdf_e_damaged_pdf,
|
|
|
|
input->getName(),
|
|
|
|
"stream data",
|
|
|
|
input->tell(),
|
|
|
|
"EOF found while reading inline image"));
|
2018-01-30 02:34:24 +00:00
|
|
|
} else {
|
2019-01-31 20:51:52 +00:00
|
|
|
std::string inline_image = t.getValue();
|
2018-01-30 02:34:24 +00:00
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle inline image token");
|
|
|
|
callbacks->handleObject(
|
2019-08-22 23:16:25 +00:00
|
|
|
QPDFObjectHandle::newInlineImage(inline_image), QIntC::to_size(offset), length);
|
2013-01-20 20:26:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-02 23:21:34 +00:00
|
|
|
void
|
2022-04-09 18:35:56 +00:00
|
|
|
QPDFObjectHandle::addContentTokenFilter(std::shared_ptr<TokenFilter> filter)
|
2018-02-02 23:21:34 +00:00
|
|
|
{
|
|
|
|
coalesceContentStreams();
|
|
|
|
this->getKey("/Contents").addTokenFilter(filter);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-04-09 18:35:56 +00:00
|
|
|
QPDFObjectHandle::addTokenFilter(std::shared_ptr<TokenFilter> filter)
|
2018-02-02 23:21:34 +00:00
|
|
|
{
|
2022-08-02 18:13:29 +00:00
|
|
|
return asStreamWithAssert()->addTokenFilter(filter);
|
2018-02-02 23:21:34 +00:00
|
|
|
}
|
|
|
|
|
2012-07-21 13:00:06 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::parse(
|
2022-04-09 18:35:56 +00:00
|
|
|
std::shared_ptr<InputSource> input,
|
2012-07-21 13:00:06 +00:00
|
|
|
std::string const& object_description,
|
|
|
|
QPDFTokenizer& tokenizer,
|
|
|
|
bool& empty,
|
|
|
|
StringDecrypter* decrypter,
|
|
|
|
QPDF* context)
|
|
|
|
{
|
2022-08-16 12:59:32 +00:00
|
|
|
return QPDFParser(input, object_description, tokenizer, decrypter, context).parse(empty, false);
|
2012-07-21 13:00:06 +00:00
|
|
|
}
|
|
|
|
|
2019-10-02 11:30:53 +00:00
|
|
|
qpdf_offset_t
|
|
|
|
QPDFObjectHandle::getParsedOffset()
|
|
|
|
{
|
2022-06-25 14:59:39 +00:00
|
|
|
if (dereference()) {
|
|
|
|
return this->obj->getParsedOffset();
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
2019-10-02 11:30:53 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newBool(bool value)
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_Bool::create(value)};
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newNull()
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_Null::create()};
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
2012-06-23 19:08:21 +00:00
|
|
|
QPDFObjectHandle::newInteger(long long value)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_Integer::create(value)};
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newReal(std::string const& value)
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_Real::create(value)};
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2021-02-12 08:44:12 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newReal(double value, int decimal_places, bool trim_trailing_zeroes)
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_Real::create(value, decimal_places, trim_trailing_zeroes)};
|
2012-06-27 03:34:15 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newName(std::string const& name)
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_Name::create(name)};
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newString(std::string const& str)
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_String::create(str)};
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2018-06-21 18:03:45 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newUnicodeString(std::string const& utf8_str)
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_String::create_utf16(utf8_str)};
|
2018-06-21 18:03:45 +00:00
|
|
|
}
|
|
|
|
|
2013-01-20 19:55:01 +00:00
|
|
|
QPDFObjectHandle
|
2013-01-23 14:38:05 +00:00
|
|
|
QPDFObjectHandle::newOperator(std::string const& value)
|
2013-01-20 19:55:01 +00:00
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_Operator::create(value)};
|
2013-01-20 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newInlineImage(std::string const& value)
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_InlineImage::create(value)};
|
2013-01-20 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
2012-06-22 13:46:33 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newArray()
|
|
|
|
{
|
|
|
|
return newArray(std::vector<QPDFObjectHandle>());
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newArray(std::vector<QPDFObjectHandle> const& items)
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_Array::create(items)};
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2018-06-19 15:00:15 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newArray(Rectangle const& rect)
|
|
|
|
{
|
2023-05-27 22:39:43 +00:00
|
|
|
return newArray({newReal(rect.llx), newReal(rect.lly), newReal(rect.urx), newReal(rect.ury)});
|
2018-06-19 15:00:15 +00:00
|
|
|
}
|
|
|
|
|
2018-12-25 00:29:30 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newArray(Matrix const& matrix)
|
|
|
|
{
|
2023-05-27 22:39:43 +00:00
|
|
|
return newArray(
|
|
|
|
{newReal(matrix.a),
|
|
|
|
newReal(matrix.b),
|
|
|
|
newReal(matrix.c),
|
|
|
|
newReal(matrix.d),
|
|
|
|
newReal(matrix.e),
|
|
|
|
newReal(matrix.f)});
|
2018-12-25 00:29:30 +00:00
|
|
|
}
|
|
|
|
|
2021-02-21 10:11:31 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newArray(QPDFMatrix const& matrix)
|
|
|
|
{
|
2023-05-27 22:39:43 +00:00
|
|
|
return newArray(
|
|
|
|
{newReal(matrix.a),
|
|
|
|
newReal(matrix.b),
|
|
|
|
newReal(matrix.c),
|
|
|
|
newReal(matrix.d),
|
|
|
|
newReal(matrix.e),
|
|
|
|
newReal(matrix.f)});
|
2021-02-21 10:11:31 +00:00
|
|
|
}
|
|
|
|
|
2018-06-19 15:00:15 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newFromRectangle(Rectangle const& rect)
|
|
|
|
{
|
|
|
|
return newArray(rect);
|
|
|
|
}
|
|
|
|
|
2018-12-25 00:29:30 +00:00
|
|
|
QPDFObjectHandle
|
2021-02-21 10:11:31 +00:00
|
|
|
QPDFObjectHandle::newFromMatrix(Matrix const& m)
|
2018-12-25 00:29:30 +00:00
|
|
|
{
|
2021-02-21 10:11:31 +00:00
|
|
|
return newArray(m);
|
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newFromMatrix(QPDFMatrix const& m)
|
|
|
|
{
|
|
|
|
return newArray(m);
|
2018-12-25 00:29:30 +00:00
|
|
|
}
|
|
|
|
|
2012-06-22 13:46:33 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newDictionary()
|
|
|
|
{
|
|
|
|
return newDictionary(std::map<std::string, QPDFObjectHandle>());
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newDictionary(std::map<std::string, QPDFObjectHandle> const& items)
|
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {QPDF_Dictionary::create(items)};
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2010-08-05 20:20:52 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newStream(QPDF* qpdf)
|
|
|
|
{
|
2022-07-26 11:37:50 +00:00
|
|
|
if (qpdf == nullptr) {
|
2019-08-24 18:48:26 +00:00
|
|
|
throw std::runtime_error("attempt to create stream in null qpdf object");
|
|
|
|
}
|
2010-08-05 20:20:52 +00:00
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle newStream");
|
2022-09-26 17:27:25 +00:00
|
|
|
return qpdf->newStream();
|
2010-08-05 20:20:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPDFObjectHandle
|
2022-04-09 18:35:56 +00:00
|
|
|
QPDFObjectHandle::newStream(QPDF* qpdf, std::shared_ptr<Buffer> data)
|
2010-08-05 20:20:52 +00:00
|
|
|
{
|
2022-09-26 17:27:25 +00:00
|
|
|
if (qpdf == nullptr) {
|
|
|
|
throw std::runtime_error("attempt to create stream in null qpdf object");
|
|
|
|
}
|
2010-08-05 20:20:52 +00:00
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle newStream with data");
|
2022-09-26 17:27:25 +00:00
|
|
|
return qpdf->newStream(data);
|
2010-08-05 20:20:52 +00:00
|
|
|
}
|
|
|
|
|
2012-06-21 20:14:34 +00:00
|
|
|
QPDFObjectHandle
|
2012-06-27 04:00:58 +00:00
|
|
|
QPDFObjectHandle::newStream(QPDF* qpdf, std::string const& data)
|
|
|
|
{
|
2022-09-26 17:27:25 +00:00
|
|
|
if (qpdf == nullptr) {
|
|
|
|
throw std::runtime_error("attempt to create stream in null qpdf object");
|
|
|
|
}
|
2012-06-27 14:43:27 +00:00
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle newStream with string");
|
2022-09-26 17:27:25 +00:00
|
|
|
return qpdf->newStream(data);
|
2012-06-27 04:00:58 +00:00
|
|
|
}
|
|
|
|
|
2012-07-08 18:19:19 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::newReserved(QPDF* qpdf)
|
|
|
|
{
|
2023-05-20 18:56:01 +00:00
|
|
|
if (qpdf == nullptr) {
|
|
|
|
throw std::runtime_error("attempt to create reserved object in null qpdf object");
|
|
|
|
}
|
|
|
|
return qpdf->newReserved();
|
2022-05-15 17:10:10 +00:00
|
|
|
}
|
|
|
|
|
2018-02-16 22:25:27 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::setObjectDescription(QPDF* owning_qpdf, std::string const& object_description)
|
|
|
|
{
|
2021-02-25 10:38:52 +00:00
|
|
|
// This is called during parsing on newly created direct objects, so we can't call dereference()
|
|
|
|
// here.
|
2022-06-25 14:59:39 +00:00
|
|
|
if (isInitialized() && obj.get()) {
|
2023-02-15 10:11:38 +00:00
|
|
|
auto descr = std::make_shared<QPDFValue::Description>(object_description);
|
2022-12-16 14:53:47 +00:00
|
|
|
obj->setDescription(owning_qpdf, descr);
|
2018-02-16 22:25:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::hasObjectDescription()
|
|
|
|
{
|
2022-06-25 14:59:39 +00:00
|
|
|
return dereference() && obj.get() && obj->hasDescription();
|
2018-02-16 22:25:27 +00:00
|
|
|
}
|
|
|
|
|
2012-06-27 04:00:58 +00:00
|
|
|
QPDFObjectHandle
|
2012-06-21 20:14:34 +00:00
|
|
|
QPDFObjectHandle::shallowCopy()
|
2020-04-02 21:52:21 +00:00
|
|
|
{
|
2022-11-14 22:06:04 +00:00
|
|
|
if (!dereference()) {
|
|
|
|
throw std::logic_error("operation attempted on uninitialized QPDFObjectHandle");
|
2022-11-20 12:30:05 +00:00
|
|
|
}
|
2023-05-27 20:04:32 +00:00
|
|
|
return {obj->copy()};
|
2022-11-20 12:30:05 +00:00
|
|
|
}
|
|
|
|
|
2020-04-02 21:52:21 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::unsafeShallowCopy()
|
|
|
|
{
|
2022-11-14 18:03:03 +00:00
|
|
|
if (!dereference()) {
|
|
|
|
throw std::logic_error("operation attempted on uninitialized QPDFObjectHandle");
|
2012-06-21 20:14:34 +00:00
|
|
|
}
|
2023-05-27 20:04:32 +00:00
|
|
|
return {obj->copy(true)};
|
2012-06-21 20:14:34 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
void
|
2023-01-05 15:29:38 +00:00
|
|
|
QPDFObjectHandle::makeDirect(QPDFObjGen::set& visited, bool stop_at_streams)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
|
|
|
assertInitialized();
|
|
|
|
|
2022-06-23 18:53:05 +00:00
|
|
|
auto cur_og = getObjGen();
|
2023-01-05 15:29:38 +00:00
|
|
|
if (!visited.add(cur_og)) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle makeDirect loop");
|
|
|
|
throw std::runtime_error("loop detected while converting object from indirect to direct");
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2022-06-27 16:50:35 +00:00
|
|
|
if (isBool() || isInteger() || isName() || isNull() || isReal() || isString()) {
|
2022-11-15 12:00:51 +00:00
|
|
|
this->obj = obj->copy(true);
|
2008-04-29 12:55:25 +00:00
|
|
|
} else if (isArray()) {
|
2022-02-08 14:18:08 +00:00
|
|
|
std::vector<QPDFObjectHandle> items;
|
2022-08-02 18:13:29 +00:00
|
|
|
auto array = asArray();
|
2023-03-24 12:58:36 +00:00
|
|
|
int n = array->size();
|
2022-02-08 14:18:08 +00:00
|
|
|
for (int i = 0; i < n; ++i) {
|
2023-03-24 15:01:40 +00:00
|
|
|
items.push_back(array->at(i));
|
2022-11-15 12:00:51 +00:00
|
|
|
items.back().makeDirect(visited, stop_at_streams);
|
2022-02-08 14:18:08 +00:00
|
|
|
}
|
2022-11-15 12:00:51 +00:00
|
|
|
this->obj = QPDF_Array::create(items);
|
2008-04-29 12:55:25 +00:00
|
|
|
} else if (isDictionary()) {
|
2022-02-08 14:18:08 +00:00
|
|
|
std::map<std::string, QPDFObjectHandle> items;
|
2022-08-02 18:13:29 +00:00
|
|
|
auto dict = asDictionary();
|
2022-05-21 14:18:15 +00:00
|
|
|
for (auto const& key: getKeys()) {
|
2022-08-02 18:13:29 +00:00
|
|
|
items[key] = dict->getKey(key);
|
2022-11-15 12:00:51 +00:00
|
|
|
items[key].makeDirect(visited, stop_at_streams);
|
2022-02-08 14:18:08 +00:00
|
|
|
}
|
2022-11-15 12:00:51 +00:00
|
|
|
this->obj = QPDF_Dictionary::create(items);
|
|
|
|
} else if (isStream()) {
|
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle copy stream", stop_at_streams ? 0 : 1);
|
|
|
|
if (!stop_at_streams) {
|
|
|
|
throw std::runtime_error("attempt to make a stream into a direct object");
|
|
|
|
}
|
|
|
|
} else if (isReserved()) {
|
|
|
|
throw std::logic_error(
|
|
|
|
"QPDFObjectHandle: attempting to make a reserved object handle direct");
|
2008-04-29 12:55:25 +00:00
|
|
|
} else {
|
2022-02-08 14:18:08 +00:00
|
|
|
throw std::logic_error("QPDFObjectHandle::makeDirectInternal: unknown object type");
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 15:29:38 +00:00
|
|
|
visited.erase(cur_og);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2021-02-21 11:35:53 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
QPDFObjectHandle::copyStream()
|
|
|
|
{
|
|
|
|
assertStream();
|
|
|
|
QPDFObjectHandle result = newStream(this->getOwningQPDF());
|
|
|
|
QPDFObjectHandle dict = result.getDict();
|
|
|
|
QPDFObjectHandle old_dict = getDict();
|
|
|
|
for (auto& iter: QPDFDictItems(old_dict)) {
|
|
|
|
if (iter.second.isIndirect()) {
|
|
|
|
dict.replaceKey(iter.first, iter.second);
|
|
|
|
} else {
|
|
|
|
dict.replaceKey(iter.first, iter.second.shallowCopy());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
QPDF::StreamCopier::copyStreamData(getOwningQPDF(), result, *this);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-12-22 14:31:26 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::makeDirect(bool allow_streams)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2023-01-05 15:29:38 +00:00
|
|
|
QPDFObjGen::set visited;
|
2022-11-15 12:00:51 +00:00
|
|
|
makeDirect(visited, allow_streams);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertInitialized() const
|
|
|
|
{
|
2022-08-09 20:34:34 +00:00
|
|
|
if (!isInitialized()) {
|
2022-02-08 14:18:08 +00:00
|
|
|
throw std::logic_error("operation attempted on uninitialized QPDFObjectHandle");
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-02-16 22:25:27 +00:00
|
|
|
QPDFObjectHandle::typeWarning(char const* expected_type, std::string const& warning)
|
|
|
|
{
|
2021-12-10 14:34:42 +00:00
|
|
|
QPDF* context = nullptr;
|
2018-02-16 22:25:27 +00:00
|
|
|
std::string description;
|
2022-06-25 14:59:39 +00:00
|
|
|
// Type checks above guarantee that the object has been dereferenced. Nevertheless, dereference
|
|
|
|
// throws exceptions in the test suite
|
|
|
|
if (!dereference()) {
|
|
|
|
throw std::logic_error("attempted to dereference an uninitialized QPDFObjectHandle");
|
|
|
|
}
|
2021-12-10 14:34:42 +00:00
|
|
|
this->obj->getDescription(context, description);
|
|
|
|
// Null context handled by warn
|
|
|
|
warn(
|
|
|
|
context,
|
|
|
|
QPDFExc(
|
|
|
|
qpdf_e_object,
|
2018-02-16 22:25:27 +00:00
|
|
|
"",
|
|
|
|
description,
|
|
|
|
0,
|
|
|
|
std::string("operation for ") + expected_type + " attempted on object of type " +
|
|
|
|
getTypeName() + ": " + warning));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-06-18 14:33:27 +00:00
|
|
|
QPDFObjectHandle::warnIfPossible(std::string const& warning)
|
2018-02-16 22:25:27 +00:00
|
|
|
{
|
2022-07-26 11:37:50 +00:00
|
|
|
QPDF* context = nullptr;
|
2018-02-16 22:25:27 +00:00
|
|
|
std::string description;
|
2022-06-25 14:59:39 +00:00
|
|
|
if (dereference() && obj->getDescription(context, description)) {
|
2018-02-16 22:25:27 +00:00
|
|
|
warn(context, QPDFExc(qpdf_e_damaged_pdf, "", description, 0, warning));
|
2022-06-18 14:33:27 +00:00
|
|
|
} else {
|
|
|
|
*QPDFLogger::defaultLogger()->getError() << warning << "\n";
|
2018-02-16 22:25:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-19 15:00:15 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::objectWarning(std::string const& warning)
|
|
|
|
{
|
2021-12-10 14:34:42 +00:00
|
|
|
QPDF* context = nullptr;
|
|
|
|
std::string description;
|
2022-06-25 14:59:39 +00:00
|
|
|
// Type checks above guarantee that the object has been dereferenced.
|
2021-12-10 14:34:42 +00:00
|
|
|
this->obj->getDescription(context, description);
|
|
|
|
// Null context handled by warn
|
|
|
|
warn(context, QPDFExc(qpdf_e_object, "", description, 0, warning));
|
2018-06-19 15:00:15 +00:00
|
|
|
}
|
|
|
|
|
2018-02-16 22:25:27 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertType(char const* type_name, bool istype)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
|
|
|
if (!istype) {
|
2022-02-08 14:18:08 +00:00
|
|
|
throw std::runtime_error(
|
|
|
|
std::string("operation for ") + type_name + " attempted on object of type " +
|
2019-06-25 16:30:01 +00:00
|
|
|
getTypeName());
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-18 22:58:30 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertNull()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("null", isNull());
|
2012-06-18 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertBool()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("boolean", isBool());
|
2012-06-18 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertInteger()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("integer", isInteger());
|
2012-06-18 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertReal()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("real", isReal());
|
2012-06-18 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertName()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("name", isName());
|
2012-06-18 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertString()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("string", isString());
|
2012-06-18 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
2013-01-20 19:55:01 +00:00
|
|
|
void
|
2013-01-23 14:38:05 +00:00
|
|
|
QPDFObjectHandle::assertOperator()
|
2013-01-20 19:55:01 +00:00
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("operator", isOperator());
|
2013-01-20 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertInlineImage()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("inlineimage", isInlineImage());
|
2013-01-20 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
2012-06-18 22:58:30 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertArray()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("array", isArray());
|
2012-06-18 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertDictionary()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("dictionary", isDictionary());
|
2012-06-18 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertStream()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("stream", isStream());
|
2012-06-18 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
2012-07-08 18:19:19 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertReserved()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("reserved", isReserved());
|
2012-07-08 18:19:19 +00:00
|
|
|
}
|
|
|
|
|
2012-07-11 19:29:41 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertIndirect()
|
|
|
|
{
|
|
|
|
if (!isIndirect()) {
|
|
|
|
throw std::logic_error("operation for indirect object attempted on direct object");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-07 22:40:46 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertScalar()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("scalar", isScalar());
|
2012-07-07 22:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertNumber()
|
|
|
|
{
|
2018-02-16 22:25:27 +00:00
|
|
|
assertType("number", isNumber());
|
2012-07-07 22:40:46 +00:00
|
|
|
}
|
|
|
|
|
2012-07-11 19:29:41 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isPageObject()
|
|
|
|
{
|
2018-03-06 16:25:09 +00:00
|
|
|
// See comments in QPDFObjectHandle.hh.
|
2021-02-21 00:16:40 +00:00
|
|
|
if (getOwningQPDF() == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// getAllPages repairs /Type when traversing the page tree.
|
|
|
|
getOwningQPDF()->getAllPages();
|
2023-07-25 11:43:19 +00:00
|
|
|
return isDictionaryOfType("/Page");
|
2012-07-11 19:29:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isPagesObject()
|
|
|
|
{
|
2021-02-21 00:16:40 +00:00
|
|
|
if (getOwningQPDF() == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// getAllPages repairs /Type when traversing the page tree.
|
|
|
|
getOwningQPDF()->getAllPages();
|
2022-01-26 08:00:23 +00:00
|
|
|
return isDictionaryOfType("/Pages");
|
2012-07-11 19:29:41 +00:00
|
|
|
}
|
|
|
|
|
2020-12-31 18:05:02 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isFormXObject()
|
|
|
|
{
|
2022-02-09 13:54:33 +00:00
|
|
|
return isStreamOfType("", "/Form");
|
2020-12-31 18:05:02 +00:00
|
|
|
}
|
|
|
|
|
2021-01-01 12:31:54 +00:00
|
|
|
bool
|
|
|
|
QPDFObjectHandle::isImage(bool exclude_imagemask)
|
|
|
|
{
|
2022-01-26 08:00:23 +00:00
|
|
|
return (
|
|
|
|
isStreamOfType("", "/Image") &&
|
2021-01-01 12:31:54 +00:00
|
|
|
((!exclude_imagemask) ||
|
2022-01-26 08:00:23 +00:00
|
|
|
(!(getDict().getKey("/ImageMask").isBool() &&
|
|
|
|
getDict().getKey("/ImageMask").getBoolValue()))));
|
2021-01-01 12:31:54 +00:00
|
|
|
}
|
|
|
|
|
2021-11-04 15:55:36 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::checkOwnership(QPDFObjectHandle const& item) const
|
|
|
|
{
|
2022-08-14 10:19:00 +00:00
|
|
|
auto qpdf = getOwningQPDF();
|
|
|
|
auto item_qpdf = item.getOwningQPDF();
|
|
|
|
if ((qpdf != nullptr) && (item_qpdf != nullptr) && (qpdf != item_qpdf)) {
|
2021-11-04 15:55:36 +00:00
|
|
|
QTC::TC("qpdf", "QPDFObjectHandle check ownership");
|
|
|
|
throw std::logic_error("Attempting to add an object from a different QPDF. Use "
|
|
|
|
"QPDF::copyForeignObject to add objects from another file.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
void
|
|
|
|
QPDFObjectHandle::assertPageObject()
|
|
|
|
{
|
2012-07-11 19:29:41 +00:00
|
|
|
if (!isPageObject()) {
|
2022-02-08 14:18:08 +00:00
|
|
|
throw std::runtime_error("page operation called on non-Page object");
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-02 16:38:23 +00:00
|
|
|
inline bool
|
2008-04-29 12:55:25 +00:00
|
|
|
QPDFObjectHandle::dereference()
|
|
|
|
{
|
2022-08-09 20:34:34 +00:00
|
|
|
if (!isInitialized()) {
|
2022-06-25 14:59:39 +00:00
|
|
|
return false;
|
2021-01-29 15:17:13 +00:00
|
|
|
}
|
2022-08-14 09:50:30 +00:00
|
|
|
this->obj->resolve();
|
2022-06-25 14:59:39 +00:00
|
|
|
return true;
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
2017-07-26 18:38:49 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::warn(QPDF* qpdf, QPDFExc const& e)
|
|
|
|
{
|
|
|
|
// If parsing on behalf of a QPDF object and want to give a warning, we can warn through the
|
|
|
|
// object. If parsing for some other reason, such as an explicit creation of an object from a
|
|
|
|
// string, then just throw the exception.
|
|
|
|
if (qpdf) {
|
2021-01-16 23:35:04 +00:00
|
|
|
qpdf->warn(e);
|
2017-07-26 18:38:49 +00:00
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
2021-01-29 15:02:05 +00:00
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems::QPDFDictItems(QPDFObjectHandle const& oh) :
|
2021-01-29 15:02:05 +00:00
|
|
|
oh(oh)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator&
|
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator::operator++()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
++m->iter;
|
|
|
|
updateIValue();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator&
|
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator::operator--()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
--m->iter;
|
|
|
|
updateIValue();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator::reference
|
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator::operator*()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
updateIValue();
|
|
|
|
return this->ivalue;
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator::pointer
|
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator::operator->()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
updateIValue();
|
|
|
|
return &this->ivalue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator::operator==(iterator const& other) const
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
if (m->is_end && other.m->is_end) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (m->is_end || other.m->is_end) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return (this->ivalue.first == other.ivalue.first);
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator::iterator(QPDFObjectHandle& oh, bool for_begin) :
|
2021-01-29 15:02:05 +00:00
|
|
|
m(new Members(oh, for_begin))
|
|
|
|
{
|
|
|
|
updateIValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator::updateIValue()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
m->is_end = (m->iter == m->keys.end());
|
|
|
|
if (m->is_end) {
|
|
|
|
this->ivalue.first = "";
|
|
|
|
this->ivalue.second = QPDFObjectHandle();
|
|
|
|
} else {
|
|
|
|
this->ivalue.first = *(m->iter);
|
|
|
|
this->ivalue.second = m->oh.getKey(this->ivalue.first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator::Members::Members(QPDFObjectHandle& oh, bool for_begin) :
|
2021-01-29 15:02:05 +00:00
|
|
|
oh(oh)
|
|
|
|
{
|
|
|
|
this->keys = oh.getKeys();
|
|
|
|
this->iter = for_begin ? this->keys.begin() : this->keys.end();
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator
|
|
|
|
QPDFObjectHandle::QPDFDictItems::begin()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {oh, true};
|
2021-01-29 15:02:05 +00:00
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFDictItems::iterator
|
|
|
|
QPDFObjectHandle::QPDFDictItems::end()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {oh, false};
|
2021-01-29 15:02:05 +00:00
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems::QPDFArrayItems(QPDFObjectHandle const& oh) :
|
2021-01-29 15:02:05 +00:00
|
|
|
oh(oh)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator&
|
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator::operator++()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
if (!m->is_end) {
|
|
|
|
++m->item_number;
|
|
|
|
updateIValue();
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator&
|
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator::operator--()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
if (m->item_number > 0) {
|
|
|
|
--m->item_number;
|
|
|
|
updateIValue();
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator::reference
|
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator::operator*()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
updateIValue();
|
|
|
|
return this->ivalue;
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator::pointer
|
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator::operator->()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
updateIValue();
|
|
|
|
return &this->ivalue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator::operator==(iterator const& other) const
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
return (m->item_number == other.m->item_number);
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator::iterator(QPDFObjectHandle& oh, bool for_begin) :
|
2021-01-29 15:02:05 +00:00
|
|
|
m(new Members(oh, for_begin))
|
|
|
|
{
|
|
|
|
updateIValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator::updateIValue()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
|
|
|
m->is_end = (m->item_number >= m->oh.getArrayNItems());
|
|
|
|
if (m->is_end) {
|
|
|
|
this->ivalue = QPDFObjectHandle();
|
|
|
|
} else {
|
|
|
|
this->ivalue = m->oh.getArrayItem(m->item_number);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator::Members::Members(QPDFObjectHandle& oh, bool for_begin) :
|
2021-01-29 15:02:05 +00:00
|
|
|
oh(oh)
|
|
|
|
{
|
|
|
|
this->item_number = for_begin ? 0 : oh.getArrayNItems();
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator
|
|
|
|
QPDFObjectHandle::QPDFArrayItems::begin()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {oh, true};
|
2021-01-29 15:02:05 +00:00
|
|
|
}
|
|
|
|
|
2021-02-22 16:02:18 +00:00
|
|
|
QPDFObjectHandle::QPDFArrayItems::iterator
|
|
|
|
QPDFObjectHandle::QPDFArrayItems::end()
|
2021-01-29 15:02:05 +00:00
|
|
|
{
|
2023-05-27 20:04:32 +00:00
|
|
|
return {oh, false};
|
2021-01-29 15:02:05 +00:00
|
|
|
}
|
2022-02-05 14:18:58 +00:00
|
|
|
|
2022-09-01 21:41:30 +00:00
|
|
|
QPDFObjGen
|
|
|
|
QPDFObjectHandle::getObjGen() const
|
|
|
|
{
|
|
|
|
return isInitialized() ? obj->getObjGen() : QPDFObjGen();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Indirect object accessors
|
|
|
|
QPDF*
|
2022-09-07 15:29:17 +00:00
|
|
|
QPDFObjectHandle::getOwningQPDF() const
|
|
|
|
{
|
|
|
|
return isInitialized() ? this->obj->getQPDF() : nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
QPDF&
|
|
|
|
QPDFObjectHandle::getQPDF(std::string const& error_msg) const
|
2022-09-01 21:41:30 +00:00
|
|
|
{
|
|
|
|
auto result = isInitialized() ? this->obj->getQPDF() : nullptr;
|
2022-09-07 15:29:17 +00:00
|
|
|
if (result == nullptr) {
|
2022-09-01 21:41:30 +00:00
|
|
|
throw std::runtime_error(
|
|
|
|
error_msg.empty() ? "attempt to use a null qpdf object" : error_msg);
|
|
|
|
}
|
2022-09-07 15:29:17 +00:00
|
|
|
return *result;
|
2022-09-01 21:41:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFObjectHandle::setParsedOffset(qpdf_offset_t offset)
|
|
|
|
{
|
|
|
|
// This is called during parsing on newly created direct objects,
|
|
|
|
// so we can't call dereference() here.
|
|
|
|
if (isInitialized()) {
|
|
|
|
this->obj->setParsedOffset(offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-14 11:50:59 +00:00
|
|
|
QPDFObjectHandle
|
|
|
|
operator""_qpdf(char const* v, size_t len)
|
2022-02-05 14:18:58 +00:00
|
|
|
{
|
|
|
|
return QPDFObjectHandle::parse(std::string(v, len), "QPDFObjectHandle literal");
|
|
|
|
}
|