blob: 2fa3032161e6e3a0aabf346bedd19eb165d2b263 [file] [log] [blame] [edit]
// Copyright 2016 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef CORE_FXGE_CFX_GEMODULE_H_
#define CORE_FXGE_CFX_GEMODULE_H_
#include <stdint.h>
#include <memory>
#include "build/build_config.h"
#include "core/fxcrt/unowned_ptr_exclusion.h"
#if BUILDFLAG(IS_APPLE)
#include "core/fxcrt/span.h"
#endif
class CFX_FontCache;
class CFX_FontMgr;
class SystemFontInfoIface;
class CFX_GEModule {
public:
class PlatformIface {
public:
static std::unique_ptr<PlatformIface> Create();
virtual ~PlatformIface() = default;
virtual void Init() = 0;
virtual std::unique_ptr<SystemFontInfoIface>
CreateDefaultSystemFontInfo() = 0;
#if BUILDFLAG(IS_APPLE)
virtual void* CreatePlatformFont(pdfium::span<const uint8_t> font_span) = 0;
#endif
};
static void Create(const char** pUserFontPaths);
static void Destroy();
static CFX_GEModule* Get();
CFX_FontCache* GetFontCache() const { return font_cache_.get(); }
CFX_FontMgr* GetFontMgr() const { return font_mgr_.get(); }
PlatformIface* GetPlatform() const { return platform_.get(); }
const char** GetUserFontPaths() const { return user_font_paths_; }
private:
explicit CFX_GEModule(const char** pUserFontPaths);
~CFX_GEModule();
std::unique_ptr<PlatformIface> const platform_;
std::unique_ptr<CFX_FontMgr> const font_mgr_;
std::unique_ptr<CFX_FontCache> const font_cache_;
// Exclude because taken from public API.
UNOWNED_PTR_EXCLUSION const char** const user_font_paths_;
};
#endif // CORE_FXGE_CFX_GEMODULE_H_