// 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 FXJS_CFXJSE_CONTEXT_H_ #define FXJS_CFXJSE_CONTEXT_H_ #include #include #include "fxjs/fxjse.h" #include "v8/include/v8.h" class CFXJSE_Class; class CFXJSE_Value; struct FXJSE_CLASS_DESCRIPTOR; class CFXJSE_Context { public: static std::unique_ptr Create( v8::Isolate* pIsolate, const FXJSE_CLASS_DESCRIPTOR* pGlobalClass, CFXJSE_HostObject* pGlobalObject); explicit CFXJSE_Context(v8::Isolate* pIsolate); ~CFXJSE_Context(); v8::Isolate* GetIsolate() const { return m_pIsolate; } v8::Local GetContext(); std::unique_ptr GetGlobalObject(); void AddClass(std::unique_ptr pClass); CFXJSE_Class* GetClassByName(const ByteStringView& szName) const; void EnableCompatibleMode(); bool ExecuteScript(const char* szScript, CFXJSE_Value* lpRetValue, CFXJSE_Value* lpNewThisObject = nullptr); protected: friend class CFXJSE_ScopeUtil_IsolateHandleContext; CFXJSE_Context(const CFXJSE_Context&) = delete; CFXJSE_Context& operator=(const CFXJSE_Context&) = delete; v8::Global m_hContext; v8::Isolate* m_pIsolate; std::vector> m_rgClasses; }; void FXJSE_UpdateObjectBinding(v8::Local& hObject, CFXJSE_HostObject* lpNewBinding = nullptr); CFXJSE_HostObject* FXJSE_RetrieveObjectBinding(v8::Local hJSObject, CFXJSE_Class* lpClass = nullptr); #endif // FXJS_CFXJSE_CONTEXT_H_