[#180] eacl: make equal methods functions

Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
Denis Kirillov 2022-03-28 11:15:52 +03:00 committed by Alex Vanin
parent a709cf5444
commit b8d2158acd
7 changed files with 84 additions and 54 deletions

View file

@ -174,3 +174,11 @@ func (f *Filter) UnmarshalJSON(data []byte) error {
return nil return nil
} }
// equalFilters compares Filter with each other.
func equalFilters(f1, f2 Filter) bool {
return f1.From() == f2.From() &&
f1.Matcher() == f2.Matcher() &&
f1.Key() == f2.Key() &&
f1.Value() == f2.Value()
}

View file

@ -267,3 +267,33 @@ func (r *Record) UnmarshalJSON(data []byte) error {
return nil return nil
} }
// equalRecords compares Record with each other.
func equalRecords(r1, r2 Record) bool {
if r1.Operation() != r2.Operation() ||
r1.Action() != r2.Action() {
return false
}
fs1, fs2 := r1.Filters(), r2.Filters()
ts1, ts2 := r1.Targets(), r2.Targets()
if len(fs1) != len(fs2) ||
len(ts1) != len(ts2) {
return false
}
for i := 0; i < len(fs1); i++ {
if !equalFilters(fs1[i], fs2[i]) {
return false
}
}
for i := 0; i < len(ts1); i++ {
if !equalTargets(ts1[i], ts2[i]) {
return false
}
}
return true
}

View file

