summaryrefslogtreecommitdiff
path: root/core/fpdfapi/cpdf_modulemgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fpdfapi/cpdf_modulemgr.h')
-rw-r--r--core/fpdfapi/cpdf_modulemgr.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/core/fpdfapi/cpdf_modulemgr.h b/core/fpdfapi/cpdf_modulemgr.h
new file mode 100644
index 0000000000..cd7561a1f9
--- /dev/null
+++ b/core/fpdfapi/cpdf_modulemgr.h
@@ -0,0 +1,76 @@
+// 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 "core/fxcrt/include/fx_basic.h"
+
+class CCodec_FaxModule;
+class CCodec_FlateModule;
+class CCodec_IccModule;
+class CCodec_Jbig2Module;
+class CCodec_JpegModule;
+class CCodec_JpxModule;
+class CCodec_ModuleMgr;
+class CPDF_PageModule;
+
+class CFSDK_UnsupportInfo_Adapter {
+ public:
+ explicit CFSDK_UnsupportInfo_Adapter(void* unsp_info)
+ : m_unsp_info(unsp_info) {}
+
+ void* GetUnspInfo() const { return m_unsp_info; }
+
+ private:
+ void* const m_unsp_info;
+};
+
+class CPDF_ModuleMgr {
+ public:
+ static CPDF_ModuleMgr* Get();
+ static void Create();
+ static void Destroy();
+ static const int kFileBufSize = 512;
+
+ void SetCodecModule(CCodec_ModuleMgr* pModule) { m_pCodecModule = pModule; }
+ CCodec_ModuleMgr* GetCodecModule() { return m_pCodecModule; }
+
+ void InitPageModule();
+ CPDF_PageModule* GetPageModule() const { return m_pPageModule.get(); }
+
+ void SetUnsupportInfoAdapter(
+ std::unique_ptr<CFSDK_UnsupportInfo_Adapter> pAdapter) {
+ m_pUnsupportInfoAdapter = std::move(pAdapter);
+ }
+ CFSDK_UnsupportInfo_Adapter* GetUnsupportInfoAdapter() const {
+ return m_pUnsupportInfoAdapter.get();
+ }
+
+ void LoadEmbeddedGB1CMaps();
+ void LoadEmbeddedCNS1CMaps();
+ void LoadEmbeddedJapan1CMaps();
+ void LoadEmbeddedKorea1CMaps();
+
+ CCodec_FaxModule* GetFaxModule();
+ CCodec_JpegModule* GetJpegModule();
+ CCodec_JpxModule* GetJpxModule();
+ CCodec_Jbig2Module* GetJbig2Module();
+ CCodec_IccModule* GetIccModule();
+ CCodec_FlateModule* GetFlateModule();
+
+ private:
+ CPDF_ModuleMgr();
+ ~CPDF_ModuleMgr();
+
+ CCodec_ModuleMgr* m_pCodecModule;
+ std::unique_ptr<CPDF_PageModule> m_pPageModule;
+ std::unique_ptr<CFSDK_UnsupportInfo_Adapter> m_pUnsupportInfoAdapter;
+};
+
+#endif // CORE_FPDFAPI_CPDF_MODULEMGR_H_