mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-10-31 16:13:45 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			5971 lines
		
	
	
		
			148 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			5971 lines
		
	
	
		
			148 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by protoc-gen-gogo. DO NOT EDIT.
 | |
| // source: control.proto
 | |
| 
 | |
| package moby_buildkit_v1
 | |
| 
 | |
| import proto "github.com/gogo/protobuf/proto"
 | |
| import fmt "fmt"
 | |
| import math "math"
 | |
| import _ "github.com/gogo/protobuf/gogoproto"
 | |
| import _ "github.com/golang/protobuf/ptypes/timestamp"
 | |
| import types "github.com/moby/buildkit/api/types"
 | |
| import pb "github.com/moby/buildkit/solver/pb"
 | |
| 
 | |
| import time "time"
 | |
| import github_com_moby_buildkit_util_entitlements "github.com/moby/buildkit/util/entitlements"
 | |
| import github_com_opencontainers_go_digest "github.com/opencontainers/go-digest"
 | |
| 
 | |
| import (
 | |
| 	context "golang.org/x/net/context"
 | |
| 	grpc "google.golang.org/grpc"
 | |
| )
 | |
| 
 | |
| import github_com_gogo_protobuf_types "github.com/gogo/protobuf/types"
 | |
| 
 | |
| import io "io"
 | |
| 
 | |
| // Reference imports to suppress errors if they are not otherwise used.
 | |
| var _ = proto.Marshal
 | |
| var _ = fmt.Errorf
 | |
| var _ = math.Inf
 | |
| var _ = time.Kitchen
 | |
| 
 | |
| // This is a compile-time assertion to ensure that this generated file
 | |
| // is compatible with the proto package it is being compiled against.
 | |
| // A compilation error at this line likely means your copy of the
 | |
| // proto package needs to be updated.
 | |
| const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package
 | |
| 
 | |
| type PruneRequest struct {
 | |
| 	Filter               []string `protobuf:"bytes,1,rep,name=filter,proto3" json:"filter,omitempty"`
 | |
| 	All                  bool     `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
 | |
| 	KeepDuration         int64    `protobuf:"varint,3,opt,name=keepDuration,proto3" json:"keepDuration,omitempty"`
 | |
| 	KeepBytes            int64    `protobuf:"varint,4,opt,name=keepBytes,proto3" json:"keepBytes,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *PruneRequest) Reset()         { *m = PruneRequest{} }
 | |
| func (m *PruneRequest) String() string { return proto.CompactTextString(m) }
 | |
| func (*PruneRequest) ProtoMessage()    {}
 | |
| func (*PruneRequest) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{0}
 | |
| }
 | |
| func (m *PruneRequest) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *PruneRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_PruneRequest.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *PruneRequest) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_PruneRequest.Merge(dst, src)
 | |
| }
 | |
| func (m *PruneRequest) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *PruneRequest) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_PruneRequest.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_PruneRequest proto.InternalMessageInfo
 | |
| 
 | |
