1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
|
/******************************************************************************
* $Id: pdfobject.h 25536 2013-01-20 14:04:39Z rouault $
*
* Project: PDF driver
* Purpose: GDALDataset driver for PDF dataset.
* Author: Even Rouault, <even dot rouault at mines dash paris dot org>
*
******************************************************************************
* Copyright (c) 2011, Even Rouault
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#ifndef PDFOBJECT_H_INCLUDED
#define PDFOBJECT_H_INCLUDED
#include "cpl_string.h"
#include <map>
#include <vector>
#ifdef HAVE_POPPLER
/* begin of poppler xpdf includes */
#include <poppler/Object.h>
#define private public /* Ugly! Page::pageObj is private but we need it... */
#include <poppler/Page.h>
#undef private
#include <poppler/Dict.h>
#define private public /* Ugly! Catalog::optContent is private but we need it... */
#include <poppler/Catalog.h>
#undef private
#define private public /* Ugly! PDFDoc::str is private but we need it... */
#include <poppler/PDFDoc.h>
#undef private
#include <poppler/splash/SplashBitmap.h>
#include <poppler/splash/Splash.h>
#include <poppler/SplashOutputDev.h>
#include <poppler/GlobalParams.h>
#include <poppler/ErrorCodes.h>
/* end of poppler xpdf includes */
#endif // HAVE_POPPLER
#ifdef HAVE_PODOFO
#include "podofo.h"
#endif // HAVE_PODOFO
double ROUND_TO_INT_IF_CLOSE(double x, double eps = 0);
typedef enum
{
PDFObjectType_Unknown,
PDFObjectType_Null,
PDFObjectType_Bool,
PDFObjectType_Int,
PDFObjectType_Real,
PDFObjectType_String,
PDFObjectType_Name,
PDFObjectType_Array,
PDFObjectType_Dictionary
} GDALPDFObjectType;
class GDALPDFDictionary;
class GDALPDFArray;
class GDALPDFStream;
class GDALPDFObjectRW;
class GDALPDFDictionaryRW;
class GDALPDFArrayRW;
class GDALPDFObject
{
protected:
virtual const char* GetTypeNameNative() = 0;
public:
virtual ~GDALPDFObject();
virtual GDALPDFObjectType GetType() = 0;
virtual const char* GetTypeName();
virtual int GetBool() = 0;
virtual int GetInt() = 0;
virtual double GetReal() = 0;
virtual int CanRepresentRealAsString() { return FALSE; }
virtual const CPLString& GetString() = 0;
virtual const CPLString& GetName() = 0;
virtual GDALPDFDictionary* GetDictionary() = 0;
virtual GDALPDFArray* GetArray() = 0;
virtual GDALPDFStream* GetStream() = 0;
virtual int GetRefNum() = 0;
virtual int GetRefGen() = 0;
GDALPDFObject* LookupObject(const char* pszPath);
void Serialize(CPLString& osStr);
CPLString Serialize() { CPLString osStr; Serialize(osStr); return osStr; }
GDALPDFObjectRW* Clone();
};
class GDALPDFDictionary
{
public:
virtual ~GDALPDFDictionary();
virtual GDALPDFObject* Get(const char* pszKey) = 0;
virtual std::map<CPLString, GDALPDFObject*>& GetValues() = 0;
GDALPDFObject* LookupObject(const char* pszPath);
void Serialize(CPLString& osStr);
CPLString Serialize() { CPLString osStr; Serialize(osStr); return osStr; }
GDALPDFDictionaryRW* Clone();
};
class GDALPDFArray
{
public:
virtual ~GDALPDFArray();
virtual int GetLength() = 0;
virtual GDALPDFObject* Get(int nIndex) = 0;
void Serialize(CPLString& osStr);
CPLString Serialize() { CPLString osStr; Serialize(osStr); return osStr; }
GDALPDFArrayRW* Clone();
};
class GDALPDFStream
{
public:
virtual ~GDALPDFStream();
virtual int GetLength() = 0;
virtual char* GetBytes() = 0;
};
class GDALPDFObjectRW : public GDALPDFObject
{
private:
GDALPDFObjectType m_eType;
int m_nVal;
double m_dfVal;
CPLString m_osVal;
GDALPDFDictionaryRW *m_poDict;
GDALPDFArrayRW *m_poArray;
int m_nNum;
int m_nGen;
int m_bCanRepresentRealAsString;
GDALPDFObjectRW(GDALPDFObjectType eType);
protected:
virtual const char* GetTypeNameNative();
public:
static GDALPDFObjectRW* CreateIndirect(int nNum, int nGen);
static GDALPDFObjectRW* CreateNull();
static GDALPDFObjectRW* CreateBool(int bVal);
static GDALPDFObjectRW* CreateInt(int nVal);
static GDALPDFObjectRW* CreateReal(double dfVal, int bCanRepresentRealAsString = FALSE);
static GDALPDFObjectRW* CreateString(const char* pszStr);
static GDALPDFObjectRW* CreateName(const char* pszName);
static GDALPDFObjectRW* CreateDictionary(GDALPDFDictionaryRW* poDict);
static GDALPDFObjectRW* CreateArray(GDALPDFArrayRW* poArray);
virtual ~GDALPDFObjectRW();
virtual GDALPDFObjectType GetType();
virtual int GetBool();
virtual int GetInt();
virtual double GetReal();
virtual int CanRepresentRealAsString() { return m_bCanRepresentRealAsString; }
virtual const CPLString& GetString();
virtual const CPLString& GetName();
virtual GDALPDFDictionary* GetDictionary();
virtual GDALPDFArray* GetArray();
virtual GDALPDFStream* GetStream();
virtual int GetRefNum();
virtual int GetRefGen();
};
class GDALPDFDictionaryRW : public GDALPDFDictionary
{
private:
std::map<CPLString, GDALPDFObject*> m_map;
public:
GDALPDFDictionaryRW();
virtual ~GDALPDFDictionaryRW();
virtual GDALPDFObject* Get(const char* pszKey);
virtual std::map<CPLString, GDALPDFObject*>& GetValues();
GDALPDFDictionaryRW& Add(const char* pszKey, GDALPDFObject* poVal);
GDALPDFDictionaryRW& Remove(const char* pszKey);
GDALPDFDictionaryRW& Add(const char* pszKey, GDALPDFArrayRW* poArray) { return Add(pszKey, GDALPDFObjectRW::CreateArray(poArray)); }
GDALPDFDictionaryRW& Add(const char* pszKey, GDALPDFDictionaryRW* poDict) { return Add(pszKey, GDALPDFObjectRW::CreateDictionary(poDict)); }
GDALPDFDictionaryRW& Add(const char* pszKey, const char* pszVal) { return Add(pszKey, GDALPDFObjectRW::CreateString(pszVal)); }
GDALPDFDictionaryRW& Add(const char* pszKey, int nVal) { return Add(pszKey, GDALPDFObjectRW::CreateInt(nVal)); }
GDALPDFDictionaryRW& Add(const char* pszKey, double dfVal, int bCanRepresentRealAsString = FALSE) { return Add(pszKey, GDALPDFObjectRW::CreateReal(dfVal, bCanRepresentRealAsString)); }
GDALPDFDictionaryRW& Add(const char* pszKey, int nNum, int nGen) { return Add(pszKey, GDALPDFObjectRW::CreateIndirect(nNum, nGen)); }
};
class GDALPDFArrayRW : public GDALPDFArray
{
private:
std::vector<GDALPDFObject*> m_array;
public:
GDALPDFArrayRW();
virtual ~GDALPDFArrayRW();
virtual int GetLength();
virtual GDALPDFObject* Get(int nIndex);
GDALPDFArrayRW& Add(GDALPDFObject* poObj);
GDALPDFArrayRW& Add(GDALPDFArrayRW* poArray) { return Add(GDALPDFObjectRW::CreateArray(poArray)); }
GDALPDFArrayRW& Add(GDALPDFDictionaryRW* poDict) { return Add(GDALPDFObjectRW::CreateDictionary(poDict)); }
GDALPDFArrayRW& Add(const char* pszVal) { return Add(GDALPDFObjectRW::CreateString(pszVal)); }
GDALPDFArrayRW& Add(int nVal) { return Add(GDALPDFObjectRW::CreateInt(nVal)); }
GDALPDFArrayRW& Add(double dfVal, int bCanRepresentRealAsString = FALSE) { return Add(GDALPDFObjectRW::CreateReal(dfVal, bCanRepresentRealAsString)); }
GDALPDFArrayRW& Add(double* padfVal, int nCount, int bCanRepresentRealAsString = FALSE);
GDALPDFArrayRW& Add(int nNum, int nGen) { return Add(GDALPDFObjectRW::CreateIndirect(nNum, nGen)); }
};
#ifdef HAVE_POPPLER
class GDALPDFObjectPoppler : public GDALPDFObject
{
private:
Object* m_po;
int m_bDestroy;
GDALPDFDictionary* m_poDict;
GDALPDFArray* m_poArray;
GDALPDFStream* m_poStream;
CPLString osStr;
int m_nRefNum;
int m_nRefGen;
protected:
virtual const char* GetTypeNameNative();
public:
GDALPDFObjectPoppler(Object* po, int bDestroy) :
m_po(po), m_bDestroy(bDestroy),
m_poDict(NULL), m_poArray(NULL), m_poStream(NULL),
m_nRefNum(0), m_nRefGen(0) {}
void SetRefNumAndGen(int nNum, int nGen);
virtual ~GDALPDFObjectPoppler();
virtual GDALPDFObjectType GetType();
virtual int GetBool();
virtual int GetInt();
virtual double GetReal();
virtual const CPLString& GetString();
virtual const CPLString& GetName();
virtual GDALPDFDictionary* GetDictionary();
virtual GDALPDFArray* GetArray();
virtual GDALPDFStream* GetStream();
virtual int GetRefNum();
virtual int GetRefGen();
};
GDALPDFArray* GDALPDFCreateArray(Array* array);
#endif // HAVE_POPPLER
#ifdef HAVE_PODOFO
class GDALPDFObjectPodofo : public GDALPDFObject
{
private:
PoDoFo::PdfObject* m_po;
PoDoFo::PdfVecObjects& m_poObjects;
GDALPDFDictionary* m_poDict;
GDALPDFArray* m_poArray;
GDALPDFStream* m_poStream;
CPLString osStr;
protected:
virtual const char* GetTypeNameNative();
public:
GDALPDFObjectPodofo(PoDoFo::PdfObject* po, PoDoFo::PdfVecObjects& poObjects);
virtual ~GDALPDFObjectPodofo();
virtual GDALPDFObjectType GetType();
virtual int GetBool();
virtual int GetInt();
virtual double GetReal();
virtual const CPLString& GetString();
virtual const CPLString& GetName();
virtual GDALPDFDictionary* GetDictionary();
virtual GDALPDFArray* GetArray();
virtual GDALPDFStream* GetStream();
virtual int GetRefNum();
virtual int GetRefGen();
};
#endif // HAVE_PODOFO
#endif // PDFOBJECT_H_INCLUDED
|