2020-01-26 16:57:27 -05:00
|
|
|
// Copyright (c) 2005-2020 Jay Berkenbilt
|
2008-04-29 12:55:25 +00:00
|
|
|
//
|
2017-09-14 12:44:31 -04:00
|
|
|
// This file is part of qpdf.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
// Versions of qpdf prior to version 7 were released under the terms
|
|
|
|
// of version 2.0 of the Artistic License. At your option, you may
|
|
|
|
// continue to consider qpdf to be licensed under those terms. Please
|
|
|
|
// see the manual for additional information.
|
2008-04-29 12:55:25 +00:00
|
|
|
|
2018-08-12 14:07:22 -04:00
|
|
|
#ifndef QPDFOBJECT_HH
|
|
|
|
#define QPDFOBJECT_HH
|
2008-04-29 12:55:25 +00:00
|
|
|
|
2009-10-19 20:17:14 +00:00
|
|
|
#include <qpdf/DLL.h>
|
2019-10-02 20:30:53 +09:00
|
|
|
#include <qpdf/Types.h>
|
2018-02-16 17:25:27 -05:00
|
|
|
#include <qpdf/PointerHolder.hh>
|
2018-12-17 17:40:29 -05:00
|
|
|
#include <qpdf/JSON.hh>
|
2009-08-06 19:00:25 +00:00
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
#include <string>
|
|
|
|
|
2010-06-06 13:32:08 +00:00
|
|
|
class QPDF;
|
|
|
|
class QPDFObjectHandle;
|
|
|
|
|
2009-10-21 00:27:24 +00:00
|
|
|
class QPDFObject
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-02-16 17:25:27 -05:00
|
|
|
QPDFObject();
|
2013-01-22 09:57:07 -05:00
|
|
|
|
|
|
|
// Objects derived from QPDFObject are accessible through
|
|
|
|
// QPDFObjectHandle. Each object returns a unique type code that
|
|
|
|
// has one of the values in the list below. As new object types
|
|
|
|
// are added to qpdf, additional items may be added to the list,
|
|
|
|
// so code that switches on these values should take that into
|
|
|
|
// consideration.
|
|
|
|
enum object_type_e {
|
|
|
|
// Object types internal to qpdf
|
|
|
|
ot_uninitialized,
|
|
|
|
ot_reserved,
|
|
|
|
// Object types that can occur in the main document
|
|
|
|
ot_null,
|
2013-01-23 09:38:05 -05:00
|
|
|
ot_boolean,
|
2013-01-22 09:57:07 -05:00
|
|
|
ot_integer,
|
|
|
|
ot_real,
|
|
|
|
ot_string,
|
2013-01-23 09:38:05 -05:00
|
|
|
ot_name,
|
2013-01-22 09:57:07 -05:00
|
|
|
ot_array,
|
|
|
|
ot_dictionary,
|
|
|
|
ot_stream,
|
|
|
|
// Additional object types that can occur in content streams
|
2013-01-23 09:38:05 -05:00
|
|
|
ot_operator,
|
2013-01-22 09:57:07 -05:00
|
|
|
ot_inlineimage,
|
|
|
|
};
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
virtual ~QPDFObject() {}
|
|
|
|
virtual std::string unparse() = 0;
|
2018-12-17 17:40:29 -05:00
|
|
|
virtual JSON getJSON() = 0;
|
2010-06-06 13:32:08 +00:00
|
|
|
|
2013-01-22 09:57:07 -05:00
|
|
|
// Return a unique type code for the object
|
|
|
|
virtual object_type_e getTypeCode() const = 0;
|
|
|
|
|
|
|
|
// Return a string literal that describes the type, useful for
|
|
|
|
// debugging and testing
|
|
|
|
virtual char const* getTypeName() const = 0;
|
|
|
|
|
2010-06-06 13:32:08 +00:00
|
|
|
// Accessor to give specific access to non-public methods
|
|
|
|
class ObjAccessor
|
|
|
|
{
|
|
|
|
friend class QPDF;
|
|
|
|
friend class QPDFObjectHandle;
|
|
|
|
private:
|
|
|
|
static void releaseResolved(QPDFObject* o)
|
|
|
|
{
|
|
|
|
if (o)
|
|
|
|
{
|
|
|
|
o->releaseResolved();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
friend class ObjAccessor;
|
|
|
|
|
2018-02-16 17:25:27 -05:00
|
|
|
virtual void setDescription(QPDF*, std::string const&);
|
|
|
|
bool getDescription(QPDF*&, std::string&);
|
|
|
|
bool hasDescription();
|
|
|
|
|
2019-10-02 20:30:53 +09:00
|
|
|
void setParsedOffset(qpdf_offset_t offset);
|
|
|
|
qpdf_offset_t getParsedOffset();
|
|
|
|
|
2010-06-06 13:32:08 +00:00
|
|
|
protected:
|
|
|
|
virtual void releaseResolved() {}
|
2018-02-16 17:25:27 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
QPDFObject(QPDFObject const&);
|
|
|
|
QPDFObject& operator=(QPDFObject const&);
|
|
|
|
class Members
|
|
|
|
{
|
|
|
|
friend class QPDFObject;
|
|
|
|
public:
|
2018-08-04 20:08:06 -04:00
|
|
|
QPDF_DLL
|
2018-02-16 17:25:27 -05:00
|
|
|
~Members();
|
|
|
|
private:
|
|
|
|
Members();
|
|
|
|
QPDF* owning_qpdf;
|
|
|
|
std::string object_description;
|
2019-10-02 20:30:53 +09:00
|
|
|
qpdf_offset_t parsed_offset;
|
2018-02-16 17:25:27 -05:00
|
|
|
};
|
|
|
|
PointerHolder<Members> m;
|
2008-04-29 12:55:25 +00:00
|
|
|
};
|
|
|
|
|
2018-08-12 14:07:22 -04:00
|
|
|
#endif // QPDFOBJECT_HH
|