| func (m *PruneRequest) GetFilter() []string {
 | |
| 	if m != nil {
 | |
| 		return m.Filter
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *PruneRequest) GetAll() bool {
 | |
| 	if m != nil {
 | |
| 		return m.All
 | |
| 	}
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| func (m *PruneRequest) GetKeepDuration() int64 {
 | |
| 	if m != nil {
 | |
| 		return m.KeepDuration
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (m *PruneRequest) GetKeepBytes() int64 {
 | |
| 	if m != nil {
 | |
| 		return m.KeepBytes
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| type DiskUsageRequest struct {
 | |
| 	Filter               []string `protobuf:"bytes,1,rep,name=filter,proto3" json:"filter,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *DiskUsageRequest) Reset()         { *m = DiskUsageRequest{} }
 | |
| func (m *DiskUsageRequest) String() string { return proto.CompactTextString(m) }
 | |
| func (*DiskUsageRequest) ProtoMessage()    {}
 | |
| func (*DiskUsageRequest) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{1}
 | |
| }
 | |
| func (m *DiskUsageRequest) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *DiskUsageRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_DiskUsageRequest.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *DiskUsageRequest) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_DiskUsageRequest.Merge(dst, src)
 | |
| }
 | |
| func (m *DiskUsageRequest) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *DiskUsageRequest) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_DiskUsageRequest.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_DiskUsageRequest proto.InternalMessageInfo
 | |
| 
 | |
| func (m *DiskUsageRequest) GetFilter() []string {
 | |
| 	if m != nil {
 | |
| 		return m.Filter
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type DiskUsageResponse struct {
 | |
| 	Record               []*UsageRecord `protobuf:"bytes,1,rep,name=record,proto3" json:"record,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
 | |
| 	XXX_unrecognized     []byte         `json:"-"`
 | |
| 	XXX_sizecache        int32          `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *DiskUsageResponse) Reset()         { *m = DiskUsageResponse{} }
 | |
| func (m *DiskUsageResponse) String() string { return proto.CompactTextString(m) }
 | |
| func (*DiskUsageResponse) ProtoMessage()    {}
 | |
| func (*DiskUsageResponse) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{2}
 | |
| }
 | |
| func (m *DiskUsageResponse) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *DiskUsageResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_DiskUsageResponse.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *DiskUsageResponse) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_DiskUsageResponse.Merge(dst, src)
 | |
| }
 | |
| func (m *DiskUsageResponse) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *DiskUsageResponse) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_DiskUsageResponse.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_DiskUsageResponse proto.InternalMessageInfo
 | |
| 
 | |
| func (m *DiskUsageResponse) GetRecord() []*UsageRecord {
 | |
| 	if m != nil {
 | |
| 		return m.Record
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type UsageRecord struct {
 | |
| 	ID                   string     `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`
 | |
| 	Mutable              bool       `protobuf:"varint,2,opt,name=Mutable,proto3" json:"Mutable,omitempty"`
 | |
| 	InUse                bool       `protobuf:"varint,3,opt,name=InUse,proto3" json:"InUse,omitempty"`
 | |
| 	Size_                int64      `protobuf:"varint,4,opt,name=Size,proto3" json:"Size,omitempty"`
 | |
| 	Parent               string     `protobuf:"bytes,5,opt,name=Parent,proto3" json:"Parent,omitempty"`
 | |
| 	CreatedAt            time.Time  `protobuf:"bytes,6,opt,name=CreatedAt,proto3,stdtime" json:"CreatedAt"`
 | |
| 	LastUsedAt           *time.Time `protobuf:"bytes,7,opt,name=LastUsedAt,proto3,stdtime" json:"LastUsedAt,omitempty"`
 | |
| 	UsageCount           int64      `protobuf:"varint,8,opt,name=UsageCount,proto3" json:"UsageCount,omitempty"`
 | |
| 	Description          string     `protobuf:"bytes,9,opt,name=Description,proto3" json:"Description,omitempty"`
 | |
| 	RecordType           string     `protobuf:"bytes,10,opt,name=RecordType,proto3" json:"RecordType,omitempty"`
 | |
| 	Shared               bool       `protobuf:"varint,11,opt,name=Shared,proto3" json:"Shared,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
 | |
| 	XXX_unrecognized     []byte     `json:"-"`
 | |
| 	XXX_sizecache        int32      `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) Reset()         { *m = UsageRecord{} }
 | |
| func (m *UsageRecord) String() string { return proto.CompactTextString(m) }
 | |
| func (*UsageRecord) ProtoMessage()    {}
 | |
| func (*UsageRecord) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{3}
 | |
| }
 | |
| func (m *UsageRecord) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *UsageRecord) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_UsageRecord.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *UsageRecord) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_UsageRecord.Merge(dst, src)
 | |
| }
 | |
| func (m *UsageRecord) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *UsageRecord) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_UsageRecord.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_UsageRecord proto.InternalMessageInfo
 | |
| 
 | |
| func (m *UsageRecord) GetID() string {
 | |
| 	if m != nil {
 | |
| 		return m.ID
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) GetMutable() bool {
 | |
| 	if m != nil {
 | |
| 		return m.Mutable
 | |
| 	}
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) GetInUse() bool {
 | |
| 	if m != nil {
 | |
| 		return m.InUse
 | |
| 	}
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) GetSize_() int64 {
 | |
| 	if m != nil {
 | |
| 		return m.Size_
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) GetParent() string {
 | |
| 	if m != nil {
 | |
| 		return m.Parent
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) GetCreatedAt() time.Time {
 | |
| 	if m != nil {
 | |
| 		return m.CreatedAt
 | |
| 	}
 | |
| 	return time.Time{}
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) GetLastUsedAt() *time.Time {
 | |
| 	if m != nil {
 | |
| 		return m.LastUsedAt
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) GetUsageCount() int64 {
 | |
| 	if m != nil {
 | |
| 		return m.UsageCount
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) GetDescription() string {
 | |
| 	if m != nil {
 | |
| 		return m.Description
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) GetRecordType() string {
 | |
| 	if m != nil {
 | |
| 		return m.RecordType
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) GetShared() bool {
 | |
| 	if m != nil {
 | |
| 		return m.Shared
 | |
| 	}
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| type SolveRequest struct {
 | |
| 	Ref                  string                                                   `protobuf:"bytes,1,opt,name=Ref,proto3" json:"Ref,omitempty"`
 | |
| 	Definition           *pb.Definition                                           `protobuf:"bytes,2,opt,name=Definition,proto3" json:"Definition,omitempty"`
 | |
| 	Exporter             string                                                   `protobuf:"bytes,3,opt,name=Exporter,proto3" json:"Exporter,omitempty"`
 | |
| 	ExporterAttrs        map[string]string                                        `protobuf:"bytes,4,rep,name=ExporterAttrs,proto3" json:"ExporterAttrs,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 | |
| 	Session              string                                                   `protobuf:"bytes,5,opt,name=Session,proto3" json:"Session,omitempty"`
 | |
| 	Frontend             string                                                   `protobuf:"bytes,6,opt,name=Frontend,proto3" json:"Frontend,omitempty"`
 | |
| 	FrontendAttrs        map[string]string                                        `protobuf:"bytes,7,rep,name=FrontendAttrs,proto3" json:"FrontendAttrs,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 | |
| 	Cache                CacheOptions                                             `protobuf:"bytes,8,opt,name=Cache,proto3" json:"Cache"`
 | |
| 	Entitlements         []github_com_moby_buildkit_util_entitlements.Entitlement `protobuf:"bytes,9,rep,name=Entitlements,proto3,customtype=github.com/moby/buildkit/util/entitlements.Entitlement" json:"Entitlements,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}                                                 `json:"-"`
 | |
| 	XXX_unrecognized     []byte                                                   `json:"-"`
 | |
| 	XXX_sizecache        int32                                                    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *SolveRequest) Reset()         { *m = SolveRequest{} }
 | |
| func (m *SolveRequest) String() string { return proto.CompactTextString(m) }
 | |
| func (*SolveRequest) ProtoMessage()    {}
 | |
| func (*SolveRequest) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{4}
 | |
| }
 | |
| func (m *SolveRequest) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *SolveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_SolveRequest.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *SolveRequest) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_SolveRequest.Merge(dst, src)
 | |
| }
 | |
| func (m *SolveRequest) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *SolveRequest) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_SolveRequest.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_SolveRequest proto.InternalMessageInfo
 | |
| 
 | |
| func (m *SolveRequest) GetRef() string {
 | |
| 	if m != nil {
 | |
| 		return m.Ref
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *SolveRequest) GetDefinition() *pb.Definition {
 | |
| 	if m != nil {
 | |
| 		return m.Definition
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *SolveRequest) GetExporter() string {
 | |
| 	if m != nil {
 | |
| 		return m.Exporter
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *SolveRequest) GetExporterAttrs() map[string]string {
 | |
| 	if m != nil {
 | |
| 		return m.ExporterAttrs
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *SolveRequest) GetSession() string {
 | |
| 	if m != nil {
 | |
| 		return m.Session
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *SolveRequest) GetFrontend() string {
 | |
| 	if m != nil {
 | |
| 		return m.Frontend
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *SolveRequest) GetFrontendAttrs() map[string]string {
 | |
| 	if m != nil {
 | |
| 		return m.FrontendAttrs
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *SolveRequest) GetCache() CacheOptions {
 | |
| 	if m != nil {
 | |
| 		return m.Cache
 | |
| 	}
 | |
| 	return CacheOptions{}
 | |
| }
 | |
| 
 | |
| type CacheOptions struct {
 | |
| 	// ExportRefDeprecated is deprecated in favor or the new Exports since BuildKit v0.4.0.
 | |
| 	// When ExportRefDeprecated is set, the solver appends
 | |
| 	// {.Type = "registry", .Attrs = ExportAttrs.add("ref", ExportRef)}
 | |
| 	// to Exports for compatibility. (planned to be removed)
 | |
| 	ExportRefDeprecated string `protobuf:"bytes,1,opt,name=ExportRefDeprecated,proto3" json:"ExportRefDeprecated,omitempty"`
 | |
| 	// ImportRefsDeprecated is deprecated in favor or the new Imports since BuildKit v0.4.0.
 | |
| 	// When ImportRefsDeprecated is set, the solver appends
 | |
| 	// {.Type = "registry", .Attrs = {"ref": importRef}}
 | |
| 	// for each of the ImportRefs entry to Imports for compatibility. (planned to be removed)
 | |
| 	ImportRefsDeprecated []string `protobuf:"bytes,2,rep,name=ImportRefsDeprecated,proto3" json:"ImportRefsDeprecated,omitempty"`
 | |
| 	// ExportAttrsDeprecated is deprecated since BuildKit v0.4.0.
 | |
| 	// See the description of ExportRefDeprecated.
 | |
| 	ExportAttrsDeprecated map[string]string `protobuf:"bytes,3,rep,name=ExportAttrsDeprecated,proto3" json:"ExportAttrsDeprecated,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 | |
| 	// Exports was introduced in BuildKit v0.4.0.
 | |
| 	Exports []*CacheOptionsEntry `protobuf:"bytes,4,rep,name=Exports,proto3" json:"Exports,omitempty"`
 | |
| 	// Imports was introduced in BuildKit v0.4.0.
 | |
| 	Imports              []*CacheOptionsEntry `protobuf:"bytes,5,rep,name=Imports,proto3" json:"Imports,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
 | |
| 	XXX_unrecognized     []byte               `json:"-"`
 | |
| 	XXX_sizecache        int32                `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *CacheOptions) Reset()         { *m = CacheOptions{} }
 | |
| func (m *CacheOptions) String() string { return proto.CompactTextString(m) }
 | |
| func (*CacheOptions) ProtoMessage()    {}
 | |
| func (*CacheOptions) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{5}
 | |
| }
 | |
| func (m *CacheOptions) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *CacheOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_CacheOptions.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *CacheOptions) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_CacheOptions.Merge(dst, src)
 | |
| }
 | |
| func (m *CacheOptions) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *CacheOptions) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_CacheOptions.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_CacheOptions proto.InternalMessageInfo
 | |
| 
 | |
| func (m *CacheOptions) GetExportRefDeprecated() string {
 | |
| 	if m != nil {
 | |
| 		return m.ExportRefDeprecated
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *CacheOptions) GetImportRefsDeprecated() []string {
 | |
| 	if m != nil {
 | |
| 		return m.ImportRefsDeprecated
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *CacheOptions) GetExportAttrsDeprecated() map[string]string {
 | |
| 	if m != nil {
 | |
| 		return m.ExportAttrsDeprecated
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *CacheOptions) GetExports() []*CacheOptionsEntry {
 | |
| 	if m != nil {
 | |
| 		return m.Exports
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *CacheOptions) GetImports() []*CacheOptionsEntry {
 | |
| 	if m != nil {
 | |
| 		return m.Imports
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type CacheOptionsEntry struct {
 | |
| 	// Type is like "registry" or "local"
 | |
| 	Type string `protobuf:"bytes,1,opt,name=Type,proto3" json:"Type,omitempty"`
 | |
| 	// Attrs are like mode=(min,max), ref=example.com:5000/foo/bar .
 | |
| 	// See cache importer/exporter implementations' documentation.
 | |
| 	Attrs                map[string]string `protobuf:"bytes,2,rep,name=Attrs,proto3" json:"Attrs,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
 | |
| 	XXX_unrecognized     []byte            `json:"-"`
 | |
| 	XXX_sizecache        int32             `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *CacheOptionsEntry) Reset()         { *m = CacheOptionsEntry{} }
 | |
| func (m *CacheOptionsEntry) String() string { return proto.CompactTextString(m) }
 | |
| func (*CacheOptionsEntry) ProtoMessage()    {}
 | |
| func (*CacheOptionsEntry) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{6}
 | |
| }
 | |
| func (m *CacheOptionsEntry) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *CacheOptionsEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_CacheOptionsEntry.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *CacheOptionsEntry) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_CacheOptionsEntry.Merge(dst, src)
 | |
| }
 | |
| func (m *CacheOptionsEntry) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *CacheOptionsEntry) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_CacheOptionsEntry.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_CacheOptionsEntry proto.InternalMessageInfo
 | |
| 
 | |
| func (m *CacheOptionsEntry) GetType() string {
 | |
| 	if m != nil {
 | |
| 		return m.Type
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *CacheOptionsEntry) GetAttrs() map[string]string {
 | |
| 	if m != nil {
 | |
| 		return m.Attrs
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type SolveResponse struct {
 | |
| 	ExporterResponse     map[string]string `protobuf:"bytes,1,rep,name=ExporterResponse,proto3" json:"ExporterResponse,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
 | |
| 	XXX_unrecognized     []byte            `json:"-"`
 | |
| 	XXX_sizecache        int32             `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *SolveResponse) Reset()         { *m = SolveResponse{} }
 | |
| func (m *SolveResponse) String() string { return proto.CompactTextString(m) }
 | |
| func (*SolveResponse) ProtoMessage()    {}
 | |
| func (*SolveResponse) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{7}
 | |
| }
 | |
| func (m *SolveResponse) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *SolveResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_SolveResponse.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *SolveResponse) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_SolveResponse.Merge(dst, src)
 | |
| }
 | |
| func (m *SolveResponse) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *SolveResponse) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_SolveResponse.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_SolveResponse proto.InternalMessageInfo
 | |
| 
 | |
| func (m *SolveResponse) GetExporterResponse() map[string]string {
 | |
| 	if m != nil {
 | |
| 		return m.ExporterResponse
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type StatusRequest struct {
 | |
| 	Ref                  string   `protobuf:"bytes,1,opt,name=Ref,proto3" json:"Ref,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *StatusRequest) Reset()         { *m = StatusRequest{} }
 | |
| func (m *StatusRequest) String() string { return proto.CompactTextString(m) }
 | |
| func (*StatusRequest) ProtoMessage()    {}
 | |
| func (*StatusRequest) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{8}
 | |
| }
 | |
| func (m *StatusRequest) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *StatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_StatusRequest.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *StatusRequest) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_StatusRequest.Merge(dst, src)
 | |
| }
 | |
| func (m *StatusRequest) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *StatusRequest) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_StatusRequest.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_StatusRequest proto.InternalMessageInfo
 | |
| 
 | |
| func (m *StatusRequest) GetRef() string {
 | |
| 	if m != nil {
 | |
| 		return m.Ref
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type StatusResponse struct {
 | |
| 	Vertexes             []*Vertex       `protobuf:"bytes,1,rep,name=vertexes,proto3" json:"vertexes,omitempty"`
 | |
| 	Statuses             []*VertexStatus `protobuf:"bytes,2,rep,name=statuses,proto3" json:"statuses,omitempty"`
 | |
| 	Logs                 []*VertexLog    `protobuf:"bytes,3,rep,name=logs,proto3" json:"logs,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
 | |
| 	XXX_unrecognized     []byte          `json:"-"`
 | |
| 	XXX_sizecache        int32           `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *StatusResponse) Reset()         { *m = StatusResponse{} }
 | |
| func (m *StatusResponse) String() string { return proto.CompactTextString(m) }
 | |
| func (*StatusResponse) ProtoMessage()    {}
 | |
| func (*StatusResponse) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{9}
 | |
| }
 | |
| func (m *StatusResponse) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *StatusResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_StatusResponse.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *StatusResponse) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_StatusResponse.Merge(dst, src)
 | |
| }
 | |
| func (m *StatusResponse) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *StatusResponse) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_StatusResponse.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_StatusResponse proto.InternalMessageInfo
 | |
| 
 | |
| func (m *StatusResponse) GetVertexes() []*Vertex {
 | |
| 	if m != nil {
 | |
| 		return m.Vertexes
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *StatusResponse) GetStatuses() []*VertexStatus {
 | |
| 	if m != nil {
 | |
| 		return m.Statuses
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *StatusResponse) GetLogs() []*VertexLog {
 | |
| 	if m != nil {
 | |
| 		return m.Logs
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type Vertex struct {
 | |
| 	Digest               github_com_opencontainers_go_digest.Digest   `protobuf:"bytes,1,opt,name=digest,proto3,customtype=github.com/opencontainers/go-digest.Digest" json:"digest"`
 | |
| 	Inputs               []github_com_opencontainers_go_digest.Digest `protobuf:"bytes,2,rep,name=inputs,proto3,customtype=github.com/opencontainers/go-digest.Digest" json:"inputs"`
 | |
| 	Name                 string                                       `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
 | |
| 	Cached               bool                                         `protobuf:"varint,4,opt,name=cached,proto3" json:"cached,omitempty"`
 | |
| 	Started              *time.Time                                   `protobuf:"bytes,5,opt,name=started,proto3,stdtime" json:"started,omitempty"`
 | |
| 	Completed            *time.Time                                   `protobuf:"bytes,6,opt,name=completed,proto3,stdtime" json:"completed,omitempty"`
 | |
| 	Error                string                                       `protobuf:"bytes,7,opt,name=error,proto3" json:"error,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}                                     `json:"-"`
 | |
| 	XXX_unrecognized     []byte                                       `json:"-"`
 | |
| 	XXX_sizecache        int32                                        `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *Vertex) Reset()         { *m = Vertex{} }
 | |
| func (m *Vertex) String() string { return proto.CompactTextString(m) }
 | |
| func (*Vertex) ProtoMessage()    {}
 | |
| func (*Vertex) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{10}
 | |
| }
 | |
| func (m *Vertex) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *Vertex) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_Vertex.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *Vertex) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_Vertex.Merge(dst, src)
 | |
| }
 | |
| func (m *Vertex) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *Vertex) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_Vertex.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_Vertex proto.InternalMessageInfo
 | |
| 
 | |
| func (m *Vertex) GetName() string {
 | |
| 	if m != nil {
 | |
| 		return m.Name
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *Vertex) GetCached() bool {
 | |
| 	if m != nil {
 | |
| 		return m.Cached
 | |
| 	}
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| func (m *Vertex) GetStarted() *time.Time {
 | |
| 	if m != nil {
 | |
| 		return m.Started
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *Vertex) GetCompleted() *time.Time {
 | |
| 	if m != nil {
 | |
| 		return m.Completed
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *Vertex) GetError() string {
 | |
| 	if m != nil {
 | |
| 		return m.Error
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type VertexStatus struct {
 | |
| 	ID      string                                     `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`
 | |
| 	Vertex  github_com_opencontainers_go_digest.Digest `protobuf:"bytes,2,opt,name=vertex,proto3,customtype=github.com/opencontainers/go-digest.Digest" json:"vertex"`
 | |
| 	Name    string                                     `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
 | |
| 	Current int64                                      `protobuf:"varint,4,opt,name=current,proto3" json:"current,omitempty"`
 | |
| 	Total   int64                                      `protobuf:"varint,5,opt,name=total,proto3" json:"total,omitempty"`
 | |
| 	// TODO: add started, completed
 | |
| 	Timestamp            time.Time  `protobuf:"bytes,6,opt,name=timestamp,proto3,stdtime" json:"timestamp"`
 | |
| 	Started              *time.Time `protobuf:"bytes,7,opt,name=started,proto3,stdtime" json:"started,omitempty"`
 | |
| 	Completed            *time.Time `protobuf:"bytes,8,opt,name=completed,proto3,stdtime" json:"completed,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
 | |
| 	XXX_unrecognized     []byte     `json:"-"`
 | |
| 	XXX_sizecache        int32      `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *VertexStatus) Reset()         { *m = VertexStatus{} }
 | |
| func (m *VertexStatus) String() string { return proto.CompactTextString(m) }
 | |
| func (*VertexStatus) ProtoMessage()    {}
 | |
| func (*VertexStatus) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{11}
 | |
| }
 | |
| func (m *VertexStatus) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *VertexStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_VertexStatus.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *VertexStatus) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_VertexStatus.Merge(dst, src)
 | |
| }
 | |
| func (m *VertexStatus) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *VertexStatus) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_VertexStatus.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_VertexStatus proto.InternalMessageInfo
 | |
| 
 | |
| func (m *VertexStatus) GetID() string {
 | |
| 	if m != nil {
 | |
| 		return m.ID
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *VertexStatus) GetName() string {
 | |
| 	if m != nil {
 | |
| 		return m.Name
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *VertexStatus) GetCurrent() int64 {
 | |
| 	if m != nil {
 | |
| 		return m.Current
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (m *VertexStatus) GetTotal() int64 {
 | |
| 	if m != nil {
 | |
| 		return m.Total
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (m *VertexStatus) GetTimestamp() time.Time {
 | |
| 	if m != nil {
 | |
| 		return m.Timestamp
 | |
| 	}
 | |
| 	return time.Time{}
 | |
| }
 | |
| 
 | |
| func (m *VertexStatus) GetStarted() *time.Time {
 | |
| 	if m != nil {
 | |
| 		return m.Started
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *VertexStatus) GetCompleted() *time.Time {
 | |
| 	if m != nil {
 | |
| 		return m.Completed
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type VertexLog struct {
 | |
| 	Vertex               github_com_opencontainers_go_digest.Digest `protobuf:"bytes,1,opt,name=vertex,proto3,customtype=github.com/opencontainers/go-digest.Digest" json:"vertex"`
 | |
| 	Timestamp            time.Time                                  `protobuf:"bytes,2,opt,name=timestamp,proto3,stdtime" json:"timestamp"`
 | |
| 	Stream               int64                                      `protobuf:"varint,3,opt,name=stream,proto3" json:"stream,omitempty"`
 | |
| 	Msg                  []byte                                     `protobuf:"bytes,4,opt,name=msg,proto3" json:"msg,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}                                   `json:"-"`
 | |
| 	XXX_unrecognized     []byte                                     `json:"-"`
 | |
| 	XXX_sizecache        int32                                      `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *VertexLog) Reset()         { *m = VertexLog{} }
 | |
| func (m *VertexLog) String() string { return proto.CompactTextString(m) }
 | |
| func (*VertexLog) ProtoMessage()    {}
 | |
| func (*VertexLog) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{12}
 | |
| }
 | |
| func (m *VertexLog) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *VertexLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_VertexLog.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *VertexLog) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_VertexLog.Merge(dst, src)
 | |
| }
 | |
| func (m *VertexLog) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *VertexLog) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_VertexLog.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_VertexLog proto.InternalMessageInfo
 | |
| 
 | |
| func (m *VertexLog) GetTimestamp() time.Time {
 | |
| 	if m != nil {
 | |
| 		return m.Timestamp
 | |
| 	}
 | |
| 	return time.Time{}
 | |
| }
 | |
| 
 | |
| func (m *VertexLog) GetStream() int64 {
 | |
| 	if m != nil {
 | |
| 		return m.Stream
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (m *VertexLog) GetMsg() []byte {
 | |
| 	if m != nil {
 | |
| 		return m.Msg
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type BytesMessage struct {
 | |
| 	Data                 []byte   `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *BytesMessage) Reset()         { *m = BytesMessage{} }
 | |
| func (m *BytesMessage) String() string { return proto.CompactTextString(m) }
 | |
| func (*BytesMessage) ProtoMessage()    {}
 | |
| func (*BytesMessage) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{13}
 | |
| }
 | |
| func (m *BytesMessage) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *BytesMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_BytesMessage.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *BytesMessage) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_BytesMessage.Merge(dst, src)
 | |
| }
 | |
| func (m *BytesMessage) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *BytesMessage) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_BytesMessage.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_BytesMessage proto.InternalMessageInfo
 | |
| 
 | |
| func (m *BytesMessage) GetData() []byte {
 | |
| 	if m != nil {
 | |
| 		return m.Data
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type ListWorkersRequest struct {
 | |
| 	Filter               []string `protobuf:"bytes,1,rep,name=filter,proto3" json:"filter,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *ListWorkersRequest) Reset()         { *m = ListWorkersRequest{} }
 | |
| func (m *ListWorkersRequest) String() string { return proto.CompactTextString(m) }
 | |
| func (*ListWorkersRequest) ProtoMessage()    {}
 | |
| func (*ListWorkersRequest) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{14}
 | |
| }
 | |
| func (m *ListWorkersRequest) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *ListWorkersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_ListWorkersRequest.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *ListWorkersRequest) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_ListWorkersRequest.Merge(dst, src)
 | |
| }
 | |
| func (m *ListWorkersRequest) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *ListWorkersRequest) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_ListWorkersRequest.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_ListWorkersRequest proto.InternalMessageInfo
 | |
| 
 | |
| func (m *ListWorkersRequest) GetFilter() []string {
 | |
| 	if m != nil {
 | |
| 		return m.Filter
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type ListWorkersResponse struct {
 | |
| 	Record               []*types.WorkerRecord `protobuf:"bytes,1,rep,name=record,proto3" json:"record,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
 | |
| 	XXX_unrecognized     []byte                `json:"-"`
 | |
| 	XXX_sizecache        int32                 `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *ListWorkersResponse) Reset()         { *m = ListWorkersResponse{} }
 | |
| func (m *ListWorkersResponse) String() string { return proto.CompactTextString(m) }
 | |
| func (*ListWorkersResponse) ProtoMessage()    {}
 | |
| func (*ListWorkersResponse) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_control_86d7f5d7b8f10de2, []int{15}
 | |
| }
 | |
| func (m *ListWorkersResponse) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *ListWorkersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_ListWorkersResponse.Marshal(b, m, deterministic)
 | |
| 	} else {
 | |
| 		b = b[:cap(b)]
 | |
| 		n, err := m.MarshalTo(b)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return b[:n], nil
 | |
| 	}
 | |
| }
 | |
| func (dst *ListWorkersResponse) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_ListWorkersResponse.Merge(dst, src)
 | |
| }
 | |
| func (m *ListWorkersResponse) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *ListWorkersResponse) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_ListWorkersResponse.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_ListWorkersResponse proto.InternalMessageInfo
 | |
| 
 | |
| func (m *ListWorkersResponse) GetRecord() []*types.WorkerRecord {
 | |
| 	if m != nil {
 | |
| 		return m.Record
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	proto.RegisterType((*PruneRequest)(nil), "moby.buildkit.v1.PruneRequest")
 | |
| 	proto.RegisterType((*DiskUsageRequest)(nil), "moby.buildkit.v1.DiskUsageRequest")
 | |
| 	proto.RegisterType((*DiskUsageResponse)(nil), "moby.buildkit.v1.DiskUsageResponse")
 | |
| 	proto.RegisterType((*UsageRecord)(nil), "moby.buildkit.v1.UsageRecord")
 | |
| 	proto.RegisterType((*SolveRequest)(nil), "moby.buildkit.v1.SolveRequest")
 | |
| 	proto.RegisterMapType((map[string]string)(nil), "moby.buildkit.v1.SolveRequest.ExporterAttrsEntry")
 | |
| 	proto.RegisterMapType((map[string]string)(nil), "moby.buildkit.v1.SolveRequest.FrontendAttrsEntry")
 | |
| 	proto.RegisterType((*CacheOptions)(nil), "moby.buildkit.v1.CacheOptions")
 | |
| 	proto.RegisterMapType((map[string]string)(nil), "moby.buildkit.v1.CacheOptions.ExportAttrsDeprecatedEntry")
 | |
| 	proto.RegisterType((*CacheOptionsEntry)(nil), "moby.buildkit.v1.CacheOptionsEntry")
 | |
| 	proto.RegisterMapType((map[string]string)(nil), "moby.buildkit.v1.CacheOptionsEntry.AttrsEntry")
 | |
| 	proto.RegisterType((*SolveResponse)(nil), "moby.buildkit.v1.SolveResponse")
 | |
| 	proto.RegisterMapType((map[string]string)(nil), "moby.buildkit.v1.SolveResponse.ExporterResponseEntry")
 | |
| 	proto.RegisterType((*StatusRequest)(nil), "moby.buildkit.v1.StatusRequest")
 | |
| 	proto.RegisterType((*StatusResponse)(nil), "moby.buildkit.v1.StatusResponse")
 | |
| 	proto.RegisterType((*Vertex)(nil), "moby.buildkit.v1.Vertex")
 | |
| 	proto.RegisterType((*VertexStatus)(nil), "moby.buildkit.v1.VertexStatus")
 | |
| 	proto.RegisterType((*VertexLog)(nil), "moby.buildkit.v1.VertexLog")
 | |
| 	proto.RegisterType((*BytesMessage)(nil), "moby.buildkit.v1.BytesMessage")
 | |
| 	proto.RegisterType((*ListWorkersRequest)(nil), "moby.buildkit.v1.ListWorkersRequest")
 | |
| 	proto.RegisterType((*ListWorkersResponse)(nil), "moby.buildkit.v1.ListWorkersResponse")
 | |
| }
 | |
| 
 | |
| // Reference imports to suppress errors if they are not otherwise used.
 | |
| var _ context.Context
 | |
| var _ grpc.ClientConn
 | |
| 
 | |
| // This is a compile-time assertion to ensure that this generated file
 | |
| // is compatible with the grpc package it is being compiled against.
 | |
| const _ = grpc.SupportPackageIsVersion4
 | |
| 
 | |
| // ControlClient is the client API for Control service.
 | |
| //
 | |
| // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
 | |
| type ControlClient interface {
 | |
| 	DiskUsage(ctx context.Context, in *DiskUsageRequest, opts ...grpc.CallOption) (*DiskUsageResponse, error)
 | |
| 	Prune(ctx context.Context, in *PruneRequest, opts ...grpc.CallOption) (Control_PruneClient, error)
 | |
| 	Solve(ctx context.Context, in *SolveRequest, opts ...grpc.CallOption) (*SolveResponse, error)
 | |
| 	Status(ctx context.Context, in *StatusRequest, opts ...grpc.CallOption) (Control_StatusClient, error)
 | |
| 	Session(ctx context.Context, opts ...grpc.CallOption) (Control_SessionClient, error)
 | |
| 	ListWorkers(ctx context.Context, in *ListWorkersRequest, opts ...grpc.CallOption) (*ListWorkersResponse, error)
 | |
| }
 | |
| 
 | |
| type controlClient struct {
 | |
| 	cc *grpc.ClientConn
 | |
| }
 | |
| 
 | |
| func NewControlClient(cc *grpc.ClientConn) ControlClient {
 | |
| 	return &controlClient{cc}
 | |
| }
 | |
| 
 | |
| func (c *controlClient) DiskUsage(ctx context.Context, in *DiskUsageRequest, opts ...grpc.CallOption) (*DiskUsageResponse, error) {
 | |
| 	out := new(DiskUsageResponse)
 | |
| 	err := c.cc.Invoke(ctx, "/moby.buildkit.v1.Control/DiskUsage", in, out, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| func (c *controlClient) Prune(ctx context.Context, in *PruneRequest, opts ...grpc.CallOption) (Control_PruneClient, error) {
 | |
| 	stream, err := c.cc.NewStream(ctx, &_Control_serviceDesc.Streams[0], "/moby.buildkit.v1.Control/Prune", opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	x := &controlPruneClient{stream}
 | |
| 	if err := x.ClientStream.SendMsg(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if err := x.ClientStream.CloseSend(); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return x, nil
 | |
| }
 | |
| 
 | |
| type Control_PruneClient interface {
 | |
| 	Recv() (*UsageRecord, error)
 | |
| 	grpc.ClientStream
 | |
| }
 | |
| 
 | |
| type controlPruneClient struct {
 | |
| 	grpc.ClientStream
 | |
| }
 | |
| 
 | |
| func (x *controlPruneClient) Recv() (*UsageRecord, error) {
 | |
| 	m := new(UsageRecord)
 | |
| 	if err := x.ClientStream.RecvMsg(m); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return m, nil
 | |
| }
 | |
| 
 | |
| func (c *controlClient) Solve(ctx context.Context, in *SolveRequest, opts ...grpc.CallOption) (*SolveResponse, error) {
 | |
| 	out := new(SolveResponse)
 | |
| 	err := c.cc.Invoke(ctx, "/moby.buildkit.v1.Control/Solve", in, out, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| func (c *controlClient) Status(ctx context.Context, in *StatusRequest, opts ...grpc.CallOption) (Control_StatusClient, error) {
 | |
| 	stream, err := c.cc.NewStream(ctx, &_Control_serviceDesc.Streams[1], "/moby.buildkit.v1.Control/Status", opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	x := &controlStatusClient{stream}
 | |
| 	if err := x.ClientStream.SendMsg(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if err := x.ClientStream.CloseSend(); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return x, nil
 | |
| }
 | |
| 
 | |
| type Control_StatusClient interface {
 | |
| 	Recv() (*StatusResponse, error)
 | |
| 	grpc.ClientStream
 | |
| }
 | |
| 
 | |
| type controlStatusClient struct {
 | |
| 	grpc.ClientStream
 | |
| }
 | |
| 
 | |
| func (x *controlStatusClient) Recv() (*StatusResponse, error) {
 | |
| 	m := new(StatusResponse)
 | |
| 	if err := x.ClientStream.RecvMsg(m); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return m, nil
 | |
| }
 | |
| 
 | |
| func (c *controlClient) Session(ctx context.Context, opts ...grpc.CallOption) (Control_SessionClient, error) {
 | |
| 	stream, err := c.cc.NewStream(ctx, &_Control_serviceDesc.Streams[2], "/moby.buildkit.v1.Control/Session", opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	x := &controlSessionClient{stream}
 | |
| 	return x, nil
 | |
| }
 | |
| 
 | |
| type Control_SessionClient interface {
 | |
| 	Send(*BytesMessage) error
 | |
| 	Recv() (*BytesMessage, error)
 | |
| 	grpc.ClientStream
 | |
| }
 | |
| 
 | |
| type controlSessionClient struct {
 | |
| 	grpc.ClientStream
 | |
| }
 | |
| 
 | |
| func (x *controlSessionClient) Send(m *BytesMessage) error {
 | |
| 	return x.ClientStream.SendMsg(m)
 | |
| }
 | |
| 
 | |
| func (x *controlSessionClient) Recv() (*BytesMessage, error) {
 | |
| 	m := new(BytesMessage)
 | |
| 	if err := x.ClientStream.RecvMsg(m); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return m, nil
 | |
| }
 | |
| 
 | |
| func (c *controlClient) ListWorkers(ctx context.Context, in *ListWorkersRequest, opts ...grpc.CallOption) (*ListWorkersResponse, error) {
 | |
| 	out := new(ListWorkersResponse)
 | |
| 	err := c.cc.Invoke(ctx, "/moby.buildkit.v1.Control/ListWorkers", in, out, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| // ControlServer is the server API for Control service.
 | |
| type ControlServer interface {
 | |
| 	DiskUsage(context.Context, *DiskUsageRequest) (*DiskUsageResponse, error)
 | |
| 	Prune(*PruneRequest, Control_PruneServer) error
 | |
| 	Solve(context.Context, *SolveRequest) (*SolveResponse, error)
 | |
| 	Status(*StatusRequest, Control_StatusServer) error
 | |
| 	Session(Control_SessionServer) error
 | |
| 	ListWorkers(context.Context, *ListWorkersRequest) (*ListWorkersResponse, error)
 | |
| }
 | |
| 
 | |
| func RegisterControlServer(s *grpc.Server, srv ControlServer) {
 | |
| 	s.RegisterService(&_Control_serviceDesc, srv)
 | |
| }
 | |
| 
 | |
| func _Control_DiskUsage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(DiskUsageRequest)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(ControlServer).DiskUsage(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: "/moby.buildkit.v1.Control/DiskUsage",
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(ControlServer).DiskUsage(ctx, req.(*DiskUsageRequest))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| func _Control_Prune_Handler(srv interface{}, stream grpc.ServerStream) error {
 | |
| 	m := new(PruneRequest)
 | |
| 	if err := stream.RecvMsg(m); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	return srv.(ControlServer).Prune(m, &controlPruneServer{stream})
 | |
| }
 | |
| 
 | |
| type Control_PruneServer interface {
 | |
| 	Send(*UsageRecord) error
 | |
| 	grpc.ServerStream
 | |
| }
 | |
| 
 | |
| type controlPruneServer struct {
 | |
| 	grpc.ServerStream
 | |
| }
 | |
| 
 | |
| func (x *controlPruneServer) Send(m *UsageRecord) error {
 | |
| 	return x.ServerStream.SendMsg(m)
 | |
| }
 | |
| 
 | |
| func _Control_Solve_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(SolveRequest)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(ControlServer).Solve(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: "/moby.buildkit.v1.Control/Solve",
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(ControlServer).Solve(ctx, req.(*SolveRequest))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| func _Control_Status_Handler(srv interface{}, stream grpc.ServerStream) error {
 | |
| 	m := new(StatusRequest)
 | |
| 	if err := stream.RecvMsg(m); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	return srv.(ControlServer).Status(m, &controlStatusServer{stream})
 | |
| }
 | |
| 
 | |
| type Control_StatusServer interface {
 | |
| 	Send(*StatusResponse) error
 | |
| 	grpc.ServerStream
 | |
| }
 | |
| 
 | |
| type controlStatusServer struct {
 | |
| 	grpc.ServerStream
 | |
| }
 | |
| 
 | |
| func (x *controlStatusServer) Send(m *StatusResponse) error {
 | |
| 	return x.ServerStream.SendMsg(m)
 | |
| }
 | |
| 
 | |
| func _Control_Session_Handler(srv interface{}, stream grpc.ServerStream) error {
 | |
| 	return srv.(ControlServer).Session(&controlSessionServer{stream})
 | |
| }
 | |
| 
 | |
| type Control_SessionServer interface {
 | |
| 	Send(*BytesMessage) error
 | |
| 	Recv() (*BytesMessage, error)
 | |
| 	grpc.ServerStream
 | |
| }
 | |
| 
 | |
| type controlSessionServer struct {
 | |
| 	grpc.ServerStream
 | |
| }
 | |
| 
 | |
| func (x *controlSessionServer) Send(m *BytesMessage) error {
 | |
| 	return x.ServerStream.SendMsg(m)
 | |
| }
 | |
| 
 | |
| func (x *controlSessionServer) Recv() (*BytesMessage, error) {
 | |
| 	m := new(BytesMessage)
 | |
| 	if err := x.ServerStream.RecvMsg(m); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return m, nil
 | |
| }
 | |
| 
 | |
| func _Control_ListWorkers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(ListWorkersRequest)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(ControlServer).ListWorkers(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: "/moby.buildkit.v1.Control/ListWorkers",
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(ControlServer).ListWorkers(ctx, req.(*ListWorkersRequest))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| var _Control_serviceDesc = grpc.ServiceDesc{
 | |
| 	ServiceName: "moby.buildkit.v1.Control",
 | |
| 	HandlerType: (*ControlServer)(nil),
 | |
| 	Methods: []grpc.MethodDesc{
 | |
| 		{
 | |
| 			MethodName: "DiskUsage",
 | |
| 			Handler:    _Control_DiskUsage_Handler,
 | |
| 		},
 | |
| 		{
 | |
| 			MethodName: "Solve",
 | |
| 			Handler:    _Control_Solve_Handler,
 | |
| 		},
 | |
| 		{
 | |
| 			MethodName: "ListWorkers",
 | |
| 			Handler:    _Control_ListWorkers_Handler,
 | |
| 		},
 | |
| 	},
 | |
| 	Streams: []grpc.StreamDesc{
 | |
| 		{
 | |
| 			StreamName:    "Prune",
 | |
| 			Handler:       _Control_Prune_Handler,
 | |
| 			ServerStreams: true,
 | |
| 		},
 | |
| 		{
 | |
| 			StreamName:    "Status",
 | |
| 			Handler:       _Control_Status_Handler,
 | |
| 			ServerStreams: true,
 | |
| 		},
 | |
| 		{
 | |
| 			StreamName:    "Session",
 | |
| 			Handler:       _Control_Session_Handler,
 | |
| 			ServerStreams: true,
 | |
| 			ClientStreams: true,
 | |
| 		},
 | |
| 	},
 | |
| 	Metadata: "control.proto",
 | |
| }
 | |
| 
 | |
| func (m *PruneRequest) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *PruneRequest) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Filter) > 0 {
 | |
| 		for _, s := range m.Filter {
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			l = len(s)
 | |
| 			for l >= 1<<7 {
 | |
| 				dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
 | |
| 				l >>= 7
 | |
| 				i++
 | |
| 			}
 | |
| 			dAtA[i] = uint8(l)
 | |
| 			i++
 | |
| 			i += copy(dAtA[i:], s)
 | |
| 		}
 | |
| 	}
 | |
| 	if m.All {
 | |
| 		dAtA[i] = 0x10
 | |
| 		i++
 | |
| 		if m.All {
 | |
| 			dAtA[i] = 1
 | |
| 		} else {
 | |
| 			dAtA[i] = 0
 | |
| 		}
 | |
| 		i++
 | |
| 	}
 | |
| 	if m.KeepDuration != 0 {
 | |
| 		dAtA[i] = 0x18
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(m.KeepDuration))
 | |
| 	}
 | |
| 	if m.KeepBytes != 0 {
 | |
| 		dAtA[i] = 0x20
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(m.KeepBytes))
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *DiskUsageRequest) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *DiskUsageRequest) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Filter) > 0 {
 | |
| 		for _, s := range m.Filter {
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			l = len(s)
 | |
| 			for l >= 1<<7 {
 | |
| 				dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
 | |
| 				l >>= 7
 | |
| 				i++
 | |
| 			}
 | |
| 			dAtA[i] = uint8(l)
 | |
| 			i++
 | |
| 			i += copy(dAtA[i:], s)
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *DiskUsageResponse) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *DiskUsageResponse) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Record) > 0 {
 | |
| 		for _, msg := range m.Record {
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(msg.Size()))
 | |
| 			n, err := msg.MarshalTo(dAtA[i:])
 | |
| 			if err != nil {
 | |
| 				return 0, err
 | |
| 			}
 | |
| 			i += n
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.ID) > 0 {
 | |
| 		dAtA[i] = 0xa
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.ID)))
 | |
| 		i += copy(dAtA[i:], m.ID)
 | |
| 	}
 | |
| 	if m.Mutable {
 | |
| 		dAtA[i] = 0x10
 | |
| 		i++
 | |
| 		if m.Mutable {
 | |
| 			dAtA[i] = 1
 | |
| 		} else {
 | |
| 			dAtA[i] = 0
 | |
| 		}
 | |
| 		i++
 | |
| 	}
 | |
| 	if m.InUse {
 | |
| 		dAtA[i] = 0x18
 | |
| 		i++
 | |
| 		if m.InUse {
 | |
| 			dAtA[i] = 1
 | |
| 		} else {
 | |
| 			dAtA[i] = 0
 | |
| 		}
 | |
| 		i++
 | |
| 	}
 | |
| 	if m.Size_ != 0 {
 | |
| 		dAtA[i] = 0x20
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(m.Size_))
 | |
| 	}
 | |
| 	if len(m.Parent) > 0 {
 | |
| 		dAtA[i] = 0x2a
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Parent)))
 | |
| 		i += copy(dAtA[i:], m.Parent)
 | |
| 	}
 | |
| 	dAtA[i] = 0x32
 | |
| 	i++
 | |
| 	i = encodeVarintControl(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(m.CreatedAt)))
 | |
| 	n1, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.CreatedAt, dAtA[i:])
 | |
| 	if err != nil {
 | |
| 		return 0, err
 | |
| 	}
 | |
| 	i += n1
 | |
| 	if m.LastUsedAt != nil {
 | |
| 		dAtA[i] = 0x3a
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*m.LastUsedAt)))
 | |
| 		n2, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.LastUsedAt, dAtA[i:])
 | |
| 		if err != nil {
 | |
| 			return 0, err
 | |
| 		}
 | |
| 		i += n2
 | |
| 	}
 | |
| 	if m.UsageCount != 0 {
 | |
| 		dAtA[i] = 0x40
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(m.UsageCount))
 | |
| 	}
 | |
| 	if len(m.Description) > 0 {
 | |
| 		dAtA[i] = 0x4a
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Description)))
 | |
