From 327c33ff98155345d009dd3a02a812c2236bd1cf Mon Sep 17 00:00:00 2001 From: Zeger-Jan van de Weg Date: Tue, 24 Jul 2018 09:40:52 +0200 Subject: Pairing progress for new blob objects RPC [ci skip] --- internal/service/ref/list_new_objects.go | 48 +++ .../gitlab.com/gitlab-org/gitaly-proto/go/VERSION | 2 +- .../gitlab-org/gitaly-proto/go/blob.pb.go | 5 + .../gitlab-org/gitaly-proto/go/diff.pb.go | 245 ++++++++++--- .../gitlab-org/gitaly-proto/go/ref.pb.go | 407 ++++++++++++++------- .../gitlab-org/gitaly-proto/go/smarthttp.pb.go | 80 ++-- .../gitlab-org/gitaly-proto/go/ssh.pb.go | 75 ++-- .../gitlab-org/gitaly-proto/go/wiki.pb.go | 3 +- vendor/vendor.json | 10 +- 9 files changed, 633 insertions(+), 242 deletions(-) create mode 100644 internal/service/ref/list_new_objects.go diff --git a/internal/service/ref/list_new_objects.go b/internal/service/ref/list_new_objects.go new file mode 100644 index 000000000..b8dc9bf2a --- /dev/null +++ b/internal/service/ref/list_new_objects.go @@ -0,0 +1,48 @@ +package ref + +import ( + "bufio" + "regexp" + "strings" + + pb "gitlab.com/gitlab-org/gitaly-proto/go" + "gitlab.com/gitlab-org/gitaly/internal/git" + "gitlab.com/gitlab-org/gitaly/internal/git/catfile" + "gitlab.com/gitlab-org/gitaly/internal/git/log" + "google.golang.org/grpc/codes" + "google.golang.org/grpc/status" +) + +func (s *server) ListNewObjects(in *pb.ListNewCommitsRequest, stream pb.RefService_ListNewCommitsServer) error { + oid := in.GetCommitId() + if match, err := regexp.MatchString(`\A[0-9a-f]{40}\z`, oid); !match || err != nil { + return status.Errorf(codes.InvalidArgument, "commit id shoud have 40 hexidecimal characters") + } + + ctx := stream.Context() + revList, err := git.Command(ctx, in.GetRepository(), "rev-list", oid, "--objects", "--not", "--all") + if err != nil { + if _, ok := status.FromError(err); ok { + return err + } + return status.Errorf(codes.Internal, "ListNewCommits: gitCommand: %v", err) + } + + batch, err := catfile.New(ctx, in.GetRepository()) + if err != nil { + return status.Errorf(codes.Internal, "ListNewCommits: catfile: %v", err) + } + + i := 0 + var NewBlobs []*pb.ListNewObjects + for scanner.Scan() { + line := scanner.Text() + info := batch.Info(strings.TrimSpace(line)) + + } + + response := &pb.ListNewCommitsResponse{Commits: commits} + stream.Send(response) + + return revList.Wait() +} diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION index a9a7f3fec..8b27ad70f 100644 --- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION +++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION @@ -1 +1 @@ -0.107.0 +0.109.0 diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go index 0b84a872d..575398449 100644 --- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go +++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go @@ -92,6 +92,9 @@ It has these top-level messages: RawDiffResponse RawPatchRequest RawPatchResponse + DiffStatsRequest + DiffStats + DiffStatsResponse AddNamespaceRequest RemoveNamespaceRequest RenameNamespaceRequest @@ -130,6 +133,8 @@ It has these top-level messages: UserRebaseResponse UserSquashRequest UserSquashResponse + ListNewObjectsRequest + ListNewObjectsResponse FindDefaultBranchNameRequest FindDefaultBranchNameResponse FindAllBranchNamesRequest diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/diff.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/diff.pb.go index fce1deadc..a9a6231be 100644 --- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/diff.pb.go +++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/diff.pb.go @@ -478,6 +478,86 @@ func (m *RawPatchResponse) GetData() []byte { return nil } +type DiffStatsRequest struct { + Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"` + LeftCommitId string `protobuf:"bytes,2,opt,name=left_commit_id,json=leftCommitId" json:"left_commit_id,omitempty"` + RightCommitId string `protobuf:"bytes,3,opt,name=right_commit_id,json=rightCommitId" json:"right_commit_id,omitempty"` +} + +func (m *DiffStatsRequest) Reset() { *m = DiffStatsRequest{} } +func (m *DiffStatsRequest) String() string { return proto.CompactTextString(m) } +func (*DiffStatsRequest) ProtoMessage() {} +func (*DiffStatsRequest) Descriptor() ([]byte, []int) { return fileDescriptor4, []int{11} } + +func (m *DiffStatsRequest) GetRepository() *Repository { + if m != nil { + return m.Repository + } + return nil +} + +func (m *DiffStatsRequest) GetLeftCommitId() string { + if m != nil { + return m.LeftCommitId + } + return "" +} + +func (m *DiffStatsRequest) GetRightCommitId() string { + if m != nil { + return m.RightCommitId + } + return "" +} + +type DiffStats struct { + Path []byte `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"` + Additions int32 `protobuf:"varint,2,opt,name=additions" json:"additions,omitempty"` + Deletions int32 `protobuf:"varint,3,opt,name=deletions" json:"deletions,omitempty"` +} + +func (m *DiffStats) Reset() { *m = DiffStats{} } +func (m *DiffStats) String() string { return proto.CompactTextString(m) } +func (*DiffStats) ProtoMessage() {} +func (*DiffStats) Descriptor() ([]byte, []int) { return fileDescriptor4, []int{12} } + +func (m *DiffStats) GetPath() []byte { + if m != nil { + return m.Path + } + return nil +} + +func (m *DiffStats) GetAdditions() int32 { + if m != nil { + return m.Additions + } + return 0 +} + +func (m *DiffStats) GetDeletions() int32 { + if m != nil { + return m.Deletions + } + return 0 +} + +type DiffStatsResponse struct { + Stats []*DiffStats `protobuf:"bytes,1,rep,name=stats" json:"stats,omitempty"` +} + +func (m *DiffStatsResponse) Reset() { *m = DiffStatsResponse{} } +func (m *DiffStatsResponse) String() string { return proto.CompactTextString(m) } +func (*DiffStatsResponse) ProtoMessage() {} +func (*DiffStatsResponse) Descriptor() ([]byte, []int) { return fileDescriptor4, []int{13} } + +func (m *DiffStatsResponse) GetStats() []*DiffStats { + if m != nil { + return m.Stats + } + return nil +} + func init() { proto.RegisterType((*CommitDiffRequest)(nil), "gitaly.CommitDiffRequest") proto.RegisterType((*CommitDiffResponse)(nil), "gitaly.CommitDiffResponse") @@ -490,6 +570,9 @@ func init() { proto.RegisterType((*RawDiffResponse)(nil), "gitaly.RawDiffResponse") proto.RegisterType((*RawPatchRequest)(nil), "gitaly.RawPatchRequest") proto.RegisterType((*RawPatchResponse)(nil), "gitaly.RawPatchResponse") + proto.RegisterType((*DiffStatsRequest)(nil), "gitaly.DiffStatsRequest") + proto.RegisterType((*DiffStats)(nil), "gitaly.DiffStats") + proto.RegisterType((*DiffStatsResponse)(nil), "gitaly.DiffStatsResponse") } // Reference imports to suppress errors if they are not otherwise used. @@ -510,6 +593,7 @@ type DiffServiceClient interface { CommitPatch(ctx context.Context, in *CommitPatchRequest, opts ...grpc.CallOption) (DiffService_CommitPatchClient, error) RawDiff(ctx context.Context, in *RawDiffRequest, opts ...grpc.CallOption) (DiffService_RawDiffClient, error) RawPatch(ctx context.Context, in *RawPatchRequest, opts ...grpc.CallOption) (DiffService_RawPatchClient, error) + DiffStats(ctx context.Context, in *DiffStatsRequest, opts ...grpc.CallOption) (DiffService_DiffStatsClient, error) } type diffServiceClient struct { @@ -680,6 +764,38 @@ func (x *diffServiceRawPatchClient) Recv() (*RawPatchResponse, error) { return m, nil } +func (c *diffServiceClient) DiffStats(ctx context.Context, in *DiffStatsRequest, opts ...grpc.CallOption) (DiffService_DiffStatsClient, error) { + stream, err := grpc.NewClientStream(ctx, &_DiffService_serviceDesc.Streams[5], c.cc, "/gitaly.DiffService/DiffStats", opts...) + if err != nil { + return nil, err + } + x := &diffServiceDiffStatsClient{stream} + if err := x.ClientStream.SendMsg(in); err != nil { + return nil, err + } + if err := x.ClientStream.CloseSend(); err != nil { + return nil, err + } + return x, nil +} + +type DiffService_DiffStatsClient interface { + Recv() (*DiffStatsResponse, error) + grpc.ClientStream +} + +type diffServiceDiffStatsClient struct { + grpc.ClientStream +} + +func (x *diffServiceDiffStatsClient) Recv() (*DiffStatsResponse, error) { + m := new(DiffStatsResponse) + if err := x.ClientStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} + // Server API for DiffService service type DiffServiceServer interface { @@ -690,6 +806,7 @@ type DiffServiceServer interface { CommitPatch(*CommitPatchRequest, DiffService_CommitPatchServer) error RawDiff(*RawDiffRequest, DiffService_RawDiffServer) error RawPatch(*RawPatchRequest, DiffService_RawPatchServer) error + DiffStats(*DiffStatsRequest, DiffService_DiffStatsServer) error } func RegisterDiffServiceServer(s *grpc.Server, srv DiffServiceServer) { @@ -801,6 +918,27 @@ func (x *diffServiceRawPatchServer) Send(m *RawPatchResponse) error { return x.ServerStream.SendMsg(m) } +func _DiffService_DiffStats_Handler(srv interface{}, stream grpc.ServerStream) error { + m := new(DiffStatsRequest) + if err := stream.RecvMsg(m); err != nil { + return err + } + return srv.(DiffServiceServer).DiffStats(m, &diffServiceDiffStatsServer{stream}) +} + +type DiffService_DiffStatsServer interface { + Send(*DiffStatsResponse) error + grpc.ServerStream +} + +type diffServiceDiffStatsServer struct { + grpc.ServerStream +} + +func (x *diffServiceDiffStatsServer) Send(m *DiffStatsResponse) error { + return x.ServerStream.SendMsg(m) +} + var _DiffService_serviceDesc = grpc.ServiceDesc{ ServiceName: "gitaly.DiffService", HandlerType: (*DiffServiceServer)(nil), @@ -831,6 +969,11 @@ var _DiffService_serviceDesc = grpc.ServiceDesc{ Handler: _DiffService_RawPatch_Handler, ServerStreams: true, }, + { + StreamName: "DiffStats", + Handler: _DiffService_DiffStats_Handler, + ServerStreams: true, + }, }, Metadata: "diff.proto", } @@ -838,53 +981,57 @@ var _DiffService_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("diff.proto", fileDescriptor4) } var fileDescriptor4 = []byte{ - // 753 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0x4d, 0x6f, 0xdb, 0x46, - 0x10, 0x2d, 0xf5, 0x41, 0x51, 0x23, 0x5a, 0x76, 0xd7, 0x85, 0x4d, 0xcb, 0x3d, 0x08, 0x44, 0xed, - 0xaa, 0x28, 0x60, 0x14, 0xea, 0xa5, 0xa7, 0x02, 0xb5, 0x8d, 0x16, 0x36, 0x6c, 0xd4, 0x60, 0x0e, - 0x39, 0x12, 0x6b, 0xed, 0x52, 0x5a, 0x84, 0xe4, 0x2a, 0xbb, 0x1b, 0xcb, 0xfa, 0x1b, 0xc9, 0x8f, - 0xc8, 0x25, 0xff, 0x28, 0xbf, 0x22, 0xf7, 0x1c, 0x82, 0xdd, 0x25, 0x29, 0xca, 0x56, 0x72, 0x71, - 0x0e, 0xbe, 0x69, 0xdf, 0x7b, 0x9c, 0x19, 0xbe, 0x37, 0x4b, 0x08, 0x80, 0xb0, 0x24, 0x39, 0x99, - 0x0b, 0xae, 0x38, 0x72, 0xa7, 0x4c, 0xe1, 0x74, 0x39, 0xf0, 0xe5, 0x0c, 0x0b, 0x4a, 0x2c, 0x1a, - 0x7e, 0x6e, 0xc2, 0x8f, 0x67, 0x3c, 0xcb, 0x98, 0x3a, 0x67, 0x49, 0x12, 0xd1, 0xd7, 0x6f, 0xa8, - 0x54, 0x68, 0x0c, 0x20, 0xe8, 0x9c, 0x4b, 0xa6, 0xb8, 0x58, 0x06, 0xce, 0xd0, 0x19, 0xf5, 0xc6, - 0xe8, 0xc4, 0x16, 0x38, 0x89, 0x2a, 0x26, 0xaa, 0xa9, 0xd0, 0x2f, 0xd0, 0x4f, 0x69, 0xa2, 0xe2, - 0x89, 0xa9, 0x16, 0x33, 0x12, 0x34, 0x86, 0xce, 0xa8, 0x1b, 0xf9, 0x1a, 0xb5, 0x2d, 0x2e, 0x08, - 0x3a, 0x86, 0x6d, 0xc1, 0xa6, 0xb3, 0xba, 0xac, 0x69, 0x64, 0x5b, 0x06, 0xae, 0x74, 0x7f, 0x41, - 0xc0, 0xa6, 0x39, 0x17, 0x34, 0x5e, 0xcc, 0x98, 0xa2, 0x72, 0x8e, 0x27, 0x34, 0x9e, 0xcc, 0x70, - 0x3e, 0xa5, 0x41, 0x6b, 0xe8, 0x8c, 0xbc, 0x68, 0xcf, 0xf2, 0x2f, 0x2b, 0xfa, 0xcc, 0xb0, 0xe8, - 0x27, 0x68, 0xcf, 0xb1, 0x9a, 0xc9, 0xa0, 0x3d, 0x6c, 0x8e, 0xfc, 0xc8, 0x1e, 0xd0, 0x11, 0xf4, - 0x27, 0x3c, 0x4d, 0xf1, 0x5c, 0xd2, 0x58, 0x9b, 0x22, 0x03, 0xd7, 0x54, 0xd9, 0x2a, 0x51, 0xfd, - 0xfa, 0x46, 0x46, 0xf3, 0x84, 0x8b, 0x09, 0x8d, 0x53, 0x96, 0x31, 0x25, 0x83, 0x8e, 0x95, 0x15, - 0xe8, 0x95, 0x01, 0xd1, 0x21, 0x74, 0x33, 0x7c, 0x1f, 0x27, 0x2c, 0xa5, 0x32, 0xf0, 0x86, 0xce, - 0xa8, 0x1d, 0x79, 0x19, 0xbe, 0xff, 0x57, 0x9f, 0x4b, 0x32, 0x65, 0x39, 0x95, 0x41, 0xb7, 0x22, - 0xaf, 0xf4, 0xb9, 0x24, 0x6f, 0x97, 0x8a, 0xca, 0x00, 0x2a, 0xf2, 0x54, 0x9f, 0xb5, 0x85, 0x12, - 0x27, 0x34, 0x5e, 0xd5, 0xee, 0x19, 0x85, 0xaf, 0xd1, 0xeb, 0xb2, 0x7e, 0x5d, 0x65, 0x9b, 0xf8, - 0x6b, 0x2a, 0xdb, 0xa8, 0xae, 0xb2, 0xdd, 0xb6, 0xd6, 0x54, 0xa6, 0x63, 0xf8, 0xb1, 0x01, 0xa8, - 0x1e, 0xbf, 0x9c, 0xf3, 0x5c, 0x52, 0x3d, 0x65, 0x22, 0x78, 0x16, 0x6b, 0xef, 0x4c, 0xfc, 0x7e, - 0xe4, 0x69, 0xe0, 0x06, 0xab, 0x19, 0xda, 0x87, 0x8e, 0xe2, 0x96, 0x6a, 0x18, 0xca, 0x55, 0xbc, - 0x24, 0xcc, 0x53, 0x55, 0xa6, 0xae, 0x3e, 0x5e, 0x10, 0xb4, 0x0b, 0x6d, 0xc5, 0x35, 0xdc, 0x32, - 0x70, 0x4b, 0xf1, 0x0b, 0x82, 0x0e, 0xc0, 0xe3, 0x29, 0x89, 0x33, 0x4e, 0x68, 0xd0, 0x36, 0xa3, - 0x75, 0x78, 0x4a, 0xae, 0x39, 0xa1, 0x9a, 0xca, 0xe9, 0xc2, 0x52, 0xae, 0xa5, 0x72, 0xba, 0x30, - 0xd4, 0x1e, 0xb8, 0xb7, 0x2c, 0xc7, 0x62, 0x59, 0x04, 0x53, 0x9c, 0xf4, 0xeb, 0x0a, 0xbc, 0xd0, - 0x53, 0x4d, 0x66, 0x31, 0xc1, 0x0a, 0x1b, 0xe7, 0xfd, 0xc8, 0x17, 0x78, 0x71, 0xa3, 0xc1, 0x73, - 0xac, 0x30, 0x1a, 0x82, 0x4f, 0x73, 0x12, 0xf3, 0xc4, 0x0a, 0x4d, 0x00, 0x5e, 0x04, 0x34, 0x27, - 0xff, 0x27, 0x46, 0x85, 0x7e, 0x85, 0x6d, 0x7e, 0x47, 0x45, 0x92, 0xf2, 0x45, 0x9c, 0x61, 0xf1, - 0x8a, 0x0a, 0x93, 0x81, 0x17, 0xf5, 0x4b, 0xf8, 0xda, 0xa0, 0xe8, 0x67, 0xe8, 0x96, 0xab, 0x43, - 0x4c, 0x00, 0x5e, 0xb4, 0x02, 0x2e, 0x5b, 0x9e, 0xb7, 0xd3, 0x0d, 0x3f, 0x38, 0x95, 0xbb, 0x34, - 0x55, 0xf8, 0xf9, 0xdc, 0xae, 0xea, 0x8e, 0xb4, 0x6a, 0x77, 0x24, 0x7c, 0xef, 0x40, 0xaf, 0x36, - 0xee, 0xf3, 0xdd, 0x82, 0xf0, 0x14, 0x76, 0xd7, 0x7c, 0x2d, 0xd6, 0xf6, 0x77, 0x70, 0x89, 0x06, - 0x64, 0xe0, 0x0c, 0x9b, 0xa3, 0xde, 0x78, 0xb7, 0x34, 0xb5, 0x2e, 0x2e, 0x24, 0x21, 0x29, 0xb3, - 0x31, 0xc1, 0x3f, 0x25, 0x9b, 0x01, 0x78, 0x82, 0xde, 0x31, 0xc9, 0x78, 0x5e, 0x78, 0x51, 0x9d, - 0xc3, 0xdf, 0xca, 0x49, 0x8b, 0x2e, 0xc5, 0xa4, 0x08, 0x5a, 0x66, 0x49, 0xad, 0xab, 0xe6, 0x77, - 0xf8, 0xd6, 0x81, 0x7e, 0x84, 0x17, 0xcf, 0xea, 0x3b, 0x1c, 0x1e, 0xc1, 0x76, 0x35, 0xd3, 0x37, - 0x66, 0x7f, 0xe7, 0x18, 0xdd, 0x93, 0xad, 0xfc, 0xbe, 0xc3, 0x1f, 0xc3, 0xce, 0x6a, 0xa8, 0xaf, - 0x4f, 0x3f, 0xfe, 0xd4, 0x80, 0x9e, 0x7e, 0xc5, 0x17, 0x54, 0xdc, 0xb1, 0x09, 0x45, 0xff, 0x01, - 0xac, 0x3e, 0x8a, 0xe8, 0xe0, 0xc1, 0x16, 0xad, 0xf2, 0x19, 0x0c, 0x36, 0x51, 0xb6, 0x51, 0xf8, - 0xc3, 0x1f, 0x0e, 0xba, 0x5c, 0xbf, 0x50, 0x83, 0x4d, 0xfb, 0x58, 0x94, 0x3a, 0xdc, 0xc8, 0x6d, - 0xaa, 0x65, 0x3f, 0x54, 0x0f, 0x6a, 0xd5, 0x9d, 0x7f, 0x58, 0x6b, 0xcd, 0x00, 0x53, 0xeb, 0x6f, - 0xe8, 0x14, 0xa9, 0xa2, 0xbd, 0x2a, 0x91, 0xb5, 0xd5, 0x1b, 0xec, 0x3f, 0xc2, 0x6b, 0xcf, 0xff, - 0x03, 0x5e, 0x69, 0x2c, 0xaa, 0x0b, 0xd7, 0xa6, 0x08, 0x1e, 0x13, 0xab, 0x12, 0xb7, 0xae, 0xf9, - 0xff, 0xf1, 0xe7, 0x97, 0x00, 0x00, 0x00, 0xff, 0xff, 0x55, 0x7c, 0x0d, 0x4f, 0xa3, 0x08, 0x00, - 0x00, + // 831 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0xcd, 0x6e, 0x33, 0x35, + 0x14, 0x65, 0x9a, 0x64, 0x32, 0xb9, 0x99, 0xa6, 0xad, 0x8b, 0xfa, 0x4d, 0xf3, 0xb1, 0x88, 0x46, + 0xb4, 0x0d, 0x42, 0xaa, 0x50, 0xd8, 0xb0, 0x40, 0x48, 0xb4, 0x15, 0xa8, 0x55, 0x2b, 0xaa, 0x61, + 0xc1, 0x82, 0xc5, 0xc8, 0x8d, 0x3d, 0x89, 0xc5, 0xcc, 0x38, 0xd8, 0xa6, 0x69, 0x5e, 0x03, 0x78, + 0x07, 0x36, 0xec, 0x79, 0x18, 0x5e, 0x85, 0x05, 0xb2, 0x3d, 0x7f, 0x69, 0xa3, 0x6e, 0xfa, 0x2d, + 0xb2, 0x8b, 0xcf, 0x39, 0x73, 0xef, 0xf1, 0xfd, 0x71, 0x0b, 0x40, 0x58, 0x92, 0x9c, 0x2f, 0x04, + 0x57, 0x1c, 0xb9, 0x33, 0xa6, 0x70, 0xba, 0x1a, 0xfa, 0x72, 0x8e, 0x05, 0x25, 0x16, 0x0d, 0xff, + 0x6b, 0xc1, 0xc1, 0x25, 0xcf, 0x32, 0xa6, 0xae, 0x58, 0x92, 0x44, 0xf4, 0xd7, 0xdf, 0xa8, 0x54, + 0x68, 0x02, 0x20, 0xe8, 0x82, 0x4b, 0xa6, 0xb8, 0x58, 0x05, 0xce, 0xc8, 0x19, 0xf7, 0x27, 0xe8, + 0xdc, 0x06, 0x38, 0x8f, 0x2a, 0x26, 0x6a, 0xa8, 0xd0, 0xa7, 0x30, 0x48, 0x69, 0xa2, 0xe2, 0xa9, + 0x89, 0x16, 0x33, 0x12, 0xec, 0x8c, 0x9c, 0x71, 0x2f, 0xf2, 0x35, 0x6a, 0x53, 0x5c, 0x13, 0x74, + 0x0a, 0x7b, 0x82, 0xcd, 0xe6, 0x4d, 0x59, 0xcb, 0xc8, 0x76, 0x0d, 0x5c, 0xe9, 0xbe, 0x82, 0x80, + 0xcd, 0x72, 0x2e, 0x68, 0xbc, 0x9c, 0x33, 0x45, 0xe5, 0x02, 0x4f, 0x69, 0x3c, 0x9d, 0xe3, 0x7c, + 0x46, 0x83, 0xf6, 0xc8, 0x19, 0x7b, 0xd1, 0x91, 0xe5, 0x7f, 0xaa, 0xe8, 0x4b, 0xc3, 0xa2, 0x8f, + 0xa1, 0xb3, 0xc0, 0x6a, 0x2e, 0x83, 0xce, 0xa8, 0x35, 0xf6, 0x23, 0x7b, 0x40, 0x27, 0x30, 0x98, + 0xf2, 0x34, 0xc5, 0x0b, 0x49, 0x63, 0x5d, 0x14, 0x19, 0xb8, 0x26, 0xca, 0x6e, 0x89, 0xea, 0xeb, + 0x1b, 0x19, 0xcd, 0x13, 0x2e, 0xa6, 0x34, 0x4e, 0x59, 0xc6, 0x94, 0x0c, 0xba, 0x56, 0x56, 0xa0, + 0xb7, 0x06, 0x44, 0xef, 0xa1, 0x97, 0xe1, 0xa7, 0x38, 0x61, 0x29, 0x95, 0x81, 0x37, 0x72, 0xc6, + 0x9d, 0xc8, 0xcb, 0xf0, 0xd3, 0x77, 0xfa, 0x5c, 0x92, 0x29, 0xcb, 0xa9, 0x0c, 0x7a, 0x15, 0x79, + 0xab, 0xcf, 0x25, 0xf9, 0xb0, 0x52, 0x54, 0x06, 0x50, 0x91, 0x17, 0xfa, 0xac, 0x4b, 0x28, 0x71, + 0x42, 0xe3, 0x3a, 0x76, 0xdf, 0x28, 0x7c, 0x8d, 0xde, 0x95, 0xf1, 0x9b, 0x2a, 0x9b, 0xc4, 0x5f, + 0x53, 0xd9, 0x44, 0x4d, 0x95, 0xcd, 0xb6, 0xbb, 0xa6, 0x32, 0x19, 0xc3, 0x7f, 0x77, 0x00, 0x35, + 0xdb, 0x2f, 0x17, 0x3c, 0x97, 0x54, 0xbb, 0x4c, 0x04, 0xcf, 0x62, 0x5d, 0x3b, 0xd3, 0x7e, 0x3f, + 0xf2, 0x34, 0x70, 0x8f, 0xd5, 0x1c, 0xbd, 0x83, 0xae, 0xe2, 0x96, 0xda, 0x31, 0x94, 0xab, 0x78, + 0x49, 0x98, 0xaf, 0xaa, 0x9e, 0xba, 0xfa, 0x78, 0x4d, 0xd0, 0x21, 0x74, 0x14, 0xd7, 0x70, 0xdb, + 0xc0, 0x6d, 0xc5, 0xaf, 0x09, 0x3a, 0x06, 0x8f, 0xa7, 0x24, 0xce, 0x38, 0xa1, 0x41, 0xc7, 0x58, + 0xeb, 0xf2, 0x94, 0xdc, 0x71, 0x42, 0x35, 0x95, 0xd3, 0xa5, 0xa5, 0x5c, 0x4b, 0xe5, 0x74, 0x69, + 0xa8, 0x23, 0x70, 0x1f, 0x58, 0x8e, 0xc5, 0xaa, 0x68, 0x4c, 0x71, 0xd2, 0xd7, 0x15, 0x78, 0xa9, + 0x5d, 0x4d, 0xe7, 0x31, 0xc1, 0x0a, 0x9b, 0xca, 0xfb, 0x91, 0x2f, 0xf0, 0xf2, 0x5e, 0x83, 0x57, + 0x58, 0x61, 0x34, 0x02, 0x9f, 0xe6, 0x24, 0xe6, 0x89, 0x15, 0x9a, 0x06, 0x78, 0x11, 0xd0, 0x9c, + 0xfc, 0x90, 0x18, 0x15, 0x3a, 0x83, 0x3d, 0xfe, 0x48, 0x45, 0x92, 0xf2, 0x65, 0x9c, 0x61, 0xf1, + 0x0b, 0x15, 0xa6, 0x07, 0x5e, 0x34, 0x28, 0xe1, 0x3b, 0x83, 0xa2, 0x4f, 0xa0, 0x57, 0x8e, 0x0e, + 0x31, 0x0d, 0xf0, 0xa2, 0x1a, 0xb8, 0x69, 0x7b, 0xde, 0x7e, 0x2f, 0xfc, 0xdb, 0xa9, 0xaa, 0x4b, + 0x53, 0x85, 0xb7, 0x67, 0xbb, 0xaa, 0x1d, 0x69, 0x37, 0x76, 0x24, 0xfc, 0xcb, 0x81, 0x7e, 0xc3, + 0xee, 0xf6, 0x4e, 0x41, 0x78, 0x01, 0x87, 0x6b, 0x75, 0x2d, 0xc6, 0xf6, 0x73, 0x70, 0x89, 0x06, + 0x64, 0xe0, 0x8c, 0x5a, 0xe3, 0xfe, 0xe4, 0xb0, 0x2c, 0x6a, 0x53, 0x5c, 0x48, 0x42, 0x52, 0xf6, + 0xc6, 0x34, 0xfe, 0x2d, 0xbd, 0x19, 0x82, 0x27, 0xe8, 0x23, 0x93, 0x8c, 0xe7, 0x45, 0x2d, 0xaa, + 0x73, 0xf8, 0x59, 0xe9, 0xb4, 0xc8, 0x52, 0x38, 0x45, 0xd0, 0x36, 0x43, 0x6a, 0xab, 0x6a, 0x7e, + 0x87, 0xbf, 0x3b, 0x30, 0x88, 0xf0, 0x72, 0xab, 0xde, 0xe1, 0xf0, 0x04, 0xf6, 0x2a, 0x4f, 0xaf, + 0x78, 0xff, 0xc3, 0x31, 0xba, 0x37, 0x97, 0xf2, 0xc3, 0x9a, 0x3f, 0x85, 0xfd, 0xda, 0xd4, 0x2b, + 0xee, 0xff, 0x74, 0x60, 0x5f, 0x5f, 0xf1, 0x47, 0x85, 0x95, 0xdc, 0x1e, 0xfb, 0x3f, 0x43, 0xaf, + 0x72, 0xa5, 0x7d, 0x37, 0xf6, 0xd0, 0xfc, 0xd6, 0x6f, 0x10, 0x26, 0x84, 0x29, 0xc6, 0x73, 0x69, + 0x32, 0x75, 0xa2, 0x1a, 0xd0, 0x2c, 0xa1, 0x29, 0xb5, 0x6c, 0xcb, 0xb2, 0x15, 0x10, 0x7e, 0x0d, + 0x07, 0x8d, 0x2b, 0x17, 0xc5, 0x39, 0x83, 0x8e, 0xd4, 0x40, 0xb1, 0x3f, 0x07, 0xe5, 0x75, 0x6b, + 0xa5, 0xe5, 0x27, 0xff, 0xb4, 0xa0, 0x6f, 0x40, 0x2a, 0x1e, 0xd9, 0x94, 0xa2, 0xef, 0x01, 0xea, + 0x3f, 0x23, 0xe8, 0xf8, 0xd9, 0xde, 0xd5, 0x13, 0x3d, 0x1c, 0x6e, 0xa2, 0x6c, 0xf6, 0xf0, 0xa3, + 0x2f, 0x1c, 0x74, 0xb3, 0xfe, 0x04, 0x0d, 0x37, 0x6d, 0x70, 0x11, 0xea, 0xfd, 0x46, 0x6e, 0x53, + 0x2c, 0xfb, 0xb4, 0x3f, 0x8b, 0xd5, 0x9c, 0xd5, 0xe7, 0xb1, 0xd6, 0x46, 0xc6, 0xc4, 0xfa, 0x06, + 0xba, 0xc5, 0x1e, 0xa0, 0xa3, 0x6a, 0x08, 0xd6, 0x96, 0x75, 0xf8, 0xee, 0x05, 0xde, 0xf8, 0xfe, + 0x5b, 0xf0, 0xca, 0x51, 0x44, 0x4d, 0xe1, 0x9a, 0x8b, 0xe0, 0x25, 0xd1, 0x08, 0x71, 0xd5, 0x1c, + 0x87, 0xe0, 0x65, 0x6b, 0x8a, 0x20, 0xc7, 0x1b, 0x98, 0x3a, 0xca, 0x83, 0x6b, 0xfe, 0xef, 0xfb, + 0xf2, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5d, 0xc8, 0xdc, 0x4e, 0x1b, 0x0a, 0x00, 0x00, } diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ref.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ref.pb.go index 5eec6cb2a..d6b29b1fe 100644 --- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ref.pb.go +++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ref.pb.go @@ -41,7 +41,7 @@ func (x FindLocalBranchesRequest_SortBy) String() string { return proto.EnumName(FindLocalBranchesRequest_SortBy_name, int32(x)) } func (FindLocalBranchesRequest_SortBy) EnumDescriptor() ([]byte, []int) { - return fileDescriptor8, []int{8, 0} + return fileDescriptor8, []int{10, 0} } type CreateBranchResponse_Status int32 @@ -70,7 +70,81 @@ func (x CreateBranchResponse_Status) String() string { return proto.EnumName(CreateBranchResponse_Status_name, int32(x)) } func (CreateBranchResponse_Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor8, []int{19, 0} + return fileDescriptor8, []int{21, 0} +} + +type ListNewObjectsRequest struct { + Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"` + CommitId string `protobuf:"bytes,2,opt,name=commit_id,json=commitId" json:"commit_id,omitempty"` +} + +func (m *ListNewObjectsRequest) Reset() { *m = ListNewObjectsRequest{} } +func (m *ListNewObjectsRequest) String() string { return proto.CompactTextString(m) } +func (*ListNewObjectsRequest) ProtoMessage() {} +func (*ListNewObjectsRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{0} } + +func (m *ListNewObjectsRequest) GetRepository() *Repository { + if m != nil { + return m.Repository + } + return nil +} + +func (m *ListNewObjectsRequest) GetCommitId() string { + if m != nil { + return m.CommitId + } + return "" +} + +type ListNewObjectsResponse struct { + NewPushObjects []*ListNewObjectsResponse_NewPushObject `protobuf:"bytes,1,rep,name=new_push_objects,json=newPushObjects" json:"new_push_objects,omitempty"` +} + +func (m *ListNewObjectsResponse) Reset() { *m = ListNewObjectsResponse{} } +func (m *ListNewObjectsResponse) String() string { return proto.CompactTextString(m) } +func (*ListNewObjectsResponse) ProtoMessage() {} +func (*ListNewObjectsResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{1} } + +func (m *ListNewObjectsResponse) GetNewPushObjects() []*ListNewObjectsResponse_NewPushObject { + if m != nil { + return m.NewPushObjects + } + return nil +} + +type ListNewObjectsResponse_NewPushObject struct { + ObjectId string `protobuf:"bytes,1,opt,name=object_id,json=objectId" json:"object_id,omitempty"` + Size int64 `protobuf:"varint,2,opt,name=size" json:"size,omitempty"` + Path string `protobuf:"bytes,3,opt,name=path" json:"path,omitempty"` +} + +func (m *ListNewObjectsResponse_NewPushObject) Reset() { *m = ListNewObjectsResponse_NewPushObject{} } +func (m *ListNewObjectsResponse_NewPushObject) String() string { return proto.CompactTextString(m) } +func (*ListNewObjectsResponse_NewPushObject) ProtoMessage() {} +func (*ListNewObjectsResponse_NewPushObject) Descriptor() ([]byte, []int) { + return fileDescriptor8, []int{1, 0} +} + +func (m *ListNewObjectsResponse_NewPushObject) GetObjectId() string { + if m != nil { + return m.ObjectId + } + return "" +} + +func (m *ListNewObjectsResponse_NewPushObject) GetSize() int64 { + if m != nil { + return m.Size + } + return 0 +} + +func (m *ListNewObjectsResponse_NewPushObject) GetPath() string { + if m != nil { + return m.Path + } + return "" } type FindDefaultBranchNameRequest struct { @@ -80,7 +154,7 @@ type FindDefaultBranchNameRequest struct { func (m *FindDefaultBranchNameRequest) Reset() { *m = FindDefaultBranchNameRequest{} } func (m *FindDefaultBranchNameRequest) String() string { return proto.CompactTextString(m) } func (*FindDefaultBranchNameRequest) ProtoMessage() {} -func (*FindDefaultBranchNameRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{0} } +func (*FindDefaultBranchNameRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{2} } func (m *FindDefaultBranchNameRequest) GetRepository() *Repository { if m != nil { @@ -96,7 +170,7 @@ type FindDefaultBranchNameResponse struct { func (m *FindDefaultBranchNameResponse) Reset() { *m = FindDefaultBranchNameResponse{} } func (m *FindDefaultBranchNameResponse) String() string { return proto.CompactTextString(m) } func (*FindDefaultBranchNameResponse) ProtoMessage() {} -func (*FindDefaultBranchNameResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{1} } +func (*FindDefaultBranchNameResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{3} } func (m *FindDefaultBranchNameResponse) GetName() []byte { if m != nil { @@ -112,7 +186,7 @@ type FindAllBranchNamesRequest struct { func (m *FindAllBranchNamesRequest) Reset() { *m = FindAllBranchNamesRequest{} } func (m *FindAllBranchNamesRequest) String() string { return proto.CompactTextString(m) } func (*FindAllBranchNamesRequest) ProtoMessage() {} -func (*FindAllBranchNamesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{2} } +func (*FindAllBranchNamesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{4} } func (m *FindAllBranchNamesRequest) GetRepository() *Repository { if m != nil { @@ -128,7 +202,7 @@ type FindAllBranchNamesResponse struct { func (m *FindAllBranchNamesResponse) Reset() { *m = FindAllBranchNamesResponse{} } func (m *FindAllBranchNamesResponse) String() string { return proto.CompactTextString(m) } func (*FindAllBranchNamesResponse) ProtoMessage() {} -func (*FindAllBranchNamesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{3} } +func (*FindAllBranchNamesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{5} } func (m *FindAllBranchNamesResponse) GetNames() [][]byte { if m != nil { @@ -144,7 +218,7 @@ type FindAllTagNamesRequest struct { func (m *FindAllTagNamesRequest) Reset() { *m = FindAllTagNamesRequest{} } func (m *FindAllTagNamesRequest) String() string { return proto.CompactTextString(m) } func (*FindAllTagNamesRequest) ProtoMessage() {} -func (*FindAllTagNamesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{4} } +func (*FindAllTagNamesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{6} } func (m *FindAllTagNamesRequest) GetRepository() *Repository { if m != nil { @@ -160,7 +234,7 @@ type FindAllTagNamesResponse struct { func (m *FindAllTagNamesResponse) Reset() { *m = FindAllTagNamesResponse{} } func (m *FindAllTagNamesResponse) String() string { return proto.CompactTextString(m) } func (*FindAllTagNamesResponse) ProtoMessage() {} -func (*FindAllTagNamesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{5} } +func (*FindAllTagNamesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{7} } func (m *FindAllTagNamesResponse) GetNames() [][]byte { if m != nil { @@ -180,7 +254,7 @@ type FindRefNameRequest struct { func (m *FindRefNameRequest) Reset() { *m = FindRefNameRequest{} } func (m *FindRefNameRequest) String() string { return proto.CompactTextString(m) } func (*FindRefNameRequest) ProtoMessage() {} -func (*FindRefNameRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{6} } +func (*FindRefNameRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{8} } func (m *FindRefNameRequest) GetRepository() *Repository { if m != nil { @@ -211,7 +285,7 @@ type FindRefNameResponse struct { func (m *FindRefNameResponse) Reset() { *m = FindRefNameResponse{} } func (m *FindRefNameResponse) String() string { return proto.CompactTextString(m) } func (*FindRefNameResponse) ProtoMessage() {} -func (*FindRefNameResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{7} } +func (*FindRefNameResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{9} } func (m *FindRefNameResponse) GetName() []byte { if m != nil { @@ -228,7 +302,7 @@ type FindLocalBranchesRequest struct { func (m *FindLocalBranchesRequest) Reset() { *m = FindLocalBranchesRequest{} } func (m *FindLocalBranchesRequest) String() string { return proto.CompactTextString(m) } func (*FindLocalBranchesRequest) ProtoMessage() {} -func (*FindLocalBranchesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{8} } +func (*FindLocalBranchesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{10} } func (m *FindLocalBranchesRequest) GetRepository() *Repository { if m != nil { @@ -251,7 +325,7 @@ type FindLocalBranchesResponse struct { func (m *FindLocalBranchesResponse) Reset() { *m = FindLocalBranchesResponse{} } func (m *FindLocalBranchesResponse) String() string { return proto.CompactTextString(m) } func (*FindLocalBranchesResponse) ProtoMessage() {} -func (*FindLocalBranchesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{9} } +func (*FindLocalBranchesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{11} } func (m *FindLocalBranchesResponse) GetBranches() []*FindLocalBranchResponse { if m != nil { @@ -271,7 +345,7 @@ type FindLocalBranchResponse struct { func (m *FindLocalBranchResponse) Reset() { *m = FindLocalBranchResponse{} } func (m *FindLocalBranchResponse) String() string { return proto.CompactTextString(m) } func (*FindLocalBranchResponse) ProtoMessage() {} -func (*FindLocalBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{10} } +func (*FindLocalBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{12} } func (m *FindLocalBranchResponse) GetName() []byte { if m != nil { @@ -317,7 +391,7 @@ type FindLocalBranchCommitAuthor struct { func (m *FindLocalBranchCommitAuthor) Reset() { *m = FindLocalBranchCommitAuthor{} } func (m *FindLocalBranchCommitAuthor) String() string { return proto.CompactTextString(m) } func (*FindLocalBranchCommitAuthor) ProtoMessage() {} -func (*FindLocalBranchCommitAuthor) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{11} } +func (*FindLocalBranchCommitAuthor) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{13} } func (m *FindLocalBranchCommitAuthor) GetName() []byte { if m != nil { @@ -352,7 +426,7 @@ type FindAllBranchesRequest struct { func (m *FindAllBranchesRequest) Reset() { *m = FindAllBranchesRequest{} } func (m *FindAllBranchesRequest) String() string { return proto.CompactTextString(m) } func (*FindAllBranchesRequest) ProtoMessage() {} -func (*FindAllBranchesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{12} } +func (*FindAllBranchesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{14} } func (m *FindAllBranchesRequest) GetRepository() *Repository { if m != nil { @@ -382,7 +456,7 @@ type FindAllBranchesResponse struct { func (m *FindAllBranchesResponse) Reset() { *m = FindAllBranchesResponse{} } func (m *FindAllBranchesResponse) String() string { return proto.CompactTextString(m) } func (*FindAllBranchesResponse) ProtoMessage() {} -func (*FindAllBranchesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{13} } +func (*FindAllBranchesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{15} } func (m *FindAllBranchesResponse) GetBranches() []*FindAllBranchesResponse_Branch { if m != nil { @@ -400,7 +474,7 @@ func (m *FindAllBranchesResponse_Branch) Reset() { *m = FindAllBranchesR func (m *FindAllBranchesResponse_Branch) String() string { return proto.CompactTextString(m) } func (*FindAllBranchesResponse_Branch) ProtoMessage() {} func (*FindAllBranchesResponse_Branch) Descriptor() ([]byte, []int) { - return fileDescriptor8, []int{13, 0} + return fileDescriptor8, []int{15, 0} } func (m *FindAllBranchesResponse_Branch) GetName() []byte { @@ -424,7 +498,7 @@ type FindAllTagsRequest struct { func (m *FindAllTagsRequest) Reset() { *m = FindAllTagsRequest{} } func (m *FindAllTagsRequest) String() string { return proto.CompactTextString(m) } func (*FindAllTagsRequest) ProtoMessage() {} -func (*FindAllTagsRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{14} } +func (*FindAllTagsRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{16} } func (m *FindAllTagsRequest) GetRepository() *Repository { if m != nil { @@ -440,7 +514,7 @@ type FindAllTagsResponse struct { func (m *FindAllTagsResponse) Reset() { *m = FindAllTagsResponse{} } func (m *FindAllTagsResponse) String() string { return proto.CompactTextString(m) } func (*FindAllTagsResponse) ProtoMessage() {} -func (*FindAllTagsResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{15} } +func (*FindAllTagsResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{17} } func (m *FindAllTagsResponse) GetTags() []*Tag { if m != nil { @@ -458,7 +532,7 @@ type RefExistsRequest struct { func (m *RefExistsRequest) Reset() { *m = RefExistsRequest{} } func (m *RefExistsRequest) String() string { return proto.CompactTextString(m) } func (*RefExistsRequest) ProtoMessage() {} -func (*RefExistsRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{16} } +func (*RefExistsRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{18} } func (m *RefExistsRequest) GetRepository() *Repository { if m != nil { @@ -481,7 +555,7 @@ type RefExistsResponse struct { func (m *RefExistsResponse) Reset() { *m = RefExistsResponse{} } func (m *RefExistsResponse) String() string { return proto.CompactTextString(m) } func (*RefExistsResponse) ProtoMessage() {} -func (*RefExistsResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{17} } +func (*RefExistsResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{19} } func (m *RefExistsResponse) GetValue() bool { if m != nil { @@ -499,7 +573,7 @@ type CreateBranchRequest struct { func (m *CreateBranchRequest) Reset() { *m = CreateBranchRequest{} } func (m *CreateBranchRequest) String() string { return proto.CompactTextString(m) } func (*CreateBranchRequest) ProtoMessage() {} -func (*CreateBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{18} } +func (*CreateBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{20} } func (m *CreateBranchRequest) GetRepository() *Repository { if m != nil { @@ -530,7 +604,7 @@ type CreateBranchResponse struct { func (m *CreateBranchResponse) Reset() { *m = CreateBranchResponse{} } func (m *CreateBranchResponse) String() string { return proto.CompactTextString(m) } func (*CreateBranchResponse) ProtoMessage() {} -func (*CreateBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{19} } +func (*CreateBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{21} } func (m *CreateBranchResponse) GetStatus() CreateBranchResponse_Status { if m != nil { @@ -554,7 +628,7 @@ type DeleteBranchRequest struct { func (m *DeleteBranchRequest) Reset() { *m = DeleteBranchRequest{} } func (m *DeleteBranchRequest) String() string { return proto.CompactTextString(m) } func (*DeleteBranchRequest) ProtoMessage() {} -func (*DeleteBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{20} } +func (*DeleteBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{22} } func (m *DeleteBranchRequest) GetRepository() *Repository { if m != nil { @@ -577,7 +651,7 @@ type DeleteBranchResponse struct { func (m *DeleteBranchResponse) Reset() { *m = DeleteBranchResponse{} } func (m *DeleteBranchResponse) String() string { return proto.CompactTextString(m) } func (*DeleteBranchResponse) ProtoMessage() {} -func (*DeleteBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{21} } +func (*DeleteBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{23} } type FindBranchRequest struct { Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"` @@ -588,7 +662,7 @@ type FindBranchRequest struct { func (m *FindBranchRequest) Reset() { *m = FindBranchRequest{} } func (m *FindBranchRequest) String() string { return proto.CompactTextString(m) } func (*FindBranchRequest) ProtoMessage() {} -func (*FindBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{22} } +func (*FindBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{24} } func (m *FindBranchRequest) GetRepository() *Repository { if m != nil { @@ -611,7 +685,7 @@ type FindBranchResponse struct { func (m *FindBranchResponse) Reset() { *m = FindBranchResponse{} } func (m *FindBranchResponse) String() string { return proto.CompactTextString(m) } func (*FindBranchResponse) ProtoMessage() {} -func (*FindBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{23} } +func (*FindBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{25} } func (m *FindBranchResponse) GetBranch() *Branch { if m != nil { @@ -630,7 +704,7 @@ type DeleteRefsRequest struct { func (m *DeleteRefsRequest) Reset() { *m = DeleteRefsRequest{} } func (m *DeleteRefsRequest) String() string { return proto.CompactTextString(m) } func (*DeleteRefsRequest) ProtoMessage() {} -func (*DeleteRefsRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{24} } +func (*DeleteRefsRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{26} } func (m *DeleteRefsRequest) GetRepository() *Repository { if m != nil { @@ -660,7 +734,7 @@ type DeleteRefsResponse struct { func (m *DeleteRefsResponse) Reset() { *m = DeleteRefsResponse{} } func (m *DeleteRefsResponse) String() string { return proto.CompactTextString(m) } func (*DeleteRefsResponse) ProtoMessage() {} -func (*DeleteRefsResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{25} } +func (*DeleteRefsResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{27} } func (m *DeleteRefsResponse) GetGitError() string { if m != nil { @@ -683,7 +757,7 @@ func (m *ListBranchNamesContainingCommitRequest) Reset() { func (m *ListBranchNamesContainingCommitRequest) String() string { return proto.CompactTextString(m) } func (*ListBranchNamesContainingCommitRequest) ProtoMessage() {} func (*ListBranchNamesContainingCommitRequest) Descriptor() ([]byte, []int) { - return fileDescriptor8, []int{26} + return fileDescriptor8, []int{28} } func (m *ListBranchNamesContainingCommitRequest) GetRepository() *Repository { @@ -717,7 +791,7 @@ func (m *ListBranchNamesContainingCommitResponse) Reset() { func (m *ListBranchNamesContainingCommitResponse) String() string { return proto.CompactTextString(m) } func (*ListBranchNamesContainingCommitResponse) ProtoMessage() {} func (*ListBranchNamesContainingCommitResponse) Descriptor() ([]byte, []int) { - return fileDescriptor8, []int{27} + return fileDescriptor8, []int{29} } func (m *ListBranchNamesContainingCommitResponse) GetBranchNames() [][]byte { @@ -739,7 +813,7 @@ func (m *ListTagNamesContainingCommitRequest) Reset() { *m = ListTagName func (m *ListTagNamesContainingCommitRequest) String() string { return proto.CompactTextString(m) } func (*ListTagNamesContainingCommitRequest) ProtoMessage() {} func (*ListTagNamesContainingCommitRequest) Descriptor() ([]byte, []int) { - return fileDescriptor8, []int{28} + return fileDescriptor8, []int{30} } func (m *ListTagNamesContainingCommitRequest) GetRepository() *Repository { @@ -771,7 +845,7 @@ func (m *ListTagNamesContainingCommitResponse) Reset() { *m = ListTagNam func (m *ListTagNamesContainingCommitResponse) String() string { return proto.CompactTextString(m) } func (*ListTagNamesContainingCommitResponse) ProtoMessage() {} func (*ListTagNamesContainingCommitResponse) Descriptor() ([]byte, []int) { - return fileDescriptor8, []int{29} + return fileDescriptor8, []int{31} } func (m *ListTagNamesContainingCommitResponse) GetTagNames() [][]byte { @@ -789,7 +863,7 @@ type GetTagMessagesRequest struct { func (m *GetTagMessagesRequest) Reset() { *m = GetTagMessagesRequest{} } func (m *GetTagMessagesRequest) String() string { return proto.CompactTextString(m) } func (*GetTagMessagesRequest) ProtoMessage() {} -func (*GetTagMessagesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{30} } +func (*GetTagMessagesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{32} } func (m *GetTagMessagesRequest) GetRepository() *Repository { if m != nil { @@ -814,7 +888,7 @@ type GetTagMessagesResponse struct { func (m *GetTagMessagesResponse) Reset() { *m = GetTagMessagesResponse{} } func (m *GetTagMessagesResponse) String() string { return proto.CompactTextString(m) } func (*GetTagMessagesResponse) ProtoMessage() {} -func (*GetTagMessagesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{31} } +func (*GetTagMessagesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{33} } func (m *GetTagMessagesResponse) GetMessage() []byte { if m != nil { @@ -838,7 +912,7 @@ type ListNewCommitsRequest struct { func (m *ListNewCommitsRequest) Reset() { *m = ListNewCommitsRequest{} } func (m *ListNewCommitsRequest) String() string { return proto.CompactTextString(m) } func (*ListNewCommitsRequest) ProtoMessage() {} -func (*ListNewCommitsRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{32} } +func (*ListNewCommitsRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{34} } func (m *ListNewCommitsRequest) GetRepository() *Repository { if m != nil { @@ -861,7 +935,7 @@ type ListNewCommitsResponse struct { func (m *ListNewCommitsResponse) Reset() { *m = ListNewCommitsResponse{} } func (m *ListNewCommitsResponse) String() string { return proto.CompactTextString(m) } func (*ListNewCommitsResponse) ProtoMessage() {} -func (*ListNewCommitsResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{33} } +func (*ListNewCommitsResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{35} } func (m *ListNewCommitsResponse) GetCommits() []*GitCommit { if m != nil { @@ -878,7 +952,7 @@ type FindAllRemoteBranchesRequest struct { func (m *FindAllRemoteBranchesRequest) Reset() { *m = FindAllRemoteBranchesRequest{} } func (m *FindAllRemoteBranchesRequest) String() string { return proto.CompactTextString(m) } func (*FindAllRemoteBranchesRequest) ProtoMessage() {} -func (*FindAllRemoteBranchesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{34} } +func (*FindAllRemoteBranchesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{36} } func (m *FindAllRemoteBranchesRequest) GetRepository() *Repository { if m != nil { @@ -901,7 +975,7 @@ type FindAllRemoteBranchesResponse struct { func (m *FindAllRemoteBranchesResponse) Reset() { *m = FindAllRemoteBranchesResponse{} } func (m *FindAllRemoteBranchesResponse) String() string { return proto.CompactTextString(m) } func (*FindAllRemoteBranchesResponse) ProtoMessage() {} -func (*FindAllRemoteBranchesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{35} } +func (*FindAllRemoteBranchesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{37} } func (m *FindAllRemoteBranchesResponse) GetBranches() []*Branch { if m != nil { @@ -911,6 +985,9 @@ func (m *FindAllRemoteBranchesResponse) GetBranches() []*Branch { } func init() { + proto.RegisterType((*ListNewObjectsRequest)(nil), "gitaly.ListNewObjectsRequest") + proto.RegisterType((*ListNewObjectsResponse)(nil), "gitaly.ListNewObjectsResponse") + proto.RegisterType((*ListNewObjectsResponse_NewPushObject)(nil), "gitaly.ListNewObjectsResponse.NewPushObject") proto.RegisterType((*FindDefaultBranchNameRequest)(nil), "gitaly.FindDefaultBranchNameRequest") proto.RegisterType((*FindDefaultBranchNameResponse)(nil), "gitaly.FindDefaultBranchNameResponse") proto.RegisterType((*FindAllBranchNamesRequest)(nil), "gitaly.FindAllBranchNamesRequest") @@ -983,6 +1060,7 @@ type RefServiceClient interface { GetTagMessages(ctx context.Context, in *GetTagMessagesRequest, opts ...grpc.CallOption) (RefService_GetTagMessagesClient, error) // Returns commits that are only reachable from the ref passed ListNewCommits(ctx context.Context, in *ListNewCommitsRequest, opts ...grpc.CallOption) (RefService_ListNewCommitsClient, error) + ListNewObjects(ctx context.Context, in *ListNewObjectsRequest, opts ...grpc.CallOption) (RefService_ListNewObjectsClient, error) } type refServiceClient struct { @@ -1376,6 +1454,38 @@ func (x *refServiceListNewCommitsClient) Recv() (*ListNewCommitsResponse, error) return m, nil } +func (c *refServiceClient) ListNewObjects(ctx context.Context, in *ListNewObjectsRequest, opts ...grpc.CallOption) (RefService_ListNewObjectsClient, error) { + stream, err := grpc.NewClientStream(ctx, &_RefService_serviceDesc.Streams[10], c.cc, "/gitaly.RefService/ListNewObjects", opts...) + if err != nil { + return nil, err + } + x := &refServiceListNewObjectsClient{stream} + if err := x.ClientStream.SendMsg(in); err != nil { + return nil, err + } + if err := x.ClientStream.CloseSend(); err != nil { + return nil, err + } + return x, nil +} + +type RefService_ListNewObjectsClient interface { + Recv() (*ListNewObjectsResponse, error) + grpc.ClientStream +} + +type refServiceListNewObjectsClient struct { + grpc.ClientStream +} + +func (x *refServiceListNewObjectsClient) Recv() (*ListNewObjectsResponse, error) { + m := new(ListNewObjectsResponse) + if err := x.ClientStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} + // Server API for RefService service type RefServiceServer interface { @@ -1399,6 +1509,7 @@ type RefServiceServer interface { GetTagMessages(*GetTagMessagesRequest, RefService_GetTagMessagesServer) error // Returns commits that are only reachable from the ref passed ListNewCommits(*ListNewCommitsRequest, RefService_ListNewCommitsServer) error + ListNewObjects(*ListNewObjectsRequest, RefService_ListNewObjectsServer) error } func RegisterRefServiceServer(s *grpc.Server, srv RefServiceServer) { @@ -1741,6 +1852,27 @@ func (x *refServiceListNewCommitsServer) Send(m *ListNewCommitsResponse) error { return x.ServerStream.SendMsg(m) } +func _RefService_ListNewObjects_Handler(srv interface{}, stream grpc.ServerStream) error { + m := new(ListNewObjectsRequest) + if err := stream.RecvMsg(m); err != nil { + return err + } + return srv.(RefServiceServer).ListNewObjects(m, &refServiceListNewObjectsServer{stream}) +} + +type RefService_ListNewObjectsServer interface { + Send(*ListNewObjectsResponse) error + grpc.ServerStream +} + +type refServiceListNewObjectsServer struct { + grpc.ServerStream +} + +func (x *refServiceListNewObjectsServer) Send(m *ListNewObjectsResponse) error { + return x.ServerStream.SendMsg(m) +} + var _RefService_serviceDesc = grpc.ServiceDesc{ ServiceName: "gitaly.RefService", HandlerType: (*RefServiceServer)(nil), @@ -1825,6 +1957,11 @@ var _RefService_serviceDesc = grpc.ServiceDesc{ Handler: _RefService_ListNewCommits_Handler, ServerStreams: true, }, + { + StreamName: "ListNewObjects", + Handler: _RefService_ListNewObjects_Handler, + ServerStreams: true, + }, }, Metadata: "ref.proto", } @@ -1832,97 +1969,103 @@ var _RefService_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("ref.proto", fileDescriptor8) } var fileDescriptor8 = []byte{ - // 1461 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0x5f, 0x6f, 0x1a, 0xc7, - 0x16, 0xf7, 0x62, 0x1b, 0xc3, 0x81, 0xe0, 0xf5, 0xc4, 0x76, 0xc8, 0x3a, 0x09, 0xce, 0xe4, 0xff, - 0x4d, 0x84, 0xef, 0x25, 0xba, 0x7d, 0x69, 0x1f, 0x8a, 0x6d, 0x9a, 0x90, 0x38, 0xd8, 0x1a, 0x68, - 0x9a, 0xaa, 0xad, 0x56, 0x6b, 0x18, 0x96, 0xad, 0x80, 0xa5, 0xbb, 0x43, 0x12, 0x3f, 0xa4, 0x52, - 0x5f, 0x2a, 0x55, 0xad, 0xd4, 0xb7, 0x7e, 0x84, 0x7e, 0x95, 0x3e, 0xf4, 0x4b, 0x55, 0x3b, 0x33, - 0xfb, 0x0f, 0x16, 0x6c, 0x95, 0x5a, 0x7d, 0x82, 0x3d, 0x73, 0xce, 0xef, 0xfc, 0x9d, 0x73, 0xce, - 0x40, 0xd6, 0xa1, 0xdd, 0xf2, 0xc8, 0xb1, 0x99, 0x8d, 0xd2, 0xa6, 0xc5, 0x8c, 0xfe, 0x99, 0x96, - 0x77, 0x7b, 0x86, 0x43, 0x3b, 0x82, 0xaa, 0x95, 0x4c, 0xdb, 0x36, 0xfb, 0x74, 0x8f, 0x7f, 0x9d, - 0x8e, 0xbb, 0x7b, 0xcc, 0x1a, 0x50, 0x97, 0x19, 0x83, 0x91, 0x60, 0xc0, 0x04, 0x6e, 0x7c, 0x66, - 0x0d, 0x3b, 0x87, 0xb4, 0x6b, 0x8c, 0xfb, 0x6c, 0xdf, 0x31, 0x86, 0xed, 0x5e, 0xc3, 0x18, 0x50, - 0x42, 0xbf, 0x1b, 0x53, 0x97, 0xa1, 0x0a, 0x80, 0x43, 0x47, 0xb6, 0x6b, 0x31, 0xdb, 0x39, 0x2b, - 0x2a, 0xbb, 0xca, 0xc3, 0x5c, 0x05, 0x95, 0x85, 0xae, 0x32, 0x09, 0x4e, 0x48, 0x84, 0x0b, 0x3f, - 0x85, 0x9b, 0x33, 0x30, 0xdd, 0x91, 0x3d, 0x74, 0x29, 0x42, 0xb0, 0x32, 0x34, 0x06, 0x94, 0xc3, - 0xe5, 0x09, 0xff, 0x8f, 0x8f, 0xe1, 0xba, 0x27, 0x54, 0xed, 0xf7, 0x43, 0x01, 0x77, 0x11, 0x2b, - 0x2a, 0xa0, 0x25, 0x01, 0x4a, 0x13, 0x36, 0x61, 0xd5, 0x53, 0xeb, 0x16, 0x95, 0xdd, 0xe5, 0x87, - 0x79, 0x22, 0x3e, 0xf0, 0x11, 0x6c, 0x4b, 0x99, 0x96, 0x61, 0x2e, 0x6c, 0xc1, 0x1e, 0x5c, 0x9b, - 0x42, 0x9b, 0xab, 0xfe, 0x03, 0x20, 0x4f, 0x80, 0xd0, 0xee, 0x82, 0x29, 0x40, 0x3b, 0x90, 0x6d, - 0xdb, 0x83, 0x81, 0xc5, 0x74, 0xab, 0x53, 0x4c, 0xed, 0x2a, 0x0f, 0xb3, 0x24, 0x23, 0x08, 0xf5, - 0x0e, 0xda, 0x86, 0xf4, 0xc8, 0xa1, 0x5d, 0xeb, 0x7d, 0x71, 0x99, 0x27, 0x40, 0x7e, 0xe1, 0x47, - 0x70, 0x35, 0xa6, 0x7e, 0x4e, 0xb6, 0xfe, 0x50, 0xa0, 0xe8, 0xf1, 0x1e, 0xd9, 0x6d, 0x43, 0xc6, - 0x77, 0xa1, 0x58, 0xa1, 0x4f, 0x61, 0xcd, 0xb5, 0x1d, 0xa6, 0x9f, 0x9e, 0x71, 0x73, 0x0b, 0x95, - 0x07, 0xbe, 0xc0, 0x2c, 0x35, 0xe5, 0xa6, 0xed, 0xb0, 0xfd, 0x33, 0x92, 0x76, 0xf9, 0x2f, 0xfe, - 0x3f, 0xa4, 0x05, 0x05, 0x65, 0x60, 0xa5, 0x51, 0x7d, 0x55, 0x53, 0x97, 0xd0, 0x3a, 0xe4, 0x3e, - 0x3f, 0x39, 0xac, 0xb6, 0x6a, 0x87, 0x7a, 0xb5, 0x79, 0xa0, 0x2a, 0x48, 0x85, 0xbc, 0x4f, 0x38, - 0xac, 0x35, 0x0f, 0xd4, 0x14, 0x7e, 0x23, 0xea, 0x6e, 0x42, 0x83, 0x74, 0xfd, 0x63, 0xc8, 0x9c, - 0x4a, 0x1a, 0xcf, 0x54, 0xae, 0x52, 0x9a, 0x61, 0x96, 0x2f, 0x42, 0x02, 0x01, 0xfc, 0x73, 0x4a, - 0xe4, 0x3f, 0x81, 0x2b, 0x29, 0xa6, 0xf3, 0x73, 0x76, 0x0f, 0x0a, 0xf2, 0xd0, 0x1d, 0x9f, 0x7e, - 0x4b, 0xdb, 0x4c, 0xe6, 0xee, 0x8a, 0xa0, 0x36, 0x05, 0x11, 0x3d, 0x07, 0x49, 0xd0, 0x8d, 0x31, - 0xeb, 0xd9, 0x4e, 0x71, 0x85, 0x47, 0xff, 0xce, 0x0c, 0xab, 0x0f, 0x38, 0x6f, 0x95, 0xb3, 0x92, - 0x7c, 0x3b, 0xf2, 0x85, 0x1a, 0xa0, 0x4a, 0x24, 0xf1, 0xc3, 0xa8, 0x53, 0x5c, 0xbd, 0x38, 0xd8, - 0xba, 0x90, 0x3a, 0xf0, 0x65, 0xf1, 0x3b, 0xd8, 0x99, 0xc3, 0x9f, 0x18, 0x90, 0x4d, 0x58, 0xa5, - 0x03, 0xc3, 0xea, 0xf3, 0x60, 0xe4, 0x89, 0xf8, 0x40, 0x65, 0x58, 0xe9, 0x18, 0x8c, 0x72, 0xff, - 0x73, 0x15, 0xad, 0x2c, 0x3a, 0x5c, 0xd9, 0xef, 0x70, 0xe5, 0x96, 0xdf, 0xe1, 0x08, 0xe7, 0xc3, - 0xbf, 0x29, 0xc1, 0xa5, 0xfe, 0x27, 0x0a, 0xb5, 0x04, 0xb9, 0x01, 0x75, 0x4c, 0xda, 0xd1, 0xed, - 0x61, 0x5f, 0x14, 0x6b, 0x86, 0x80, 0x20, 0x1d, 0x0f, 0xfb, 0x67, 0xe8, 0x01, 0xac, 0x4b, 0x86, - 0xa0, 0x74, 0x96, 0xf9, 0x25, 0x2f, 0x08, 0xb2, 0x6f, 0x04, 0xfe, 0x5d, 0x09, 0xfa, 0xc3, 0x54, - 0xe1, 0xed, 0x4f, 0x15, 0xde, 0xfd, 0x68, 0xd4, 0x13, 0x44, 0xca, 0xb2, 0xc2, 0x02, 0x39, 0xed, - 0x19, 0xa4, 0x05, 0x2d, 0x31, 0xb8, 0x8f, 0x20, 0xcd, 0x0c, 0xc7, 0xa4, 0x8c, 0xbb, 0x90, 0xab, - 0x6c, 0xf8, 0xf8, 0xcf, 0xfc, 0xac, 0x11, 0xc9, 0x80, 0x9f, 0x8b, 0xb6, 0x24, 0xfa, 0xd8, 0x42, - 0x1d, 0xf1, 0x23, 0xd1, 0x61, 0x02, 0x24, 0xe9, 0x6d, 0x09, 0x56, 0x98, 0x61, 0xfa, 0x9e, 0xe6, - 0x7c, 0x90, 0x96, 0x61, 0x12, 0x7e, 0x80, 0xdf, 0x80, 0x4a, 0x68, 0xb7, 0xf6, 0xde, 0x72, 0xd9, - 0x42, 0xc9, 0x53, 0x61, 0xd9, 0xa1, 0x5d, 0x59, 0x4f, 0xde, 0x5f, 0xfc, 0x08, 0x36, 0x22, 0xc8, - 0x61, 0x77, 0x7e, 0x6b, 0xf4, 0xc7, 0x22, 0x60, 0x19, 0x22, 0x3e, 0xf0, 0xf7, 0x70, 0xf5, 0xc0, - 0xa1, 0x06, 0xa3, 0xfe, 0x5d, 0xfe, 0xfb, 0x76, 0xf8, 0x09, 0x49, 0x45, 0x12, 0x52, 0x82, 0x9c, - 0xcb, 0x0c, 0x87, 0xe9, 0x23, 0xdb, 0x1a, 0xfa, 0xd7, 0x1b, 0x38, 0xe9, 0xc4, 0xa3, 0xe0, 0x3f, - 0x15, 0xd8, 0x8c, 0x1b, 0x10, 0x74, 0xa9, 0xb4, 0xcb, 0x0c, 0x36, 0x76, 0xb9, 0xf6, 0x42, 0x78, - 0x41, 0x93, 0xb8, 0xcb, 0x4d, 0xce, 0x4a, 0xa4, 0x08, 0xba, 0x0f, 0x69, 0x51, 0x31, 0xb2, 0x0e, - 0x0a, 0xbe, 0xb0, 0x14, 0x93, 0xa7, 0xb8, 0x01, 0x69, 0x21, 0x89, 0xd2, 0x90, 0x3a, 0x7e, 0xa9, - 0x2e, 0xa1, 0x02, 0x40, 0x8d, 0x10, 0xbd, 0xf6, 0xa6, 0xde, 0x6c, 0x35, 0x55, 0xc5, 0x6b, 0xb6, - 0xde, 0x77, 0xbd, 0xf1, 0xba, 0x7a, 0x54, 0x3f, 0x54, 0x53, 0x68, 0x07, 0xae, 0x45, 0x08, 0x7a, - 0xb3, 0x55, 0x25, 0x2d, 0xfd, 0xe4, 0xb8, 0xde, 0x68, 0xa9, 0xcb, 0xf8, 0x1b, 0xb8, 0x7a, 0x48, - 0xfb, 0xf4, 0x92, 0xa2, 0x89, 0xb7, 0x61, 0x33, 0x0e, 0x2f, 0xbc, 0xc7, 0x5f, 0xc1, 0x86, 0x57, - 0x81, 0x97, 0xa3, 0xf4, 0x13, 0x71, 0x51, 0x26, 0xd2, 0x13, 0x46, 0x58, 0x99, 0x1b, 0xe1, 0x9f, - 0x14, 0xd8, 0x10, 0x36, 0x13, 0xda, 0x5d, 0xa8, 0xcc, 0x9f, 0x00, 0xa2, 0xef, 0xdb, 0x74, 0xc4, - 0xf4, 0x77, 0x16, 0xeb, 0xe9, 0x72, 0xd8, 0xa7, 0x78, 0x17, 0x52, 0xc5, 0xc9, 0x17, 0x16, 0xeb, - 0x9d, 0x70, 0xba, 0xe7, 0x89, 0x43, 0xbb, 0x7e, 0x97, 0xe2, 0xff, 0xf1, 0xff, 0x00, 0x45, 0x4d, - 0x91, 0x9e, 0xec, 0x40, 0xd6, 0xb4, 0x98, 0x4e, 0x1d, 0xc7, 0x76, 0xb8, 0x29, 0x59, 0x92, 0x31, - 0x2d, 0x56, 0xf3, 0xbe, 0xf1, 0xaf, 0x0a, 0xdc, 0x3f, 0xb2, 0xdc, 0xc8, 0xbe, 0xe7, 0x1e, 0xd8, - 0x43, 0x66, 0x58, 0x43, 0x6b, 0x68, 0xca, 0x8e, 0x72, 0x59, 0x1b, 0xcd, 0x26, 0xac, 0xf6, 0xad, - 0x81, 0x25, 0x6e, 0xcd, 0x15, 0x22, 0x3e, 0x30, 0x81, 0x07, 0xe7, 0x1a, 0x24, 0x3d, 0xbb, 0x0d, - 0x79, 0x91, 0x05, 0x5d, 0xac, 0x65, 0x22, 0x56, 0xb9, 0xd3, 0x50, 0xf4, 0xc5, 0x4a, 0x46, 0x51, - 0x53, 0xf8, 0x17, 0x05, 0xee, 0x78, 0xa0, 0xfe, 0x46, 0xf7, 0x2f, 0xbb, 0x58, 0x87, 0xbb, 0xf3, - 0xad, 0x09, 0x33, 0xc7, 0x0c, 0x33, 0xe6, 0x5c, 0x86, 0x49, 0x21, 0xe9, 0xd9, 0x18, 0xb6, 0x9e, - 0x51, 0x0f, 0xe9, 0x15, 0x75, 0x5d, 0xc3, 0x5c, 0x6c, 0x4a, 0x5e, 0x83, 0x35, 0x4f, 0x9f, 0xd5, - 0x11, 0x65, 0x95, 0xf5, 0x66, 0x89, 0x59, 0xef, 0x78, 0xba, 0x52, 0xea, 0x32, 0x09, 0x8d, 0xc1, - 0x5f, 0xc2, 0xf6, 0xa4, 0x5a, 0x69, 0x73, 0x11, 0xd6, 0x06, 0x82, 0x26, 0x2f, 0x99, 0xff, 0x89, - 0xb6, 0xbc, 0xd9, 0xe5, 0xa1, 0xf3, 0x60, 0x64, 0xc9, 0x2a, 0x07, 0x17, 0x7e, 0x70, 0xbf, 0x38, - 0x36, 0xee, 0xc1, 0x96, 0x17, 0x9c, 0x06, 0x7d, 0x27, 0xa2, 0xe1, 0x5e, 0x56, 0x72, 0x70, 0x0d, - 0xb6, 0x27, 0x35, 0x49, 0x27, 0x1e, 0xc3, 0x9a, 0xe0, 0xf2, 0xa7, 0x5b, 0xc2, 0x9c, 0xf5, 0x39, - 0xb0, 0x2b, 0x1e, 0x63, 0xd5, 0x7e, 0x9f, 0xd0, 0x81, 0xed, 0xf7, 0xae, 0x85, 0xf7, 0x15, 0x87, - 0x83, 0xe9, 0x41, 0xbb, 0xca, 0x7a, 0x0c, 0x1e, 0xc9, 0x4b, 0x3f, 0x7e, 0x29, 0x5e, 0x6b, 0x09, - 0x4a, 0xa5, 0x0b, 0xff, 0x99, 0xda, 0x45, 0x26, 0x3b, 0x58, 0x70, 0x5e, 0xf9, 0x21, 0x0f, 0x40, - 0x68, 0xb7, 0x49, 0x9d, 0xb7, 0x56, 0x9b, 0xa2, 0x2e, 0x6c, 0x25, 0xbe, 0x04, 0xd1, 0xdd, 0xe8, - 0x36, 0x33, 0xeb, 0xf1, 0xa9, 0xdd, 0x3b, 0x87, 0x4b, 0xf6, 0xf4, 0x25, 0xa4, 0x07, 0x1b, 0x4a, - 0xe4, 0xb2, 0xa3, 0xdb, 0x89, 0x2b, 0x53, 0xf4, 0x59, 0xa7, 0xe1, 0x79, 0x2c, 0x3e, 0xfc, 0x7f, - 0x15, 0xf4, 0x1a, 0xd6, 0x27, 0x9e, 0x72, 0xe8, 0xd6, 0x84, 0xe8, 0xc4, 0x8b, 0x51, 0x2b, 0xcd, - 0x3c, 0x8f, 0xe0, 0x3e, 0x87, 0x5c, 0xe4, 0xc9, 0x85, 0xb4, 0xa8, 0x4c, 0xfc, 0x19, 0xa8, 0xed, - 0x24, 0x9e, 0x05, 0x21, 0xf8, 0x5a, 0x0c, 0xb6, 0xd8, 0x3b, 0x06, 0xed, 0x9e, 0xf7, 0x88, 0xd2, - 0x6e, 0xcf, 0xe1, 0x48, 0xf4, 0x3f, 0xc0, 0xbe, 0x35, 0x73, 0x21, 0x4d, 0xf6, 0x3f, 0x11, 0xf7, - 0x85, 0xf0, 0x5f, 0x2e, 0x84, 0x71, 0xff, 0xe3, 0xfb, 0x66, 0xdc, 0xff, 0x89, 0x0d, 0x92, 0x63, - 0xf5, 0x44, 0xb1, 0x4d, 0x15, 0x72, 0xbc, 0xd8, 0x66, 0x5d, 0xae, 0x78, 0xb1, 0xcd, 0xbc, 0x0d, - 0x5c, 0xd3, 0x3e, 0x64, 0x83, 0xa5, 0x11, 0x15, 0xc3, 0x0b, 0x18, 0xdf, 0x50, 0xb5, 0xeb, 0x09, - 0x27, 0x41, 0xbe, 0x5e, 0x42, 0x3e, 0xba, 0x9e, 0xa1, 0x9d, 0xe4, 0xa5, 0x4d, 0x20, 0xdd, 0x98, - 0xb7, 0xd1, 0x09, 0xb0, 0xe8, 0xb6, 0x13, 0x82, 0x25, 0xac, 0x58, 0x21, 0x58, 0xe2, 0x82, 0xb4, - 0x84, 0x6a, 0x00, 0xe1, 0x16, 0x83, 0xae, 0x47, 0xc3, 0x12, 0x07, 0xd2, 0x92, 0x8e, 0xa2, 0x30, - 0xe1, 0x0a, 0x11, 0xc2, 0x4c, 0x6d, 0x38, 0x21, 0xcc, 0xf4, 0xc6, 0x81, 0x97, 0xd0, 0x8f, 0x0a, - 0x94, 0xce, 0x99, 0xe2, 0xa8, 0xec, 0x23, 0x5c, 0x6c, 0xff, 0xd0, 0xf6, 0x2e, 0xcc, 0x1f, 0x49, - 0xfa, 0x07, 0xb8, 0x31, 0x6f, 0xd4, 0xa2, 0xc7, 0x51, 0xd0, 0x73, 0xd6, 0x03, 0xed, 0xc9, 0xc5, - 0x98, 0x23, 0xea, 0x9b, 0x50, 0x88, 0xcf, 0x49, 0x74, 0x33, 0x98, 0x24, 0x49, 0x63, 0x5b, 0xbb, - 0x35, 0xeb, 0x38, 0x0e, 0x1a, 0x9f, 0x5b, 0x21, 0x68, 0xe2, 0xe4, 0x0c, 0x41, 0x93, 0xc7, 0x9d, - 0x07, 0x7a, 0x9a, 0xe6, 0x4f, 0xf1, 0xa7, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x22, 0x9c, 0xc4, - 0x71, 0x9d, 0x14, 0x00, 0x00, + // 1565 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0x5f, 0x6f, 0x1b, 0x45, + 0x10, 0xcf, 0x39, 0x89, 0x13, 0x8f, 0x5d, 0xe7, 0xb2, 0x4d, 0x52, 0xf7, 0xd2, 0xd6, 0xe9, 0xf6, + 0x3f, 0xad, 0x1c, 0x70, 0x05, 0x2f, 0xf0, 0x80, 0x93, 0x98, 0xd6, 0x6d, 0xea, 0x44, 0x6b, 0x53, + 0x8a, 0x00, 0x9d, 0x2e, 0xf6, 0xfa, 0x7c, 0xc8, 0xf6, 0x99, 0xbb, 0x75, 0xd3, 0x20, 0x95, 0x47, + 0x24, 0x04, 0x12, 0x6f, 0x7c, 0x04, 0x3e, 0x0a, 0x3c, 0xf0, 0xce, 0xe7, 0x41, 0xb7, 0xbb, 0xf7, + 0xcf, 0x3e, 0x3b, 0x15, 0x26, 0xe2, 0xc9, 0xb7, 0xb3, 0x33, 0xbf, 0xf9, 0xb3, 0xb3, 0x3b, 0x33, + 0x86, 0x8c, 0x43, 0x3b, 0xa5, 0xa1, 0x63, 0x33, 0x1b, 0xa5, 0x4d, 0x8b, 0x19, 0xbd, 0x33, 0x2d, + 0xe7, 0x76, 0x0d, 0x87, 0xb6, 0x05, 0x55, 0x2b, 0x9a, 0xb6, 0x6d, 0xf6, 0xe8, 0x2e, 0x5f, 0x9d, + 0x8c, 0x3a, 0xbb, 0xcc, 0xea, 0x53, 0x97, 0x19, 0xfd, 0xa1, 0x60, 0xc0, 0x5d, 0xd8, 0x3c, 0xb4, + 0x5c, 0x56, 0xa7, 0xa7, 0x47, 0x27, 0xdf, 0xd2, 0x16, 0x73, 0x09, 0xfd, 0x6e, 0x44, 0x5d, 0x86, + 0xca, 0x00, 0x0e, 0x1d, 0xda, 0xae, 0xc5, 0x6c, 0xe7, 0xac, 0xa0, 0xec, 0x28, 0xf7, 0xb3, 0x65, + 0x54, 0x12, 0x4a, 0x4a, 0x24, 0xd8, 0x21, 0x11, 0x2e, 0xb4, 0x0d, 0x99, 0x96, 0xdd, 0xef, 0x5b, + 0x4c, 0xb7, 0xda, 0x85, 0xd4, 0x8e, 0x72, 0x3f, 0x43, 0x56, 0x05, 0xa1, 0xd6, 0xc6, 0x7f, 0x28, + 0xb0, 0x35, 0xae, 0xca, 0x1d, 0xda, 0x03, 0x97, 0xa2, 0x97, 0xa0, 0x0e, 0xe8, 0xa9, 0x3e, 0x1c, + 0xb9, 0x5d, 0xdd, 0x16, 0x7b, 0x05, 0x65, 0x67, 0xf1, 0x7e, 0xb6, 0xfc, 0xc8, 0xd7, 0x98, 0x2c, + 0x59, 0xaa, 0xd3, 0xd3, 0xe3, 0x91, 0xdb, 0x15, 0x64, 0x92, 0x1f, 0x44, 0x97, 0xae, 0xd6, 0x84, + 0x4b, 0x31, 0x06, 0xcf, 0x40, 0x81, 0xef, 0x19, 0xa8, 0x08, 0x03, 0x05, 0xa1, 0xd6, 0x46, 0x08, + 0x96, 0x5c, 0xeb, 0x7b, 0xca, 0x0d, 0x5f, 0x24, 0xfc, 0xdb, 0xa3, 0x0d, 0x0d, 0xd6, 0x2d, 0x2c, + 0x72, 0x5e, 0xfe, 0x8d, 0x09, 0x5c, 0xfb, 0xcc, 0x1a, 0xb4, 0x0f, 0x68, 0xc7, 0x18, 0xf5, 0xd8, + 0x9e, 0x63, 0x0c, 0x5a, 0xdd, 0xba, 0xd1, 0xa7, 0x73, 0x44, 0x0e, 0x3f, 0x86, 0xeb, 0x53, 0x30, + 0x65, 0x88, 0x10, 0x2c, 0x0d, 0x8c, 0x3e, 0xe5, 0x70, 0x39, 0xc2, 0xbf, 0xf1, 0x11, 0x5c, 0xf5, + 0x84, 0x2a, 0xbd, 0x5e, 0x28, 0x30, 0xcf, 0xf9, 0xe1, 0x32, 0x68, 0x49, 0x80, 0xd2, 0x84, 0x0d, + 0x58, 0xf6, 0xd4, 0x8a, 0xa3, 0xc9, 0x11, 0xb1, 0xc0, 0x87, 0xb0, 0x25, 0x65, 0x9a, 0x86, 0x39, + 0xb7, 0x05, 0xbb, 0x70, 0x65, 0x02, 0x6d, 0xa6, 0xfa, 0xb7, 0x80, 0x3c, 0x01, 0x42, 0x3b, 0x73, + 0x1e, 0xc1, 0xcc, 0xe4, 0x45, 0x5b, 0x90, 0x1e, 0x3a, 0xb4, 0x63, 0xbd, 0xe1, 0x99, 0x90, 0x23, + 0x72, 0x85, 0x1f, 0xc0, 0xe5, 0x98, 0xfa, 0x19, 0xa7, 0xf5, 0xa7, 0x02, 0x05, 0x8f, 0xf7, 0xd0, + 0x6e, 0x19, 0x32, 0xbe, 0x73, 0xc5, 0x0a, 0x7d, 0x0a, 0x2b, 0xae, 0xed, 0x30, 0xfd, 0xe4, 0x8c, + 0x9b, 0x9b, 0x2f, 0xdf, 0xf3, 0x05, 0xa6, 0xa9, 0x29, 0x35, 0x6c, 0x87, 0xed, 0x9d, 0x91, 0xb4, + 0xcb, 0x7f, 0xf1, 0x87, 0x90, 0x16, 0x14, 0xb4, 0x0a, 0x4b, 0xf5, 0xca, 0x8b, 0xaa, 0xba, 0x80, + 0xd6, 0x20, 0xfb, 0xf9, 0xf1, 0x41, 0xa5, 0x59, 0x3d, 0xd0, 0x2b, 0x8d, 0x7d, 0x55, 0x41, 0x2a, + 0xe4, 0x7c, 0xc2, 0x41, 0xb5, 0xb1, 0xaf, 0xa6, 0xf0, 0x2b, 0x91, 0x77, 0x63, 0x1a, 0xa4, 0xeb, + 0x1f, 0xc3, 0xea, 0x89, 0xa4, 0xc9, 0x3b, 0x5c, 0x9c, 0x62, 0x96, 0x2f, 0x42, 0x02, 0x01, 0xfc, + 0x73, 0x4a, 0x9c, 0x7f, 0x02, 0x57, 0x52, 0x4c, 0x67, 0x9f, 0xd9, 0x1d, 0xc8, 0xcb, 0x4d, 0x77, + 0xc4, 0xef, 0xb8, 0x3c, 0xbb, 0x4b, 0x82, 0xda, 0x10, 0x44, 0xf4, 0x14, 0x24, 0x41, 0x37, 0x46, + 0xac, 0x6b, 0x3b, 0x85, 0x25, 0x1e, 0xfd, 0x5b, 0x53, 0xac, 0xde, 0xe7, 0xbc, 0x15, 0xce, 0x4a, + 0x72, 0xad, 0xc8, 0x0a, 0xd5, 0x41, 0x95, 0x48, 0xe2, 0x87, 0x51, 0xa7, 0xb0, 0xfc, 0xee, 0x60, + 0x6b, 0x42, 0x6a, 0xdf, 0x97, 0xc5, 0xa7, 0xb0, 0x3d, 0x83, 0x3f, 0x31, 0x20, 0x1b, 0xb0, 0x4c, + 0xfb, 0x86, 0xd5, 0xe3, 0xc1, 0xc8, 0x11, 0xb1, 0x40, 0x25, 0x58, 0x6a, 0x1b, 0x8c, 0x72, 0xff, + 0xb3, 0x65, 0xad, 0x24, 0x8a, 0x42, 0xc9, 0x2f, 0x0a, 0xa5, 0xa6, 0x5f, 0x14, 0x08, 0xe7, 0xc3, + 0xbf, 0x29, 0xc1, 0xa5, 0xfe, 0x2f, 0x12, 0xb5, 0x08, 0xd9, 0x3e, 0x75, 0x4c, 0xda, 0xd6, 0xed, + 0x41, 0x4f, 0x24, 0xeb, 0x2a, 0x01, 0x41, 0x3a, 0x1a, 0xf4, 0xce, 0xd0, 0x3d, 0x58, 0x93, 0x0c, + 0x41, 0xea, 0x2c, 0xf2, 0x4b, 0x9e, 0x17, 0x64, 0xdf, 0x08, 0xfc, 0xbb, 0x12, 0xbc, 0x0f, 0x13, + 0x89, 0xb7, 0x37, 0x91, 0x78, 0x77, 0xa3, 0x51, 0x4f, 0x10, 0x29, 0xc9, 0x0c, 0x0b, 0xe4, 0xb4, + 0x27, 0x90, 0x16, 0xb4, 0xc4, 0xe0, 0x3e, 0x80, 0x34, 0x33, 0x1c, 0x93, 0x32, 0xee, 0x42, 0xb6, + 0xbc, 0xee, 0xe3, 0x3f, 0xf1, 0x4f, 0x8d, 0x48, 0x06, 0xfc, 0x54, 0x3c, 0x4b, 0xe2, 0x1d, 0x9b, + 0xeb, 0x45, 0xfc, 0x48, 0xbc, 0x30, 0x01, 0x92, 0xf4, 0xb6, 0x08, 0x4b, 0xcc, 0x30, 0x7d, 0x4f, + 0xb3, 0x3e, 0x48, 0xd3, 0x30, 0x09, 0xdf, 0xc0, 0xaf, 0x40, 0x25, 0xb4, 0x53, 0x7d, 0x63, 0xb9, + 0xf3, 0xd5, 0x74, 0x15, 0x16, 0x1d, 0xda, 0x91, 0xf9, 0xe4, 0x7d, 0xe2, 0x07, 0xb0, 0x1e, 0x41, + 0x0e, 0x5f, 0xe7, 0xd7, 0x46, 0x6f, 0x24, 0x02, 0xb6, 0x4a, 0xc4, 0x02, 0xff, 0x00, 0x97, 0xf7, + 0x1d, 0x6a, 0x30, 0xea, 0xdf, 0xe5, 0x7f, 0x6f, 0x87, 0x7f, 0x20, 0xa9, 0xc8, 0x81, 0x14, 0x21, + 0xeb, 0x32, 0xc3, 0x61, 0xfa, 0xd0, 0xb6, 0x06, 0xfe, 0xf5, 0x06, 0x4e, 0x3a, 0xf6, 0x28, 0xf8, + 0x2f, 0x05, 0x36, 0xe2, 0x06, 0x04, 0xaf, 0x54, 0xda, 0x65, 0x06, 0x1b, 0xb9, 0x5c, 0x7b, 0x3e, + 0xbc, 0xa0, 0x49, 0xdc, 0xa5, 0x06, 0x67, 0x25, 0x52, 0x04, 0xdd, 0x85, 0xb4, 0xc8, 0x18, 0x99, + 0x07, 0x79, 0x5f, 0x58, 0x8a, 0xc9, 0x5d, 0x5c, 0x87, 0xb4, 0x90, 0x44, 0x69, 0x48, 0x1d, 0x3d, + 0x57, 0x17, 0x50, 0x1e, 0xa0, 0x4a, 0x88, 0x5e, 0x7d, 0x55, 0x6b, 0x34, 0x1b, 0xaa, 0xe2, 0x3d, + 0xb6, 0xde, 0xba, 0x56, 0x7f, 0x59, 0x39, 0xac, 0x1d, 0xa8, 0x29, 0xb4, 0x0d, 0x57, 0x22, 0x04, + 0xbd, 0xd1, 0xac, 0x90, 0xa6, 0x7e, 0x7c, 0x54, 0xab, 0x37, 0xd5, 0x45, 0xfc, 0x0d, 0x5c, 0x3e, + 0xa0, 0x3d, 0x7a, 0x41, 0xd1, 0xc4, 0x5b, 0xb0, 0x11, 0x87, 0x17, 0xde, 0xe3, 0xaf, 0x60, 0xdd, + 0xcb, 0xc0, 0x8b, 0x51, 0xfa, 0x89, 0xb8, 0x28, 0x63, 0xc7, 0x13, 0x46, 0x58, 0x99, 0x19, 0xe1, + 0x9f, 0x14, 0x58, 0x17, 0x36, 0x13, 0xda, 0x99, 0x2b, 0xcd, 0x1f, 0x01, 0xa2, 0x6f, 0x5a, 0x74, + 0xc8, 0xf4, 0x53, 0x8b, 0x75, 0x75, 0x59, 0xec, 0x53, 0xfc, 0x15, 0x52, 0xc5, 0xce, 0x17, 0x16, + 0xeb, 0x1e, 0x73, 0xba, 0xe7, 0x89, 0x43, 0x3b, 0xfe, 0x2b, 0xc5, 0xbf, 0xf1, 0x07, 0x80, 0xa2, + 0xa6, 0x48, 0x4f, 0xb6, 0x21, 0x63, 0x5a, 0x4c, 0xa7, 0x8e, 0x63, 0x3b, 0x7e, 0xc7, 0x69, 0x5a, + 0xac, 0xea, 0xad, 0xf1, 0xaf, 0x0a, 0xdc, 0xf5, 0x1a, 0xdb, 0x48, 0xb7, 0xb5, 0x6f, 0x0f, 0x98, + 0x61, 0x0d, 0xac, 0x81, 0x29, 0x5f, 0x94, 0x8b, 0xea, 0x68, 0x36, 0x60, 0xb9, 0x67, 0xf5, 0x2d, + 0x71, 0x6b, 0x2e, 0x11, 0xb1, 0xc0, 0x04, 0xee, 0x9d, 0x6b, 0x90, 0xf4, 0xec, 0x26, 0xe4, 0xc4, + 0x29, 0xe8, 0xa2, 0x2d, 0x13, 0xb1, 0xca, 0x9e, 0x84, 0xa2, 0xcf, 0x96, 0x56, 0x15, 0x35, 0x85, + 0x7f, 0x51, 0xe0, 0x96, 0x07, 0xea, 0x77, 0x74, 0xff, 0xb3, 0x8b, 0x35, 0xb8, 0x3d, 0xdb, 0x9a, + 0xf0, 0xe4, 0x98, 0x61, 0xc6, 0x9c, 0x5b, 0x65, 0x52, 0x48, 0x7a, 0x36, 0x82, 0xcd, 0x27, 0xd4, + 0x43, 0x7a, 0x41, 0x5d, 0xd7, 0x30, 0xe7, 0xab, 0x92, 0x57, 0x60, 0xc5, 0xd3, 0x67, 0xb5, 0x45, + 0x5a, 0x65, 0xbc, 0x5a, 0x62, 0xd6, 0xda, 0x9e, 0xae, 0x94, 0xba, 0x48, 0x42, 0x63, 0xf0, 0x97, + 0xb0, 0x35, 0xae, 0x56, 0xda, 0x5c, 0x80, 0x95, 0xbe, 0xa0, 0xc9, 0x4b, 0xe6, 0x2f, 0xd1, 0xa6, + 0x57, 0xbb, 0x3c, 0x74, 0x39, 0xca, 0x2c, 0x73, 0x70, 0xe1, 0x07, 0xf7, 0x8b, 0x63, 0x47, 0xc6, + 0x41, 0x11, 0x8d, 0x8b, 0x1b, 0x07, 0xab, 0xc1, 0x34, 0x18, 0x68, 0x92, 0x4e, 0x3c, 0x84, 0x15, + 0xc1, 0xe5, 0x57, 0xb7, 0x84, 0x3a, 0xeb, 0x73, 0x60, 0x57, 0x0c, 0x63, 0x95, 0x5e, 0x8f, 0xd0, + 0xbe, 0xed, 0xbf, 0x5d, 0x73, 0xf7, 0x2b, 0x0e, 0x07, 0xd3, 0x83, 0xe7, 0x2a, 0xe3, 0x31, 0x78, + 0x24, 0xef, 0xf8, 0xf1, 0x73, 0x31, 0xad, 0x25, 0x28, 0x95, 0x2e, 0xbc, 0x37, 0xd1, 0x8b, 0x8c, + 0xbf, 0x60, 0xc1, 0x7e, 0xf9, 0xef, 0x1c, 0x00, 0xa1, 0x9d, 0x06, 0x75, 0x5e, 0x5b, 0x2d, 0x8a, + 0x3a, 0xb0, 0x99, 0x38, 0x09, 0xa2, 0xdb, 0xd1, 0x6e, 0x66, 0xda, 0xf0, 0xa9, 0xdd, 0x39, 0x87, + 0x4b, 0xbe, 0xe9, 0x0b, 0x48, 0x0f, 0x3a, 0x94, 0xc8, 0x65, 0x47, 0x37, 0x13, 0x5b, 0xa6, 0xe8, + 0x58, 0xa7, 0xe1, 0x59, 0x2c, 0x3e, 0xfc, 0xfb, 0x0a, 0x7a, 0x09, 0x6b, 0x63, 0xa3, 0x1c, 0xba, + 0x31, 0x26, 0x3a, 0x36, 0x31, 0x6a, 0xc5, 0xa9, 0xfb, 0x11, 0xdc, 0xa7, 0x90, 0x8d, 0x8c, 0x5c, + 0x48, 0x8b, 0xca, 0xc4, 0xc7, 0x40, 0x6d, 0x3b, 0x71, 0x2f, 0x08, 0xc1, 0xd7, 0xa2, 0xb0, 0xc5, + 0xe6, 0x18, 0xb4, 0x73, 0xde, 0x10, 0xa5, 0xdd, 0x9c, 0xc1, 0x91, 0xe8, 0x7f, 0x80, 0x7d, 0x63, + 0x6a, 0x43, 0x9a, 0xec, 0x7f, 0x22, 0xee, 0x33, 0xe1, 0xbf, 0x6c, 0x08, 0xe3, 0xfe, 0xc7, 0xfb, + 0xcd, 0xb8, 0xff, 0x63, 0x1d, 0x24, 0xc7, 0xea, 0x8a, 0x64, 0x9b, 0x48, 0xe4, 0x78, 0xb2, 0x4d, + 0xbb, 0x5c, 0xf1, 0x64, 0x9b, 0x7a, 0x1b, 0xb8, 0xa6, 0x3d, 0xc8, 0x04, 0x4d, 0x23, 0x2a, 0x84, + 0x17, 0x30, 0xde, 0xa1, 0x6a, 0x57, 0x13, 0x76, 0x82, 0xf3, 0x7a, 0x0e, 0xb9, 0x68, 0x7b, 0x86, + 0xb6, 0x93, 0x9b, 0x36, 0x81, 0x74, 0x6d, 0x56, 0x47, 0x27, 0xc0, 0xa2, 0xdd, 0x4e, 0x08, 0x96, + 0xd0, 0x62, 0x85, 0x60, 0x89, 0x0d, 0xd2, 0x02, 0xaa, 0x02, 0x84, 0x5d, 0x0c, 0xba, 0x1a, 0x0d, + 0x4b, 0x1c, 0x48, 0x4b, 0xda, 0x8a, 0xc2, 0x84, 0x2d, 0x44, 0x08, 0x33, 0xd1, 0xe1, 0x84, 0x30, + 0x93, 0x1d, 0x07, 0x5e, 0x40, 0x3f, 0x2a, 0x50, 0x3c, 0xa7, 0x8a, 0xa3, 0x52, 0xf4, 0x8f, 0xb5, + 0xf3, 0xfb, 0x0f, 0x6d, 0xf7, 0x9d, 0xf9, 0x23, 0x87, 0xfe, 0x16, 0xae, 0xcd, 0x2a, 0xb5, 0xe8, + 0x61, 0x14, 0xf4, 0x9c, 0xf6, 0x40, 0x7b, 0xf4, 0x6e, 0xcc, 0x11, 0xf5, 0x0d, 0xc8, 0xc7, 0xeb, + 0x24, 0xba, 0x1e, 0x54, 0x92, 0xa4, 0xb2, 0xad, 0xdd, 0x98, 0xb6, 0x1d, 0x07, 0x8d, 0xd7, 0xad, + 0x10, 0x34, 0xb1, 0x72, 0x86, 0xa0, 0xc9, 0xe5, 0x6e, 0x0c, 0x54, 0xfe, 0x75, 0x39, 0x01, 0x1a, + 0xff, 0x77, 0x76, 0x02, 0x74, 0xec, 0x7f, 0x51, 0x0f, 0xf4, 0x24, 0xcd, 0xe7, 0xfb, 0xc7, 0xff, + 0x04, 0x00, 0x00, 0xff, 0xff, 0x51, 0x09, 0x11, 0x6b, 0x25, 0x16, 0x00, 0x00, } diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/smarthttp.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/smarthttp.pb.go index ebaebb71d..336d74dfc 100644 --- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/smarthttp.pb.go +++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/smarthttp.pb.go @@ -21,6 +21,8 @@ type InfoRefsRequest struct { Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"` // Parameters to use with git -c (key=value pairs) GitConfigOptions []string `protobuf:"bytes,2,rep,name=git_config_options,json=gitConfigOptions" json:"git_config_options,omitempty"` + // Git protocol version + GitProtocol string `protobuf:"bytes,3,opt,name=git_protocol,json=gitProtocol" json:"git_protocol,omitempty"` } func (m *InfoRefsRequest) Reset() { *m = InfoRefsRequest{} } @@ -42,6 +44,13 @@ func (m *InfoRefsRequest) GetGitConfigOptions() []string { return nil } +func (m *InfoRefsRequest) GetGitProtocol() string { + if m != nil { + return m.GitProtocol + } + return "" +} + type InfoRefsResponse struct { Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` } @@ -65,6 +74,8 @@ type PostUploadPackRequest struct { Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` // Parameters to use with git -c (key=value pairs) GitConfigOptions []string `protobuf:"bytes,3,rep,name=git_config_options,json=gitConfigOptions" json:"git_config_options,omitempty"` + // Git protocol version + GitProtocol string `protobuf:"bytes,4,opt,name=git_protocol,json=gitProtocol" json:"git_protocol,omitempty"` } func (m *PostUploadPackRequest) Reset() { *m = PostUploadPackRequest{} } @@ -93,6 +104,13 @@ func (m *PostUploadPackRequest) GetGitConfigOptions() []string { return nil } +func (m *PostUploadPackRequest) GetGitProtocol() string { + if m != nil { + return m.GitProtocol + } + return "" +} + type PostUploadPackResponse struct { // Raw data from stdout of 'git upload-pack' Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` @@ -120,6 +138,8 @@ type PostReceivePackRequest struct { GlId string `protobuf:"bytes,3,opt,name=gl_id,json=glId" json:"gl_id,omitempty"` GlRepository string `protobuf:"bytes,4,opt,name=gl_repository,json=glRepository" json:"gl_repository,omitempty"` GlUsername string `protobuf:"bytes,5,opt,name=gl_username,json=glUsername" json:"gl_username,omitempty"` + // Git protocol version + GitProtocol string `protobuf:"bytes,6,opt,name=git_protocol,json=gitProtocol" json:"git_protocol,omitempty"` } func (m *PostReceivePackRequest) Reset() { *m = PostReceivePackRequest{} } @@ -162,6 +182,13 @@ func (m *PostReceivePackRequest) GetGlUsername() string { return "" } +func (m *PostReceivePackRequest) GetGitProtocol() string { + if m != nil { + return m.GitProtocol + } + return "" +} + type PostReceivePackResponse struct { // Raw data from stdout of 'git receive-pack' Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` @@ -488,30 +515,31 @@ var _SmartHTTPService_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("smarthttp.proto", fileDescriptor13) } var fileDescriptor13 = []byte{ - // 386 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xdd, 0xee, 0xd2, 0x40, - 0x10, 0xc5, 0x5d, 0xbe, 0x12, 0x06, 0x14, 0x32, 0x44, 0x69, 0x9a, 0x28, 0xa4, 0x26, 0xa6, 0x17, - 0x48, 0x08, 0x3e, 0x82, 0x37, 0x12, 0x4d, 0x24, 0x0b, 0x24, 0xde, 0x35, 0x6b, 0xbb, 0x2c, 0x1b, - 0x97, 0x6e, 0xed, 0x2e, 0x24, 0x3c, 0x84, 0x4f, 0xe4, 0xbb, 0xf8, 0x2c, 0xc6, 0xd6, 0x52, 0x3e, - 0xac, 0x17, 0x9a, 0xff, 0x5d, 0x33, 0x67, 0xf6, 0x9c, 0xdf, 0xee, 0x4c, 0xa1, 0x67, 0xf6, 0x2c, - 0xb5, 0x3b, 0x6b, 0x93, 0x69, 0x92, 0x6a, 0xab, 0xb1, 0x25, 0xa4, 0x65, 0xea, 0xe4, 0x76, 0xcd, - 0x8e, 0xa5, 0x3c, 0xca, 0xab, 0x9e, 0x81, 0xde, 0x22, 0xde, 0x6a, 0xca, 0xb7, 0x86, 0xf2, 0xaf, - 0x07, 0x6e, 0x2c, 0xce, 0x01, 0x52, 0x9e, 0x68, 0x23, 0xad, 0x4e, 0x4f, 0x0e, 0x19, 0x13, 0xbf, - 0x33, 0xc7, 0x69, 0x7e, 0x7a, 0x4a, 0xcf, 0x0a, 0xbd, 0xe8, 0xc2, 0x09, 0xa0, 0x90, 0x36, 0x08, - 0x75, 0xbc, 0x95, 0x22, 0xd0, 0x89, 0x95, 0x3a, 0x36, 0x4e, 0x6d, 0x5c, 0xf7, 0xdb, 0xb4, 0x2f, - 0xa4, 0x7d, 0x9b, 0x09, 0x1f, 0xf3, 0xba, 0xf7, 0x0a, 0xfa, 0x65, 0xa8, 0x49, 0x74, 0x6c, 0x38, - 0x22, 0x34, 0x22, 0x66, 0x59, 0x96, 0xd7, 0xa5, 0xd9, 0xb7, 0xf7, 0x8d, 0xc0, 0xd3, 0xa5, 0x36, - 0x76, 0x93, 0x28, 0xcd, 0xa2, 0x25, 0x0b, 0xbf, 0xfc, 0x0f, 0x63, 0x91, 0x50, 0x2b, 0x13, 0x2a, - 0xb8, 0xeb, 0x15, 0xdc, 0x13, 0x78, 0x76, 0x8b, 0xf3, 0x17, 0xfa, 0xef, 0x24, 0x6f, 0xa7, 0x3c, - 0xe4, 0xf2, 0xc8, 0x1f, 0x02, 0x7f, 0x00, 0x4d, 0xa1, 0x02, 0x19, 0x39, 0xf5, 0x31, 0xf1, 0xdb, - 0xb4, 0x21, 0xd4, 0x22, 0xc2, 0x97, 0xf0, 0x58, 0xa8, 0xe0, 0xc2, 0xbf, 0x91, 0x89, 0x5d, 0xa1, - 0x4a, 0x67, 0x1c, 0x41, 0x47, 0xa8, 0xe0, 0x60, 0x78, 0x1a, 0xb3, 0x3d, 0x77, 0x9a, 0x59, 0x0b, - 0x08, 0xb5, 0xf9, 0x5d, 0xf1, 0x5e, 0xc3, 0xf0, 0x0e, 0xbe, 0xfa, 0xb2, 0xf3, 0x1f, 0x35, 0xe8, - 0xaf, 0x7e, 0x6d, 0xdc, 0xbb, 0xf5, 0x7a, 0xb9, 0xe2, 0xe9, 0x51, 0x86, 0x1c, 0xdf, 0x03, 0x16, - 0x73, 0x2e, 0xdf, 0x0c, 0x87, 0xc5, 0x45, 0x6f, 0x16, 0xcf, 0x75, 0xee, 0x85, 0x3c, 0xd1, 0x7b, - 0x34, 0x23, 0xf8, 0x01, 0x06, 0x65, 0xfd, 0x0c, 0xf5, 0xaf, 0x6e, 0x1b, 0x78, 0x72, 0x3d, 0x4a, - 0x7c, 0x5e, 0xf4, 0xff, 0x71, 0xe3, 0xdc, 0x17, 0x55, 0x72, 0x61, 0xea, 0x93, 0x19, 0xc1, 0x4f, - 0xd0, 0xbb, 0x79, 0x35, 0xbc, 0x3a, 0x78, 0xbf, 0x0b, 0xee, 0xa8, 0x52, 0xbf, 0x74, 0xfe, 0xdc, - 0xca, 0xfe, 0xd7, 0x37, 0x3f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xaf, 0x85, 0x01, 0x06, 0xd8, 0x03, - 0x00, 0x00, + // 413 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x52, 0xd1, 0x8a, 0xd3, 0x40, + 0x14, 0x75, 0xda, 0x6e, 0x61, 0x6f, 0xa3, 0x2d, 0x77, 0xd1, 0x0d, 0x01, 0xdd, 0x1a, 0x41, 0xf2, + 0xb0, 0x96, 0xa5, 0x7e, 0x82, 0x2f, 0x2e, 0x0a, 0x86, 0xd9, 0x2d, 0xf8, 0x16, 0xc6, 0x64, 0x3a, + 0x3b, 0x38, 0xcd, 0xc4, 0xcc, 0xb4, 0xd0, 0x1f, 0xf1, 0x3b, 0xfc, 0xa2, 0x7e, 0x8b, 0x34, 0x69, + 0x9a, 0xb6, 0x31, 0x22, 0x8a, 0x6f, 0xc3, 0xbd, 0x77, 0xce, 0x3d, 0xe7, 0xdc, 0x03, 0x43, 0xb3, + 0x60, 0xb9, 0x7d, 0xb0, 0x36, 0x9b, 0x64, 0xb9, 0xb6, 0x1a, 0xfb, 0x42, 0x5a, 0xa6, 0xd6, 0x9e, + 0x63, 0x1e, 0x58, 0xce, 0x93, 0xb2, 0xea, 0x7f, 0x27, 0x30, 0xbc, 0x4d, 0xe7, 0x9a, 0xf2, 0xb9, + 0xa1, 0xfc, 0xdb, 0x92, 0x1b, 0x8b, 0x53, 0x80, 0x9c, 0x67, 0xda, 0x48, 0xab, 0xf3, 0xb5, 0x4b, + 0xc6, 0x24, 0x18, 0x4c, 0x71, 0x52, 0x7e, 0x9f, 0xd0, 0x7d, 0x87, 0x1e, 0x4c, 0xe1, 0x35, 0xa0, + 0x90, 0x36, 0x8a, 0x75, 0x3a, 0x97, 0x22, 0xd2, 0x99, 0x95, 0x3a, 0x35, 0x6e, 0x67, 0xdc, 0x0d, + 0xce, 0xe9, 0x48, 0x48, 0xfb, 0xae, 0x68, 0x7c, 0x2a, 0xeb, 0xf8, 0x12, 0x9c, 0xed, 0x74, 0x41, + 0x21, 0xd6, 0xca, 0xed, 0x8e, 0x49, 0x70, 0x4e, 0x07, 0x42, 0xda, 0x70, 0x57, 0xf2, 0x5f, 0xc3, + 0xa8, 0xe6, 0x65, 0x32, 0x9d, 0x1a, 0x8e, 0x08, 0xbd, 0x84, 0x59, 0x56, 0x50, 0x72, 0x68, 0xf1, + 0xf6, 0x7f, 0x10, 0x78, 0x1a, 0x6a, 0x63, 0x67, 0x99, 0xd2, 0x2c, 0x09, 0x59, 0xfc, 0xf5, 0x5f, + 0x64, 0x54, 0x1b, 0x3a, 0xf5, 0x86, 0x16, 0x69, 0xdd, 0x3f, 0x94, 0xd6, 0x6b, 0x4a, 0xbb, 0x86, + 0x67, 0xa7, 0x8c, 0x7f, 0x23, 0x70, 0x43, 0xca, 0x71, 0xca, 0x63, 0x2e, 0x57, 0xfc, 0x7f, 0x28, + 0xbc, 0x80, 0x33, 0xa1, 0x22, 0x99, 0xec, 0xee, 0xd0, 0x13, 0xea, 0x36, 0xc1, 0x57, 0xf0, 0x58, + 0xa8, 0xe8, 0x00, 0xbf, 0x54, 0xe2, 0x08, 0x55, 0x23, 0xe3, 0x15, 0x0c, 0x84, 0x8a, 0x96, 0x86, + 0xe7, 0x29, 0x5b, 0x70, 0xf7, 0xac, 0x18, 0x01, 0xa1, 0x66, 0xbb, 0x4a, 0xc3, 0x8e, 0x7e, 0xd3, + 0x8e, 0x37, 0x70, 0xd9, 0xd0, 0xd7, 0xee, 0xc7, 0x74, 0xd3, 0x81, 0xd1, 0xdd, 0x36, 0xdb, 0xef, + 0xef, 0xef, 0xc3, 0x3b, 0x9e, 0xaf, 0x64, 0xcc, 0xf1, 0x03, 0x60, 0x95, 0x96, 0xda, 0x56, 0xbc, + 0xac, 0xbc, 0x38, 0x49, 0xb8, 0xe7, 0x36, 0x1b, 0xe5, 0x46, 0xff, 0xd1, 0x0d, 0xc1, 0x8f, 0x70, + 0x51, 0xd7, 0xf7, 0xa4, 0xfe, 0x16, 0x6d, 0x06, 0x4f, 0x8e, 0xaf, 0x8d, 0xcf, 0xab, 0xf9, 0x5f, + 0xe6, 0xd6, 0x7b, 0xd1, 0xd6, 0xae, 0x40, 0x03, 0x72, 0x43, 0xf0, 0x33, 0x0c, 0x4f, 0x5c, 0xc3, + 0xa3, 0x8f, 0xcd, 0xb8, 0x78, 0x57, 0xad, 0xfd, 0x43, 0xe4, 0x2f, 0xfd, 0xe2, 0x58, 0x6f, 0x7f, + 0x06, 0x00, 0x00, 0xff, 0xff, 0x7f, 0xae, 0x74, 0xb7, 0x42, 0x04, 0x00, 0x00, } diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ssh.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ssh.pb.go index ea8809734..656492e52 100644 --- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ssh.pb.go +++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/ssh.pb.go @@ -24,6 +24,8 @@ type SSHUploadPackRequest struct { Stdin []byte `protobuf:"bytes,2,opt,name=stdin,proto3" json:"stdin,omitempty"` // Parameters to use with git -c (key=value pairs) GitConfigOptions []string `protobuf:"bytes,4,rep,name=git_config_options,json=gitConfigOptions" json:"git_config_options,omitempty"` + // Git protocol version + GitProtocol string `protobuf:"bytes,5,opt,name=git_protocol,json=gitProtocol" json:"git_protocol,omitempty"` } func (m *SSHUploadPackRequest) Reset() { *m = SSHUploadPackRequest{} } @@ -52,6 +54,13 @@ func (m *SSHUploadPackRequest) GetGitConfigOptions() []string { return nil } +func (m *SSHUploadPackRequest) GetGitProtocol() string { + if m != nil { + return m.GitProtocol + } + return "" +} + type SSHUploadPackResponse struct { // A chunk of raw data from 'git upload-pack' standard output Stdout []byte `protobuf:"bytes,1,opt,name=stdout,proto3" json:"stdout,omitempty"` @@ -98,6 +107,8 @@ type SSHReceivePackRequest struct { GlId string `protobuf:"bytes,3,opt,name=gl_id,json=glId" json:"gl_id,omitempty"` GlRepository string `protobuf:"bytes,4,opt,name=gl_repository,json=glRepository" json:"gl_repository,omitempty"` GlUsername string `protobuf:"bytes,5,opt,name=gl_username,json=glUsername" json:"gl_username,omitempty"` + // Git protocol version + GitProtocol string `protobuf:"bytes,6,opt,name=git_protocol,json=gitProtocol" json:"git_protocol,omitempty"` } func (m *SSHReceivePackRequest) Reset() { *m = SSHReceivePackRequest{} } @@ -140,6 +151,13 @@ func (m *SSHReceivePackRequest) GetGlUsername() string { return "" } +func (m *SSHReceivePackRequest) GetGitProtocol() string { + if m != nil { + return m.GitProtocol + } + return "" +} + type SSHReceivePackResponse struct { // A chunk of raw data from 'git receive-pack' standard output Stdout []byte `protobuf:"bytes,1,opt,name=stdout,proto3" json:"stdout,omitempty"` @@ -489,32 +507,33 @@ var _SSHService_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("ssh.proto", fileDescriptor14) } var fileDescriptor14 = []byte{ - // 423 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x54, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0xc6, 0x8d, 0x13, 0x91, 0x89, 0x8b, 0xa2, 0xa5, 0x2d, 0x96, 0x05, 0xd4, 0x32, 0x17, 0x1f, - 0x50, 0x84, 0xd2, 0x27, 0x40, 0x08, 0xa9, 0x70, 0x01, 0xad, 0x95, 0x13, 0x07, 0x6b, 0xb1, 0x87, - 0xcd, 0x8a, 0xad, 0xd7, 0xec, 0xae, 0xa3, 0x56, 0x02, 0xf1, 0x12, 0xbc, 0x05, 0xaf, 0xc0, 0xc3, - 0x21, 0xad, 0x4d, 0xb0, 0x13, 0x72, 0xa3, 0xbd, 0x79, 0xe6, 0x9b, 0x9f, 0x6f, 0xbe, 0x19, 0x2f, - 0x4c, 0x8d, 0x59, 0x2f, 0x6a, 0xad, 0xac, 0x22, 0x13, 0x2e, 0x2c, 0x93, 0x37, 0x51, 0x60, 0xd6, - 0x4c, 0x63, 0xd9, 0x7a, 0x93, 0x9f, 0x1e, 0x9c, 0x64, 0xd9, 0xe5, 0xaa, 0x96, 0x8a, 0x95, 0xef, - 0x59, 0xf1, 0x99, 0xe2, 0x97, 0x06, 0x8d, 0x25, 0x4b, 0x00, 0x8d, 0xb5, 0x32, 0xc2, 0x2a, 0x7d, - 0x13, 0x7a, 0xb1, 0x97, 0xce, 0x96, 0x64, 0xd1, 0xd6, 0x58, 0xd0, 0x2d, 0x42, 0x7b, 0x51, 0xe4, - 0x04, 0xc6, 0xc6, 0x96, 0xa2, 0x0a, 0x8f, 0x62, 0x2f, 0x0d, 0x68, 0x6b, 0x90, 0xe7, 0x40, 0xb8, - 0xb0, 0x79, 0xa1, 0xaa, 0x4f, 0x82, 0xe7, 0xaa, 0xb6, 0x42, 0x55, 0x26, 0xf4, 0xe3, 0x51, 0x3a, - 0xa5, 0x73, 0x2e, 0xec, 0x2b, 0x07, 0xbc, 0x6b, 0xfd, 0x6f, 0xfd, 0xfb, 0xa3, 0xb9, 0x4f, 0x4f, - 0x7b, 0x19, 0x35, 0xd3, 0xec, 0x0a, 0x2d, 0x6a, 0x93, 0x7c, 0x85, 0xd3, 0x1d, 0xb2, 0xa6, 0x56, - 0x95, 0x41, 0x72, 0x06, 0x13, 0x63, 0x4b, 0xd5, 0x58, 0xc7, 0x34, 0xa0, 0x9d, 0xd5, 0xf9, 0x51, - 0xeb, 0x8e, 0x52, 0x67, 0x91, 0x0b, 0x98, 0xe1, 0xb5, 0xb0, 0xb9, 0xb1, 0xcc, 0x36, 0x26, 0x1c, - 0x0d, 0xc7, 0x7b, 0x7d, 0x2d, 0x6c, 0xe6, 0x10, 0x0a, 0xb8, 0xfd, 0x4e, 0x7e, 0x79, 0xae, 0x3d, - 0xc5, 0x02, 0xc5, 0x06, 0x6f, 0x47, 0xac, 0x87, 0x30, 0xe6, 0x32, 0x17, 0xa5, 0xa3, 0x34, 0xa5, - 0x3e, 0x97, 0x6f, 0x4a, 0xf2, 0x0c, 0x8e, 0xb9, 0xcc, 0x7b, 0x1d, 0x7c, 0x07, 0x06, 0x5c, 0xfe, - 0xad, 0x4d, 0xce, 0x61, 0xc6, 0x65, 0xde, 0x18, 0xd4, 0x15, 0xbb, 0xc2, 0x70, 0xec, 0x42, 0x80, - 0xcb, 0x55, 0xe7, 0x49, 0xbe, 0xc1, 0xd9, 0x2e, 0xfb, 0xbb, 0x54, 0xaf, 0x80, 0x47, 0xdb, 0xdd, - 0xbd, 0xd4, 0xc5, 0x5a, 0x6c, 0xf0, 0xbf, 0xcb, 0x97, 0x7c, 0x87, 0x70, 0xbf, 0xc9, 0x1d, 0x4e, - 0xb9, 0xfc, 0x71, 0x04, 0x90, 0x65, 0x97, 0x19, 0xea, 0x8d, 0x28, 0x90, 0x50, 0x38, 0x1e, 0x1c, - 0x2c, 0x79, 0xfc, 0x27, 0xff, 0x5f, 0x3f, 0x5d, 0xf4, 0xe4, 0x00, 0xda, 0x4e, 0x90, 0xdc, 0x4b, - 0xbd, 0x17, 0x1e, 0x59, 0xc1, 0x83, 0xe1, 0x1e, 0x49, 0x3f, 0x6d, 0xff, 0x3a, 0xa3, 0xa7, 0x87, - 0xe0, 0x41, 0xd9, 0x0f, 0x30, 0xdf, 0x95, 0x8e, 0x9c, 0xef, 0xf1, 0x19, 0x6e, 0x2e, 0x8a, 0x0f, - 0x07, 0xf4, 0x8b, 0x7f, 0x9c, 0xb8, 0xd7, 0xe6, 0xe2, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe6, - 0xa6, 0x53, 0xee, 0x90, 0x04, 0x00, 0x00, + // 445 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x53, 0xc1, 0x6e, 0xd3, 0x40, + 0x10, 0xc5, 0x8d, 0x13, 0x91, 0x89, 0x8b, 0xa2, 0xa5, 0x2d, 0x56, 0x04, 0xd4, 0x98, 0x8b, 0x0f, + 0x28, 0x42, 0xe9, 0x17, 0x20, 0x84, 0x54, 0xb8, 0x50, 0xad, 0x95, 0x13, 0x07, 0xcb, 0xd8, 0xc3, + 0x66, 0xc5, 0xd6, 0x6b, 0x76, 0x27, 0x51, 0x2b, 0x81, 0xf8, 0x09, 0xbe, 0x8b, 0x5f, 0xe0, 0x57, + 0x10, 0xb6, 0x09, 0x76, 0x4c, 0x6e, 0x90, 0x9b, 0x67, 0xde, 0xec, 0x9b, 0x79, 0x6f, 0xc6, 0x30, + 0xb6, 0x76, 0x35, 0x2f, 0x8d, 0x26, 0xcd, 0x46, 0x42, 0x52, 0xaa, 0x6e, 0x67, 0x9e, 0x5d, 0xa5, + 0x06, 0xf3, 0x3a, 0x1b, 0x7e, 0x77, 0xe0, 0x24, 0x8e, 0x2f, 0x97, 0xa5, 0xd2, 0x69, 0x7e, 0x95, + 0x66, 0x1f, 0x39, 0x7e, 0x5a, 0xa3, 0x25, 0xb6, 0x00, 0x30, 0x58, 0x6a, 0x2b, 0x49, 0x9b, 0x5b, + 0xdf, 0x09, 0x9c, 0x68, 0xb2, 0x60, 0xf3, 0x9a, 0x63, 0xce, 0xb7, 0x08, 0x6f, 0x55, 0xb1, 0x13, + 0x18, 0x5a, 0xca, 0x65, 0xe1, 0x1f, 0x05, 0x4e, 0xe4, 0xf1, 0x3a, 0x60, 0xcf, 0x80, 0x09, 0x49, + 0x49, 0xa6, 0x8b, 0x0f, 0x52, 0x24, 0xba, 0x24, 0xa9, 0x0b, 0xeb, 0xbb, 0xc1, 0x20, 0x1a, 0xf3, + 0xa9, 0x90, 0xf4, 0xb2, 0x02, 0xde, 0xd6, 0x79, 0xf6, 0x04, 0xbc, 0x5f, 0xd5, 0xd5, 0x74, 0x99, + 0x56, 0xfe, 0x30, 0x70, 0xa2, 0x31, 0x9f, 0x08, 0x49, 0x57, 0x4d, 0xea, 0x8d, 0x7b, 0x77, 0x30, + 0x75, 0xf9, 0x69, 0x8b, 0xb4, 0x4c, 0x4d, 0x7a, 0x8d, 0x84, 0xc6, 0x86, 0x9f, 0xe1, 0x74, 0x47, + 0x8f, 0x2d, 0x75, 0x61, 0x91, 0x9d, 0xc1, 0xc8, 0x52, 0xae, 0xd7, 0x54, 0x89, 0xf1, 0x78, 0x13, + 0x35, 0x79, 0x34, 0xa6, 0x99, 0xba, 0x89, 0xd8, 0x05, 0x4c, 0xf0, 0x46, 0x52, 0x62, 0x29, 0xa5, + 0xb5, 0xf5, 0x07, 0x5d, 0x07, 0x5e, 0xdd, 0x48, 0x8a, 0x2b, 0x84, 0x03, 0x6e, 0xbf, 0xc3, 0x1f, + 0x4e, 0xd5, 0x9e, 0x63, 0x86, 0x72, 0x83, 0xff, 0xc7, 0xcf, 0xfb, 0x30, 0x14, 0x2a, 0x91, 0x79, + 0x35, 0xd2, 0x98, 0xbb, 0x42, 0xbd, 0xce, 0xd9, 0x53, 0x38, 0x16, 0x2a, 0x69, 0x75, 0x70, 0x2b, + 0xd0, 0x13, 0xea, 0x0f, 0x37, 0x3b, 0x87, 0x89, 0x50, 0xc9, 0xda, 0xa2, 0x29, 0xd2, 0x6b, 0x6c, + 0xac, 0x05, 0xa1, 0x96, 0x4d, 0xa6, 0x67, 0xfe, 0xa8, 0x67, 0x7e, 0xf8, 0x05, 0xce, 0x76, 0x05, + 0x1e, 0xd2, 0xe0, 0x0c, 0x1e, 0x6c, 0xd7, 0xfb, 0xc2, 0x64, 0x2b, 0xb9, 0xc1, 0x7f, 0xee, 0x70, + 0xf8, 0x15, 0xfc, 0x7e, 0x93, 0x03, 0xaa, 0x5c, 0x7c, 0x3b, 0x02, 0x88, 0xe3, 0xcb, 0x18, 0xcd, + 0x46, 0x66, 0xc8, 0x38, 0x1c, 0x77, 0x6e, 0x9a, 0x3d, 0xfc, 0xfd, 0xfe, 0x6f, 0xbf, 0xee, 0xec, + 0xd1, 0x1e, 0xb4, 0x56, 0x10, 0xde, 0x89, 0x9c, 0xe7, 0x0e, 0x5b, 0xc2, 0xbd, 0xee, 0x1e, 0x59, + 0xfb, 0x59, 0xff, 0x80, 0x67, 0x8f, 0xf7, 0xc1, 0x1d, 0xda, 0x77, 0x30, 0xdd, 0xb5, 0x8e, 0x9d, + 0xf7, 0xe6, 0xe9, 0x6e, 0x6e, 0x16, 0xec, 0x2f, 0x68, 0x93, 0xbf, 0x1f, 0x55, 0x87, 0x79, 0xf1, + 0x33, 0x00, 0x00, 0xff, 0xff, 0xf7, 0x9a, 0x40, 0x97, 0xd6, 0x04, 0x00, 0x00, } diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/wiki.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/wiki.pb.go index d9aa060c9..49304408d 100644 --- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/wiki.pb.go +++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/wiki.pb.go @@ -534,7 +534,8 @@ func (m *WikiFindFileResponse) GetPath() []byte { type WikiGetAllPagesRequest struct { Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"` - Limit uint32 `protobuf:"varint,2,opt,name=limit" json:"limit,omitempty"` + // Passing 0 means no limit is applied + Limit uint32 `protobuf:"varint,2,opt,name=limit" json:"limit,omitempty"` } func (m *WikiGetAllPagesRequest) Reset() { *m = WikiGetAllPagesRequest{} } diff --git a/vendor/vendor.json b/vendor/vendor.json index 4ab857786..09d6caf04 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -201,12 +201,12 @@ "revisionTime": "2017-12-31T12:27:32Z" }, { - "checksumSHA1": "rgCZST5lyva7hcXhmoyewhT9xoM=", + "checksumSHA1": "U4UOUDWW2VRLbWTpLFnbd3OhiIs=", "path": "gitlab.com/gitlab-org/gitaly-proto/go", - "revision": "a475ed6943d03ee5a37dd2c52e6a2763b861f231", - "revisionTime": "2018-07-12T12:56:56Z", - "version": "v0.107.0", - "versionExact": "v0.107.0" + "revision": "83a0dc750b1d847feed3813cfff1145d897df966", + "revisionTime": "2018-07-23T18:51:24Z", + "version": "=new-push-objects-rpc", + "versionExact": "new-push-objects-rpc" }, { "checksumSHA1": "nqWNlnMmVpt628zzvyo6Yv2CX5Q=", -- cgit v1.2.3