etcd/mvcc/mvccpb/kv.pb.go

719 lines
17 KiB
Go
Raw Normal View History

// Code generated by protoc-gen-gogo. DO NOT EDIT.
2015-05-19 00:35:10 +03:00
// source: kv.proto
/*
2016-04-25 22:32:58 +03:00
Package mvccpb is a generated protocol buffer package.
2015-05-19 00:35:10 +03:00
It is generated from these files:
kv.proto
It has these top-level messages:
KeyValue
Event
*/
2016-04-25 22:32:58 +03:00
package mvccpb
2015-05-19 00:35:10 +03:00
2016-01-27 04:41:39 +03:00
import (
"fmt"
2015-05-19 00:35:10 +03:00
2016-07-18 19:33:32 +03:00
proto "github.com/golang/protobuf/proto"
2015-05-19 00:35:10 +03:00
2016-04-14 02:23:07 +03:00
math "math"
_ "github.com/gogo/protobuf/gogoproto"
2016-10-04 00:43:06 +03:00
io "io"
)
2015-05-19 00:35:10 +03:00
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
2016-01-27 04:41:39 +03:00
var _ = fmt.Errorf
var _ = math.Inf
2015-05-19 00:35:10 +03:00
2016-04-26 00:08:33 +03:00
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
2016-11-10 22:53:48 +03:00
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
2016-04-26 00:08:33 +03:00
2015-05-19 00:35:10 +03:00
type Event_EventType int32
const (
PUT Event_EventType = 0
DELETE Event_EventType = 1
)
var Event_EventType_name = map[int32]string{
0: "PUT",
1: "DELETE",
}
var Event_EventType_value = map[string]int32{
"PUT": 0,
"DELETE": 1,
}
func (x Event_EventType) String() string {
return proto.EnumName(Event_EventType_name, int32(x))
}
2016-04-26 00:08:33 +03:00
func (Event_EventType) EnumDescriptor() ([]byte, []int) { return fileDescriptorKv, []int{1, 0} }
2015-05-19 00:35:10 +03:00
type KeyValue struct {
// key is the key in bytes. An empty key is not allowed.
2016-02-12 23:04:06 +03:00
Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
// create_revision is the revision of last creation on this key.
2016-05-03 09:02:31 +03:00
CreateRevision int64 `protobuf:"varint,2,opt,name=create_revision,json=createRevision,proto3" json:"create_revision,omitempty"`
2016-02-12 23:04:06 +03:00
// mod_revision is the revision of last modification on this key.
2016-05-03 09:02:31 +03:00
ModRevision int64 `protobuf:"varint,3,opt,name=mod_revision,json=modRevision,proto3" json:"mod_revision,omitempty"`
2015-05-19 00:35:10 +03:00
// version is the version of the key. A deletion resets
// the version to zero and any modification of the key
// increases its version.
Version int64 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
// value is the value held by the key, in bytes.
Value []byte `protobuf:"bytes,5,opt,name=value,proto3" json:"value,omitempty"`
// lease is the ID of the lease that attached to key.
// When the attached lease expires, the key will be deleted.
// If lease is 0, then no lease is attached to the key.
Lease int64 `protobuf:"varint,6,opt,name=lease,proto3" json:"lease,omitempty"`
2015-05-19 00:35:10 +03:00
}
2016-04-26 00:08:33 +03:00
func (m *KeyValue) Reset() { *m = KeyValue{} }
func (m *KeyValue) String() string { return proto.CompactTextString(m) }
func (*KeyValue) ProtoMessage() {}
func (*KeyValue) Descriptor() ([]byte, []int) { return fileDescriptorKv, []int{0} }
2015-05-19 00:35:10 +03:00
type Event struct {
// type is the kind of event. If type is a PUT, it indicates
// new data has been stored to the key. If type is a DELETE,
// it indicates the key was deleted.
2016-04-25 22:32:58 +03:00
Type Event_EventType `protobuf:"varint,1,opt,name=type,proto3,enum=mvccpb.Event_EventType" json:"type,omitempty"`
// kv holds the KeyValue for the event.
// A PUT event contains current kv pair.
// A PUT event with kv.Version=1 indicates the creation of a key.
// A DELETE/EXPIRE event contains the deleted key with
// its modification revision set to the revision of deletion.
Kv *KeyValue `protobuf:"bytes,2,opt,name=kv" json:"kv,omitempty"`
2016-07-02 05:17:01 +03:00
// prev_kv holds the key-value pair before the event happens.
PrevKv *KeyValue `protobuf:"bytes,3,opt,name=prev_kv,json=prevKv" json:"prev_kv,omitempty"`
2015-05-19 00:35:10 +03:00
}
2016-04-26 00:08:33 +03:00
func (m *Event) Reset() { *m = Event{} }
func (m *Event) String() string { return proto.CompactTextString(m) }
func (*Event) ProtoMessage() {}
func (*Event) Descriptor() ([]byte, []int) { return fileDescriptorKv, []int{1} }
2015-05-19 00:35:10 +03:00
func init() {
2016-04-25 22:32:58 +03:00
proto.RegisterType((*KeyValue)(nil), "mvccpb.KeyValue")
proto.RegisterType((*Event)(nil), "mvccpb.Event")
proto.RegisterEnum("mvccpb.Event_EventType", Event_EventType_name, Event_EventType_value)
2015-05-19 00:35:10 +03:00
}
2016-11-10 22:53:48 +03:00
func (m *KeyValue) Marshal() (dAtA []byte, err error) {
2015-09-04 01:32:25 +03:00
size := m.Size()
2016-11-10 22:53:48 +03:00
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
2015-09-04 01:32:25 +03:00
if err != nil {
return nil, err
}
2016-11-10 22:53:48 +03:00
return dAtA[:n], nil
2015-09-04 01:32:25 +03:00
}
2016-11-10 22:53:48 +03:00
func (m *KeyValue) MarshalTo(dAtA []byte) (int, error) {
2015-09-04 01:32:25 +03:00
var i int
_ = i
var l int
_ = l
2016-04-26 00:08:33 +03:00
if len(m.Key) > 0 {
2016-11-10 22:53:48 +03:00
dAtA[i] = 0xa
2016-04-26 00:08:33 +03:00
i++
2016-11-10 22:53:48 +03:00
i = encodeVarintKv(dAtA, i, uint64(len(m.Key)))
i += copy(dAtA[i:], m.Key)
2015-09-04 01:32:25 +03:00
}
2015-09-04 00:45:54 +03:00
if m.CreateRevision != 0 {
2016-11-10 22:53:48 +03:00
dAtA[i] = 0x10
2015-09-04 01:32:25 +03:00
i++
2016-11-10 22:53:48 +03:00
i = encodeVarintKv(dAtA, i, uint64(m.CreateRevision))
2015-09-04 01:32:25 +03:00
}
2015-09-04 00:45:54 +03:00
if m.ModRevision != 0 {
2016-11-10 22:53:48 +03:00
dAtA[i] = 0x18
2015-09-04 01:32:25 +03:00
i++
2016-11-10 22:53:48 +03:00
i = encodeVarintKv(dAtA, i, uint64(m.ModRevision))
2015-09-04 01:32:25 +03:00
}
if m.Version != 0 {
2016-11-10 22:53:48 +03:00
dAtA[i] = 0x20
2015-09-04 01:32:25 +03:00
i++
2016-11-10 22:53:48 +03:00
i = encodeVarintKv(dAtA, i, uint64(m.Version))
2015-09-04 01:32:25 +03:00
}
2016-04-26 00:08:33 +03:00
if len(m.Value) > 0 {
2016-11-10 22:53:48 +03:00
dAtA[i] = 0x2a
2016-04-26 00:08:33 +03:00
i++
2016-11-10 22:53:48 +03:00
i = encodeVarintKv(dAtA, i, uint64(len(m.Value)))
i += copy(dAtA[i:], m.Value)
2015-09-04 01:32:25 +03:00
}
if m.Lease != 0 {
2016-11-10 22:53:48 +03:00
dAtA[i] = 0x30
i++
2016-11-10 22:53:48 +03:00
i = encodeVarintKv(dAtA, i, uint64(m.Lease))
}
2015-09-04 01:32:25 +03:00
return i, nil
}
2016-11-10 22:53:48 +03:00
func (m *Event) Marshal() (dAtA []byte, err error) {
2015-09-04 01:32:25 +03:00
size := m.Size()
2016-11-10 22:53:48 +03:00
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
2015-09-04 01:32:25 +03:00
if err != nil {
return nil, err
}
2016-11-10 22:53:48 +03:00
return dAtA[:n], nil
2015-09-04 01:32:25 +03:00
}
2016-11-10 22:53:48 +03:00
func (m *Event) MarshalTo(dAtA []byte) (int, error) {
2015-09-04 01:32:25 +03:00
var i int
_ = i
var l int
_ = l
if m.Type != 0 {
2016-11-10 22:53:48 +03:00
dAtA[i] = 0x8
2015-09-04 01:32:25 +03:00
i++
2016-11-10 22:53:48 +03:00
i = encodeVarintKv(dAtA, i, uint64(m.Type))
2015-09-04 01:32:25 +03:00
}
if m.Kv != nil {
2016-11-10 22:53:48 +03:00
dAtA[i] = 0x12
2015-09-04 01:32:25 +03:00
i++
2016-11-10 22:53:48 +03:00
i = encodeVarintKv(dAtA, i, uint64(m.Kv.Size()))
n1, err := m.Kv.MarshalTo(dAtA[i:])
2015-09-04 01:32:25 +03:00
if err != nil {
return 0, err
}
i += n1
}
2016-07-02 05:17:01 +03:00
if m.PrevKv != nil {
2016-11-10 22:53:48 +03:00
dAtA[i] = 0x1a
2016-07-02 05:17:01 +03:00
i++
2016-11-10 22:53:48 +03:00
i = encodeVarintKv(dAtA, i, uint64(m.PrevKv.Size()))
n2, err := m.PrevKv.MarshalTo(dAtA[i:])
2016-07-02 05:17:01 +03:00
if err != nil {
return 0, err
}
i += n2
}
2015-09-04 01:32:25 +03:00
return i, nil
}
2016-11-10 22:53:48 +03:00
func encodeVarintKv(dAtA []byte, offset int, v uint64) int {
2015-09-04 01:32:25 +03:00
for v >= 1<<7 {
2016-11-10 22:53:48 +03:00
dAtA[offset] = uint8(v&0x7f | 0x80)
2015-09-04 01:32:25 +03:00
v >>= 7
offset++
}
2016-11-10 22:53:48 +03:00
dAtA[offset] = uint8(v)
2015-09-04 01:32:25 +03:00
return offset + 1
}
func (m *KeyValue) Size() (n int) {
var l int
_ = l
2016-04-26 00:08:33 +03:00
l = len(m.Key)
if l > 0 {
n += 1 + l + sovKv(uint64(l))
2015-09-04 01:32:25 +03:00
}
2015-09-04 00:45:54 +03:00
if m.CreateRevision != 0 {
n += 1 + sovKv(uint64(m.CreateRevision))
2015-09-04 01:32:25 +03:00
}
2015-09-04 00:45:54 +03:00
if m.ModRevision != 0 {
n += 1 + sovKv(uint64(m.ModRevision))
2015-09-04 01:32:25 +03:00
}
if m.Version != 0 {
n += 1 + sovKv(uint64(m.Version))
}
2016-04-26 00:08:33 +03:00
l = len(m.Value)
if l > 0 {
n += 1 + l + sovKv(uint64(l))
2015-09-04 01:32:25 +03:00
}
if m.Lease != 0 {
n += 1 + sovKv(uint64(m.Lease))
}
2015-09-04 01:32:25 +03:00
return n
}
func (m *Event) Size() (n int) {
var l int
_ = l
if m.Type != 0 {
n += 1 + sovKv(uint64(m.Type))
}
if m.Kv != nil {
l = m.Kv.Size()
n += 1 + l + sovKv(uint64(l))
}
2016-07-02 05:17:01 +03:00
if m.PrevKv != nil {
l = m.PrevKv.Size()
n += 1 + l + sovKv(uint64(l))
}
2015-09-04 01:32:25 +03:00
return n
}
func sovKv(x uint64) (n int) {
for {
n++
x >>= 7
if x == 0 {
break
}
}
return n
}
func sozKv(x uint64) (n int) {
return sovKv(uint64((x << 1) ^ uint64((int64(x) >> 63))))
}
2016-11-10 22:53:48 +03:00
func (m *KeyValue) Unmarshal(dAtA []byte) error {
l := len(dAtA)
2015-06-30 02:05:55 +03:00
iNdEx := 0
for iNdEx < l {
2016-01-27 04:41:39 +03:00
preIndex := iNdEx
2015-05-19 00:35:10 +03:00
var wire uint64
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
2015-05-19 00:35:10 +03:00
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
2015-05-19 00:35:10 +03:00
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
2016-01-27 04:41:39 +03:00
if wireType == 4 {
return fmt.Errorf("proto: KeyValue: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: KeyValue: illegal tag %d (wire type %d)", fieldNum, wire)
}
2015-05-19 00:35:10 +03:00
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType)
}
var byteLen int
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
2015-05-19 00:35:10 +03:00
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
2015-05-19 00:35:10 +03:00
byteLen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
2015-09-04 01:32:25 +03:00
if byteLen < 0 {
return ErrInvalidLengthKv
}
2015-06-30 02:05:55 +03:00
postIndex := iNdEx + byteLen
2015-05-19 00:35:10 +03:00
if postIndex > l {
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...)
2016-01-27 04:41:39 +03:00
if m.Key == nil {
m.Key = []byte{}
}
2015-06-30 02:05:55 +03:00
iNdEx = postIndex
2015-05-19 00:35:10 +03:00
case 2:
if wireType != 0 {
2015-09-04 00:45:54 +03:00
return fmt.Errorf("proto: wrong wireType = %d for field CreateRevision", wireType)
2015-05-19 00:35:10 +03:00
}
2015-09-04 00:45:54 +03:00
m.CreateRevision = 0
2015-05-19 00:35:10 +03:00
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
2015-05-19 00:35:10 +03:00
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
2015-09-04 00:45:54 +03:00
m.CreateRevision |= (int64(b) & 0x7F) << shift
2015-05-19 00:35:10 +03:00
if b < 0x80 {
break
}
}
case 3:
if wireType != 0 {
2015-09-04 00:45:54 +03:00
return fmt.Errorf("proto: wrong wireType = %d for field ModRevision", wireType)
2015-05-19 00:35:10 +03:00
}
2015-09-04 00:45:54 +03:00
m.ModRevision = 0
2015-05-19 00:35:10 +03:00
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
2015-05-19 00:35:10 +03:00
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
2015-09-04 00:45:54 +03:00
m.ModRevision |= (int64(b) & 0x7F) << shift
2015-05-19 00:35:10 +03:00
if b < 0x80 {
break
}
}
case 4:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType)
}
2015-09-04 01:32:25 +03:00
m.Version = 0
2015-05-19 00:35:10 +03:00
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
2015-05-19 00:35:10 +03:00
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
2015-05-19 00:35:10 +03:00
m.Version |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 5:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType)
}
var byteLen int
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
2015-05-19 00:35:10 +03:00
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
2015-05-19 00:35:10 +03:00
byteLen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
2015-09-04 01:32:25 +03:00
if byteLen < 0 {
return ErrInvalidLengthKv
}
2015-06-30 02:05:55 +03:00
postIndex := iNdEx + byteLen
2015-05-19 00:35:10 +03:00
if postIndex > l {
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...)
2016-01-27 04:41:39 +03:00
if m.Value == nil {
m.Value = []byte{}
}
2015-06-30 02:05:55 +03:00
iNdEx = postIndex
case 6:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Lease", wireType)
}
m.Lease = 0
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return ErrIntOverflowKv
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
iNdEx++
m.Lease |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
2015-05-19 00:35:10 +03:00
default:
2016-01-27 04:41:39 +03:00
iNdEx = preIndex
2016-11-10 22:53:48 +03:00
skippy, err := skipKv(dAtA[iNdEx:])
2015-05-19 00:35:10 +03:00
if err != nil {
return err
}
2015-09-04 01:32:25 +03:00
if skippy < 0 {
return ErrInvalidLengthKv
}
2015-06-30 02:05:55 +03:00
if (iNdEx + skippy) > l {
2015-05-19 00:35:10 +03:00
return io.ErrUnexpectedEOF
}
2015-06-30 02:05:55 +03:00
iNdEx += skippy
2015-05-19 00:35:10 +03:00
}
}
2015-06-30 02:05:55 +03:00
2016-01-27 04:41:39 +03:00
if iNdEx > l {
return io.ErrUnexpectedEOF
}
2015-05-19 00:35:10 +03:00
return nil
}
2016-11-10 22:53:48 +03:00
func (m *Event) Unmarshal(dAtA []byte) error {
l := len(dAtA)
2015-06-30 02:05:55 +03:00
iNdEx := 0
for iNdEx < l {
2016-01-27 04:41:39 +03:00
preIndex := iNdEx
2015-05-19 00:35:10 +03:00
var wire uint64
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
2015-05-19 00:35:10 +03:00
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
2015-05-19 00:35:10 +03:00
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
2016-01-27 04:41:39 +03:00
if wireType == 4 {
return fmt.Errorf("proto: Event: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: Event: illegal tag %d (wire type %d)", fieldNum, wire)
}
2015-05-19 00:35:10 +03:00
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
}
2015-09-04 01:32:25 +03:00
m.Type = 0
2015-05-19 00:35:10 +03:00
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
2015-05-19 00:35:10 +03:00
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
2015-05-19 00:35:10 +03:00
m.Type |= (Event_EventType(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Kv", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
2015-05-19 00:35:10 +03:00
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
2015-05-19 00:35:10 +03:00
msglen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
2015-09-04 01:32:25 +03:00
if msglen < 0 {
return ErrInvalidLengthKv
}
2015-06-30 02:05:55 +03:00
postIndex := iNdEx + msglen
2015-05-19 00:35:10 +03:00
if postIndex > l {
return io.ErrUnexpectedEOF
}
2015-06-30 04:37:52 +03:00
if m.Kv == nil {
m.Kv = &KeyValue{}
}
2016-11-10 22:53:48 +03:00
if err := m.Kv.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
2015-05-19 00:35:10 +03:00
return err
}
2015-06-30 02:05:55 +03:00
iNdEx = postIndex
2016-07-02 05:17:01 +03:00
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field PrevKv", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowKv
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2016-07-02 05:17:01 +03:00
iNdEx++
msglen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthKv
}
postIndex := iNdEx + msglen
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.PrevKv == nil {
m.PrevKv = &KeyValue{}
}
2016-11-10 22:53:48 +03:00
if err := m.PrevKv.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
2016-07-02 05:17:01 +03:00
return err
}
iNdEx = postIndex
2015-05-19 00:35:10 +03:00
default:
2016-01-27 04:41:39 +03:00
iNdEx = preIndex
2016-11-10 22:53:48 +03:00
skippy, err := skipKv(dAtA[iNdEx:])
2015-05-19 00:35:10 +03:00
if err != nil {
return err
}
2015-09-04 01:32:25 +03:00
if skippy < 0 {
return ErrInvalidLengthKv
}
2015-06-30 02:05:55 +03:00
if (iNdEx + skippy) > l {
2015-05-19 00:35:10 +03:00
return io.ErrUnexpectedEOF
}
2015-06-30 02:05:55 +03:00
iNdEx += skippy
2015-05-19 00:35:10 +03:00
}
}
2015-06-30 02:05:55 +03:00
2016-01-27 04:41:39 +03:00
if iNdEx > l {
return io.ErrUnexpectedEOF
}
2015-05-19 00:35:10 +03:00
return nil
}
2016-11-10 22:53:48 +03:00
func skipKv(dAtA []byte) (n int, err error) {
l := len(dAtA)
2015-06-30 02:05:55 +03:00
iNdEx := 0
for iNdEx < l {
var wire uint64
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return 0, ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
wireType := int(wire & 0x7)
switch wireType {
case 0:
2016-01-27 04:41:39 +03:00
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
iNdEx++
2016-11-10 22:53:48 +03:00
if dAtA[iNdEx-1] < 0x80 {
2015-06-30 02:05:55 +03:00
break
}
}
return iNdEx, nil
case 1:
iNdEx += 8
return iNdEx, nil
case 2:
var length int
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return 0, ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
length |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
iNdEx += length
2015-09-04 01:32:25 +03:00
if length < 0 {
return 0, ErrInvalidLengthKv
}
2015-06-30 02:05:55 +03:00
return iNdEx, nil
case 3:
for {
var innerWire uint64
var start int = iNdEx
for shift := uint(0); ; shift += 7 {
2016-01-27 04:41:39 +03:00
if shift >= 64 {
return 0, ErrIntOverflowKv
}
2015-06-30 02:05:55 +03:00
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
2016-11-10 22:53:48 +03:00
b := dAtA[iNdEx]
2015-06-30 02:05:55 +03:00
iNdEx++
innerWire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
innerWireType := int(innerWire & 0x7)
if innerWireType == 4 {
break
}
2016-11-10 22:53:48 +03:00
next, err := skipKv(dAtA[start:])
2015-06-30 02:05:55 +03:00
if err != nil {
return 0, err
}
iNdEx = start + next
}
return iNdEx, nil
case 4:
return iNdEx, nil
case 5:
iNdEx += 4
return iNdEx, nil
default:
return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
}
}
panic("unreachable")
}
2015-05-19 00:35:10 +03:00
2015-09-04 01:32:25 +03:00
var (
ErrInvalidLengthKv = fmt.Errorf("proto: negative length found during unmarshaling")
2016-01-27 04:41:39 +03:00
ErrIntOverflowKv = fmt.Errorf("proto: integer overflow")
2015-09-04 01:32:25 +03:00
)
2016-04-26 00:08:33 +03:00
2016-11-10 22:53:48 +03:00
func init() { proto.RegisterFile("kv.proto", fileDescriptorKv) }
2016-04-26 00:08:33 +03:00
var fileDescriptorKv = []byte{
2016-10-04 00:43:06 +03:00
// 303 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x90, 0x41, 0x4e, 0xc2, 0x40,
2016-10-04 00:43:06 +03:00
0x14, 0x86, 0x3b, 0x14, 0x0a, 0x3e, 0x08, 0x36, 0x13, 0x12, 0x27, 0x2e, 0x26, 0x95, 0x8d, 0x18,
0x13, 0x4c, 0xf0, 0x06, 0xc6, 0xae, 0x70, 0x61, 0x1a, 0x74, 0x4b, 0x4a, 0x79, 0x21, 0xa4, 0x94,
0x69, 0x4a, 0x9d, 0xa4, 0x37, 0x71, 0xef, 0xde, 0x73, 0xb0, 0xe4, 0x08, 0x52, 0x2f, 0x62, 0xfa,
0xc6, 0xe2, 0xc6, 0xcd, 0xe4, 0xfd, 0xff, 0xff, 0x65, 0xe6, 0x7f, 0x03, 0x9d, 0x58, 0x8f, 0xd3,
0x4c, 0xe5, 0x8a, 0x3b, 0x89, 0x8e, 0xa2, 0x74, 0x71, 0x39, 0x58, 0xa9, 0x95, 0x22, 0xeb, 0xae,
0x9a, 0x4c, 0x3a, 0xfc, 0x64, 0xd0, 0x99, 0x62, 0xf1, 0x1a, 0x6e, 0xde, 0x90, 0xbb, 0x60, 0xc7,
0x58, 0x08, 0xe6, 0xb1, 0x51, 0x2f, 0xa8, 0x46, 0x7e, 0x0d, 0xe7, 0x51, 0x86, 0x61, 0x8e, 0xf3,
0x0c, 0xf5, 0x7a, 0xb7, 0x56, 0x5b, 0xd1, 0xf0, 0xd8, 0xc8, 0x0e, 0xfa, 0xc6, 0x0e, 0x7e, 0x5d,
0x7e, 0x05, 0xbd, 0x44, 0x2d, 0xff, 0x28, 0x9b, 0xa8, 0x6e, 0xa2, 0x96, 0x27, 0x44, 0x40, 0x5b,
0x63, 0x46, 0x69, 0x93, 0xd2, 0x5a, 0xf2, 0x01, 0xb4, 0x74, 0x55, 0x40, 0xb4, 0xe8, 0x65, 0x23,
0x2a, 0x77, 0x83, 0xe1, 0x0e, 0x85, 0x43, 0xb4, 0x11, 0xc3, 0x0f, 0x06, 0x2d, 0x5f, 0xe3, 0x36,
0xe7, 0xb7, 0xd0, 0xcc, 0x8b, 0x14, 0xa9, 0x6e, 0x7f, 0x72, 0x31, 0x36, 0x7b, 0x8e, 0x29, 0x34,
0xe7, 0xac, 0x48, 0x31, 0x20, 0x88, 0x7b, 0xd0, 0x88, 0x35, 0x75, 0xef, 0x4e, 0xdc, 0x1a, 0xad,
0x17, 0x0f, 0x1a, 0xb1, 0xe6, 0x37, 0xd0, 0x4e, 0x33, 0xd4, 0xf3, 0x58, 0x53, 0xf9, 0xff, 0x30,
0xa7, 0x02, 0xa6, 0x7a, 0xe8, 0xc1, 0xd9, 0xe9, 0x7e, 0xde, 0x06, 0xfb, 0xf9, 0x65, 0xe6, 0x5a,
0x1c, 0xc0, 0x79, 0xf4, 0x9f, 0xfc, 0x99, 0xef, 0xb2, 0x07, 0xb1, 0x3f, 0x4a, 0xeb, 0x70, 0x94,
0xd6, 0xbe, 0x94, 0xec, 0x50, 0x4a, 0xf6, 0x55, 0x4a, 0xf6, 0xfe, 0x2d, 0xad, 0x85, 0x43, 0xff,
0x7e, 0xff, 0x13, 0x00, 0x00, 0xff, 0xff, 0xb5, 0x45, 0x92, 0x5d, 0xa1, 0x01, 0x00, 0x00,
2016-04-26 00:08:33 +03:00
}