This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
forked from kingland/go-v8
-
Notifications
You must be signed in to change notification settings - Fork 3
/
v8_template.go
609 lines (515 loc) · 15.9 KB
/
v8_template.go
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
package v8
/*
#include "v8_wrap.h"
*/
import "C"
import "unsafe"
import "reflect"
import "sync"
type AccessControl int
// Access control specifications.
//
// Some accessors should be accessible across contexts. These
// accessors have an explicit access control parameter which specifies
// the kind of cross-context access that should be allowed.
//
// Additionally, for security, accessors can prohibit overwriting by
// accessors defined in JavaScript. For objects that have such
// accessors either locally or in their prototype chain it is not
// possible to overwrite the accessor by using __defineGetter__ or
// __defineSetter__ from JavaScript code.
//
const (
AC_DEFAULT AccessControl = 0
AC_ALL_CAN_READ = 1
AC_ALL_CAN_WRITE = 1 << 1
AC_PROHIBITS_OVERWRITING = 1 << 2
)
type ObjectTemplate struct {
sync.Mutex
id int64
engine *Engine
accessors map[string]*accessorInfo
namedInfo *namedPropertyInfo
indexedInfo *indexedPropertyInfo
properties map[string]*propertyInfo
self unsafe.Pointer
internalFieldCount int
}
type namedPropertyInfo struct {
getter NamedPropertyGetterCallback
setter NamedPropertySetterCallback
deleter NamedPropertyDeleterCallback
query NamedPropertyQueryCallback
enumerator NamedPropertyEnumeratorCallback
data interface{}
}
type indexedPropertyInfo struct {
getter IndexedPropertyGetterCallback
setter IndexedPropertySetterCallback
deleter IndexedPropertyDeleterCallback
query IndexedPropertyQueryCallback
enumerator IndexedPropertyEnumeratorCallback
data interface{}
}
type accessorInfo struct {
key string
getter AccessorGetterCallback
setter AccessorSetterCallback
data interface{}
attribs PropertyAttribute
}
type NamedPropertyGetterCallback func(string, PropertyCallbackInfo)
type NamedPropertySetterCallback func(string, *Value, PropertyCallbackInfo)
type NamedPropertyDeleterCallback func(string, PropertyCallbackInfo)
type NamedPropertyQueryCallback func(string, PropertyCallbackInfo)
type NamedPropertyEnumeratorCallback func(PropertyCallbackInfo)
type IndexedPropertyGetterCallback func(uint32, PropertyCallbackInfo)
type IndexedPropertySetterCallback func(uint32, *Value, PropertyCallbackInfo)
type IndexedPropertyDeleterCallback func(uint32, PropertyCallbackInfo)
type IndexedPropertyQueryCallback func(uint32, PropertyCallbackInfo)
type IndexedPropertyEnumeratorCallback func(PropertyCallbackInfo)
type propertyInfo struct {
key string
value *Value
attribs PropertyAttribute
}
func newObjectTemplate(e *Engine, self unsafe.Pointer) *ObjectTemplate {
if self == nil {
return nil
}
ot := &ObjectTemplate{
id: e.objectTemplateId + 1,
engine: e,
accessors: make(map[string]*accessorInfo),
properties: make(map[string]*propertyInfo),
self: self,
}
e.objectTemplateId += 1
e.objectTemplates[ot.id] = ot
return ot
}
func (e *Engine) NewObjectTemplate() *ObjectTemplate {
self := C.V8_NewObjectTemplate(e.self)
return newObjectTemplate(e, self)
}
func (ot *ObjectTemplate) Dispose() {
ot.Lock()
defer ot.Unlock()
if ot.id > 0 {
delete(ot.engine.objectTemplates, ot.id)
ot.id = 0
ot.engine = nil
C.V8_DisposeObjectTemplate(ot.self)
}
}
func (e *Engine) NewInstanceOf(ot *ObjectTemplate) *Value {
ot.Lock()
defer ot.Unlock()
if ot.engine == nil {
return nil
}
return newValue(e, C.V8_ObjectTemplate_NewInstance(e.self, ot.self))
}
func (ot *ObjectTemplate) Plugin(pluginInit unsafe.Pointer) {
C.V8_ObjectTemplate_Plugin(ot.self, pluginInit)
}
func (ot *ObjectTemplate) WrapObject(value *Value) {
ot.Lock()
defer ot.Unlock()
object := value.ToObject()
for _, info := range ot.accessors {
object.setAccessor(info)
}
for _, info := range ot.properties {
object.SetProperty(info.key, info.value)
}
}
func (ot *ObjectTemplate) SetProperty(key string, value *Value, attribs PropertyAttribute) {
info := &propertyInfo{
key: key,
value: value,
attribs: attribs,
}
ot.properties[key] = info
keyPtr := unsafe.Pointer((*reflect.StringHeader)(unsafe.Pointer(&info.key)).Data)
C.V8_ObjectTemplate_SetProperty(
ot.self, (*C.char)(keyPtr), C.int(len(key)), value.self, C.int(attribs),
)
}
func (ot *ObjectTemplate) SetInternalFieldCount(count int) {
C.V8_ObjectTemplate_SetInternalFieldCount(ot.self, C.int(count))
ot.internalFieldCount = count
}
func (ot *ObjectTemplate) InternalFieldCount() int {
return ot.internalFieldCount
}
func (ot *ObjectTemplate) SetAccessor(
key string,
getter AccessorGetterCallback,
setter AccessorSetterCallback,
data interface{},
attribs PropertyAttribute,
) {
info := &accessorInfo{
key: key,
getter: getter,
setter: setter,
data: data,
attribs: attribs,
}
ot.accessors[key] = info
var getterPointer, setterPointer unsafe.Pointer
if info.getter != nil {
getterPointer = unsafe.Pointer(&info.getter)
}
if info.setter != nil {
setterPointer = unsafe.Pointer(&info.setter)
}
keyPtr := unsafe.Pointer((*reflect.StringHeader)(unsafe.Pointer(&info.key)).Data)
C.V8_ObjectTemplate_SetAccessor(
ot.self,
(*C.char)(keyPtr), C.int(len(info.key)),
getterPointer,
setterPointer,
unsafe.Pointer(&info.data),
C.int(info.attribs),
)
}
func (ot *ObjectTemplate) SetNamedPropertyHandler(
getter NamedPropertyGetterCallback,
setter NamedPropertySetterCallback,
query NamedPropertyQueryCallback,
deleter NamedPropertyDeleterCallback,
enumerator NamedPropertyEnumeratorCallback,
data interface{},
) {
info := &namedPropertyInfo{
getter: getter,
setter: setter,
query: query,
deleter: deleter,
enumerator: enumerator,
data: data,
}
ot.namedInfo = info
var getterPointer, setterPointer, queryPointer, deleterPointer, enumeratorPointer unsafe.Pointer
if info.getter != nil {
getterPointer = unsafe.Pointer(&info.getter)
}
if info.setter != nil {
setterPointer = unsafe.Pointer(&info.setter)
}
if info.query != nil {
queryPointer = unsafe.Pointer(&info.query)
}
if info.deleter != nil {
deleterPointer = unsafe.Pointer(&info.deleter)
}
if info.enumerator != nil {
enumeratorPointer = unsafe.Pointer(&info.enumerator)
}
C.V8_ObjectTemplate_SetNamedPropertyHandler(
ot.self,
getterPointer,
setterPointer,
queryPointer,
deleterPointer,
enumeratorPointer,
unsafe.Pointer(&data))
}
func (ot *ObjectTemplate) SetAccessCheckCallbacks(
namesecurity NamedSecurityCallback,
indexedsecuriry IndexedSecurityCallback,
data interface{},
){
var namePointer, indexPointer, dataPointer unsafe.Pointer
namePointer = unsafe.Pointer(&namesecurity)
indexPointer = unsafe.Pointer(&indexedsecuriry)
dataPointer = unsafe.Pointer(&data)
C.V8_ObjectTemplate_SetAccessCheckCallbacks(ot.self, namePointer, indexPointer, dataPointer)
}
func (ot *ObjectTemplate) SetIndexedPropertyHandler(
getter IndexedPropertyGetterCallback,
setter IndexedPropertySetterCallback,
query IndexedPropertyQueryCallback,
deleter IndexedPropertyDeleterCallback,
enumerator IndexedPropertyEnumeratorCallback,
data interface{},
) {
info := &indexedPropertyInfo{
getter: getter,
setter: setter,
query: query,
deleter: deleter,
enumerator: enumerator,
data: data,
}
var getterPointer, setterPointer, queryPointer, deleterPointer, enumeratorPointer unsafe.Pointer
if info.getter != nil {
getterPointer = unsafe.Pointer(&info.getter)
}
if info.setter != nil {
setterPointer = unsafe.Pointer(&info.setter)
}
if info.query != nil {
queryPointer = unsafe.Pointer(&info.query)
}
if info.deleter != nil {
deleterPointer = unsafe.Pointer(&info.deleter)
}
if info.enumerator != nil {
enumeratorPointer = unsafe.Pointer(&info.enumerator)
}
ot.indexedInfo = info
C.V8_ObjectTemplate_SetIndexedPropertyHandler(
ot.self,
getterPointer,
setterPointer,
queryPointer,
deleterPointer,
enumeratorPointer,
unsafe.Pointer(&data))
}
type PropertyCallbackInfo struct {
self unsafe.Pointer
typ C.PropertyDataEnum
data interface{}
returnValue ReturnValue
context *Context
}
func (p PropertyCallbackInfo) CurrentScope() ContextScope {
return ContextScope{p.context}
}
func (p PropertyCallbackInfo) This() *Object {
return newValue(p.context.engine, C.V8_PropertyCallbackInfo_This(p.self, p.typ)).ToObject()
}
func (p PropertyCallbackInfo) Holder() *Object {
return newValue(p.context.engine, C.V8_PropertyCallbackInfo_Holder(p.self, p.typ)).ToObject()
}
func (p PropertyCallbackInfo) Data() interface{} {
return p.data
}
func (p PropertyCallbackInfo) ReturnValue() ReturnValue {
if p.returnValue.self == nil {
p.returnValue.self = C.V8_PropertyCallbackInfo_ReturnValue(p.self, p.typ)
}
return p.returnValue
}
// Property getter callback info
//
type AccessorCallbackInfo struct {
self unsafe.Pointer
data interface{}
returnValue ReturnValue
context *Context
typ C.AccessorDataEnum
}
func (ac AccessorCallbackInfo) CurrentScope() ContextScope {
return ContextScope{ac.context}
}
func (ac AccessorCallbackInfo) This() *Object {
return newValue(ac.context.engine, C.V8_AccessorCallbackInfo_This(ac.self, ac.typ)).ToObject()
}
func (ac AccessorCallbackInfo) Holder() *Object {
return newValue(ac.context.engine, C.V8_AccessorCallbackInfo_Holder(ac.self, ac.typ)).ToObject()
}
func (ac AccessorCallbackInfo) Data() interface{} {
return ac.data
}
func (ac *AccessorCallbackInfo) ReturnValue() ReturnValue {
if ac.returnValue.self == nil {
ac.returnValue.self = C.V8_AccessorCallbackInfo_ReturnValue(ac.self, ac.typ)
}
return ac.returnValue
}
type AccessorGetterCallback func(name string, info AccessorCallbackInfo)
type AccessorSetterCallback func(name string, value *Value, info AccessorCallbackInfo)
type AccessCheckCallbackInfo struct{
self unsafe.Pointer
data interface{}
context *Context
host unsafe.Pointer
key unsafe.Pointer
index uint32
typ C.AccessCheckDataEnum
}
type NamedSecurityCallback func(info AccessCheckCallbackInfo) bool
type IndexedSecurityCallback func(info AccessCheckCallbackInfo) bool
//export go_accessor_callback
func go_accessor_callback(typ C.AccessorDataEnum, info *C.V8_AccessorCallbackInfo, context unsafe.Pointer) {
name := reflect.StringHeader{
Data: uintptr(unsafe.Pointer(info.key)),
Len: int(info.key_length),
}
gname := *(*string)(unsafe.Pointer(&name))
gcontext := (*Context)(context)
switch typ {
case C.OTA_Getter:
(*(*AccessorGetterCallback)(info.callback))(
gname,
AccessorCallbackInfo{unsafe.Pointer(info), *(*interface{})(info.data), ReturnValue{}, gcontext, typ})
case C.OTA_Setter:
(*(*AccessorSetterCallback)(info.callback))(
gname,
newValue(gcontext.engine, info.setValue),
AccessorCallbackInfo{unsafe.Pointer(info), *(*interface{})(info.data), ReturnValue{}, gcontext, typ})
default:
panic("impossible type")
}
}
//export go_named_property_callback
func go_named_property_callback(typ C.PropertyDataEnum, info *C.V8_PropertyCallbackInfo, context unsafe.Pointer) {
gname := ""
if info.key != nil {
gname = C.GoString(info.key)
}
gcontext := (*Context)(context)
switch typ {
case C.OTP_Getter:
(*(*NamedPropertyGetterCallback)(info.callback))(
gname, PropertyCallbackInfo{unsafe.Pointer(info), typ, *(*interface{})(info.data), ReturnValue{}, gcontext})
case C.OTP_Setter:
(*(*NamedPropertySetterCallback)(info.callback))(
gname,
newValue(gcontext.engine, info.setValue),
PropertyCallbackInfo{unsafe.Pointer(info), typ, *(*interface{})(info.data), ReturnValue{}, gcontext})
case C.OTP_Deleter:
(*(*NamedPropertyDeleterCallback)(info.callback))(
gname, PropertyCallbackInfo{unsafe.Pointer(info), typ, *(*interface{})(info.data), ReturnValue{}, gcontext})
case C.OTP_Query:
(*(*NamedPropertyQueryCallback)(info.callback))(
gname, PropertyCallbackInfo{unsafe.Pointer(info), typ, *(*interface{})(info.data), ReturnValue{}, gcontext})
case C.OTP_Enumerator:
(*(*NamedPropertyEnumeratorCallback)(info.callback))(
PropertyCallbackInfo{unsafe.Pointer(info), typ, *(*interface{})(info.data), ReturnValue{}, gcontext})
}
}
//export go_indexed_property_callback
func go_indexed_property_callback(typ C.PropertyDataEnum, info *C.V8_PropertyCallbackInfo, context unsafe.Pointer) {
gcontext := (*Context)(context)
switch typ {
case C.OTP_Getter:
(*(*IndexedPropertyGetterCallback)(info.callback))(
uint32(info.index), PropertyCallbackInfo{unsafe.Pointer(info), typ, *(*interface{})(info.data), ReturnValue{}, gcontext})
case C.OTP_Setter:
(*(*IndexedPropertySetterCallback)(info.callback))(
uint32(info.index),
newValue(gcontext.engine, info.setValue),
PropertyCallbackInfo{unsafe.Pointer(info), typ, *(*interface{})(info.data), ReturnValue{}, gcontext})
case C.OTP_Deleter:
(*(*IndexedPropertyDeleterCallback)(info.callback))(
uint32(info.index), PropertyCallbackInfo{unsafe.Pointer(info), typ, *(*interface{})(info.data), ReturnValue{}, gcontext})
case C.OTP_Query:
(*(*IndexedPropertyQueryCallback)(info.callback))(
uint32(info.index), PropertyCallbackInfo{unsafe.Pointer(info), typ, *(*interface{})(info.data), ReturnValue{}, gcontext})
case C.OTP_Enumerator:
(*(*IndexedPropertyEnumeratorCallback)(info.callback))(
PropertyCallbackInfo{unsafe.Pointer(info), typ, *(*interface{})(info.data), ReturnValue{}, gcontext})
}
}
//export go_access_check_callback
func go_access_check_callback(typ C.AccessCheckDataEnum, info *C.V8_AccessCheckCallbackInfo, context unsafe.Pointer ) bool {
gcontext := (*Context)(context)
switch typ {
case C.OTAC_Name:
(*(*NamedSecurityCallback)(info.callback))(
AccessCheckCallbackInfo {
self : unsafe.Pointer(info),
typ : typ,
host : unsafe.Pointer(info.host),
key : unsafe.Pointer(info.key),
data : *(*interface{})(info.data),
context : gcontext,
})
case C.OTAC_Index:
(*(*IndexedSecurityCallback)(info.callback))(
AccessCheckCallbackInfo{
self : unsafe.Pointer(info),
typ : typ,
host : unsafe.Pointer(info.host),
index : uint32(info.index),
data : *(*interface{})(info.data),
context : gcontext,
})
default:
panic("impossible type")
}
return false
}
type FunctionTemplate struct {
sync.Mutex
id int64
engine *Engine
callback FunctionCallback
data interface{}
self unsafe.Pointer
}
func (e *Engine) NewFunctionTemplate(callback FunctionCallback, data interface{}) *FunctionTemplate {
ft := &FunctionTemplate{
id: e.funcTemplateId + 1,
engine: e,
callback: callback,
data: data,
}
var callbackPtr unsafe.Pointer
if callback != nil {
callbackPtr = unsafe.Pointer(&ft.callback)
}
self := C.V8_NewFunctionTemplate(e.self, callbackPtr, unsafe.Pointer(&data))
if self == nil {
return nil
}
ft.self = self
e.funcTemplateId += 1
e.funcTemplates[ft.id] = ft
return ft
}
func (ft *FunctionTemplate) Dispose() {
ft.Lock()
defer ft.Unlock()
if ft.id > 0 {
delete(ft.engine.funcTemplates, ft.id)
ft.id = 0
ft.engine = nil
C.V8_DisposeFunctionTemplate(ft.self)
}
}
func (ft *FunctionTemplate) NewFunction() *Value {
ft.Lock()
defer ft.Unlock()
if ft.engine == nil {
return nil
}
return newValue(ft.engine, C.V8_FunctionTemplate_GetFunction(ft.self))
}
func (ft *FunctionTemplate) SetClassName(name string) {
ft.Lock()
defer ft.Unlock()
if ft.engine == nil {
panic("engine can't be nil")
}
namePtr := unsafe.Pointer((*reflect.StringHeader)(unsafe.Pointer(&name)).Data)
C.V8_FunctionTemplate_SetClassName(ft.self, (*C.char)(namePtr), C.int(len(name)))
}
func (ft *FunctionTemplate) InstanceTemplate() *ObjectTemplate {
ft.Lock()
defer ft.Unlock()
if ft.engine == nil {
panic("engine can't be nil")
}
self := C.V8_FunctionTemplate_InstanceTemplate(ft.self)
return newObjectTemplate(ft.engine, self)
}
func (ft *FunctionTemplate) SetHiddenPrototype(val bool){
ft.Lock()
defer ft.Unlock()
if ft.engine == nil {
panic("engine can't be nil")
}
v := 0;
if val {
v = 1
}
C.V8_FunctionTemplate_SetHiddenPrototype(ft.self, C.int(v))
}