 9f0bc2b53f
			
		
	
	9f0bc2b53f
	
	
	
		
			
			Closes #1862 This adds a new rpc to the introspection service to provide server information with a generated UUID that is done on demand and the os and arch of the server. ctr output: ```bash > sudo ctr version Client: Version: v1.2.0-802-g57821695.m Revision: 578216950de9c1c188708369e2a31ac6c494dfee.m Server: Version: v1.2.0-802-g57821695.m Revision: 578216950de9c1c188708369e2a31ac6c494dfee.m UUID: 92e982a9-f13e-4a2c-9032-e69b27fed454 OS: linux ARCH: amd64 ``` Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
		
			
				
	
	
		
			1539 lines
		
	
	
		
			41 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			1539 lines
		
	
	
		
			41 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by protoc-gen-gogo. DO NOT EDIT.
 | |
| // source: github.com/containerd/containerd/api/services/introspection/v1/introspection.proto
 | |
| 
 | |
| package introspection
 | |
| 
 | |
| import (
 | |
| 	context "context"
 | |
| 	fmt "fmt"
 | |
| 	types "github.com/containerd/containerd/api/types"
 | |
| 	rpc "github.com/gogo/googleapis/google/rpc"
 | |
| 	proto "github.com/gogo/protobuf/proto"
 | |
| 	github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys"
 | |
| 	types1 "github.com/gogo/protobuf/types"
 | |
| 	grpc "google.golang.org/grpc"
 | |
| 	io "io"
 | |
| 	math "math"
 | |
| 	reflect "reflect"
 | |
| 	strings "strings"
 | |
| )
 | |
| 
 | |
| // Reference imports to suppress errors if they are not otherwise used.
 | |
| var _ = proto.Marshal
 | |
| var _ = fmt.Errorf
 | |
| var _ = math.Inf
 | |
| 
 | |
| // This is a compile-time assertion to ensure that this generated file
 | |
| // is compatible with the proto package it is being compiled against.
 | |
| // 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 Plugin struct {
 | |
| 	// Type defines the type of plugin.
 | |
| 	//
 | |
| 	// See package plugin for a list of possible values. Non core plugins may
 | |
| 	// define their own values during registration.
 | |
| 	Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
 | |
| 	// ID identifies the plugin uniquely in the system.
 | |
| 	ID string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
 | |
| 	// Requires lists the plugin types required by this plugin.
 | |
| 	Requires []string `protobuf:"bytes,3,rep,name=requires,proto3" json:"requires,omitempty"`
 | |
| 	// Platforms enumerates the platforms this plugin will support.
 | |
| 	//
 | |
| 	// If values are provided here, the plugin will only be operable under the
 | |
| 	// provided platforms.
 | |
| 	//
 | |
| 	// If this is empty, the plugin will work across all platforms.
 | |
| 	//
 | |
| 	// If the plugin prefers certain platforms over others, they should be
 | |
| 	// listed from most to least preferred.
 | |
| 	Platforms []types.Platform `protobuf:"bytes,4,rep,name=platforms,proto3" json:"platforms"`
 | |
| 	// Exports allows plugins to provide values about state or configuration to
 | |
| 	// interested parties.
 | |
| 	//
 | |
| 	// One example is exposing the configured path of a snapshotter plugin.
 | |
| 	Exports map[string]string `protobuf:"bytes,5,rep,name=exports,proto3" json:"exports,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 | |
| 	// Capabilities allows plugins to communicate feature switches to allow
 | |
| 	// clients to detect features that may not be on be default or may be
 | |
| 	// different from version to version.
 | |
| 	//
 | |
| 	// Use this sparingly.
 | |
| 	Capabilities []string `protobuf:"bytes,6,rep,name=capabilities,proto3" json:"capabilities,omitempty"`
 | |
| 	// InitErr will be set if the plugin fails initialization.
 | |
| 	//
 | |
| 	// This means the plugin may have been registered but a non-terminal error
 | |
| 	// was encountered during initialization.
 | |
| 	//
 | |
| 	// Plugins that have this value set cannot be used.
 | |
| 	InitErr              *rpc.Status `protobuf:"bytes,7,opt,name=init_err,json=initErr,proto3" json:"init_err,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
 | |
| 	XXX_unrecognized     []byte      `json:"-"`
 | |
