Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
cfxjse_context.h
Go to the documentation of this file.
1// Copyright 2016 The PDFium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7#ifndef FXJS_XFA_CFXJSE_CONTEXT_H_
8#define FXJS_XFA_CFXJSE_CONTEXT_H_
9
10#include <memory>
11#include <vector>
12
13#include "core/fxcrt/bytestring.h"
14#include "core/fxcrt/unowned_ptr.h"
15#include "v8/include/cppgc/persistent.h"
16#include "v8/include/v8-forward.h"
17#include "v8/include/v8-persistent-handle.h"
18
19class CFXJSE_Class;
21class CFXJSE_Value;
22class CXFA_ThisProxy;
24
26 public:
29 ExecutionResult(bool sts, std::unique_ptr<CFXJSE_Value> val);
33
34 bool status = false;
36 };
37
39 v8::Isolate* pIsolate,
40 const FXJSE_CLASS_DESCRIPTOR* pGlobalClass,
41 CFXJSE_HostObject* pGlobalObject,
42 CXFA_ThisProxy* pProxy);
43
45
46 v8::Isolate* GetIsolate() const { return m_pIsolate; }
49
50 void AddClass(std::unique_ptr<CFXJSE_Class> pClass);
51 CFXJSE_Class* GetClassByName(ByteStringView szName) const;
53
54 // Note: `pNewThisObject` may be empty.
55 ExecutionResult ExecuteScript(ByteStringView bsScript,
56 v8::Local<v8::Object> pNewThisObject);
57
58 private:
59 CFXJSE_Context(v8::Isolate* pIsolate, CXFA_ThisProxy* pProxy);
60 CFXJSE_Context(const CFXJSE_Context&) = delete;
61 CFXJSE_Context& operator=(const CFXJSE_Context&) = delete;
62
63 v8::Global<v8::Context> m_hContext;
64 UnownedPtr<v8::Isolate> m_pIsolate;
65 std::vector<std::unique_ptr<CFXJSE_Class>> m_rgClasses;
66 cppgc::Persistent<CXFA_ThisProxy> m_pProxy;
67};
68
69void FXJSE_UpdateObjectBinding(v8::Local<v8::Object> hObject,
70 CFXJSE_HostObject* pNewBinding);
71
72void FXJSE_ClearObjectBinding(v8::Local<v8::Object> hJSObject);
73CFXJSE_HostObject* FXJSE_RetrieveObjectBinding(v8::Local<v8::Value> hValue);
74
75#endif // FXJS_XFA_CFXJSE_CONTEXT_H_
void FXJSE_ClearObjectBinding(v8::Local< v8::Object > hJSObject)
CFXJSE_HostObject * FXJSE_RetrieveObjectBinding(v8::Local< v8::Value > hValue)
void FXJSE_UpdateObjectBinding(v8::Local< v8::Object > hObject, CFXJSE_HostObject *pNewBinding)
const FXJSE_CLASS_DESCRIPTOR kNormalClassDescriptor
const FXJSE_CLASS_DESCRIPTOR kGlobalClassDescriptor
const FXJSE_CLASS_DESCRIPTOR kVariablesClassDescriptor
const FXJSE_CLASS_DESCRIPTOR kFormCalcDescriptor
bool IsName(ByteStringView name) const
const CFXJSE_Context * GetContext() const
static CFXJSE_Class * Create(CFXJSE_Context *pContext, const FXJSE_CLASS_DESCRIPTOR *pClassDescriptor, bool bIsJSGlobal)
UnownedPtr< const CFXJSE_Context > const m_pContext
v8::Global< v8::FunctionTemplate > m_hTemplate
ByteString m_szClassName
CFXJSE_Class(const CFXJSE_Context *pContext)
v8::Local< v8::FunctionTemplate > GetTemplate(v8::Isolate *pIsolate)
UnownedPtr< const FXJSE_CLASS_DESCRIPTOR > m_pClassDescriptor
v8::Local< v8::Object > GetGlobalObject()
v8::Local< v8::Context > GetContext()
ExecutionResult ExecuteScript(ByteStringView bsScript, v8::Local< v8::Object > pNewThisObject)
void AddClass(std::unique_ptr< CFXJSE_Class > pClass)
static std::unique_ptr< CFXJSE_Context > Create(v8::Isolate *pIsolate, const FXJSE_CLASS_DESCRIPTOR *pGlobalClass, CFXJSE_HostObject *pGlobalObject, CXFA_ThisProxy *pProxy)
v8::Isolate * GetIsolate() const
CFXJSE_Class * GetClassByName(ByteStringView szName) const
bool HasReturn() const
Definition cjs_result.h:44
bool HasError() const
Definition cjs_result.h:41
static ByteString Format(const char *pFormat,...)
FXJSE_ClassPropType
Definition fxjse.h:31
Definition fxv8.h:22
void ThrowExceptionHelper(v8::Isolate *pIsolate, WideStringView str)
Definition fxv8.cpp:333
const char kClassTag[]
Definition fxjse.cpp:18
const char kFuncTag[]
Definition fxjse.cpp:17
std::unique_ptr< CFXJSE_Value > value
ExecutionResult & operator=(ExecutionResult &&that) noexcept
ExecutionResult(ExecutionResult &&that) noexcept
ExecutionResult(bool sts, std::unique_ptr< CFXJSE_Value > val)
FXJSE_PropTypeGetter dynPropTypeGetter
Definition fxjse.h:84
FXJSE_PropSetter dynPropSetter
Definition fxjse.h:86
const char * tag
Definition fxjse.h:80
FXJSE_MethodCallback dynMethodCall
Definition fxjse.h:87
const char * name
Definition fxjse.h:81
FXJSE_FuncCallback callbackProc
Definition fxjse.h:76
const char * tag
Definition fxjse.h:74