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 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
|
package goja
import (
"bytes"
"errors"
"fmt"
"github.com/dop251/goja/parser"
"go/ast"
"math"
"math/rand"
"reflect"
"strconv"
)
const (
sqrt1_2 float64 = math.Sqrt2 / 2
)
var (
typeCallable = reflect.TypeOf(Callable(nil))
)
type global struct {
Object *Object
Array *Object
Function *Object
String *Object
Number *Object
Boolean *Object
RegExp *Object
Date *Object
ArrayBuffer *Object
Error *Object
TypeError *Object
ReferenceError *Object
SyntaxError *Object
RangeError *Object
EvalError *Object
URIError *Object
GoError *Object
ObjectPrototype *Object
ArrayPrototype *Object
NumberPrototype *Object
StringPrototype *Object
BooleanPrototype *Object
FunctionPrototype *Object
RegExpPrototype *Object
DatePrototype *Object
ArrayBufferPrototype *Object
ErrorPrototype *Object
TypeErrorPrototype *Object
SyntaxErrorPrototype *Object
RangeErrorPrototype *Object
ReferenceErrorPrototype *Object
EvalErrorPrototype *Object
URIErrorPrototype *Object
GoErrorPrototype *Object
Eval *Object
thrower *Object
throwerProperty Value
}
type RandSource func() float64
type Runtime struct {
global global
globalObject *Object
stringSingleton *stringObject
rand RandSource
typeInfoCache map[reflect.Type]*reflectTypeInfo
fieldNameMapper FieldNameMapper
vm *vm
}
type stackFrame struct {
prg *Program
funcName string
pc int
}
func (f *stackFrame) position() Position {
return f.prg.src.Position(f.prg.sourceOffset(f.pc))
}
func (f *stackFrame) write(b *bytes.Buffer) {
if f.prg != nil {
if n := f.prg.funcName; n != "" {
b.WriteString(n)
b.WriteString(" (")
}
if n := f.prg.src.name; n != "" {
b.WriteString(n)
} else {
b.WriteString("<eval>")
}
b.WriteByte(':')
b.WriteString(f.position().String())
b.WriteByte('(')
b.WriteString(strconv.Itoa(f.pc))
b.WriteByte(')')
if f.prg.funcName != "" {
b.WriteByte(')')
}
} else {
if f.funcName != "" {
b.WriteString(f.funcName)
b.WriteString(" (")
}
b.WriteString("native")
if f.funcName != "" {
b.WriteByte(')')
}
}
}
type Exception struct {
val Value
stack []stackFrame
}
type InterruptedError struct {
Exception
iface interface{}
}
func (e *InterruptedError) Value() interface{} {
return e.iface
}
func (e *Exception) String() string {
if e == nil {
return "<nil>"
}
var b bytes.Buffer
if e.val != nil {
b.WriteString(e.val.String())
}
b.WriteByte('\n')
for _, frame := range e.stack {
b.WriteString("\tat ")
frame.write(&b)
b.WriteByte('\n')
}
return b.String()
}
func (e *Exception) Error() string {
if e == nil || e.val == nil {
return "<nil>"
}
if len(e.stack) > 0 && (e.stack[0].prg != nil || e.stack[0].funcName != "") {
var b bytes.Buffer
b.WriteString(e.val.String())
b.WriteString(" at ")
e.stack[0].write(&b)
return b.String()
}
return e.val.String()
}
func (e *Exception) Value() Value {
return e.val
}
func (r *Runtime) addToGlobal(name string, value Value) {
r.globalObject.self._putProp(name, value, true, false, true)
}
func (r *Runtime) init() {
r.rand = rand.Float64
r.global.ObjectPrototype = r.newBaseObject(nil, classObject).val
r.globalObject = r.NewObject()
r.vm = &vm{
r: r,
}
r.vm.init()
r.global.FunctionPrototype = r.newNativeFunc(nil, nil, "Empty", nil, 0)
r.initObject()
r.initFunction()
r.initArray()
r.initString()
r.initNumber()
r.initRegExp()
r.initDate()
r.initBoolean()
r.initErrors()
r.global.Eval = r.newNativeFunc(r.builtin_eval, nil, "eval", nil, 1)
r.addToGlobal("eval", r.global.Eval)
r.initGlobalObject()
r.initMath()
r.initJSON()
//r.initTypedArrays()
r.global.thrower = r.newNativeFunc(r.builtin_thrower, nil, "thrower", nil, 0)
r.global.throwerProperty = &valueProperty{
getterFunc: r.global.thrower,
setterFunc: r.global.thrower,
accessor: true,
}
}
func (r *Runtime) typeErrorResult(throw bool, args ...interface{}) {
if throw {
panic(r.NewTypeError(args...))
}
}
func (r *Runtime) newError(typ *Object, format string, args ...interface{}) Value {
msg := fmt.Sprintf(format, args...)
return r.builtin_new(typ, []Value{newStringValue(msg)})
}
func (r *Runtime) throwReferenceError(name string) {
panic(r.newError(r.global.ReferenceError, "%s is not defined", name))
}
func (r *Runtime) newSyntaxError(msg string, offset int) Value {
return r.builtin_new((r.global.SyntaxError), []Value{newStringValue(msg)})
}
func (r *Runtime) newArray(prototype *Object) (a *arrayObject) {
v := &Object{runtime: r}
a = &arrayObject{}
a.class = classArray
a.val = v
a.extensible = true
v.self = a
a.prototype = prototype
a.init()
return
}
func (r *Runtime) newArrayObject() *arrayObject {
return r.newArray(r.global.ArrayPrototype)
}
func (r *Runtime) newArrayValues(values []Value) *Object {
v := &Object{runtime: r}
a := &arrayObject{}
a.class = classArray
a.val = v
a.extensible = true
v.self = a
a.prototype = r.global.ArrayPrototype
a.init()
a.values = values
a.length = int64(len(values))
a.objCount = a.length
return v
}
func (r *Runtime) newArrayLength(l int64) *Object {
a := r.newArrayValues(nil)
a.self.putStr("length", intToValue(l), true)
return a
}
func (r *Runtime) newBaseObject(proto *Object, class string) (o *baseObject) {
v := &Object{runtime: r}
o = &baseObject{}
o.class = class
o.val = v
o.extensible = true
v.self = o
o.prototype = proto
o.init()
return
}
func (r *Runtime) NewObject() (v *Object) {
return r.newBaseObject(r.global.ObjectPrototype, classObject).val
}
func (r *Runtime) NewTypeError(args ...interface{}) *Object {
msg := ""
if len(args) > 0 {
f, _ := args[0].(string)
msg = fmt.Sprintf(f, args[1:]...)
}
return r.builtin_new(r.global.TypeError, []Value{newStringValue(msg)})
}
func (r *Runtime) NewGoError(err error) *Object {
e := r.newError(r.global.GoError, err.Error()).(*Object)
e.Set("value", err)
return e
}
func (r *Runtime) newFunc(name string, len int, strict bool) (f *funcObject) {
v := &Object{runtime: r}
f = &funcObject{}
f.class = classFunction
f.val = v
f.extensible = true
v.self = f
f.prototype = r.global.FunctionPrototype
f.init(name, len)
if strict {
f._put("caller", r.global.throwerProperty)
f._put("arguments", r.global.throwerProperty)
}
return
}
func (r *Runtime) newNativeFuncObj(v *Object, call func(FunctionCall) Value, construct func(args []Value) *Object, name string, proto *Object, length int) *nativeFuncObject {
f := &nativeFuncObject{
baseFuncObject: baseFuncObject{
baseObject: baseObject{
class: classFunction,
val: v,
extensible: true,
prototype: r.global.FunctionPrototype,
},
},
f: call,
construct: construct,
}
v.self = f
f.init(name, length)
if proto != nil {
f._putProp("prototype", proto, false, false, false)
}
return f
}
func (r *Runtime) newNativeFunc(call func(FunctionCall) Value, construct func(args []Value) *Object, name string, proto *Object, length int) *Object {
v := &Object{runtime: r}
f := &nativeFuncObject{
baseFuncObject: baseFuncObject{
baseObject: baseObject{
class: classFunction,
val: v,
extensible: true,
prototype: r.global.FunctionPrototype,
},
},
f: call,
construct: construct,
}
v.self = f
f.init(name, length)
if proto != nil {
f._putProp("prototype", proto, false, false, false)
proto.self._putProp("constructor", v, true, false, true)
}
return v
}
func (r *Runtime) newNativeFuncConstructObj(v *Object, construct func(args []Value, proto *Object) *Object, name string, proto *Object, length int) *nativeFuncObject {
f := &nativeFuncObject{
baseFuncObject: baseFuncObject{
baseObject: baseObject{
class: classFunction,
val: v,
extensible: true,
prototype: r.global.FunctionPrototype,
},
},
f: r.constructWrap(construct, proto),
construct: func(args []Value) *Object {
return construct(args, proto)
},
}
f.init(name, length)
if proto != nil {
f._putProp("prototype", proto, false, false, false)
}
return f
}
func (r *Runtime) newNativeFuncConstruct(construct func(args []Value, proto *Object) *Object, name string, prototype *Object, length int) *Object {
return r.newNativeFuncConstructProto(construct, name, prototype, r.global.FunctionPrototype, length)
}
func (r *Runtime) newNativeFuncConstructProto(construct func(args []Value, proto *Object) *Object, name string, prototype, proto *Object, length int) *Object {
v := &Object{runtime: r}
f := &nativeFuncObject{}
f.class = classFunction
f.val = v
f.extensible = true
v.self = f
f.prototype = proto
f.f = r.constructWrap(construct, prototype)
f.construct = func(args []Value) *Object {
return construct(args, prototype)
}
f.init(name, length)
if prototype != nil {
f._putProp("prototype", prototype, false, false, false)
prototype.self._putProp("constructor", v, true, false, true)
}
return v
}
func (r *Runtime) newPrimitiveObject(value Value, proto *Object, class string) *Object {
v := &Object{runtime: r}
o := &primitiveValueObject{}
o.class = class
o.val = v
o.extensible = true
v.self = o
o.prototype = proto
o.pValue = value
o.init()
return v
}
func (r *Runtime) builtin_Number(call FunctionCall) Value {
if len(call.Arguments) > 0 {
return call.Arguments[0].ToNumber()
} else {
return intToValue(0)
}
}
func (r *Runtime) builtin_newNumber(args []Value) *Object {
var v Value
if len(args) > 0 {
v = args[0].ToNumber()
} else {
v = intToValue(0)
}
return r.newPrimitiveObject(v, r.global.NumberPrototype, classNumber)
}
func (r *Runtime) builtin_Boolean(call FunctionCall) Value {
if len(call.Arguments) > 0 {
if call.Arguments[0].ToBoolean() {
return valueTrue
} else {
return valueFalse
}
} else {
return valueFalse
}
}
func (r *Runtime) builtin_newBoolean(args []Value) *Object {
var v Value
if len(args) > 0 {
if args[0].ToBoolean() {
v = valueTrue
} else {
v = valueFalse
}
} else {
v = valueFalse
}
return r.newPrimitiveObject(v, r.global.BooleanPrototype, classBoolean)
}
func (r *Runtime) error_toString(call FunctionCall) Value {
obj := call.This.ToObject(r).self
msg := obj.getStr("message")
name := obj.getStr("name")
var nameStr, msgStr string
if name != nil && name != _undefined {
nameStr = name.String()
}
if msg != nil && msg != _undefined {
msgStr = msg.String()
}
if nameStr != "" && msgStr != "" {
return newStringValue(fmt.Sprintf("%s: %s", name.String(), msgStr))
} else {
if nameStr != "" {
return name.ToString()
} else {
return msg.ToString()
}
}
}
func (r *Runtime) builtin_Error(args []Value, proto *Object) *Object {
obj := r.newBaseObject(proto, classError)
if len(args) > 0 && args[0] != _undefined {
obj._putProp("message", args[0], true, false, true)
}
return obj.val
}
func (r *Runtime) builtin_new(construct *Object, args []Value) *Object {
repeat:
switch f := construct.self.(type) {
case *nativeFuncObject:
if f.construct != nil {
return f.construct(args)
} else {
panic("Not a constructor")
}
case *boundFuncObject:
if f.construct != nil {
return f.construct(args)
} else {
panic("Not a constructor")
}
case *funcObject:
// TODO: implement
panic("Not implemented")
case *lazyObject:
construct.self = f.create(construct)
goto repeat
default:
panic("Not a constructor")
}
}
func (r *Runtime) throw(e Value) {
panic(e)
}
func (r *Runtime) builtin_thrower(call FunctionCall) Value {
r.typeErrorResult(true, "'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them")
return nil
}
func (r *Runtime) eval(src string, direct, strict bool, this Value) Value {
p, err := r.compile("<eval>", src, strict, true)
if err != nil {
panic(err)
}
vm := r.vm
vm.pushCtx()
vm.prg = p
vm.pc = 0
if !direct {
vm.stash = nil
}
vm.sb = vm.sp
vm.push(this)
if strict {
vm.push(valueTrue)
} else {
vm.push(valueFalse)
}
vm.run()
vm.popCtx()
vm.halt = false
retval := vm.stack[vm.sp-1]
vm.sp -= 2
return retval
}
func (r *Runtime) builtin_eval(call FunctionCall) Value {
if len(call.Arguments) == 0 {
return _undefined
}
if str, ok := call.Arguments[0].assertString(); ok {
return r.eval(str.String(), false, false, r.globalObject)
}
return call.Arguments[0]
}
func (r *Runtime) constructWrap(construct func(args []Value, proto *Object) *Object, proto *Object) func(call FunctionCall) Value {
return func(call FunctionCall) Value {
return construct(call.Arguments, proto)
}
}
func (r *Runtime) toCallable(v Value) func(FunctionCall) Value {
if call, ok := r.toObject(v).self.assertCallable(); ok {
return call
}
r.typeErrorResult(true, "Value is not callable: %s", v.ToString())
return nil
}
func (r *Runtime) checkObjectCoercible(v Value) {
switch v.(type) {
case valueUndefined, valueNull:
r.typeErrorResult(true, "Value is not object coercible")
}
}
func toUInt32(v Value) uint32 {
v = v.ToNumber()
if i, ok := v.assertInt(); ok {
return uint32(i)
}
if f, ok := v.assertFloat(); ok {
if !math.IsNaN(f) && !math.IsInf(f, 0) {
return uint32(int64(f))
}
}
return 0
}
func toUInt16(v Value) uint16 {
v = v.ToNumber()
if i, ok := v.assertInt(); ok {
return uint16(i)
}
if f, ok := v.assertFloat(); ok {
if !math.IsNaN(f) && !math.IsInf(f, 0) {
return uint16(int64(f))
}
}
return 0
}
func toLength(v Value) int64 {
if v == nil {
return 0
}
i := v.ToInteger()
if i < 0 {
return 0
}
if i >= maxInt {
return maxInt - 1
}
return i
}
func toInt32(v Value) int32 {
v = v.ToNumber()
if i, ok := v.assertInt(); ok {
return int32(i)
}
if f, ok := v.assertFloat(); ok {
if !math.IsNaN(f) && !math.IsInf(f, 0) {
return int32(int64(f))
}
}
return 0
}
func (r *Runtime) toBoolean(b bool) Value {
if b {
return valueTrue
} else {
return valueFalse
}
}
// New creates an instance of a Javascript runtime that can be used to run code. Multiple instances may be created and
// used simultaneously, however it is not possible to pass JS values across runtimes.
func New() *Runtime {
r := &Runtime{}
r.init()
return r
}
// Compile creates an internal representation of the JavaScript code that can be later run using the Runtime.RunProgram()
// method. This representation is not linked to a runtime in any way and can be run in multiple runtimes (possibly
// at the same time).
func Compile(name, src string, strict bool) (p *Program, err error) {
return compile(name, src, strict, false)
}
// MustCompile is like Compile but panics if the code cannot be compiled.
// It simplifies safe initialization of global variables holding compiled JavaScript code.
func MustCompile(name, src string, strict bool) *Program {
prg, err := Compile(name, src, strict)
if err != nil {
panic(err)
}
return prg
}
func compile(name, src string, strict, eval bool) (p *Program, err error) {
prg, err1 := parser.ParseFile(nil, name, src, 0)
if err1 != nil {
switch err1 := err1.(type) {
case parser.ErrorList:
if len(err1) > 0 && err1[0].Message == "Invalid left-hand side in assignment" {
err = &CompilerReferenceError{
CompilerError: CompilerError{
Message: err1.Error(),
},
}
return
}
}
// FIXME offset
err = &CompilerSyntaxError{
CompilerError: CompilerError{
Message: err1.Error(),
},
}
return
}
c := newCompiler()
c.scope.strict = strict
c.scope.eval = eval
defer func() {
if x := recover(); x != nil {
p = nil
switch x1 := x.(type) {
case *CompilerSyntaxError:
err = x1
default:
panic(x)
}
}
}()
c.compile(prg)
p = c.p
return
}
func (r *Runtime) compile(name, src string, strict, eval bool) (p *Program, err error) {
p, err = compile(name, src, strict, eval)
if err != nil {
switch x1 := err.(type) {
case *CompilerSyntaxError:
err = &Exception{
val: r.builtin_new(r.global.SyntaxError, []Value{newStringValue(x1.Error())}),
}
case *CompilerReferenceError:
err = &Exception{
val: r.newError(r.global.ReferenceError, x1.Message),
} // TODO proper message
}
}
return
}
// RunString executes the given string in the global context.
func (r *Runtime) RunString(str string) (Value, error) {
return r.RunScript("", str)
}
// RunScript executes the given string in the global context.
func (r *Runtime) RunScript(name, src string) (Value, error) {
p, err := Compile(name, src, false)
if err != nil {
return nil, err
}
return r.RunProgram(p)
}
// RunProgram executes a pre-compiled (see Compile()) code in the global context.
func (r *Runtime) RunProgram(p *Program) (result Value, err error) {
defer func() {
if x := recover(); x != nil {
if intr, ok := x.(*InterruptedError); ok {
err = intr
} else {
panic(x)
}
}
}()
recursive := false
if len(r.vm.callStack) > 0 {
recursive = true
r.vm.pushCtx()
}
r.vm.prg = p
r.vm.pc = 0
ex := r.vm.runTry()
if ex == nil {
result = r.vm.pop()
} else {
err = ex
}
if recursive {
r.vm.popCtx()
r.vm.halt = false
} else {
r.vm.stack = nil
}
return
}
// Interrupt a running JavaScript. The corresponding Go call will return an *InterruptedError containing v.
// Note, it only works while in JavaScript code, it does not interrupt native Go functions (which includes all built-ins).
func (r *Runtime) Interrupt(v interface{}) {
r.vm.Interrupt(v)
}
/*
ToValue converts a Go value into JavaScript value.
Primitive types (ints and uints, floats, string, bool) are converted to the corresponding JavaScript primitives.
func(FunctionCall) Value is treated as a native JavaScript function.
map[string]interface{} is converted into a host object that largely behaves like a JavaScript Object.
[]interface{} is converted into a host object that behaves largely like a JavaScript Array, however it's not extensible
because extending it can change the pointer so it becomes detached from the original.
*[]interface{} same as above, but the array becomes extensible.
A function is wrapped within a native JavaScript function. When called the arguments are automatically converted to
the appropriate Go types. If conversion is not possible, a TypeError is thrown.
A slice type is converted into a generic reflect based host object that behaves similar to an unexpandable Array.
Any other type is converted to a generic reflect based host object. Depending on the underlying type it behaves similar
to a Number, String, Boolean or Object.
Note that the underlying type is not lost, calling Export() returns the original Go value. This applies to all
reflect based types.
*/
func (r *Runtime) ToValue(i interface{}) Value {
switch i := i.(type) {
case nil:
return _null
case Value:
// TODO: prevent importing Objects from a different runtime
return i
case string:
return newStringValue(i)
case bool:
if i {
return valueTrue
} else {
return valueFalse
}
case func(FunctionCall) Value:
return r.newNativeFunc(i, nil, "", nil, 0)
case int:
return intToValue(int64(i))
case int8:
return intToValue(int64(i))
case int16:
return intToValue(int64(i))
case int32:
return intToValue(int64(i))
case int64:
return intToValue(i)
case uint:
if int64(i) <= math.MaxInt64 {
return intToValue(int64(i))
} else {
return floatToValue(float64(i))
}
case uint64:
if i <= math.MaxInt64 {
return intToValue(int64(i))
} else {
return floatToValue(float64(i))
}
case uint8:
return intToValue(int64(i))
case uint16:
return intToValue(int64(i))
case uint32:
return intToValue(int64(i))
case map[string]interface{}:
obj := &Object{runtime: r}
m := &objectGoMapSimple{
baseObject: baseObject{
val: obj,
extensible: true,
},
data: i,
}
obj.self = m
m.init()
return obj
case []interface{}:
obj := &Object{runtime: r}
a := &objectGoSlice{
baseObject: baseObject{
val: obj,
},
data: &i,
}
obj.self = a
a.init()
return obj
case *[]interface{}:
obj := &Object{runtime: r}
a := &objectGoSlice{
baseObject: baseObject{
val: obj,
},
data: i,
sliceExtensible: true,
}
obj.self = a
a.init()
return obj
}
origValue := reflect.ValueOf(i)
value := origValue
for value.Kind() == reflect.Ptr {
value = reflect.Indirect(value)
}
if !value.IsValid() {
return _null
}
switch value.Kind() {
case reflect.Map:
if value.Type().Name() == "" {
switch value.Type().Key().Kind() {
case reflect.String, reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64,
reflect.Float64, reflect.Float32:
obj := &Object{runtime: r}
m := &objectGoMapReflect{
objectGoReflect: objectGoReflect{
baseObject: baseObject{
val: obj,
extensible: true,
},
origValue: origValue,
value: value,
},
}
m.init()
obj.self = m
return obj
}
}
case reflect.Slice:
obj := &Object{runtime: r}
a := &objectGoSliceReflect{
objectGoReflect: objectGoReflect{
baseObject: baseObject{
val: obj,
},
origValue: origValue,
value: value,
},
}
a.init()
obj.self = a
return obj
case reflect.Func:
return r.newNativeFunc(r.wrapReflectFunc(value), nil, "", nil, value.Type().NumIn())
}
obj := &Object{runtime: r}
o := &objectGoReflect{
baseObject: baseObject{
val: obj,
},
origValue: origValue,
value: value,
}
obj.self = o
o.init()
return obj
}
func (r *Runtime) wrapReflectFunc(value reflect.Value) func(FunctionCall) Value {
return func(call FunctionCall) Value {
typ := value.Type()
nargs := typ.NumIn()
if len(call.Arguments) != nargs {
if typ.IsVariadic() {
if len(call.Arguments) < nargs-1 {
panic(r.newError(r.global.TypeError, "expected at least %d arguments; got %d", nargs-1, len(call.Arguments)))
}
} else {
panic(r.newError(r.global.TypeError, "expected %d argument(s); got %d", nargs, len(call.Arguments)))
}
}
in := make([]reflect.Value, len(call.Arguments))
callSlice := false
for i, a := range call.Arguments {
var t reflect.Type
n := i
if n >= nargs-1 && typ.IsVariadic() {
if n > nargs-1 {
n = nargs - 1
}
t = typ.In(n).Elem()
} else {
t = typ.In(n)
}
// if this is a variadic Go function, and the caller has supplied
// exactly the number of JavaScript arguments required, and this
// is the last JavaScript argument, try treating the it as the
// actual set of variadic Go arguments. if that succeeds, break
// out of the loop.
if typ.IsVariadic() && len(call.Arguments) == nargs && i == nargs-1 {
if v, err := r.toReflectValue(a, typ.In(n)); err == nil {
in[i] = v
callSlice = true
break
}
}
var err error
in[i], err = r.toReflectValue(a, t)
if err != nil {
panic(r.newError(r.global.TypeError, "Could not convert function call parameter %v to %v", a, t))
}
}
var out []reflect.Value
if callSlice {
out = value.CallSlice(in)
} else {
out = value.Call(in)
}
if len(out) == 0 {
return _undefined
}
if last := out[len(out)-1]; last.Type().Name() == "error" {
if !last.IsNil() {
err := last.Interface()
if _, ok := err.(*Exception); ok {
panic(err)
}
panic(r.NewGoError(last.Interface().(error)))
}
out = out[:len(out)-1]
}
switch len(out) {
case 0:
return _undefined
case 1:
return r.ToValue(out[0].Interface())
default:
s := make([]interface{}, len(out))
for i, v := range out {
s[i] = v.Interface()
}
return r.ToValue(s)
}
}
}
func (r *Runtime) toReflectValue(v Value, typ reflect.Type) (reflect.Value, error) {
switch typ.Kind() {
case reflect.String:
return reflect.ValueOf(v.String()).Convert(typ), nil
case reflect.Bool:
return reflect.ValueOf(v.ToBoolean()).Convert(typ), nil
case reflect.Int:
i, _ := toInt(v)
return reflect.ValueOf(int(i)).Convert(typ), nil
case reflect.Int64:
i, _ := toInt(v)
return reflect.ValueOf(i).Convert(typ), nil
case reflect.Int32:
i, _ := toInt(v)
return reflect.ValueOf(int32(i)).Convert(typ), nil
case reflect.Int16:
i, _ := toInt(v)
return reflect.ValueOf(int16(i)).Convert(typ), nil
case reflect.Int8:
i, _ := toInt(v)
return reflect.ValueOf(int8(i)).Convert(typ), nil
case reflect.Uint:
i, _ := toInt(v)
return reflect.ValueOf(uint(i)).Convert(typ), nil
case reflect.Uint64:
i, _ := toInt(v)
return reflect.ValueOf(uint64(i)).Convert(typ), nil
case reflect.Uint32:
i, _ := toInt(v)
return reflect.ValueOf(uint32(i)).Convert(typ), nil
case reflect.Uint16:
i, _ := toInt(v)
return reflect.ValueOf(uint16(i)).Convert(typ), nil
case reflect.Uint8:
i, _ := toInt(v)
return reflect.ValueOf(uint8(i)).Convert(typ), nil
}
t := reflect.TypeOf(v)
if t.AssignableTo(typ) {
return reflect.ValueOf(v), nil
} else if t.ConvertibleTo(typ) {
return reflect.ValueOf(v).Convert(typ), nil
}
if typ == typeCallable {
if fn, ok := AssertFunction(v); ok {
return reflect.ValueOf(fn), nil
}
}
et := v.ExportType()
if et == nil {
return reflect.Zero(typ), nil
}
if et.AssignableTo(typ) {
return reflect.ValueOf(v.Export()), nil
} else if et.ConvertibleTo(typ) {
return reflect.ValueOf(v.Export()).Convert(typ), nil
}
switch typ.Kind() {
case reflect.Slice:
if o, ok := v.(*Object); ok {
if o.self.className() == classArray {
l := int(toLength(o.self.getStr("length")))
s := reflect.MakeSlice(typ, l, l)
elemTyp := typ.Elem()
for i := 0; i < l; i++ {
item := o.self.get(intToValue(int64(i)))
itemval, err := r.toReflectValue(item, elemTyp)
if err != nil {
return reflect.Value{}, fmt.Errorf("Could not convert array element %v to %v at %d", v, typ, i)
}
s.Index(i).Set(itemval)
}
return s, nil
}
}
case reflect.Map:
if o, ok := v.(*Object); ok {
m := reflect.MakeMap(typ)
keyTyp := typ.Key()
elemTyp := typ.Elem()
needConvertKeys := !reflect.ValueOf("").Type().AssignableTo(keyTyp)
for item, f := o.self.enumerate(false, false)(); f != nil; item, f = f() {
var kv reflect.Value
var err error
if needConvertKeys {
kv, err = r.toReflectValue(newStringValue(item.name), keyTyp)
if err != nil {
return reflect.Value{}, fmt.Errorf("Could not convert map key %s to %v", item.name, typ)
}
} else {
kv = reflect.ValueOf(item.name)
}
ival := item.value
if ival == nil {
ival = o.self.getStr(item.name)
}
if ival != nil {
vv, err := r.toReflectValue(ival, elemTyp)
if err != nil {
return reflect.Value{}, fmt.Errorf("Could not convert map value %v to %v at key %s", ival, typ, item.name)
}
m.SetMapIndex(kv, vv)
} else {
m.SetMapIndex(kv, reflect.Zero(elemTyp))
}
}
return m, nil
}
case reflect.Struct:
if o, ok := v.(*Object); ok {
s := reflect.New(typ).Elem()
for i := 0; i < typ.NumField(); i++ {
field := typ.Field(i)
if ast.IsExported(field.Name) {
v := o.self.getStr(field.Name)
if v != nil {
vv, err := r.toReflectValue(v, field.Type)
if err != nil {
return reflect.Value{}, fmt.Errorf("Could not convert struct value %v to %v for field %s", v, field.Type, field.Name)
}
s.Field(i).Set(vv)
}
}
}
return s, nil
}
case reflect.Func:
if fn, ok := AssertFunction(v); ok {
return reflect.MakeFunc(typ, r.wrapJSFunc(fn, typ)), nil
}
}
return reflect.Value{}, fmt.Errorf("Could not convert %v to %v", v, typ)
}
func (r *Runtime) wrapJSFunc(fn Callable, typ reflect.Type) func(args []reflect.Value) (results []reflect.Value) {
return func(args []reflect.Value) (results []reflect.Value) {
jsArgs := make([]Value, len(args))
for i, arg := range args {
jsArgs[i] = r.ToValue(arg.Interface())
}
results = make([]reflect.Value, typ.NumOut())
res, err := fn(_undefined, jsArgs...)
if err == nil {
if typ.NumOut() > 0 {
results[0], err = r.toReflectValue(res, typ.Out(0))
}
}
if err != nil {
if typ.NumOut() == 2 && typ.Out(1).Name() == "error" {
results[1] = reflect.ValueOf(err).Convert(typ.Out(1))
} else {
panic(err)
}
}
for i, v := range results {
if !v.IsValid() {
results[i] = reflect.Zero(typ.Out(i))
}
}
return
}
}
// ExportTo converts a JavaScript value into the specified Go value. The second parameter must be a non-nil pointer.
// Returns error if conversion is not possible.
func (r *Runtime) ExportTo(v Value, target interface{}) error {
tval := reflect.ValueOf(target)
if tval.Kind() != reflect.Ptr || tval.IsNil() {
return errors.New("target must be a non-nil pointer")
}
vv, err := r.toReflectValue(v, tval.Elem().Type())
if err != nil {
return err
}
tval.Elem().Set(vv)
return nil
}
// GlobalObject returns the global object.
func (r *Runtime) GlobalObject() *Object {
return r.globalObject
}
// Set the specified value as a property of the global object.
// The value is first converted using ToValue()
func (r *Runtime) Set(name string, value interface{}) {
r.globalObject.self.putStr(name, r.ToValue(value), false)
}
// Get the specified property of the global object.
func (r *Runtime) Get(name string) Value {
return r.globalObject.self.getStr(name)
}
// SetRandSource sets random source for this Runtime. If not called, the default math/rand is used.
func (r *Runtime) SetRandSource(source RandSource) {
r.rand = source
}
// Callable represents a JavaScript function that can be called from Go.
type Callable func(this Value, args ...Value) (Value, error)
// AssertFunction checks if the Value is a function and returns a Callable.
func AssertFunction(v Value) (Callable, bool) {
if obj, ok := v.(*Object); ok {
if f, ok := obj.self.assertCallable(); ok {
return func(this Value, args ...Value) (ret Value, err error) {
ex := obj.runtime.vm.try(func() {
ret = f(FunctionCall{
This: this,
Arguments: args,
})
})
if ex != nil {
err = ex
}
return
}, true
}
}
return nil, false
}
// IsUndefined returns true if the supplied Value is undefined. Note, it checks against the real undefined, not
// against the global object's 'undefined' property.
func IsUndefined(v Value) bool {
return v == _undefined
}
// IsNull returns true if the supplied Value is null.
func IsNull(v Value) bool {
return v == _null
}
// Undefined returns JS undefined value. Note if global 'undefined' property is changed this still returns the original value.
func Undefined() Value {
return _undefined
}
// Null returns JS null value.
func Null() Value {
return _undefined
}
|