2017-11-11 19:18:17 +00:00
|
|
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
2016-07-04 10:40:29 +00:00
|
|
|
// source: structs.proto
|
|
|
|
|
|
|
|
package db
|
|
|
|
|
2019-09-04 06:33:29 +00:00
|
|
|
import (
|
|
|
|
fmt "fmt"
|
|
|
|
_ "github.com/gogo/protobuf/gogoproto"
|
|
|
|
proto "github.com/gogo/protobuf/proto"
|
|
|
|
github_com_syncthing_syncthing_lib_protocol "github.com/syncthing/syncthing/lib/protocol"
|
|
|
|
protocol "github.com/syncthing/syncthing/lib/protocol"
|
|
|
|
io "io"
|
|
|
|
math "math"
|
|
|
|
math_bits "math/bits"
|
|
|
|
)
|
2016-07-04 10:40:29 +00:00
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
2017-01-03 00:16:21 +00:00
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
2019-09-04 06:33:29 +00:00
|
|
|
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
|
2016-07-04 10:40:29 +00:00
|
|
|
|
|
|
|
type FileVersion struct {
|
2019-01-14 10:53:36 +00:00
|
|
|
Version protocol.Vector `protobuf:"bytes,1,opt,name=version,proto3" json:"version"`
|
2016-07-04 10:40:29 +00:00
|
|
|
Device []byte `protobuf:"bytes,2,opt,name=device,proto3" json:"device,omitempty"`
|
2017-11-11 19:18:17 +00:00
|
|
|
Invalid bool `protobuf:"varint,3,opt,name=invalid,proto3" json:"invalid,omitempty"`
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
2019-01-14 10:53:36 +00:00
|
|
|
func (m *FileVersion) Reset() { *m = FileVersion{} }
|
|
|
|
func (m *FileVersion) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*FileVersion) ProtoMessage() {}
|
|
|
|
func (*FileVersion) Descriptor() ([]byte, []int) {
|
2019-09-04 06:33:29 +00:00
|
|
|
return fileDescriptor_e774e8f5f348d14d, []int{0}
|
2019-01-14 10:53:36 +00:00
|
|
|
}
|
|
|
|
func (m *FileVersion) XXX_Unmarshal(b []byte) error {
|
|
|
|
return m.Unmarshal(b)
|
|
|
|
}
|
|
|
|
func (m *FileVersion) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
if deterministic {
|
|
|
|
return xxx_messageInfo_FileVersion.Marshal(b, m, deterministic)
|
|
|
|
} else {
|
|
|
|
b = b[:cap(b)]
|
2019-09-04 06:33:29 +00:00
|
|
|
n, err := m.MarshalToSizedBuffer(b)
|
2019-01-14 10:53:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return b[:n], nil
|
|
|
|
}
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
func (m *FileVersion) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_FileVersion.Merge(m, src)
|
2019-01-14 10:53:36 +00:00
|
|
|
}
|
|
|
|
func (m *FileVersion) XXX_Size() int {
|
|
|
|
return m.ProtoSize()
|
|
|
|
}
|
|
|
|
func (m *FileVersion) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_FileVersion.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_FileVersion proto.InternalMessageInfo
|
2016-07-04 10:40:29 +00:00
|
|
|
|
|
|
|
type VersionList struct {
|
2019-01-14 10:53:36 +00:00
|
|
|
Versions []FileVersion `protobuf:"bytes,1,rep,name=versions,proto3" json:"versions"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *VersionList) Reset() { *m = VersionList{} }
|
|
|
|
func (*VersionList) ProtoMessage() {}
|
|
|
|
func (*VersionList) Descriptor() ([]byte, []int) {
|
2019-09-04 06:33:29 +00:00
|
|
|
return fileDescriptor_e774e8f5f348d14d, []int{1}
|
2019-01-14 10:53:36 +00:00
|
|
|
}
|
|
|
|
func (m *VersionList) XXX_Unmarshal(b []byte) error {
|
|
|
|
return m.Unmarshal(b)
|
|
|
|
}
|
|
|
|
func (m *VersionList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
if deterministic {
|
|
|
|
return xxx_messageInfo_VersionList.Marshal(b, m, deterministic)
|
|
|
|
} else {
|
|
|
|
b = b[:cap(b)]
|
2019-09-04 06:33:29 +00:00
|
|
|
n, err := m.MarshalToSizedBuffer(b)
|
2019-01-14 10:53:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return b[:n], nil
|
|
|
|
}
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
func (m *VersionList) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_VersionList.Merge(m, src)
|
2019-01-14 10:53:36 +00:00
|
|
|
}
|
|
|
|
func (m *VersionList) XXX_Size() int {
|
|
|
|
return m.ProtoSize()
|
|
|
|
}
|
|
|
|
func (m *VersionList) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_VersionList.DiscardUnknown(m)
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
2019-01-14 10:53:36 +00:00
|
|
|
var xxx_messageInfo_VersionList proto.InternalMessageInfo
|
2016-07-04 10:40:29 +00:00
|
|
|
|
|
|
|
// Must be the same as FileInfo but without the blocks field
|
|
|
|
type FileInfoTruncated struct {
|
2017-01-03 00:16:21 +00:00
|
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
|
Type protocol.FileInfoType `protobuf:"varint,2,opt,name=type,proto3,enum=protocol.FileInfoType" json:"type,omitempty"`
|
|
|
|
Size int64 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
|
|
|
|
Permissions uint32 `protobuf:"varint,4,opt,name=permissions,proto3" json:"permissions,omitempty"`
|
|
|
|
ModifiedS int64 `protobuf:"varint,5,opt,name=modified_s,json=modifiedS,proto3" json:"modified_s,omitempty"`
|
|
|
|
ModifiedNs int32 `protobuf:"varint,11,opt,name=modified_ns,json=modifiedNs,proto3" json:"modified_ns,omitempty"`
|
|
|
|
ModifiedBy github_com_syncthing_syncthing_lib_protocol.ShortID `protobuf:"varint,12,opt,name=modified_by,json=modifiedBy,proto3,customtype=github.com/syncthing/syncthing/lib/protocol.ShortID" json:"modified_by"`
|
|
|
|
Deleted bool `protobuf:"varint,6,opt,name=deleted,proto3" json:"deleted,omitempty"`
|
2018-06-24 07:50:18 +00:00
|
|
|
RawInvalid bool `protobuf:"varint,7,opt,name=invalid,proto3" json:"invalid,omitempty"`
|
2017-01-03 00:16:21 +00:00
|
|
|
NoPermissions bool `protobuf:"varint,8,opt,name=no_permissions,json=noPermissions,proto3" json:"no_permissions,omitempty"`
|
2019-01-14 10:53:36 +00:00
|
|
|
Version protocol.Vector `protobuf:"bytes,9,opt,name=version,proto3" json:"version"`
|
2017-01-03 00:16:21 +00:00
|
|
|
Sequence int64 `protobuf:"varint,10,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
2018-04-16 18:08:50 +00:00
|
|
|
RawBlockSize int32 `protobuf:"varint,13,opt,name=block_size,json=blockSize,proto3" json:"block_size,omitempty"`
|
|
|
|
// repeated BlockInfo Blocks = 16
|
|
|
|
SymlinkTarget string `protobuf:"bytes,17,opt,name=symlink_target,json=symlinkTarget,proto3" json:"symlink_target,omitempty"`
|
2018-06-24 07:50:18 +00:00
|
|
|
// see bep.proto
|
|
|
|
LocalFlags uint32 `protobuf:"varint,1000,opt,name=local_flags,json=localFlags,proto3" json:"local_flags,omitempty"`
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
2019-01-14 10:53:36 +00:00
|
|
|
func (m *FileInfoTruncated) Reset() { *m = FileInfoTruncated{} }
|
|
|
|
func (*FileInfoTruncated) ProtoMessage() {}
|
|
|
|
func (*FileInfoTruncated) Descriptor() ([]byte, []int) {
|
2019-09-04 06:33:29 +00:00
|
|
|
return fileDescriptor_e774e8f5f348d14d, []int{2}
|
2019-01-14 10:53:36 +00:00
|
|
|
}
|
|
|
|
func (m *FileInfoTruncated) XXX_Unmarshal(b []byte) error {
|
|
|
|
return m.Unmarshal(b)
|
|
|
|
}
|
|
|
|
func (m *FileInfoTruncated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
if deterministic {
|
|
|
|
return xxx_messageInfo_FileInfoTruncated.Marshal(b, m, deterministic)
|
|
|
|
} else {
|
|
|
|
b = b[:cap(b)]
|
2019-09-04 06:33:29 +00:00
|
|
|
n, err := m.MarshalToSizedBuffer(b)
|
2019-01-14 10:53:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return b[:n], nil
|
|
|
|
}
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
func (m *FileInfoTruncated) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_FileInfoTruncated.Merge(m, src)
|
2019-01-14 10:53:36 +00:00
|
|
|
}
|
|
|
|
func (m *FileInfoTruncated) XXX_Size() int {
|
|
|
|
return m.ProtoSize()
|
|
|
|
}
|
|
|
|
func (m *FileInfoTruncated) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_FileInfoTruncated.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_FileInfoTruncated proto.InternalMessageInfo
|
2016-07-04 10:40:29 +00:00
|
|
|
|
2017-12-14 09:51:17 +00:00
|
|
|
// For each folder and device we keep one of these to track the current
|
|
|
|
// counts and sequence. We also keep one for the global state of the folder.
|
|
|
|
type Counts struct {
|
|
|
|
Files int32 `protobuf:"varint,1,opt,name=files,proto3" json:"files,omitempty"`
|
|
|
|
Directories int32 `protobuf:"varint,2,opt,name=directories,proto3" json:"directories,omitempty"`
|
|
|
|
Symlinks int32 `protobuf:"varint,3,opt,name=symlinks,proto3" json:"symlinks,omitempty"`
|
|
|
|
Deleted int32 `protobuf:"varint,4,opt,name=deleted,proto3" json:"deleted,omitempty"`
|
|
|
|
Bytes int64 `protobuf:"varint,5,opt,name=bytes,proto3" json:"bytes,omitempty"`
|
|
|
|
Sequence int64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
|
|
DeviceID []byte `protobuf:"bytes,17,opt,name=deviceID,proto3" json:"deviceID,omitempty"`
|
2018-07-12 08:15:57 +00:00
|
|
|
LocalFlags uint32 `protobuf:"varint,18,opt,name=localFlags,proto3" json:"localFlags,omitempty"`
|
2017-12-14 09:51:17 +00:00
|
|
|
}
|
|
|
|
|
2019-01-14 10:53:36 +00:00
|
|
|
func (m *Counts) Reset() { *m = Counts{} }
|
|
|
|
func (m *Counts) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Counts) ProtoMessage() {}
|
|
|
|
func (*Counts) Descriptor() ([]byte, []int) {
|
2019-09-04 06:33:29 +00:00
|
|
|
return fileDescriptor_e774e8f5f348d14d, []int{3}
|
2019-01-14 10:53:36 +00:00
|
|
|
}
|
|
|
|
func (m *Counts) XXX_Unmarshal(b []byte) error {
|
|
|
|
return m.Unmarshal(b)
|
|
|
|
}
|
|
|
|
func (m *Counts) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
if deterministic {
|
|
|
|
return xxx_messageInfo_Counts.Marshal(b, m, deterministic)
|
|
|
|
} else {
|
|
|
|
b = b[:cap(b)]
|
2019-09-04 06:33:29 +00:00
|
|
|
n, err := m.MarshalToSizedBuffer(b)
|
2019-01-14 10:53:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return b[:n], nil
|
|
|
|
}
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
func (m *Counts) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_Counts.Merge(m, src)
|
2019-01-14 10:53:36 +00:00
|
|
|
}
|
|
|
|
func (m *Counts) XXX_Size() int {
|
|
|
|
return m.ProtoSize()
|
|
|
|
}
|
|
|
|
func (m *Counts) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_Counts.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_Counts proto.InternalMessageInfo
|
2017-12-14 09:51:17 +00:00
|
|
|
|
|
|
|
type CountsSet struct {
|
2019-01-14 10:53:36 +00:00
|
|
|
Counts []Counts `protobuf:"bytes,1,rep,name=counts,proto3" json:"counts"`
|
2017-12-14 09:51:17 +00:00
|
|
|
Created int64 `protobuf:"varint,2,opt,name=created,proto3" json:"created,omitempty"`
|
|
|
|
}
|
|
|
|
|
2019-01-14 10:53:36 +00:00
|
|
|
func (m *CountsSet) Reset() { *m = CountsSet{} }
|
|
|
|
func (m *CountsSet) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*CountsSet) ProtoMessage() {}
|
|
|
|
func (*CountsSet) Descriptor() ([]byte, []int) {
|
2019-09-04 06:33:29 +00:00
|
|
|
return fileDescriptor_e774e8f5f348d14d, []int{4}
|
2019-01-14 10:53:36 +00:00
|
|
|
}
|
|
|
|
func (m *CountsSet) XXX_Unmarshal(b []byte) error {
|
|
|
|
return m.Unmarshal(b)
|
|
|
|
}
|
|
|
|
func (m *CountsSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
if deterministic {
|
|
|
|
return xxx_messageInfo_CountsSet.Marshal(b, m, deterministic)
|
|
|
|
} else {
|
|
|
|
b = b[:cap(b)]
|
2019-09-04 06:33:29 +00:00
|
|
|
n, err := m.MarshalToSizedBuffer(b)
|
2019-01-14 10:53:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return b[:n], nil
|
|
|
|
}
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
func (m *CountsSet) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_CountsSet.Merge(m, src)
|
2019-01-14 10:53:36 +00:00
|
|
|
}
|
|
|
|
func (m *CountsSet) XXX_Size() int {
|
|
|
|
return m.ProtoSize()
|
|
|
|
}
|
|
|
|
func (m *CountsSet) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_CountsSet.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_CountsSet proto.InternalMessageInfo
|
2017-12-14 09:51:17 +00:00
|
|
|
|
2016-07-04 10:40:29 +00:00
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*FileVersion)(nil), "db.FileVersion")
|
|
|
|
proto.RegisterType((*VersionList)(nil), "db.VersionList")
|
|
|
|
proto.RegisterType((*FileInfoTruncated)(nil), "db.FileInfoTruncated")
|
2017-12-14 09:51:17 +00:00
|
|
|
proto.RegisterType((*Counts)(nil), "db.Counts")
|
|
|
|
proto.RegisterType((*CountsSet)(nil), "db.CountsSet")
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
|
|
|
|
func init() { proto.RegisterFile("structs.proto", fileDescriptor_e774e8f5f348d14d) }
|
|
|
|
|
|
|
|
var fileDescriptor_e774e8f5f348d14d = []byte{
|
|
|
|
// 683 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x53, 0x4f, 0x6b, 0xdb, 0x4e,
|
|
|
|
0x10, 0xb5, 0x62, 0xf9, 0xdf, 0xd8, 0xce, 0x2f, 0x59, 0x42, 0x10, 0x86, 0x9f, 0x2c, 0x5c, 0x0a,
|
|
|
|
0xa2, 0x07, 0xbb, 0x4d, 0x6e, 0xed, 0xcd, 0x0d, 0x01, 0x43, 0x69, 0xcb, 0x3a, 0xe4, 0x54, 0x30,
|
|
|
|
0xfa, 0xb3, 0x76, 0x96, 0xc8, 0x5a, 0x47, 0xbb, 0x4e, 0x70, 0x3e, 0x45, 0x8f, 0x3d, 0xe6, 0xe3,
|
|
|
|
0xe4, 0x98, 0x63, 0xe9, 0xc1, 0xa4, 0x76, 0x0f, 0xfd, 0x18, 0x65, 0x77, 0x25, 0x45, 0xcd, 0xa9,
|
|
|
|
0xb7, 0x79, 0x6f, 0x66, 0x77, 0x67, 0xe6, 0xbd, 0x85, 0x36, 0x17, 0xc9, 0x32, 0x10, 0xbc, 0xbf,
|
|
|
|
0x48, 0x98, 0x60, 0x68, 0x27, 0xf4, 0x3b, 0x2f, 0x12, 0xb2, 0x60, 0x7c, 0xa0, 0x08, 0x7f, 0x39,
|
|
|
|
0x1d, 0xcc, 0xd8, 0x8c, 0x29, 0xa0, 0x22, 0x5d, 0xd8, 0x39, 0x8c, 0xa8, 0xaf, 0x4b, 0x02, 0x16,
|
|
|
|
0x0d, 0x7c, 0xb2, 0xd0, 0x7c, 0xef, 0x0a, 0x9a, 0xa7, 0x34, 0x22, 0xe7, 0x24, 0xe1, 0x94, 0xc5,
|
|
|
|
0xe8, 0x35, 0xd4, 0xae, 0x75, 0x68, 0x19, 0x8e, 0xe1, 0x36, 0x8f, 0xf6, 0xfa, 0xd9, 0xa1, 0xfe,
|
|
|
|
0x39, 0x09, 0x04, 0x4b, 0x86, 0xe6, 0xfd, 0xba, 0x5b, 0xc2, 0x59, 0x19, 0x3a, 0x84, 0x6a, 0x48,
|
|
|
|
0xae, 0x69, 0x40, 0xac, 0x1d, 0xc7, 0x70, 0x5b, 0x38, 0x45, 0xc8, 0x82, 0x1a, 0x8d, 0xaf, 0xbd,
|
|
|
|
0x88, 0x86, 0x56, 0xd9, 0x31, 0xdc, 0x3a, 0xce, 0x60, 0xef, 0x14, 0x9a, 0xe9, 0x73, 0x1f, 0x28,
|
|
|
|
0x17, 0xe8, 0x0d, 0xd4, 0xd3, 0xbb, 0xb8, 0x65, 0x38, 0x65, 0xb7, 0x79, 0xf4, 0x5f, 0x3f, 0xf4,
|
|
|
|
0xfb, 0x85, 0xae, 0xd2, 0x27, 0xf3, 0xb2, 0xb7, 0xe6, 0xb7, 0xbb, 0x6e, 0xa9, 0xf7, 0x68, 0xc2,
|
|
|
|
0xbe, 0xac, 0x1a, 0xc5, 0x53, 0x76, 0x96, 0x2c, 0xe3, 0xc0, 0x13, 0x24, 0x44, 0x08, 0xcc, 0xd8,
|
|
|
|
0x9b, 0x13, 0xd5, 0x7e, 0x03, 0xab, 0x18, 0xbd, 0x02, 0x53, 0xac, 0x16, 0xba, 0xc3, 0xdd, 0xa3,
|
|
|
|
0xc3, 0xa7, 0x91, 0xf2, 0xe3, 0xab, 0x05, 0xc1, 0xaa, 0x46, 0x9e, 0xe7, 0xf4, 0x96, 0xa8, 0xa6,
|
|
|
|
0xcb, 0x58, 0xc5, 0xc8, 0x81, 0xe6, 0x82, 0x24, 0x73, 0xca, 0x75, 0x97, 0xa6, 0x63, 0xb8, 0x6d,
|
|
|
|
0x5c, 0xa4, 0xd0, 0xff, 0x00, 0x73, 0x16, 0xd2, 0x29, 0x25, 0xe1, 0x84, 0x5b, 0x15, 0x75, 0xb6,
|
|
|
|
0x91, 0x31, 0x63, 0xd4, 0x85, 0x66, 0x9e, 0x8e, 0xb9, 0xd5, 0x74, 0x0c, 0xb7, 0x82, 0xf3, 0x13,
|
|
|
|
0x1f, 0x39, 0xfa, 0x52, 0x28, 0xf0, 0x57, 0x56, 0xcb, 0x31, 0x5c, 0x73, 0xf8, 0x4e, 0x8e, 0xfd,
|
|
|
|
0x63, 0xdd, 0x3d, 0x9e, 0x51, 0x71, 0xb1, 0xf4, 0xfb, 0x01, 0x9b, 0x0f, 0xf8, 0x2a, 0x0e, 0xc4,
|
|
|
|
0x05, 0x8d, 0x67, 0x85, 0xa8, 0x28, 0x6d, 0x7f, 0x7c, 0xc1, 0x12, 0x31, 0x3a, 0x79, 0xba, 0x7d,
|
|
|
|
0xb8, 0x92, 0x5a, 0x84, 0x24, 0x22, 0x82, 0x84, 0x56, 0x55, 0x6b, 0x91, 0x42, 0xe4, 0x3e, 0xa9,
|
|
|
|
0x54, 0x93, 0x99, 0xe1, 0xee, 0x66, 0xdd, 0x05, 0xec, 0xdd, 0x8c, 0x34, 0x9b, 0xab, 0x86, 0x5e,
|
|
|
|
0xc2, 0x6e, 0xcc, 0x26, 0xc5, 0x35, 0xd4, 0xd5, 0x55, 0xed, 0x98, 0x7d, 0x2e, 0x2c, 0xa2, 0x60,
|
|
|
|
0xa0, 0xc6, 0xbf, 0x19, 0xa8, 0x03, 0x75, 0x4e, 0xae, 0x96, 0x24, 0x0e, 0x88, 0x05, 0x6a, 0x71,
|
|
|
|
0x39, 0x46, 0x03, 0x00, 0x3f, 0x62, 0xc1, 0xe5, 0x44, 0x49, 0xd2, 0x96, 0x6b, 0x1b, 0xee, 0x6d,
|
|
|
|
0xd6, 0xdd, 0x16, 0xf6, 0x6e, 0x86, 0x32, 0x31, 0xa6, 0xb7, 0x04, 0x37, 0xfc, 0x2c, 0x94, 0x5d,
|
|
|
|
0xf2, 0xd5, 0x3c, 0xa2, 0xf1, 0xe5, 0x44, 0x78, 0xc9, 0x8c, 0x08, 0x6b, 0x5f, 0xf9, 0xa0, 0x9d,
|
|
|
|
0xb2, 0x67, 0x8a, 0x94, 0x82, 0x46, 0x2c, 0xf0, 0xa2, 0xc9, 0x34, 0xf2, 0x66, 0xdc, 0xfa, 0x5d,
|
|
|
|
0x53, 0x8a, 0x82, 0xe2, 0x4e, 0x25, 0x95, 0x5a, 0xec, 0x97, 0x01, 0xd5, 0xf7, 0x6c, 0x19, 0x0b,
|
|
|
|
0x8e, 0x0e, 0xa0, 0x32, 0xa5, 0x11, 0xe1, 0xca, 0x58, 0x15, 0xac, 0x81, 0xbc, 0x28, 0xa4, 0x89,
|
|
|
|
0x9a, 0x8b, 0x12, 0xae, 0x0c, 0x56, 0xc1, 0x45, 0x4a, 0x8d, 0xa7, 0xdf, 0xe6, 0xca, 0x53, 0x15,
|
|
|
|
0x9c, 0xe3, 0xa2, 0x2e, 0xa6, 0x4a, 0xe5, 0xba, 0x1c, 0x40, 0xc5, 0x5f, 0x09, 0x92, 0x59, 0x49,
|
|
|
|
0x83, 0xbf, 0x56, 0x55, 0x7d, 0xb6, 0xaa, 0x0e, 0xd4, 0xf5, 0xcf, 0x1b, 0x9d, 0xa8, 0x99, 0x5b,
|
|
|
|
0x38, 0xc7, 0xc8, 0x86, 0xc2, 0x68, 0x16, 0x7a, 0x3e, 0x6c, 0xef, 0x13, 0x34, 0xf4, 0x94, 0x63,
|
|
|
|
0x22, 0x90, 0x0b, 0xd5, 0x40, 0x81, 0xf4, 0x37, 0x82, 0xfc, 0x8d, 0x3a, 0x9d, 0x4a, 0x97, 0xe6,
|
|
|
|
0x65, 0xfb, 0x41, 0x42, 0xe4, 0xaf, 0x53, 0x83, 0x97, 0x71, 0x06, 0x87, 0xce, 0xfd, 0x4f, 0xbb,
|
|
|
|
0x74, 0xbf, 0xb1, 0x8d, 0x87, 0x8d, 0x6d, 0x3c, 0x6e, 0xec, 0xd2, 0xd7, 0xad, 0x5d, 0xba, 0xdb,
|
|
|
|
0xda, 0xc6, 0xc3, 0xd6, 0x2e, 0x7d, 0xdf, 0xda, 0x25, 0xbf, 0xaa, 0x5c, 0x71, 0xfc, 0x27, 0x00,
|
|
|
|
0x00, 0xff, 0xff, 0x38, 0xe1, 0x29, 0xbf, 0xd0, 0x04, 0x00, 0x00,
|
|
|
|
}
|
|
|
|
|
2017-01-03 00:16:21 +00:00
|
|
|
func (m *FileVersion) Marshal() (dAtA []byte, err error) {
|
2016-07-04 10:40:29 +00:00
|
|
|
size := m.ProtoSize()
|
2017-01-03 00:16:21 +00:00
|
|
|
dAtA = make([]byte, size)
|
2019-09-04 06:33:29 +00:00
|
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
2016-07-04 10:40:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
return dAtA[:n], nil
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 00:16:21 +00:00
|
|
|
func (m *FileVersion) MarshalTo(dAtA []byte) (int, error) {
|
2019-09-04 06:33:29 +00:00
|
|
|
size := m.ProtoSize()
|
|
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *FileVersion) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
i := len(dAtA)
|
2016-07-04 10:40:29 +00:00
|
|
|
_ = i
|
|
|
|
var l int
|
|
|
|
_ = l
|
2017-11-11 19:18:17 +00:00
|
|
|
if m.Invalid {
|
2019-09-04 06:33:29 +00:00
|
|
|
i--
|
2017-11-11 19:18:17 +00:00
|
|
|
if m.Invalid {
|
|
|
|
dAtA[i] = 1
|
|
|
|
} else {
|
|
|
|
dAtA[i] = 0
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
i--
|
|
|
|
dAtA[i] = 0x18
|
|
|
|
}
|
|
|
|
if len(m.Device) > 0 {
|
|
|
|
i -= len(m.Device)
|
|
|
|
copy(dAtA[i:], m.Device)
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(len(m.Device)))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x12
|
2017-11-11 19:18:17 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
{
|
|
|
|
size, err := m.Version.MarshalToSizedBuffer(dAtA[:i])
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
i -= size
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(size))
|
|
|
|
}
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0xa
|
|
|
|
return len(dAtA) - i, nil
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 00:16:21 +00:00
|
|
|
func (m *VersionList) Marshal() (dAtA []byte, err error) {
|
2016-07-04 10:40:29 +00:00
|
|
|
size := m.ProtoSize()
|
2017-01-03 00:16:21 +00:00
|
|
|
dAtA = make([]byte, size)
|
2019-09-04 06:33:29 +00:00
|
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
2016-07-04 10:40:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
return dAtA[:n], nil
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 00:16:21 +00:00
|
|
|
func (m *VersionList) MarshalTo(dAtA []byte) (int, error) {
|
2019-09-04 06:33:29 +00:00
|
|
|
size := m.ProtoSize()
|
|
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *VersionList) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
i := len(dAtA)
|
2016-07-04 10:40:29 +00:00
|
|
|
_ = i
|
|
|
|
var l int
|
|
|
|
_ = l
|
|
|
|
if len(m.Versions) > 0 {
|
2019-09-04 06:33:29 +00:00
|
|
|
for iNdEx := len(m.Versions) - 1; iNdEx >= 0; iNdEx-- {
|
|
|
|
{
|
|
|
|
size, err := m.Versions[iNdEx].MarshalToSizedBuffer(dAtA[:i])
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
i -= size
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(size))
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
i--
|
|
|
|
dAtA[i] = 0xa
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
return len(dAtA) - i, nil
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 00:16:21 +00:00
|
|
|
func (m *FileInfoTruncated) Marshal() (dAtA []byte, err error) {
|
2016-07-04 10:40:29 +00:00
|
|
|
size := m.ProtoSize()
|
2017-01-03 00:16:21 +00:00
|
|
|
dAtA = make([]byte, size)
|
2019-09-04 06:33:29 +00:00
|
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
2016-07-04 10:40:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
return dAtA[:n], nil
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 00:16:21 +00:00
|
|
|
func (m *FileInfoTruncated) MarshalTo(dAtA []byte) (int, error) {
|
2019-09-04 06:33:29 +00:00
|
|
|
size := m.ProtoSize()
|
|
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *FileInfoTruncated) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
i := len(dAtA)
|
2016-07-04 10:40:29 +00:00
|
|
|
_ = i
|
|
|
|
var l int
|
|
|
|
_ = l
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.LocalFlags != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.LocalFlags))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x3e
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0xc0
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if len(m.SymlinkTarget) > 0 {
|
|
|
|
i -= len(m.SymlinkTarget)
|
|
|
|
copy(dAtA[i:], m.SymlinkTarget)
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(len(m.SymlinkTarget)))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x1
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x8a
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.RawBlockSize != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.RawBlockSize))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x68
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.ModifiedBy != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.ModifiedBy))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x60
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.ModifiedNs != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.ModifiedNs))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x58
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.Sequence != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.Sequence))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x50
|
|
|
|
}
|
|
|
|
{
|
|
|
|
size, err := m.Version.MarshalToSizedBuffer(dAtA[:i])
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
i -= size
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(size))
|
|
|
|
}
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x4a
|
|
|
|
if m.NoPermissions {
|
|
|
|
i--
|
|
|
|
if m.NoPermissions {
|
2017-01-03 00:16:21 +00:00
|
|
|
dAtA[i] = 1
|
2016-07-04 10:40:29 +00:00
|
|
|
} else {
|
2017-01-03 00:16:21 +00:00
|
|
|
dAtA[i] = 0
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
i--
|
|
|
|
dAtA[i] = 0x40
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2018-06-24 07:50:18 +00:00
|
|
|
if m.RawInvalid {
|
2019-09-04 06:33:29 +00:00
|
|
|
i--
|
2018-06-24 07:50:18 +00:00
|
|
|
if m.RawInvalid {
|
2017-01-03 00:16:21 +00:00
|
|
|
dAtA[i] = 1
|
2016-07-04 10:40:29 +00:00
|
|
|
} else {
|
2017-01-03 00:16:21 +00:00
|
|
|
dAtA[i] = 0
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
i--
|
|
|
|
dAtA[i] = 0x38
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.Deleted {
|
|
|
|
i--
|
|
|
|
if m.Deleted {
|
2017-01-03 00:16:21 +00:00
|
|
|
dAtA[i] = 1
|
2016-07-04 10:40:29 +00:00
|
|
|
} else {
|
2017-01-03 00:16:21 +00:00
|
|
|
dAtA[i] = 0
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
i--
|
|
|
|
dAtA[i] = 0x30
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.ModifiedS != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.ModifiedS))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x28
|
2016-08-06 13:05:59 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.Permissions != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.Permissions))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x20
|
2016-12-21 16:35:20 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.Size != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.Size))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x18
|
2018-04-16 18:08:50 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.Type != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.Type))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x10
|
2016-12-09 18:02:18 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if len(m.Name) > 0 {
|
|
|
|
i -= len(m.Name)
|
|
|
|
copy(dAtA[i:], m.Name)
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(len(m.Name)))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0xa
|
2018-06-24 07:50:18 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
return len(dAtA) - i, nil
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
2017-12-14 09:51:17 +00:00
|
|
|
func (m *Counts) Marshal() (dAtA []byte, err error) {
|
|
|
|
size := m.ProtoSize()
|
|
|
|
dAtA = make([]byte, size)
|
2019-09-04 06:33:29 +00:00
|
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
2017-12-14 09:51:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return dAtA[:n], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Counts) MarshalTo(dAtA []byte) (int, error) {
|
2019-09-04 06:33:29 +00:00
|
|
|
size := m.ProtoSize()
|
|
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Counts) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
i := len(dAtA)
|
2017-12-14 09:51:17 +00:00
|
|
|
_ = i
|
|
|
|
var l int
|
|
|
|
_ = l
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.LocalFlags != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.LocalFlags))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x1
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x90
|
2017-12-14 09:51:17 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if len(m.DeviceID) > 0 {
|
|
|
|
i -= len(m.DeviceID)
|
|
|
|
copy(dAtA[i:], m.DeviceID)
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(len(m.DeviceID)))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x1
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x8a
|
2017-12-14 09:51:17 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.Sequence != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.Sequence))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x30
|
2017-12-14 09:51:17 +00:00
|
|
|
}
|
|
|
|
if m.Bytes != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.Bytes))
|
2019-09-04 06:33:29 +00:00
|
|
|
i--
|
|
|
|
dAtA[i] = 0x28
|
2017-12-14 09:51:17 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.Deleted != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.Deleted))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x20
|
2017-12-14 09:51:17 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.Symlinks != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.Symlinks))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x18
|
2017-12-14 09:51:17 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.Directories != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.Directories))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x10
|
|
|
|
}
|
|
|
|
if m.Files != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.Files))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x8
|
2018-07-12 08:15:57 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
return len(dAtA) - i, nil
|
2017-12-14 09:51:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CountsSet) Marshal() (dAtA []byte, err error) {
|
|
|
|
size := m.ProtoSize()
|
|
|
|
dAtA = make([]byte, size)
|
2019-09-04 06:33:29 +00:00
|
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
2017-12-14 09:51:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return dAtA[:n], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CountsSet) MarshalTo(dAtA []byte) (int, error) {
|
2019-09-04 06:33:29 +00:00
|
|
|
size := m.ProtoSize()
|
|
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CountsSet) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
i := len(dAtA)
|
2017-12-14 09:51:17 +00:00
|
|
|
_ = i
|
|
|
|
var l int
|
|
|
|
_ = l
|
2019-09-04 06:33:29 +00:00
|
|
|
if m.Created != 0 {
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(m.Created))
|
|
|
|
i--
|
|
|
|
dAtA[i] = 0x10
|
|
|
|
}
|
2017-12-14 09:51:17 +00:00
|
|
|
if len(m.Counts) > 0 {
|
2019-09-04 06:33:29 +00:00
|
|
|
for iNdEx := len(m.Counts) - 1; iNdEx >= 0; iNdEx-- {
|
|
|
|
{
|
|
|
|
size, err := m.Counts[iNdEx].MarshalToSizedBuffer(dAtA[:i])
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
i -= size
|
|
|
|
i = encodeVarintStructs(dAtA, i, uint64(size))
|
2017-12-14 09:51:17 +00:00
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
i--
|
|
|
|
dAtA[i] = 0xa
|
2017-12-14 09:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
return len(dAtA) - i, nil
|
2017-12-14 09:51:17 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 00:16:21 +00:00
|
|
|
func encodeVarintStructs(dAtA []byte, offset int, v uint64) int {
|
2019-09-04 06:33:29 +00:00
|
|
|
offset -= sovStructs(v)
|
|
|
|
base := offset
|
2016-07-04 10:40:29 +00:00
|
|
|
for v >= 1<<7 {
|
2017-01-03 00:16:21 +00:00
|
|
|
dAtA[offset] = uint8(v&0x7f | 0x80)
|
2016-07-04 10:40:29 +00:00
|
|
|
v >>= 7
|
|
|
|
offset++
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
dAtA[offset] = uint8(v)
|
2019-09-04 06:33:29 +00:00
|
|
|
return base
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
func (m *FileVersion) ProtoSize() (n int) {
|
2019-01-14 10:53:36 +00:00
|
|
|
if m == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
var l int
|
|
|
|
_ = l
|
|
|
|
l = m.Version.ProtoSize()
|
|
|
|
n += 1 + l + sovStructs(uint64(l))
|
|
|
|
l = len(m.Device)
|
|
|
|
if l > 0 {
|
|
|
|
n += 1 + l + sovStructs(uint64(l))
|
|
|
|
}
|
2017-11-11 19:18:17 +00:00
|
|
|
if m.Invalid {
|
|
|
|
n += 2
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *VersionList) ProtoSize() (n int) {
|
2019-01-14 10:53:36 +00:00
|
|
|
if m == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
var l int
|
|
|
|
_ = l
|
|
|
|
if len(m.Versions) > 0 {
|
|
|
|
for _, e := range m.Versions {
|
|
|
|
l = e.ProtoSize()
|
|
|
|
n += 1 + l + sovStructs(uint64(l))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *FileInfoTruncated) ProtoSize() (n int) {
|
2019-01-14 10:53:36 +00:00
|
|
|
if m == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
var l int
|
|
|
|
_ = l
|
|
|
|
l = len(m.Name)
|
|
|
|
if l > 0 {
|
|
|
|
n += 1 + l + sovStructs(uint64(l))
|
|
|
|
}
|
|
|
|
if m.Type != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.Type))
|
|
|
|
}
|
|
|
|
if m.Size != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.Size))
|
|
|
|
}
|
|
|
|
if m.Permissions != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.Permissions))
|
|
|
|
}
|
2016-08-06 13:05:59 +00:00
|
|
|
if m.ModifiedS != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.ModifiedS))
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
if m.Deleted {
|
|
|
|
n += 2
|
|
|
|
}
|
2018-06-24 07:50:18 +00:00
|
|
|
if m.RawInvalid {
|
2016-07-04 10:40:29 +00:00
|
|
|
n += 2
|
|
|
|
}
|
|
|
|
if m.NoPermissions {
|
|
|
|
n += 2
|
|
|
|
}
|
|
|
|
l = m.Version.ProtoSize()
|
|
|
|
n += 1 + l + sovStructs(uint64(l))
|
2016-07-29 19:54:24 +00:00
|
|
|
if m.Sequence != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.Sequence))
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2016-08-06 13:05:59 +00:00
|
|
|
if m.ModifiedNs != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.ModifiedNs))
|
|
|
|
}
|
2016-12-21 16:35:20 +00:00
|
|
|
if m.ModifiedBy != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.ModifiedBy))
|
|
|
|
}
|
2018-04-16 18:08:50 +00:00
|
|
|
if m.RawBlockSize != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.RawBlockSize))
|
|
|
|
}
|
2016-12-09 18:02:18 +00:00
|
|
|
l = len(m.SymlinkTarget)
|
|
|
|
if l > 0 {
|
|
|
|
n += 2 + l + sovStructs(uint64(l))
|
|
|
|
}
|
2018-06-24 07:50:18 +00:00
|
|
|
if m.LocalFlags != 0 {
|
|
|
|
n += 2 + sovStructs(uint64(m.LocalFlags))
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
2017-12-14 09:51:17 +00:00
|
|
|
func (m *Counts) ProtoSize() (n int) {
|
2019-01-14 10:53:36 +00:00
|
|
|
if m == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2017-12-14 09:51:17 +00:00
|
|
|
var l int
|
|
|
|
_ = l
|
|
|
|
if m.Files != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.Files))
|
|
|
|
}
|
|
|
|
if m.Directories != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.Directories))
|
|
|
|
}
|
|
|
|
if m.Symlinks != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.Symlinks))
|
|
|
|
}
|
|
|
|
if m.Deleted != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.Deleted))
|
|
|
|
}
|
|
|
|
if m.Bytes != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.Bytes))
|
|
|
|
}
|
|
|
|
if m.Sequence != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.Sequence))
|
|
|
|
}
|
|
|
|
l = len(m.DeviceID)
|
|
|
|
if l > 0 {
|
|
|
|
n += 2 + l + sovStructs(uint64(l))
|
|
|
|
}
|
2018-07-12 08:15:57 +00:00
|
|
|
if m.LocalFlags != 0 {
|
|
|
|
n += 2 + sovStructs(uint64(m.LocalFlags))
|
|
|
|
}
|
2017-12-14 09:51:17 +00:00
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CountsSet) ProtoSize() (n int) {
|
2019-01-14 10:53:36 +00:00
|
|
|
if m == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2017-12-14 09:51:17 +00:00
|
|
|
var l int
|
|
|
|
_ = l
|
|
|
|
if len(m.Counts) > 0 {
|
|
|
|
for _, e := range m.Counts {
|
|
|
|
l = e.ProtoSize()
|
|
|
|
n += 1 + l + sovStructs(uint64(l))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if m.Created != 0 {
|
|
|
|
n += 1 + sovStructs(uint64(m.Created))
|
|
|
|
}
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
2016-07-04 10:40:29 +00:00
|
|
|
func sovStructs(x uint64) (n int) {
|
2019-09-04 06:33:29 +00:00
|
|
|
return (math_bits.Len64(x|1) + 6) / 7
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
func sozStructs(x uint64) (n int) {
|
|
|
|
return sovStructs(uint64((x << 1) ^ uint64((int64(x) >> 63))))
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
func (m *FileVersion) Unmarshal(dAtA []byte) error {
|
|
|
|
l := len(dAtA)
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx := 0
|
|
|
|
for iNdEx < l {
|
|
|
|
preIndex := iNdEx
|
|
|
|
var wire uint64
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
wire |= uint64(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fieldNum := int32(wire >> 3)
|
|
|
|
wireType := int(wire & 0x7)
|
|
|
|
if wireType == 4 {
|
|
|
|
return fmt.Errorf("proto: FileVersion: wiretype end group for non-group")
|
|
|
|
}
|
|
|
|
if fieldNum <= 0 {
|
|
|
|
return fmt.Errorf("proto: FileVersion: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
}
|
|
|
|
switch fieldNum {
|
|
|
|
case 1:
|
|
|
|
if wireType != 2 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType)
|
|
|
|
}
|
|
|
|
var msglen int
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
msglen |= int(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if msglen < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
|
|
|
postIndex := iNdEx + msglen
|
2019-09-04 06:33:29 +00:00
|
|
|
if postIndex < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
if postIndex > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
if err := m.Version.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
2016-07-04 10:40:29 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
iNdEx = postIndex
|
|
|
|
case 2:
|
|
|
|
if wireType != 2 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Device", wireType)
|
|
|
|
}
|
|
|
|
var byteLen int
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
byteLen |= int(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if byteLen < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
|
|
|
postIndex := iNdEx + byteLen
|
2019-09-04 06:33:29 +00:00
|
|
|
if postIndex < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
if postIndex > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
m.Device = append(m.Device[:0], dAtA[iNdEx:postIndex]...)
|
2016-07-04 10:40:29 +00:00
|
|
|
if m.Device == nil {
|
|
|
|
m.Device = []byte{}
|
|
|
|
}
|
|
|
|
iNdEx = postIndex
|
2017-11-11 19:18:17 +00:00
|
|
|
case 3:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Invalid", wireType)
|
|
|
|
}
|
|
|
|
var v int
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
v |= int(b&0x7F) << shift
|
2017-11-11 19:18:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m.Invalid = bool(v != 0)
|
2016-07-04 10:40:29 +00:00
|
|
|
default:
|
|
|
|
iNdEx = preIndex
|
2017-01-03 00:16:21 +00:00
|
|
|
skippy, err := skipStructs(dAtA[iNdEx:])
|
2016-07-04 10:40:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if skippy < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if (iNdEx + skippy) < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
if (iNdEx + skippy) > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
iNdEx += skippy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if iNdEx > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
func (m *VersionList) Unmarshal(dAtA []byte) error {
|
|
|
|
l := len(dAtA)
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx := 0
|
|
|
|
for iNdEx < l {
|
|
|
|
preIndex := iNdEx
|
|
|
|
var wire uint64
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
wire |= uint64(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fieldNum := int32(wire >> 3)
|
|
|
|
wireType := int(wire & 0x7)
|
|
|
|
if wireType == 4 {
|
|
|
|
return fmt.Errorf("proto: VersionList: wiretype end group for non-group")
|
|
|
|
}
|
|
|
|
if fieldNum <= 0 {
|
|
|
|
return fmt.Errorf("proto: VersionList: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
}
|
|
|
|
switch fieldNum {
|
|
|
|
case 1:
|
|
|
|
if wireType != 2 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Versions", wireType)
|
|
|
|
}
|
|
|
|
var msglen int
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
msglen |= int(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if msglen < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
|
|
|
postIndex := iNdEx + msglen
|
2019-09-04 06:33:29 +00:00
|
|
|
if postIndex < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
if postIndex > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
m.Versions = append(m.Versions, FileVersion{})
|
2017-01-03 00:16:21 +00:00
|
|
|
if err := m.Versions[len(m.Versions)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
2016-07-04 10:40:29 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
iNdEx = postIndex
|
|
|
|
default:
|
|
|
|
iNdEx = preIndex
|
2017-01-03 00:16:21 +00:00
|
|
|
skippy, err := skipStructs(dAtA[iNdEx:])
|
2016-07-04 10:40:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if skippy < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if (iNdEx + skippy) < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
if (iNdEx + skippy) > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
iNdEx += skippy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if iNdEx > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
func (m *FileInfoTruncated) Unmarshal(dAtA []byte) error {
|
|
|
|
l := len(dAtA)
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx := 0
|
|
|
|
for iNdEx < l {
|
|
|
|
preIndex := iNdEx
|
|
|
|
var wire uint64
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
wire |= uint64(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fieldNum := int32(wire >> 3)
|
|
|
|
wireType := int(wire & 0x7)
|
|
|
|
if wireType == 4 {
|
|
|
|
return fmt.Errorf("proto: FileInfoTruncated: wiretype end group for non-group")
|
|
|
|
}
|
|
|
|
if fieldNum <= 0 {
|
|
|
|
return fmt.Errorf("proto: FileInfoTruncated: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
}
|
|
|
|
switch fieldNum {
|
|
|
|
case 1:
|
|
|
|
if wireType != 2 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType)
|
|
|
|
}
|
|
|
|
var stringLen uint64
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
stringLen |= uint64(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
intStringLen := int(stringLen)
|
|
|
|
if intStringLen < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
|
|
|
postIndex := iNdEx + intStringLen
|
2019-09-04 06:33:29 +00:00
|
|
|
if postIndex < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
if postIndex > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
m.Name = string(dAtA[iNdEx:postIndex])
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx = postIndex
|
|
|
|
case 2:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
|
|
|
|
}
|
|
|
|
m.Type = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.Type |= protocol.FileInfoType(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 3:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Size", wireType)
|
|
|
|
}
|
|
|
|
m.Size = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.Size |= int64(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 4:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Permissions", wireType)
|
|
|
|
}
|
|
|
|
m.Permissions = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.Permissions |= uint32(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 5:
|
|
|
|
if wireType != 0 {
|
2016-08-06 13:05:59 +00:00
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ModifiedS", wireType)
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2016-08-06 13:05:59 +00:00
|
|
|
m.ModifiedS = 0
|
2016-07-04 10:40:29 +00:00
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.ModifiedS |= int64(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 6:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Deleted", wireType)
|
|
|
|
}
|
|
|
|
var v int
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
v |= int(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m.Deleted = bool(v != 0)
|
|
|
|
case 7:
|
|
|
|
if wireType != 0 {
|
2018-06-24 07:50:18 +00:00
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field RawInvalid", wireType)
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
var v int
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
v |= int(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2018-06-24 07:50:18 +00:00
|
|
|
m.RawInvalid = bool(v != 0)
|
2016-07-04 10:40:29 +00:00
|
|
|
case 8:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field NoPermissions", wireType)
|
|
|
|
}
|
|
|
|
var v int
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
v |= int(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m.NoPermissions = bool(v != 0)
|
|
|
|
case 9:
|
|
|
|
if wireType != 2 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType)
|
|
|
|
}
|
|
|
|
var msglen int
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
msglen |= int(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if msglen < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
|
|
|
postIndex := iNdEx + msglen
|
2019-09-04 06:33:29 +00:00
|
|
|
if postIndex < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
if postIndex > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
if err := m.Version.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
2016-07-04 10:40:29 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
iNdEx = postIndex
|
|
|
|
case 10:
|
|
|
|
if wireType != 0 {
|
2016-07-29 19:54:24 +00:00
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Sequence", wireType)
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2016-07-29 19:54:24 +00:00
|
|
|
m.Sequence = 0
|
2016-07-04 10:40:29 +00:00
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.Sequence |= int64(b&0x7F) << shift
|
2016-07-04 10:40:29 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2016-08-06 13:05:59 +00:00
|
|
|
case 11:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ModifiedNs", wireType)
|
|
|
|
}
|
|
|
|
m.ModifiedNs = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-08-06 13:05:59 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.ModifiedNs |= int32(b&0x7F) << shift
|
2016-08-06 13:05:59 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2016-12-21 16:35:20 +00:00
|
|
|
case 12:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ModifiedBy", wireType)
|
|
|
|
}
|
|
|
|
m.ModifiedBy = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-12-21 16:35:20 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.ModifiedBy |= github_com_syncthing_syncthing_lib_protocol.ShortID(b&0x7F) << shift
|
2016-12-21 16:35:20 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2018-04-16 18:08:50 +00:00
|
|
|
case 13:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field RawBlockSize", wireType)
|
|
|
|
}
|
|
|
|
m.RawBlockSize = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.RawBlockSize |= int32(b&0x7F) << shift
|
2018-04-16 18:08:50 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2016-12-09 18:02:18 +00:00
|
|
|
case 17:
|
|
|
|
if wireType != 2 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field SymlinkTarget", wireType)
|
|
|
|
}
|
|
|
|
var stringLen uint64
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-12-09 18:02:18 +00:00
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
stringLen |= uint64(b&0x7F) << shift
|
2016-12-09 18:02:18 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
intStringLen := int(stringLen)
|
|
|
|
if intStringLen < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
|
|
|
postIndex := iNdEx + intStringLen
|
2019-09-04 06:33:29 +00:00
|
|
|
if postIndex < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2016-12-09 18:02:18 +00:00
|
|
|
if postIndex > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
m.SymlinkTarget = string(dAtA[iNdEx:postIndex])
|
2016-12-09 18:02:18 +00:00
|
|
|
iNdEx = postIndex
|
2018-06-24 07:50:18 +00:00
|
|
|
case 1000:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field LocalFlags", wireType)
|
|
|
|
}
|
|
|
|
m.LocalFlags = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.LocalFlags |= uint32(b&0x7F) << shift
|
2018-06-24 07:50:18 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
default:
|
|
|
|
iNdEx = preIndex
|
2017-01-03 00:16:21 +00:00
|
|
|
skippy, err := skipStructs(dAtA[iNdEx:])
|
2016-07-04 10:40:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if skippy < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if (iNdEx + skippy) < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
if (iNdEx + skippy) > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
iNdEx += skippy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if iNdEx > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-12-14 09:51:17 +00:00
|
|
|
func (m *Counts) Unmarshal(dAtA []byte) error {
|
|
|
|
l := len(dAtA)
|
|
|
|
iNdEx := 0
|
|
|
|
for iNdEx < l {
|
|
|
|
preIndex := iNdEx
|
|
|
|
var wire uint64
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
wire |= uint64(b&0x7F) << shift
|
2017-12-14 09:51:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fieldNum := int32(wire >> 3)
|
|
|
|
wireType := int(wire & 0x7)
|
|
|
|
if wireType == 4 {
|
|
|
|
return fmt.Errorf("proto: Counts: wiretype end group for non-group")
|
|
|
|
}
|
|
|
|
if fieldNum <= 0 {
|
|
|
|
return fmt.Errorf("proto: Counts: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
}
|
|
|
|
switch fieldNum {
|
|
|
|
case 1:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Files", wireType)
|
|
|
|
}
|
|
|
|
m.Files = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.Files |= int32(b&0x7F) << shift
|
2017-12-14 09:51:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 2:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Directories", wireType)
|
|
|
|
}
|
|
|
|
m.Directories = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.Directories |= int32(b&0x7F) << shift
|
2017-12-14 09:51:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 3:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Symlinks", wireType)
|
|
|
|
}
|
|
|
|
m.Symlinks = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.Symlinks |= int32(b&0x7F) << shift
|
2017-12-14 09:51:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 4:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Deleted", wireType)
|
|
|
|
}
|
|
|
|
m.Deleted = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.Deleted |= int32(b&0x7F) << shift
|
2017-12-14 09:51:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 5:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Bytes", wireType)
|
|
|
|
}
|
|
|
|
m.Bytes = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.Bytes |= int64(b&0x7F) << shift
|
2017-12-14 09:51:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 6:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Sequence", wireType)
|
|
|
|
}
|
|
|
|
m.Sequence = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.Sequence |= int64(b&0x7F) << shift
|
2017-12-14 09:51:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 17:
|
|
|
|
if wireType != 2 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field DeviceID", wireType)
|
|
|
|
}
|
|
|
|
var byteLen int
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
byteLen |= int(b&0x7F) << shift
|
2017-12-14 09:51:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if byteLen < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
|
|
|
postIndex := iNdEx + byteLen
|
2019-09-04 06:33:29 +00:00
|
|
|
if postIndex < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2017-12-14 09:51:17 +00:00
|
|
|
if postIndex > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
m.DeviceID = append(m.DeviceID[:0], dAtA[iNdEx:postIndex]...)
|
|
|
|
if m.DeviceID == nil {
|
|
|
|
m.DeviceID = []byte{}
|
|
|
|
}
|
|
|
|
iNdEx = postIndex
|
2018-07-12 08:15:57 +00:00
|
|
|
case 18:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field LocalFlags", wireType)
|
|
|
|
}
|
|
|
|
m.LocalFlags = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.LocalFlags |= uint32(b&0x7F) << shift
|
2018-07-12 08:15:57 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2017-12-14 09:51:17 +00:00
|
|
|
default:
|
|
|
|
iNdEx = preIndex
|
|
|
|
skippy, err := skipStructs(dAtA[iNdEx:])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if skippy < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if (iNdEx + skippy) < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2017-12-14 09:51:17 +00:00
|
|
|
if (iNdEx + skippy) > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
iNdEx += skippy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if iNdEx > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
func (m *CountsSet) Unmarshal(dAtA []byte) error {
|
|
|
|
l := len(dAtA)
|
|
|
|
iNdEx := 0
|
|
|
|
for iNdEx < l {
|
|
|
|
preIndex := iNdEx
|
|
|
|
var wire uint64
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
wire |= uint64(b&0x7F) << shift
|
2017-12-14 09:51:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fieldNum := int32(wire >> 3)
|
|
|
|
wireType := int(wire & 0x7)
|
|
|
|
if wireType == 4 {
|
|
|
|
return fmt.Errorf("proto: CountsSet: wiretype end group for non-group")
|
|
|
|
}
|
|
|
|
if fieldNum <= 0 {
|
|
|
|
return fmt.Errorf("proto: CountsSet: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
}
|
|
|
|
switch fieldNum {
|
|
|
|
case 1:
|
|
|
|
if wireType != 2 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Counts", wireType)
|
|
|
|
}
|
|
|
|
var msglen int
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
msglen |= int(b&0x7F) << shift
|
2017-12-14 09:51:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if msglen < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
|
|
|
postIndex := iNdEx + msglen
|
2019-09-04 06:33:29 +00:00
|
|
|
if postIndex < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2017-12-14 09:51:17 +00:00
|
|
|
if postIndex > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
m.Counts = append(m.Counts, Counts{})
|
|
|
|
if err := m.Counts[len(m.Counts)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
iNdEx = postIndex
|
|
|
|
case 2:
|
|
|
|
if wireType != 0 {
|
|
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Created", wireType)
|
|
|
|
}
|
|
|
|
m.Created = 0
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
b := dAtA[iNdEx]
|
|
|
|
iNdEx++
|
2019-09-04 06:33:29 +00:00
|
|
|
m.Created |= int64(b&0x7F) << shift
|
2017-12-14 09:51:17 +00:00
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
iNdEx = preIndex
|
|
|
|
skippy, err := skipStructs(dAtA[iNdEx:])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if skippy < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
if (iNdEx + skippy) < 0 {
|
|
|
|
return ErrInvalidLengthStructs
|
|
|
|
}
|
2017-12-14 09:51:17 +00:00
|
|
|
if (iNdEx + skippy) > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
iNdEx += skippy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if iNdEx > l {
|
|
|
|
return io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
func skipStructs(dAtA []byte) (n int, err error) {
|
|
|
|
l := len(dAtA)
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx := 0
|
2019-10-18 07:51:04 +00:00
|
|
|
depth := 0
|
2016-07-04 10:40:29 +00:00
|
|
|
for iNdEx < l {
|
|
|
|
var wire uint64
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return 0, ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return 0, io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
|
|
|
wire |= (uint64(b) & 0x7F) << shift
|
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
wireType := int(wire & 0x7)
|
|
|
|
switch wireType {
|
|
|
|
case 0:
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return 0, ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return 0, io.ErrUnexpectedEOF
|
|
|
|
}
|
|
|
|
iNdEx++
|
2017-01-03 00:16:21 +00:00
|
|
|
if dAtA[iNdEx-1] < 0x80 {
|
2016-07-04 10:40:29 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 1:
|
|
|
|
iNdEx += 8
|
|
|
|
case 2:
|
|
|
|
var length int
|
|
|
|
for shift := uint(0); ; shift += 7 {
|
|
|
|
if shift >= 64 {
|
|
|
|
return 0, ErrIntOverflowStructs
|
|
|
|
}
|
|
|
|
if iNdEx >= l {
|
|
|
|
return 0, io.ErrUnexpectedEOF
|
|
|
|
}
|
2017-01-03 00:16:21 +00:00
|
|
|
b := dAtA[iNdEx]
|
2016-07-04 10:40:29 +00:00
|
|
|
iNdEx++
|
|
|
|
length |= (int(b) & 0x7F) << shift
|
|
|
|
if b < 0x80 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if length < 0 {
|
|
|
|
return 0, ErrInvalidLengthStructs
|
|
|
|
}
|
2019-09-04 06:33:29 +00:00
|
|
|
iNdEx += length
|
2016-07-04 10:40:29 +00:00
|
|
|
case 3:
|
2019-10-18 07:51:04 +00:00
|
|
|
depth++
|
2016-07-04 10:40:29 +00:00
|
|
|
case 4:
|
2019-10-18 07:51:04 +00:00
|
|
|
if depth == 0 {
|
|
|
|
return 0, ErrUnexpectedEndOfGroupStructs
|
|
|
|
}
|
|
|
|
depth--
|
2016-07-04 10:40:29 +00:00
|
|
|
case 5:
|
|
|
|
iNdEx += 4
|
|
|
|
default:
|
|
|
|
return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
|
|
|
|
}
|
2019-10-18 07:51:04 +00:00
|
|
|
if iNdEx < 0 {
|
|
|
|
return 0, ErrInvalidLengthStructs
|
|
|
|
}
|
|
|
|
if depth == 0 {
|
|
|
|
return iNdEx, nil
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
2019-10-18 07:51:04 +00:00
|
|
|
return 0, io.ErrUnexpectedEOF
|
2016-07-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2019-10-18 07:51:04 +00:00
|
|
|
ErrInvalidLengthStructs = fmt.Errorf("proto: negative length found during unmarshaling")
|
|
|
|
ErrIntOverflowStructs = fmt.Errorf("proto: integer overflow")
|
|
|
|
ErrUnexpectedEndOfGroupStructs = fmt.Errorf("proto: unexpected end of group")
|
2016-07-04 10:40:29 +00:00
|
|
|
)
|