@ -1,7 +1,6 @@
package eacl package eacl
import ( import (
"bytes"
"crypto/sha256" "crypto/sha256"
v2acl "github.com/nspcc-dev/neofs-api-go/v2/acl" v2acl "github.com/nspcc-dev/neofs-api-go/v2/acl"
@ -201,58 +200,23 @@ func (t *Table) UnmarshalJSON(data []byte) error {
return nil return nil
} }
// EqualTo compares Table between each other. // EqualTables compares Table with each other.
func (t *Table) EqualTo(table *Table) bool { func EqualTables(t1, t2 Table) bool {
if t == nil || table == nil { if !t1.CID().Equal(t2.CID()) ||
!t1.Version().Equal(t2.Version()) {
return false return false
} }
if !t.cid.Equal(table.cid) { rs1, rs2 := t1.Records(), t2.Records()
if len(rs1) != len(rs2) {
return false return false
} }
if len(t.records) != len(table.records) { for i := 0; i < len(rs1); i++ {
if !equalRecords(rs1[i], rs2[i]) {
return false return false
} }
for i := 0; i < len(t.records); i++ {
tRec, tableRec := t.records[i], table.records[i]
if tRec.operation != tableRec.operation ||
tRec.action != tableRec.action {
return false
}
if len(tRec.filters) != len(tableRec.filters) ||
len(tRec.targets) != len(tableRec.targets) {
return false
}
for j := 0; j < len(tRec.filters); j++ {
if tRec.filters[j].from != tableRec.filters[j].from ||
tRec.filters[j].matcher != tableRec.filters[j].matcher ||
tRec.filters[j].Value() != tableRec.filters[j].Value() ||
tRec.filters[j].key.typ != tableRec.filters[j].key.typ ||
tRec.filters[j].key.str != tableRec.filters[j].key.str {
return false
}
}
for j := 0; j < len(tRec.targets); j++ {
if tRec.targets[j].role != tableRec.targets[j].role {
return false
}
if len(tRec.targets[j].keys) != len(tableRec.targets[j].keys) {
return false
}
tKeys, tableKeys := tRec.targets[j].keys, tableRec.targets[j].keys
for k := 0; k < len(tKeys); k++ {
if !bytes.Equal(tKeys[k], tableKeys[k]) {
return false
}
}
}
} }
return true return true

View file

@ -1,6 +1,7 @@
package eacl package eacl
import ( import (
"bytes"
"crypto/ecdsa" "crypto/ecdsa"
"github.com/nspcc-dev/neo-go/pkg/crypto/keys" "github.com/nspcc-dev/neo-go/pkg/crypto/keys"
@ -155,3 +156,24 @@ func (t *Target) UnmarshalJSON(data []byte) error {
return nil return nil
} }
// equalTargets compares Target with each other.
func equalTargets(t1, t2 Target) bool {
if t1.Role() != t2.Role() {
return false
}
keys1, keys2 := t1.BinaryKeys(), t2.BinaryKeys()
if len(keys1) != len(keys2) {
return false
}
for i := 0; i < len(keys1); i++ {
if !bytes.Equal(keys1[i], keys2[i]) {
return false
}
}
return true
}

View file

@ -27,7 +27,7 @@ func baseBenchmarkTableBinaryComparison(b *testing.B, factor int) {
} }
} }
func baseBenchmarkTableEqualToComparison(b *testing.B, factor int) { func baseBenchmarkTableEqualsComparison(b *testing.B, factor int) {
t := TableN(factor) t := TableN(factor)
data, err := t.Marshal() data, err := t.Marshal()
require.NoError(b, err) require.NoError(b, err)
@ -39,7 +39,7 @@ func baseBenchmarkTableEqualToComparison(b *testing.B, factor int) {
b.ResetTimer() b.ResetTimer()
b.StartTimer() b.StartTimer()
for i := 0; i < b.N; i++ { for i := 0; i < b.N; i++ {
if !t.EqualTo(t2) { if !eacl.EqualTables(*t, *t2) {
b.Fail() b.Fail()
} }
} }
@ -49,24 +49,24 @@ func BenchmarkTableBinaryComparison(b *testing.B) {
baseBenchmarkTableBinaryComparison(b, 1) baseBenchmarkTableBinaryComparison(b, 1)
} }
func BenchmarkTableEqualToComparison(b *testing.B) { func BenchmarkTableEqualsComparison(b *testing.B) {
baseBenchmarkTableEqualToComparison(b, 1) baseBenchmarkTableEqualsComparison(b, 1)
} }
func BenchmarkTableBinaryComparison10(b *testing.B) { func BenchmarkTableBinaryComparison10(b *testing.B) {
baseBenchmarkTableBinaryComparison(b, 10) baseBenchmarkTableBinaryComparison(b, 10)
} }
func BenchmarkTableEqualToComparison10(b *testing.B) { func BenchmarkTableEqualsComparison10(b *testing.B) {
baseBenchmarkTableEqualToComparison(b, 10) baseBenchmarkTableEqualsComparison(b, 10)
} }
func BenchmarkTableBinaryComparison100(b *testing.B) { func BenchmarkTableBinaryComparison100(b *testing.B) {
baseBenchmarkTableBinaryComparison(b, 100) baseBenchmarkTableBinaryComparison(b, 100)
} }
func BenchmarkTableEqualToComparison100(b *testing.B) { func BenchmarkTableEqualsComparison100(b *testing.B) {
baseBenchmarkTableEqualToComparison(b, 100) baseBenchmarkTableEqualsComparison(b, 100)
} }
// Target returns random eacl.Target. // Target returns random eacl.Target.

View file

@ -1597,7 +1597,7 @@ func waitForEACLPresence(ctx context.Context, pool *Pool, cnrID *cid.ID, table *
return waitFor(ctx, waitParams, func(ctx context.Context) bool { return waitFor(ctx, waitParams, func(ctx context.Context) bool {
eaclTable, err := pool.GetEACL(ctx, prm) eaclTable, err := pool.GetEACL(ctx, prm)
if err == nil { if err == nil {
return table.EqualTo(eaclTable) return eacl.EqualTables(*table, *eaclTable)
} }
return false return false
}) })

View file

@ -87,3 +87,9 @@ func (v *Version) MarshalJSON() ([]byte, error) {
func (v *Version) UnmarshalJSON(data []byte) error { func (v *Version) UnmarshalJSON(data []byte) error {
return (*refs.Version)(v).UnmarshalJSON(data) return (*refs.Version)(v).UnmarshalJSON(data)
} }
// Equal returns true if versions are identical.
func (v Version) Equal(v2 Version) bool {
return v.Major() == v2.Major() &&
v.Minor() == v2.Minor()
}