| 	XXX_sizecache        int32       `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *Plugin) Reset()      { *m = Plugin{} }
 | |
| func (*Plugin) ProtoMessage() {}
 | |
| func (*Plugin) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_1a14fda866f10715, []int{0}
 | |
| }
 | |
| func (m *Plugin) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *Plugin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_Plugin.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 (m *Plugin) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_Plugin.Merge(m, src)
 | |
| }
 | |
| func (m *Plugin) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *Plugin) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_Plugin.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_Plugin proto.InternalMessageInfo
 | |
| 
 | |
| type PluginsRequest struct {
 | |
| 	// Filters contains one or more filters using the syntax defined in the
 | |
| 	// containerd filter package.
 | |
| 	//
 | |
| 	// The returned result will be those that match any of the provided
 | |
| 	// filters. Expanded, plugins that match the following will be
 | |
| 	// returned:
 | |
| 	//
 | |
| 	//   filters[0] or filters[1] or ... or filters[n-1] or filters[n]
 | |
| 	//
 | |
| 	// If filters is zero-length or nil, all items will be returned.
 | |
| 	Filters              []string `protobuf:"bytes,1,rep,name=filters,proto3" json:"filters,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *PluginsRequest) Reset()      { *m = PluginsRequest{} }
 | |
| func (*PluginsRequest) ProtoMessage() {}
 | |
| func (*PluginsRequest) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_1a14fda866f10715, []int{1}
 | |
| }
 | |
| func (m *PluginsRequest) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *PluginsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_PluginsRequest.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 (m *PluginsRequest) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_PluginsRequest.Merge(m, src)
 | |
| }
 | |
| func (m *PluginsRequest) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *PluginsRequest) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_PluginsRequest.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_PluginsRequest proto.InternalMessageInfo
 | |
| 
 | |
| type PluginsResponse struct {
 | |
| 	Plugins              []Plugin `protobuf:"bytes,1,rep,name=plugins,proto3" json:"plugins"`
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *PluginsResponse) Reset()      { *m = PluginsResponse{} }
 | |
| func (*PluginsResponse) ProtoMessage() {}
 | |
| func (*PluginsResponse) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_1a14fda866f10715, []int{2}
 | |
| }
 | |
| func (m *PluginsResponse) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *PluginsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_PluginsResponse.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 (m *PluginsResponse) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_PluginsResponse.Merge(m, src)
 | |
| }
 | |
| func (m *PluginsResponse) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *PluginsResponse) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_PluginsResponse.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_PluginsResponse proto.InternalMessageInfo
 | |
| 
 | |