| 		i += copy(dAtA[i:], m.Description)
 | |
| 	}
 | |
| 	if len(m.RecordType) > 0 {
 | |
| 		dAtA[i] = 0x52
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.RecordType)))
 | |
| 		i += copy(dAtA[i:], m.RecordType)
 | |
| 	}
 | |
| 	if m.Shared {
 | |
| 		dAtA[i] = 0x58
 | |
| 		i++
 | |
| 		if m.Shared {
 | |
| 			dAtA[i] = 1
 | |
| 		} else {
 | |
| 			dAtA[i] = 0
 | |
| 		}
 | |
| 		i++
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *SolveRequest) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *SolveRequest) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Ref) > 0 {
 | |
| 		dAtA[i] = 0xa
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Ref)))
 | |
| 		i += copy(dAtA[i:], m.Ref)
 | |
| 	}
 | |
| 	if m.Definition != nil {
 | |
| 		dAtA[i] = 0x12
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(m.Definition.Size()))
 | |
| 		n3, err := m.Definition.MarshalTo(dAtA[i:])
 | |
| 		if err != nil {
 | |
| 			return 0, err
 | |
| 		}
 | |
| 		i += n3
 | |
| 	}
 | |
| 	if len(m.Exporter) > 0 {
 | |
| 		dAtA[i] = 0x1a
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Exporter)))
 | |
