Spaces:
Running
Running
File size: 8,871 Bytes
a9694d2 |
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 |
//========================================================================
//
// GlobalParams.h
//
// Copyright 2001-2003 Glyph & Cog, LLC
//
//========================================================================
//========================================================================
//
// Modified under the Poppler project - http://poppler.freedesktop.org
//
// All changes made under the Poppler project to this file are licensed
// under GPL version 2 or later
//
// Copyright (C) 2005, 2007-2010, 2012, 2015, 2017-2022 Albert Astals Cid <[email protected]>
// Copyright (C) 2005 Jonathan Blandford <[email protected]>
// Copyright (C) 2006 Takashi Iwai <[email protected]>
// Copyright (C) 2006 Kristian Høgsberg <[email protected]>
// Copyright (C) 2007 Krzysztof Kowalczyk <[email protected]>
// Copyright (C) 2009 Jonathan Kew <[email protected]>
// Copyright (C) 2009 Petr Gajdos <[email protected]>
// Copyright (C) 2009, 2011, 2012, 2014, 2015 William Bader <[email protected]>
// Copyright (C) 2010 Hib Eris <[email protected]>
// Copyright (C) 2011 Pino Toscano <[email protected]>
// Copyright (C) 2012, 2017 Adrian Johnson <[email protected]>
// Copyright (C) 2012 Thomas Freitag <[email protected]>
// Copyright (C) 2013 Jason Crain <[email protected]>
// Copyright (C) 2018, 2020 Adam Reichold <[email protected]>
// Copyright (C) 2019 Oliver Sander <[email protected]>
//
// To see a description of the changes please see the Changelog file that
// came with your tarball or type make ChangeLog if you are building from git
//
//========================================================================
#ifndef GLOBALPARAMS_H
#define GLOBALPARAMS_H
#include <cassert>
#include "poppler-config.h"
#include "poppler_private_export.h"
#include <cstdio>
#include "CharTypes.h"
#include "UnicodeMap.h"
#include "Error.h"
#include <unordered_map>
#include <string>
#include <memory>
#include <mutex>
#include <vector>
class GooString;
class NameToCharCode;
class CharCodeToUnicode;
class CharCodeToUnicodeCache;
class UnicodeMapCache;
class CMap;
class CMapCache;
class GlobalParams;
class GfxFont;
class Stream;
class SysFontList;
//------------------------------------------------------------------------
// The global parameters object.
#ifdef _COMPILING_POPPLER
// cmake's WINDOWS_EXPORT_ALL_SYMBOLS doesn't extend to data unfortunately
// so we must to this by hand
extern __declspec(dllexport) std::unique_ptr<GlobalParams> globalParams;
#else
extern __declspec(dllimport) std::unique_ptr<GlobalParams> globalParams;
#endif
//------------------------------------------------------------------------
enum SysFontType
{
sysFontPFA,
sysFontPFB,
sysFontTTF,
sysFontTTC
};
//------------------------------------------------------------------------
struct FamilyStyleFontSearchResult
{
FamilyStyleFontSearchResult() = default;
FamilyStyleFontSearchResult(const std::string &filepathA, int faceIndexA) : filepath(filepathA), faceIndex(faceIndexA) { }
std::string filepath;
int faceIndex = 0;
};
//------------------------------------------------------------------------
struct UCharFontSearchResult
{
UCharFontSearchResult() = default;
UCharFontSearchResult(const std::string &filepathA, int faceIndexA, const std::string &familyA, const std::string &styleA) : filepath(filepathA), faceIndex(faceIndexA), family(familyA), style(styleA) { }
const std::string filepath;
const int faceIndex = 0;
const std::string family;
const std::string style;
};
//------------------------------------------------------------------------
class POPPLER_PRIVATE_EXPORT GlobalParams
{
public:
// Initialize the global parameters
explicit GlobalParams(const char *customPopplerDataDir = nullptr);
~GlobalParams();
GlobalParams(const GlobalParams &) = delete;
GlobalParams &operator=(const GlobalParams &) = delete;
void setupBaseFonts(const char *dir);
//----- accessors
CharCode getMacRomanCharCode(const char *charName);
// Return Unicode values for character names. Used for general text
// extraction.
Unicode mapNameToUnicodeText(const char *charName);
// Return Unicode values for character names. Used for glyph
// lookups or text extraction with ZapfDingbats fonts.
Unicode mapNameToUnicodeAll(const char *charName);
UnicodeMap *getResidentUnicodeMap(const std::string &encodingName);
FILE *getUnicodeMapFile(const std::string &encodingName);
FILE *findCMapFile(const GooString *collection, const GooString *cMapName);
FILE *findToUnicodeFile(const GooString *name);
GooString *findFontFile(const std::string &fontName);
GooString *findBase14FontFile(const GooString *base14Name, const GfxFont *font);
GooString *findSystemFontFile(const GfxFont *font, SysFontType *type, int *fontNum, GooString *substituteFontName = nullptr, const GooString *base14Name = nullptr);
FamilyStyleFontSearchResult findSystemFontFileForFamilyAndStyle(const std::string &fontFamily, const std::string &fontStyle, const std::vector<std::string> &filesToIgnore = {});
UCharFontSearchResult findSystemFontFileForUChar(Unicode uChar, const GfxFont &fontToEmulate);
std::string getTextEncodingName() const;
bool getPrintCommands();
bool getProfileCommands();
bool getErrQuiet();
CharCodeToUnicode *getCIDToUnicode(const GooString *collection);
const UnicodeMap *getUnicodeMap(const std::string &encodingName);
std::shared_ptr<CMap> getCMap(const GooString *collection, const GooString *cMapName);
const UnicodeMap *getTextEncoding();
const UnicodeMap *getUtf8Map();
std::vector<std::string> getEncodingNames();
//----- functions to set parameters
void addFontFile(const GooString *fontName, const GooString *path);
void setTextEncoding(const char *encodingName);
void setPrintCommands(bool printCommandsA);
void setProfileCommands(bool profileCommandsA);
void setErrQuiet(bool errQuietA);
static bool parseYesNo2(const char *token, bool *flag);
private:
void parseNameToUnicode(const GooString *name);
void scanEncodingDirs();
void addCIDToUnicode(const GooString *collection, const GooString *fileName);
void addUnicodeMap(const GooString *encodingName, const GooString *fileName);
void addCMapDir(const GooString *collection, const GooString *dir);
//----- static tables
NameToCharCode * // mapping from char name to
macRomanReverseMap; // MacRomanEncoding index
//----- user-modifiable settings
NameToCharCode * // mapping from char name to Unicode for ZapfDingbats
nameToUnicodeZapfDingbats;
NameToCharCode * // mapping from char name to Unicode for text
nameToUnicodeText; // extraction
// files for mappings from char collections
// to Unicode, indexed by collection name
std::unordered_map<std::string, std::string> cidToUnicodes;
// mappings from Unicode to char codes,
// indexed by encoding name
std::unordered_map<std::string, UnicodeMap> residentUnicodeMaps;
// files for mappings from Unicode to char
// codes, indexed by encoding name
std::unordered_map<std::string, std::string> unicodeMaps;
// list of CMap dirs, indexed by collection
std::unordered_multimap<std::string, std::string> cMapDirs;
std::vector<GooString *> toUnicodeDirs; // list of ToUnicode CMap dirs
bool baseFontsInitialized;
#ifdef _WIN32
// windows font substitutes (for CID fonts)
std::unordered_map<std::string, std::string> substFiles;
#endif
// font files: font name mapped to path
std::unordered_map<std::string, std::string> fontFiles;
SysFontList *sysFonts; // system fonts
GooString *textEncoding; // encoding (unicodeMap) to use for text
// output
bool printCommands; // print the drawing commands
bool profileCommands; // profile the drawing commands
bool errQuiet; // suppress error messages?
CharCodeToUnicodeCache *cidToUnicodeCache;
CharCodeToUnicodeCache *unicodeToUnicodeCache;
UnicodeMapCache *unicodeMapCache;
CMapCache *cMapCache;
const UnicodeMap *utf8Map;
mutable std::recursive_mutex mutex;
mutable std::recursive_mutex unicodeMapCacheMutex;
mutable std::recursive_mutex cMapCacheMutex;
const char *popplerDataDir;
};
class POPPLER_PRIVATE_EXPORT GlobalParamsIniter
{
public:
explicit GlobalParamsIniter(ErrorCallback errorCallback);
~GlobalParamsIniter();
GlobalParamsIniter(const GlobalParamsIniter &) = delete;
GlobalParamsIniter &operator=(const GlobalParamsIniter &) = delete;
static bool setCustomDataDir(const std::string &dir);
private:
static std::mutex mutex;
static int count;
static std::string customDataDir;
};
#endif
|