| type ServerResponse struct {
 | |
| 	UUID                 string   `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *ServerResponse) Reset()      { *m = ServerResponse{} }
 | |
| func (*ServerResponse) ProtoMessage() {}
 | |
| func (*ServerResponse) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_1a14fda866f10715, []int{3}
 | |
| }
 | |
| func (m *ServerResponse) XXX_Unmarshal(b []byte) error {
 | |
| 	return m.Unmarshal(b)
 | |
| }
 | |
| func (m *ServerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	if deterministic {
 | |
| 		return xxx_messageInfo_ServerResponse.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 (m *ServerResponse) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_ServerResponse.Merge(m, src)
 | |
| }
 | |
| func (m *ServerResponse) XXX_Size() int {
 | |
| 	return m.Size()
 | |
| }
 | |
| func (m *ServerResponse) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_ServerResponse.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_ServerResponse proto.InternalMessageInfo
 | |
| 
 | |
| func init() {
 | |
| 	proto.RegisterType((*Plugin)(nil), "containerd.services.introspection.v1.Plugin")
 | |
| 	proto.RegisterMapType((map[string]string)(nil), "containerd.services.introspection.v1.Plugin.ExportsEntry")
 | |
| 	proto.RegisterType((*PluginsRequest)(nil), "containerd.services.introspection.v1.PluginsRequest")
 | |
| 	proto.RegisterType((*PluginsResponse)(nil), "containerd.services.introspection.v1.PluginsResponse")
 | |
| 	proto.RegisterType((*ServerResponse)(nil), "containerd.services.introspection.v1.ServerResponse")
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	proto.RegisterFile("github.com/containerd/containerd/api/services/introspection/v1/introspection.proto", fileDescriptor_1a14fda866f10715)
 | |
| }
 | |
| 
 | |
| var fileDescriptor_1a14fda866f10715 = []byte{
 | |
| 	// 549 bytes of a gzipped FileDescriptorProto
 | |
| 	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0xc1, 0x6e, 0xd3, 0x40,
 | |
| 	0x10, 0xad, 0x9d, 0x34, 0x6e, 0x37, 0xa5, 0xa0, 0x55, 0x55, 0x2c, 0x83, 0x9c, 0x28, 0xe2, 0x10,
 | |
| 	0x21, 0x58, 0xab, 0x01, 0x24, 0x5a, 0x24, 0x0e, 0x51, 0x73, 0x88, 0xd4, 0x43, 0xe5, 0xa8, 0x08,
 | |
| 	0x71, 0xa9, 0x1c, 0x67, 0x63, 0x56, 0x38, 0xde, 0xed, 0xee, 0xda, 0x22, 0x37, 0x3e, 0x2f, 0x47,
 | |
| 	0x8e, 0x9c, 0x02, 0xf5, 0x37, 0xf0, 0x01, 0xc8, 0xbb, 0x76, 0x9a, 0xdc, 0x12, 0x71, 0x9b, 0x79,
 | |
| 	0x33, 0x6f, 0xe6, 0xcd, 0xf3, 0xca, 0xc0, 0x8f, 0x88, 0xfc, 0x9a, 0x8e, 0x51, 0x48, 0x67, 0x5e,
 | |
| 	0x48, 0x13, 0x19, 0x90, 0x04, 0xf3, 0xc9, 0x7a, 0x18, 0x30, 0xe2, 0x09, 0xcc, 0x33, 0x12, 0x62,
 | |
| 	0xe1, 0x91, 0x44, 0x72, 0x2a, 0x18, 0x0e, 0x25, 0xa1, 0x89, 0x97, 0x9d, 0x6d, 0x02, 0x88, 0x71,
 | |
| 	0x2a, 0x29, 0x7c, 0xf1, 0xc0, 0x46, 0x15, 0x13, 0x6d, 0x36, 0x66, 0x67, 0xce, 0xf9, 0x56, 0x9b,
 | |
| 	0xe5, 0x9c, 0x61, 0xe1, 0xb1, 0x38, 0x90, 0x53, 0xca, 0x67, 0x7a, 0x81, 0xf3, 0x34, 0xa2, 0x34,
 | |
| 	0x8a, 0xb1, 0xc7, 0x59, 0xe8, 0x09, 0x19, 0xc8, 0x54, 0x94, 0x85, 0x67, 0x65, 0x41, 0x65, 0xe3,
 | |
| 	0x74, 0xea, 0xe1, 0x19, 0x93, 0xf3, 0xb2, 0x78, 0x12, 0xd1, 0x88, 0xaa, 0xd0, 0x2b, 0x22, 0x8d,
 | |
| 	0x76, 0xfe, 0x9a, 0xa0, 0x71, 0x1d, 0xa7, 0x11, 0x49, 0x20, 0x04, 0xf5, 0x62, 0x9d, 0x6d, 0xb4,
 | |
| 	0x8d, 0xee, 0xa1, 0xaf, 0x62, 0x78, 0x0a, 0x4c, 0x32, 0xb1, 0xcd, 0x02, 0xe9, 0x37, 0xf2, 0x65,
 | |
| 	0xcb, 0x1c, 0x5e, 0xfa, 0x26, 0x99, 0x40, 0x07, 0x1c, 0x70, 0x7c, 0x97, 0x12, 0x8e, 0x85, 0x5d,
 | |
| 	0x6b, 0xd7, 0xba, 0x87, 0xfe, 0x2a, 0x87, 0x1f, 0xc1, 0x61, 0x25, 0x58, 0xd8, 0xf5, 0x76, 0xad,
 | |
| 	0xdb, 0xec, 0x39, 0x68, 0xcd, 0x13, 0x75, 0x13, 0xba, 0x2e, 0x5b, 0xfa, 0xf5, 0xc5, 0xb2, 0xb5,
 | |
| 	0xe7, 0x3f, 0x50, 0xe0, 0x08, 0x58, 0xf8, 0x3b, 0xa3, 0x5c, 0x0a, 0x7b, 0x5f, 0xb1, 0xcf, 0xd1,
 | |
| 	0x36, 0x8e, 0x22, 0x7d, 0x06, 0x1a, 0x68, 0xee, 0x20, 0x91, 0x7c, 0xee, 0x57, 0x93, 0x60, 0x07,
 | |
| 	0x1c, 0x85, 0x01, 0x0b, 0xc6, 0x24, 0x26, 0x92, 0x60, 0x61, 0x37, 0x94, 0xe8, 0x0d, 0x0c, 0xbe,
 | |
| 	0x06, 0x07, 0x24, 0x21, 0xf2, 0x16, 0x73, 0x6e, 0x5b, 0x6d, 0xa3, 0xdb, 0xec, 0x41, 0xa4, 0x1d,
 | |
| 	0x45, 0x9c, 0x85, 0x68, 0xa4, 0xac, 0xf6, 0xad, 0xa2, 0x67, 0xc0, 0xb9, 0x73, 0x01, 0x8e, 0xd6,
 | |
| 	0x77, 0xc1, 0x27, 0xa0, 0xf6, 0x0d, 0xcf, 0x4b, 0xfb, 0x8a, 0x10, 0x9e, 0x80, 0xfd, 0x2c, 0x88,
 | |
| 	0x53, 0xac, 0x0d, 0xf4, 0x75, 0x72, 0x61, 0xbe, 0x37, 0x3a, 0x2f, 0xc1, 0xb1, 0x96, 0x2b, 0x7c,
 | |
| 	0x7c, 0x97, 0x62, 0x21, 0xa1, 0x0d, 0xac, 0x29, 0x89, 0x25, 0xe6, 0xc2, 0x36, 0x94, 0xb6, 0x2a,
 | |
| 	0xed, 0xdc, 0x82, 0xc7, 0xab, 0x5e, 0xc1, 0x68, 0x22, 0x30, 0xbc, 0x02, 0x16, 0xd3, 0x90, 0x6a,
 | |
| 	0x6e, 0xf6, 0x5e, 0xed, 0x62, 0x51, 0x69, 0x79, 0x35, 0xa2, 0x83, 0xc0, 0xf1, 0x08, 0xf3, 0x0c,
 | |
| 	0xf3, 0xd5, 0xfc, 0xe7, 0xa0, 0x9e, 0xa6, 0x64, 0xa2, 0x6f, 0xe9, 0x1f, 0xe4, 0xcb, 0x56, 0xfd,
 | |
| 	0xe6, 0x66, 0x78, 0xe9, 0x2b, 0xb4, 0xf7, 0xdb, 0x00, 0x8f, 0x86, 0xeb, 0xa3, 0x61, 0x06, 0xac,
 | |
| 	0x52, 0x22, 0x7c, 0xbb, 0x8b, 0x92, 0xea, 0x7a, 0xe7, 0xdd, 0x8e, 0xac, 0x52, 0xe7, 0x27, 0xd0,
 | |
| 	0xd0, 0xca, 0xe1, 0x69, 0xf5, 0xa5, 0xaa, 0xb7, 0x8f, 0x06, 0xc5, 0xdb, 0x77, 0xb6, 0x94, 0xb3,
 | |
| 	0x79, 0x7f, 0x7f, 0xba, 0xb8, 0x77, 0xf7, 0x7e, 0xdd, 0xbb, 0x7b, 0x3f, 0x72, 0xd7, 0x58, 0xe4,
 | |
| 	0xae, 0xf1, 0x33, 0x77, 0x8d, 0x3f, 0xb9, 0x6b, 0x7c, 0xb9, 0xfa, 0xbf, 0x1f, 0xc6, 0x87, 0x0d,
 | |
| 	0xe0, 0x73, 0x6d, 0xdc, 0x50, 0x7a, 0xdf, 0xfc, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x0c, 0xb3, 0x50,
 | |
| 	0xdc, 0x89, 0x04, 0x00, 0x00,
 | |
| }
 | |
| 
 | |
| // 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
 | |
| 
 | |
| // IntrospectionClient is the client API for Introspection service.
 | |
| //
 | |
| // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
 | |
| type IntrospectionClient interface {
 | |
| 	// Plugins returns a list of plugins in containerd.
 | |
| 	//
 | |
| 	// Clients can use this to detect features and capabilities when using
 | |
| 	// containerd.
 | |
| 	Plugins(ctx context.Context, in *PluginsRequest, opts ...grpc.CallOption) (*PluginsResponse, error)
 | |
| 	// Server returns information about the containerd server
 | |
| 	Server(ctx context.Context, in *types1.Empty, opts ...grpc.CallOption) (*ServerResponse, error)
 | |
| }
 | |
| 
 | |
| type introspectionClient struct {
 | |
| 	cc *grpc.ClientConn
 | |
| }
 | |
| 
 | |
| func NewIntrospectionClient(cc *grpc.ClientConn) IntrospectionClient {
 | |
| 	return &introspectionClient{cc}
 | |
| }
 | |
| 
 | |
| func (c *introspectionClient) Plugins(ctx context.Context, in *PluginsRequest, opts ...grpc.CallOption) (*PluginsResponse, error) {
 | |
| 	out := new(PluginsResponse)
 | |
| 	err := c.cc.Invoke(ctx, "/containerd.services.introspection.v1.Introspection/Plugins", in, out, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| func (c *introspectionClient) Server(ctx context.Context, in *types1.Empty, opts ...grpc.CallOption) (*ServerResponse, error) {
 | |
| 	out := new(ServerResponse)
 | |
| 	err := c.cc.Invoke(ctx, "/containerd.services.introspection.v1.Introspection/Server", in, out, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| // IntrospectionServer is the server API for Introspection service.
 | |
| type IntrospectionServer interface {
 | |
| 	// Plugins returns a list of plugins in containerd.
 | |
| 	//
 | |
| 	// Clients can use this to detect features and capabilities when using
 | |
| 	// containerd.
 | |
| 	Plugins(context.Context, *PluginsRequest) (*PluginsResponse, error)
 | |
| 	// Server returns information about the containerd server
 | |
| 	Server(context.Context, *types1.Empty) (*ServerResponse, error)
 | |
| }
 | |
| 
 | |
| func RegisterIntrospectionServer(s *grpc.Server, srv IntrospectionServer) {
 | |
| 	s.RegisterService(&_Introspection_serviceDesc, srv)
 | |
| }
 | |
| 
 | |
| func _Introspection_Plugins_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(PluginsRequest)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(IntrospectionServer).Plugins(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: "/containerd.services.introspection.v1.Introspection/Plugins",
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(IntrospectionServer).Plugins(ctx, req.(*PluginsRequest))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| func _Introspection_Server_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(types1.Empty)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(IntrospectionServer).Server(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: "/containerd.services.introspection.v1.Introspection/Server",
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(IntrospectionServer).Server(ctx, req.(*types1.Empty))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| var _Introspection_serviceDesc = grpc.ServiceDesc{
 | |
| 	ServiceName: "containerd.services.introspection.v1.Introspection",
 | |
| 	HandlerType: (*IntrospectionServer)(nil),
 | |
| 	Methods: []grpc.MethodDesc{
 | |
| 		{
 | |
| 			MethodName: "Plugins",
 | |
| 			Handler:    _Introspection_Plugins_Handler,
 | |
| 		},
 | |
| 		{
 | |
| 			MethodName: "Server",
 | |
| 			Handler:    _Introspection_Server_Handler,
 | |
| 		},
 | |
| 	},
 | |
| 	Streams:  []grpc.StreamDesc{},
 | |
| 	Metadata: "github.com/containerd/containerd/api/services/introspection/v1/introspection.proto",
 | |
| }
 | |
| 
 | |
| func (m *Plugin) 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 *Plugin) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Type) > 0 {
 | |
| 		dAtA[i] = 0xa
 | |
| 		i++
 | |
| 		i = encodeVarintIntrospection(dAtA, i, uint64(len(m.Type)))
 | |
| 		i += copy(dAtA[i:], m.Type)
 | |
| 	}
 | |
| 	if len(m.ID) > 0 {
 | |
| 		dAtA[i] = 0x12
 | |
| 		i++
 | |
| 		i = encodeVarintIntrospection(dAtA, i, uint64(len(m.ID)))
 | |
| 		i += copy(dAtA[i:], m.ID)
 | |
| 	}
 | |
| 	if len(m.Requires) > 0 {
 | |
| 		for _, s := range m.Requires {
 | |
| 			dAtA[i] = 0x1a
 | |
| 			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.Platforms) > 0 {
 | |
| 		for _, msg := range m.Platforms {
 | |
| 			dAtA[i] = 0x22
 | |
| 			i++
 | |
| 			i = encodeVarintIntrospection(dAtA, i, uint64(msg.Size()))
 | |
| 			n, err := msg.MarshalTo(dAtA[i:])
 | |
| 			if err != nil {
 | |
| 				return 0, err
 | |
| 			}
 | |
| 			i += n
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Exports) > 0 {
 | |
| 		for k, _ := range m.Exports {
 | |
| 			dAtA[i] = 0x2a
 | |
| 			i++
 | |
| 			v := m.Exports[k]
 | |
| 			mapSize := 1 + len(k) + sovIntrospection(uint64(len(k))) + 1 + len(v) + sovIntrospection(uint64(len(v)))
 | |
| 			i = encodeVarintIntrospection(dAtA, i, uint64(mapSize))
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			i = encodeVarintIntrospection(dAtA, i, uint64(len(k)))
 | |
| 			i += copy(dAtA[i:], k)
 | |
| 			dAtA[i] = 0x12
 | |
| 			i++
 | |
| 			i = encodeVarintIntrospection(dAtA, i, uint64(len(v)))
 | |
| 			i += copy(dAtA[i:], v)
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Capabilities) > 0 {
 | |
| 		for _, s := range m.Capabilities {
 | |
| 			dAtA[i] = 0x32
 | |
| 			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.InitErr != nil {
 | |
| 		dAtA[i] = 0x3a
 | |
| 		i++
 | |
| 		i = encodeVarintIntrospection(dAtA, i, uint64(m.InitErr.Size()))
 | |
| 		n1, err := m.InitErr.MarshalTo(dAtA[i:])
 | |
| 		if err != nil {
 | |
| 			return 0, err
 | |
| 		}
 | |
| 		i += n1
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func (m *PluginsRequest) 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 *PluginsRequest) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Filters) > 0 {
 | |
| 		for _, s := range m.Filters {
 | |
| 			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 *PluginsResponse) 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 *PluginsResponse) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Plugins) > 0 {
 | |
| 		for _, msg := range m.Plugins {
 | |
| 			dAtA[i] = 0xa
 | |
| 			i++
 | |
| 			i = encodeVarintIntrospection(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 *ServerResponse) 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 *ServerResponse) MarshalTo(dAtA []byte) (int, error) {
 | |
| 	var i int
 | |
| 	_ = i
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.UUID) > 0 {
 | |
| 		dAtA[i] = 0xa
 | |
| 		i++
 | |
| 		i = encodeVarintIntrospection(dAtA, i, uint64(len(m.UUID)))
 | |
| 		i += copy(dAtA[i:], m.UUID)
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		i += copy(dAtA[i:], m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return i, nil
 | |
| }
 | |
| 
 | |
| func encodeVarintIntrospection(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 *Plugin) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	l = len(m.Type)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovIntrospection(uint64(l))
 | |
| 	}
 | |
| 	l = len(m.ID)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovIntrospection(uint64(l))
 | |
| 	}
 | |
| 	if len(m.Requires) > 0 {
 | |
| 		for _, s := range m.Requires {
 | |
| 			l = len(s)
 | |
| 			n += 1 + l + sovIntrospection(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Platforms) > 0 {
 | |
| 		for _, e := range m.Platforms {
 | |
| 			l = e.Size()
 | |
| 			n += 1 + l + sovIntrospection(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Exports) > 0 {
 | |
| 		for k, v := range m.Exports {
 | |
| 			_ = k
 | |
| 			_ = v
 | |
| 			mapEntrySize := 1 + len(k) + sovIntrospection(uint64(len(k))) + 1 + len(v) + sovIntrospection(uint64(len(v)))
 | |
| 			n += mapEntrySize + 1 + sovIntrospection(uint64(mapEntrySize))
 | |
| 		}
 | |
| 	}
 | |
| 	if len(m.Capabilities) > 0 {
 | |
| 		for _, s := range m.Capabilities {
 | |
| 			l = len(s)
 | |
| 			n += 1 + l + sovIntrospection(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.InitErr != nil {
 | |
| 		l = m.InitErr.Size()
 | |
| 		n += 1 + l + sovIntrospection(uint64(l))
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *PluginsRequest) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Filters) > 0 {
 | |
| 		for _, s := range m.Filters {
 | |
| 			l = len(s)
 | |
| 			n += 1 + l + sovIntrospection(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *PluginsResponse) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	if len(m.Plugins) > 0 {
 | |
| 		for _, e := range m.Plugins {
 | |
| 			l = e.Size()
 | |
| 			n += 1 + l + sovIntrospection(uint64(l))
 | |
| 		}
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func (m *ServerResponse) Size() (n int) {
 | |
| 	if m == nil {
 | |
| 		return 0
 | |
| 	}
 | |
| 	var l int
 | |
| 	_ = l
 | |
| 	l = len(m.UUID)
 | |
| 	if l > 0 {
 | |
| 		n += 1 + l + sovIntrospection(uint64(l))
 | |
| 	}
 | |
| 	if m.XXX_unrecognized != nil {
 | |
| 		n += len(m.XXX_unrecognized)
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| 
 | |
| func sovIntrospection(x uint64) (n int) {
 | |
| 	for {
 | |
| 		n++
 | |
| 		x >>= 7
 | |
| 		if x == 0 {
 | |
| 			break
 | |
| 		}
 | |
| 	}
 | |
| 	return n
 | |
| }
 | |
| func sozIntrospection(x uint64) (n int) {
 | |
| 	return sovIntrospection(uint64((x << 1) ^ uint64((int64(x) >> 63))))
 | |
| }
 | |
| func (this *Plugin) String() string {
 | |
| 	if this == nil {
 | |
| 		return "nil"
 | |
| 	}
 | |
| 	keysForExports := make([]string, 0, len(this.Exports))
 | |
| 	for k, _ := range this.Exports {
 | |
| 		keysForExports = append(keysForExports, k)
 | |
| 	}
 | |
| 	github_com_gogo_protobuf_sortkeys.Strings(keysForExports)
 | |
| 	mapStringForExports := "map[string]string{"
 | |
| 	for _, k := range keysForExports {
 | |
| 		mapStringForExports += fmt.Sprintf("%v: %v,", k, this.Exports[k])
 | |
| 	}
 | |
| 	mapStringForExports += "}"
 | |
| 	s := strings.Join([]string{`&Plugin{`,
 | |
| 		`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
 | |
| 		`ID:` + fmt.Sprintf("%v", this.ID) + `,`,
 | |
| 		`Requires:` + fmt.Sprintf("%v", this.Requires) + `,`,
 | |
| 		`Platforms:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Platforms), "Platform", "types.Platform", 1), `&`, ``, 1) + `,`,
 | |
| 		`Exports:` + mapStringForExports + `,`,
 | |
| 		`Capabilities:` + fmt.Sprintf("%v", this.Capabilities) + `,`,
 | |
| 		`InitErr:` + strings.Replace(fmt.Sprintf("%v", this.InitErr), "Status", "rpc.Status", 1) + `,`,
 | |
| 		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | |
| 		`}`,
 | |
| 	}, "")
 | |
| 	return s
 | |
| }
 | |
| func (this *PluginsRequest) String() string {
 | |
| 	if this == nil {
 | |
| 		return "nil"
 | |
| 	}
 | |
| 	s := strings.Join([]string{`&PluginsRequest{`,
 | |
| 		`Filters:` + fmt.Sprintf("%v", this.Filters) + `,`,
 | |
| 		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | |
| 		`}`,
 | |
| 	}, "")
 | |
| 	return s
 | |
| }
 | |
| func (this *PluginsResponse) String() string {
 | |
| 	if this == nil {
 | |
| 		return "nil"
 | |
| 	}
 | |
| 	s := strings.Join([]string{`&PluginsResponse{`,
 | |
| 		`Plugins:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Plugins), "Plugin", "Plugin", 1), `&`, ``, 1) + `,`,
 | |
