summaryrefslogtreecommitdiff
path: root/xfa/src/fxjse/src/dynprop.cpp
blob: 7c78f6f90a0117a90d984691d1246441d4c7a6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
// 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

#include "../../foxitlib.h"
#include "fxv8.h"
#include "class.h"
#include "value.h"
static void FXJSE_DynPropGetterAdapter_MethodCallback	(const v8::FunctionCallbackInfo<v8::Value>& info)
{
    v8::Local<v8::Object> hCallBackInfo = info.Data().As<v8::Object>();
    FXJSE_CLASS*          lpClass		= static_cast<FXJSE_CLASS*>(hCallBackInfo->GetAlignedPointerFromInternalField(0));
    v8::Local<v8::String> hPropName		= hCallBackInfo->GetInternalField(1).As<v8::String>();
    ASSERT(lpClass && !hPropName.IsEmpty());
    v8::String::Utf8Value szPropName(hPropName);
    CFX_ByteStringC	      szFxPropName	= *szPropName;
    CFXJSE_Value* lpThisValue = CFXJSE_Value::Create(info.GetIsolate());
    lpThisValue->ForceSetValue(info.This());
    CFXJSE_Value* lpRetValue = CFXJSE_Value::Create(info.GetIsolate());
    CFXJSE_ArgumentsImpl impl = {&info, lpRetValue};
    lpClass->dynMethodCall(reinterpret_cast<FXJSE_HOBJECT>(lpThisValue), szFxPropName, reinterpret_cast<CFXJSE_Arguments&>(impl));
    if(!lpRetValue->DirectGetValue().IsEmpty()) {
        info.GetReturnValue().Set(lpRetValue->DirectGetValue());
    }
    delete lpRetValue;
    lpRetValue = NULL;
    delete lpThisValue;
    lpThisValue = NULL;
}
static void FXJSE_DynPropGetterAdapter					(const FXJSE_CLASS* lpClass, FXJSE_HOBJECT hObject, FX_BSTR szPropName, FXJSE_HVALUE hValue)
{
    ASSERT(lpClass);
    int32_t nPropType = lpClass->dynPropTypeGetter == NULL ? FXJSE_ClassPropType_Property : lpClass->dynPropTypeGetter(hObject, szPropName, FALSE);
    if(nPropType == FXJSE_ClassPropType_Property) {
        if(lpClass->dynPropGetter) {
            lpClass->dynPropGetter(hObject, szPropName, hValue);
        }
    } else if(nPropType == FXJSE_ClassPropType_Method) {
        if(lpClass->dynMethodCall && hValue) {
            CFXJSE_Value* lpValue = reinterpret_cast<CFXJSE_Value*>(hValue);
            v8::Isolate*	pIsolate = lpValue->GetIsolate();
            v8::HandleScope hscope(pIsolate);
            v8::Local<v8::ObjectTemplate> hCallBackInfoTemplate = v8::ObjectTemplate::New();
            hCallBackInfoTemplate->SetInternalFieldCount(2);
            v8::Local<v8::Object> hCallBackInfo = hCallBackInfoTemplate->NewInstance();
            hCallBackInfo->SetAlignedPointerInInternalField(0, const_cast<FXJSE_CLASS*>(lpClass));
            hCallBackInfo->SetInternalField(1, v8::String::NewFromUtf8(pIsolate, reinterpret_cast<const char*>(szPropName.GetPtr()), v8::String::kNormalString, szPropName.GetLength()));
            lpValue->ForceSetValue(v8::Function::New(lpValue->GetIsolate(), FXJSE_DynPropGetterAdapter_MethodCallback, hCallBackInfo));
        }
    }
}
static void FXJSE_DynPropSetterAdapter					(const FXJSE_CLASS* lpClass, FXJSE_HOBJECT hObject, FX_BSTR szPropName, FXJSE_HVALUE hValue)
{
    ASSERT(lpClass);
    int32_t nPropType = lpClass->dynPropTypeGetter == NULL ? FXJSE_ClassPropType_Property : lpClass->dynPropTypeGetter(hObject, szPropName, FALSE);
    if(nPropType != FXJSE_ClassPropType_Method) {
        if(lpClass->dynPropSetter) {
            lpClass->dynPropSetter(hObject, szPropName, hValue);
        }
    }
}
static FX_BOOL FXJSE_DynPropQueryAdapter				(const FXJSE_CLASS* lpClass, FXJSE_HOBJECT hObject, FX_BSTR szPropName)
{
    ASSERT(lpClass);
    int32_t nPropType = lpClass->dynPropTypeGetter == NULL ? FXJSE_ClassPropType_Property : lpClass->dynPropTypeGetter(hObject, szPropName, TRUE);
    return nPropType != FXJSE_ClassPropType_None;
}
static FX_BOOL FXJSE_DynPropDeleterAdapter					(const FXJSE_CLASS* lpClass, FXJSE_HOBJECT hObject, FX_BSTR szPropName)
{
    ASSERT(lpClass);
    int32_t nPropType = lpClass->dynPropTypeGetter == NULL ? FXJSE_ClassPropType_Property : lpClass->dynPropTypeGetter(hObject, szPropName, FALSE);
    if(nPropType != FXJSE_ClassPropType_Method) {
        if(lpClass->dynPropDeleter) {
            return lpClass->dynPropDeleter(hObject, szPropName);
        } else {
            return nPropType == FXJSE_ClassPropType_Property ? FALSE : TRUE;
        }
    }
    return FALSE;
}
static void FXJSE_V8ProxyCallback_getOwnPropertyDescriptor_getter(const v8::FunctionCallbackInfo<v8::Value>& info)
{
    v8::Local<v8::Object> hCallBackInfo = info.Data().As<v8::Object>();
    FXJSE_CLASS*          lpClass		= static_cast<FXJSE_CLASS*>(hCallBackInfo->GetAlignedPointerFromInternalField(0));
    v8::Local<v8::String> hPropName		= hCallBackInfo->GetInternalField(1).As<v8::String>();
    ASSERT(lpClass && !hPropName.IsEmpty());
    v8::String::Utf8Value szPropName(hPropName);
    CFX_ByteStringC	      szFxPropName	= *szPropName;
    CFXJSE_Value* lpThisValue = CFXJSE_Value::Create(info.GetIsolate());
    CFXJSE_Value* lpNewValue = CFXJSE_Value::Create(info.GetIsolate());
    lpThisValue->ForceSetValue(info.This());
    FXJSE_DynPropGetterAdapter(lpClass, reinterpret_cast<FXJSE_HOBJECT>(lpThisValue), szFxPropName, reinterpret_cast<FXJSE_HVALUE>(lpNewValue));
    info.GetReturnValue().Set(lpNewValue->DirectGetValue());
    delete lpThisValue;
    lpThisValue = NULL;
    delete lpNewValue;
    lpNewValue = NULL;
}
static void FXJSE_V8ProxyCallback_getOwnPropertyDescriptor_setter(const v8::FunctionCallbackInfo<v8::Value>& info)
{
    v8::Local<v8::Object> hCallBackInfo = info.Data().As<v8::Object>();
    FXJSE_CLASS*          lpClass		= static_cast<FXJSE_CLASS*>(hCallBackInfo->GetAlignedPointerFromInternalField(0));
    v8::Local<v8::String> hPropName		= hCallBackInfo->GetInternalField(1).As<v8::String>();
    ASSERT(lpClass && !hPropName.IsEmpty());
    v8::String::Utf8Value szPropName(hPropName);
    CFX_ByteStringC	      szFxPropName	= *szPropName;
    CFXJSE_Value* lpThisValue = CFXJSE_Value::Create(info.GetIsolate());
    CFXJSE_Value* lpNewValue = CFXJSE_Value::Create(info.GetIsolate());
    lpThisValue->ForceSetValue(info.This());
    lpNewValue->ForceSetValue(info[0]);
    FXJSE_DynPropSetterAdapter(lpClass, reinterpret_cast<FXJSE_HOBJECT>(lpThisValue), szFxPropName, reinterpret_cast<FXJSE_HVALUE>(lpNewValue));
    delete lpThisValue;
    lpThisValue = NULL;
    delete lpNewValue;
    lpNewValue = NULL;
}
static void FXJSE_V8ProxyCallback_getOwnPropertyDescriptor	(const v8::FunctionCallbackInfo<v8::Value>& info)
{
    const FXJSE_CLASS* lpClass = static_cast<FXJSE_CLASS*>(info.Data().As<v8::External>()->Value());
    if (!lpClass) {
        return;
    }
    v8::Isolate*	pIsolate = info.GetIsolate();
    v8::HandleScope scope(pIsolate);
    v8::Local<v8::String> hPropName = info[0]->ToString();
    v8::String::Utf8Value szPropName(hPropName);
    CFX_ByteStringC		  szFxPropName(*szPropName, szPropName.length());
    v8::Local<v8::ObjectTemplate> hCallBackInfoTemplate = v8::ObjectTemplate::New();
    hCallBackInfoTemplate->SetInternalFieldCount(2);
    v8::Local<v8::Object> hCallBackInfo = hCallBackInfoTemplate->NewInstance();
    hCallBackInfo->SetAlignedPointerInInternalField(0, const_cast<FXJSE_CLASS*>(lpClass));
    hCallBackInfo->SetInternalField(1, hPropName);
    v8::Local<v8::Object> hPropDescriptor = v8::Object::New(pIsolate);
    hPropDescriptor->ForceSet(v8::String::NewFromUtf8(pIsolate, "get"), v8::Function::New(pIsolate, FXJSE_V8ProxyCallback_getOwnPropertyDescriptor_getter, hCallBackInfo));
    hPropDescriptor->ForceSet(v8::String::NewFromUtf8(pIsolate, "set"), v8::Function::New(pIsolate, FXJSE_V8ProxyCallback_getOwnPropertyDescriptor_setter, hCallBackInfo));
    hPropDescriptor->ForceSet(v8::String::NewFromUtf8(pIsolate, "enumerable"), v8::Boolean::New(pIsolate, false));
    hPropDescriptor->ForceSet(v8::String::NewFromUtf8(pIsolate, "configurable"), v8::Boolean::New(pIsolate, true));
    info.GetReturnValue().Set(hPropDescriptor);
}
static void FXJSE_V8ProxyCallback_getPropertyDescriptor		(const v8::FunctionCallbackInfo<v8::Value>& info)
{
    v8::Isolate* pIsolate = info.GetIsolate();
    v8::Local<v8::Object> hChainObj = info.This()->GetPrototype().As<v8::Object>();
    v8::Local<v8::Script> fnSource = v8::Script::Compile(v8::String::NewFromUtf8(pIsolate,
                                     "(function (o, name) { var fn, x, d; fn = Object.getOwnPropertyDescriptor; x = o; while(x && !(d = fn(x, name))){x = x.__proto__;} return d; })"));
    v8::Local<v8::Function> fn = fnSource->Run().As<v8::Function>();
    v8::Local<v8::Value> rgArgs[] = {hChainObj, info[0]};
    v8::Local<v8::Value> hChainDescriptor = fn->Call(info.This(), 2, rgArgs);
    if(!hChainDescriptor.IsEmpty() && hChainDescriptor->IsObject()) {
        info.GetReturnValue().Set(hChainDescriptor);
    } else {
        FXJSE_V8ProxyCallback_getOwnPropertyDescriptor(info);
    }
}
static void FXJSE_V8ProxyCallback_getOwnPropertyNames		(const v8::FunctionCallbackInfo<v8::Value>& info)
{
    v8::Isolate*	pIsolate = info.GetIsolate();
    v8::HandleScope scope(pIsolate);
    info.GetReturnValue().Set(v8::Array::New(pIsolate));
}
static void FXJSE_V8ProxyCallback_getPropertyNames			(const v8::FunctionCallbackInfo<v8::Value>& info)
{
    v8::Local<v8::Object> hChainObj = info.This()->GetPrototype().As<v8::Object>();
    v8::Local<v8::Value> hChainPropertyNames = hChainObj->GetPropertyNames();
    info.GetReturnValue().Set(hChainPropertyNames);
}
static void FXJSE_V8ProxyCallback_defineProperty			(const v8::FunctionCallbackInfo<v8::Value>& info)
{
    const FXJSE_CLASS* lpClass = static_cast<FXJSE_CLASS*>(info.Data().As<v8::External>()->Value());
    if (!lpClass) {
        return;
    }
    v8::Isolate*	pIsolate = info.GetIsolate();
    v8::HandleScope scope(pIsolate);
    v8::Local<v8::String> hPropName = info[0]->ToString();
    v8::Local<v8::Object> hPropDescriptor = info[1]->ToObject();
    v8::String::Utf8Value szPropName(hPropName);
    if(!hPropDescriptor->Has(v8::String::NewFromUtf8(pIsolate, "value"))) {
        return;
    }
    v8::Local<v8::Value> hPropValue = hPropDescriptor->Get(v8::String::NewFromUtf8(pIsolate, "value"));
    CFX_ByteStringC		  szFxPropName(*szPropName, szPropName.length());
    CFXJSE_Value* lpThisValue = CFXJSE_Value::Create(info.GetIsolate());
    CFXJSE_Value* lpPropValue = CFXJSE_Value::Create(info.GetIsolate());
    lpThisValue->ForceSetValue(info.This());
    lpPropValue->ForceSetValue(hPropValue);
    FXJSE_DynPropSetterAdapter(lpClass, reinterpret_cast<FXJSE_HOBJECT>(lpThisValue), szFxPropName, reinterpret_cast<FXJSE_HVALUE>(lpPropValue));
    delete lpThisValue;
    lpThisValue = NULL;
    delete lpPropValue;
    lpPropValue = NULL;
}
static void FXJSE_V8ProxyCallback_delete					(const v8::FunctionCallbackInfo<v8::Value>& info)
{
    info.GetReturnValue().Set(true);
    const FXJSE_CLASS* lpClass = static_cast<FXJSE_CLASS*>(info.Data().As<v8::External>()->Value());
    if (!lpClass) {
        return;
    }
    v8::Isolate*	pIsolate = info.GetIsolate();
    v8::HandleScope scope(pIsolate);
    v8::Local<v8::String> hPropName = info[0]->ToString();
    v8::String::Utf8Value szPropName(hPropName);
    CFX_ByteStringC		  szFxPropName(*szPropName, szPropName.length());
    CFXJSE_Value* lpThisValue = CFXJSE_Value::Create(info.GetIsolate());
    lpThisValue->ForceSetValue(info.This());
    info.GetReturnValue().Set(FXJSE_DynPropDeleterAdapter(lpClass, reinterpret_cast<FXJSE_HOBJECT>(lpThisValue), szFxPropName) ? true : false);
    delete lpThisValue;
    lpThisValue = NULL;
}
static void FXJSE_V8ProxyCallback_fix						(const v8::FunctionCallbackInfo<v8::Value>& info)
{
    info.GetReturnValue().SetUndefined();
}
static void FXJSE_V8_NamedPropertyQueryCallback(v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Integer>& info)
{
    v8::Local<v8::Object> thisObject = info.This();
    if (thisObject->HasRealNamedProperty(property)) {
        return;
    }
    const FXJSE_CLASS* lpClass = static_cast<FXJSE_CLASS*>(info.Data().As<v8::External>()->Value());
    v8::Isolate*	pIsolate = info.GetIsolate();
    v8::HandleScope scope(pIsolate);
    v8::String::Utf8Value szPropName(property);
    CFX_ByteStringC		  szFxPropName(*szPropName, szPropName.length());
    CFXJSE_Value* lpThisValue = CFXJSE_Value::Create(info.GetIsolate());
    lpThisValue->ForceSetValue(thisObject);
    if(FXJSE_DynPropQueryAdapter(lpClass, reinterpret_cast<FXJSE_HOBJECT>(lpThisValue), szFxPropName)) {
        info.GetReturnValue().Set(v8::DontDelete);
    } else {
        const int32_t iV8Absent = 64;
        info.GetReturnValue().Set(iV8Absent);
    }
    delete lpThisValue;
    lpThisValue = NULL;
}
static void FXJSE_V8_NamedPropertyDeleterCallback(v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Boolean>& info)
{
    v8::Local<v8::Object> thisObject = info.This();
    if (thisObject->HasRealNamedProperty(property)) {
        return;
    }
    const FXJSE_CLASS* lpClass = static_cast<FXJSE_CLASS*>(info.Data().As<v8::External>()->Value());
    v8::Isolate*	pIsolate = info.GetIsolate();
    v8::HandleScope scope(pIsolate);
    v8::String::Utf8Value szPropName(property);
    CFX_ByteStringC		  szFxPropName(*szPropName, szPropName.length());
    CFXJSE_Value* lpThisValue = CFXJSE_Value::Create(info.GetIsolate());
    lpThisValue->ForceSetValue(thisObject);
    info.GetReturnValue().Set(FXJSE_DynPropDeleterAdapter(lpClass, reinterpret_cast<FXJSE_HOBJECT>(lpThisValue), szFxPropName) ? true : false);
    delete lpThisValue;
    lpThisValue = NULL;
}
void CFXJSE_Class::SetUpDynPropHandler(CFXJSE_Context* pContext, CFXJSE_Value* pValue, const FXJSE_CLASS* lpClassDefinition)
{
    v8::Isolate* pIsolate = pValue->GetIsolate();
    CFXJSE_ScopeUtil_IsolateHandleRootOrNormalContext scope(pIsolate, pContext);
    v8::Local<v8::Context> hContext = v8::Local<v8::Context>::New(pIsolate, pContext ? pContext->m_hContext : CFXJSE_RuntimeData::Get(pIsolate)->m_hRootContext);
    v8::Local<v8::Object> hObject = v8::Local<v8::Value>::New(pIsolate, pValue->m_hValue).As<v8::Object>();
    v8::Local<v8::Object> hHarmonyProxyObj =  hContext->Global()->Get(v8::String::NewFromUtf8(pIsolate, "Proxy")).As<v8::Object>();
    v8::Local<v8::Function> hHarmonyProxyCreateFn = hHarmonyProxyObj->Get(v8::String::NewFromUtf8(pIsolate, "create")).As<v8::Function>();
    v8::Local<v8::Value> hOldPrototype = hObject->GetPrototype();
    v8::Local<v8::Object> hTrapper = v8::Object::New(pIsolate);
    hTrapper->ForceSet(v8::String::NewFromUtf8(pIsolate, "getOwnPropertyDescriptor"),	v8::Function::New(pIsolate, FXJSE_V8ProxyCallback_getOwnPropertyDescriptor, v8::External::New(pIsolate, const_cast<FXJSE_CLASS*>(lpClassDefinition))));
    hTrapper->ForceSet(v8::String::NewFromUtf8(pIsolate, "getPropertyDescriptor"),		v8::Function::New(pIsolate, FXJSE_V8ProxyCallback_getPropertyDescriptor,	v8::External::New(pIsolate, const_cast<FXJSE_CLASS*>(lpClassDefinition))));
    hTrapper->ForceSet(v8::String::NewFromUtf8(pIsolate, "getOwnPropertyNames"),		v8::Function::New(pIsolate, FXJSE_V8ProxyCallback_getOwnPropertyNames,		v8::External::New(pIsolate, const_cast<FXJSE_CLASS*>(lpClassDefinition))));
    hTrapper->ForceSet(v8::String::NewFromUtf8(pIsolate, "getPropertyNames"),			v8::Function::New(pIsolate, FXJSE_V8ProxyCallback_getPropertyNames,			v8::External::New(pIsolate, const_cast<FXJSE_CLASS*>(lpClassDefinition))));
    hTrapper->ForceSet(v8::String::NewFromUtf8(pIsolate, "delete"),						v8::Function::New(pIsolate, FXJSE_V8ProxyCallback_delete,					v8::External::New(pIsolate, const_cast<FXJSE_CLASS*>(lpClassDefinition))));
    hTrapper->ForceSet(v8::String::NewFromUtf8(pIsolate, "defineProperty"),				v8::Function::New(pIsolate, FXJSE_V8ProxyCallback_defineProperty,			v8::External::New(pIsolate, const_cast<FXJSE_CLASS*>(lpClassDefinition))));
    hTrapper->ForceSet(v8::String::NewFromUtf8(pIsolate, "fix"),						v8::Function::New(pIsolate, FXJSE_V8ProxyCallback_fix,						v8::External::New(pIsolate, const_cast<FXJSE_CLASS*>(lpClassDefinition))));
    v8::Local<v8::Value> rgArgs[] = {hTrapper, hOldPrototype};
    v8::Local<v8::Value> hNewPrototype = hHarmonyProxyCreateFn->Call(hHarmonyProxyObj, 2, rgArgs);
    hObject->SetPrototype(hNewPrototype);
}
void CFXJSE_Class::SetUpNamedPropHandler(v8::Isolate* pIsolate, v8::Local<v8::ObjectTemplate>& hObjectTemplate, const FXJSE_CLASS* lpClassDefinition)
{
    hObjectTemplate->SetNamedPropertyHandler(0, 0,
            lpClassDefinition->dynPropTypeGetter ? FXJSE_V8_NamedPropertyQueryCallback : 0,
            lpClassDefinition->dynPropDeleter ? FXJSE_V8_NamedPropertyDeleterCallback : 0,
            0,
            v8::External::New(pIsolate, const_cast<FXJSE_CLASS*>(lpClassDefinition)));
}