diff --git a/blob.proto b/blob.proto index db43444eb73d293d8ea148d0dcd91c96016f4e7e..2ed6f6813622416155e35b0a2be1c2628f8c34b9 100644 --- a/blob.proto +++ b/blob.proto @@ -26,9 +26,9 @@ message GetBlobRequest { message GetBlobResponse { // Blob size; present only in first response message - int64 size = 1; + int64 size = 1; // Chunk of blob data - bytes data = 2; + bytes data = 2; // Object ID of the actual blob returned. Empty if no blob was found. string oid = 3; } @@ -43,9 +43,9 @@ message GetBlobsRequest { message GetBlobsResponse { // Blob size; present only on the first message per blob - int64 size = 1; + int64 size = 1; // Chunk of blob data - bytes data = 2; + bytes data = 2; // Object ID of the current blob. Only present on the first message per blob. Empty if no blob was found. string oid = 3; } diff --git a/commit.proto b/commit.proto index 3db8745c10f22b6dd6c7fe3bf95eacfeb65e958f..fd359a9cb8861bc07f0994647c7a666c8fc08e9b 100644 --- a/commit.proto +++ b/commit.proto @@ -23,6 +23,7 @@ service CommitService { rpc CommitsByMessage(CommitsByMessageRequest) returns (stream CommitsByMessageResponse) {} rpc ListCommitsByOid(ListCommitsByOidRequest) returns (stream ListCommitsByOidResponse) {} + rpc ListTreeEntries(ListTreeEntriesRequest) returns (stream ListTreeEntriesResponse) {} rpc FilterShasWithSignatures(stream FilterShasWithSignaturesRequest) returns (stream FilterShasWithSignaturesResponse) {} } @@ -251,3 +252,24 @@ message FilterShasWithSignaturesRequest { message FilterShasWithSignaturesResponse { repeated bytes shas = 1; } + +message ListTreeEntriesRequest { + message RevisionPath { + // commit ID + bytes oid = 1; + // entry path relative to repository root + bytes path = 2; + } + Repository repository = 1; + RevisionPath commit_blob = 2; + int64 limit = 3; +} + +message ListTreeEntriesResponse { + // Blob size; present only in first response message + int64 size = 1; + // Chunk of blob data + bytes data = 2; + // Object ID of the actual blob returned. Empty if no blob was found. + string oid = 3; +} diff --git a/go/blob.pb.go b/go/blob.pb.go index ea9da52176d23bdd26c4d6477408b3e6ddc78a0f..78ca1d69c5653018006810cf9d5d03f513ffa623 100644 --- a/go/blob.pb.go +++ b/go/blob.pb.go @@ -58,6 +58,8 @@ It has these top-level messages: CommitsByMessageResponse FilterShasWithSignaturesRequest FilterShasWithSignaturesResponse + ListTreeEntriesRequest + ListTreeEntriesResponse ListConflictFilesRequest ConflictFileHeader ConflictFile diff --git a/go/commit.pb.go b/go/commit.pb.go index d62364a4f2b0ffe05e0dccff0cf544fc15a78943..b66679fd5d09f93f227deb8d79bb1d4271c18c5f 100644 --- a/go/commit.pb.go +++ b/go/commit.pb.go @@ -1107,6 +1107,101 @@ func (m *FilterShasWithSignaturesResponse) GetShas() [][]byte { return nil } +type ListTreeEntriesRequest struct { + Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"` + CommitBlob *ListTreeEntriesRequest_RevisionPath `protobuf:"bytes,2,opt,name=commit_blob,json=commitBlob" json:"commit_blob,omitempty"` + Limit int64 `protobuf:"varint,3,opt,name=limit" json:"limit,omitempty"` +} + +func (m *ListTreeEntriesRequest) Reset() { *m = ListTreeEntriesRequest{} } +func (m *ListTreeEntriesRequest) String() string { return proto.CompactTextString(m) } +func (*ListTreeEntriesRequest) ProtoMessage() {} +func (*ListTreeEntriesRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{33} } + +func (m *ListTreeEntriesRequest) GetRepository() *Repository { + if m != nil { + return m.Repository + } + return nil +} + +func (m *ListTreeEntriesRequest) GetCommitBlob() *ListTreeEntriesRequest_RevisionPath { + if m != nil { + return m.CommitBlob + } + return nil +} + +func (m *ListTreeEntriesRequest) GetLimit() int64 { + if m != nil { + return m.Limit + } + return 0 +} + +type ListTreeEntriesRequest_RevisionPath struct { + // commit ID + Oid []byte `protobuf:"bytes,1,opt,name=oid,proto3" json:"oid,omitempty"` + // entry path relative to repository root + Path []byte `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"` +} + +func (m *ListTreeEntriesRequest_RevisionPath) Reset() { *m = ListTreeEntriesRequest_RevisionPath{} } +func (m *ListTreeEntriesRequest_RevisionPath) String() string { return proto.CompactTextString(m) } +func (*ListTreeEntriesRequest_RevisionPath) ProtoMessage() {} +func (*ListTreeEntriesRequest_RevisionPath) Descriptor() ([]byte, []int) { + return fileDescriptor1, []int{33, 0} +} + +func (m *ListTreeEntriesRequest_RevisionPath) GetOid() []byte { + if m != nil { + return m.Oid + } + return nil +} + +func (m *ListTreeEntriesRequest_RevisionPath) GetPath() []byte { + if m != nil { + return m.Path + } + return nil +} + +type ListTreeEntriesResponse struct { + // Blob size; present only in first response message + Size int64 `protobuf:"varint,1,opt,name=size" json:"size,omitempty"` + // Chunk of blob data + Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` + // Object ID of the actual blob returned. Empty if no blob was found. + Oid string `protobuf:"bytes,3,opt,name=oid" json:"oid,omitempty"` +} + +func (m *ListTreeEntriesResponse) Reset() { *m = ListTreeEntriesResponse{} } +func (m *ListTreeEntriesResponse) String() string { return proto.CompactTextString(m) } +func (*ListTreeEntriesResponse) ProtoMessage() {} +func (*ListTreeEntriesResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{34} } + +func (m *ListTreeEntriesResponse) GetSize() int64 { + if m != nil { + return m.Size + } + return 0 +} + +func (m *ListTreeEntriesResponse) GetData() []byte { + if m != nil { + return m.Data + } + return nil +} + +func (m *ListTreeEntriesResponse) GetOid() string { + if m != nil { + return m.Oid + } + return "" +} + func init() { proto.RegisterType((*CommitStatsRequest)(nil), "gitaly.CommitStatsRequest") proto.RegisterType((*CommitStatsResponse)(nil), "gitaly.CommitStatsResponse") @@ -1142,6 +1237,9 @@ func init() { proto.RegisterType((*CommitsByMessageResponse)(nil), "gitaly.CommitsByMessageResponse") proto.RegisterType((*FilterShasWithSignaturesRequest)(nil), "gitaly.FilterShasWithSignaturesRequest") proto.RegisterType((*FilterShasWithSignaturesResponse)(nil), "gitaly.FilterShasWithSignaturesResponse") + proto.RegisterType((*ListTreeEntriesRequest)(nil), "gitaly.ListTreeEntriesRequest") + proto.RegisterType((*ListTreeEntriesRequest_RevisionPath)(nil), "gitaly.ListTreeEntriesRequest.RevisionPath") + proto.RegisterType((*ListTreeEntriesResponse)(nil), "gitaly.ListTreeEntriesResponse") proto.RegisterEnum("gitaly.TreeEntryResponse_ObjectType", TreeEntryResponse_ObjectType_name, TreeEntryResponse_ObjectType_value) proto.RegisterEnum("gitaly.TreeEntry_EntryType", TreeEntry_EntryType_name, TreeEntry_EntryType_value) proto.RegisterEnum("gitaly.FindAllCommitsRequest_Order", FindAllCommitsRequest_Order_name, FindAllCommitsRequest_Order_value) @@ -1174,6 +1272,7 @@ type CommitServiceClient interface { LastCommitForPath(ctx context.Context, in *LastCommitForPathRequest, opts ...grpc.CallOption) (*LastCommitForPathResponse, error) CommitsByMessage(ctx context.Context, in *CommitsByMessageRequest, opts ...grpc.CallOption) (CommitService_CommitsByMessageClient, error) ListCommitsByOid(ctx context.Context, in *ListCommitsByOidRequest, opts ...grpc.CallOption) (CommitService_ListCommitsByOidClient, error) + ListTreeEntries(ctx context.Context, in *ListTreeEntriesRequest, opts ...grpc.CallOption) (CommitService_ListTreeEntriesClient, error) FilterShasWithSignatures(ctx context.Context, opts ...grpc.CallOption) (CommitService_FilterShasWithSignaturesClient, error) } @@ -1527,8 +1626,40 @@ func (x *commitServiceListCommitsByOidClient) Recv() (*ListCommitsByOidResponse, return m, nil } +func (c *commitServiceClient) ListTreeEntries(ctx context.Context, in *ListTreeEntriesRequest, opts ...grpc.CallOption) (CommitService_ListTreeEntriesClient, error) { + stream, err := grpc.NewClientStream(ctx, &_CommitService_serviceDesc.Streams[9], c.cc, "/gitaly.CommitService/ListTreeEntries", opts...) + if err != nil { + return nil, err + } + x := &commitServiceListTreeEntriesClient{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 CommitService_ListTreeEntriesClient interface { + Recv() (*ListTreeEntriesResponse, error) + grpc.ClientStream +} + +type commitServiceListTreeEntriesClient struct { + grpc.ClientStream +} + +func (x *commitServiceListTreeEntriesClient) Recv() (*ListTreeEntriesResponse, error) { + m := new(ListTreeEntriesResponse) + if err := x.ClientStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} + func (c *commitServiceClient) FilterShasWithSignatures(ctx context.Context, opts ...grpc.CallOption) (CommitService_FilterShasWithSignaturesClient, error) { - stream, err := grpc.NewClientStream(ctx, &_CommitService_serviceDesc.Streams[9], c.cc, "/gitaly.CommitService/FilterShasWithSignatures", opts...) + stream, err := grpc.NewClientStream(ctx, &_CommitService_serviceDesc.Streams[10], c.cc, "/gitaly.CommitService/FilterShasWithSignatures", opts...) if err != nil { return nil, err } @@ -1577,6 +1708,7 @@ type CommitServiceServer interface { LastCommitForPath(context.Context, *LastCommitForPathRequest) (*LastCommitForPathResponse, error) CommitsByMessage(*CommitsByMessageRequest, CommitService_CommitsByMessageServer) error ListCommitsByOid(*ListCommitsByOidRequest, CommitService_ListCommitsByOidServer) error + ListTreeEntries(*ListTreeEntriesRequest, CommitService_ListTreeEntriesServer) error FilterShasWithSignatures(CommitService_FilterShasWithSignaturesServer) error } @@ -1881,6 +2013,27 @@ func (x *commitServiceListCommitsByOidServer) Send(m *ListCommitsByOidResponse) return x.ServerStream.SendMsg(m) } +func _CommitService_ListTreeEntries_Handler(srv interface{}, stream grpc.ServerStream) error { + m := new(ListTreeEntriesRequest) + if err := stream.RecvMsg(m); err != nil { + return err + } + return srv.(CommitServiceServer).ListTreeEntries(m, &commitServiceListTreeEntriesServer{stream}) +} + +type CommitService_ListTreeEntriesServer interface { + Send(*ListTreeEntriesResponse) error + grpc.ServerStream +} + +type commitServiceListTreeEntriesServer struct { + grpc.ServerStream +} + +func (x *commitServiceListTreeEntriesServer) Send(m *ListTreeEntriesResponse) error { + return x.ServerStream.SendMsg(m) +} + func _CommitService_FilterShasWithSignatures_Handler(srv interface{}, stream grpc.ServerStream) error { return srv.(CommitServiceServer).FilterShasWithSignatures(&commitServiceFilterShasWithSignaturesServer{stream}) } @@ -1982,6 +2135,11 @@ var _CommitService_serviceDesc = grpc.ServiceDesc{ Handler: _CommitService_ListCommitsByOid_Handler, ServerStreams: true, }, + { + StreamName: "ListTreeEntries", + Handler: _CommitService_ListTreeEntries_Handler, + ServerStreams: true, + }, { StreamName: "FilterShasWithSignatures", Handler: _CommitService_FilterShasWithSignatures_Handler, @@ -1995,98 +2153,104 @@ var _CommitService_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("commit.proto", fileDescriptor1) } var fileDescriptor1 = []byte{ - // 1475 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xdd, 0x6e, 0x1a, 0x47, - 0x14, 0xf6, 0x82, 0xc1, 0x70, 0xa0, 0x0e, 0x9e, 0xfc, 0xe1, 0x75, 0x12, 0x3b, 0xdb, 0x3f, 0xa2, - 0x54, 0xc4, 0xa2, 0x6a, 0xd5, 0x5e, 0x55, 0x76, 0x82, 0x5d, 0xa7, 0x76, 0x88, 0xd6, 0x48, 0x51, - 0x7a, 0x83, 0xd6, 0xec, 0x00, 0xd3, 0x2c, 0x0c, 0xd9, 0x1d, 0xe2, 0xd0, 0x4a, 0xbd, 0xaf, 0xd4, - 0x57, 0xe9, 0x23, 0xf4, 0xa2, 0xaf, 0xd0, 0x17, 0xe8, 0x7d, 0x1f, 0x21, 0x57, 0xd5, 0xfc, 0xec, - 0xce, 0xc2, 0x2e, 0x49, 0x63, 0x8b, 0xdc, 0xa0, 0x39, 0x67, 0xce, 0xce, 0xf9, 0xce, 0x99, 0xf3, - 0x37, 0x40, 0xb9, 0x4b, 0x87, 0x43, 0xc2, 0xea, 0x63, 0x9f, 0x32, 0x8a, 0xf2, 0x7d, 0xc2, 0x1c, - 0x6f, 0x6a, 0x96, 0x83, 0x81, 0xe3, 0x63, 0x57, 0x72, 0xcd, 0xed, 0x3e, 0xa5, 0x7d, 0x0f, 0x3f, - 0x10, 0xd4, 0xd9, 0xa4, 0xf7, 0x80, 0x91, 0x21, 0x0e, 0x98, 0x33, 0x1c, 0x4b, 0x01, 0xcb, 0x05, - 0xf4, 0x50, 0x1c, 0x73, 0xca, 0x1c, 0x16, 0xd8, 0xf8, 0xe5, 0x04, 0x07, 0x0c, 0x35, 0x00, 0x7c, - 0x3c, 0xa6, 0x01, 0x61, 0xd4, 0x9f, 0x56, 0x8d, 0x1d, 0xa3, 0x56, 0x6a, 0xa0, 0xba, 0xd4, 0x50, - 0xb7, 0xa3, 0x1d, 0x3b, 0x26, 0x85, 0x4c, 0x28, 0xf8, 0xf8, 0x15, 0x09, 0x08, 0x1d, 0x55, 0x33, - 0x3b, 0x46, 0xad, 0x6c, 0x47, 0xb4, 0xd5, 0x85, 0xab, 0x33, 0x5a, 0x82, 0x31, 0x1d, 0x05, 0x18, - 0x55, 0x20, 0x4b, 0x89, 0x2b, 0xce, 0x2f, 0xda, 0x7c, 0x89, 0x6e, 0x41, 0xd1, 0x71, 0x5d, 0xc2, - 0x08, 0x1d, 0x05, 0xe2, 0x94, 0x9c, 0xad, 0x19, 0x7c, 0xd7, 0xc5, 0x1e, 0x96, 0xbb, 0x59, 0xb9, - 0x1b, 0x31, 0xac, 0xdf, 0x0c, 0xb8, 0x29, 0xb5, 0x1c, 0x05, 0x7b, 0xa3, 0x2e, 0x0e, 0x18, 0xf5, - 0x2f, 0x63, 0xd0, 0x36, 0x94, 0x1c, 0x75, 0x4c, 0x87, 0xb8, 0x02, 0x4d, 0xd1, 0x86, 0x90, 0x75, - 0xe4, 0xa2, 0x4d, 0x28, 0x74, 0x07, 0xc4, 0x73, 0xf9, 0x6e, 0x56, 0xec, 0xae, 0x09, 0xfa, 0xc8, - 0xb5, 0x76, 0xa1, 0x9a, 0x84, 0xa2, 0xac, 0xbe, 0x06, 0xb9, 0x57, 0x8e, 0x37, 0xc1, 0x02, 0x46, - 0xc1, 0x96, 0x84, 0xf5, 0xbb, 0x01, 0x95, 0xb6, 0x8f, 0x71, 0x73, 0xc4, 0xfc, 0xe9, 0x92, 0xee, - 0x01, 0x21, 0x58, 0x1d, 0x3b, 0x6c, 0x20, 0xd0, 0x96, 0x6d, 0xb1, 0xe6, 0x70, 0x3c, 0x32, 0x24, - 0xac, 0xba, 0xba, 0x63, 0xd4, 0xb2, 0xb6, 0x24, 0xac, 0xbf, 0x0d, 0xd8, 0x88, 0xc1, 0x51, 0xd0, - 0xbf, 0x81, 0x55, 0x36, 0x1d, 0x4b, 0xe4, 0xeb, 0x8d, 0x4f, 0x42, 0x24, 0x09, 0xc1, 0x7a, 0xeb, - 0xec, 0x27, 0xdc, 0x65, 0xed, 0xe9, 0x18, 0xdb, 0xe2, 0x8b, 0xf0, 0xaa, 0x33, 0xfa, 0xaa, 0x11, - 0xac, 0x06, 0xe4, 0x67, 0x2c, 0xb0, 0x64, 0x6d, 0xb1, 0xe6, 0xbc, 0x21, 0x75, 0xb1, 0x80, 0x92, - 0xb3, 0xc5, 0x9a, 0xf3, 0x5c, 0x87, 0x39, 0xd5, 0x9c, 0xc4, 0xcc, 0xd7, 0xd6, 0x57, 0x00, 0x5a, - 0x03, 0x02, 0xc8, 0x3f, 0x6c, 0x9d, 0x9c, 0x1c, 0xb5, 0x2b, 0x2b, 0xa8, 0x00, 0xab, 0xfb, 0xc7, - 0xad, 0xfd, 0x8a, 0xc1, 0x57, 0x6d, 0xbb, 0xd9, 0xac, 0x64, 0xd0, 0x1a, 0x64, 0xdb, 0x7b, 0x87, - 0x95, 0xac, 0x45, 0xe1, 0xba, 0xbc, 0x95, 0x60, 0x1f, 0xb3, 0x73, 0x8c, 0x47, 0x97, 0xf1, 0x33, - 0x82, 0xd5, 0x9e, 0x4f, 0x87, 0xca, 0xc7, 0x62, 0x8d, 0xd6, 0x21, 0xc3, 0xa8, 0xf2, 0x6e, 0x86, - 0x51, 0xab, 0x09, 0x37, 0xe6, 0x15, 0x2a, 0x4f, 0xde, 0x87, 0x35, 0x99, 0xbe, 0x41, 0xd5, 0xd8, - 0xc9, 0xd6, 0x4a, 0x8d, 0x8d, 0x50, 0xdd, 0x21, 0x61, 0xf2, 0x1b, 0x3b, 0x94, 0xb0, 0xfe, 0x31, - 0x78, 0xfe, 0x4c, 0x46, 0x6a, 0x63, 0x59, 0x69, 0x8a, 0x76, 0x21, 0xe7, 0xf4, 0x18, 0xf6, 0x85, - 0x05, 0xa5, 0x86, 0x59, 0x97, 0xd5, 0xa3, 0x1e, 0x56, 0x8f, 0x7a, 0x3b, 0xac, 0x1e, 0xb6, 0x14, - 0x44, 0x0d, 0xc8, 0x9f, 0xe1, 0x1e, 0xf5, 0xe5, 0x95, 0xbd, 0xfd, 0x13, 0x25, 0x19, 0x05, 0x61, - 0x4e, 0x07, 0xa1, 0xf5, 0x05, 0x5c, 0x9b, 0x35, 0x50, 0xe7, 0x4a, 0x97, 0xf3, 0x85, 0x71, 0x39, - 0x5b, 0x12, 0xd6, 0x1b, 0x03, 0x8a, 0x51, 0xcc, 0xa5, 0x54, 0x91, 0x4d, 0x28, 0xf8, 0x94, 0xb2, - 0x8e, 0x8e, 0xb8, 0x35, 0x4e, 0xb7, 0x64, 0xd4, 0x25, 0x32, 0xe0, 0x81, 0x8a, 0xea, 0x55, 0x11, - 0xd5, 0x5b, 0x89, 0xa8, 0xae, 0x8b, 0xdf, 0x58, 0x30, 0x87, 0x61, 0x9a, 0x8b, 0x85, 0xe9, 0x6d, - 0x00, 0x79, 0x5d, 0x42, 0x6b, 0x5e, 0x68, 0x2d, 0x4a, 0x0e, 0xd7, 0xbb, 0x05, 0xc5, 0x9e, 0xe7, - 0xb0, 0x8e, 0x50, 0xbe, 0x26, 0xfd, 0xce, 0x19, 0x4f, 0xb9, 0xf5, 0xf7, 0xa1, 0x18, 0xa9, 0x88, - 0x22, 0x78, 0x25, 0x8a, 0x60, 0x23, 0x16, 0xe1, 0x59, 0xeb, 0x17, 0xb8, 0x7e, 0x88, 0x59, 0x08, - 0x8e, 0xe0, 0xe0, 0x03, 0x16, 0x0b, 0x1e, 0xd0, 0xf3, 0xca, 0x75, 0x40, 0x63, 0xc9, 0x9a, 0x0f, - 0x68, 0x5d, 0x1d, 0x42, 0x09, 0xeb, 0x0c, 0x2a, 0xc7, 0x24, 0x60, 0x07, 0xc4, 0x5b, 0x1a, 0x7c, - 0xeb, 0x1e, 0x6c, 0xc4, 0x74, 0xe8, 0x78, 0xe2, 0x76, 0x48, 0x8c, 0x65, 0x5b, 0x12, 0x56, 0x17, - 0x36, 0x0e, 0xc8, 0xc8, 0x55, 0x69, 0xb7, 0x24, 0x3c, 0xdf, 0x01, 0x8a, 0x2b, 0x51, 0x80, 0xee, - 0x41, 0x5e, 0x06, 0x89, 0xd2, 0x90, 0x52, 0x06, 0x94, 0x80, 0xd5, 0x81, 0x9b, 0xdc, 0xa0, 0xb0, - 0xa0, 0x4c, 0x5b, 0xc4, 0xbd, 0x0c, 0xd6, 0xa8, 0x22, 0x67, 0x55, 0xda, 0x58, 0x87, 0x50, 0x4d, - 0x2a, 0xb8, 0x48, 0xbd, 0x7a, 0x63, 0xc0, 0x75, 0x6e, 0xeb, 0x9e, 0xe7, 0x2d, 0xb9, 0x62, 0x6d, - 0x41, 0x71, 0xe8, 0xbc, 0xee, 0xc8, 0x1a, 0x21, 0x27, 0x82, 0xc2, 0xd0, 0x79, 0x2d, 0x6a, 0x89, - 0xe8, 0x30, 0x2f, 0xc8, 0x38, 0xec, 0x26, 0x7c, 0x8d, 0xbe, 0x85, 0x1c, 0xf5, 0x5d, 0xec, 0x8b, - 0xdc, 0x5d, 0x6f, 0x7c, 0x1c, 0xea, 0x4e, 0x85, 0x5b, 0x6f, 0x71, 0x51, 0x5b, 0x7e, 0x61, 0x7d, - 0x0a, 0x39, 0x41, 0xf3, 0xbc, 0x7c, 0xd2, 0x7a, 0xd2, 0x54, 0x19, 0xda, 0x7a, 0xda, 0x92, 0xdd, - 0xe6, 0xd1, 0x5e, 0xbb, 0x59, 0xc9, 0xf0, 0x14, 0x99, 0x3f, 0xec, 0x22, 0x3e, 0xfc, 0x37, 0x13, - 0x8f, 0x97, 0xa5, 0x39, 0x30, 0xea, 0xfe, 0xd2, 0x79, 0x92, 0x40, 0x37, 0x20, 0x4f, 0x7b, 0xbd, - 0x00, 0x33, 0xe5, 0x3b, 0x45, 0xe9, 0xf4, 0xc9, 0xc5, 0xd2, 0x87, 0x4b, 0xf7, 0xa8, 0xe7, 0xd1, - 0x73, 0x51, 0xf6, 0x0a, 0xb6, 0xa2, 0xf8, 0x00, 0xc5, 0x7d, 0xde, 0x19, 0x62, 0xbf, 0x8f, 0x03, - 0x51, 0xf5, 0x0a, 0x36, 0x70, 0xd6, 0x89, 0xe0, 0xa0, 0xbb, 0x50, 0x76, 0x49, 0xe0, 0x9c, 0x79, - 0xb8, 0x73, 0xee, 0x78, 0x2f, 0xaa, 0x05, 0x21, 0x51, 0x52, 0xbc, 0x67, 0x8e, 0xf7, 0x42, 0xb7, - 0xa4, 0xe2, 0xfb, 0xb7, 0x24, 0xf8, 0xbf, 0x2d, 0xc9, 0xda, 0x87, 0xab, 0x33, 0xbe, 0xbe, 0xc8, - 0x85, 0x0d, 0xc2, 0x5e, 0x7f, 0xec, 0x8c, 0xfa, 0x13, 0xa7, 0xbf, 0xbc, 0xca, 0xf6, 0x47, 0x34, - 0xe8, 0xc6, 0x54, 0x29, 0xc8, 0x07, 0x50, 0xf4, 0x42, 0xa6, 0x02, 0x5d, 0x0b, 0x55, 0x2d, 0xf8, - 0xa6, 0x1e, 0x72, 0x6c, 0xfd, 0xa9, 0xf9, 0x18, 0x0a, 0x21, 0x9b, 0xe7, 0xd1, 0xc8, 0x19, 0x62, - 0xd5, 0x61, 0xc5, 0x9a, 0x47, 0x82, 0x78, 0x68, 0x08, 0x70, 0x19, 0x5b, 0x12, 0xb2, 0x5d, 0x7b, - 0xd4, 0x57, 0xe3, 0xb0, 0x24, 0xac, 0x09, 0x5c, 0xb1, 0x9d, 0xf3, 0x7d, 0xcf, 0x19, 0xe2, 0x0f, - 0xd9, 0xab, 0x3e, 0x83, 0x8a, 0x56, 0xab, 0xdc, 0x13, 0x0e, 0x93, 0x46, 0x6c, 0x98, 0xfc, 0x15, - 0xaa, 0xc7, 0x4e, 0x58, 0xf6, 0x0e, 0xa8, 0xcf, 0x5b, 0xf2, 0x87, 0xc4, 0x79, 0x00, 0x9b, 0x29, - 0xfa, 0xdf, 0xbf, 0x3f, 0xfc, 0x15, 0x85, 0x45, 0xb0, 0x3f, 0x3d, 0xc1, 0x41, 0xc0, 0xaf, 0x74, - 0x49, 0x76, 0xe8, 0x02, 0x91, 0x9d, 0x2f, 0x10, 0xfa, 0x31, 0x11, 0x95, 0x93, 0x94, 0x89, 0x8f, - 0x4b, 0xbe, 0x9c, 0x60, 0x7f, 0xaa, 0x46, 0x25, 0x49, 0xf0, 0x16, 0x94, 0x34, 0xe1, 0x22, 0xd9, - 0x48, 0x60, 0xfb, 0x80, 0x78, 0x0c, 0xfb, 0xa7, 0x03, 0x27, 0x78, 0x46, 0xd8, 0xe0, 0x94, 0xf4, - 0x47, 0x0e, 0x9b, 0xf8, 0x97, 0x4b, 0x4b, 0xde, 0x52, 0x06, 0x4e, 0x20, 0xba, 0x66, 0xd9, 0x16, - 0x6b, 0xeb, 0x6b, 0xd8, 0x59, 0xac, 0x4a, 0xc7, 0x9d, 0xf8, 0xce, 0xd0, 0xdf, 0x35, 0xfe, 0x04, - 0xf8, 0x48, 0xbd, 0x8a, 0xb1, 0xff, 0x8a, 0x74, 0x31, 0x7a, 0x06, 0x95, 0xf9, 0x57, 0x23, 0xda, - 0x9e, 0xcd, 0xde, 0xc4, 0xd3, 0xd6, 0xdc, 0x59, 0x2c, 0x20, 0x95, 0x5b, 0x2b, 0xe8, 0x51, 0x7c, - 0x5e, 0xae, 0xa6, 0x3c, 0xdb, 0xe4, 0x51, 0x9b, 0x0b, 0x1f, 0x74, 0xd6, 0xca, 0xae, 0x81, 0x4e, - 0x61, 0x7d, 0xf6, 0x35, 0x83, 0x6e, 0xcf, 0xea, 0x9e, 0x7b, 0x56, 0x99, 0x77, 0x16, 0x6d, 0xc7, - 0x0e, 0xfd, 0x01, 0xca, 0xf1, 0xc9, 0x1f, 0x6d, 0xe9, 0x6f, 0x12, 0x0f, 0x1e, 0xf3, 0x56, 0xfa, - 0x66, 0x64, 0xe7, 0x29, 0xac, 0xcf, 0x8e, 0xa7, 0x1a, 0x61, 0xea, 0xcc, 0xac, 0x11, 0xa6, 0x4f, - 0xb5, 0x02, 0xe1, 0x23, 0x28, 0x46, 0x83, 0xa4, 0x76, 0xde, 0xfc, 0xfc, 0xaa, 0x9d, 0x97, 0x98, - 0x3a, 0xc5, 0x29, 0x4d, 0x00, 0xdd, 0x62, 0xd0, 0x66, 0x7c, 0xee, 0x98, 0x99, 0x3b, 0x4d, 0x33, - 0x6d, 0x2b, 0xb2, 0xf0, 0x7b, 0x28, 0xc5, 0xfe, 0x49, 0x41, 0xe6, 0xac, 0x87, 0xe3, 0x7f, 0xe2, - 0x98, 0x5b, 0xa9, 0x7b, 0x71, 0x5f, 0xcd, 0xce, 0x29, 0xda, 0x57, 0xa9, 0xc3, 0x90, 0xf6, 0x55, - 0xfa, 0x78, 0x23, 0xac, 0x7c, 0x0c, 0xa5, 0x58, 0x23, 0x45, 0x29, 0xb6, 0x24, 0xe1, 0xa5, 0x74, - 0x5e, 0x71, 0x56, 0x1b, 0xae, 0xcc, 0x75, 0x2c, 0x74, 0x67, 0x61, 0x2b, 0x93, 0x67, 0x6e, 0xbf, - 0xa3, 0xd5, 0x59, 0x2b, 0x68, 0x0f, 0x0a, 0x61, 0x57, 0x40, 0x37, 0xa3, 0x6c, 0x9f, 0x6d, 0x4f, - 0x66, 0x35, 0xb9, 0x11, 0x03, 0xf6, 0x23, 0x6c, 0x24, 0x0a, 0x36, 0x8a, 0xd2, 0x70, 0x51, 0x2f, - 0x31, 0xef, 0xbe, 0x45, 0x22, 0x82, 0xf7, 0x3c, 0x2c, 0x01, 0xba, 0x00, 0xce, 0x97, 0x80, 0x44, - 0x75, 0x9f, 0x2f, 0x01, 0xc9, 0xda, 0x29, 0x60, 0x3f, 0x97, 0x8f, 0xae, 0xf8, 0x78, 0xaf, 0x8f, - 0x5e, 0xf0, 0xb2, 0xd0, 0x47, 0x2f, 0x7a, 0x19, 0x88, 0xa3, 0x03, 0xa8, 0x2e, 0x2a, 0x81, 0xe8, - 0x73, 0x7d, 0xcf, 0x6f, 0xad, 0xc7, 0x66, 0xed, 0xdd, 0x82, 0xa1, 0xca, 0x9a, 0xb1, 0x6b, 0x9c, - 0xe5, 0xc5, 0x40, 0xf7, 0xe5, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x52, 0x6f, 0x9d, 0x27, 0x08, - 0x15, 0x00, 0x00, + // 1577 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0x5b, 0x73, 0xda, 0x46, + 0x14, 0xb6, 0xb8, 0x19, 0x0e, 0xd4, 0xc1, 0x9b, 0x1b, 0x96, 0x93, 0xd8, 0x51, 0x6f, 0x64, 0xd2, + 0x21, 0x1e, 0x7a, 0x99, 0xf6, 0xa9, 0x63, 0x12, 0xec, 0x3a, 0xb5, 0x43, 0x46, 0x66, 0x9a, 0x49, + 0x5f, 0x18, 0x81, 0x16, 0x50, 0x23, 0x58, 0x22, 0x2d, 0x71, 0x68, 0x67, 0xfa, 0xde, 0x99, 0xbe, + 0xf6, 0x67, 0xf4, 0x47, 0xf4, 0x2f, 0xf4, 0x0f, 0xf4, 0xad, 0x0f, 0xfd, 0x09, 0x79, 0xea, 0xec, + 0x45, 0x5a, 0x81, 0x44, 0xd2, 0xd8, 0x25, 0x2f, 0x8c, 0xf6, 0xec, 0xd9, 0x3d, 0xdf, 0x39, 0x7b, + 0xae, 0x40, 0xa9, 0x47, 0x46, 0x23, 0x87, 0xd6, 0x26, 0x1e, 0xa1, 0x04, 0xe5, 0x06, 0x0e, 0xb5, + 0xdc, 0x99, 0x5e, 0xf2, 0x87, 0x96, 0x87, 0x6d, 0x41, 0xd5, 0x77, 0x06, 0x84, 0x0c, 0x5c, 0x7c, + 0x8f, 0xaf, 0xba, 0xd3, 0xfe, 0x3d, 0xea, 0x8c, 0xb0, 0x4f, 0xad, 0xd1, 0x44, 0x30, 0x18, 0x36, + 0xa0, 0xfb, 0xfc, 0x9a, 0x53, 0x6a, 0x51, 0xdf, 0xc4, 0xcf, 0xa7, 0xd8, 0xa7, 0xa8, 0x0e, 0xe0, + 0xe1, 0x09, 0xf1, 0x1d, 0x4a, 0xbc, 0x59, 0x45, 0xdb, 0xd5, 0xaa, 0xc5, 0x3a, 0xaa, 0x09, 0x09, + 0x35, 0x33, 0xdc, 0x31, 0x23, 0x5c, 0x48, 0x87, 0xbc, 0x87, 0x5f, 0x38, 0xbe, 0x43, 0xc6, 0x95, + 0xd4, 0xae, 0x56, 0x2d, 0x99, 0xe1, 0xda, 0xe8, 0xc1, 0xe5, 0x39, 0x29, 0xfe, 0x84, 0x8c, 0x7d, + 0x8c, 0xca, 0x90, 0x26, 0x8e, 0xcd, 0xef, 0x2f, 0x98, 0xec, 0x13, 0xdd, 0x80, 0x82, 0x65, 0xdb, + 0x0e, 0x75, 0xc8, 0xd8, 0xe7, 0xb7, 0x64, 0x4d, 0x45, 0x60, 0xbb, 0x36, 0x76, 0xb1, 0xd8, 0x4d, + 0x8b, 0xdd, 0x90, 0x60, 0xfc, 0xa2, 0xc1, 0x75, 0x21, 0xe5, 0xc8, 0xdf, 0x1f, 0xf7, 0xb0, 0x4f, + 0x89, 0x77, 0x11, 0x85, 0x76, 0xa0, 0x68, 0xc9, 0x6b, 0x3a, 0x8e, 0xcd, 0xd1, 0x14, 0x4c, 0x08, + 0x48, 0x47, 0x36, 0xda, 0x82, 0x7c, 0x6f, 0xe8, 0xb8, 0x36, 0xdb, 0x4d, 0xf3, 0xdd, 0x75, 0xbe, + 0x3e, 0xb2, 0x8d, 0x3d, 0xa8, 0xc4, 0xa1, 0x48, 0xad, 0xaf, 0x40, 0xf6, 0x85, 0xe5, 0x4e, 0x31, + 0x87, 0x91, 0x37, 0xc5, 0xc2, 0xf8, 0x55, 0x83, 0x72, 0xdb, 0xc3, 0xb8, 0x39, 0xa6, 0xde, 0x6c, + 0x45, 0xef, 0x80, 0x10, 0x64, 0x26, 0x16, 0x1d, 0x72, 0xb4, 0x25, 0x93, 0x7f, 0x33, 0x38, 0xae, + 0x33, 0x72, 0x68, 0x25, 0xb3, 0xab, 0x55, 0xd3, 0xa6, 0x58, 0x18, 0x7f, 0x6a, 0xb0, 0x19, 0x81, + 0x23, 0xa1, 0x7f, 0x09, 0x19, 0x3a, 0x9b, 0x08, 0xe4, 0x1b, 0xf5, 0x0f, 0x02, 0x24, 0x31, 0xc6, + 0x5a, 0xab, 0xfb, 0x03, 0xee, 0xd1, 0xf6, 0x6c, 0x82, 0x4d, 0x7e, 0x22, 0x78, 0xea, 0x94, 0x7a, + 0x6a, 0x04, 0x19, 0xdf, 0xf9, 0x11, 0x73, 0x2c, 0x69, 0x93, 0x7f, 0x33, 0xda, 0x88, 0xd8, 0x98, + 0x43, 0xc9, 0x9a, 0xfc, 0x9b, 0xd1, 0x6c, 0x8b, 0x5a, 0x95, 0xac, 0xc0, 0xcc, 0xbe, 0x8d, 0xcf, + 0x01, 0x94, 0x04, 0x04, 0x90, 0xbb, 0xdf, 0x3a, 0x39, 0x39, 0x6a, 0x97, 0xd7, 0x50, 0x1e, 0x32, + 0x8d, 0xe3, 0x56, 0xa3, 0xac, 0xb1, 0xaf, 0xb6, 0xd9, 0x6c, 0x96, 0x53, 0x68, 0x1d, 0xd2, 0xed, + 0xfd, 0xc3, 0x72, 0xda, 0x20, 0x70, 0x55, 0xbc, 0x8a, 0xdf, 0xc0, 0xf4, 0x0c, 0xe3, 0xf1, 0x45, + 0xec, 0x8c, 0x20, 0xd3, 0xf7, 0xc8, 0x48, 0xda, 0x98, 0x7f, 0xa3, 0x0d, 0x48, 0x51, 0x22, 0xad, + 0x9b, 0xa2, 0xc4, 0x68, 0xc2, 0xb5, 0x45, 0x81, 0xd2, 0x92, 0x77, 0x61, 0x5d, 0x84, 0xaf, 0x5f, + 0xd1, 0x76, 0xd3, 0xd5, 0x62, 0x7d, 0x33, 0x10, 0x77, 0xe8, 0x50, 0x71, 0xc6, 0x0c, 0x38, 0x8c, + 0xbf, 0x34, 0x16, 0x3f, 0xd3, 0xb1, 0xdc, 0x58, 0x55, 0x98, 0xa2, 0x3d, 0xc8, 0x5a, 0x7d, 0x8a, + 0x3d, 0xae, 0x41, 0xb1, 0xae, 0xd7, 0x44, 0xf6, 0xa8, 0x05, 0xd9, 0xa3, 0xd6, 0x0e, 0xb2, 0x87, + 0x29, 0x18, 0x51, 0x1d, 0x72, 0x5d, 0xdc, 0x27, 0x9e, 0x78, 0xb2, 0xd7, 0x1f, 0x91, 0x9c, 0xa1, + 0x13, 0x66, 0x95, 0x13, 0x1a, 0x9f, 0xc0, 0x95, 0x79, 0x05, 0x55, 0xac, 0xf4, 0x18, 0x9d, 0x2b, + 0x97, 0x35, 0xc5, 0xc2, 0x78, 0xa5, 0x41, 0x21, 0xf4, 0xb9, 0x84, 0x2c, 0xb2, 0x05, 0x79, 0x8f, + 0x10, 0xda, 0x51, 0x1e, 0xb7, 0xce, 0xd6, 0x2d, 0xe1, 0x75, 0xb1, 0x08, 0xb8, 0x27, 0xbd, 0x3a, + 0xc3, 0xbd, 0x7a, 0x3b, 0xe6, 0xd5, 0x35, 0xfe, 0x1b, 0x71, 0xe6, 0xc0, 0x4d, 0xb3, 0x11, 0x37, + 0xbd, 0x09, 0x20, 0x9e, 0x8b, 0x4b, 0xcd, 0x71, 0xa9, 0x05, 0x41, 0x61, 0x72, 0xb7, 0xa1, 0xd0, + 0x77, 0x2d, 0xda, 0xe1, 0xc2, 0xd7, 0x85, 0xdd, 0x19, 0xe1, 0x31, 0xd3, 0xfe, 0x2e, 0x14, 0x42, + 0x11, 0xa1, 0x07, 0xaf, 0x85, 0x1e, 0xac, 0x45, 0x3c, 0x3c, 0x6d, 0xfc, 0x04, 0x57, 0x0f, 0x31, + 0x0d, 0xc0, 0x39, 0xd8, 0x7f, 0x87, 0xc9, 0x82, 0x39, 0xf4, 0xa2, 0x70, 0xe5, 0xd0, 0x58, 0x90, + 0x16, 0x1d, 0x5a, 0x65, 0x87, 0x80, 0xc3, 0xe8, 0x42, 0xf9, 0xd8, 0xf1, 0xe9, 0x81, 0xe3, 0xae, + 0x0c, 0xbe, 0x71, 0x07, 0x36, 0x23, 0x32, 0x94, 0x3f, 0x31, 0x3d, 0x04, 0xc6, 0x92, 0x29, 0x16, + 0x46, 0x0f, 0x36, 0x0f, 0x9c, 0xb1, 0x2d, 0xc3, 0x6e, 0x45, 0x78, 0xbe, 0x06, 0x14, 0x15, 0x22, + 0x01, 0xdd, 0x81, 0x9c, 0x70, 0x12, 0x29, 0x21, 0x21, 0x0d, 0x48, 0x06, 0xa3, 0x03, 0xd7, 0x99, + 0x42, 0x41, 0x42, 0x99, 0xb5, 0x1c, 0xfb, 0x22, 0x58, 0xc3, 0x8c, 0x9c, 0x96, 0x61, 0x63, 0x1c, + 0x42, 0x25, 0x2e, 0xe0, 0x3c, 0xf9, 0xea, 0x95, 0x06, 0x57, 0x99, 0xae, 0xfb, 0xae, 0xbb, 0xe2, + 0x8c, 0xb5, 0x0d, 0x85, 0x91, 0xf5, 0xb2, 0x23, 0x72, 0x84, 0xe8, 0x08, 0xf2, 0x23, 0xeb, 0x25, + 0xcf, 0x25, 0xbc, 0xc2, 0x3c, 0x73, 0x26, 0x41, 0x35, 0x61, 0xdf, 0xe8, 0x2b, 0xc8, 0x12, 0xcf, + 0xc6, 0x1e, 0x8f, 0xdd, 0x8d, 0xfa, 0xfb, 0x81, 0xec, 0x44, 0xb8, 0xb5, 0x16, 0x63, 0x35, 0xc5, + 0x09, 0xe3, 0x43, 0xc8, 0xf2, 0x35, 0x8b, 0xcb, 0x47, 0xad, 0x47, 0x4d, 0x19, 0xa1, 0xad, 0xc7, + 0x2d, 0x51, 0x6d, 0x1e, 0xec, 0xb7, 0x9b, 0xe5, 0x14, 0x0b, 0x91, 0xc5, 0xcb, 0xce, 0x63, 0xc3, + 0x7f, 0x52, 0x51, 0x7f, 0x59, 0x99, 0x01, 0xc3, 0xea, 0x2f, 0x8c, 0x27, 0x16, 0xe8, 0x1a, 0xe4, + 0x48, 0xbf, 0xef, 0x63, 0x2a, 0x6d, 0x27, 0x57, 0x2a, 0x7c, 0xb2, 0x91, 0xf0, 0x61, 0xdc, 0x7d, + 0xe2, 0xba, 0xe4, 0x8c, 0xa7, 0xbd, 0xbc, 0x29, 0x57, 0xac, 0x81, 0x62, 0x36, 0xef, 0x8c, 0xb0, + 0x37, 0xc0, 0x3e, 0xcf, 0x7a, 0x79, 0x13, 0x18, 0xe9, 0x84, 0x53, 0xd0, 0x6d, 0x28, 0xd9, 0x8e, + 0x6f, 0x75, 0x5d, 0xdc, 0x39, 0xb3, 0xdc, 0x67, 0x95, 0x3c, 0xe7, 0x28, 0x4a, 0xda, 0x13, 0xcb, + 0x7d, 0xa6, 0x4a, 0x52, 0xe1, 0xed, 0x4b, 0x12, 0xfc, 0xd7, 0x92, 0x64, 0x34, 0xe0, 0xf2, 0x9c, + 0xad, 0xcf, 0xf3, 0x60, 0xc3, 0xa0, 0xd6, 0x1f, 0x5b, 0xe3, 0xc1, 0xd4, 0x1a, 0xac, 0x2e, 0xb3, + 0xfd, 0x1e, 0x36, 0xba, 0x11, 0x51, 0x12, 0xf2, 0x01, 0x14, 0xdc, 0x80, 0x28, 0x41, 0x57, 0x03, + 0x51, 0x4b, 0xce, 0xd4, 0x02, 0x8a, 0xa9, 0x8e, 0xea, 0x0f, 0x21, 0x1f, 0x90, 0x59, 0x1c, 0x8d, + 0xad, 0x11, 0x96, 0x15, 0x96, 0x7f, 0x33, 0x4f, 0xe0, 0x83, 0x06, 0x07, 0x97, 0x32, 0xc5, 0x42, + 0x94, 0x6b, 0x97, 0x78, 0xb2, 0x1d, 0x16, 0x0b, 0x63, 0x0a, 0x97, 0x4c, 0xeb, 0xac, 0xe1, 0x5a, + 0x23, 0xfc, 0x2e, 0x6b, 0xd5, 0x47, 0x50, 0x56, 0x62, 0xa5, 0x79, 0x82, 0x66, 0x52, 0x8b, 0x34, + 0x93, 0x3f, 0x43, 0xe5, 0xd8, 0x0a, 0xd2, 0xde, 0x01, 0xf1, 0x58, 0x49, 0x7e, 0x97, 0x38, 0x0f, + 0x60, 0x2b, 0x41, 0xfe, 0xdb, 0xd7, 0x87, 0x3f, 0x42, 0xb7, 0xf0, 0x1b, 0xb3, 0x13, 0xec, 0xfb, + 0xec, 0x49, 0x57, 0xa4, 0x87, 0x4a, 0x10, 0xe9, 0xc5, 0x04, 0xa1, 0x86, 0x89, 0x30, 0x9d, 0x24, + 0x74, 0x7c, 0x8c, 0xf3, 0xf9, 0x14, 0x7b, 0x33, 0xd9, 0x2a, 0x89, 0x05, 0x2b, 0x41, 0x71, 0x15, + 0xce, 0x13, 0x8d, 0x0e, 0xec, 0x1c, 0x38, 0x2e, 0xc5, 0xde, 0xe9, 0xd0, 0xf2, 0x9f, 0x38, 0x74, + 0x78, 0xea, 0x0c, 0xc6, 0x16, 0x9d, 0x7a, 0x17, 0x0b, 0x4b, 0x56, 0x52, 0x86, 0x96, 0xcf, 0xab, + 0x66, 0xc9, 0xe4, 0xdf, 0xc6, 0x17, 0xb0, 0xbb, 0x5c, 0x94, 0xf2, 0x3b, 0x7e, 0x4e, 0x8b, 0x9c, + 0xfb, 0x5b, 0x83, 0x6b, 0xac, 0xde, 0xfe, 0x4f, 0xad, 0xdc, 0x31, 0x14, 0x65, 0x03, 0xda, 0x75, + 0x49, 0x97, 0xbf, 0x58, 0xb1, 0x7e, 0x37, 0x38, 0x94, 0x2c, 0xa8, 0x66, 0xca, 0x07, 0xe5, 0x3e, + 0x27, 0x1b, 0xd8, 0x86, 0x4b, 0xba, 0xf3, 0x75, 0x21, 0x98, 0x0a, 0xf5, 0xcf, 0xa0, 0x14, 0x3d, + 0x11, 0x6d, 0xbd, 0x4b, 0xe1, 0x54, 0xc7, 0x9f, 0x3a, 0x15, 0x71, 0xf0, 0x53, 0xd1, 0xb8, 0x24, + 0x75, 0x8d, 0xc1, 0x10, 0xa8, 0xcd, 0x0f, 0x81, 0x3c, 0x46, 0x53, 0x2a, 0x46, 0x03, 0x41, 0xe9, + 0xb0, 0xc7, 0xaf, 0xff, 0x56, 0x84, 0xf7, 0xe4, 0x7f, 0x0a, 0xd8, 0x7b, 0xe1, 0xf4, 0x30, 0x7a, + 0x02, 0xe5, 0xc5, 0x99, 0x1b, 0xed, 0xcc, 0xe7, 0xbe, 0xd8, 0x1f, 0x03, 0xfa, 0xee, 0x72, 0x06, + 0x01, 0xd1, 0x58, 0x43, 0x0f, 0xa2, 0xd3, 0x46, 0x25, 0x61, 0xe8, 0x15, 0x57, 0x6d, 0x2d, 0x1d, + 0x87, 0x8d, 0xb5, 0x3d, 0x0d, 0x9d, 0xc2, 0xc6, 0xfc, 0x2c, 0x88, 0x6e, 0xce, 0xcb, 0x5e, 0x18, + 0x4a, 0xf5, 0x5b, 0xcb, 0xb6, 0x23, 0x97, 0x7e, 0x0b, 0xa5, 0xe8, 0xdc, 0x84, 0xb6, 0xd5, 0x99, + 0xd8, 0xb8, 0xa8, 0xdf, 0x48, 0xde, 0x0c, 0xf5, 0x3c, 0x85, 0x8d, 0xf9, 0xe6, 0x5e, 0x21, 0x4c, + 0x9c, 0x38, 0x14, 0xc2, 0xe4, 0x99, 0x80, 0x23, 0x7c, 0x00, 0x85, 0xb0, 0x0d, 0x57, 0xc6, 0x5b, + 0xec, 0xfe, 0x95, 0xf1, 0x62, 0x3d, 0x3b, 0xbf, 0xa5, 0x09, 0xa0, 0x0a, 0x34, 0xda, 0x8a, 0x76, + 0x6d, 0x73, 0x5d, 0xbb, 0xae, 0x27, 0x6d, 0x85, 0x1a, 0x7e, 0x03, 0xc5, 0xc8, 0xff, 0x50, 0x48, + 0x9f, 0xb7, 0x70, 0xf4, 0x2f, 0x30, 0x7d, 0x3b, 0x71, 0x2f, 0x6a, 0xab, 0xf9, 0x2e, 0x4f, 0xd9, + 0x2a, 0xb1, 0x95, 0x54, 0xb6, 0x4a, 0x6e, 0x0e, 0xb9, 0x96, 0x0f, 0xa1, 0x18, 0x69, 0x43, 0x50, + 0x82, 0x2e, 0x71, 0x78, 0x09, 0x7d, 0x0b, 0xbf, 0xab, 0x0d, 0x97, 0x16, 0xea, 0x3d, 0xba, 0xb5, + 0xb4, 0x11, 0x10, 0x77, 0xee, 0xbc, 0xa1, 0x51, 0x30, 0xd6, 0xd0, 0x3e, 0xe4, 0x83, 0x9a, 0x8a, + 0xae, 0x87, 0x09, 0x69, 0xbe, 0xb8, 0xeb, 0x95, 0xf8, 0x46, 0x04, 0xd8, 0xf7, 0xb0, 0x19, 0x2b, + 0x77, 0x28, 0x0c, 0xc3, 0x65, 0x95, 0x58, 0xbf, 0xfd, 0x1a, 0x8e, 0x10, 0xde, 0xd3, 0x20, 0x05, + 0xa8, 0xf2, 0xb1, 0x98, 0x02, 0x62, 0xb5, 0x71, 0x31, 0x05, 0xc4, 0x2b, 0x0f, 0x87, 0xfd, 0x54, + 0x8c, 0xac, 0xd1, 0xe1, 0x48, 0x5d, 0xbd, 0x64, 0x2e, 0x53, 0x57, 0x2f, 0x9b, 0xab, 0xf8, 0xd5, + 0xdf, 0xc1, 0xa5, 0x85, 0xfc, 0xa8, 0x9e, 0x2a, 0x39, 0x6f, 0xeb, 0x3b, 0x4b, 0xf7, 0x23, 0xf7, + 0xfa, 0x50, 0x59, 0x56, 0x98, 0xd0, 0xc7, 0xca, 0x7f, 0x5e, 0x5b, 0x25, 0xf5, 0xea, 0x9b, 0x19, + 0x03, 0x91, 0x55, 0x6d, 0x4f, 0xeb, 0xe6, 0x78, 0x9b, 0xfd, 0xe9, 0xbf, 0x01, 0x00, 0x00, 0xff, + 0xff, 0xc5, 0x74, 0x25, 0xb0, 0x9e, 0x16, 0x00, 0x00, } diff --git a/ruby/lib/gitaly/commit_pb.rb b/ruby/lib/gitaly/commit_pb.rb index 0d99d17feb8059b9b8ce2efc3092bfa06446152e..3ef9e6752ee69b3153c1e9f90c8a2bd90e12748d 100644 --- a/ruby/lib/gitaly/commit_pb.rb +++ b/ruby/lib/gitaly/commit_pb.rb @@ -179,6 +179,20 @@ Google::Protobuf::DescriptorPool.generated_pool.build do add_message "gitaly.FilterShasWithSignaturesResponse" do repeated :shas, :bytes, 1 end + add_message "gitaly.ListTreeEntriesRequest" do + optional :repository, :message, 1, "gitaly.Repository" + optional :commit_blob, :message, 2, "gitaly.ListTreeEntriesRequest.RevisionPath" + optional :limit, :int64, 3 + end + add_message "gitaly.ListTreeEntriesRequest.RevisionPath" do + optional :oid, :bytes, 1 + optional :path, :bytes, 2 + end + add_message "gitaly.ListTreeEntriesResponse" do + optional :size, :int64, 1 + optional :data, :bytes, 2 + optional :oid, :string, 3 + end end module Gitaly @@ -219,4 +233,7 @@ module Gitaly CommitsByMessageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsByMessageResponse").msgclass FilterShasWithSignaturesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FilterShasWithSignaturesRequest").msgclass FilterShasWithSignaturesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FilterShasWithSignaturesResponse").msgclass + ListTreeEntriesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTreeEntriesRequest").msgclass + ListTreeEntriesRequest::RevisionPath = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTreeEntriesRequest.RevisionPath").msgclass + ListTreeEntriesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTreeEntriesResponse").msgclass end diff --git a/ruby/lib/gitaly/commit_services_pb.rb b/ruby/lib/gitaly/commit_services_pb.rb index 90f38d4734a3c22b5aae34d29e14bd689a4f1d4a..88e0e1187f1d5fd85d1c810b3516b7efee1292fa 100644 --- a/ruby/lib/gitaly/commit_services_pb.rb +++ b/ruby/lib/gitaly/commit_services_pb.rb @@ -30,6 +30,7 @@ module Gitaly rpc :LastCommitForPath, LastCommitForPathRequest, LastCommitForPathResponse rpc :CommitsByMessage, CommitsByMessageRequest, stream(CommitsByMessageResponse) rpc :ListCommitsByOid, ListCommitsByOidRequest, stream(ListCommitsByOidResponse) + rpc :ListTreeEntries, ListTreeEntriesRequest, stream(ListTreeEntriesResponse) rpc :FilterShasWithSignatures, stream(FilterShasWithSignaturesRequest), stream(FilterShasWithSignaturesResponse) end diff --git a/shared.proto b/shared.proto index c4247620ed2a8c4e84f7d92ad0e8d27d47a58873..2a13964fd83a0cee5d2b90f44988985e64ac4ff8 100644 --- a/shared.proto +++ b/shared.proto @@ -61,3 +61,4 @@ message User { bytes email = 3; string gl_username = 4; } +