Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArturo Herrero <arturo.herrero@gmail.com>2020-02-05 01:22:48 +0300
committerJohn Cai <jcai@gitlab.com>2020-02-05 01:22:48 +0300
commit30b2d8f83005624b59aebbae77819596aad7d795 (patch)
treeb49c326990fa359918f799c01711a5091bc67ff0
parentd2ac8c77861b4bb16f8e372ee9bfc1aea284f5be (diff)
Support FindCommitsRequest order (--topo-order)
Implement FindCommitsRequest with order argument to find commits using git log --topo-order.
-rw-r--r--changelogs/unreleased/2240-find-commits-request-order-topo.yml5
-rw-r--r--internal/service/commit/find_commits.go4
-rw-r--r--internal/service/commit/find_commits_test.go58
-rw-r--r--proto/commit.proto5
-rw-r--r--proto/go/gitalypb/commit.pb.go303
-rw-r--r--ruby/proto/gitaly/commit_pb.rb6
6 files changed, 247 insertions, 134 deletions
diff --git a/changelogs/unreleased/2240-find-commits-request-order-topo.yml b/changelogs/unreleased/2240-find-commits-request-order-topo.yml
new file mode 100644
index 000000000..1ad0660ba
--- /dev/null
+++ b/changelogs/unreleased/2240-find-commits-request-order-topo.yml
@@ -0,0 +1,5 @@
+---
+title: Support FindCommitsRequest with order (--topo-order)
+merge_request: 1791
+author:
+type: added
diff --git a/internal/service/commit/find_commits.go b/internal/service/commit/find_commits.go
index b31e44bf8..e01dad522 100644
--- a/internal/service/commit/find_commits.go
+++ b/internal/service/commit/find_commits.go
@@ -198,5 +198,9 @@ func getLogCommandSubCmd(req *gitalypb.FindCommitsRequest) git.SubCmd {
subCmd.PostSepArgs = append(subCmd.PostSepArgs, string(path))
}
}
+ if req.GetOrder() == gitalypb.FindCommitsRequest_TOPO {
+ subCmd.Flags = append(subCmd.Flags, git.Flag{Name: "--topo-order"})
+ }
+
return subCmd
}
diff --git a/internal/service/commit/find_commits_test.go b/internal/service/commit/find_commits_test.go
index eaade046e..29a7eee95 100644
--- a/internal/service/commit/find_commits_test.go
+++ b/internal/service/commit/find_commits_test.go
@@ -330,6 +330,64 @@ func TestSuccessfulFindCommitsRequest(t *testing.T) {
"59e29889be61e6e0e5e223bfa9ac2721d31605b8",
},
},
+ {
+ // Ordering by none implies that commits appear in
+ // chronological order:
+ //
+ // git log --graph -n 6 --pretty=format:"%h" --date-order 0031876
+ // * 0031876
+ // |\
+ // * | bf6e164
+ // | * 48ca272
+ // * | 9d526f8
+ // | * 335bc94
+ // |/
+ // * 1039376
+ desc: "ordered by none",
+ request: &gitalypb.FindCommitsRequest{
+ Repository: testRepo,
+ Revision: []byte("0031876"),
+ Order: gitalypb.FindCommitsRequest_NONE,
+ Limit: 6,
+ },
+ ids: []string{
+ "0031876facac3f2b2702a0e53a26e89939a42209",
+ "bf6e164cac2dc32b1f391ca4290badcbe4ffc5fb",
+ "48ca272b947f49eee601639d743784a176574a09",
+ "9d526f87b82e2b2fd231ca44c95508e5e85624ca",
+ "335bc94d5b7369b10251e612158da2e4a4aaa2a5",
+ "1039376155a0d507eba0ea95c29f8f5b983ea34b",
+ },
+ },
+ {
+ // When ordering by topology, all commit children will
+ // be shown before parents:
+ //
+ // git log --graph -n 6 --pretty=format:"%h" --topo-order 0031876
+ // * 0031876
+ // |\
+ // | * 48ca272
+ // | * 335bc94
+ // * | bf6e164
+ // * | 9d526f8
+ // |/
+ // * 1039376
+ desc: "ordered by topo",
+ request: &gitalypb.FindCommitsRequest{
+ Repository: testRepo,
+ Revision: []byte("0031876"),
+ Order: gitalypb.FindCommitsRequest_TOPO,
+ Limit: 6,
+ },
+ ids: []string{
+ "0031876facac3f2b2702a0e53a26e89939a42209",
+ "48ca272b947f49eee601639d743784a176574a09",
+ "335bc94d5b7369b10251e612158da2e4a4aaa2a5",
+ "bf6e164cac2dc32b1f391ca4290badcbe4ffc5fb",
+ "9d526f87b82e2b2fd231ca44c95508e5e85624ca",
+ "1039376155a0d507eba0ea95c29f8f5b983ea34b",
+ },
+ },
}
for _, tc := range testCases {
diff --git a/proto/commit.proto b/proto/commit.proto
index 2b23be008..13fbac68f 100644
--- a/proto/commit.proto
+++ b/proto/commit.proto
@@ -334,6 +334,11 @@ message FindCommitsRequest {
bool all = 11;
bool first_parent = 12;
bytes author = 13;
+ enum Order {
+ NONE = 0;
+ TOPO = 1;
+ }
+ Order order = 14;
}
// A single 'page' of the result set
diff --git a/proto/go/gitalypb/commit.pb.go b/proto/go/gitalypb/commit.pb.go
index 34ca9e1d0..9a2e5a06a 100644
--- a/proto/go/gitalypb/commit.pb.go
+++ b/proto/go/gitalypb/commit.pb.go
@@ -114,6 +114,31 @@ func (FindAllCommitsRequest_Order) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_db7163399a465f48, []int{23, 0}
}
+type FindCommitsRequest_Order int32
+
+const (
+ FindCommitsRequest_NONE FindCommitsRequest_Order = 0
+ FindCommitsRequest_TOPO FindCommitsRequest_Order = 1
+)
+
+var FindCommitsRequest_Order_name = map[int32]string{
+ 0: "NONE",
+ 1: "TOPO",
+}
+
+var FindCommitsRequest_Order_value = map[string]int32{
+ "NONE": 0,
+ "TOPO": 1,
+}
+
+func (x FindCommitsRequest_Order) String() string {
+ return proto.EnumName(FindCommitsRequest_Order_name, int32(x))
+}
+
+func (FindCommitsRequest_Order) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_db7163399a465f48, []int{25, 0}
+}
+
type CommitStatsRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
Revision []byte `protobuf:"bytes,2,opt,name=revision,proto3" json:"revision,omitempty"`
@@ -1455,12 +1480,13 @@ type FindCommitsRequest struct {
After *timestamp.Timestamp `protobuf:"bytes,9,opt,name=after,proto3" json:"after,omitempty"`
Before *timestamp.Timestamp `protobuf:"bytes,10,opt,name=before,proto3" json:"before,omitempty"`
// all and revision are mutually exclusive
- All bool `protobuf:"varint,11,opt,name=all,proto3" json:"all,omitempty"`
- FirstParent bool `protobuf:"varint,12,opt,name=first_parent,json=firstParent,proto3" json:"first_parent,omitempty"`
- Author []byte `protobuf:"bytes,13,opt,name=author,proto3" json:"author,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
+ All bool `protobuf:"varint,11,opt,name=all,proto3" json:"all,omitempty"`
+ FirstParent bool `protobuf:"varint,12,opt,name=first_parent,json=firstParent,proto3" json:"first_parent,omitempty"`
+ Author []byte `protobuf:"bytes,13,opt,name=author,proto3" json:"author,omitempty"`
+ Order FindCommitsRequest_Order `protobuf:"varint,14,opt,name=order,proto3,enum=gitaly.FindCommitsRequest_Order" json:"order,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
func (m *FindCommitsRequest) Reset() { *m = FindCommitsRequest{} }
@@ -1579,6 +1605,13 @@ func (m *FindCommitsRequest) GetAuthor() []byte {
return nil
}
+func (m *FindCommitsRequest) GetOrder() FindCommitsRequest_Order {
+ if m != nil {
+ return m.Order
+ }
+ return FindCommitsRequest_NONE
+}
+
// A single 'page' of the result set
type FindCommitsResponse struct {
Commits []*GitCommit `protobuf:"bytes,1,rep,name=commits,proto3" json:"commits,omitempty"`
@@ -2631,6 +2664,7 @@ func init() {
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)
+ proto.RegisterEnum("gitaly.FindCommitsRequest_Order", FindCommitsRequest_Order_name, FindCommitsRequest_Order_value)
proto.RegisterType((*CommitStatsRequest)(nil), "gitaly.CommitStatsRequest")
proto.RegisterType((*CommitStatsResponse)(nil), "gitaly.CommitStatsResponse")
proto.RegisterType((*CommitIsAncestorRequest)(nil), "gitaly.CommitIsAncestorRequest")
@@ -2683,135 +2717,136 @@ func init() {
func init() { proto.RegisterFile("commit.proto", fileDescriptor_db7163399a465f48) }
var fileDescriptor_db7163399a465f48 = []byte{
- // 2039 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x59, 0x5b, 0x6f, 0xdb, 0xc8,
- 0x15, 0x5e, 0xea, 0x66, 0xf2, 0x48, 0x71, 0xe4, 0x89, 0x93, 0xc8, 0xb4, 0x1d, 0x7b, 0x99, 0x64,
- 0xeb, 0xc5, 0xb6, 0xb2, 0xeb, 0x5e, 0xd0, 0x3e, 0x15, 0xf1, 0xae, 0x6d, 0xd8, 0x8d, 0xad, 0x94,
- 0x16, 0xb0, 0x40, 0xb1, 0x85, 0x4a, 0x89, 0x23, 0x69, 0x1a, 0x4a, 0xd4, 0x92, 0x23, 0xc7, 0x2a,
- 0x8a, 0xf6, 0xb9, 0x40, 0xdf, 0x8b, 0xfe, 0x80, 0xfe, 0x80, 0x7d, 0xea, 0x73, 0xff, 0x42, 0x5f,
- 0xfa, 0xde, 0x5f, 0x51, 0xe4, 0x69, 0x31, 0x17, 0xde, 0x44, 0xd2, 0x8e, 0xed, 0xd5, 0xbe, 0x08,
- 0x9c, 0x33, 0x97, 0x73, 0x99, 0x39, 0xdf, 0x7c, 0x73, 0x04, 0xb5, 0x9e, 0x3b, 0x1a, 0x11, 0xda,
- 0x9c, 0x78, 0x2e, 0x75, 0x51, 0x65, 0x40, 0xa8, 0xe5, 0xcc, 0xf4, 0x9a, 0x3f, 0xb4, 0x3c, 0x6c,
- 0x0b, 0xa9, 0xbe, 0x35, 0x70, 0xdd, 0x81, 0x83, 0x77, 0x79, 0xab, 0x3b, 0xed, 0xef, 0x52, 0x32,
- 0xc2, 0x3e, 0xb5, 0x46, 0x13, 0x31, 0xc0, 0xb0, 0x01, 0x7d, 0xce, 0x97, 0xb9, 0xa0, 0x16, 0xf5,
- 0x4d, 0xfc, 0xf5, 0x14, 0xfb, 0x14, 0xed, 0x03, 0x78, 0x78, 0xe2, 0xfa, 0x84, 0xba, 0xde, 0xac,
- 0xa1, 0x6c, 0x2b, 0x3b, 0xd5, 0x7d, 0xd4, 0x14, 0x1a, 0x9a, 0x66, 0xd8, 0x63, 0xc6, 0x46, 0x21,
- 0x1d, 0x54, 0x0f, 0x5f, 0x12, 0x9f, 0xb8, 0xe3, 0x46, 0x61, 0x5b, 0xd9, 0xa9, 0x99, 0x61, 0xdb,
- 0xe8, 0xc1, 0xa3, 0x84, 0x16, 0x7f, 0xe2, 0x8e, 0x7d, 0x8c, 0xea, 0x50, 0x74, 0x89, 0xcd, 0xd7,
- 0xd7, 0x4c, 0xf6, 0x89, 0x36, 0x40, 0xb3, 0x6c, 0x9b, 0x50, 0xe2, 0x8e, 0x7d, 0xbe, 0x4a, 0xd9,
- 0x8c, 0x04, 0xac, 0xd7, 0xc6, 0x0e, 0x16, 0xbd, 0x45, 0xd1, 0x1b, 0x0a, 0x8c, 0xbf, 0x2a, 0xf0,
- 0x54, 0x68, 0x39, 0xf1, 0x5f, 0x8d, 0x7b, 0xd8, 0xa7, 0xae, 0x77, 0x1f, 0x87, 0xb6, 0xa0, 0x6a,
- 0xc9, 0x65, 0x3a, 0xc4, 0xe6, 0xd6, 0x68, 0x26, 0x04, 0xa2, 0x13, 0x1b, 0xad, 0x81, 0xda, 0x1b,
- 0x12, 0xc7, 0x66, 0xbd, 0x45, 0xde, 0xbb, 0xc4, 0xdb, 0x27, 0xb6, 0xb1, 0x07, 0x8d, 0xb4, 0x29,
- 0xd2, 0xeb, 0x55, 0x28, 0x5f, 0x5a, 0xce, 0x14, 0x73, 0x33, 0x54, 0x53, 0x34, 0x8c, 0xbf, 0x29,
- 0x50, 0x6f, 0x7b, 0x18, 0x1f, 0x8e, 0xa9, 0x37, 0x5b, 0xd0, 0x3e, 0x20, 0x04, 0xa5, 0x89, 0x45,
- 0x87, 0xdc, 0xda, 0x9a, 0xc9, 0xbf, 0x99, 0x39, 0x0e, 0x19, 0x11, 0xda, 0x28, 0x6d, 0x2b, 0x3b,
- 0x45, 0x53, 0x34, 0x8c, 0xff, 0x28, 0xb0, 0x12, 0x33, 0x47, 0x9a, 0xfe, 0x0b, 0x28, 0xd1, 0xd9,
- 0x44, 0x58, 0xbe, 0xbc, 0xff, 0x22, 0xb0, 0x24, 0x35, 0xb0, 0xd9, 0xea, 0xfe, 0x01, 0xf7, 0x68,
- 0x7b, 0x36, 0xc1, 0x26, 0x9f, 0x11, 0x6c, 0x75, 0x21, 0xda, 0x6a, 0x04, 0x25, 0x9f, 0xfc, 0x11,
- 0x73, 0x5b, 0x8a, 0x26, 0xff, 0x66, 0xb2, 0x91, 0x6b, 0x63, 0x6e, 0x4a, 0xd9, 0xe4, 0xdf, 0x4c,
- 0x66, 0x5b, 0xd4, 0x6a, 0x94, 0x85, 0xcd, 0xec, 0xdb, 0xf8, 0x19, 0x40, 0xa4, 0x01, 0x01, 0x54,
- 0x3e, 0x6f, 0x9d, 0x9d, 0x9d, 0xb4, 0xeb, 0x1f, 0x21, 0x15, 0x4a, 0x07, 0xaf, 0x5b, 0x07, 0x75,
- 0x85, 0x7d, 0xb5, 0xcd, 0xc3, 0xc3, 0x7a, 0x01, 0x2d, 0x41, 0xb1, 0xfd, 0xea, 0xb8, 0x5e, 0x34,
- 0x5c, 0x78, 0x2c, 0x76, 0xc5, 0x3f, 0xc0, 0xf4, 0x1d, 0xc6, 0xe3, 0xfb, 0xc4, 0x19, 0x41, 0xa9,
- 0xef, 0xb9, 0x23, 0x19, 0x63, 0xfe, 0x8d, 0x96, 0xa1, 0x40, 0x5d, 0x19, 0xdd, 0x02, 0x75, 0x8d,
- 0x43, 0x78, 0x32, 0xaf, 0x50, 0x46, 0xf2, 0x33, 0x58, 0x12, 0xe9, 0xeb, 0x37, 0x94, 0xed, 0xe2,
- 0x4e, 0x75, 0x7f, 0x25, 0x50, 0x77, 0x4c, 0xa8, 0x98, 0x63, 0x06, 0x23, 0x8c, 0x6f, 0x0a, 0x2c,
- 0x7f, 0xa6, 0x63, 0xd9, 0xb1, 0xa8, 0x34, 0x45, 0x7b, 0x50, 0xb6, 0xfa, 0x14, 0x7b, 0xdc, 0x83,
- 0xea, 0xbe, 0xde, 0x14, 0xe8, 0xd1, 0x0c, 0xd0, 0xa3, 0xd9, 0x0e, 0xd0, 0xc3, 0x14, 0x03, 0xd1,
- 0x3e, 0x54, 0xba, 0xb8, 0xef, 0x7a, 0x62, 0xcb, 0xae, 0x9f, 0x22, 0x47, 0x86, 0x87, 0xb0, 0x1c,
- 0x3b, 0x84, 0xeb, 0xa0, 0x8d, 0xac, 0xab, 0x4e, 0x8f, 0x39, 0xd9, 0xa8, 0xf0, 0xdd, 0x57, 0x47,
- 0xd6, 0x15, 0x77, 0x9a, 0x9d, 0x1d, 0xcb, 0x71, 0x1a, 0x4b, 0x3c, 0x5d, 0xd8, 0x27, 0xfa, 0x18,
- 0x6a, 0x7d, 0xe2, 0xf9, 0xb4, 0x33, 0xb1, 0x3c, 0x3c, 0xa6, 0x0d, 0x95, 0x77, 0x55, 0xb9, 0xec,
- 0x0d, 0x17, 0x19, 0x3f, 0x84, 0xd5, 0x64, 0xc8, 0xa2, 0xec, 0x13, 0x5a, 0x14, 0xae, 0x45, 0x34,
- 0x8c, 0x7f, 0x2a, 0xb0, 0xc1, 0x87, 0x7f, 0x41, 0x2e, 0xb1, 0x37, 0x20, 0xe3, 0xc1, 0x77, 0x10,
- 0xea, 0x0f, 0x38, 0x21, 0x49, 0xc7, 0x97, 0x92, 0x8e, 0x9f, 0x96, 0xd4, 0x52, 0xbd, 0x7c, 0x5a,
- 0x52, 0xcb, 0xf5, 0xca, 0x69, 0x49, 0xad, 0xd4, 0x97, 0x8c, 0x0e, 0x6c, 0xe6, 0x98, 0x29, 0xdd,
- 0xdb, 0x04, 0x70, 0x70, 0x9f, 0x76, 0xe2, 0x3e, 0x6a, 0x4c, 0x22, 0x42, 0xb9, 0x05, 0x55, 0x8f,
- 0x0c, 0x86, 0x41, 0xbf, 0x40, 0x58, 0xe0, 0x22, 0x3e, 0xc0, 0x78, 0xaf, 0x80, 0x16, 0xa6, 0x73,
- 0x06, 0x40, 0xaf, 0x81, 0xea, 0xb9, 0x2e, 0xed, 0x44, 0xc9, 0xbc, 0xc4, 0xda, 0x2d, 0x91, 0xd0,
- 0x29, 0x70, 0xd9, 0x95, 0x80, 0x51, 0xe2, 0x80, 0xb1, 0x9e, 0x02, 0x8c, 0x26, 0xff, 0x8d, 0xe1,
- 0x44, 0x80, 0x00, 0xe5, 0x18, 0x02, 0x6c, 0x02, 0x88, 0x4c, 0xe0, 0x5a, 0x2b, 0x5c, 0xab, 0x26,
- 0x24, 0x4c, 0xef, 0x3a, 0x68, 0x7d, 0xc7, 0x62, 0x67, 0x81, 0x0e, 0x79, 0x08, 0x6b, 0xa6, 0xca,
- 0x04, 0x6f, 0x2c, 0x3a, 0x34, 0x3e, 0x03, 0x2d, 0x54, 0x11, 0x82, 0xc3, 0x47, 0x21, 0x38, 0x28,
- 0x31, 0xf0, 0x28, 0x1a, 0xff, 0x50, 0xe0, 0xf1, 0x31, 0xa6, 0x81, 0x75, 0x04, 0xfb, 0xdf, 0x27,
- 0x10, 0x6f, 0x80, 0xe6, 0xe1, 0xde, 0xd4, 0xf3, 0xc9, 0xa5, 0x08, 0x98, 0x6a, 0x46, 0x02, 0x06,
- 0x25, 0xf3, 0xa6, 0x45, 0x50, 0x82, 0x85, 0x68, 0x1e, 0x4a, 0x22, 0x5c, 0x0e, 0x46, 0x18, 0x5d,
- 0xa8, 0xbf, 0x26, 0x3e, 0x3d, 0x22, 0xce, 0xc2, 0x9c, 0x33, 0x3e, 0x85, 0x95, 0x98, 0x8e, 0x28,
- 0xef, 0x98, 0x97, 0xc2, 0xc6, 0x9a, 0x29, 0x1a, 0x46, 0x0f, 0x56, 0x8e, 0xc8, 0xd8, 0x96, 0x80,
- 0xb7, 0x20, 0x7b, 0x7e, 0x05, 0x28, 0xae, 0x44, 0x1a, 0xf4, 0x29, 0x54, 0xc4, 0x19, 0x92, 0x1a,
- 0x32, 0x00, 0x58, 0x0e, 0x30, 0x3a, 0xf0, 0x94, 0x39, 0x14, 0x40, 0xf9, 0xac, 0x45, 0xec, 0xfb,
- 0xd8, 0x1a, 0xde, 0x85, 0x45, 0x99, 0x55, 0xc6, 0x31, 0x34, 0xd2, 0x0a, 0xee, 0x72, 0x53, 0x8c,
- 0x61, 0x3d, 0xb1, 0x90, 0x89, 0xfb, 0xe7, 0xd6, 0x08, 0xdf, 0xc7, 0xda, 0x75, 0x76, 0x2c, 0xfb,
- 0x9d, 0xb1, 0x35, 0xc2, 0x3e, 0xb7, 0x99, 0x87, 0x96, 0x2f, 0xeb, 0x1b, 0xbf, 0x86, 0x8d, 0x6c,
- 0x7d, 0x77, 0x31, 0xfe, 0xbd, 0x02, 0x8f, 0xd9, 0x46, 0xbd, 0x72, 0x9c, 0x05, 0x5f, 0x74, 0x09,
- 0xd4, 0x2d, 0xce, 0x5d, 0x37, 0x8c, 0x98, 0xbc, 0x25, 0x93, 0x80, 0x84, 0xb0, 0x6f, 0xf4, 0x4b,
- 0x28, 0xbb, 0x9e, 0x8d, 0x3d, 0x8e, 0x4b, 0xcb, 0xfb, 0xcf, 0x03, 0xdd, 0x99, 0xe6, 0x36, 0x5b,
- 0x6c, 0xa8, 0x29, 0x66, 0x18, 0x2f, 0xa1, 0xcc, 0xdb, 0x0c, 0x73, 0xce, 0x5b, 0xe7, 0x87, 0x12,
- 0x7d, 0x5a, 0x6f, 0x5a, 0x82, 0xa4, 0x7c, 0xf1, 0xaa, 0x7d, 0x58, 0x2f, 0xb0, 0xfc, 0x9e, 0x5f,
- 0xec, 0x2e, 0x31, 0xfc, 0x57, 0x31, 0x7e, 0xd8, 0x17, 0x16, 0xc0, 0x90, 0x34, 0x8a, 0xe0, 0x89,
- 0x06, 0x7a, 0x02, 0x15, 0xb7, 0xdf, 0xf7, 0x31, 0x95, 0xb1, 0x93, 0xad, 0x28, 0xf7, 0xcb, 0xb1,
- 0xdc, 0x67, 0xa3, 0xfb, 0xae, 0xe3, 0xb8, 0xef, 0x38, 0xa4, 0xab, 0xa6, 0x6c, 0xb1, 0x3b, 0x8a,
- 0xc5, 0xbc, 0x33, 0xc2, 0xde, 0x00, 0xfb, 0xf2, 0xda, 0x07, 0x26, 0x3a, 0xe3, 0x12, 0x76, 0xfb,
- 0xdb, 0xc4, 0xb7, 0xba, 0x0e, 0xee, 0xbc, 0xb3, 0x9c, 0xb7, 0xc1, 0xed, 0x2f, 0x65, 0x5f, 0x5a,
- 0xce, 0xdb, 0x88, 0xc9, 0x68, 0xb7, 0x67, 0x32, 0xf0, 0xc1, 0x4c, 0x46, 0x12, 0x93, 0x6a, 0x3e,
- 0x31, 0xa9, 0xa5, 0x88, 0x09, 0x73, 0xdb, 0x9a, 0xd2, 0xa1, 0xeb, 0x35, 0x1e, 0xf0, 0xa0, 0xca,
- 0x96, 0x71, 0x00, 0x8f, 0x12, 0x1b, 0x77, 0x97, 0xdd, 0x1f, 0x06, 0x7c, 0xf3, 0xb5, 0x35, 0x1e,
- 0x4c, 0xad, 0xc1, 0xe2, 0x30, 0xfe, 0x7f, 0xe1, 0x63, 0x2b, 0xa6, 0x4a, 0x9a, 0x7c, 0x04, 0x9a,
- 0x13, 0x08, 0xa5, 0xd1, 0x3b, 0x81, 0xaa, 0x9c, 0x39, 0xcd, 0x40, 0x62, 0x46, 0x53, 0xf5, 0xbf,
- 0x80, 0x1a, 0x88, 0x59, 0x52, 0x32, 0x04, 0x92, 0x54, 0x84, 0x7f, 0xb3, 0x63, 0xc5, 0x1f, 0xbb,
- 0xdc, 0xb8, 0x82, 0x29, 0x1a, 0x82, 0xe0, 0x39, 0xae, 0x27, 0x9f, 0x64, 0xa2, 0xc1, 0x38, 0x44,
- 0x9f, 0x38, 0x58, 0xa6, 0x3c, 0x3b, 0x9e, 0x0f, 0x4c, 0x8d, 0x49, 0x44, 0xce, 0xaf, 0x42, 0xb9,
- 0x3b, 0xa3, 0xd8, 0xe7, 0xf9, 0x5d, 0x32, 0x45, 0xc3, 0x98, 0xc2, 0x43, 0xd3, 0x7a, 0x77, 0xe0,
- 0xdc, 0x13, 0x41, 0x6f, 0x49, 0x04, 0x8c, 0x4f, 0xa0, 0x1e, 0xa9, 0x95, 0x31, 0x0d, 0x5e, 0x41,
- 0x4a, 0xec, 0x15, 0xf4, 0x67, 0x68, 0xbc, 0xb6, 0x02, 0xf0, 0x3d, 0x72, 0x3d, 0x46, 0x78, 0xbe,
- 0x4f, 0x3b, 0x8f, 0x60, 0x2d, 0x43, 0xff, 0xed, 0xaf, 0xd7, 0x6f, 0x14, 0xd8, 0x64, 0xb7, 0x48,
- 0xb4, 0x98, 0x7f, 0xe4, 0x7a, 0x8c, 0xbc, 0x7c, 0x97, 0xde, 0x68, 0xb7, 0x79, 0x07, 0x67, 0x40,
- 0x5a, 0x39, 0x0e, 0x69, 0xc6, 0x7f, 0x15, 0x78, 0x96, 0x67, 0xb3, 0x8c, 0xc0, 0xf9, 0x7c, 0xe6,
- 0xfe, 0x34, 0xb0, 0xf8, 0xfa, 0x89, 0xcd, 0x30, 0xa0, 0x5c, 0x1a, 0x2c, 0xa2, 0x63, 0x78, 0x90,
- 0xe8, 0x89, 0x85, 0xb8, 0x70, 0x43, 0x88, 0xd9, 0xf1, 0x67, 0x4e, 0x76, 0xc4, 0x21, 0x2f, 0x71,
+ // 2055 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x59, 0xdb, 0x6e, 0xe3, 0xc6,
+ 0x19, 0x0e, 0x75, 0x32, 0xf9, 0x4b, 0xeb, 0x95, 0x67, 0x4f, 0x32, 0x65, 0xaf, 0x1d, 0xee, 0x6e,
+ 0xea, 0x20, 0xad, 0xec, 0xba, 0x6d, 0xd0, 0x5e, 0x15, 0xeb, 0xc4, 0x36, 0xec, 0xae, 0xad, 0x2d,
+ 0x2d, 0x20, 0x40, 0x91, 0x42, 0xa5, 0xc4, 0x91, 0x34, 0x5d, 0x4a, 0x54, 0xc8, 0x91, 0xd7, 0x2a,
+ 0x8a, 0xf6, 0xba, 0x40, 0xee, 0x8b, 0x3e, 0x40, 0x1f, 0x20, 0x8f, 0xd0, 0x57, 0xe8, 0x4d, 0xef,
+ 0xfb, 0x14, 0xc5, 0x5e, 0x15, 0x73, 0xe0, 0x49, 0x24, 0xed, 0x5d, 0x3b, 0xca, 0x8d, 0x30, 0xf3,
+ 0xcf, 0xe1, 0x3f, 0xf0, 0x9f, 0x6f, 0xbe, 0xf9, 0x05, 0xb5, 0xbe, 0x3b, 0x1e, 0x13, 0xda, 0x9a,
+ 0x7a, 0x2e, 0x75, 0x51, 0x65, 0x48, 0xa8, 0xe5, 0xcc, 0xf5, 0x9a, 0x3f, 0xb2, 0x3c, 0x6c, 0x0b,
+ 0xa9, 0xbe, 0x35, 0x74, 0xdd, 0xa1, 0x83, 0x77, 0x79, 0xaf, 0x37, 0x1b, 0xec, 0x52, 0x32, 0xc6,
+ 0x3e, 0xb5, 0xc6, 0x53, 0x31, 0xc1, 0xb0, 0x01, 0x7d, 0xc1, 0xb7, 0xb9, 0xa0, 0x16, 0xf5, 0x4d,
+ 0xfc, 0xcd, 0x0c, 0xfb, 0x14, 0xed, 0x03, 0x78, 0x78, 0xea, 0xfa, 0x84, 0xba, 0xde, 0xbc, 0xa1,
+ 0x6c, 0x2b, 0x3b, 0xd5, 0x7d, 0xd4, 0x12, 0x1a, 0x5a, 0x66, 0x38, 0x62, 0xc6, 0x66, 0x21, 0x1d,
+ 0x54, 0x0f, 0x5f, 0x12, 0x9f, 0xb8, 0x93, 0x46, 0x61, 0x5b, 0xd9, 0xa9, 0x99, 0x61, 0xdf, 0xe8,
+ 0xc3, 0x83, 0x84, 0x16, 0x7f, 0xea, 0x4e, 0x7c, 0x8c, 0xea, 0x50, 0x74, 0x89, 0xcd, 0xf7, 0xd7,
+ 0x4c, 0xd6, 0x44, 0x1b, 0xa0, 0x59, 0xb6, 0x4d, 0x28, 0x71, 0x27, 0x3e, 0xdf, 0xa5, 0x6c, 0x46,
+ 0x02, 0x36, 0x6a, 0x63, 0x07, 0x8b, 0xd1, 0xa2, 0x18, 0x0d, 0x05, 0xc6, 0xdf, 0x14, 0x78, 0x22,
+ 0xb4, 0x9c, 0xf8, 0x2f, 0x27, 0x7d, 0xec, 0x53, 0xd7, 0xbb, 0x8b, 0x43, 0x5b, 0x50, 0xb5, 0xe4,
+ 0x36, 0x5d, 0x62, 0x73, 0x6b, 0x34, 0x13, 0x02, 0xd1, 0x89, 0x8d, 0xd6, 0x41, 0xed, 0x8f, 0x88,
+ 0x63, 0xb3, 0xd1, 0x22, 0x1f, 0x5d, 0xe1, 0xfd, 0x13, 0xdb, 0xd8, 0x83, 0x46, 0xda, 0x14, 0xe9,
+ 0xf5, 0x43, 0x28, 0x5f, 0x5a, 0xce, 0x0c, 0x73, 0x33, 0x54, 0x53, 0x74, 0x8c, 0x6f, 0x15, 0xa8,
+ 0x77, 0x3c, 0x8c, 0x0f, 0x27, 0xd4, 0x9b, 0x2f, 0xe9, 0x3b, 0x20, 0x04, 0xa5, 0xa9, 0x45, 0x47,
+ 0xdc, 0xda, 0x9a, 0xc9, 0xdb, 0xcc, 0x1c, 0x87, 0x8c, 0x09, 0x6d, 0x94, 0xb6, 0x95, 0x9d, 0xa2,
+ 0x29, 0x3a, 0xc6, 0xbf, 0x15, 0x58, 0x8b, 0x99, 0x23, 0x4d, 0xff, 0x25, 0x94, 0xe8, 0x7c, 0x2a,
+ 0x2c, 0x5f, 0xdd, 0x7f, 0x1e, 0x58, 0x92, 0x9a, 0xd8, 0x6a, 0xf7, 0xfe, 0x88, 0xfb, 0xb4, 0x33,
+ 0x9f, 0x62, 0x93, 0xaf, 0x08, 0x3e, 0x75, 0x21, 0xfa, 0xd4, 0x08, 0x4a, 0x3e, 0xf9, 0x13, 0xe6,
+ 0xb6, 0x14, 0x4d, 0xde, 0x66, 0xb2, 0xb1, 0x6b, 0x63, 0x6e, 0x4a, 0xd9, 0xe4, 0x6d, 0x26, 0xb3,
+ 0x2d, 0x6a, 0x35, 0xca, 0xc2, 0x66, 0xd6, 0x36, 0x7e, 0x01, 0x10, 0x69, 0x40, 0x00, 0x95, 0x2f,
+ 0xda, 0x67, 0x67, 0x27, 0x9d, 0xfa, 0x47, 0x48, 0x85, 0xd2, 0xc1, 0xab, 0xf6, 0x41, 0x5d, 0x61,
+ 0xad, 0x8e, 0x79, 0x78, 0x58, 0x2f, 0xa0, 0x15, 0x28, 0x76, 0x5e, 0x1e, 0xd7, 0x8b, 0x86, 0x0b,
+ 0x8f, 0xc4, 0x57, 0xf1, 0x0f, 0x30, 0x7d, 0x8b, 0xf1, 0xe4, 0x2e, 0x71, 0x46, 0x50, 0x1a, 0x78,
+ 0xee, 0x58, 0xc6, 0x98, 0xb7, 0xd1, 0x2a, 0x14, 0xa8, 0x2b, 0xa3, 0x5b, 0xa0, 0xae, 0x71, 0x08,
+ 0x8f, 0x17, 0x15, 0xca, 0x48, 0x7e, 0x06, 0x2b, 0xe2, 0xf8, 0xfa, 0x0d, 0x65, 0xbb, 0xb8, 0x53,
+ 0xdd, 0x5f, 0x0b, 0xd4, 0x1d, 0x13, 0x2a, 0xd6, 0x98, 0xc1, 0x0c, 0xe3, 0xbb, 0x02, 0x3b, 0x3f,
+ 0xb3, 0x89, 0x1c, 0x58, 0xd6, 0x31, 0x45, 0x7b, 0x50, 0xb6, 0x06, 0x14, 0x7b, 0xdc, 0x83, 0xea,
+ 0xbe, 0xde, 0x12, 0xe8, 0xd1, 0x0a, 0xd0, 0xa3, 0xd5, 0x09, 0xd0, 0xc3, 0x14, 0x13, 0xd1, 0x3e,
+ 0x54, 0x7a, 0x78, 0xe0, 0x7a, 0xe2, 0x93, 0x5d, 0xbf, 0x44, 0xce, 0x0c, 0x93, 0xb0, 0x1c, 0x4b,
+ 0xc2, 0x26, 0x68, 0x63, 0xeb, 0xaa, 0xdb, 0x67, 0x4e, 0x36, 0x2a, 0xfc, 0xeb, 0xab, 0x63, 0xeb,
+ 0x8a, 0x3b, 0xcd, 0x72, 0xc7, 0x72, 0x9c, 0xc6, 0x0a, 0x3f, 0x2e, 0xac, 0x89, 0x3e, 0x86, 0xda,
+ 0x80, 0x78, 0x3e, 0xed, 0x4e, 0x2d, 0x0f, 0x4f, 0x68, 0x43, 0xe5, 0x43, 0x55, 0x2e, 0x7b, 0xcd,
+ 0x45, 0xc6, 0x8f, 0xe1, 0x61, 0x32, 0x64, 0xd1, 0xe9, 0x13, 0x5a, 0x14, 0xae, 0x45, 0x74, 0x8c,
+ 0x7f, 0x2a, 0xb0, 0xc1, 0xa7, 0x7f, 0x49, 0x2e, 0xb1, 0x37, 0x24, 0x93, 0xe1, 0xf7, 0x10, 0xea,
+ 0xf7, 0xc8, 0x90, 0xa4, 0xe3, 0x2b, 0x49, 0xc7, 0x4f, 0x4b, 0x6a, 0xa9, 0x5e, 0x3e, 0x2d, 0xa9,
+ 0xe5, 0x7a, 0xe5, 0xb4, 0xa4, 0x56, 0xea, 0x2b, 0x46, 0x17, 0x36, 0x73, 0xcc, 0x94, 0xee, 0x6d,
+ 0x02, 0x38, 0x78, 0x40, 0xbb, 0x71, 0x1f, 0x35, 0x26, 0x11, 0xa1, 0xdc, 0x82, 0xaa, 0x47, 0x86,
+ 0xa3, 0x60, 0x5c, 0x20, 0x2c, 0x70, 0x11, 0x9f, 0x60, 0xbc, 0x53, 0x40, 0x0b, 0x8f, 0x73, 0x06,
+ 0x40, 0xaf, 0x83, 0xea, 0xb9, 0x2e, 0xed, 0x46, 0x87, 0x79, 0x85, 0xf5, 0xdb, 0xe2, 0x40, 0xa7,
+ 0xc0, 0x65, 0x57, 0x02, 0x46, 0x89, 0x03, 0x46, 0x33, 0x05, 0x18, 0x2d, 0xfe, 0x1b, 0xc3, 0x89,
+ 0x00, 0x01, 0xca, 0x31, 0x04, 0xd8, 0x04, 0x10, 0x27, 0x81, 0x6b, 0xad, 0x70, 0xad, 0x9a, 0x90,
+ 0x30, 0xbd, 0x4d, 0xd0, 0x06, 0x8e, 0xc5, 0x72, 0x81, 0x8e, 0x78, 0x08, 0x6b, 0xa6, 0xca, 0x04,
+ 0xaf, 0x2d, 0x3a, 0x32, 0x3e, 0x03, 0x2d, 0x54, 0x11, 0x82, 0xc3, 0x47, 0x21, 0x38, 0x28, 0x31,
+ 0xf0, 0x28, 0x1a, 0xff, 0x50, 0xe0, 0xd1, 0x31, 0xa6, 0x81, 0x75, 0x04, 0xfb, 0x3f, 0x24, 0x10,
+ 0x6f, 0x80, 0xe6, 0xe1, 0xfe, 0xcc, 0xf3, 0xc9, 0xa5, 0x08, 0x98, 0x6a, 0x46, 0x02, 0x06, 0x25,
+ 0x8b, 0xa6, 0x45, 0x50, 0x82, 0x85, 0x68, 0x11, 0x4a, 0x22, 0x5c, 0x0e, 0x66, 0x18, 0x3d, 0xa8,
+ 0xbf, 0x22, 0x3e, 0x3d, 0x22, 0xce, 0xd2, 0x9c, 0x33, 0x3e, 0x85, 0xb5, 0x98, 0x8e, 0xe8, 0xdc,
+ 0x31, 0x2f, 0x85, 0x8d, 0x35, 0x53, 0x74, 0x8c, 0x3e, 0xac, 0x1d, 0x91, 0x89, 0x2d, 0x01, 0x6f,
+ 0x49, 0xf6, 0xfc, 0x1a, 0x50, 0x5c, 0x89, 0x34, 0xe8, 0x53, 0xa8, 0x88, 0x1c, 0x92, 0x1a, 0x32,
+ 0x00, 0x58, 0x4e, 0x30, 0xba, 0xf0, 0x84, 0x39, 0x14, 0x40, 0xf9, 0xbc, 0x4d, 0xec, 0xbb, 0xd8,
+ 0x1a, 0xde, 0x85, 0x45, 0x79, 0xaa, 0x8c, 0x63, 0x68, 0xa4, 0x15, 0xdc, 0xe6, 0xa6, 0x98, 0x40,
+ 0x33, 0xb1, 0x91, 0x89, 0x07, 0xe7, 0xd6, 0x18, 0xdf, 0xc5, 0xda, 0x26, 0x4b, 0xcb, 0x41, 0x77,
+ 0x62, 0x8d, 0xb1, 0xcf, 0x6d, 0xe6, 0xa1, 0xe5, 0xdb, 0xfa, 0xc6, 0x6f, 0x60, 0x23, 0x5b, 0xdf,
+ 0x6d, 0x8c, 0x7f, 0xa7, 0xc0, 0x23, 0xf6, 0xa1, 0x5e, 0x3a, 0xce, 0x92, 0x2f, 0xba, 0x04, 0xea,
+ 0x16, 0x17, 0xae, 0x1b, 0x46, 0x4c, 0xde, 0x90, 0x69, 0x40, 0x42, 0x58, 0x1b, 0xfd, 0x0a, 0xca,
+ 0xae, 0x67, 0x63, 0x8f, 0xe3, 0xd2, 0xea, 0xfe, 0xb3, 0x40, 0x77, 0xa6, 0xb9, 0xad, 0x36, 0x9b,
+ 0x6a, 0x8a, 0x15, 0xc6, 0x0b, 0x28, 0xf3, 0x3e, 0xc3, 0x9c, 0xf3, 0xf6, 0xf9, 0xa1, 0x44, 0x9f,
+ 0xf6, 0xeb, 0xb6, 0x20, 0x29, 0x5f, 0xbe, 0xec, 0x1c, 0xd6, 0x0b, 0xec, 0x7c, 0x2f, 0x6e, 0x76,
+ 0x9b, 0x18, 0x7e, 0x5b, 0x8a, 0x27, 0xfb, 0xd2, 0x02, 0x18, 0x92, 0x46, 0x11, 0x3c, 0xd1, 0x41,
+ 0x8f, 0xa1, 0xe2, 0x0e, 0x06, 0x3e, 0xa6, 0x32, 0x76, 0xb2, 0x17, 0x9d, 0xfd, 0x72, 0xec, 0xec,
+ 0xb3, 0xd9, 0x03, 0xd7, 0x71, 0xdc, 0xb7, 0x1c, 0xd2, 0x55, 0x53, 0xf6, 0xd8, 0x1d, 0xc5, 0x62,
+ 0xde, 0x1d, 0x63, 0x6f, 0x88, 0x7d, 0x79, 0xed, 0x03, 0x13, 0x9d, 0x71, 0x09, 0xbb, 0xfd, 0x6d,
+ 0xe2, 0x5b, 0x3d, 0x07, 0x77, 0xdf, 0x5a, 0xce, 0x9b, 0xe0, 0xf6, 0x97, 0xb2, 0xaf, 0x2c, 0xe7,
+ 0x4d, 0xc4, 0x64, 0xb4, 0x0f, 0x67, 0x32, 0xf0, 0xde, 0x4c, 0x46, 0x12, 0x93, 0x6a, 0x3e, 0x31,
+ 0xa9, 0xa5, 0x88, 0x09, 0x73, 0xdb, 0x9a, 0xd1, 0x91, 0xeb, 0x35, 0xee, 0xf1, 0xa0, 0xca, 0x1e,
+ 0xfa, 0x3c, 0x48, 0xb1, 0x55, 0x9e, 0x62, 0xdb, 0xf1, 0x14, 0xbb, 0x2e, 0xbf, 0x9a, 0xd7, 0xe4,
+ 0x97, 0x71, 0x00, 0x0f, 0x12, 0xeb, 0x6f, 0x93, 0x52, 0xa3, 0x80, 0xc4, 0xbe, 0xb2, 0x26, 0xc3,
+ 0x99, 0x35, 0x5c, 0xde, 0xc5, 0xf1, 0xdf, 0xf0, 0x05, 0x17, 0x53, 0x25, 0x4d, 0x3e, 0x02, 0xcd,
+ 0x09, 0x84, 0xd2, 0xe8, 0x9d, 0x40, 0x55, 0xce, 0x9a, 0x56, 0x20, 0x31, 0xa3, 0xa5, 0xfa, 0x5f,
+ 0x41, 0x0d, 0xc4, 0xec, 0xa4, 0x33, 0x58, 0x93, 0xfc, 0x86, 0xb7, 0x59, 0xae, 0xf2, 0x17, 0x34,
+ 0x37, 0xae, 0x60, 0x8a, 0x8e, 0x60, 0x8d, 0x8e, 0xeb, 0xc9, 0x77, 0x9e, 0xe8, 0x30, 0x62, 0x32,
+ 0x20, 0x0e, 0x96, 0x38, 0xc2, 0x72, 0xfe, 0x9e, 0xa9, 0x31, 0x89, 0x00, 0x92, 0x87, 0x50, 0xee,
+ 0xcd, 0x29, 0xf6, 0x39, 0x68, 0x94, 0x4c, 0xd1, 0x31, 0x66, 0x70, 0xdf, 0xb4, 0xde, 0x1e, 0x38,
+ 0x77, 0x84, 0xe5, 0x0f, 0x64, 0x17, 0xc6, 0x27, 0x50, 0x8f, 0xd4, 0xca, 0x98, 0x06, 0x4f, 0x2b,
+ 0x25, 0xf6, 0xb4, 0xfa, 0x0b, 0x34, 0x5e, 0x59, 0x01, 0xa2, 0x1f, 0xb9, 0x1e, 0x63, 0x51, 0x3f,
+ 0xa4, 0x9d, 0x47, 0xb0, 0x9e, 0xa1, 0xff, 0xc3, 0xef, 0xec, 0xef, 0x14, 0xd8, 0x64, 0x57, 0x53,
+ 0xb4, 0x99, 0x7f, 0xe4, 0x7a, 0x8c, 0x11, 0x7d, 0x9f, 0xde, 0x68, 0x1f, 0xf2, 0xb8, 0xce, 0xc0,
+ 0xc9, 0x72, 0x1c, 0x27, 0x8d, 0xff, 0x28, 0xf0, 0x34, 0xcf, 0x66, 0x19, 0x81, 0xf3, 0xc5, 0x93,
+ 0xfb, 0xf3, 0xc0, 0xe2, 0xeb, 0x17, 0xb6, 0xc2, 0x80, 0x72, 0x69, 0xb0, 0x89, 0x8e, 0xe1, 0x5e,
+ 0x62, 0x24, 0x16, 0xe2, 0xc2, 0x0d, 0x21, 0x66, 0xe9, 0xcf, 0x9c, 0xec, 0x8a, 0x24, 0x2f, 0x71,
0xb7, 0x35, 0x26, 0x39, 0x60, 0x82, 0xd3, 0x92, 0xaa, 0xd4, 0x0b, 0xa7, 0x25, 0xb5, 0x58, 0x2f,
- 0x19, 0xff, 0x0e, 0x33, 0xdb, 0x3f, 0x98, 0x9d, 0x61, 0xdf, 0x67, 0x59, 0xb9, 0xa0, 0x53, 0x15,
- 0x45, 0xb7, 0x38, 0x7f, 0x61, 0x64, 0xec, 0x45, 0xd6, 0xc3, 0x71, 0x15, 0xca, 0x5f, 0x4f, 0xb1,
- 0x37, 0x93, 0xcf, 0x02, 0xd1, 0x60, 0x7c, 0x2a, 0xed, 0xc2, 0x5d, 0x00, 0x95, 0xc0, 0xd6, 0x11,
- 0x71, 0x28, 0xf6, 0x2e, 0x86, 0x96, 0xff, 0x25, 0xa1, 0xc3, 0x0b, 0x32, 0x18, 0x5b, 0x74, 0xea,
- 0xe1, 0xfb, 0xbe, 0x0c, 0xfd, 0xa1, 0x15, 0xd0, 0x29, 0xfe, 0x6d, 0xfc, 0x1c, 0xb6, 0xf3, 0x55,
- 0x45, 0x28, 0xc0, 0xe7, 0x29, 0xb1, 0x79, 0x13, 0xd8, 0x3c, 0xbc, 0xa2, 0x9e, 0xd5, 0x93, 0xc6,
- 0x87, 0xd3, 0xee, 0x49, 0xfa, 0xe4, 0x93, 0x2b, 0x7c, 0xe7, 0xa9, 0x42, 0x70, 0x62, 0x1b, 0x1d,
- 0x78, 0x96, 0xa7, 0x51, 0xda, 0xb9, 0x01, 0x9a, 0x1f, 0x08, 0x25, 0x64, 0x45, 0x02, 0x7e, 0xc1,
- 0x93, 0xc1, 0x18, 0xdb, 0x1d, 0x8a, 0xaf, 0xa8, 0x3c, 0x14, 0x20, 0x44, 0x6d, 0x7c, 0x45, 0x0d,
- 0x17, 0xf4, 0x63, 0x3c, 0xbf, 0xf8, 0xbd, 0x02, 0x1e, 0x3d, 0x21, 0x89, 0xed, 0x4b, 0xe6, 0xad,
- 0x05, 0x0e, 0xf9, 0xc6, 0x0c, 0xd6, 0x33, 0x15, 0x4a, 0x77, 0x12, 0xd1, 0x50, 0x92, 0xd1, 0x48,
- 0xfa, 0x5a, 0xb8, 0xc1, 0xd7, 0x62, 0xca, 0xd7, 0x11, 0x34, 0x42, 0xd5, 0xf2, 0xa8, 0x2e, 0xd2,
- 0x53, 0x13, 0xd6, 0x32, 0xd4, 0x7d, 0x88, 0x9f, 0x0d, 0x58, 0x1a, 0x89, 0x09, 0xd2, 0xcb, 0xa0,
- 0xb9, 0xff, 0xff, 0x87, 0x01, 0x32, 0x5d, 0x60, 0xef, 0x92, 0xf4, 0x30, 0xfa, 0x3d, 0xd4, 0xe7,
- 0xcb, 0x9f, 0x68, 0x2b, 0x49, 0x01, 0x52, 0x35, 0x5a, 0x7d, 0x3b, 0x7f, 0x80, 0xb0, 0xcf, 0xd0,
- 0xde, 0xff, 0x7d, 0xa7, 0xac, 0x16, 0x74, 0xe5, 0xc7, 0xe8, 0x2c, 0x5e, 0xa6, 0x68, 0x64, 0x14,
- 0x22, 0xc5, 0x9a, 0x6b, 0xb9, 0x25, 0xca, 0xd8, 0x62, 0x7b, 0x0a, 0xfa, 0x0a, 0x96, 0x93, 0x85,
- 0x3a, 0xb4, 0x99, 0xb4, 0x66, 0xae, 0x62, 0xa8, 0x3f, 0xcb, 0xeb, 0xce, 0x5a, 0xbd, 0x0d, 0xb5,
- 0x78, 0x2d, 0x0a, 0xad, 0x47, 0x93, 0x53, 0x45, 0x3d, 0x7d, 0x23, 0xbb, 0x33, 0x1d, 0x02, 0x5e,
- 0xcd, 0xcc, 0xa8, 0x05, 0xa1, 0x17, 0x89, 0x15, 0x72, 0x2a, 0x5a, 0xfa, 0xcb, 0x1b, 0x46, 0xa5,
- 0x15, 0x7e, 0x05, 0xcb, 0xc9, 0x12, 0x44, 0x14, 0xa4, 0xcc, 0xaa, 0x49, 0x14, 0xa4, 0xec, 0xca,
- 0x45, 0x32, 0x48, 0x67, 0xa0, 0x85, 0x55, 0x83, 0x68, 0x47, 0xe7, 0x8b, 0x15, 0xd1, 0x8e, 0xa6,
- 0x4a, 0x0c, 0xc9, 0xe5, 0xce, 0x01, 0x22, 0x3a, 0x8d, 0xd6, 0xe2, 0x0f, 0xb6, 0x44, 0xb5, 0x41,
- 0xd7, 0xb3, 0xba, 0xd2, 0xce, 0xff, 0x06, 0xaa, 0xb1, 0xbf, 0x30, 0x90, 0x9e, 0xdc, 0xff, 0xf8,
- 0xbf, 0x27, 0xfa, 0x7a, 0x66, 0x5f, 0x66, 0x3c, 0x93, 0x4f, 0xbe, 0x28, 0x9e, 0x99, 0xef, 0xca,
- 0x28, 0x9e, 0xd9, 0x2f, 0xc5, 0x64, 0x00, 0x2e, 0xa0, 0x1a, 0x7b, 0x4f, 0xa0, 0x0c, 0x37, 0xd3,
- 0x06, 0x67, 0x3c, 0x40, 0x92, 0x8b, 0xfe, 0x0e, 0x1e, 0xce, 0x31, 0x78, 0xf4, 0x2c, 0x97, 0xda,
- 0x8b, 0xc5, 0xb7, 0x6e, 0xa0, 0xfe, 0xf1, 0x88, 0x9c, 0x82, 0x1a, 0x30, 0x5f, 0xf4, 0x34, 0x04,
- 0xba, 0x24, 0x05, 0xd7, 0x1b, 0xe9, 0x8e, 0x2c, 0x53, 0x7b, 0xb0, 0x92, 0x62, 0xa7, 0x28, 0xc4,
- 0x98, 0x3c, 0xe2, 0xac, 0x7f, 0x7c, 0xcd, 0x88, 0xb4, 0xc1, 0x14, 0x9e, 0x64, 0x93, 0x39, 0xf4,
- 0xf2, 0x26, 0xb2, 0x27, 0xd4, 0x7d, 0xf2, 0x61, 0x9c, 0x30, 0xe9, 0x5a, 0x37, 0x80, 0xd7, 0x88,
- 0xde, 0xcc, 0xc3, 0x6b, 0x8a, 0xbb, 0xcd, 0xc3, 0x6b, 0x9a, 0x19, 0xa5, 0x74, 0xcc, 0x97, 0xa4,
- 0x22, 0x1d, 0x39, 0xd5, 0xb0, 0x48, 0x47, 0x5e, 0x35, 0x2b, 0xa9, 0x63, 0x0c, 0xab, 0x59, 0xd5,
- 0x23, 0xf4, 0x3c, 0x73, 0x99, 0x64, 0x2d, 0x4b, 0x7f, 0x71, 0xfd, 0xa0, 0x2c, 0x7d, 0x7f, 0x82,
- 0x46, 0x1e, 0xc5, 0x42, 0x3f, 0x88, 0x72, 0xe0, 0x5a, 0xbe, 0xa7, 0xef, 0xdc, 0x3c, 0x30, 0xa5,
- 0x7b, 0x47, 0xd9, 0x53, 0xd0, 0x5b, 0x78, 0x94, 0x41, 0x32, 0x90, 0x11, 0x03, 0xc9, 0x1c, 0xca,
- 0xa3, 0x3f, 0xbf, 0x76, 0x4c, 0x96, 0xab, 0x18, 0x56, 0x52, 0xf7, 0x7c, 0x74, 0xfa, 0xf3, 0x18,
- 0x47, 0x74, 0xfa, 0x73, 0x49, 0x42, 0x42, 0xcd, 0xc1, 0xde, 0x6f, 0xd9, 0x04, 0xc7, 0xea, 0x36,
- 0x7b, 0xee, 0x68, 0x57, 0x7c, 0xfe, 0xc8, 0xf5, 0x06, 0xbb, 0x62, 0x19, 0xf1, 0xbf, 0xf3, 0xee,
- 0xc0, 0x95, 0xed, 0x49, 0xb7, 0x5b, 0xe1, 0xa2, 0x9f, 0x7c, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xa9,
- 0xa3, 0xf5, 0x18, 0xbe, 0x1e, 0x00, 0x00,
+ 0x19, 0xff, 0x0a, 0x4f, 0xb6, 0x7f, 0x30, 0x3f, 0xc3, 0xbe, 0xcf, 0x4e, 0xe5, 0x92, 0xb2, 0x2a,
+ 0x8a, 0x6e, 0x71, 0xf1, 0x16, 0xca, 0xf8, 0x16, 0x59, 0xaf, 0xd1, 0x87, 0x50, 0xfe, 0x66, 0x86,
+ 0xbd, 0xb9, 0x7c, 0x6b, 0x88, 0x0e, 0x23, 0x69, 0x69, 0x17, 0x6e, 0x03, 0xa8, 0x04, 0xb6, 0x8e,
+ 0x88, 0x43, 0xb1, 0x77, 0x31, 0xb2, 0xfc, 0xaf, 0x08, 0x1d, 0x5d, 0x90, 0xe1, 0xc4, 0xa2, 0x33,
+ 0x0f, 0xdf, 0xf5, 0xb9, 0xe9, 0x8f, 0xac, 0x80, 0xa3, 0xf1, 0xb6, 0xf1, 0x39, 0x6c, 0xe7, 0xab,
+ 0x8a, 0x50, 0x80, 0xaf, 0x53, 0x62, 0xeb, 0xa6, 0xb0, 0x79, 0x78, 0x45, 0x3d, 0xab, 0x2f, 0x8d,
+ 0x0f, 0x97, 0xdd, 0x91, 0x49, 0xca, 0x77, 0x5c, 0xf8, 0x78, 0x54, 0x85, 0xe0, 0xc4, 0x36, 0xba,
+ 0xf0, 0x34, 0x4f, 0xa3, 0xb4, 0x73, 0x03, 0x34, 0x3f, 0x10, 0x4a, 0xc8, 0x8a, 0x04, 0x9c, 0x35,
+ 0x90, 0xe1, 0x04, 0xdb, 0x5d, 0x8a, 0xaf, 0xa8, 0x4c, 0x0a, 0x10, 0xa2, 0x0e, 0xbe, 0xa2, 0x86,
+ 0x0b, 0xfa, 0x31, 0x5e, 0xdc, 0xfc, 0x4e, 0x01, 0x8f, 0xde, 0xa5, 0xc4, 0xf6, 0x25, 0x9d, 0xd7,
+ 0x02, 0x87, 0x7c, 0x63, 0x0e, 0xcd, 0x4c, 0x85, 0xd2, 0x9d, 0x44, 0x34, 0x94, 0x64, 0x34, 0x92,
+ 0xbe, 0x16, 0x6e, 0xf0, 0xb5, 0x98, 0xf2, 0x75, 0x0c, 0x8d, 0x50, 0xb5, 0x4c, 0xd5, 0x65, 0x7a,
+ 0x6a, 0xc2, 0x7a, 0x86, 0xba, 0xf7, 0xf1, 0xb3, 0x01, 0x2b, 0x63, 0xb1, 0x40, 0x7a, 0x19, 0x74,
+ 0xf7, 0xff, 0x77, 0x3f, 0x40, 0xa6, 0x0b, 0xec, 0x5d, 0x92, 0x3e, 0x46, 0x7f, 0x80, 0xfa, 0x62,
+ 0x4d, 0x15, 0x6d, 0x25, 0x29, 0x40, 0xaa, 0xf0, 0xab, 0x6f, 0xe7, 0x4f, 0x10, 0xf6, 0x19, 0xda,
+ 0xbb, 0xbf, 0xef, 0x94, 0xd5, 0x82, 0xae, 0xfc, 0x14, 0x9d, 0xc5, 0x6b, 0x1f, 0x8d, 0x8c, 0xea,
+ 0xa6, 0xd8, 0x73, 0x3d, 0xb7, 0xee, 0x19, 0xdb, 0x6c, 0x4f, 0x41, 0x5f, 0xc3, 0x6a, 0xb2, 0xfa,
+ 0x87, 0x36, 0x93, 0xd6, 0x2c, 0x94, 0x21, 0xf5, 0xa7, 0x79, 0xc3, 0x59, 0xbb, 0x77, 0xa0, 0x16,
+ 0x2f, 0x70, 0xa1, 0x66, 0xb4, 0x38, 0x55, 0x29, 0xd4, 0x37, 0xb2, 0x07, 0xd3, 0x21, 0xe0, 0x25,
+ 0xd2, 0x8c, 0x02, 0x13, 0x7a, 0x9e, 0xd8, 0x21, 0xa7, 0x4c, 0xa6, 0xbf, 0xb8, 0x61, 0x56, 0x5a,
+ 0xe1, 0xd7, 0xb0, 0x9a, 0xac, 0x6b, 0x44, 0x41, 0xca, 0x2c, 0xc5, 0x44, 0x41, 0xca, 0x2e, 0x87,
+ 0x24, 0x83, 0x74, 0x06, 0x5a, 0x58, 0x8a, 0x88, 0xbe, 0xe8, 0x62, 0x05, 0x24, 0xfa, 0xa2, 0xa9,
+ 0xba, 0x45, 0x72, 0xbb, 0x73, 0x80, 0x88, 0x4e, 0xa3, 0xf5, 0x34, 0x45, 0x0f, 0x36, 0xd4, 0xb3,
+ 0x86, 0xd2, 0xce, 0xff, 0x16, 0xaa, 0xb1, 0xff, 0x45, 0x90, 0x9e, 0xfc, 0xfe, 0xf1, 0xbf, 0x64,
+ 0xf4, 0x66, 0xe6, 0x58, 0x66, 0x3c, 0x93, 0xef, 0xc8, 0x28, 0x9e, 0x99, 0x8f, 0xd5, 0x28, 0x9e,
+ 0xd9, 0xcf, 0xcf, 0x64, 0x00, 0x2e, 0xa0, 0x1a, 0x7b, 0x4f, 0x20, 0x3d, 0xff, 0x91, 0x12, 0x19,
+ 0x9c, 0xf1, 0x00, 0x49, 0x6e, 0xfa, 0x7b, 0xb8, 0xbf, 0xc0, 0xe0, 0xd1, 0xd3, 0x5c, 0x6a, 0x2f,
+ 0x36, 0xdf, 0xba, 0x81, 0xfa, 0xc7, 0x23, 0x72, 0x0a, 0x6a, 0xc0, 0x7c, 0xd1, 0x93, 0x10, 0xe8,
+ 0x92, 0x14, 0x5c, 0x6f, 0xa4, 0x07, 0xb2, 0x4c, 0xed, 0xc3, 0x5a, 0x8a, 0x9d, 0xa2, 0x10, 0x63,
+ 0xf2, 0x88, 0xb3, 0xfe, 0xf1, 0x35, 0x33, 0xd2, 0x06, 0x53, 0x78, 0x9c, 0x4d, 0xe6, 0xd0, 0x8b,
+ 0x9b, 0xc8, 0x9e, 0x50, 0xf7, 0xc9, 0xfb, 0x71, 0xc2, 0xa4, 0x6b, 0xbd, 0x00, 0x5e, 0x23, 0x7a,
+ 0xb3, 0x08, 0xaf, 0x29, 0xee, 0xb6, 0x08, 0xaf, 0x69, 0x66, 0x94, 0xd2, 0xb1, 0x58, 0xe7, 0x8a,
+ 0x74, 0xe4, 0x94, 0xd8, 0x22, 0x1d, 0x79, 0x25, 0xb2, 0xa4, 0x8e, 0x09, 0x3c, 0xcc, 0x2a, 0x49,
+ 0xa1, 0x67, 0x99, 0xdb, 0x24, 0x0b, 0x64, 0xfa, 0xf3, 0xeb, 0x27, 0x65, 0xe9, 0xfb, 0x33, 0x34,
+ 0xf2, 0x28, 0x16, 0xfa, 0x51, 0x74, 0x06, 0xae, 0xe5, 0x7b, 0xfa, 0xce, 0xcd, 0x13, 0x53, 0xba,
+ 0x77, 0x94, 0x3d, 0x05, 0xbd, 0x81, 0x07, 0x19, 0x24, 0x03, 0x19, 0x31, 0x90, 0xcc, 0xa1, 0x3c,
+ 0xfa, 0xb3, 0x6b, 0xe7, 0x64, 0xb9, 0x8a, 0x61, 0x2d, 0x75, 0xcf, 0x47, 0xd9, 0x9f, 0xc7, 0x38,
+ 0xa2, 0xec, 0xcf, 0x25, 0x09, 0x09, 0x35, 0x07, 0x7b, 0xbf, 0x63, 0x0b, 0x1c, 0xab, 0xd7, 0xea,
+ 0xbb, 0xe3, 0x5d, 0xd1, 0xfc, 0x89, 0xeb, 0x0d, 0x77, 0xc5, 0x36, 0xe2, 0xcf, 0xec, 0xdd, 0xa1,
+ 0x2b, 0xfb, 0xd3, 0x5e, 0xaf, 0xc2, 0x45, 0x3f, 0xfb, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x17,
+ 0x46, 0x9f, 0x19, 0x13, 0x1f, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/ruby/proto/gitaly/commit_pb.rb b/ruby/proto/gitaly/commit_pb.rb
index bd45aad10..0bc7ce725 100644
--- a/ruby/proto/gitaly/commit_pb.rb
+++ b/ruby/proto/gitaly/commit_pb.rb
@@ -153,6 +153,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
optional :all, :bool, 11
optional :first_parent, :bool, 12
optional :author, :bytes, 13
+ optional :order, :enum, 14, "gitaly.FindCommitsRequest.Order"
+ end
+ add_enum "gitaly.FindCommitsRequest.Order" do
+ value :NONE, 0
+ value :TOPO, 1
end
add_message "gitaly.FindCommitsResponse" do
repeated :commits, :message, 1, "gitaly.GitCommit"
@@ -276,6 +281,7 @@ module Gitaly
FindAllCommitsRequest::Order = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest.Order").enummodule
FindAllCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsResponse").msgclass
FindCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitsRequest").msgclass
+ FindCommitsRequest::Order = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitsRequest.Order").enummodule
FindCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitsResponse").msgclass
CommitLanguagesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitLanguagesRequest").msgclass
CommitLanguagesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitLanguagesResponse").msgclass