| 		i += copy(dAtA[i:], m.Exporter)
 | |
| 	}
 | |
| 	if len(m.ExporterAttrs) > 0 {
 | |
| 		for k, _ := range m.ExporterAttrs {
 | |
| 			dAtA[i] = 0x22
 | |
| 			i++
 | |
| 			v := m.ExporterAttrs[k]
 | |
| 			mapSize := 1 + len(k) + sovControl(uint64(len(k))) + 1 + len(v) + sovControl(uint64(len(v)))
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(mapSize))
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(len(k)))
 | |
| 			i += copy(dAtA[i:], k)
 | |
| 			dAtA[i] = 0x12
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(len(v)))
 | |
| 			i += copy(dAtA[i:], v)
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Session) > 0 {
 | |
| 		dAtA[i] = 0x2a
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Session)))
 | |
| 		i += copy(dAtA[i:], m.Session)
 | |
| 	}
 | |
| 	if len(m.Frontend) > 0 {
 | |
| 		dAtA[i] = 0x32
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Frontend)))
 | |
| 		i += copy(dAtA[i:], m.Frontend)
 | |
| 	}
 | |
| 	if len(m.FrontendAttrs) > 0 {
 | |
| 		for k, _ := range m.FrontendAttrs {
 | |
| 			dAtA[i] = 0x3a
 | |
| 			i++
 | |
| 			v := m.FrontendAttrs[k]
 | |
| 			mapSize := 1 + len(k) + sovControl(uint64(len(k))) + 1 + len(v) + sovControl(uint64(len(v)))
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(mapSize))
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(len(k)))
 | |
| 			i += copy(dAtA[i:], k)
 | |
| 			dAtA[i] = 0x12
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(len(v)))
 | |
| 			i += copy(dAtA[i:], v)
 | |
| 		}
 | |
| 	}
 | |
| 	dAtA[i] = 0x42
 | |
| 	i++
 | |
| 	i = encodeVarintControl(dAtA, i, uint64(m.Cache.Size()))
 | |
| 	n4, err := m.Cache.MarshalTo(dAtA[i:])
 | |
| 	if err != nil {
 | |
| 		return 0, err
 | |
| 	}
 | |
| 	i += n4
 | |
| 	if len(m.Entitlements) > 0 {
 | |
| 		for _, s := range m.Entitlements {
 | |
| 			dAtA[i] = 0x4a
 | |
| 			i++
 | |
| 			l = len(s)
 | |
| 			for l >= 1<<7 {
 | |
| 				dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
 | |
| 				l >>= 7
 | |
| 				i++
 | |
| 			}
 | |
| 			dAtA[i] = uint8(l)
 | |
| 			i++
 | |
| 			i += copy(dAtA[i:], s)
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *CacheOptions) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *CacheOptions) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.ExportRefDeprecated) > 0 {
 | |
| 		dAtA[i] = 0xa
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.ExportRefDeprecated)))
 | |
| 		i += copy(dAtA[i:], m.ExportRefDeprecated)
 | |
| 	}
 | |
| 	if len(m.ImportRefsDeprecated) > 0 {
 | |
| 		for _, s := range m.ImportRefsDeprecated {
 | |
| 			dAtA[i] = 0x12
 | |
| 			i++
 | |
| 			l = len(s)
 | |
| 			for l >= 1<<7 {
 | |
| 				dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
 | |
| 				l >>= 7
 | |
| 				i++
 | |
| 			}
 | |
| 			dAtA[i] = uint8(l)
 | |
| 			i++
 | |
| 			i += copy(dAtA[i:], s)
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.ExportAttrsDeprecated) > 0 {
 | |
| 		for k, _ := range m.ExportAttrsDeprecated {
 | |
| 			dAtA[i] = 0x1a
 | |
| 			i++
 | |
| 			v := m.ExportAttrsDeprecated[k]
 | |
| 			mapSize := 1 + len(k) + sovControl(uint64(len(k))) + 1 + len(v) + sovControl(uint64(len(v)))
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(mapSize))
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(len(k)))
 | |
| 			i += copy(dAtA[i:], k)
 | |
| 			dAtA[i] = 0x12
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(len(v)))
 | |
| 			i += copy(dAtA[i:], v)
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Exports) > 0 {
 | |
| 		for _, msg := range m.Exports {
 | |
| 			dAtA[i] = 0x22
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(msg.Size()))
 | |
| 			n, err := msg.MarshalTo(dAtA[i:])
 | |
| 			if err != nil {
 | |
| 				return 0, err
 | |
| 			}
 | |
| 			i += n
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Imports) > 0 {
 | |
| 		for _, msg := range m.Imports {
 | |
| 			dAtA[i] = 0x2a
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(msg.Size()))
 | |
| 			n, err := msg.MarshalTo(dAtA[i:])
 | |
| 			if err != nil {
 | |
| 				return 0, err
 | |
| 			}
 | |
| 			i += n
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *CacheOptionsEntry) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *CacheOptionsEntry) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Type) > 0 {
 | |
| 		dAtA[i] = 0xa
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Type)))
 | |
| 		i += copy(dAtA[i:], m.Type)
 | |
| 	}
 | |
| 	if len(m.Attrs) > 0 {
 | |
| 		for k, _ := range m.Attrs {
 | |
| 			dAtA[i] = 0x12
 | |
| 			i++
 | |
| 			v := m.Attrs[k]
 | |
| 			mapSize := 1 + len(k) + sovControl(uint64(len(k))) + 1 + len(v) + sovControl(uint64(len(v)))
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(mapSize))
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(len(k)))
 | |
| 			i += copy(dAtA[i:], k)
 | |
| 			dAtA[i] = 0x12
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(len(v)))
 | |
| 			i += copy(dAtA[i:], v)
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *SolveResponse) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *SolveResponse) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.ExporterResponse) > 0 {
 | |
| 		for k, _ := range m.ExporterResponse {
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			v := m.ExporterResponse[k]
 | |
| 			mapSize := 1 + len(k) + sovControl(uint64(len(k))) + 1 + len(v) + sovControl(uint64(len(v)))
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(mapSize))
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(len(k)))
 | |
| 			i += copy(dAtA[i:], k)
 | |
| 			dAtA[i] = 0x12
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(len(v)))
 | |
| 			i += copy(dAtA[i:], v)
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *StatusRequest) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *StatusRequest) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Ref) > 0 {
 | |
| 		dAtA[i] = 0xa
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Ref)))
 | |
| 		i += copy(dAtA[i:], m.Ref)
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *StatusResponse) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *StatusResponse) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Vertexes) > 0 {
 | |
| 		for _, msg := range m.Vertexes {
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(msg.Size()))
 | |
| 			n, err := msg.MarshalTo(dAtA[i:])
 | |
| 			if err != nil {
 | |
| 				return 0, err
 | |
| 			}
 | |
| 			i += n
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Statuses) > 0 {
 | |
| 		for _, msg := range m.Statuses {
 | |
| 			dAtA[i] = 0x12
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(msg.Size()))
 | |
| 			n, err := msg.MarshalTo(dAtA[i:])
 | |
| 			if err != nil {
 | |
| 				return 0, err
 | |
| 			}
 | |
| 			i += n
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Logs) > 0 {
 | |
| 		for _, msg := range m.Logs {
 | |
| 			dAtA[i] = 0x1a
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(msg.Size()))
 | |
| 			n, err := msg.MarshalTo(dAtA[i:])
 | |
| 			if err != nil {
 | |
| 				return 0, err
 | |
| 			}
 | |
| 			i += n
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *Vertex) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *Vertex) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Digest) > 0 {
 | |
| 		dAtA[i] = 0xa
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Digest)))
 | |
| 		i += copy(dAtA[i:], m.Digest)
 | |
| 	}
 | |
| 	if len(m.Inputs) > 0 {
 | |
| 		for _, s := range m.Inputs {
 | |
| 			dAtA[i] = 0x12
 | |
| 			i++
 | |
| 			l = len(s)
 | |
| 			for l >= 1<<7 {
 | |
| 				dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
 | |
| 				l >>= 7
 | |
| 				i++
 | |
| 			}
 | |
| 			dAtA[i] = uint8(l)
 | |
| 			i++
 | |
| 			i += copy(dAtA[i:], s)
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Name) > 0 {
 | |
| 		dAtA[i] = 0x1a
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Name)))
 | |
| 		i += copy(dAtA[i:], m.Name)
 | |
| 	}
 | |
| 	if m.Cached {
 | |
| 		dAtA[i] = 0x20
 | |
| 		i++
 | |
| 		if m.Cached {
 | |
| 			dAtA[i] = 1
 | |
| 		} else {
 | |
| 			dAtA[i] = 0
 | |
| 		}
 | |
| 		i++
 | |
| 	}
 | |
| 	if m.Started != nil {
 | |
| 		dAtA[i] = 0x2a
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*m.Started)))
 | |
| 		n5, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.Started, dAtA[i:])
 | |
| 		if err != nil {
 | |
| 			return 0, err
 | |
| 		}
 | |
| 		i += n5
 | |
