|
|
|
@ -125,7 +125,7 @@ func Hash(v any) (s Sum) {
|
|
|
|
|
seed = uint64(time.Now().UnixNano())
|
|
|
|
|
})
|
|
|
|
|
h.hashUint64(seed)
|
|
|
|
|
h.hashValue(reflect.ValueOf(v))
|
|
|
|
|
h.hashValue(reflect.ValueOf(v), false)
|
|
|
|
|
return h.sum()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -164,26 +164,151 @@ func (h *hasher) hashUint64(i uint64) {
|
|
|
|
|
|
|
|
|
|
var uint8Type = reflect.TypeOf(byte(0))
|
|
|
|
|
|
|
|
|
|
func (h *hasher) hashValue(v reflect.Value) {
|
|
|
|
|
if !v.IsValid() {
|
|
|
|
|
return
|
|
|
|
|
// typeInfo describes properties of a type.
|
|
|
|
|
type typeInfo struct {
|
|
|
|
|
rtype reflect.Type
|
|
|
|
|
isRecursive bool
|
|
|
|
|
|
|
|
|
|
// elemTypeInfo is the element type's typeInfo.
|
|
|
|
|
// It's set when rtype is of Kind Ptr, Slice, Array, Map.
|
|
|
|
|
elemTypeInfo *typeInfo
|
|
|
|
|
|
|
|
|
|
// keyTypeInfo is the map key type's typeInfo.
|
|
|
|
|
// It's set when rtype is of Kind Map.
|
|
|
|
|
keyTypeInfo *typeInfo
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var typeInfoMap sync.Map // map[reflect.Type]*typeInfo
|
|
|
|
|
var typeInfoMapPopulate sync.Mutex // just for adding to typeInfoMap
|
|
|
|
|
|
|
|
|
|
func getTypeInfo(t reflect.Type) *typeInfo {
|
|
|
|
|
if f, ok := typeInfoMap.Load(t); ok {
|
|
|
|
|
return f.(*typeInfo)
|
|
|
|
|
}
|
|
|
|
|
typeInfoMapPopulate.Lock()
|
|
|
|
|
defer typeInfoMapPopulate.Unlock()
|
|
|
|
|
newTypes := map[reflect.Type]*typeInfo{}
|
|
|
|
|
ti := getTypeInfoLocked(t, newTypes)
|
|
|
|
|
for t, ti := range newTypes {
|
|
|
|
|
typeInfoMap.Store(t, ti)
|
|
|
|
|
}
|
|
|
|
|
return ti
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
w := h.bw
|
|
|
|
|
func getTypeInfoLocked(t reflect.Type, incomplete map[reflect.Type]*typeInfo) *typeInfo {
|
|
|
|
|
if v, ok := typeInfoMap.Load(t); ok {
|
|
|
|
|
return v.(*typeInfo)
|
|
|
|
|
}
|
|
|
|
|
if ti, ok := incomplete[t]; ok {
|
|
|
|
|
return ti
|
|
|
|
|
}
|
|
|
|
|
ti := &typeInfo{
|
|
|
|
|
rtype: t,
|
|
|
|
|
isRecursive: typeIsRecursive(t),
|
|
|
|
|
}
|
|
|
|
|
incomplete[t] = ti
|
|
|
|
|
|
|
|
|
|
if v.CanInterface() {
|
|
|
|
|
// Use AppendTo methods, if available and cheap.
|
|
|
|
|
if v.CanAddr() && v.Type().Implements(appenderToType) {
|
|
|
|
|
a := v.Addr().Interface().(appenderTo)
|
|
|
|
|
size := h.scratch[:8]
|
|
|
|
|
record := a.AppendTo(size)
|
|
|
|
|
binary.LittleEndian.PutUint64(record, uint64(len(record)-len(size)))
|
|
|
|
|
w.Write(record)
|
|
|
|
|
return
|
|
|
|
|
switch t.Kind() {
|
|
|
|
|
case reflect.Map:
|
|
|
|
|
ti.keyTypeInfo = getTypeInfoLocked(t.Key(), incomplete)
|
|
|
|
|
fallthrough
|
|
|
|
|
case reflect.Ptr, reflect.Slice, reflect.Array:
|
|
|
|
|
ti.elemTypeInfo = getTypeInfoLocked(t.Elem(), incomplete)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ti
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// typeIsRecursive reports whether t has a path back to itself.
|
|
|
|
|
//
|
|
|
|
|
// For interfaces, it currently always reports true.
|
|
|
|
|
func typeIsRecursive(t reflect.Type) bool {
|
|
|
|
|
inStack := map[reflect.Type]bool{}
|
|
|
|
|
|
|
|
|
|
var stack []reflect.Type
|
|
|
|
|
|
|
|
|
|
var visitType func(t reflect.Type) (isRecursiveSoFar bool)
|
|
|
|
|
visitType = func(t reflect.Type) (isRecursiveSoFar bool) {
|
|
|
|
|
switch t.Kind() {
|
|
|
|
|
case reflect.Bool,
|
|
|
|
|
reflect.Int,
|
|
|
|
|
reflect.Int8,
|
|
|
|
|
reflect.Int16,
|
|
|
|
|
reflect.Int32,
|
|
|
|
|
reflect.Int64,
|
|
|
|
|
reflect.Uint,
|
|
|
|
|
reflect.Uint8,
|
|
|
|
|
reflect.Uint16,
|
|
|
|
|
reflect.Uint32,
|
|
|
|
|
reflect.Uint64,
|
|
|
|
|
reflect.Uintptr,
|
|
|
|
|
reflect.Float32,
|
|
|
|
|
reflect.Float64,
|
|
|
|
|
reflect.Complex64,
|
|
|
|
|
reflect.Complex128,
|
|
|
|
|
reflect.String,
|
|
|
|
|
reflect.UnsafePointer,
|
|
|
|
|
reflect.Func:
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
if t.Size() == 0 {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
if inStack[t] {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
stack = append(stack, t)
|
|
|
|
|
inStack[t] = true
|
|
|
|
|
defer func() {
|
|
|
|
|
delete(inStack, t)
|
|
|
|
|
stack = stack[:len(stack)-1]
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
switch t.Kind() {
|
|
|
|
|
default:
|
|
|
|
|
panic("unhandled kind " + t.Kind().String())
|
|
|
|
|
case reflect.Interface:
|
|
|
|
|
// Assume the worst for now. TODO(bradfitz): in some cases
|
|
|
|
|
// we should be able to prove that it's not recursive. Not worth
|
|
|
|
|
// it for now.
|
|
|
|
|
return true
|
|
|
|
|
case reflect.Array, reflect.Chan, reflect.Pointer, reflect.Slice:
|
|
|
|
|
return visitType(t.Elem())
|
|
|
|
|
case reflect.Map:
|
|
|
|
|
if visitType(t.Key()) {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
if visitType(t.Elem()) {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
case reflect.Struct:
|
|
|
|
|
if t.String() == "intern.Value" {
|
|
|
|
|
// Otherwise its interface{} makes this return true.
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
for i, numField := 0, t.NumField(); i < numField; i++ {
|
|
|
|
|
if visitType(t.Field(i).Type) {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
return visitType(t)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO(dsnet): Avoid cycle detection for types that cannot have cycles.
|
|
|
|
|
func (h *hasher) hashValue(v reflect.Value, forceCycleChecking bool) {
|
|
|
|
|
if !v.IsValid() {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
ti := getTypeInfo(v.Type())
|
|
|
|
|
h.hashValueWithType(v, ti, forceCycleChecking)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h *hasher) hashValueWithType(v reflect.Value, ti *typeInfo, forceCycleChecking bool) {
|
|
|
|
|
w := h.bw
|
|
|
|
|
doCheckCycles := forceCycleChecking || ti.isRecursive
|
|
|
|
|
|
|
|
|
|
// Generic handling.
|
|
|
|
|
switch v.Kind() {
|
|
|
|
@ -195,7 +320,7 @@ func (h *hasher) hashValue(v reflect.Value) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check for cycle.
|
|
|
|
|
if doCheckCycles {
|
|
|
|
|
ptr := pointerOf(v)
|
|
|
|
|
if idx, ok := h.visitStack.seen(ptr); ok {
|
|
|
|
|
h.hashUint8(2) // indicates cycle
|
|
|
|
@ -204,12 +329,13 @@ func (h *hasher) hashValue(v reflect.Value) {
|
|
|
|
|
}
|
|
|
|
|
h.visitStack.push(ptr)
|
|
|
|
|
defer h.visitStack.pop(ptr)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h.hashUint8(1) // indicates visiting a pointer
|
|
|
|
|
h.hashValue(v.Elem())
|
|
|
|
|
h.hashValueWithType(v.Elem(), ti.elemTypeInfo, doCheckCycles)
|
|
|
|
|
case reflect.Struct:
|
|
|
|
|
for i, n := 0, v.NumField(); i < n; i++ {
|
|
|
|
|
h.hashValue(v.Field(i))
|
|
|
|
|
h.hashValue(v.Field(i), doCheckCycles)
|
|
|
|
|
}
|
|
|
|
|
case reflect.Slice, reflect.Array:
|
|
|
|
|
vLen := v.Len()
|
|
|
|
@ -233,7 +359,7 @@ func (h *hasher) hashValue(v reflect.Value) {
|
|
|
|
|
// TODO(dsnet): Perform cycle detection for slices,
|
|
|
|
|
// which is functionally a list of pointers.
|
|
|
|
|
// See https://github.com/google/go-cmp/blob/402949e8139bb890c71a707b6faf6dd05c92f4e5/cmp/compare.go#L438-L450
|
|
|
|
|
h.hashValue(v.Index(i))
|
|
|
|
|
h.hashValueWithType(v.Index(i), ti.elemTypeInfo, doCheckCycles)
|
|
|
|
|
}
|
|
|
|
|
case reflect.Interface:
|
|
|
|
|
if v.IsNil() {
|
|
|
|
@ -244,9 +370,10 @@ func (h *hasher) hashValue(v reflect.Value) {
|
|
|
|
|
|
|
|
|
|
h.hashUint8(1) // indicates visiting interface value
|
|
|
|
|
h.hashType(v.Type())
|
|
|
|
|
h.hashValue(v)
|
|
|
|
|
h.hashValue(v, doCheckCycles)
|
|
|
|
|
case reflect.Map:
|
|
|
|
|
// Check for cycle.
|
|
|
|
|
if doCheckCycles {
|
|
|
|
|
ptr := pointerOf(v)
|
|
|
|
|
if idx, ok := h.visitStack.seen(ptr); ok {
|
|
|
|
|
h.hashUint8(2) // indicates cycle
|
|
|
|
@ -255,9 +382,9 @@ func (h *hasher) hashValue(v reflect.Value) {
|
|
|
|
|
}
|
|
|
|
|
h.visitStack.push(ptr)
|
|
|
|
|
defer h.visitStack.pop(ptr)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
h.hashUint8(1) // indicates visiting a map
|
|
|
|
|
h.hashMap(v)
|
|
|
|
|
h.hashMap(v, ti, doCheckCycles)
|
|
|
|
|
case reflect.String:
|
|
|
|
|
s := v.String()
|
|
|
|
|
h.hashUint64(uint64(len(s)))
|
|
|
|
@ -325,7 +452,7 @@ func (c *valueCache) get(t reflect.Type) reflect.Value {
|
|
|
|
|
// It relies on a map being a functionally an unordered set of KV entries.
|
|
|
|
|
// So long as we hash each KV entry together, we can XOR all
|
|
|
|
|
// of the individual hashes to produce a unique hash for the entire map.
|
|
|
|
|
func (h *hasher) hashMap(v reflect.Value) {
|
|
|
|
|
func (h *hasher) hashMap(v reflect.Value, ti *typeInfo, checkCycles bool) {
|
|
|
|
|
mh := mapHasherPool.Get().(*mapHasher)
|
|
|
|
|
defer mapHasherPool.Put(mh)
|
|
|
|
|
|
|
|
|
@ -341,8 +468,8 @@ func (h *hasher) hashMap(v reflect.Value) {
|
|
|
|
|
k.SetIterKey(iter)
|
|
|
|
|
e.SetIterValue(iter)
|
|
|
|
|
mh.h.reset()
|
|
|
|
|
mh.h.hashValue(k)
|
|
|
|
|
mh.h.hashValue(e)
|
|
|
|
|
mh.h.hashValueWithType(k, ti.keyTypeInfo, checkCycles)
|
|
|
|
|
mh.h.hashValueWithType(e, ti.elemTypeInfo, checkCycles)
|
|
|
|
|
sum.xor(mh.h.sum())
|
|
|
|
|
}
|
|
|
|
|
h.bw.Write(append(h.scratch[:0], sum.sum[:]...)) // append into scratch to avoid heap allocation
|
|
|
|
|