| 		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | |
| 		`}`,
 | |
| 	}, "")
 | |
| 	return s
 | |
| }
 | |
| func (this *ServerResponse) String() string {
 | |
| 	if this == nil {
 | |
| 		return "nil"
 | |
| 	}
 | |
| 	s := strings.Join([]string{`&ServerResponse{`,
 | |
| 		`UUID:` + fmt.Sprintf("%v", this.UUID) + `,`,
 | |
| 		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | |
| 		`}`,
 | |
| 	}, "")
 | |
| 	return s
 | |
| }
 | |
| func valueToStringIntrospection(v interface{}) string {
 | |
| 	rv := reflect.ValueOf(v)
 | |
| 	if rv.IsNil() {
 | |
| 		return "nil"
 | |
| 	}
 | |
| 	pv := reflect.Indirect(rv).Interface()
 | |
| 	return fmt.Sprintf("*%v", pv)
 | |
| }
 | |
| func (m *Plugin) 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 ErrIntOverflowIntrospection
 | |
| 			}
 | |
| 			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: Plugin: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: Plugin: 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 ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				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 ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			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 ID", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				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 ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.ID = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		case 3:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Requires", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				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 ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Requires = append(m.Requires, string(dAtA[iNdEx:postIndex]))
 | |
| 			iNdEx = postIndex
 | |