| 	}
 | |
| 	if m.Completed != nil {
 | |
| 		dAtA[i] = 0x32
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*m.Completed)))
 | |
| 		n6, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.Completed, dAtA[i:])
 | |
| 		if err != nil {
 | |
| 			return 0, err
 | |
| 		}
 | |
| 		i += n6
 | |
| 	}
 | |
| 	if len(m.Error) > 0 {
 | |
| 		dAtA[i] = 0x3a
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Error)))
 | |
| 		i += copy(dAtA[i:], m.Error)
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *VertexStatus) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *VertexStatus) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.ID) > 0 {
 | |
| 		dAtA[i] = 0xa
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.ID)))
 | |
| 		i += copy(dAtA[i:], m.ID)
 | |
| 	}
 | |
| 	if len(m.Vertex) > 0 {
 | |
| 		dAtA[i] = 0x12
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Vertex)))
 | |
| 		i += copy(dAtA[i:], m.Vertex)
 | |
| 	}
 | |
| 	if len(m.Name) > 0 {
 | |
| 		dAtA[i] = 0x1a
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Name)))
 | |
| 		i += copy(dAtA[i:], m.Name)
 | |
| 	}
 | |
| 	if m.Current != 0 {
 | |
| 		dAtA[i] = 0x20
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(m.Current))
 | |
| 	}
 | |
| 	if m.Total != 0 {
 | |
| 		dAtA[i] = 0x28
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(m.Total))
 | |
| 	}
 | |
| 	dAtA[i] = 0x32
 | |
| 	i++
 | |
| 	i = encodeVarintControl(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp)))
 | |
| 	n7, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Timestamp, dAtA[i:])
 | |
| 	if err != nil {
 | |
| 		return 0, err
 | |
| 	}
 | |
| 	i += n7
 | |
| 	if m.Started != nil {
 | |
| 		dAtA[i] = 0x3a
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*m.Started)))
 | |
| 		n8, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.Started, dAtA[i:])
 | |
| 		if err != nil {
 | |
| 			return 0, err
 | |
| 		}
 | |
| 		i += n8
 | |
| 	}
 | |
| 	if m.Completed != nil {
 | |
| 		dAtA[i] = 0x42
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*m.Completed)))
 | |
| 		n9, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.Completed, dAtA[i:])
 | |
| 		if err != nil {
 | |
| 			return 0, err
 | |
| 		}
 | |
| 		i += n9
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *VertexLog) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *VertexLog) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Vertex) > 0 {
 | |
| 		dAtA[i] = 0xa
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Vertex)))
 | |
| 		i += copy(dAtA[i:], m.Vertex)
 | |
| 	}
 | |
| 	dAtA[i] = 0x12
 | |
| 	i++
 | |
| 	i = encodeVarintControl(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp)))
 | |
| 	n10, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Timestamp, dAtA[i:])
 | |
| 	if err != nil {
 | |
| 		return 0, err
 | |
| 	}
 | |
| 	i += n10
 | |
| 	if m.Stream != 0 {
 | |
| 		dAtA[i] = 0x18
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(m.Stream))
 | |
| 	}
 | |
| 	if len(m.Msg) > 0 {
 | |
| 		dAtA[i] = 0x22
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Msg)))
 | |
