ebiten/internal/jsutil/slice_js.go
2020-12-06 03:00:50 +09:00

104 lines
2.7 KiB
Go

// Copyright 2019 The Ebiten Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package jsutil
import (
"fmt"
"reflect"
"runtime"
"syscall/js"
"unsafe"
)
func Uint8ArrayToSlice(value js.Value) []byte {
s := make([]byte, value.Get("byteLength").Int())
js.CopyBytesToGo(s, value)
return s
}
func sliceToByteSlice(s interface{}) (bs []byte) {
switch s := s.(type) {
case []int8:
h := (*reflect.SliceHeader)(unsafe.Pointer(&s))
bs = *(*[]byte)(unsafe.Pointer(h))
runtime.KeepAlive(s)
case []int16:
h := (*reflect.SliceHeader)(unsafe.Pointer(&s))
h.Len *= 2
h.Cap *= 2
bs = *(*[]byte)(unsafe.Pointer(h))
runtime.KeepAlive(s)
case []int32:
h := (*reflect.SliceHeader)(unsafe.Pointer(&s))
h.Len *= 4
h.Cap *= 4
bs = *(*[]byte)(unsafe.Pointer(h))
runtime.KeepAlive(s)
case []int64:
h := (*reflect.SliceHeader)(unsafe.Pointer(&s))
h.Len *= 8
h.Cap *= 8
bs = *(*[]byte)(unsafe.Pointer(h))
runtime.KeepAlive(s)
case []uint8:
return s
case []uint16:
h := (*reflect.SliceHeader)(unsafe.Pointer(&s))
h.Len *= 2
h.Cap *= 2
bs = *(*[]byte)(unsafe.Pointer(h))
runtime.KeepAlive(s)
case []uint32:
h := (*reflect.SliceHeader)(unsafe.Pointer(&s))
h.Len *= 4
h.Cap *= 4
bs = *(*[]byte)(unsafe.Pointer(h))
runtime.KeepAlive(s)
case []uint64:
h := (*reflect.SliceHeader)(unsafe.Pointer(&s))
h.Len *= 8
h.Cap *= 8
bs = *(*[]byte)(unsafe.Pointer(h))
runtime.KeepAlive(s)
case []float32:
h := (*reflect.SliceHeader)(unsafe.Pointer(&s))
h.Len *= 4
h.Cap *= 4
bs = *(*[]byte)(unsafe.Pointer(h))
runtime.KeepAlive(s)
case []float64:
h := (*reflect.SliceHeader)(unsafe.Pointer(&s))
h.Len *= 8
h.Cap *= 8
bs = *(*[]byte)(unsafe.Pointer(h))
runtime.KeepAlive(s)
default:
panic(fmt.Sprintf("jsutil: unexpected value at sliceToBytesSlice: %T", s))
}
return
}
func CopySliceToJS(dst js.Value, src interface{}) {
switch s := src.(type) {
case []uint8:
js.CopyBytesToJS(dst, s)
case []int8, []int16, []int32, []uint16, []uint32, []float32, []float64:
a := uint8Array(dst.Get("buffer"), dst.Get("byteOffset").Int(), dst.Get("byteLength").Int())
js.CopyBytesToJS(a, sliceToByteSlice(s))
default:
panic(fmt.Sprintf("jsutil: unexpected value at CopySliceToJS: %T", s))
}
}