| 		case 4:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Platforms", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= int(b&0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Platforms = append(m.Platforms, types.Platform{})
 | |
| 			if err := m.Platforms[len(m.Platforms)-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 Exports", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= int(b&0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.Exports == nil {
 | |
| 				m.Exports = 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 ErrIntOverflowIntrospection
 | |
| 					}
 | |
| 					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 ErrIntOverflowIntrospection
 | |
| 						}
 | |
| 						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 ErrInvalidLengthIntrospection
 | |
| 					}
 | |
| 					postStringIndexmapkey := iNdEx + intStringLenmapkey
 | |
| 					if postStringIndexmapkey < 0 {
 | |
| 						return ErrInvalidLengthIntrospection
 | |
| 					}
 | |
| 					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 ErrIntOverflowIntrospection
 | |
| 						}
 | |
| 						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 ErrInvalidLengthIntrospection
 | |
| 					}
 | |
| 					postStringIndexmapvalue := iNdEx + intStringLenmapvalue
 | |
| 					if postStringIndexmapvalue < 0 {
 | |
| 						return ErrInvalidLengthIntrospection
 | |
| 					}
 | |
| 					if postStringIndexmapvalue > l {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
 | |
| 					iNdEx = postStringIndexmapvalue
 | |
| 				} else {
 | |
| 					iNdEx = entryPreIndex
 | |
| 					skippy, err := skipIntrospection(dAtA[iNdEx:])
 | |
| 					if err != nil {
 | |
| 						return err
 | |
| 					}
 | |
| 					if skippy < 0 {
 | |
| 						return ErrInvalidLengthIntrospection
 | |
| 					}
 | |
| 					if (iNdEx + skippy) > postIndex {
 | |
| 						return io.ErrUnexpectedEOF
 | |
| 					}
 | |
| 					iNdEx += skippy
 | |
| 				}
 | |
