mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 06:37:36 +03:00
powerman update
This commit is contained in:
parent
d8c4a90501
commit
785f86f50f
14 changed files with 450 additions and 6 deletions
54
vendor/github.com/powerman/deepequal/custom.go
generated
vendored
Normal file
54
vendor/github.com/powerman/deepequal/custom.go
generated
vendored
Normal file
|
@ -0,0 +1,54 @@
|
|||
// Package deepequal provides improved reflect.DeepEqual.
|
||||
//
|
||||
// Differences from reflect.DeepEqual:
|
||||
//
|
||||
// - If compared value implements `.Equal(valueOfSameType) bool` method then
|
||||
// it will be called instead of comparing values as is.
|
||||
// - If called `Equal` method will panics then whole DeepEqual will panics too.
|
||||
//
|
||||
// This means you can use this DeepEqual method to correctly compare types
|
||||
// like time.Time or decimal.Decimal, without taking in account unimportant
|
||||
// differences (like time zone or exponent).
|
||||
package deepequal
|
||||
|
||||
import (
|
||||
"reflect"
|
||||
"unsafe"
|
||||
)
|
||||
|
||||
// Disable check for unexported values.
|
||||
func forceExported(v *reflect.Value) (undo func()) {
|
||||
ref := (*value)(unsafe.Pointer(v))
|
||||
flag := ref.flag
|
||||
ref.flag &^= flagRO
|
||||
return func() { ref.flag = flag }
|
||||
}
|
||||
|
||||
func valueInterface(v reflect.Value) interface{} {
|
||||
defer forceExported(&v)()
|
||||
return v.Interface()
|
||||
}
|
||||
|
||||
func call(v reflect.Value, in []reflect.Value) []reflect.Value {
|
||||
defer forceExported(&v)()
|
||||
for i := range in {
|
||||
defer forceExported(&in[i])()
|
||||
}
|
||||
return v.Call(in)
|
||||
}
|
||||
|
||||
var (
|
||||
zeroValue reflect.Value
|
||||
boolType = reflect.TypeOf(true)
|
||||
)
|
||||
|
||||
func equalFunc(v reflect.Value) (equal reflect.Value, ok bool) {
|
||||
equal = v.MethodByName("Equal")
|
||||
if equal == zeroValue {
|
||||
return zeroValue, false
|
||||
}
|
||||
typ := equal.Type()
|
||||
ok = typ.NumIn() == 1 && typ.In(0) == v.Type() &&
|
||||
typ.NumOut() == 1 && typ.Out(0) == boolType
|
||||
return equal, ok
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue