mirror of
https://github.com/ii64/sonic.git
synced 2026-06-20 16:45:22 +08:00
* feat:(decoder) support skip mismatche-typed value * change test cases * refactor: add type check down into `CompilePrimitive()` to avoid repeat `null` check * opt call skip() * bench: add option `--repeat_times` * test: omit check primitive * opt: inline primitive check into its OP * implement on Go1.15 * fix: support skip json.Numer * fix: OP_go_skip * update README.md
49 lines
1.6 KiB
Go
49 lines
1.6 KiB
Go
/*
|
|
* Copyright 2021 ByteDance Inc.
|
|
*
|
|
* 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 decoder
|
|
|
|
import (
|
|
`encoding`
|
|
`encoding/base64`
|
|
`encoding/json`
|
|
`reflect`
|
|
`unsafe`
|
|
|
|
`github.com/bytedance/sonic/internal/rt`
|
|
)
|
|
|
|
var (
|
|
byteType = reflect.TypeOf(byte(0))
|
|
intType = reflect.TypeOf(int(0))
|
|
uintType = reflect.TypeOf(uint(0))
|
|
floatType = reflect.TypeOf(float64(0))
|
|
stringType = reflect.TypeOf("")
|
|
bytesType = reflect.TypeOf([]byte(nil))
|
|
jsonNumberType = reflect.TypeOf(json.Number(""))
|
|
base64CorruptInputError = reflect.TypeOf(base64.CorruptInputError(0))
|
|
)
|
|
|
|
var (
|
|
errorType = reflect.TypeOf((*error)(nil)).Elem()
|
|
jsonUnmarshalerType = reflect.TypeOf((*json.Unmarshaler)(nil)).Elem()
|
|
encodingTextUnmarshalerType = reflect.TypeOf((*encoding.TextUnmarshaler)(nil)).Elem()
|
|
)
|
|
|
|
func rtype(t reflect.Type) (*rt.GoItab, *rt.GoType) {
|
|
p := (*rt.GoIface)(unsafe.Pointer(&t))
|
|
return p.Itab, (*rt.GoType)(p.Value)
|
|
}
|