| 			}
 | |
| 			m.Exports[mapkey] = mapvalue
 | |
| 			iNdEx = postIndex
 | |
| 		case 6:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Capabilities", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				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 ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Capabilities = append(m.Capabilities, string(dAtA[iNdEx:postIndex]))
 | |
| 			iNdEx = postIndex
 | |
| 		case 7:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field InitErr", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= int(b&0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			if m.InitErr == nil {
 | |
| 				m.InitErr = &rpc.Status{}
 | |
| 			}
 | |
| 			if err := m.InitErr.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipIntrospection(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if (iNdEx + skippy) < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			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 *PluginsRequest) 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 ErrIntOverflowIntrospection
 | |
| 			}
 | |
| 			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: PluginsRequest: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: PluginsRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Filters", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				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 ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Filters = append(m.Filters, string(dAtA[iNdEx:postIndex]))
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipIntrospection(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if (iNdEx + skippy) < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			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 *PluginsResponse) 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 ErrIntOverflowIntrospection
 | |
| 			}
 | |
| 			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: PluginsResponse: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: PluginsResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field Plugins", wireType)
 | |
| 			}
 | |
| 			var msglen int
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				msglen |= int(b&0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if msglen < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			postIndex := iNdEx + msglen
 | |
| 			if postIndex < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.Plugins = append(m.Plugins, Plugin{})
 | |
| 			if err := m.Plugins[len(m.Plugins)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipIntrospection(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if (iNdEx + skippy) < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			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 *ServerResponse) 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 ErrIntOverflowIntrospection
 | |
| 			}
 | |
| 			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: ServerResponse: wiretype end group for non-group")
 | |
| 		}
 | |
