代码拉取完成,页面将自动刷新
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: protos.proto
/*
Package remote is a generated protocol buffer package.
It is generated from these files:
protos.proto
It has these top-level messages:
MessageBatch
MessageEnvelope
MessageHeader
ActorPidRequest
ActorPidResponse
Unit
ConnectRequest
ConnectResponse
*/
package remote
import proto "github.com/gogo/protobuf/proto"
import fmt "fmt"
import math "math"
import _ "github.com/gogo/protobuf/gogoproto"
import actor "github.com/AsynkronIT/protoactor-go/actor"
import bytes "bytes"
import (
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
)
import strings "strings"
import reflect "reflect"
import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys"
import io "io"
// 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 MessageBatch struct {
TypeNames []string `protobuf:"bytes,1,rep,name=type_names,json=typeNames" json:"type_names,omitempty"`
TargetNames []string `protobuf:"bytes,2,rep,name=target_names,json=targetNames" json:"target_names,omitempty"`
Envelopes []*MessageEnvelope `protobuf:"bytes,3,rep,name=envelopes" json:"envelopes,omitempty"`
}
func (m *MessageBatch) Reset() { *m = MessageBatch{} }
func (*MessageBatch) ProtoMessage() {}
func (*MessageBatch) Descriptor() ([]byte, []int) { return fileDescriptorProtos, []int{0} }
func (m *MessageBatch) GetTypeNames() []string {
if m != nil {
return m.TypeNames
}
return nil
}
func (m *MessageBatch) GetTargetNames() []string {
if m != nil {
return m.TargetNames
}
return nil
}
func (m *MessageBatch) GetEnvelopes() []*MessageEnvelope {
if m != nil {
return m.Envelopes
}
return nil
}
type MessageEnvelope struct {
TypeId int32 `protobuf:"varint,1,opt,name=type_id,json=typeId,proto3" json:"type_id,omitempty"`
MessageData []byte `protobuf:"bytes,2,opt,name=message_data,json=messageData,proto3" json:"message_data,omitempty"`
Target int32 `protobuf:"varint,3,opt,name=target,proto3" json:"target,omitempty"`
Sender *actor.PID `protobuf:"bytes,4,opt,name=sender" json:"sender,omitempty"`
SerializerId int32 `protobuf:"varint,5,opt,name=serializer_id,json=serializerId,proto3" json:"serializer_id,omitempty"`
MessageHeader *MessageHeader `protobuf:"bytes,6,opt,name=message_header,json=messageHeader" json:"message_header,omitempty"`
}
func (m *MessageEnvelope) Reset() { *m = MessageEnvelope{} }
func (*MessageEnvelope) ProtoMessage() {}
func (*MessageEnvelope) Descriptor() ([]byte, []int) { return fileDescriptorProtos, []int{1} }
func (m *MessageEnvelope) GetTypeId() int32 {
if m != nil {
return m.TypeId
}
return 0
}
func (m *MessageEnvelope) GetMessageData() []byte {
if m != nil {
return m.MessageData
}
return nil
}
func (m *MessageEnvelope) GetTarget() int32 {
if m != nil {
return m.Target
}
return 0
}
func (m *MessageEnvelope) GetSender() *actor.PID {
if m != nil {
return m.Sender
}
return nil
}
func (m *MessageEnvelope) GetSerializerId() int32 {
if m != nil {
return m.SerializerId
}
return 0
}
func (m *MessageEnvelope) GetMessageHeader() *MessageHeader {
if m != nil {
return m.MessageHeader
}
return nil
}
type MessageHeader struct {
HeaderData map[string]string `protobuf:"bytes,1,rep,name=header_data,json=headerData" json:"header_data,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
}
func (m *MessageHeader) Reset() { *m = MessageHeader{} }
func (*MessageHeader) ProtoMessage() {}
func (*MessageHeader) Descriptor() ([]byte, []int) { return fileDescriptorProtos, []int{2} }
func (m *MessageHeader) GetHeaderData() map[string]string {
if m != nil {
return m.HeaderData
}
return nil
}
type ActorPidRequest struct {
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
Kind string `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
}
func (m *ActorPidRequest) Reset() { *m = ActorPidRequest{} }
func (*ActorPidRequest) ProtoMessage() {}
func (*ActorPidRequest) Descriptor() ([]byte, []int) { return fileDescriptorProtos, []int{3} }
func (m *ActorPidRequest) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *ActorPidRequest) GetKind() string {
if m != nil {
return m.Kind
}
return ""
}
type ActorPidResponse struct {
Pid *actor.PID `protobuf:"bytes,1,opt,name=pid" json:"pid,omitempty"`
StatusCode int32 `protobuf:"varint,2,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
}
func (m *ActorPidResponse) Reset() { *m = ActorPidResponse{} }
func (*ActorPidResponse) ProtoMessage() {}
func (*ActorPidResponse) Descriptor() ([]byte, []int) { return fileDescriptorProtos, []int{4} }
func (m *ActorPidResponse) GetPid() *actor.PID {
if m != nil {
return m.Pid
}
return nil
}
func (m *ActorPidResponse) GetStatusCode() int32 {
if m != nil {
return m.StatusCode
}
return 0
}
type Unit struct {
}
func (m *Unit) Reset() { *m = Unit{} }
func (*Unit) ProtoMessage() {}
func (*Unit) Descriptor() ([]byte, []int) { return fileDescriptorProtos, []int{5} }
type ConnectRequest struct {
}
func (m *ConnectRequest) Reset() { *m = ConnectRequest{} }
func (*ConnectRequest) ProtoMessage() {}
func (*ConnectRequest) Descriptor() ([]byte, []int) { return fileDescriptorProtos, []int{6} }
type ConnectResponse struct {
DefaultSerializerId int32 `protobuf:"varint,1,opt,name=default_serializer_id,json=defaultSerializerId,proto3" json:"default_serializer_id,omitempty"`
}
func (m *ConnectResponse) Reset() { *m = ConnectResponse{} }
func (*ConnectResponse) ProtoMessage() {}
func (*ConnectResponse) Descriptor() ([]byte, []int) { return fileDescriptorProtos, []int{7} }
func (m *ConnectResponse) GetDefaultSerializerId() int32 {
if m != nil {
return m.DefaultSerializerId
}
return 0
}
func init() {
proto.RegisterType((*MessageBatch)(nil), "remote.MessageBatch")
proto.RegisterType((*MessageEnvelope)(nil), "remote.MessageEnvelope")
proto.RegisterType((*MessageHeader)(nil), "remote.MessageHeader")
proto.RegisterType((*ActorPidRequest)(nil), "remote.ActorPidRequest")
proto.RegisterType((*ActorPidResponse)(nil), "remote.ActorPidResponse")
proto.RegisterType((*Unit)(nil), "remote.Unit")
proto.RegisterType((*ConnectRequest)(nil), "remote.ConnectRequest")
proto.RegisterType((*ConnectResponse)(nil), "remote.ConnectResponse")
}
func (this *MessageBatch) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
}
that1, ok := that.(*MessageBatch)
if !ok {
that2, ok := that.(MessageBatch)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
if this == nil {
return true
}
return false
} else if this == nil {
return false
}
if len(this.TypeNames) != len(that1.TypeNames) {
return false
}
for i := range this.TypeNames {
if this.TypeNames[i] != that1.TypeNames[i] {
return false
}
}
if len(this.TargetNames) != len(that1.TargetNames) {
return false
}
for i := range this.TargetNames {
if this.TargetNames[i] != that1.TargetNames[i] {
return false
}
}
if len(this.Envelopes) != len(that1.Envelopes) {
return false
}
for i := range this.Envelopes {
if !this.Envelopes[i].Equal(that1.Envelopes[i]) {
return false
}
}
return true
}
func (this *MessageEnvelope) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
}
that1, ok := that.(*MessageEnvelope)
if !ok {
that2, ok := that.(MessageEnvelope)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
if this == nil {
return true
}
return false
} else if this == nil {
return false
}
if this.TypeId != that1.TypeId {
return false
}
if !bytes.Equal(this.MessageData, that1.MessageData) {
return false
}
if this.Target != that1.Target {
return false
}
if !this.Sender.Equal(that1.Sender) {
return false
}
if this.SerializerId != that1.SerializerId {
return false
}
if !this.MessageHeader.Equal(that1.MessageHeader) {
return false
}
return true
}
func (this *MessageHeader) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
}
that1, ok := that.(*MessageHeader)
if !ok {
that2, ok := that.(MessageHeader)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
if this == nil {
return true
}
return false
} else if this == nil {
return false
}
if len(this.HeaderData) != len(that1.HeaderData) {
return false
}
for i := range this.HeaderData {
if this.HeaderData[i] != that1.HeaderData[i] {
return false
}
}
return true
}
func (this *ActorPidRequest) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
}
that1, ok := that.(*ActorPidRequest)
if !ok {
that2, ok := that.(ActorPidRequest)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
if this == nil {
return true
}
return false
} else if this == nil {
return false
}
if this.Name != that1.Name {
return false
}
if this.Kind != that1.Kind {
return false
}
return true
}
func (this *ActorPidResponse) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
}
that1, ok := that.(*ActorPidResponse)
if !ok {
that2, ok := that.(ActorPidResponse)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
if this == nil {
return true
}
return false
} else if this == nil {
return false
}
if !this.Pid.Equal(that1.Pid) {
return false
}
if this.StatusCode != that1.StatusCode {
return false
}
return true
}
func (this *Unit) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
}
that1, ok := that.(*Unit)
if !ok {
that2, ok := that.(Unit)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
if this == nil {
return true
}
return false
} else if this == nil {
return false
}
return true
}
func (this *ConnectRequest) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
}
that1, ok := that.(*ConnectRequest)
if !ok {
that2, ok := that.(ConnectRequest)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
if this == nil {
return true
}
return false
} else if this == nil {
return false
}
return true
}
func (this *ConnectResponse) Equal(that interface{}) bool {
if that == nil {
if this == nil {
return true
}
return false
}
that1, ok := that.(*ConnectResponse)
if !ok {
that2, ok := that.(ConnectResponse)
if ok {
that1 = &that2
} else {
return false
}
}
if that1 == nil {
if this == nil {
return true
}
return false
} else if this == nil {
return false
}
if this.DefaultSerializerId != that1.DefaultSerializerId {
return false
}
return true
}
// 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
// Client API for Remoting service
type RemotingClient interface {
Connect(ctx context.Context, in *ConnectRequest, opts ...grpc.CallOption) (*ConnectResponse, error)
Receive(ctx context.Context, opts ...grpc.CallOption) (Remoting_ReceiveClient, error)
}
type remotingClient struct {
cc *grpc.ClientConn
}
func NewRemotingClient(cc *grpc.ClientConn) RemotingClient {
return &remotingClient{cc}
}
func (c *remotingClient) Connect(ctx context.Context, in *ConnectRequest, opts ...grpc.CallOption) (*ConnectResponse, error) {
out := new(ConnectResponse)
err := grpc.Invoke(ctx, "/remote.Remoting/Connect", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *remotingClient) Receive(ctx context.Context, opts ...grpc.CallOption) (Remoting_ReceiveClient, error) {
stream, err := grpc.NewClientStream(ctx, &_Remoting_serviceDesc.Streams[0], c.cc, "/remote.Remoting/Receive", opts...)
if err != nil {
return nil, err
}
x := &remotingReceiveClient{stream}
return x, nil
}
type Remoting_ReceiveClient interface {
Send(*MessageBatch) error
Recv() (*Unit, error)
grpc.ClientStream
}
type remotingReceiveClient struct {
grpc.ClientStream
}
func (x *remotingReceiveClient) Send(m *MessageBatch) error {
return x.ClientStream.SendMsg(m)
}
func (x *remotingReceiveClient) Recv() (*Unit, error) {
m := new(Unit)
if err := x.ClientStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
// Server API for Remoting service
type RemotingServer interface {
Connect(context.Context, *ConnectRequest) (*ConnectResponse, error)
Receive(Remoting_ReceiveServer) error
}
func RegisterRemotingServer(s *grpc.Server, srv RemotingServer) {
s.RegisterService(&_Remoting_serviceDesc, srv)
}
func _Remoting_Connect_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ConnectRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(RemotingServer).Connect(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/remote.Remoting/Connect",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(RemotingServer).Connect(ctx, req.(*ConnectRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Remoting_Receive_Handler(srv interface{}, stream grpc.ServerStream) error {
return srv.(RemotingServer).Receive(&remotingReceiveServer{stream})
}
type Remoting_ReceiveServer interface {
Send(*Unit) error
Recv() (*MessageBatch, error)
grpc.ServerStream
}
type remotingReceiveServer struct {
grpc.ServerStream
}
func (x *remotingReceiveServer) Send(m *Unit) error {
return x.ServerStream.SendMsg(m)
}
func (x *remotingReceiveServer) Recv() (*MessageBatch, error) {
m := new(MessageBatch)
if err := x.ServerStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
var _Remoting_serviceDesc = grpc.ServiceDesc{
ServiceName: "remote.Remoting",
HandlerType: (*RemotingServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Connect",
Handler: _Remoting_Connect_Handler,
},
},
Streams: []grpc.StreamDesc{
{
StreamName: "Receive",
Handler: _Remoting_Receive_Handler,
ServerStreams: true,
ClientStreams: true,
},
},
Metadata: "protos.proto",
}
func (m *MessageBatch) 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 *MessageBatch) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if len(m.TypeNames) > 0 {
for _, s := range m.TypeNames {
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 len(m.TargetNames) > 0 {
for _, s := range m.TargetNames {
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.Envelopes) > 0 {
for _, msg := range m.Envelopes {
dAtA[i] = 0x1a
i++
i = encodeVarintProtos(dAtA, i, uint64(msg.Size()))
n, err := msg.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n
}
}
return i, nil
}
func (m *MessageEnvelope) 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 *MessageEnvelope) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if m.TypeId != 0 {
dAtA[i] = 0x8
i++
i = encodeVarintProtos(dAtA, i, uint64(m.TypeId))
}
if len(m.MessageData) > 0 {
dAtA[i] = 0x12
i++
i = encodeVarintProtos(dAtA, i, uint64(len(m.MessageData)))
i += copy(dAtA[i:], m.MessageData)
}
if m.Target != 0 {
dAtA[i] = 0x18
i++
i = encodeVarintProtos(dAtA, i, uint64(m.Target))
}
if m.Sender != nil {
dAtA[i] = 0x22
i++
i = encodeVarintProtos(dAtA, i, uint64(m.Sender.Size()))
n1, err := m.Sender.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n1
}
if m.SerializerId != 0 {
dAtA[i] = 0x28
i++
i = encodeVarintProtos(dAtA, i, uint64(m.SerializerId))
}
if m.MessageHeader != nil {
dAtA[i] = 0x32
i++
i = encodeVarintProtos(dAtA, i, uint64(m.MessageHeader.Size()))
n2, err := m.MessageHeader.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n2
}
return i, nil
}
func (m *MessageHeader) 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 *MessageHeader) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if len(m.HeaderData) > 0 {
for k, _ := range m.HeaderData {
dAtA[i] = 0xa
i++
v := m.HeaderData[k]
mapSize := 1 + len(k) + sovProtos(uint64(len(k))) + 1 + len(v) + sovProtos(uint64(len(v)))
i = encodeVarintProtos(dAtA, i, uint64(mapSize))
dAtA[i] = 0xa
i++
i = encodeVarintProtos(dAtA, i, uint64(len(k)))
i += copy(dAtA[i:], k)
dAtA[i] = 0x12
i++
i = encodeVarintProtos(dAtA, i, uint64(len(v)))
i += copy(dAtA[i:], v)
}
}
return i, nil
}
func (m *ActorPidRequest) 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 *ActorPidRequest) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if len(m.Name) > 0 {
dAtA[i] = 0xa
i++
i = encodeVarintProtos(dAtA, i, uint64(len(m.Name)))
i += copy(dAtA[i:], m.Name)
}
if len(m.Kind) > 0 {
dAtA[i] = 0x12
i++
i = encodeVarintProtos(dAtA, i, uint64(len(m.Kind)))
i += copy(dAtA[i:], m.Kind)
}
return i, nil
}
func (m *ActorPidResponse) 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 *ActorPidResponse) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if m.Pid != nil {
dAtA[i] = 0xa
i++
i = encodeVarintProtos(dAtA, i, uint64(m.Pid.Size()))
n3, err := m.Pid.MarshalTo(dAtA[i:])
if err != nil {
return 0, err
}
i += n3
}
if m.StatusCode != 0 {
dAtA[i] = 0x10
i++
i = encodeVarintProtos(dAtA, i, uint64(m.StatusCode))
}
return i, nil
}
func (m *Unit) 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 *Unit) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
return i, nil
}
func (m *ConnectRequest) 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 *ConnectRequest) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
return i, nil
}
func (m *ConnectResponse) 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 *ConnectResponse) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if m.DefaultSerializerId != 0 {
dAtA[i] = 0x8
i++
i = encodeVarintProtos(dAtA, i, uint64(m.DefaultSerializerId))
}
return i, nil
}
func encodeFixed64Protos(dAtA []byte, offset int, v uint64) int {
dAtA[offset] = uint8(v)
dAtA[offset+1] = uint8(v >> 8)
dAtA[offset+2] = uint8(v >> 16)
dAtA[offset+3] = uint8(v >> 24)
dAtA[offset+4] = uint8(v >> 32)
dAtA[offset+5] = uint8(v >> 40)
dAtA[offset+6] = uint8(v >> 48)
dAtA[offset+7] = uint8(v >> 56)
return offset + 8
}
func encodeFixed32Protos(dAtA []byte, offset int, v uint32) int {
dAtA[offset] = uint8(v)
dAtA[offset+1] = uint8(v >> 8)
dAtA[offset+2] = uint8(v >> 16)
dAtA[offset+3] = uint8(v >> 24)
return offset + 4
}
func encodeVarintProtos(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 *MessageBatch) Size() (n int) {
var l int
_ = l
if len(m.TypeNames) > 0 {
for _, s := range m.TypeNames {
l = len(s)
n += 1 + l + sovProtos(uint64(l))
}
}
if len(m.TargetNames) > 0 {
for _, s := range m.TargetNames {
l = len(s)
n += 1 + l + sovProtos(uint64(l))
}
}
if len(m.Envelopes) > 0 {
for _, e := range m.Envelopes {
l = e.Size()
n += 1 + l + sovProtos(uint64(l))
}
}
return n
}
func (m *MessageEnvelope) Size() (n int) {
var l int
_ = l
if m.TypeId != 0 {
n += 1 + sovProtos(uint64(m.TypeId))
}
l = len(m.MessageData)
if l > 0 {
n += 1 + l + sovProtos(uint64(l))
}
if m.Target != 0 {
n += 1 + sovProtos(uint64(m.Target))
}
if m.Sender != nil {
l = m.Sender.Size()
n += 1 + l + sovProtos(uint64(l))
}
if m.SerializerId != 0 {
n += 1 + sovProtos(uint64(m.SerializerId))
}
if m.MessageHeader != nil {
l = m.MessageHeader.Size()
n += 1 + l + sovProtos(uint64(l))
}
return n
}
func (m *MessageHeader) Size() (n int) {
var l int
_ = l
if len(m.HeaderData) > 0 {
for k, v := range m.HeaderData {
_ = k
_ = v
mapEntrySize := 1 + len(k) + sovProtos(uint64(len(k))) + 1 + len(v) + sovProtos(uint64(len(v)))
n += mapEntrySize + 1 + sovProtos(uint64(mapEntrySize))
}
}
return n
}
func (m *ActorPidRequest) Size() (n int) {
var l int
_ = l
l = len(m.Name)
if l > 0 {
n += 1 + l + sovProtos(uint64(l))
}
l = len(m.Kind)
if l > 0 {
n += 1 + l + sovProtos(uint64(l))
}
return n
}
func (m *ActorPidResponse) Size() (n int) {
var l int
_ = l
if m.Pid != nil {
l = m.Pid.Size()
n += 1 + l + sovProtos(uint64(l))
}
if m.StatusCode != 0 {
n += 1 + sovProtos(uint64(m.StatusCode))
}
return n
}
func (m *Unit) Size() (n int) {
var l int
_ = l
return n
}
func (m *ConnectRequest) Size() (n int) {
var l int
_ = l
return n
}
func (m *ConnectResponse) Size() (n int) {
var l int
_ = l
if m.DefaultSerializerId != 0 {
n += 1 + sovProtos(uint64(m.DefaultSerializerId))
}
return n
}
func sovProtos(x uint64) (n int) {
for {
n++
x >>= 7
if x == 0 {
break
}
}
return n
}
func sozProtos(x uint64) (n int) {
return sovProtos(uint64((x << 1) ^ uint64((int64(x) >> 63))))
}
func (this *MessageBatch) String() string {
if this == nil {
return "nil"
}
s := strings.Join([]string{`&MessageBatch{`,
`TypeNames:` + fmt.Sprintf("%v", this.TypeNames) + `,`,
`TargetNames:` + fmt.Sprintf("%v", this.TargetNames) + `,`,
`Envelopes:` + strings.Replace(fmt.Sprintf("%v", this.Envelopes), "MessageEnvelope", "MessageEnvelope", 1) + `,`,
`}`,
}, "")
return s
}
func (this *MessageEnvelope) String() string {
if this == nil {
return "nil"
}
s := strings.Join([]string{`&MessageEnvelope{`,
`TypeId:` + fmt.Sprintf("%v", this.TypeId) + `,`,
`MessageData:` + fmt.Sprintf("%v", this.MessageData) + `,`,
`Target:` + fmt.Sprintf("%v", this.Target) + `,`,
`Sender:` + strings.Replace(fmt.Sprintf("%v", this.Sender), "PID", "actor.PID", 1) + `,`,
`SerializerId:` + fmt.Sprintf("%v", this.SerializerId) + `,`,
`MessageHeader:` + strings.Replace(fmt.Sprintf("%v", this.MessageHeader), "MessageHeader", "MessageHeader", 1) + `,`,
`}`,
}, "")
return s
}
func (this *MessageHeader) String() string {
if this == nil {
return "nil"
}
keysForHeaderData := make([]string, 0, len(this.HeaderData))
for k, _ := range this.HeaderData {
keysForHeaderData = append(keysForHeaderData, k)
}
github_com_gogo_protobuf_sortkeys.Strings(keysForHeaderData)
mapStringForHeaderData := "map[string]string{"
for _, k := range keysForHeaderData {
mapStringForHeaderData += fmt.Sprintf("%v: %v,", k, this.HeaderData[k])
}
mapStringForHeaderData += "}"
s := strings.Join([]string{`&MessageHeader{`,
`HeaderData:` + mapStringForHeaderData + `,`,
`}`,
}, "")
return s
}
func (this *ActorPidRequest) String() string {
if this == nil {
return "nil"
}
s := strings.Join([]string{`&ActorPidRequest{`,
`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
`Kind:` + fmt.Sprintf("%v", this.Kind) + `,`,
`}`,
}, "")
return s
}
func (this *ActorPidResponse) String() string {
if this == nil {
return "nil"
}
s := strings.Join([]string{`&ActorPidResponse{`,
`Pid:` + strings.Replace(fmt.Sprintf("%v", this.Pid), "PID", "actor.PID", 1) + `,`,
`StatusCode:` + fmt.Sprintf("%v", this.StatusCode) + `,`,
`}`,
}, "")
return s
}
func (this *Unit) String() string {
if this == nil {
return "nil"
}
s := strings.Join([]string{`&Unit{`,
`}`,
}, "")
return s
}
func (this *ConnectRequest) String() string {
if this == nil {
return "nil"
}
s := strings.Join([]string{`&ConnectRequest{`,
`}`,
}, "")
return s
}
func (this *ConnectResponse) String() string {
if this == nil {
return "nil"
}
s := strings.Join([]string{`&ConnectResponse{`,
`DefaultSerializerId:` + fmt.Sprintf("%v", this.DefaultSerializerId) + `,`,
`}`,
}, "")
return s
}
func valueToStringProtos(v interface{}) string {
rv := reflect.ValueOf(v)
if rv.IsNil() {
return "nil"
}
pv := reflect.Indirect(rv).Interface()
return fmt.Sprintf("*%v", pv)
}
func (m *MessageBatch) 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 ErrIntOverflowProtos
}
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: MessageBatch: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: MessageBatch: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field TypeNames", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
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 ErrInvalidLengthProtos
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.TypeNames = append(m.TypeNames, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field TargetNames", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
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 ErrInvalidLengthProtos
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.TargetNames = append(m.TargetNames, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Envelopes", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthProtos
}
postIndex := iNdEx + msglen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Envelopes = append(m.Envelopes, &MessageEnvelope{})
if err := m.Envelopes[len(m.Envelopes)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtos(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthProtos
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *MessageEnvelope) 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 ErrIntOverflowProtos
}
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: MessageEnvelope: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: MessageEnvelope: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field TypeId", wireType)
}
m.TypeId = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.TypeId |= (int32(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field MessageData", wireType)
}
var byteLen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
byteLen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if byteLen < 0 {
return ErrInvalidLengthProtos
}
postIndex := iNdEx + byteLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.MessageData = append(m.MessageData[:0], dAtA[iNdEx:postIndex]...)
if m.MessageData == nil {
m.MessageData = []byte{}
}
iNdEx = postIndex
case 3:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Target", wireType)
}
m.Target = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Target |= (int32(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Sender", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthProtos
}
postIndex := iNdEx + msglen
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.Sender == nil {
m.Sender = &actor.PID{}
}
if err := m.Sender.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
case 5:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field SerializerId", wireType)
}
m.SerializerId = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.SerializerId |= (int32(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 6:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field MessageHeader", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthProtos
}
postIndex := iNdEx + msglen
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.MessageHeader == nil {
m.MessageHeader = &MessageHeader{}
}
if err := m.MessageHeader.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtos(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthProtos
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *MessageHeader) 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 ErrIntOverflowProtos
}
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: MessageHeader: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: MessageHeader: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field HeaderData", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthProtos
}
postIndex := iNdEx + msglen
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.HeaderData == nil {
m.HeaderData = 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 ErrIntOverflowProtos
}
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 ErrIntOverflowProtos
}
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 ErrInvalidLengthProtos
}
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 ErrIntOverflowProtos
}
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 ErrInvalidLengthProtos
}
postStringIndexmapvalue := iNdEx + intStringLenmapvalue
if postStringIndexmapvalue > l {
return io.ErrUnexpectedEOF
}
mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
iNdEx = postStringIndexmapvalue
} else {
iNdEx = entryPreIndex
skippy, err := skipProtos(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthProtos
}
if (iNdEx + skippy) > postIndex {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
m.HeaderData[mapkey] = mapvalue
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtos(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthProtos
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *ActorPidRequest) 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 ErrIntOverflowProtos
}
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: ActorPidRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: ActorPidRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
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 ErrInvalidLengthProtos
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Name = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Kind", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
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 ErrInvalidLengthProtos
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Kind = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtos(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthProtos
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *ActorPidResponse) 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 ErrIntOverflowProtos
}
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: ActorPidResponse: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: ActorPidResponse: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Pid", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthProtos
}
postIndex := iNdEx + msglen
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.Pid == nil {
m.Pid = &actor.PID{}
}
if err := m.Pid.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
case 2:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field StatusCode", wireType)
}
m.StatusCode = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.StatusCode |= (int32(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
default:
iNdEx = preIndex
skippy, err := skipProtos(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthProtos
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *Unit) 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 ErrIntOverflowProtos
}
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: Unit: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: Unit: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
default:
iNdEx = preIndex
skippy, err := skipProtos(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthProtos
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *ConnectRequest) 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 ErrIntOverflowProtos
}
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: ConnectRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: ConnectRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
default:
iNdEx = preIndex
skippy, err := skipProtos(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthProtos
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *ConnectResponse) 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 ErrIntOverflowProtos
}
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: ConnectResponse: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: ConnectResponse: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field DefaultSerializerId", wireType)
}
m.DefaultSerializerId = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtos
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.DefaultSerializerId |= (int32(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
default:
iNdEx = preIndex
skippy, err := skipProtos(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthProtos
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func skipProtos(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, ErrIntOverflowProtos
}
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, ErrIntOverflowProtos
}
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, ErrIntOverflowProtos
}
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, ErrInvalidLengthProtos
}
return iNdEx, nil
case 3:
for {
var innerWire uint64
var start int = iNdEx
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowProtos
}
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 := skipProtos(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 (
ErrInvalidLengthProtos = fmt.Errorf("proto: negative length found during unmarshaling")
ErrIntOverflowProtos = fmt.Errorf("proto: integer overflow")
)
func init() { proto.RegisterFile("protos.proto", fileDescriptorProtos) }
var fileDescriptorProtos = []byte{
// 620 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x53, 0x3b, 0x6f, 0x13, 0x4b,
0x14, 0xde, 0x89, 0xe3, 0xcd, 0xf5, 0xb1, 0x13, 0x47, 0x73, 0xf3, 0xb0, 0xac, 0x7b, 0xf7, 0xfa,
0x2e, 0x42, 0x72, 0x41, 0xd6, 0xc8, 0x11, 0x08, 0x50, 0x28, 0xf2, 0x42, 0xb8, 0x00, 0x85, 0x05,
0x6a, 0x6b, 0xe2, 0x3d, 0x59, 0xaf, 0x62, 0xef, 0x98, 0x9d, 0x71, 0x24, 0x23, 0x21, 0xd1, 0xd1,
0x52, 0xf1, 0x1b, 0xf8, 0x29, 0x94, 0x29, 0x29, 0xc9, 0xd2, 0x50, 0x50, 0xe4, 0x27, 0xa0, 0x79,
0x24, 0xb1, 0x0d, 0xd5, 0x9e, 0xf3, 0x9d, 0xef, 0xbc, 0xbe, 0xb3, 0x03, 0x95, 0x51, 0xc6, 0x25,
0x17, 0x81, 0xfe, 0x50, 0x37, 0xc3, 0x21, 0x97, 0x58, 0xdf, 0x8a, 0x13, 0xd9, 0x1f, 0x1f, 0x07,
0x3d, 0x3e, 0x6c, 0xc5, 0x3c, 0xe6, 0x2d, 0x1d, 0x3e, 0x1e, 0x9f, 0x68, 0x4f, 0x3b, 0xda, 0x32,
0x69, 0xf5, 0xfb, 0x53, 0xf4, 0x5d, 0x31, 0x49, 0x4f, 0x33, 0x9e, 0x76, 0x5e, 0x99, 0x24, 0xd6,
0x93, 0x3c, 0xdb, 0x8a, 0x79, 0x4b, 0x1b, 0xad, 0xe9, 0x76, 0xfe, 0x07, 0x02, 0x95, 0x67, 0x28,
0x04, 0x8b, 0x71, 0x8f, 0xc9, 0x5e, 0x9f, 0xfe, 0x0b, 0x20, 0x27, 0x23, 0xec, 0xa6, 0x6c, 0x88,
0xa2, 0x46, 0x1a, 0x85, 0x66, 0x29, 0x2c, 0x29, 0xe4, 0xb9, 0x02, 0xe8, 0xff, 0x50, 0x91, 0x2c,
0x8b, 0x51, 0x5a, 0xc2, 0x82, 0x26, 0x94, 0x0d, 0x66, 0x28, 0xf7, 0xa0, 0x84, 0xe9, 0x19, 0x0e,
0xf8, 0x08, 0x45, 0xad, 0xd0, 0x28, 0x34, 0xcb, 0xed, 0xcd, 0xc0, 0x6c, 0x15, 0xd8, 0x56, 0x87,
0x36, 0x1e, 0xde, 0x30, 0xfd, 0x9f, 0x04, 0xaa, 0x73, 0x61, 0xba, 0x09, 0x4b, 0x7a, 0x98, 0x24,
0xaa, 0x91, 0x06, 0x69, 0x16, 0x43, 0x57, 0xb9, 0x9d, 0x48, 0x8d, 0x31, 0x34, 0xdc, 0x6e, 0xc4,
0x24, 0xab, 0x2d, 0x34, 0x48, 0xb3, 0x12, 0x96, 0x2d, 0x76, 0xc0, 0x24, 0xa3, 0x1b, 0xe0, 0x9a,
0xa9, 0x6a, 0x05, 0x9b, 0xaa, 0x3d, 0xea, 0x83, 0x2b, 0x30, 0x8d, 0x30, 0xab, 0x2d, 0x36, 0x48,
0xb3, 0xdc, 0x86, 0x40, 0xcb, 0x12, 0x1c, 0x75, 0x0e, 0x42, 0x1b, 0xa1, 0xb7, 0x60, 0x59, 0x60,
0x96, 0xb0, 0x41, 0xf2, 0x16, 0x33, 0xd5, 0xbd, 0xa8, 0x4b, 0x54, 0x6e, 0xc0, 0x4e, 0x44, 0x77,
0x60, 0xe5, 0x6a, 0x86, 0x3e, 0x32, 0x55, 0xd0, 0xd5, 0x05, 0xd7, 0xe7, 0x96, 0x7d, 0xaa, 0x83,
0xe1, 0xf2, 0x70, 0xda, 0xf5, 0x3f, 0x11, 0x58, 0x9e, 0x21, 0xd0, 0x27, 0x50, 0x36, 0x75, 0xcc,
0x4a, 0x44, 0x2b, 0x77, 0xfb, 0x8f, 0xc5, 0x02, 0xf3, 0x51, 0x7b, 0x1e, 0xa6, 0x32, 0x9b, 0x84,
0xd0, 0xbf, 0x06, 0xea, 0x8f, 0xa1, 0x3a, 0x17, 0xa6, 0xab, 0x50, 0x38, 0xc5, 0x89, 0xd6, 0xb0,
0x14, 0x2a, 0x93, 0xae, 0x41, 0xf1, 0x8c, 0x0d, 0xc6, 0xa8, 0x95, 0x2b, 0x85, 0xc6, 0x79, 0xb4,
0xf0, 0x80, 0xf8, 0x0f, 0xa1, 0xba, 0xab, 0x04, 0x39, 0x4a, 0xa2, 0x10, 0xdf, 0x8c, 0x51, 0x48,
0x4a, 0x61, 0x51, 0x5d, 0xdb, 0xe6, 0x6b, 0x5b, 0x61, 0xa7, 0x49, 0x1a, 0xd9, 0x7c, 0x6d, 0xfb,
0x2f, 0x60, 0xf5, 0x26, 0x55, 0x8c, 0x78, 0x2a, 0x90, 0xfe, 0x03, 0x85, 0x91, 0x3d, 0xdf, 0xac,
0xd6, 0x0a, 0xa6, 0xff, 0x41, 0x59, 0x48, 0x26, 0xc7, 0xa2, 0xdb, 0xe3, 0x91, 0x19, 0xa6, 0x18,
0x82, 0x81, 0xf6, 0x79, 0x84, 0xbe, 0x0b, 0x8b, 0xaf, 0xd3, 0x44, 0xfa, 0xab, 0xb0, 0xb2, 0xcf,
0xd3, 0x14, 0x7b, 0xd2, 0x0e, 0xe5, 0x1f, 0x42, 0xf5, 0x1a, 0xb1, 0xbd, 0xda, 0xb0, 0x1e, 0xe1,
0x09, 0x1b, 0x0f, 0x64, 0x77, 0xf6, 0x7c, 0xe6, 0xe7, 0xf9, 0xdb, 0x06, 0x5f, 0x4e, 0x5d, 0xb1,
0xfd, 0x0e, 0xfe, 0x0a, 0x95, 0xc2, 0x49, 0x1a, 0xd3, 0x1d, 0x58, 0xb2, 0x25, 0xe9, 0xc6, 0x95,
0xee, 0xb3, 0x5d, 0xeb, 0x9b, 0xbf, 0xe1, 0xa6, 0xb7, 0xef, 0xd0, 0x6d, 0x58, 0x0a, 0xb1, 0x87,
0xc9, 0x19, 0xd2, 0xb5, 0xb9, 0xab, 0xe9, 0xa7, 0x55, 0xaf, 0x5c, 0xa1, 0x7a, 0x23, 0xa7, 0x49,
0xee, 0x92, 0xbd, 0x3b, 0xe7, 0x17, 0x9e, 0xf3, 0xf5, 0xc2, 0x73, 0x2e, 0x2f, 0x3c, 0xe7, 0x7d,
0xee, 0x91, 0xcf, 0xb9, 0x47, 0xbe, 0xe4, 0x1e, 0x39, 0xcf, 0x3d, 0xf2, 0x2d, 0xf7, 0xc8, 0x8f,
0xdc, 0x73, 0x2e, 0x73, 0x8f, 0x7c, 0xfc, 0xee, 0x39, 0xc7, 0xae, 0x7e, 0xb4, 0xdb, 0xbf, 0x02,
0x00, 0x00, 0xff, 0xff, 0x32, 0xf3, 0x79, 0x19, 0x33, 0x04, 0x00, 0x00,
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。