| 		i += copy(dAtA[i:], m.Msg)
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *BytesMessage) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *BytesMessage) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Data) > 0 {
 | |
| 		dAtA[i] = 0xa
 | |
| 		i++
 | |
| 		i = encodeVarintControl(dAtA, i, uint64(len(m.Data)))
 | |
| 		i += copy(dAtA[i:], m.Data)
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *ListWorkersRequest) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *ListWorkersRequest) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Filter) > 0 {
 | |
| 		for _, s := range m.Filter {
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			l = len(s)
 | |
| 			for l >= 1<<7 {
 | |
| 				dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
 | |
| 				l >>= 7
 | |
| 				i++
 | |
| 			}
 | |
| 			dAtA[i] = uint8(l)
 | |
| 			i++
 | |
| 			i += copy(dAtA[i:], s)
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *ListWorkersResponse) Marshal() (dAtA []byte, err error) {
 | |
| 	size := m.Size()
 | |
| 	dAtA = make([]byte, size)
 | |
| 	n, err := m.MarshalTo(dAtA)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return dAtA[:n], nil
 | |
| }
 | |
| 
 | |
| func (m *ListWorkersResponse) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Record) > 0 {
 | |
| 		for _, msg := range m.Record {
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			i = encodeVarintControl(dAtA, i, uint64(msg.Size()))
 | |
| 			n, err := msg.MarshalTo(dAtA[i:])
 | |
| 			if err != nil {
 | |
| 				return 0, err
 | |
| 			}
 | |
| 			i += n
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func encodeVarintControl(dAtA []byte, offset int, v uint64) int {
 | |
| 	for v >= 1<<7 {
 | |
| 		dAtA[offset] = uint8(v&0x7f | 0x80)
 | |
| 		v >>= 7
 | |
| 		offset++
 | |
| 	}
 | |
| 	dAtA[offset] = uint8(v)
 | |
| 	return offset + 1
 | |
| }
 | |
| func (m *PruneRequest) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Filter) > 0 {
 | |
| 		for _, s := range m.Filter {
 | |
| 			l = len(s)
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.All {
 | |
| 		n += 2
 | |
| 	}
 | |
| 	if m.KeepDuration != 0 {
 | |
| 		n += 1 + sovControl(uint64(m.KeepDuration))
 | |
| 	}
 | |
| 	if m.KeepBytes != 0 {
 | |
| 		n += 1 + sovControl(uint64(m.KeepBytes))
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *DiskUsageRequest) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Filter) > 0 {
 | |
| 		for _, s := range m.Filter {
 | |
| 			l = len(s)
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *DiskUsageResponse) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Record) > 0 {
 | |
| 		for _, e := range m.Record {
 | |
| 			l = e.Size()
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *UsageRecord) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	l = len(m.ID)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.Mutable {
 | |
| 		n += 2
 | |
| 	}
 | |
| 	if m.InUse {
 | |
| 		n += 2
 | |
| 	}
 | |
| 	if m.Size_ != 0 {
 | |
| 		n += 1 + sovControl(uint64(m.Size_))
 | |
| 	}
 | |
| 	l = len(m.Parent)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	l = github_com_gogo_protobuf_types.SizeOfStdTime(m.CreatedAt)
 | |
| 	n += 1 + l + sovControl(uint64(l))
 | |
| 	if m.LastUsedAt != nil {
 | |
| 		l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.LastUsedAt)
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.UsageCount != 0 {
 | |
| 		n += 1 + sovControl(uint64(m.UsageCount))
 | |
| 	}
 | |
| 	l = len(m.Description)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	l = len(m.RecordType)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.Shared {
 | |
| 		n += 2
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *SolveRequest) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	l = len(m.Ref)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.Definition != nil {
 | |
| 		l = m.Definition.Size()
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	l = len(m.Exporter)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if len(m.ExporterAttrs) > 0 {
 | |
| 		for k, v := range m.ExporterAttrs {
 | |
| 			_ = k
 | |
| 			_ = v
 | |
| 			mapEntrySize := 1 + len(k) + sovControl(uint64(len(k))) + 1 + len(v) + sovControl(uint64(len(v)))
 | |
| 			n += mapEntrySize + 1 + sovControl(uint64(mapEntrySize))
 | |
| 		}
 | |
| 	}
 | |
| 	l = len(m.Session)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	l = len(m.Frontend)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if len(m.FrontendAttrs) > 0 {
 | |
| 		for k, v := range m.FrontendAttrs {
 | |
| 			_ = k
 | |
| 			_ = v
 | |
| 			mapEntrySize := 1 + len(k) + sovControl(uint64(len(k))) + 1 + len(v) + sovControl(uint64(len(v)))
 | |
| 			n += mapEntrySize + 1 + sovControl(uint64(mapEntrySize))
 | |
| 		}
 | |
| 	}
 | |
| 	l = m.Cache.Size()
 | |
| 	n += 1 + l + sovControl(uint64(l))
 | |
| 	if len(m.Entitlements) > 0 {
 | |
| 		for _, s := range m.Entitlements {
 | |
| 			l = len(s)
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *CacheOptions) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	l = len(m.ExportRefDeprecated)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if len(m.ImportRefsDeprecated) > 0 {
 | |
| 		for _, s := range m.ImportRefsDeprecated {
 | |
| 			l = len(s)
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.ExportAttrsDeprecated) > 0 {
 | |
| 		for k, v := range m.ExportAttrsDeprecated {
 | |
| 			_ = k
 | |
| 			_ = v
 | |
| 			mapEntrySize := 1 + len(k) + sovControl(uint64(len(k))) + 1 + len(v) + sovControl(uint64(len(v)))
 | |
| 			n += mapEntrySize + 1 + sovControl(uint64(mapEntrySize))
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Exports) > 0 {
 | |
| 		for _, e := range m.Exports {
 | |
| 			l = e.Size()
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Imports) > 0 {
 | |
| 		for _, e := range m.Imports {
 | |
| 			l = e.Size()
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *CacheOptionsEntry) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	l = len(m.Type)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if len(m.Attrs) > 0 {
 | |
| 		for k, v := range m.Attrs {
 | |
| 			_ = k
 | |
| 			_ = v
 | |
| 			mapEntrySize := 1 + len(k) + sovControl(uint64(len(k))) + 1 + len(v) + sovControl(uint64(len(v)))
 | |
| 			n += mapEntrySize + 1 + sovControl(uint64(mapEntrySize))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *SolveResponse) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.ExporterResponse) > 0 {
 | |
| 		for k, v := range m.ExporterResponse {
 | |
| 			_ = k
 | |
| 			_ = v
 | |
| 			mapEntrySize := 1 + len(k) + sovControl(uint64(len(k))) + 1 + len(v) + sovControl(uint64(len(v)))
 | |
| 			n += mapEntrySize + 1 + sovControl(uint64(mapEntrySize))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *StatusRequest) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	l = len(m.Ref)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *StatusResponse) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Vertexes) > 0 {
 | |
| 		for _, e := range m.Vertexes {
 | |
| 			l = e.Size()
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Statuses) > 0 {
 | |
| 		for _, e := range m.Statuses {
 | |
| 			l = e.Size()
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Logs) > 0 {
 | |
| 		for _, e := range m.Logs {
 | |
| 			l = e.Size()
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *Vertex) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	l = len(m.Digest)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if len(m.Inputs) > 0 {
 | |
| 		for _, s := range m.Inputs {
 | |
| 			l = len(s)
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	l = len(m.Name)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.Cached {
 | |
| 		n += 2
 | |
| 	}
 | |
| 	if m.Started != nil {
 | |
| 		l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.Started)
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.Completed != nil {
 | |
| 		l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.Completed)
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	l = len(m.Error)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *VertexStatus) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	l = len(m.ID)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	l = len(m.Vertex)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	l = len(m.Name)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.Current != 0 {
 | |
| 		n += 1 + sovControl(uint64(m.Current))
 | |
| 	}
 | |
| 	if m.Total != 0 {
 | |
| 		n += 1 + sovControl(uint64(m.Total))
 | |
| 	}
 | |
| 	l = github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp)
 | |
| 	n += 1 + l + sovControl(uint64(l))
 | |
| 	if m.Started != nil {
 | |
| 		l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.Started)
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.Completed != nil {
 | |
| 		l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.Completed)
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *VertexLog) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	l = len(m.Vertex)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	l = github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp)
 | |
| 	n += 1 + l + sovControl(uint64(l))
 | |
| 	if m.Stream != 0 {
 | |
| 		n += 1 + sovControl(uint64(m.Stream))
 | |
| 	}
 | |
| 	l = len(m.Msg)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *BytesMessage) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	l = len(m.Data)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovControl(uint64(l))
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *ListWorkersRequest) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Filter) > 0 {
 | |
| 		for _, s := range m.Filter {
 | |
| 			l = len(s)
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *ListWorkersResponse) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Record) > 0 {
 | |
| 		for _, e := range m.Record {
 | |
| 			l = e.Size()
 | |
| 			n += 1 + l + sovControl(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func sovControl(x uint64) (n int) {
 | |
| 	for {
 | |
| 		n++
 | |
| 		x >>= 7
 | |
| 		if x == 0 {
 | |
| 			break
 | |
| 		}
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| func sozControl(x uint64) (n int) {
 | |
| 	return sovControl(uint64((x << 1) ^ uint64((int64(x) >> 63))))
 | |
| }
 | |
| func (m *PruneRequest) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: PruneRequest: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: PruneRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Filter", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Filter = append(m.Filter, string(dAtA[iNdEx:postIndex]))
 | |
| 			iNdEx = postIndex
 | |
| 		case 2:
 | |
| 			if wireType != 0 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field All", wireType)
 | |
| 			}
 | |
| 			var v int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				v |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			m.All = bool(v != 0)
 | |
| 		case 3:
 | |
| 			if wireType != 0 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field KeepDuration", wireType)
 | |
| 			}
 | |
| 			m.KeepDuration = 0
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				m.KeepDuration |= (int64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 		case 4:
 | |
| 			if wireType != 0 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field KeepBytes", wireType)
 | |
| 			}
 | |
| 			m.KeepBytes = 0
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				m.KeepBytes |= (int64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *DiskUsageRequest) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: DiskUsageRequest: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: DiskUsageRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Filter", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Filter = append(m.Filter, string(dAtA[iNdEx:postIndex]))
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *DiskUsageResponse) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: DiskUsageResponse: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: DiskUsageResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Record", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Record = append(m.Record, &UsageRecord{})
 | |
| 			if err := m.Record[len(m.Record)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *UsageRecord) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: UsageRecord: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: UsageRecord: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.ID = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 2:
 | |
| 			if wireType != 0 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Mutable", wireType)
 | |
| 			}
 | |
| 			var v int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				v |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			m.Mutable = bool(v != 0)
 | |
| 		case 3:
 | |
| 			if wireType != 0 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field InUse", wireType)
 | |
| 			}
 | |
| 			var v int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				v |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			m.InUse = bool(v != 0)
 | |
| 		case 4:
 | |
| 			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 ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				m.Size_ |= (int64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 		case 5:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Parent", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Parent = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 6:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field CreatedAt", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.CreatedAt, dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 7:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field LastUsedAt", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.LastUsedAt == nil {
 | |
| 				m.LastUsedAt = new(time.Time)
 | |
| 			}
 | |
| 			if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.LastUsedAt, dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 8:
 | |
| 			if wireType != 0 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field UsageCount", wireType)
 | |
| 			}
 | |
| 			m.UsageCount = 0
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				m.UsageCount |= (int64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 		case 9:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Description = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 10:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field RecordType", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.RecordType = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 11:
 | |
| 			if wireType != 0 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Shared", wireType)
 | |
| 			}
 | |
| 			var v int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				v |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			m.Shared = bool(v != 0)
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *SolveRequest) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: SolveRequest: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: SolveRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Ref", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Ref = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 2:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Definition", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.Definition == nil {
 | |
| 				m.Definition = &pb.Definition{}
 | |
| 			}
 | |
| 			if err := m.Definition.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 3:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Exporter", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Exporter = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 4:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field ExporterAttrs", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.ExporterAttrs == nil {
 | |
| 				m.ExporterAttrs = make(map[string]string)
 | |
| 			}
 | |
| 			var mapkey string
 | |
| 			var mapvalue string
 | |
| 			for iNdEx < postIndex {
 | |
| 				entryPreIndex := iNdEx
 | |
| 				var wire uint64
 | |
| 				for shift := uint(0); ; shift += 7 {
 | |
| 					if shift >= 64 {
 | |
| 						return ErrIntOverflowControl
 | |
| 					}
 | |
| 					if iNdEx >= l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					b := dAtA[iNdEx]
 | |
| 					iNdEx++
 | |
| 					wire |= (uint64(b) & 0x7F) << shift
 | |
| 					if b < 0x80 {
 | |
| 						break
 | |
| 					}
 | |
| 				}
 | |
| 				fieldNum := int32(wire >> 3)
 | |
| 				if fieldNum == 1 {
 | |
| 					var stringLenmapkey uint64
 | |
| 					for shift := uint(0); ; shift += 7 {
 | |
| 						if shift >= 64 {
 | |
| 							return ErrIntOverflowControl
 | |
| 						}
 | |
| 						if iNdEx >= l {
 | |
| 							return io.ErrUnexpectedEOF
 | |
| 						}
 | |
| 						b := dAtA[iNdEx]
 | |
| 						iNdEx++
 | |
| 						stringLenmapkey |= (uint64(b) & 0x7F) << shift
 | |
| 						if b < 0x80 {
 | |
| 							break
 | |
| 						}
 | |
| 					}
 | |
| 					intStringLenmapkey := int(stringLenmapkey)
 | |
| 					if intStringLenmapkey < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					postStringIndexmapkey := iNdEx + intStringLenmapkey
 | |
| 					if postStringIndexmapkey > l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
 | |
| 					iNdEx = postStringIndexmapkey
 | |
| 				} else if fieldNum == 2 {
 | |
| 					var stringLenmapvalue uint64
 | |
| 					for shift := uint(0); ; shift += 7 {
 | |
| 						if shift >= 64 {
 | |
| 							return ErrIntOverflowControl
 | |
| 						}
 | |
| 						if iNdEx >= l {
 | |
| 							return io.ErrUnexpectedEOF
 | |
| 						}
 | |
| 						b := dAtA[iNdEx]
 | |
| 						iNdEx++
 | |
| 						stringLenmapvalue |= (uint64(b) & 0x7F) << shift
 | |
| 						if b < 0x80 {
 | |
| 							break
 | |
| 						}
 | |
| 					}
 | |
| 					intStringLenmapvalue := int(stringLenmapvalue)
 | |
| 					if intStringLenmapvalue < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					postStringIndexmapvalue := iNdEx + intStringLenmapvalue
 | |
| 					if postStringIndexmapvalue > l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
 | |
| 					iNdEx = postStringIndexmapvalue
 | |
| 				} else {
 | |
| 					iNdEx = entryPreIndex
 | |
| 					skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 					if err != nil {
 | |
| 						return err
 | |
| 					}
 | |
| 					if skippy < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					if (iNdEx + skippy) > postIndex {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					iNdEx += skippy
 | |
| 				}
 | |
| 			}
 | |
| 			m.ExporterAttrs[mapkey] = mapvalue
 | |
| 			iNdEx = postIndex
 | |
| 		case 5:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Session", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Session = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 6:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Frontend", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Frontend = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 7:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field FrontendAttrs", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.FrontendAttrs == nil {
 | |
| 				m.FrontendAttrs = make(map[string]string)
 | |
| 			}
 | |
| 			var mapkey string
 | |
| 			var mapvalue string
 | |
| 			for iNdEx < postIndex {
 | |
| 				entryPreIndex := iNdEx
 | |
| 				var wire uint64
 | |
| 				for shift := uint(0); ; shift += 7 {
 | |
| 					if shift >= 64 {
 | |
| 						return ErrIntOverflowControl
 | |
| 					}
 | |
| 					if iNdEx >= l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					b := dAtA[iNdEx]
 | |
| 					iNdEx++
 | |
| 					wire |= (uint64(b) & 0x7F) << shift
 | |
| 					if b < 0x80 {
 | |
| 						break
 | |
| 					}
 | |
| 				}
 | |
| 				fieldNum := int32(wire >> 3)
 | |
| 				if fieldNum == 1 {
 | |
| 					var stringLenmapkey uint64
 | |
| 					for shift := uint(0); ; shift += 7 {
 | |
| 						if shift >= 64 {
 | |
| 							return ErrIntOverflowControl
 | |
| 						}
 | |
| 						if iNdEx >= l {
 | |
| 							return io.ErrUnexpectedEOF
 | |
| 						}
 | |
| 						b := dAtA[iNdEx]
 | |
| 						iNdEx++
 | |
| 						stringLenmapkey |= (uint64(b) & 0x7F) << shift
 | |
| 						if b < 0x80 {
 | |
| 							break
 | |
| 						}
 | |
| 					}
 | |
| 					intStringLenmapkey := int(stringLenmapkey)
 | |
| 					if intStringLenmapkey < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					postStringIndexmapkey := iNdEx + intStringLenmapkey
 | |
| 					if postStringIndexmapkey > l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
 | |
| 					iNdEx = postStringIndexmapkey
 | |
| 				} else if fieldNum == 2 {
 | |
| 					var stringLenmapvalue uint64
 | |
| 					for shift := uint(0); ; shift += 7 {
 | |
| 						if shift >= 64 {
 | |
| 							return ErrIntOverflowControl
 | |
| 						}
 | |
| 						if iNdEx >= l {
 | |
| 							return io.ErrUnexpectedEOF
 | |
| 						}
 | |
| 						b := dAtA[iNdEx]
 | |
| 						iNdEx++
 | |
| 						stringLenmapvalue |= (uint64(b) & 0x7F) << shift
 | |
| 						if b < 0x80 {
 | |
| 							break
 | |
| 						}
 | |
| 					}
 | |
| 					intStringLenmapvalue := int(stringLenmapvalue)
 | |
| 					if intStringLenmapvalue < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					postStringIndexmapvalue := iNdEx + intStringLenmapvalue
 | |
| 					if postStringIndexmapvalue > l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
 | |
| 					iNdEx = postStringIndexmapvalue
 | |
| 				} else {
 | |
| 					iNdEx = entryPreIndex
 | |
| 					skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 					if err != nil {
 | |
| 						return err
 | |
| 					}
 | |
| 					if skippy < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					if (iNdEx + skippy) > postIndex {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					iNdEx += skippy
 | |
| 				}
 | |
| 			}
 | |
| 			m.FrontendAttrs[mapkey] = mapvalue
 | |
| 			iNdEx = postIndex
 | |
| 		case 8:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Cache", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if err := m.Cache.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 9:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Entitlements", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Entitlements = append(m.Entitlements, github_com_moby_buildkit_util_entitlements.Entitlement(dAtA[iNdEx:postIndex]))
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *CacheOptions) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: CacheOptions: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: CacheOptions: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field ExportRefDeprecated", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.ExportRefDeprecated = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 2:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field ImportRefsDeprecated", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.ImportRefsDeprecated = append(m.ImportRefsDeprecated, string(dAtA[iNdEx:postIndex]))
 | |
| 			iNdEx = postIndex
 | |
| 		case 3:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field ExportAttrsDeprecated", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.ExportAttrsDeprecated == nil {
 | |
| 				m.ExportAttrsDeprecated = make(map[string]string)
 | |
| 			}
 | |
| 			var mapkey string
 | |
| 			var mapvalue string
 | |
| 			for iNdEx < postIndex {
 | |
| 				entryPreIndex := iNdEx
 | |
| 				var wire uint64
 | |
| 				for shift := uint(0); ; shift += 7 {
 | |
| 					if shift >= 64 {
 | |
| 						return ErrIntOverflowControl
 | |
| 					}
 | |
| 					if iNdEx >= l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					b := dAtA[iNdEx]
 | |
| 					iNdEx++
 | |
| 					wire |= (uint64(b) & 0x7F) << shift
 | |
| 					if b < 0x80 {
 | |
| 						break
 | |
| 					}
 | |
| 				}
 | |
| 				fieldNum := int32(wire >> 3)
 | |
| 				if fieldNum == 1 {
 | |
| 					var stringLenmapkey uint64
 | |
| 					for shift := uint(0); ; shift += 7 {
 | |
| 						if shift >= 64 {
 | |
| 							return ErrIntOverflowControl
 | |
| 						}
 | |
| 						if iNdEx >= l {
 | |
| 							return io.ErrUnexpectedEOF
 | |
| 						}
 | |
| 						b := dAtA[iNdEx]
 | |
| 						iNdEx++
 | |
| 						stringLenmapkey |= (uint64(b) & 0x7F) << shift
 | |
| 						if b < 0x80 {
 | |
| 							break
 | |
| 						}
 | |
| 					}
 | |
| 					intStringLenmapkey := int(stringLenmapkey)
 | |
| 					if intStringLenmapkey < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					postStringIndexmapkey := iNdEx + intStringLenmapkey
 | |
| 					if postStringIndexmapkey > l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
 | |
| 					iNdEx = postStringIndexmapkey
 | |
| 				} else if fieldNum == 2 {
 | |
| 					var stringLenmapvalue uint64
 | |
| 					for shift := uint(0); ; shift += 7 {
 | |
| 						if shift >= 64 {
 | |
| 							return ErrIntOverflowControl
 | |
| 						}
 | |
| 						if iNdEx >= l {
 | |
| 							return io.ErrUnexpectedEOF
 | |
| 						}
 | |
| 						b := dAtA[iNdEx]
 | |
| 						iNdEx++
 | |
| 						stringLenmapvalue |= (uint64(b) & 0x7F) << shift
 | |
| 						if b < 0x80 {
 | |
| 							break
 | |
| 						}
 | |
| 					}
 | |
| 					intStringLenmapvalue := int(stringLenmapvalue)
 | |
| 					if intStringLenmapvalue < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					postStringIndexmapvalue := iNdEx + intStringLenmapvalue
 | |
| 					if postStringIndexmapvalue > l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
 | |
| 					iNdEx = postStringIndexmapvalue
 | |
| 				} else {
 | |
| 					iNdEx = entryPreIndex
 | |
| 					skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 					if err != nil {
 | |
| 						return err
 | |
| 					}
 | |
| 					if skippy < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					if (iNdEx + skippy) > postIndex {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					iNdEx += skippy
 | |
| 				}
 | |
| 			}
 | |
| 			m.ExportAttrsDeprecated[mapkey] = mapvalue
 | |
| 			iNdEx = postIndex
 | |
| 		case 4:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Exports", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Exports = append(m.Exports, &CacheOptionsEntry{})
 | |
| 			if err := m.Exports[len(m.Exports)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 5:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Imports", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Imports = append(m.Imports, &CacheOptionsEntry{})
 | |
| 			if err := m.Imports[len(m.Imports)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *CacheOptionsEntry) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: CacheOptionsEntry: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: CacheOptionsEntry: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Type = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 2:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Attrs", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.Attrs == nil {
 | |
| 				m.Attrs = make(map[string]string)
 | |
| 			}
 | |
| 			var mapkey string
 | |
| 			var mapvalue string
 | |
| 			for iNdEx < postIndex {
 | |
| 				entryPreIndex := iNdEx
 | |
| 				var wire uint64
 | |
| 				for shift := uint(0); ; shift += 7 {
 | |
| 					if shift >= 64 {
 | |
| 						return ErrIntOverflowControl
 | |
| 					}
 | |
| 					if iNdEx >= l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					b := dAtA[iNdEx]
 | |
| 					iNdEx++
 | |
| 					wire |= (uint64(b) & 0x7F) << shift
 | |
| 					if b < 0x80 {
 | |
| 						break
 | |
| 					}
 | |
| 				}
 | |
| 				fieldNum := int32(wire >> 3)
 | |
| 				if fieldNum == 1 {
 | |
| 					var stringLenmapkey uint64
 | |
| 					for shift := uint(0); ; shift += 7 {
 | |
| 						if shift >= 64 {
 | |
| 							return ErrIntOverflowControl
 | |
| 						}
 | |
| 						if iNdEx >= l {
 | |
| 							return io.ErrUnexpectedEOF
 | |
| 						}
 | |
| 						b := dAtA[iNdEx]
 | |
| 						iNdEx++
 | |
| 						stringLenmapkey |= (uint64(b) & 0x7F) << shift
 | |
| 						if b < 0x80 {
 | |
| 							break
 | |
| 						}
 | |
| 					}
 | |
| 					intStringLenmapkey := int(stringLenmapkey)
 | |
| 					if intStringLenmapkey < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					postStringIndexmapkey := iNdEx + intStringLenmapkey
 | |
| 					if postStringIndexmapkey > l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
 | |
| 					iNdEx = postStringIndexmapkey
 | |
| 				} else if fieldNum == 2 {
 | |
| 					var stringLenmapvalue uint64
 | |
| 					for shift := uint(0); ; shift += 7 {
 | |
| 						if shift >= 64 {
 | |
| 							return ErrIntOverflowControl
 | |
| 						}
 | |
| 						if iNdEx >= l {
 | |
| 							return io.ErrUnexpectedEOF
 | |
| 						}
 | |
| 						b := dAtA[iNdEx]
 | |
| 						iNdEx++
 | |
| 						stringLenmapvalue |= (uint64(b) & 0x7F) << shift
 | |
| 						if b < 0x80 {
 | |
| 							break
 | |
| 						}
 | |
| 					}
 | |
| 					intStringLenmapvalue := int(stringLenmapvalue)
 | |
| 					if intStringLenmapvalue < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					postStringIndexmapvalue := iNdEx + intStringLenmapvalue
 | |
| 					if postStringIndexmapvalue > l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
 | |
| 					iNdEx = postStringIndexmapvalue
 | |
| 				} else {
 | |
| 					iNdEx = entryPreIndex
 | |
| 					skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 					if err != nil {
 | |
| 						return err
 | |
| 					}
 | |
| 					if skippy < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					if (iNdEx + skippy) > postIndex {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					iNdEx += skippy
 | |
| 				}
 | |
| 			}
 | |
| 			m.Attrs[mapkey] = mapvalue
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *SolveResponse) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: SolveResponse: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: SolveResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field ExporterResponse", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.ExporterResponse == nil {
 | |
| 				m.ExporterResponse = make(map[string]string)
 | |
| 			}
 | |
| 			var mapkey string
 | |
| 			var mapvalue string
 | |
| 			for iNdEx < postIndex {
 | |
| 				entryPreIndex := iNdEx
 | |
| 				var wire uint64
 | |
| 				for shift := uint(0); ; shift += 7 {
 | |
| 					if shift >= 64 {
 | |
| 						return ErrIntOverflowControl
 | |
| 					}
 | |
| 					if iNdEx >= l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					b := dAtA[iNdEx]
 | |
| 					iNdEx++
 | |
| 					wire |= (uint64(b) & 0x7F) << shift
 | |
| 					if b < 0x80 {
 | |
| 						break
 | |
| 					}
 | |
| 				}
 | |
| 				fieldNum := int32(wire >> 3)
 | |
| 				if fieldNum == 1 {
 | |
| 					var stringLenmapkey uint64
 | |
| 					for shift := uint(0); ; shift += 7 {
 | |
| 						if shift >= 64 {
 | |
| 							return ErrIntOverflowControl
 | |
| 						}
 | |
| 						if iNdEx >= l {
 | |
| 							return io.ErrUnexpectedEOF
 | |
| 						}
 | |
| 						b := dAtA[iNdEx]
 | |
| 						iNdEx++
 | |
| 						stringLenmapkey |= (uint64(b) & 0x7F) << shift
 | |
| 						if b < 0x80 {
 | |
| 							break
 | |
| 						}
 | |
| 					}
 | |
| 					intStringLenmapkey := int(stringLenmapkey)
 | |
| 					if intStringLenmapkey < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					postStringIndexmapkey := iNdEx + intStringLenmapkey
 | |
| 					if postStringIndexmapkey > l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
 | |
| 					iNdEx = postStringIndexmapkey
 | |
| 				} else if fieldNum == 2 {
 | |
| 					var stringLenmapvalue uint64
 | |
| 					for shift := uint(0); ; shift += 7 {
 | |
| 						if shift >= 64 {
 | |
| 							return ErrIntOverflowControl
 | |
| 						}
 | |
| 						if iNdEx >= l {
 | |
| 							return io.ErrUnexpectedEOF
 | |
| 						}
 | |
| 						b := dAtA[iNdEx]
 | |
| 						iNdEx++
 | |
| 						stringLenmapvalue |= (uint64(b) & 0x7F) << shift
 | |
| 						if b < 0x80 {
 | |
| 							break
 | |
| 						}
 | |
| 					}
 | |
| 					intStringLenmapvalue := int(stringLenmapvalue)
 | |
| 					if intStringLenmapvalue < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					postStringIndexmapvalue := iNdEx + intStringLenmapvalue
 | |
| 					if postStringIndexmapvalue > l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
 | |
| 					iNdEx = postStringIndexmapvalue
 | |
| 				} else {
 | |
| 					iNdEx = entryPreIndex
 | |
| 					skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 					if err != nil {
 | |
| 						return err
 | |
| 					}
 | |
| 					if skippy < 0 {
 | |
| 						return ErrInvalidLengthControl
 | |
| 					}
 | |
| 					if (iNdEx + skippy) > postIndex {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					iNdEx += skippy
 | |
| 				}
 | |
| 			}
 | |
| 			m.ExporterResponse[mapkey] = mapvalue
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *StatusRequest) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: StatusRequest: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: StatusRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Ref", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Ref = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *StatusResponse) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: StatusResponse: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: StatusResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Vertexes", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Vertexes = append(m.Vertexes, &Vertex{})
 | |
| 			if err := m.Vertexes[len(m.Vertexes)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 2:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Statuses", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Statuses = append(m.Statuses, &VertexStatus{})
 | |
| 			if err := m.Statuses[len(m.Statuses)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 3:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Logs", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Logs = append(m.Logs, &VertexLog{})
 | |
| 			if err := m.Logs[len(m.Logs)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *Vertex) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: Vertex: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: Vertex: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Digest", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Digest = github_com_opencontainers_go_digest.Digest(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 2:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Inputs", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Inputs = append(m.Inputs, github_com_opencontainers_go_digest.Digest(dAtA[iNdEx:postIndex]))
 | |
| 			iNdEx = postIndex
 | |
| 		case 3:
 | |
| 			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 ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Name = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 4:
 | |
| 			if wireType != 0 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Cached", wireType)
 | |
| 			}
 | |
| 			var v int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				v |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			m.Cached = bool(v != 0)
 | |
| 		case 5:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Started", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.Started == nil {
 | |
| 				m.Started = new(time.Time)
 | |
| 			}
 | |
| 			if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.Started, dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 6:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Completed", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.Completed == nil {
 | |
| 				m.Completed = new(time.Time)
 | |
| 			}
 | |
| 			if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.Completed, dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 7:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Error = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *VertexStatus) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: VertexStatus: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: VertexStatus: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.ID = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 2:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Vertex", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Vertex = github_com_opencontainers_go_digest.Digest(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 3:
 | |
| 			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 ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Name = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 4:
 | |
| 			if wireType != 0 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Current", wireType)
 | |
| 			}
 | |
