1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
#![warn(missing_debug_implementations, rust_2018_idioms, unreachable_pub)]

// `tonic::include_proto`
macro_rules! include_proto {
    ($package: tt) => {
        include!(concat!(env!("OUT_DIR"), concat!("/", $package, ".rs")));
    };
}

// `tonic::include_file_descriptor_set`
macro_rules! include_file_descriptor_set {
    ($package: tt) => {
        include_bytes!(concat!(env!("OUT_DIR"), concat!("/", $package, ".bin")))
    };
}

pub(crate) const FILE_DESCRIPTOR_SET: &[u8] = include_file_descriptor_set!("file_descriptor_set");

pub mod fdb_rl {
    pub mod cursor {
        pub mod v1 {
            include_proto!("fdb_rl.cursor.v1");
        }
    }

    pub mod field {
        pub mod v1 {
            include_proto!("fdb_rl.field.v1");
        }
    }

    pub mod key_expression {
        pub mod v1 {
            include_proto!("fdb_rl.key_expression.v1");
        }
    }

    pub mod record_metadata {
        pub mod v1 {
            include_proto!("fdb_rl.record_metadata.v1");
        }
    }
}

pub(crate) const TEST_FILE_DESCRIPTOR_SET: &[u8] =
    include_file_descriptor_set!("test_file_descriptor_set");

pub mod fdb_rl_test {
    pub mod key_expression {
        pub mod well_formed_message_descriptor {
            pub mod bad {
                pub mod proto_2 {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.key_expression.well_formed_message_descriptor.bad.proto_2.v1"
			);
                    }
                }

                pub mod proto_3 {
                    pub mod v1 {
                        include_proto!(
			    "fdb_rl_test.key_expression.well_formed_message_descriptor.bad.proto_3.v1"
			);
                    }
                }
            }

