290 lines
11 KiB
Go
290 lines
11 KiB
Go
// Code generated by protoc-gen-go.
|
|
// source: content_manifest.proto
|
|
// DO NOT EDIT!
|
|
|
|
package protobuf
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
type ContentManifestPayload struct {
|
|
Mappings []*ContentManifestPayload_FileMapping `protobuf:"bytes,1,rep,name=mappings" json:"mappings,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *ContentManifestPayload) Reset() { *m = ContentManifestPayload{} }
|
|
func (m *ContentManifestPayload) String() string { return proto.CompactTextString(m) }
|
|
func (*ContentManifestPayload) ProtoMessage() {}
|
|
func (*ContentManifestPayload) Descriptor() ([]byte, []int) { return content_manifest_fileDescriptor0, []int{0} }
|
|
|
|
func (m *ContentManifestPayload) GetMappings() []*ContentManifestPayload_FileMapping {
|
|
if m != nil {
|
|
return m.Mappings
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ContentManifestPayload_FileMapping struct {
|
|
Filename *string `protobuf:"bytes,1,opt,name=filename" json:"filename,omitempty"`
|
|
Size *uint64 `protobuf:"varint,2,opt,name=size" json:"size,omitempty"`
|
|
Flags *uint32 `protobuf:"varint,3,opt,name=flags" json:"flags,omitempty"`
|
|
ShaFilename []byte `protobuf:"bytes,4,opt,name=sha_filename" json:"sha_filename,omitempty"`
|
|
ShaContent []byte `protobuf:"bytes,5,opt,name=sha_content" json:"sha_content,omitempty"`
|
|
Chunks []*ContentManifestPayload_FileMapping_ChunkData `protobuf:"bytes,6,rep,name=chunks" json:"chunks,omitempty"`
|
|
Linktarget *string `protobuf:"bytes,7,opt,name=linktarget" json:"linktarget,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping) Reset() { *m = ContentManifestPayload_FileMapping{} }
|
|
func (m *ContentManifestPayload_FileMapping) String() string { return proto.CompactTextString(m) }
|
|
func (*ContentManifestPayload_FileMapping) ProtoMessage() {}
|
|
func (*ContentManifestPayload_FileMapping) Descriptor() ([]byte, []int) {
|
|
return content_manifest_fileDescriptor0, []int{0, 0}
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping) GetFilename() string {
|
|
if m != nil && m.Filename != nil {
|
|
return *m.Filename
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping) GetSize() uint64 {
|
|
if m != nil && m.Size != nil {
|
|
return *m.Size
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping) GetFlags() uint32 {
|
|
if m != nil && m.Flags != nil {
|
|
return *m.Flags
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping) GetShaFilename() []byte {
|
|
if m != nil {
|
|
return m.ShaFilename
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping) GetShaContent() []byte {
|
|
if m != nil {
|
|
return m.ShaContent
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping) GetChunks() []*ContentManifestPayload_FileMapping_ChunkData {
|
|
if m != nil {
|
|
return m.Chunks
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping) GetLinktarget() string {
|
|
if m != nil && m.Linktarget != nil {
|
|
return *m.Linktarget
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ContentManifestPayload_FileMapping_ChunkData struct {
|
|
Sha []byte `protobuf:"bytes,1,opt,name=sha" json:"sha,omitempty"`
|
|
Crc *uint32 `protobuf:"fixed32,2,opt,name=crc" json:"crc,omitempty"`
|
|
Offset *uint64 `protobuf:"varint,3,opt,name=offset" json:"offset,omitempty"`
|
|
CbOriginal *uint32 `protobuf:"varint,4,opt,name=cb_original" json:"cb_original,omitempty"`
|
|
CbCompressed *uint32 `protobuf:"varint,5,opt,name=cb_compressed" json:"cb_compressed,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping_ChunkData) Reset() {
|
|
*m = ContentManifestPayload_FileMapping_ChunkData{}
|
|
}
|
|
func (m *ContentManifestPayload_FileMapping_ChunkData) String() string {
|
|
return proto.CompactTextString(m)
|
|
}
|
|
func (*ContentManifestPayload_FileMapping_ChunkData) ProtoMessage() {}
|
|
func (*ContentManifestPayload_FileMapping_ChunkData) Descriptor() ([]byte, []int) {
|
|
return content_manifest_fileDescriptor0, []int{0, 0, 0}
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping_ChunkData) GetSha() []byte {
|
|
if m != nil {
|
|
return m.Sha
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping_ChunkData) GetCrc() uint32 {
|
|
if m != nil && m.Crc != nil {
|
|
return *m.Crc
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping_ChunkData) GetOffset() uint64 {
|
|
if m != nil && m.Offset != nil {
|
|
return *m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping_ChunkData) GetCbOriginal() uint32 {
|
|
if m != nil && m.CbOriginal != nil {
|
|
return *m.CbOriginal
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestPayload_FileMapping_ChunkData) GetCbCompressed() uint32 {
|
|
if m != nil && m.CbCompressed != nil {
|
|
return *m.CbCompressed
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ContentManifestMetadata struct {
|
|
DepotId *uint32 `protobuf:"varint,1,opt,name=depot_id" json:"depot_id,omitempty"`
|
|
GidManifest *uint64 `protobuf:"varint,2,opt,name=gid_manifest" json:"gid_manifest,omitempty"`
|
|
CreationTime *uint32 `protobuf:"varint,3,opt,name=creation_time" json:"creation_time,omitempty"`
|
|
FilenamesEncrypted *bool `protobuf:"varint,4,opt,name=filenames_encrypted" json:"filenames_encrypted,omitempty"`
|
|
CbDiskOriginal *uint64 `protobuf:"varint,5,opt,name=cb_disk_original" json:"cb_disk_original,omitempty"`
|
|
CbDiskCompressed *uint64 `protobuf:"varint,6,opt,name=cb_disk_compressed" json:"cb_disk_compressed,omitempty"`
|
|
UniqueChunks *uint32 `protobuf:"varint,7,opt,name=unique_chunks" json:"unique_chunks,omitempty"`
|
|
CrcEncrypted *uint32 `protobuf:"varint,8,opt,name=crc_encrypted" json:"crc_encrypted,omitempty"`
|
|
CrcClear *uint32 `protobuf:"varint,9,opt,name=crc_clear" json:"crc_clear,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *ContentManifestMetadata) Reset() { *m = ContentManifestMetadata{} }
|
|
func (m *ContentManifestMetadata) String() string { return proto.CompactTextString(m) }
|
|
func (*ContentManifestMetadata) ProtoMessage() {}
|
|
func (*ContentManifestMetadata) Descriptor() ([]byte, []int) { return content_manifest_fileDescriptor0, []int{1} }
|
|
|
|
func (m *ContentManifestMetadata) GetDepotId() uint32 {
|
|
if m != nil && m.DepotId != nil {
|
|
return *m.DepotId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestMetadata) GetGidManifest() uint64 {
|
|
if m != nil && m.GidManifest != nil {
|
|
return *m.GidManifest
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestMetadata) GetCreationTime() uint32 {
|
|
if m != nil && m.CreationTime != nil {
|
|
return *m.CreationTime
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestMetadata) GetFilenamesEncrypted() bool {
|
|
if m != nil && m.FilenamesEncrypted != nil {
|
|
return *m.FilenamesEncrypted
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *ContentManifestMetadata) GetCbDiskOriginal() uint64 {
|
|
if m != nil && m.CbDiskOriginal != nil {
|
|
return *m.CbDiskOriginal
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestMetadata) GetCbDiskCompressed() uint64 {
|
|
if m != nil && m.CbDiskCompressed != nil {
|
|
return *m.CbDiskCompressed
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestMetadata) GetUniqueChunks() uint32 {
|
|
if m != nil && m.UniqueChunks != nil {
|
|
return *m.UniqueChunks
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestMetadata) GetCrcEncrypted() uint32 {
|
|
if m != nil && m.CrcEncrypted != nil {
|
|
return *m.CrcEncrypted
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ContentManifestMetadata) GetCrcClear() uint32 {
|
|
if m != nil && m.CrcClear != nil {
|
|
return *m.CrcClear
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ContentManifestSignature struct {
|
|
Signature []byte `protobuf:"bytes,1,opt,name=signature" json:"signature,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *ContentManifestSignature) Reset() { *m = ContentManifestSignature{} }
|
|
func (m *ContentManifestSignature) String() string { return proto.CompactTextString(m) }
|
|
func (*ContentManifestSignature) ProtoMessage() {}
|
|
func (*ContentManifestSignature) Descriptor() ([]byte, []int) { return content_manifest_fileDescriptor0, []int{2} }
|
|
|
|
func (m *ContentManifestSignature) GetSignature() []byte {
|
|
if m != nil {
|
|
return m.Signature
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*ContentManifestPayload)(nil), "ContentManifestPayload")
|
|
proto.RegisterType((*ContentManifestPayload_FileMapping)(nil), "ContentManifestPayload.FileMapping")
|
|
proto.RegisterType((*ContentManifestPayload_FileMapping_ChunkData)(nil), "ContentManifestPayload.FileMapping.ChunkData")
|
|
proto.RegisterType((*ContentManifestMetadata)(nil), "ContentManifestMetadata")
|
|
proto.RegisterType((*ContentManifestSignature)(nil), "ContentManifestSignature")
|
|
}
|
|
|
|
var content_manifest_fileDescriptor0 = []byte{
|
|
// 409 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x8c, 0x91, 0xbd, 0x8e, 0xd4, 0x30,
|
|
0x14, 0x85, 0xc9, 0xfc, 0x26, 0x37, 0x09, 0x5a, 0xbc, 0xb0, 0x58, 0x43, 0x83, 0x96, 0x66, 0x9b,
|
|
0x4d, 0x81, 0x44, 0x49, 0xc3, 0x22, 0x44, 0x33, 0x12, 0x12, 0x0f, 0x10, 0x5d, 0x1c, 0x27, 0x6b,
|
|
0x4d, 0x62, 0x07, 0xdb, 0x29, 0x96, 0x8a, 0x17, 0xe1, 0x0d, 0x91, 0x78, 0x05, 0x6c, 0x27, 0x99,
|
|
0x1d, 0x8d, 0x28, 0x28, 0xcf, 0xf1, 0xb5, 0xcf, 0x77, 0x8f, 0xe1, 0x8a, 0x29, 0x69, 0xb9, 0xb4,
|
|
0x65, 0x87, 0x52, 0xd4, 0xdc, 0xd8, 0xa2, 0xd7, 0xca, 0xaa, 0xeb, 0x3f, 0x0b, 0xb8, 0xba, 0x1b,
|
|
0x8f, 0xf6, 0xd3, 0xc9, 0x17, 0x7c, 0x68, 0x15, 0x56, 0xe4, 0x1d, 0xc4, 0x1d, 0xf6, 0xbd, 0x90,
|
|
0x8d, 0xa1, 0xd1, 0xeb, 0xe5, 0x4d, 0xfa, 0xf6, 0x4d, 0xf1, 0xef, 0xd1, 0xe2, 0x93, 0x68, 0xf9,
|
|
0x7e, 0x9c, 0xdd, 0xfd, 0x5a, 0x40, 0x7a, 0xa2, 0xc9, 0x05, 0xc4, 0xb5, 0x93, 0x12, 0x3b, 0xee,
|
|
0x9e, 0x89, 0x6e, 0x12, 0x92, 0xc1, 0xca, 0x88, 0x1f, 0x9c, 0x2e, 0x9c, 0x5a, 0x91, 0x1c, 0xd6,
|
|
0x75, 0x8b, 0x2e, 0x63, 0xe9, 0x64, 0x4e, 0x9e, 0x43, 0x66, 0xee, 0xb1, 0x3c, 0x5e, 0x59, 0x39,
|
|
0x37, 0x23, 0x97, 0x90, 0x7a, 0x77, 0x5a, 0x82, 0xae, 0x83, 0xf9, 0x1e, 0x36, 0xec, 0x7e, 0x90,
|
|
0x07, 0x43, 0x37, 0x01, 0xef, 0xf6, 0x3f, 0xf0, 0x8a, 0x3b, 0x7f, 0xe3, 0x23, 0x5a, 0x24, 0x04,
|
|
0xa0, 0x15, 0xf2, 0x60, 0x51, 0x37, 0xdc, 0xd2, 0xad, 0x47, 0xdb, 0x21, 0x24, 0x8f, 0x03, 0x29,
|
|
0x2c, 0x5d, 0x68, 0x80, 0xce, 0xbc, 0x60, 0x9a, 0x05, 0xe6, 0x2d, 0x79, 0x0a, 0x1b, 0x55, 0xd7,
|
|
0xc6, 0x5d, 0x5b, 0x86, 0x1d, 0x1c, 0x1e, 0xfb, 0x56, 0x2a, 0x2d, 0x1a, 0x21, 0xb1, 0x0d, 0xcc,
|
|
0x39, 0x79, 0x01, 0xb9, 0x33, 0x99, 0xea, 0x7a, 0xcd, 0x8d, 0xe1, 0x55, 0xa0, 0xce, 0xaf, 0x7f,
|
|
0x47, 0xf0, 0xf2, 0x8c, 0x73, 0xcf, 0x2d, 0x56, 0x3e, 0xd1, 0x75, 0x55, 0xf1, 0x5e, 0xd9, 0x52,
|
|
0x54, 0x21, 0x36, 0xd4, 0xd1, 0x88, 0xea, 0xf8, 0x6b, 0x53, 0x67, 0xfe, 0x69, 0xcd, 0xd1, 0x0a,
|
|
0x25, 0x4b, 0x2b, 0x5c, 0x4b, 0x63, 0x77, 0xaf, 0xe0, 0x72, 0xee, 0xcd, 0x94, 0x5c, 0x32, 0xfd,
|
|
0xd0, 0x5b, 0x97, 0xeb, 0x71, 0x62, 0x42, 0xe1, 0xc2, 0xe1, 0x54, 0xc2, 0x1c, 0x1e, 0x41, 0xd7,
|
|
0xe1, 0xb5, 0x1d, 0x90, 0xf9, 0xe4, 0x84, 0x76, 0x33, 0x27, 0x0d, 0x52, 0x7c, 0x1f, 0x78, 0x39,
|
|
0x55, 0xbd, 0x3d, 0xee, 0xa6, 0xd9, 0x49, 0x46, 0x1c, 0xec, 0x67, 0x90, 0x78, 0x9b, 0xb5, 0x1c,
|
|
0x35, 0x4d, 0xc2, 0xba, 0xb7, 0x40, 0xcf, 0xb6, 0xfd, 0x2a, 0x1a, 0x89, 0x76, 0xd0, 0xdc, 0x8f,
|
|
0x9b, 0x59, 0x8c, 0x35, 0x7f, 0x58, 0x7f, 0x8e, 0x7e, 0x46, 0x4f, 0xfe, 0x06, 0x00, 0x00, 0xff,
|
|
0xff, 0xc6, 0x87, 0xdb, 0xe6, 0xaf, 0x02, 0x00, 0x00,
|
|
}
|