| 			m.Current = 0
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				m.Current |= (int64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 		case 5:
 | |
| 			if wireType != 0 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Total", wireType)
 | |
| 			}
 | |
| 			m.Total = 0
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				m.Total |= (int64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 		case 6:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.Timestamp, dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 7:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Started", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.Started == nil {
 | |
| 				m.Started = new(time.Time)
 | |
| 			}
 | |
| 			if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.Started, dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 8:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Completed", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.Completed == nil {
 | |
| 				m.Completed = new(time.Time)
 | |
| 			}
 | |
| 			if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.Completed, dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *VertexLog) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: VertexLog: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: VertexLog: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Vertex", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Vertex = github_com_opencontainers_go_digest.Digest(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 2:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.Timestamp, dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		case 3:
 | |
| 			if wireType != 0 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Stream", wireType)
 | |
| 			}
 | |
| 			m.Stream = 0
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				m.Stream |= (int64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 		case 4:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Msg", wireType)
 | |
| 			}
 | |
| 			var byteLen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				byteLen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if byteLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + byteLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Msg = append(m.Msg[:0], dAtA[iNdEx:postIndex]...)
 | |
| 			if m.Msg == nil {
 | |
| 				m.Msg = []byte{}
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *BytesMessage) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: BytesMessage: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: BytesMessage: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType)
 | |
| 			}
 | |
| 			var byteLen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				byteLen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if byteLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + byteLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...)
 | |
| 			if m.Data == nil {
 | |
| 				m.Data = []byte{}
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *ListWorkersRequest) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: ListWorkersRequest: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: ListWorkersRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Filter", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				stringLen |= (uint64(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			intStringLen := int(stringLen)
 | |
| 			if intStringLen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Filter = append(m.Filter, string(dAtA[iNdEx:postIndex]))
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func (m *ListWorkersResponse) 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 ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			iNdEx++
 | |
| 			wire |= (uint64(b) & 0x7F) << shift
 | |
