// 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 FXJS_CFXJSE_ENGINE_H_ #define FXJS_CFXJSE_ENGINE_H_ #include #include #include #include "core/fxcrt/unowned_ptr.h" #include "fxjs/cfx_v8.h" #include "v8/include/v8.h" #include "xfa/fxfa/cxfa_eventparam.h" #include "xfa/fxfa/parser/cxfa_document.h" #include "xfa/fxfa/parser/cxfa_script.h" #include "xfa/fxfa/parser/xfa_resolvenode_rs.h" class CFXJSE_Class; class CFXJSE_Context; class CFXJSE_FormCalcContext; class CFXJSE_ResolveProcessor; class CJS_Runtime; class CXFA_List; class CFXJSE_Engine final : public CFX_V8 { public: static CXFA_Object* ToObject(const v8::FunctionCallbackInfo& info); static CXFA_Object* ToObject(CFXJSE_Value* pValue); static void GlobalPropertyGetter(CFXJSE_Value* pObject, const ByteStringView& szPropName, CFXJSE_Value* pValue); static void GlobalPropertySetter(CFXJSE_Value* pObject, const ByteStringView& szPropName, CFXJSE_Value* pValue); static void NormalPropertyGetter(CFXJSE_Value* pObject, const ByteStringView& szPropName, CFXJSE_Value* pValue); static void NormalPropertySetter(CFXJSE_Value* pObject, const ByteStringView& szPropName, CFXJSE_Value* pValue); static CJS_Result NormalMethodCall( const v8::FunctionCallbackInfo& info, const WideString& functionName); static int32_t NormalPropTypeGetter(CFXJSE_Value* pObject, const ByteStringView& szPropName, bool bQueryIn); static int32_t GlobalPropTypeGetter(CFXJSE_Value* pObject, const ByteStringView& szPropName, bool bQueryIn); CFXJSE_Engine(CXFA_Document* pDocument, CJS_Runtime* fxjs_runtime); ~CFXJSE_Engine() override; void SetEventParam(CXFA_EventParam* param) { m_eventParam = param; } CXFA_EventParam* GetEventParam() const { return m_eventParam.Get(); } bool RunScript(CXFA_Script::Type eScriptType, const WideStringView& wsScript, CFXJSE_Value* pRetValue, CXFA_Object* pThisObject); bool ResolveObjects(CXFA_Object* refObject, const WideStringView& wsExpression, XFA_RESOLVENODE_RS* resolveNodeRS, uint32_t dwStyles, CXFA_Node* bindNode); CFXJSE_Value* GetJSValueFromMap(CXFA_Object* pObject); void AddToCacheList(std::unique_ptr pList); CXFA_Object* GetThisObject() const { return m_pThisObject.Get(); } int32_t GetIndexByName(CXFA_Node* refNode); int32_t GetIndexByClassName(CXFA_Node* refNode); WideString GetSomExpression(CXFA_Node* refNode); void SetNodesOfRunScript(std::vector* pArray); void AddNodesOfRunScript(CXFA_Node* pNode); CFXJSE_Class* GetJseNormalClass() const { return m_pJsClass.Get(); } void SetRunAtType(XFA_AttributeEnum eRunAt) { m_eRunAtType = eRunAt; } bool IsRunAtClient() { return m_eRunAtType != XFA_AttributeEnum::Server; } CXFA_Script::Type GetType(); std::vector* GetUpObjectArray() { return &m_upObjectArray; } CXFA_Document* GetDocument() const { return m_pDocument.Get(); } CXFA_Object* ToXFAObject(v8::Local obj); v8::Local NewXFAObject(CXFA_Object* obj, v8::Global& tmpl); private: CFXJSE_Context* CreateVariablesContext(CXFA_Node* pScriptNode, CXFA_Node* pSubform); void RemoveBuiltInObjs(CFXJSE_Context* pContext) const; bool QueryNodeByFlag(CXFA_Node* refNode, const WideStringView& propname, CFXJSE_Value* pValue, uint32_t dwFlag, bool bSetting); bool IsStrictScopeInJavaScript(); CXFA_Object* GetVariablesThis(CXFA_Object* pObject, bool bScriptNode); bool QueryVariableValue(CXFA_Node* pScriptNode, const ByteStringView& szPropName, CFXJSE_Value* pValue, bool bGetter); bool RunVariablesScript(CXFA_Node* pScriptNode); UnownedPtr const m_pSubordinateRuntime; UnownedPtr const m_pDocument; std::unique_ptr m_JsContext; UnownedPtr m_pJsClass; CXFA_Script::Type m_eScriptType = CXFA_Script::Type::Unknown; std::map> m_mapObjectToValue; std::map> m_mapVariableToContext; UnownedPtr m_eventParam; std::vector m_upObjectArray; // CacheList holds the List items so we can clean them up when we're done. std::vector> m_CacheList; UnownedPtr> m_pScriptNodeArray; std::unique_ptr const m_ResolveProcessor; std::unique_ptr m_FM2JSContext; UnownedPtr m_pThisObject; XFA_AttributeEnum m_eRunAtType = XFA_AttributeEnum::Client; }; #endif // FXJS_CFXJSE_ENGINE_H_