123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- package goja
- import (
- "math"
- "math/bits"
- "reflect"
- "strconv"
- "github.com/dop251/goja/unistring"
- )
- type objectGoSliceReflect struct {
- objectGoReflect
- lengthProp valueProperty
- }
- func (o *objectGoSliceReflect) init() {
- o.objectGoReflect.init()
- o.class = classArray
- o.prototype = o.val.runtime.global.ArrayPrototype
- if !o.value.CanSet() {
- value := reflect.Indirect(reflect.New(o.value.Type()))
- value.Set(o.value)
- o.value = value
- }
- o.lengthProp.writable = true
- o.updateLen()
- o.baseObject._put("length", &o.lengthProp)
- }
- func (o *objectGoSliceReflect) updateLen() {
- o.lengthProp.value = intToValue(int64(o.value.Len()))
- }
- func (o *objectGoSliceReflect) _hasIdx(idx valueInt) bool {
- if idx := int64(idx); idx >= 0 && idx < int64(o.value.Len()) {
- return true
- }
- return false
- }
- func (o *objectGoSliceReflect) _hasStr(name unistring.String) bool {
- if idx := strToIdx64(name); idx >= 0 && idx < int64(o.value.Len()) {
- return true
- }
- return false
- }
- func (o *objectGoSliceReflect) _getIdx(idx int) Value {
- v := o.value.Index(idx)
- if (v.Kind() == reflect.Ptr || v.Kind() == reflect.Interface) && v.IsNil() {
- return _null
- }
- return o.val.runtime.ToValue(v.Interface())
- }
- func (o *objectGoSliceReflect) getIdx(idx valueInt, receiver Value) Value {
- if idx := toIntStrict(int64(idx)); idx >= 0 && idx < o.value.Len() {
- return o._getIdx(idx)
- }
- return o.objectGoReflect.getStr(idx.string(), receiver)
- }
- func (o *objectGoSliceReflect) getStr(name unistring.String, receiver Value) Value {
- var ownProp Value
- if idx := strToGoIdx(name); idx >= 0 && idx < o.value.Len() {
- ownProp = o._getIdx(idx)
- } else if name == "length" {
- ownProp = &o.lengthProp
- } else {
- ownProp = o.objectGoReflect.getOwnPropStr(name)
- }
- return o.getStrWithOwnProp(ownProp, name, receiver)
- }
- func (o *objectGoSliceReflect) getOwnPropStr(name unistring.String) Value {
- if idx := strToGoIdx(name); idx >= 0 {
- if idx < o.value.Len() {
- return &valueProperty{
- value: o._getIdx(idx),
- writable: true,
- enumerable: true,
- }
- }
- return nil
- }
- if name == "length" {
- return &o.lengthProp
- }
- return o.objectGoReflect.getOwnPropStr(name)
- }
- func (o *objectGoSliceReflect) getOwnPropIdx(idx valueInt) Value {
- if idx := toIntStrict(int64(idx)); idx >= 0 && idx < o.value.Len() {
- return &valueProperty{
- value: o._getIdx(idx),
- writable: true,
- enumerable: true,
- }
- }
- return nil
- }
- func (o *objectGoSliceReflect) putIdx(idx int, v Value, throw bool) bool {
- if idx >= o.value.Len() {
- o.grow(idx + 1)
- }
- err := o.val.runtime.toReflectValue(v, o.value.Index(idx), &objectExportCtx{})
- if err != nil {
- o.val.runtime.typeErrorResult(throw, "Go type conversion error: %v", err)
- return false
- }
- return true
- }
- func (o *objectGoSliceReflect) grow(size int) {
- oldcap := o.value.Cap()
- if oldcap < size {
- n := reflect.MakeSlice(o.value.Type(), size, growCap(size, o.value.Len(), oldcap))
- reflect.Copy(n, o.value)
- o.value.Set(n)
- } else {
- tail := o.value.Slice(o.value.Len(), size)
- zero := reflect.Zero(o.value.Type().Elem())
- for i := 0; i < tail.Len(); i++ {
- tail.Index(i).Set(zero)
- }
- o.value.SetLen(size)
- }
- o.updateLen()
- }
- func (o *objectGoSliceReflect) shrink(size int) {
- tail := o.value.Slice(size, o.value.Len())
- zero := reflect.Zero(o.value.Type().Elem())
- for i := 0; i < tail.Len(); i++ {
- tail.Index(i).Set(zero)
- }
- o.value.SetLen(size)
- o.updateLen()
- }
- func (o *objectGoSliceReflect) putLength(v uint32, throw bool) bool {
- if bits.UintSize == 32 && v > math.MaxInt32 {
- panic(rangeError("Integer value overflows 32-bit int"))
- }
- newLen := int(v)
- curLen := o.value.Len()
- if newLen > curLen {
- o.grow(newLen)
- } else if newLen < curLen {
- o.shrink(newLen)
- }
- return true
- }
- func (o *objectGoSliceReflect) setOwnIdx(idx valueInt, val Value, throw bool) bool {
- if i := toIntStrict(int64(idx)); i >= 0 {
- if i >= o.value.Len() {
- if res, ok := o._setForeignIdx(idx, nil, val, o.val, throw); ok {
- return res
- }
- }
- o.putIdx(i, val, throw)
- } else {
- name := idx.string()
- if res, ok := o._setForeignStr(name, nil, val, o.val, throw); !ok {
- o.val.runtime.typeErrorResult(throw, "Can't set property '%s' on Go slice", name)
- return false
- } else {
- return res
- }
- }
- return true
- }
- func (o *objectGoSliceReflect) setOwnStr(name unistring.String, val Value, throw bool) bool {
- if idx := strToGoIdx(name); idx >= 0 {
- if idx >= o.value.Len() {
- if res, ok := o._setForeignStr(name, nil, val, o.val, throw); ok {
- return res
- }
- }
- o.putIdx(idx, val, throw)
- } else {
- if name == "length" {
- return o.putLength(o.val.runtime.toLengthUint32(val), throw)
- }
- if res, ok := o._setForeignStr(name, nil, val, o.val, throw); !ok {
- o.val.runtime.typeErrorResult(throw, "Can't set property '%s' on Go slice", name)
- return false
- } else {
- return res
- }
- }
- return true
- }
- func (o *objectGoSliceReflect) setForeignIdx(idx valueInt, val, receiver Value, throw bool) (bool, bool) {
- return o._setForeignIdx(idx, trueValIfPresent(o._hasIdx(idx)), val, receiver, throw)
- }
- func (o *objectGoSliceReflect) setForeignStr(name unistring.String, val, receiver Value, throw bool) (bool, bool) {
- return o._setForeignStr(name, trueValIfPresent(o.hasOwnPropertyStr(name)), val, receiver, throw)
- }
- func (o *objectGoSliceReflect) hasOwnPropertyIdx(idx valueInt) bool {
- return o._hasIdx(idx)
- }
- func (o *objectGoSliceReflect) hasOwnPropertyStr(name unistring.String) bool {
- if o._hasStr(name) || name == "length" {
- return true
- }
- return o.objectGoReflect._has(name.String())
- }
- func (o *objectGoSliceReflect) defineOwnPropertyIdx(idx valueInt, descr PropertyDescriptor, throw bool) bool {
- if i := toIntStrict(int64(idx)); i >= 0 {
- if !o.val.runtime.checkHostObjectPropertyDescr(idx.string(), descr, throw) {
- return false
- }
- val := descr.Value
- if val == nil {
- val = _undefined
- }
- o.putIdx(i, val, throw)
- return true
- }
- o.val.runtime.typeErrorResult(throw, "Cannot define property '%d' on a Go slice", idx)
- return false
- }
- func (o *objectGoSliceReflect) defineOwnPropertyStr(name unistring.String, descr PropertyDescriptor, throw bool) bool {
- if idx := strToGoIdx(name); idx >= 0 {
- if !o.val.runtime.checkHostObjectPropertyDescr(name, descr, throw) {
- return false
- }
- val := descr.Value
- if val == nil {
- val = _undefined
- }
- o.putIdx(idx, val, throw)
- return true
- }
- if name == "length" {
- return o.val.runtime.defineArrayLength(&o.lengthProp, descr, o.putLength, throw)
- }
- o.val.runtime.typeErrorResult(throw, "Cannot define property '%s' on a Go slice", name)
- return false
- }
- func (o *objectGoSliceReflect) toPrimitiveNumber() Value {
- return o.toPrimitiveString()
- }
- func (o *objectGoSliceReflect) toPrimitiveString() Value {
- return o.val.runtime.arrayproto_join(FunctionCall{
- This: o.val,
- })
- }
- func (o *objectGoSliceReflect) toPrimitive() Value {
- return o.toPrimitiveString()
- }
- func (o *objectGoSliceReflect) _deleteIdx(idx int) {
- if idx < o.value.Len() {
- o.value.Index(idx).Set(reflect.Zero(o.value.Type().Elem()))
- }
- }
- func (o *objectGoSliceReflect) deleteStr(name unistring.String, throw bool) bool {
- if idx := strToGoIdx(name); idx >= 0 {
- o._deleteIdx(idx)
- return true
- }
- return o.objectGoReflect.deleteStr(name, throw)
- }
- func (o *objectGoSliceReflect) deleteIdx(i valueInt, throw bool) bool {
- idx := toIntStrict(int64(i))
- if idx >= 0 {
- o._deleteIdx(idx)
- }
- return true
- }
- type gosliceReflectPropIter struct {
- o *objectGoSliceReflect
- idx, limit int
- }
- func (i *gosliceReflectPropIter) next() (propIterItem, iterNextFunc) {
- if i.idx < i.limit && i.idx < i.o.value.Len() {
- name := strconv.Itoa(i.idx)
- i.idx++
- return propIterItem{name: asciiString(name), enumerable: _ENUM_TRUE}, i.next
- }
- return i.o.objectGoReflect.iterateStringKeys()()
- }
- func (o *objectGoSliceReflect) stringKeys(all bool, accum []Value) []Value {
- for i := 0; i < o.value.Len(); i++ {
- accum = append(accum, asciiString(strconv.Itoa(i)))
- }
- return o.objectGoReflect.stringKeys(all, accum)
- }
- func (o *objectGoSliceReflect) iterateStringKeys() iterNextFunc {
- return (&gosliceReflectPropIter{
- o: o,
- limit: o.value.Len(),
- }).next
- }
- func (o *objectGoSliceReflect) equal(other objectImpl) bool {
- if other, ok := other.(*objectGoSliceReflect); ok {
- return o.value.Interface() == other.value.Interface()
- }
- return false
- }
- func (o *objectGoSliceReflect) sortLen() int64 {
- return int64(o.value.Len())
- }
- func (o *objectGoSliceReflect) sortGet(i int64) Value {
- return o.getIdx(valueInt(i), nil)
- }
- func (o *objectGoSliceReflect) swap(i, j int64) {
- ii := valueInt(i)
- jj := valueInt(j)
- x := o.getIdx(ii, nil)
- y := o.getIdx(jj, nil)
- o.setOwnIdx(ii, y, false)
- o.setOwnIdx(jj, x, false)
- }
|