// Copyright 2014 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 XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ #define XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ #include #include #include #include #include "xfa/fxfa/fxfa.h" #include "xfa/fxfa/parser/cxfa_localemgr.h" enum XFA_VERSION { XFA_VERSION_UNKNOWN = 0, XFA_VERSION_200 = 200, XFA_VERSION_202 = 202, XFA_VERSION_204 = 204, XFA_VERSION_205 = 205, XFA_VERSION_206 = 206, XFA_VERSION_207 = 207, XFA_VERSION_208 = 208, XFA_VERSION_300 = 300, XFA_VERSION_301 = 301, XFA_VERSION_303 = 303, XFA_VERSION_306 = 306, XFA_VERSION_DEFAULT = XFA_VERSION_303, XFA_VERSION_MIN = 200, XFA_VERSION_MAX = 400, }; enum XFA_DocFlag { XFA_DOCFLAG_StrictScoping = 0x0001, XFA_DOCFLAG_HasInteractive = 0x0002, XFA_DOCFLAG_Interactive = 0x0004, XFA_DOCFLAG_Scripting = 0x0008 }; class CFX_XMLDoc; class CFXJSE_Engine; class CScript_DataWindow; class CScript_EventPseudoModel; class CScript_HostPseudoModel; class CScript_LogPseudoModel; class CScript_LayoutPseudoModel; class CScript_SignaturePseudoModel; class CXFA_ContainerLayoutItem; class CXFA_DocumentParser; class CXFA_FFNotify; class CXFA_LayoutItem; class CXFA_LayoutProcessor; class CXFA_Node; class CXFA_Object; class CXFA_Document { public: explicit CXFA_Document(CXFA_DocumentParser* pParser); ~CXFA_Document(); CFXJSE_Engine* InitScriptContext(v8::Isolate* pIsolate); CXFA_Node* GetRoot() const { return m_pRootNode; } CFX_XMLDoc* GetXMLDoc() const; CXFA_FFNotify* GetNotify() const; CXFA_LocaleMgr* GetLocalMgr(); CXFA_Object* GetXFAObject(XFA_HashCode wsNodeNameHash); CXFA_Node* GetNodeByID(CXFA_Node* pRoot, const WideStringView& wsID); CXFA_Node* GetNotBindNode(const std::vector& arrayNodes); CXFA_LayoutProcessor* GetLayoutProcessor(); CXFA_LayoutProcessor* GetDocLayout(); CFXJSE_Engine* GetScriptContext(); void SetRoot(CXFA_Node* pNewRoot); void AddPurgeNode(CXFA_Node* pNode); bool RemovePurgeNode(CXFA_Node* pNode); bool HasFlag(uint32_t dwFlag) { return (m_dwDocFlags & dwFlag) == dwFlag; } void SetFlag(uint32_t dwFlag, bool bOn); bool IsInteractive(); XFA_VERSION GetCurVersionMode() { return m_eCurVersionMode; } XFA_VERSION RecognizeXFAVersionNumber(const WideString& wsTemplateNS); CXFA_Node* CreateNode(XFA_PacketType packet, XFA_Element eElement); void DoProtoMerge(); void DoDataMerge(); void DoDataRemerge(bool bDoDataMerge); CXFA_Node* DataMerge_CopyContainer(CXFA_Node* pTemplateNode, CXFA_Node* pFormNode, CXFA_Node* pDataScope, bool bOneInstance, bool bDataMerge, bool bUpLevel); void DataMerge_UpdateBindingRelations(CXFA_Node* pFormUpdateRoot); void ClearLayoutData(); std::map m_rgGlobalBinding; std::vector m_pPendingPageSet; private: CXFA_DocumentParser* m_pParser; CXFA_Node* m_pRootNode; std::unique_ptr m_pScriptContext; std::unique_ptr m_pLayoutProcessor; std::unique_ptr m_pLocalMgr; std::unique_ptr m_pScriptDataWindow; std::unique_ptr m_pScriptEvent; std::unique_ptr m_pScriptHost; std::unique_ptr m_pScriptLog; std::unique_ptr m_pScriptLayout; std::unique_ptr m_pScriptSignature; std::set m_PurgeNodes; XFA_VERSION m_eCurVersionMode; uint32_t m_dwDocFlags; }; #endif // XFA_FXFA_PARSER_CXFA_DOCUMENT_H_