| 		if fieldNum <= 0 {
 | |
| 			return fmt.Errorf("proto: ServerResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | |
| 		}
 | |
| 		switch fieldNum {
 | |
| 		case 1:
 | |
| 			if wireType != 2 {
 | |
| 				return fmt.Errorf("proto: wrong wireType = %d for field UUID", wireType)
 | |
| 			}
 | |
| 			var stringLen uint64
 | |
| 			for shift := uint(0); ; shift += 7 {
 | |
| 				if shift >= 64 {
 | |
| 					return ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				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 ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			postIndex := iNdEx + intStringLen
 | |
| 			if postIndex < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if postIndex > l {
 | |
| 				return io.ErrUnexpectedEOF
 | |
| 			}
 | |
| 			m.UUID = string(dAtA[iNdEx:postIndex])
 | |
| 			iNdEx = postIndex
 | |
| 		default:
 | |
| 			iNdEx = preIndex
 | |
| 			skippy, err := skipIntrospection(dAtA[iNdEx:])
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 			if skippy < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			if (iNdEx + skippy) < 0 {
 | |
| 				return ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			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 skipIntrospection(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, ErrIntOverflowIntrospection
 | |
| 			}
 | |
| 			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, ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				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, ErrIntOverflowIntrospection
 | |
| 				}
 | |
| 				if iNdEx >= l {
 | |
| 					return 0, io.ErrUnexpectedEOF
 | |
| 				}
 | |
| 				b := dAtA[iNdEx]
 | |
| 				iNdEx++
 | |
| 				length |= (int(b) & 0x7F) << shift
 | |
| 				if b < 0x80 {
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 			if length < 0 {
 | |
| 				return 0, ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			iNdEx += length
 | |
| 			if iNdEx < 0 {
 | |
| 				return 0, ErrInvalidLengthIntrospection
 | |
| 			}
 | |
| 			return iNdEx, nil
 | |
| 		case 3:
 | |
| 			for {
 | |
| 				var innerWire uint64
 | |
| 				var start int = iNdEx
 | |
| 				for shift := uint(0); ; shift += 7 {
 | |
| 					if shift >= 64 {
 | |
| 						return 0, ErrIntOverflowIntrospection
 | |
| 					}
 | |
| 					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 := skipIntrospection(dAtA[start:])
 | |
| 				if err != nil {
 | |
| 					return 0, err
 | |
| 				}
 | |
| 				iNdEx = start + next
 | |
| 				if iNdEx < 0 {
 | |
| 					return 0, ErrInvalidLengthIntrospection
 | |
| 				}
 | |
| 			}
 | |
| 			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 (
 | |
| 	ErrInvalidLengthIntrospection = fmt.Errorf("proto: negative length found during unmarshaling")
 | |
| 	ErrIntOverflowIntrospection   = fmt.Errorf("proto: integer overflow")
 | |
| )
 |