blob: 70eb6f016452c350e0cf0e05a5e47542a15c15ae [file] [log] [blame]
// Copyright 2016 PDFium Authors. All rights reserved.
// 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_FPDFAPI_CPDF_MODULEMGR_H_
#define CORE_FPDFAPI_CPDF_MODULEMGR_H_
#include <memory>
#include <utility>
namespace fpdfapi {
class UnsupportedInfoAdapter {
public:
explicit UnsupportedInfoAdapter(void* info) : m_info(info) {}
void* info() const { return m_info; }
private:
void* const m_info;
};
} // namespace fpdfapi
class CPDF_ModuleMgr {
public:
static void Create();
static void Destroy();
static CPDF_ModuleMgr* Get();
static const int kFileBufSize = 512;
void SetUnsupportInfoAdapter(
std::unique_ptr<fpdfapi::UnsupportedInfoAdapter> pAdapter) {
m_pUnsupportInfoAdapter = std::move(pAdapter);
}
fpdfapi::UnsupportedInfoAdapter* GetUnsupportInfoAdapter() const {
return m_pUnsupportInfoAdapter.get();
}
private:
CPDF_ModuleMgr();
~CPDF_ModuleMgr();
void InitPageModule();
void LoadEmbeddedMaps();
void LoadEmbeddedGB1CMaps();
void LoadEmbeddedCNS1CMaps();
void LoadEmbeddedJapan1CMaps();
void LoadEmbeddedKorea1CMaps();
std::unique_ptr<fpdfapi::UnsupportedInfoAdapter> m_pUnsupportInfoAdapter;
};
#endif // CORE_FPDFAPI_CPDF_MODULEMGR_H_