mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2024-12-28 18:25:46 +00:00
a9940822d4
Len looks like it should be O(1), but the need to check for non-zero-length repeated fields makes it at minimum O(n) where n is the number of repeated fields. In practice, it's O(n) where n is the number of fields altogether. The Len function is not especially useful, easily duplicated with Range and a counter, and can be surprisingly inefficient. Drop it. Change-Id: I24b27433217e131e842bd18dd58475bcdf62ef97 Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/183678 Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
136 lines
3.3 KiB
Go
136 lines
3.3 KiB
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package proto
|
|
|
|
import (
|
|
"bytes"
|
|
"reflect"
|
|
|
|
"google.golang.org/protobuf/internal/encoding/wire"
|
|
pref "google.golang.org/protobuf/reflect/protoreflect"
|
|
)
|
|
|
|
// Equal reports whether two messages are equal.
|
|
//
|
|
// Two messages are equal if they belong to the same message descriptor,
|
|
// have the same set of populated known and extension field values,
|
|
// and the same set of unknown fields values.
|
|
//
|
|
// Scalar values are compared with the equivalent of the == operator in Go,
|
|
// except bytes values which are compared using bytes.Equal.
|
|
// Note that this means that floating point NaNs are considered inequal.
|
|
// Message values are compared by recursively calling Equal.
|
|
// Lists are equal if each element value is also equal.
|
|
// Maps are equal if they have the same set of keys, where the pair of values
|
|
// for each key is also equal.
|
|
func Equal(x, y Message) bool {
|
|
return equalMessage(x.ProtoReflect(), y.ProtoReflect())
|
|
}
|
|
|
|
// equalMessage compares two messages.
|
|
func equalMessage(mx, my pref.Message) bool {
|
|
if mx.Descriptor() != my.Descriptor() {
|
|
return false
|
|
}
|
|
|
|
nx := 0
|
|
equal := true
|
|
mx.Range(func(fd pref.FieldDescriptor, vx pref.Value) bool {
|
|
nx++
|
|
vy := my.Get(fd)
|
|
equal = my.Has(fd) && equalField(fd, vx, vy)
|
|
return equal
|
|
})
|
|
if !equal {
|
|
return false
|
|
}
|
|
ny := 0
|
|
my.Range(func(fd pref.FieldDescriptor, vx pref.Value) bool {
|
|
ny++
|
|
return true
|
|
})
|
|
if nx != ny {
|
|
return false
|
|
}
|
|
|
|
return equalUnknown(mx.GetUnknown(), my.GetUnknown())
|
|
}
|
|
|
|
// equalField compares two fields.
|
|
func equalField(fd pref.FieldDescriptor, x, y pref.Value) bool {
|
|
switch {
|
|
case fd.IsList():
|
|
return equalList(fd, x.List(), y.List())
|
|
case fd.IsMap():
|
|
return equalMap(fd, x.Map(), y.Map())
|
|
default:
|
|
return equalValue(fd, x, y)
|
|
}
|
|
}
|
|
|
|
// equalMap compares two maps.
|
|
func equalMap(fd pref.FieldDescriptor, x, y pref.Map) bool {
|
|
if x.Len() != y.Len() {
|
|
return false
|
|
}
|
|
equal := true
|
|
x.Range(func(k pref.MapKey, vx pref.Value) bool {
|
|
vy := y.Get(k)
|
|
equal = y.Has(k) && equalValue(fd.MapValue(), vx, vy)
|
|
return equal
|
|
})
|
|
return equal
|
|
}
|
|
|
|
// equalList compares two lists.
|
|
func equalList(fd pref.FieldDescriptor, x, y pref.List) bool {
|
|
if x.Len() != y.Len() {
|
|
return false
|
|
}
|
|
for i := x.Len() - 1; i >= 0; i-- {
|
|
if !equalValue(fd, x.Get(i), y.Get(i)) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// equalValue compares two singular values.
|
|
func equalValue(fd pref.FieldDescriptor, x, y pref.Value) bool {
|
|
switch {
|
|
case fd.Message() != nil:
|
|
return equalMessage(x.Message(), y.Message())
|
|
case fd.Kind() == pref.BytesKind:
|
|
return bytes.Equal(x.Bytes(), y.Bytes())
|
|
default:
|
|
return x.Interface() == y.Interface()
|
|
}
|
|
}
|
|
|
|
// equalUnknown compares unknown fields by direct comparison on the raw bytes
|
|
// of each individual field number.
|
|
func equalUnknown(x, y pref.RawFields) bool {
|
|
if len(x) != len(y) {
|
|
return false
|
|
}
|
|
if bytes.Equal([]byte(x), []byte(y)) {
|
|
return true
|
|
}
|
|
|
|
mx := make(map[pref.FieldNumber]pref.RawFields)
|
|
my := make(map[pref.FieldNumber]pref.RawFields)
|
|
for len(x) > 0 {
|
|
fnum, _, n := wire.ConsumeField(x)
|
|
mx[fnum] = append(mx[fnum], x[:n]...)
|
|
x = x[n:]
|
|
}
|
|
for len(y) > 0 {
|
|
fnum, _, n := wire.ConsumeField(y)
|
|
my[fnum] = append(my[fnum], y[:n]...)
|
|
y = y[n:]
|
|
}
|
|
return reflect.DeepEqual(mx, my)
|
|
}
|