| 			if b < 0x80 {
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 		fieldNum := int32(wire >> 3)
 | |
| 		wireType := int(wire & 0x7)
 | |
| 		if wireType == 4 {
 | |
| 			return fmt.Errorf("proto: ListWorkersResponse: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: ListWorkersResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Record", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Record = append(m.Record, &types.WorkerRecord{})
 | |
| 			if err := m.Record[len(m.Record)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipControl(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthControl
 | |
| 			}
 | |
| 			if (iNdEx + skippy) > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | |
| 			iNdEx += skippy
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if iNdEx > l {
 | |
| 		return io.ErrUnexpectedEOF
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| func skipControl(dAtA []byte) (n int, err error) {
 | |
| 	l := len(dAtA)
 | |
| 	iNdEx := 0
 | |
| 	for iNdEx < l {
 | |
| 		var wire uint64
 | |
| 		for shift := uint(0); ; shift += 7 {
 | |
| 			if shift >= 64 {
 | |
| 				return 0, ErrIntOverflowControl
 | |
| 			}
 | |
| 			if iNdEx >= l {
 | |
| 				return 0, io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			b := dAtA[iNdEx]
 | |
| 			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, ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return 0, io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				iNdEx++
 | |
| 				if dAtA[iNdEx-1] < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			return iNdEx, nil
 | |
| 		case 1:
 | |
| 			iNdEx += 8
 | |
| 			return iNdEx, nil
 | |
| 		case 2:
 | |
| 			var length int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return 0, ErrIntOverflowControl
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return 0, io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				length |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			iNdEx += length
 | |
| 			if length < 0 {
 | |
| 				return 0, ErrInvalidLengthControl
 | |
| 			}
 | |
| 			return iNdEx, nil
 | |
| 		case 3:
 | |
| 			for {
 | |
| 				var innerWire uint64
 | |
| 				var start int = iNdEx
 | |
| 				for shift := uint(0); ; shift += 7 {
 | |
| 					if shift >= 64 {
 | |
| 						return 0, ErrIntOverflowControl
 | |
| 					}
 | |
| 					if iNdEx >= l {
 | |
| 						return 0, io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					b := dAtA[iNdEx]
 | |
| 					iNdEx++
 | |
| 					innerWire |= (uint64(b) & 0x7F) << shift
 | |
| 					if b < 0x80 {
 | |
| 						break
 | |
| 					}
 | |
| 				}
 | |
| 				innerWireType := int(innerWire & 0x7)
 | |
| 				if innerWireType == 4 {
 | |
| 					break
 | |
| 				}
 | |
| 				next, err := skipControl(dAtA[start:])
 | |
| 				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")
 | |
| }
 | |
| 
 | |
| var (
 | |
| 	ErrInvalidLengthControl = fmt.Errorf("proto: negative length found during unmarshaling")
 | |
| 	ErrIntOverflowControl   = fmt.Errorf("proto: integer overflow")
 | |
| )
 | |
| 
 | |
| func init() { proto.RegisterFile("control.proto", fileDescriptor_control_86d7f5d7b8f10de2) }
 | |
| 
 | |
| var fileDescriptor_control_86d7f5d7b8f10de2 = []byte{
 | |
| 	// 1359 bytes of a gzipped FileDescriptorProto
 | |
| 	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0x4b, 0x6f, 0x1b, 0xb7,
 | |
| 	0x16, 0xce, 0x48, 0xd6, 0xeb, 0x48, 0x0e, 0x1c, 0x26, 0x37, 0x18, 0xcc, 0xc5, 0xb5, 0x75, 0x27,
 | |
| 	0x2d, 0x20, 0x04, 0xc9, 0xc8, 0x71, 0x9b, 0x22, 0x35, 0xda, 0x22, 0x91, 0x95, 0x22, 0x0e, 0x62,
 | |
| 	0x34, 0xa0, 0x93, 0x06, 0xe8, 0xa2, 0xc0, 0x48, 0xa2, 0x95, 0x81, 0x47, 0xc3, 0x29, 0xc9, 0x71,
 | |
| 	0xa3, 0xfe, 0x80, 0xae, 0xfb, 0x2f, 0xba, 0xea, 0xaa, 0x8b, 0xfe, 0x82, 0x02, 0x59, 0x76, 0x9d,
 | |
| 	0x85, 0x5b, 0x64, 0xdf, 0xae, 0xba, 0xe9, 0xae, 0xe0, 0x63, 0x64, 0xca, 0x92, 0xfc, 0xca, 0x6a,
 | |
| 	0x78, 0x38, 0xe7, 0xfb, 0x78, 0x5e, 0x24, 0x0f, 0x61, 0xb9, 0x4f, 0x13, 0xc1, 0x68, 0x1c, 0xa4,
 | |
| 	0x8c, 0x0a, 0x8a, 0x56, 0x46, 0xb4, 0x37, 0x0e, 0x7a, 0x59, 0x14, 0x0f, 0xf6, 0x23, 0x11, 0x1c,
 | |
| 	0xdc, 0xf1, 0x6e, 0x0f, 0x23, 0xf1, 0x32, 0xeb, 0x05, 0x7d, 0x3a, 0x6a, 0x0f, 0xe9, 0x90, 0xb6,
 | |
| 	0x95, 0x62, 0x2f, 0xdb, 0x53, 0x92, 0x12, 0xd4, 0x48, 0x13, 0x78, 0x6b, 0x43, 0x4a, 0x87, 0x31,
 | |
| 	0x39, 0xd2, 0x12, 0xd1, 0x88, 0x70, 0x11, 0x8e, 0x52, 0xa3, 0x70, 0xcb, 0xe2, 0x93, 0x8b, 0xb5,
 | |
| 	0xf3, 0xc5, 0xda, 0x9c, 0xc6, 0x07, 0x84, 0xb5, 0xd3, 0x5e, 0x9b, 0xa6, 0xdc, 0x68, 0xb7, 0x17,
 | |
| 	0x6a, 0x87, 0x69, 0xd4, 0x16, 0xe3, 0x94, 0xf0, 0xf6, 0xb7, 0x94, 0xed, 0x13, 0xa6, 0x01, 0xfe,
 | |
| 	0xf7, 0x0e, 0x34, 0x9e, 0xb2, 0x2c, 0x21, 0x98, 0x7c, 0x93, 0x11, 0x2e, 0xd0, 0x75, 0x28, 0xef,
 | |
| 	0x45, 0xb1, 0x20, 0xcc, 0x75, 0x9a, 0xc5, 0x56, 0x0d, 0x1b, 0x09, 0xad, 0x40, 0x31, 0x8c, 0x63,
 | |
| 	0xb7, 0xd0, 0x74, 0x5a, 0x55, 0x2c, 0x87, 0xa8, 0x05, 0x8d, 0x7d, 0x42, 0xd2, 0x6e, 0xc6, 0x42,
 | |
| 	0x11, 0xd1, 0xc4, 0x2d, 0x36, 0x9d, 0x56, 0xb1, 0xb3, 0xf4, 0xfa, 0x70, 0xcd, 0xc1, 0x53, 0x7f,
 | |
| 	0x90, 0x0f, 0x35, 0x29, 0x77, 0xc6, 0x82, 0x70, 0x77, 0xc9, 0x52, 0x3b, 0x9a, 0xf6, 0x6f, 0xc2,
 | |
| 	0x4a, 0x37, 0xe2, 0xfb, 0xcf, 0x79, 0x38, 0x3c, 0xcd, 0x16, 0xff, 0x31, 0x5c, 0xb1, 0x74, 0x79,
 | |
| 	0x4a, 0x13, 0x4e, 0xd0, 0x5d, 0x28, 0x33, 0xd2, 0xa7, 0x6c, 0xa0, 0x94, 0xeb, 0x1b, 0xff, 0x0b,
 | |
| 	0x8e, 0xe7, 0x26, 0x30, 0x00, 0xa9, 0x84, 0x8d, 0xb2, 0xff, 0x4f, 0x01, 0xea, 0xd6, 0x3c, 0xba,
 | |
| 	0x0c, 0x85, 0xed, 0xae, 0xeb, 0x34, 0x9d, 0x56, 0x0d, 0x17, 0xb6, 0xbb, 0xc8, 0x85, 0xca, 0x4e,
 | |
| 	0x26, 0xc2, 0x5e, 0x4c, 0x8c, 0xef, 0xb9, 0x88, 0xae, 0x41, 0x69, 0x3b, 0x79, 0xce, 0x89, 0x72,
 | |
| 	0xbc, 0x8a, 0xb5, 0x80, 0x10, 0x2c, 0xed, 0x46, 0xdf, 0x11, 0xed, 0x26, 0x56, 0x63, 0xe9, 0xc7,
 | |
| 	0xd3, 0x90, 0x91, 0x44, 0xb8, 0x25, 0xc5, 0x6b, 0x24, 0xd4, 0x81, 0xda, 0x16, 0x23, 0xa1, 0x20,
 | |
| 	0x83, 0x07, 0xc2, 0x2d, 0x37, 0x9d, 0x56, 0x7d, 0xc3, 0x0b, 0x74, 0x41, 0x04, 0x79, 0x41, 0x04,
 | |
| 	0xcf, 0xf2, 0x82, 0xe8, 0x54, 0x5f, 0x1f, 0xae, 0x5d, 0xfa, 0xe1, 0x77, 0x19, 0xb7, 0x09, 0x0c,
 | |
| 	0xdd, 0x07, 0x78, 0x12, 0x72, 0xf1, 0x9c, 0x2b, 0x92, 0xca, 0xa9, 0x24, 0x4b, 0x8a, 0xc0, 0xc2,
 | |
| 	0xa0, 0x55, 0x00, 0x15, 0x80, 0x2d, 0x9a, 0x25, 0xc2, 0xad, 0x2a, 0xbb, 0xad, 0x19, 0xd4, 0x84,
 | |
| 	0x7a, 0x97, 0xf0, 0x3e, 0x8b, 0x52, 0x95, 0xe6, 0x9a, 0x72, 0xc1, 0x9e, 0x92, 0x0c, 0x3a, 0x7a,
 | |
| 	0xcf, 0xc6, 0x29, 0x71, 0x41, 0x29, 0x58, 0x33, 0xd2, 0xff, 0xdd, 0x97, 0x21, 0x23, 0x03, 0xb7,
 | |
| 	0xae, 0x42, 0x65, 0x24, 0xff, 0xef, 0x25, 0x68, 0xec, 0xca, 0x2a, 0xce, 0x13, 0xbe, 0x02, 0x45,
 | |
| 	0x4c, 0xf6, 0x4c, 0xf4, 0xe5, 0x10, 0x05, 0x00, 0x5d, 0xb2, 0x17, 0x25, 0x91, 0x5a, 0xbb, 0xa0,
 | |
| 	0xdc, 0xbb, 0x1c, 0xa4, 0xbd, 0xe0, 0x68, 0x16, 0x5b, 0x1a, 0xc8, 0x83, 0xea, 0xc3, 0x57, 0x29,
 | |
| 	0x65, 0xb2, 0x68, 0x8a, 0x8a, 0x66, 0x22, 0xa3, 0x17, 0xb0, 0x9c, 0x8f, 0x1f, 0x08, 0xc1, 0x64,
 | |
| 	0x29, 0xca, 0x42, 0xb9, 0x33, 0x5b, 0x28, 0xb6, 0x51, 0xc1, 0x14, 0xe6, 0x61, 0x22, 0xd8, 0x18,
 | |
| 	0x4f, 0xf3, 0xc8, 0x1a, 0xd9, 0x25, 0x9c, 0x4b, 0x0b, 0x75, 0x82, 0x73, 0x51, 0x9a, 0xf3, 0x39,
 | |
| 	0xa3, 0x89, 0x20, 0xc9, 0x40, 0x25, 0xb8, 0x86, 0x27, 0xb2, 0x34, 0x27, 0x1f, 0x6b, 0x73, 0x2a,
 | |
| 	0x67, 0x32, 0x67, 0x0a, 0x63, 0xcc, 0x99, 0x9a, 0x43, 0x9b, 0x50, 0xda, 0x0a, 0xfb, 0x2f, 0x89,
 | |
| 	0xca, 0x65, 0x7d, 0x63, 0x75, 0x96, 0x50, 0xfd, 0xfe, 0x42, 0x25, 0x8f, 0xab, 0xad, 0x78, 0x09,
 | |
| 	0x6b, 0x08, 0xfa, 0x1a, 0x1a, 0x0f, 0x13, 0x11, 0x89, 0x98, 0x8c, 0x48, 0x22, 0xb8, 0x5b, 0x93,
 | |
| 	0x1b, 0xaf, 0xb3, 0xf9, 0xe6, 0x70, 0xed, 0xa3, 0x85, 0x47, 0x4b, 0x26, 0xa2, 0xb8, 0x4d, 0x2c,
 | |
| 	0x54, 0x60, 0x51, 0xe0, 0x29, 0x3e, 0xef, 0x3e, 0xa0, 0xd9, 0x78, 0xca, 0xbc, 0xef, 0x93, 0x71,
 | |
| 	0x9e, 0xf7, 0x7d, 0x32, 0x96, 0x9b, 0xeb, 0x20, 0x8c, 0x33, 0xbd, 0xe9, 0x6a, 0x58, 0x0b, 0x9b,
 | |
| 	0x85, 0x7b, 0x8e, 0x64, 0x98, 0x0d, 0xc1, 0x79, 0x18, 0xfc, 0x9f, 0x8a, 0xd0, 0xb0, 0x23, 0x80,
 | |
| 	0xd6, 0xe1, 0xaa, 0x36, 0x0a, 0x93, 0xbd, 0x2e, 0x49, 0x19, 0xe9, 0xcb, 0xcd, 0x65, 0xc8, 0xe6,
 | |
| 	0xfd, 0x42, 0x1b, 0x70, 0x6d, 0x7b, 0x64, 0xa6, 0xb9, 0x05, 0x29, 0xa8, 0x73, 0x6a, 0xee, 0x3f,
 | |
| 	0x44, 0xe1, 0x3f, 0x9a, 0x4a, 0x99, 0x6d, 0x81, 0x8a, 0x2a, 0xef, 0x1f, 0x9f, 0x9c, 0xa6, 0x60,
 | |
| 	0x2e, 0x56, 0xe7, 0x7f, 0x3e, 0x2f, 0xfa, 0x14, 0x2a, 0xfa, 0x47, 0x5e, 0xe9, 0x37, 0x4e, 0x5e,
 | |
| 	0x42, 0x93, 0xe5, 0x18, 0x09, 0xd7, 0x7e, 0x70, 0xb7, 0x74, 0x0e, 0xb8, 0xc1, 0x78, 0x8f, 0xc0,
 | |
| 	0x5b, 0x6c, 0xf2, 0xb9, 0xf2, 0xf5, 0xa3, 0x03, 0x57, 0x66, 0x16, 0x92, 0x07, 0xad, 0x3a, 0x6e,
 | |
| 	0x34, 0x85, 0x1a, 0xa3, 0x2e, 0x94, 0xf4, 0x56, 0x2a, 0x28, 0x83, 0x83, 0x33, 0x18, 0x1c, 0x58,
 | |
| 	0xfb, 0x48, 0x83, 0xbd, 0x7b, 0x00, 0x17, 0xac, 0xac, 0x5f, 0x1c, 0x58, 0x36, 0x9b, 0xd5, 0xdc,
 | |
| 	0x4a, 0x21, 0xac, 0xe4, 0xf5, 0x9e, 0xcf, 0x99, 0xfb, 0xe9, 0xee, 0xc2, 0x7d, 0xae, 0xd5, 0x82,
 | |
| 	0xe3, 0x38, 0x6d, 0xe3, 0x0c, 0x9d, 0xb7, 0x95, 0xd7, 0xd5, 0x31, 0xd5, 0x73, 0x59, 0xfe, 0x7f,
 | |
| 	0x58, 0xde, 0x15, 0xa1, 0xc8, 0xf8, 0xc2, 0xa3, 0xd8, 0xff, 0xd9, 0x81, 0xcb, 0xb9, 0x8e, 0xf1,
 | |
| 	0xee, 0x43, 0xa8, 0x1e, 0x10, 0x26, 0xc8, 0x2b, 0xc2, 0x8d, 0x57, 0xee, 0xac, 0x57, 0x5f, 0x2a,
 | |
| 	0x0d, 0x3c, 0xd1, 0x44, 0x9b, 0x50, 0xe5, 0x8a, 0x87, 0xe4, 0x89, 0x5a, 0x5d, 0x84, 0x32, 0xeb,
 | |
| 	0x4d, 0xf4, 0x51, 0x1b, 0x96, 0x62, 0x3a, 0xe4, 0x66, 0xcf, 0xfc, 0x77, 0x11, 0xee, 0x09, 0x1d,
 | |
| 	0x62, 0xa5, 0xe8, 0x1f, 0x16, 0xa0, 0xac, 0xe7, 0xd0, 0x63, 0x28, 0x0f, 0xa2, 0x21, 0xe1, 0x42,
 | |
| 	0x7b, 0xd5, 0xd9, 0x90, 0x07, 0xdf, 0x9b, 0xc3, 0xb5, 0x9b, 0xd6, 0xc9, 0x46, 0x53, 0x92, 0xc8,
 | |
| 	0x16, 0x2f, 0x8c, 0x12, 0xc2, 0x78, 0x7b, 0x48, 0x6f, 0x6b, 0x48, 0xd0, 0x55, 0x1f, 0x6c, 0x18,
 | |
| 	0x24, 0x57, 0x94, 0xa4, 0x99, 0xd0, 0x1e, 0x5c, 0x90, 0x4b, 0x33, 0xc8, 0x4a, 0x4e, 0xc2, 0x11,
 | |
| 	0x31, 0xf7, 0x95, 0x1a, 0xcb, 0x2b, 0xb3, 0x2f, 0x4b, 0x75, 0xa0, 0x1a, 0x89, 0x2a, 0x36, 0x12,
 | |
| 	0xda, 0x84, 0x0a, 0x17, 0x21, 0x93, 0xc7, 0x46, 0xe9, 0x8c, 0x77, 0x7d, 0x0e, 0x40, 0x9f, 0x41,
 | |
| 	0xad, 0x4f, 0x47, 0x69, 0x4c, 0x24, 0xba, 0x7c, 0x46, 0xf4, 0x11, 0x44, 0x56, 0x0f, 0x61, 0x8c,
 | |
| 	0x32, 0xd5, 0x65, 0xd4, 0xb0, 0x16, 0xfc, 0xbf, 0x0a, 0xd0, 0xb0, 0x93, 0x35, 0xd3, 0x41, 0x3d,
 | |
| 	0x86, 0xb2, 0x4e, 0xbd, 0xae, 0xba, 0x8b, 0x85, 0x4a, 0x33, 0xcc, 0x0d, 0x95, 0x0b, 0x95, 0x7e,
 | |
| 	0xc6, 0x54, 0x7b, 0xa5, 0x9b, 0xae, 0x5c, 0x94, 0x06, 0x0b, 0x2a, 0xc2, 0x58, 0x85, 0xaa, 0x88,
 | |
| 	0xb5, 0x20, 0xbb, 0xae, 0x49, 0x93, 0x7d, 0xbe, 0xae, 0x6b, 0x02, 0xb3, 0xd3, 0x50, 0x79, 0xa7,
 | |
| 	0x34, 0x54, 0xcf, 0x9d, 0x06, 0xff, 0x57, 0x07, 0x6a, 0x93, 0x2a, 0xb7, 0xa2, 0xeb, 0xbc, 0x73,
 | |
| 	0x74, 0xa7, 0x22, 0x53, 0xb8, 0x58, 0x64, 0xae, 0x43, 0x99, 0x0b, 0x46, 0xc2, 0x91, 0x7e, 0x0f,
 | |
| 	0x60, 0x23, 0xc9, 0xf3, 0x64, 0xc4, 0x87, 0x2a, 0x43, 0x0d, 0x2c, 0x87, 0xbe, 0x0f, 0x0d, 0xd5,
 | |
| 	0xfa, 0xef, 0x10, 0x2e, 0x9b, 0x4d, 0x99, 0xdb, 0x41, 0x28, 0x42, 0xe5, 0x47, 0x03, 0xab, 0xb1,
 | |
| 	0x7f, 0x0b, 0xd0, 0x93, 0x88, 0x8b, 0x17, 0xea, 0xc9, 0xc2, 0x4f, 0x7b, 0x17, 0xec, 0xc2, 0xd5,
 | |
| 	0x29, 0x6d, 0x73, 0x4a, 0x7d, 0x72, 0xec, 0x65, 0xf0, 0xde, 0xec, 0xa9, 0xa1, 0x5e, 0x46, 0x81,
 | |
| 	0x06, 0x4e, 0x3f, 0x10, 0x36, 0xfe, 0x2c, 0x42, 0x65, 0x4b, 0x3f, 0xfa, 0xd0, 0x33, 0xa8, 0x4d,
 | |
| 	0x1e, 0x1e, 0xc8, 0x9f, 0xa5, 0x39, 0xfe, 0x82, 0xf1, 0x6e, 0x9c, 0xa8, 0x63, 0xec, 0x7b, 0x04,
 | |
| 	0x25, 0xf5, 0x04, 0x43, 0x73, 0x8e, 0x41, 0xfb, 0x6d, 0xe6, 0x9d, 0xfc, 0xa4, 0x59, 0x77, 0x24,
 | |
| 	0x93, 0xba, 0x43, 0xe6, 0x31, 0xd9, 0x4d, 0xa4, 0xb7, 0x76, 0xca, 0xe5, 0x83, 0x76, 0xa0, 0x6c,
 | |
| 	0xb6, 0xf3, 0x3c, 0x55, 0xfb, 0xa6, 0xf0, 0x9a, 0x8b, 0x15, 0x34, 0xd9, 0xba, 0x83, 0x76, 0x26,
 | |
| 	0x1d, 0xf2, 0x3c, 0xd3, 0xec, 0x32, 0xf0, 0x4e, 0xf9, 0xdf, 0x72, 0xd6, 0x1d, 0xf4, 0x15, 0xd4,
 | |
| 	0xad, 0x44, 0xa3, 0x39, 0x09, 0x9d, 0xad, 0x1a, 0xef, 0xfd, 0x53, 0xb4, 0xb4, 0xb1, 0x9d, 0xc6,
 | |
| 	0xeb, 0xb7, 0xab, 0xce, 0x6f, 0x6f, 0x57, 0x9d, 0x3f, 0xde, 0xae, 0x3a, 0xbd, 0xb2, 0xaa, 0xfb,
 | |
| 	0x0f, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xd3, 0x7a, 0xbe, 0x54, 0xf8, 0x0f, 0x00, 0x00,
 | |
| }
 | 
