/
githubmirror
/
etcd
Обзор
Документация
Войти
/
githubmirror
/
etcd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
client/v3/compare.go
194 строки
4 KB
A.D
clientv3: include value details in compare panic
28 июл 2026, 21:48
28 июл 2026, 21:48
3d7833c
Код
Авторство
О чём код?
// Copyright 2016 The etcd Authors // // 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 clientv3 import ( "fmt" "google.golang.org/protobuf/proto" pb "go.etcd.io/etcd/api/v3/etcdserverpb" ) type ( CompareTarget int CompareResult int ) const ( CompareVersion CompareTarget = iota CompareCreated CompareModified CompareValue ) type Cmp struct { c *pb.Compare } func FromCompare(c *pb.Compare) Cmp { return Cmp{c: cloneCompare(c)} } func (cmp *Cmp) GetCompare() *pb.Compare { cmp.ensureCompare() return cmp.c } func (cmp *Cmp) Clone() Cmp { if cmp.c == nil { return Cmp{} } return Cmp{c: cloneCompare(cmp.c)} } func Compare(cmp Cmp, result string, v any) Cmp { var r pb.Compare_CompareResult switch result { case "=": r = pb.Compare_EQUAL case "!=": r = pb.Compare_NOT_EQUAL case ">": r = pb.Compare_GREATER case "<": r = pb.Compare_LESS default: panic("Unknown result op") } cmp = cmp.Clone() cmp.ensureCompare() cmp.c.Result = r switch cmp.c.Target { case pb.Compare_VALUE: val, ok := v.(string) if !ok { panic("bad compare value") } cmp.c.TargetUnion = &pb.Compare_Value{Value: []byte(val)} case pb.Compare_VERSION: cmp.c.TargetUnion = &pb.Compare_Version{Version: mustInt64(v)} case pb.Compare_CREATE: cmp.c.TargetUnion = &pb.Compare_CreateRevision{CreateRevision: mustInt64(v)} case pb.Compare_MOD: cmp.c.TargetUnion = &pb.Compare_ModRevision{ModRevision: mustInt64(v)} case pb.Compare_LEASE: cmp.c.TargetUnion = &pb.Compare_Lease{Lease: mustInt64orLeaseID(v)} default: panic("Unknown compare type") } return cmp } func Value(key string) Cmp { return Cmp{c: &pb.Compare{Key: []byte(key), Target: pb.Compare_VALUE}} } func Version(key string) Cmp { return Cmp{c: &pb.Compare{Key: []byte(key), Target: pb.Compare_VERSION}} } func CreateRevision(key string) Cmp { return Cmp{c: &pb.Compare{Key: []byte(key), Target: pb.Compare_CREATE}} } func ModRevision(key string) Cmp { return Cmp{c: &pb.Compare{Key: []byte(key), Target: pb.Compare_MOD}} } // LeaseValue compares a key's LeaseID to a value of your choosing. The empty // LeaseID is 0, otherwise known as `NoLease`. func LeaseValue(key string) Cmp { return Cmp{c: &pb.Compare{Key: []byte(key), Target: pb.Compare_LEASE}} } func (cmp *Cmp) ensureCompare() { if cmp.c == nil { cmp.c = &pb.Compare{} } } // KeyBytes returns the byte slice holding with the comparison key. func (cmp *Cmp) KeyBytes() []byte { if cmp == nil { return nil } return cmp.c.GetKey() } // WithKeyBytes sets the byte slice for the comparison key. func (cmp *Cmp) WithKeyBytes(key []byte) { cmp.ensureCompare() cmp.c.Key = key } // ValueBytes returns the byte slice holding the comparison value, if any. func (cmp *Cmp) ValueBytes() []byte { if tu, ok := cmp.GetCompare().GetTargetUnion().(*pb.Compare_Value); ok { return tu.Value } return nil } // WithValueBytes sets the byte slice for the comparison's value. func (cmp *Cmp) WithValueBytes(v []byte) { cmp.ensureCompare() cmp.c.TargetUnion.(*pb.Compare_Value).Value = v } // WithRange sets the comparison to scan the range [key, end). func (cmp Cmp) WithRange(end string) Cmp { cmp = cmp.Clone() cmp.ensureCompare() cmp.c.RangeEnd = []byte(end) return cmp } // WithPrefix sets the comparison to scan all keys prefixed by the key. func (cmp Cmp) WithPrefix() Cmp { cmp = cmp.Clone() cmp.ensureCompare() cmp.c.RangeEnd = getPrefix(cmp.c.GetKey()) return cmp } // mustInt64 panics if val isn't an int or int64. It returns an int64 otherwise. func mustInt64(val any) int64 { if v, ok := val.(int64); ok { return v } if v, ok := val.(int); ok { return int64(v) } panic(fmt.Sprintf("bad value %v of type %T", val, val)) } // mustInt64orLeaseID panics if val isn't a LeaseID, int or int64. It returns an // int64 otherwise. func mustInt64orLeaseID(val any) int64 { if v, ok := val.(LeaseID); ok { return int64(v) } return mustInt64(val) } func cloneCompare(c *pb.Compare) *pb.Compare { if c == nil { return nil } return proto.Clone(c).(*pb.Compare) }