/usr/include/podofo/base/PdfTokenizer.h is in libpodofo-dev 0.9.5-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /***************************************************************************
* Copyright (C) 2006 by Dominik Seichter *
* domseichter@web.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Library General Public License as *
* published by the Free Software Foundation; either version 2 of the *
* License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
* In addition, as a special exception, the copyright holders give *
* permission to link the code of portions of this program with the *
* OpenSSL library under certain conditions as described in each *
* individual source file, and distribute linked combinations *
* including the two. *
* You must obey the GNU General Public License in all respects *
* for all of the code used other than OpenSSL. If you modify *
* file(s) with this exception, you may extend this exception to your *
* version of the file(s), but you are not obligated to do so. If you *
* do not wish to do so, delete this exception statement from your *
* version. If you delete this exception statement from all source *
* files in the program, then also delete it here. *
***************************************************************************/
#ifndef _PDF_TOKENIZER_H_
#define _PDF_TOKENIZER_H_
#include "PdfDefines.h"
#include "PdfRefCountedBuffer.h"
#include "PdfRefCountedInputDevice.h"
#include <deque>
#include <sstream>
namespace PoDoFo {
class PdfEncrypt;
class PdfVariant;
enum EPdfTokenType {
ePdfTokenType_Delimiter,
ePdfTokenType_Token,
ePdfTokenType_Unknown = 0xFF
};
typedef std::pair<std::string,EPdfTokenType> TTokenizerPair;
typedef std::deque<TTokenizerPair> TTokenizerQueque;
typedef TTokenizerQueque::iterator TITokenizerQueque;
typedef TTokenizerQueque::const_iterator TCITokenizerQueque;
/**
* A simple tokenizer for PDF files and PDF content streams
*/
class PODOFO_API PdfTokenizer {
public:
PdfTokenizer();
PdfTokenizer( const char* pBuffer, size_t lLen );
PdfTokenizer( const PdfRefCountedInputDevice & rDevice, const PdfRefCountedBuffer & rBuffer );
virtual ~PdfTokenizer();
/** Reads the next token from the current file position
* ignoring all comments.
*
* \param[out] pszToken On true return, set to a pointer to the read
* token (a NULL-terminated C string). The pointer is
* to memory owned by PdfTokenizer and must NOT be
* freed. The contents are invalidated on the next
* call to GetNextToken(..) and by the destruction of
* the PdfTokenizer. Undefined on false return.
*
* \param[out] peType On true return, if not NULL the type of the read token
* will be stored into this parameter. Undefined on false
* return.
*
* \returns True if a token was read, false if there are no
* more tokens to read.
*
* \see GetBuffer
*/
virtual bool GetNextToken( const char *& pszToken, EPdfTokenType* peType = NULL);
/** Reads the next token from the current file position
* ignoring all comments and compare the passed token
* to the read token.
*
* If there is no next token available, throws UnexpectedEOF.
*
* \param pszToken a token that is compared to the
* read token
*
* \returns true if the read token equals the passed token.
*/
bool IsNextToken( const char* pszToken );
/** Read the next number from the current file position
* ignoring all comments.
*
* Raises NoNumber exception if the next token is no number, and
* UnexpectedEOF if no token could be read. No token is consumed if
* NoNumber is thrown.
*
* \returns a number read from the input device.
*/
pdf_long GetNextNumber();
/** Read the next variant from the current file position
* ignoring all comments.
*
* Raises an UnexpectedEOF exception if there is no variant left in the
* file.
*
* \param rVariant write the read variant to this value
* \param pEncrypt an encryption object which is used to decrypt strings during parsing
*/
void GetNextVariant( PdfVariant& rVariant, PdfEncrypt* pEncrypt );
/** Returns true if the given character is a whitespace
* according to the pdf reference
*
* \returns true if it is a whitespace character otherwise false
*/
PODOFO_NOTHROW inline static bool IsWhitespace(const unsigned char ch);
/** Returns true if the given character is a delimiter
* according to the pdf reference
*
* \returns true if it is a delimiter character otherwise false
*/
PODOFO_NOTHROW inline static bool IsDelimiter(const unsigned char ch);
/**
* True if the passed character is a regular character according to the PDF
* reference (Section 3.1.1, Character Set); ie it is neither a white-space
* nor a delimeter character.
*/
PODOFO_NOTHROW inline static bool IsRegular(const unsigned char ch);
/**
* True if the passed character is within the generally accepted "printable"
* ASCII range.
*/
PODOFO_NOTHROW inline static bool IsPrintable(const unsigned char ch);
/**
* Get the hex value from a static map of a given hex character (0-9, A-F, a-f).
*
* \param ch hex character
*
* \returns hex value or HEX_NOT_FOUND if invalid
*
* \see HEX_NOT_FOUND
*/
PODOFO_NOTHROW inline static int GetHexValue(const unsigned char ch);
/**
* Constant which is returned for invalid hex values.
*/
static const unsigned int HEX_NOT_FOUND;
protected:
/** Read the next variant from the current file position
* ignoring all comments.
*
* Raises an exception if there is no variant left in the file.
*
* \param pszToken a token that has already been read
* \param eType type of the passed token
* \param rVariant write the read variant to this value
* \param pEncrypt an encryption object which is used to decrypt strings during parsing
*/
void GetNextVariant( const char* pszToken, EPdfTokenType eType, PdfVariant& rVariant, PdfEncrypt* pEncrypt );
/** Determine the possible datatype of a token.
* Numbers, reals, bools or NULL values are parsed directly by this function
* and saved to a variant.
*
* \returns the expected datatype
*/
EPdfDataType DetermineDataType( const char* pszToken, EPdfTokenType eType, PdfVariant& rVariant );
void ReadDataType( EPdfDataType eDataType, PdfVariant& rVariant, PdfEncrypt* pEncrypt );
/** Read a dictionary from the input device
* and store it into a variant.
*
* \param rVariant store the dictionary into this variable
* \param pEncrypt an encryption object which is used to decrypt strings during parsing
*/
void ReadDictionary( PdfVariant& rVariant, PdfEncrypt* pEncrypt );
/** Read an array from the input device
* and store it into a variant.
*
* \param rVariant store the array into this variable
* \param pEncrypt an encryption object which is used to decrypt strings during parsing
*/
void ReadArray( PdfVariant& rVariant, PdfEncrypt* pEncrypt );
/** Read a string from the input device
* and store it into a variant.
*
* \param rVariant store the string into this variable
* \param pEncrypt an encryption object which is used to decrypt strings during parsing
*/
void ReadString( PdfVariant& rVariant, PdfEncrypt* pEncrypt );
/** Read a hex string from the input device
* and store it into a variant.
*
* \param rVariant store the hex string into this variable
* \param pEncrypt an encryption object which is used to decrypt strings during parsing
*/
void ReadHexString( PdfVariant& rVariant, PdfEncrypt* pEncrypt );
/** Read a name from the input device
* and store it into a variant.
*
* Throws UnexpectedEOF if there is nothing to read.
*
* \param rVariant store the name into this variable
*/
void ReadName( PdfVariant& rVariant );
/** Add a token to the queue of tokens.
* GetNextToken() will return all enqueued tokens first before
* reading new tokens from the input device.
*
* \param pszToken string of the token
* \param eType type of the token
*
* \see GetNextToken
*/
void QuequeToken( const char* pszToken, EPdfTokenType eType );
protected:
PdfRefCountedInputDevice m_device;
PdfRefCountedBuffer m_buffer;
private:
// 256-byte array mapping character ordinal values to a truth value
// indicating whether or not they are whitespace according to the PDF
// standard.
static const char * const s_delimiterMap;
static const char * const s_whitespaceMap;
static const char s_octMap[]; ///< Map of bool values, if a certain char
///< is a valid octal digit
static const char * const s_escMap; ///< Mapping of escape sequences to their value
static const char * const s_hexMap; ///< Mapping of hex characters to their value
TTokenizerQueque m_deqQueque;
// A vector which is used as a buffer to read strings.
// It is a member of the class to avoid reallocations while parsing.
std::vector<char> m_vecBuffer; // we use a vector instead of a string
// because we might read a unicode
// string which is allowed to contain 0 bytes.
/// An istringstream which is used
/// to read double values instead of strtod
/// which is locale depend.
std::istringstream m_doubleParser;
};
// -----------------------------------------------------
//
// -----------------------------------------------------
inline bool PdfTokenizer::IsWhitespace(const unsigned char ch)
{
return ( PdfTokenizer::s_whitespaceMap[static_cast<size_t>(ch)] != 0 );
}
// -----------------------------------------------------
//
// -----------------------------------------------------
inline bool PdfTokenizer::IsDelimiter(const unsigned char ch)
{
return ( PdfTokenizer::s_delimiterMap[ch] != 0 );
}
// -----------------------------------------------------
//
// -----------------------------------------------------
inline bool PdfTokenizer::IsRegular(const unsigned char ch)
{
return !IsWhitespace(ch) && !IsDelimiter(static_cast<size_t>(ch));
}
// -----------------------------------------------------
//
// -----------------------------------------------------
inline bool PdfTokenizer::IsPrintable(const unsigned char ch)
{
return ((ch > 32U) && (ch < 125U));
}
// -----------------------------------------------------
//
// -----------------------------------------------------
inline int PdfTokenizer::GetHexValue(const unsigned char ch)
{
return PdfTokenizer::s_hexMap[static_cast<size_t>(ch)];
}
};
#endif // _PDF_TOKENIZER_H_
|