            pub mod good {
                pub mod v1 {
                    include_proto!(
                        "fdb_rl_test.key_expression.well_formed_message_descriptor.good.v1"
                    );
                }
            }
        }
    }

    pub mod java {
        pub mod proto {
            pub mod evolution {
                pub mod test_field_type_change {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.java.proto.evolution.test_field_type_change.v1"
                        );
                    }
                }

                pub mod test_merged_nested_types {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.java.proto.evolution.test_merged_nested_types.v1"
                        );
                    }
                }

                pub mod test_new_record_type {
                    pub mod v1 {
                        include_proto!("fdb_rl_test.java.proto.evolution.test_new_record_type.v1");
                    }
                }

                pub mod test_self_reference {
                    pub mod v1 {
                        include_proto!("fdb_rl_test.java.proto.evolution.test_self_reference.v1");
                    }
                }

                pub mod test_self_reference_unspooled {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.java.proto.evolution.test_self_reference_unspooled.v1"
                        );
                    }
                }

                pub mod test_split_nested_types {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.java.proto.evolution.test_split_nested_types.v1"
                        );
                    }
                }

                pub mod test_swap_union_fields {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.java.proto.evolution.test_swap_union_fields.v1"
                        );
                    }
                }

                pub mod test_unmerged_nested_types {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.java.proto.evolution.test_unmerged_nested_types.v1"
                        );
                    }
                }
            }

            pub mod expression_tests {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.expression_tests.v1");
                }
            }

            pub mod test_no_indexes {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_no_indexes.v1");
                }
            }

            pub mod test_no_record_types {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_no_record_types.v1");
                }
            }

            pub mod test_no_union {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_no_union.v1");
                }
            }

            pub mod test_no_union_evolved {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_no_union_evolved.v1");
                }
            }

            pub mod test_no_union_evolved_illegal {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_no_union_evolved_illegal.v1");
                }
            }

            pub mod test_no_union_evolved_renamed_type {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_no_union_evolved_renamed_type.v1");
                }
            }

            pub mod test_records_1 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_1.v1");
                }
            }

            pub mod test_records_1_evolved {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_1_evolved.v1");
                }
            }

            pub mod test_records_1_evolved_again {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_1_evolved_again.v1");
                }
            }

            pub mod test_records_2 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_2.v1");
                }
            }

            pub mod test_records_3 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_3.v1");
                }
            }

            pub mod test_records_4 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_4.v1");
                }
            }

            pub mod test_records_4_wrapper {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_4_wrapper.v1");
                }
            }

            pub mod test_records_5 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_5.v1");
                }
            }

            pub mod test_records_6 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_6.v1");
                }
            }

            pub mod test_records_7 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_7.v1");
                }
            }

            pub mod test_records_8 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_8.v1");
                }
            }

            pub mod test_records_bad_union_1 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_bad_union_1.v1");
                }
            }

            pub mod test_records_bad_union_2 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_bad_union_2.v1");
                }
            }

            pub mod test_records_bitmap {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_bitmap.v1");
                }
            }

            pub mod test_records_bytes {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_bytes.v1");
                }
            }

            pub mod test_records_chained_1 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_chained_1.v1");
                }
            }

            pub mod test_records_chained_2 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_chained_2.v1");
                }
            }

            pub mod test_records_datatypes {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_datatypes.v1");
                }
            }

            pub mod test_records_double_nested {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_double_nested.v1");
                }
            }

            pub mod test_records_duplicate_union_fields {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_duplicate_union_fields.v1");
                }
            }

            pub mod test_records_duplicate_union_fields_reordered {
                pub mod v1 {
                    include_proto!(
                        "fdb_rl_test.java.proto.test_records_duplicate_union_fields_reordered.v1"
                    );
                }
            }

            pub mod test_records_enum {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_enum.v1");
                }
            }

            pub mod test_records_implicit_usage {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_implicit_usage.v1");
                }
            }

            pub mod test_records_implicit_usage_no_union {
                pub mod v1 {
                    include_proto!(
                        "fdb_rl_test.java.proto.test_records_implicit_usage_no_union.v1"
                    );
                }
            }

            pub mod test_records_import {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_import.v1");
                }
            }

            pub mod test_records_import_flat {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_import_flat.v1");
                }
            }

            pub mod test_records_imported_and_new {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_imported_and_new.v1");
                }
            }

            pub mod test_records_index_compat {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_index_compat.v1");
                }
            }

            pub mod test_records_index_filtering {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_index_filtering.v1");
                }
            }

            pub mod test_records_join_index {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_join_index.v1");
                }
            }

            pub mod test_records_leaderboard {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_leaderboard.v1");
                }
            }

            pub mod test_records_map {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_map.v1");
                }
            }

            pub mod test_records_marked_unmarked {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_marked_unmarked.v1");
                }
            }

            pub mod test_records_multi {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_multi.v1");
                }
            }

            pub mod test_records_multidimensional {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_multidimensional.v1");
                }
            }

            pub mod test_records_name_clash {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_name_clash.v1");
                }
            }

            pub mod test_records_nested_as_record {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_nested_as_record.v1");
                }
            }

            pub mod test_records_no_primary_key {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_no_primary_key.v1");
                }
            }

            pub mod test_records_nulls_2 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_nulls_2.v1");
                }
            }

            pub mod test_records_oneof {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_oneof.v1");
                }
            }

            pub mod test_records_parent_child {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_parent_child.v1");
                }
            }

            pub mod test_records_rank {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_rank.v1");
                }
            }

            pub mod test_records_text {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_text.v1");
                }
            }

            pub mod test_records_transform {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_transform.v1");
                }
            }

            pub mod test_records_tuple_fields {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_tuple_fields.v1");
                }
            }

            pub mod test_records_two_unions {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_two_unions.v1");
                }
            }

            pub mod test_records_union_default_name {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_union_default_name.v1");
                }
            }

            pub mod test_records_union_missing_record {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_union_missing_record.v1");
                }
            }

            pub mod test_records_union_with_imported_nested {
                pub mod v1 {
                    include_proto!(
                        "fdb_rl_test.java.proto.test_records_union_with_imported_nested.v1"
                    );
                }
            }

            pub mod test_records_union_with_nested {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_union_with_nested.v1");
                }
            }

            pub mod test_records_unsigned_1 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_unsigned_1.v1");
                }
            }

            pub mod test_records_unsigned_2 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_unsigned_2.v1");
                }
            }

            pub mod test_records_unsigned_3 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_unsigned_3.v1");
                }
            }

            pub mod test_records_unsigned_4 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_unsigned_4.v1");
                }
            }

            pub mod test_records_unsigned_5 {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_unsigned_5.v1");
                }
            }

            pub mod test_records_with_header {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_with_header.v1");
                }
            }

            pub mod test_records_with_union {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto.test_records_with_union.v1");
                }
            }
        }

        pub mod proto2 {
            pub mod test_records_maps {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto2.test_records_maps.v1");
                }
            }
        }

        pub mod proto3 {
            pub mod evolution {
                pub mod test_nested_proto2 {
                    pub mod v1 {
                        include_proto!("fdb_rl_test.java.proto3.evolution.test_nested_proto2.v1");
                    }
                }

                pub mod test_nested_proto3 {
                    pub mod v1 {
                        include_proto!("fdb_rl_test.java.proto3.evolution.test_nested_proto3.v1");
                    }
                }

                pub mod test_records_1_imported {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.java.proto3.evolution.test_records_1_imported.v1"
                        );
                    }
                }

                pub mod test_records_3_proto3 {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.java.proto3.evolution.test_records_3_proto3.v1"
                        );
                    }
                }

                pub mod test_records_enum_proto3 {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.java.proto3.evolution.test_records_enum_proto3.v1"
                        );
                    }
                }

                pub mod test_records_nested_proto2 {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.java.proto3.evolution.test_records_nested_proto2.v1"
                        );
                    }
                }

                pub mod test_records_nested_proto3 {
                    pub mod v1 {
                        include_proto!(
                            "fdb_rl_test.java.proto3.evolution.test_records_nested_proto3.v1"
                        );
                    }
                }
            }

            pub mod test_records_maps {
                pub mod v1 {
                    include_proto!("fdb_rl_test.java.proto3.test_records_maps.v1");
                }
            }
        }
    }
}