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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
|
// automatically generated by the FlatBuffers compiler, do not modify
#ifndef FLATBUFFERS_GENERATED_SCHEMA_ORG_APACHE_ARROW_FLATBUF_H_
#define FLATBUFFERS_GENERATED_SCHEMA_ORG_APACHE_ARROW_FLATBUF_H_
#include "flatbuffers/flatbuffers.h"
namespace org {
namespace apache {
namespace arrow {
namespace flatbuf {
struct Null;
struct NullBuilder;
struct Struct_;
struct Struct_Builder;
struct List;
struct ListBuilder;
struct LargeList;
struct LargeListBuilder;
struct FixedSizeList;
struct FixedSizeListBuilder;
struct Map;
struct MapBuilder;
struct Union;
struct UnionBuilder;
struct Int;
struct IntBuilder;
struct FloatingPoint;
struct FloatingPointBuilder;
struct Utf8;
struct Utf8Builder;
struct Binary;
struct BinaryBuilder;
struct LargeUtf8;
struct LargeUtf8Builder;
struct LargeBinary;
struct LargeBinaryBuilder;
struct FixedSizeBinary;
struct FixedSizeBinaryBuilder;
struct Bool;
struct BoolBuilder;
struct Decimal;
struct DecimalBuilder;
struct Date;
struct DateBuilder;
struct Time;
struct TimeBuilder;
struct Timestamp;
struct TimestampBuilder;
struct Interval;
struct IntervalBuilder;
struct Duration;
struct DurationBuilder;
struct KeyValue;
struct KeyValueBuilder;
struct DictionaryEncoding;
struct DictionaryEncodingBuilder;
struct Field;
struct FieldBuilder;
struct Buffer;
struct Schema;
struct SchemaBuilder;
enum class MetadataVersion : int16_t {
/// 0.1.0 (October 2016).
V1 = 0,
/// 0.2.0 (February 2017). Non-backwards compatible with V1.
V2 = 1,
/// 0.3.0 -> 0.7.1 (May - December 2017). Non-backwards compatible with V2.
V3 = 2,
/// >= 0.8.0 (December 2017). Non-backwards compatible with V3.
V4 = 3,
/// >= 1.0.0 (July 2020. Backwards compatible with V4 (V5 readers can read V4
/// metadata and IPC messages). Implementations are recommended to provide a
/// V4 compatibility mode with V5 format changes disabled.
///
/// Incompatible changes between V4 and V5:
/// - Union buffer layout has changed. In V5, Unions don't have a validity
/// bitmap buffer.
V5 = 4,
MIN = V1,
MAX = V5
};
inline const MetadataVersion (&EnumValuesMetadataVersion())[5] {
static const MetadataVersion values[] = {
MetadataVersion::V1,
MetadataVersion::V2,
MetadataVersion::V3,
MetadataVersion::V4,
MetadataVersion::V5
};
return values;
}
inline const char * const *EnumNamesMetadataVersion() {
static const char * const names[6] = {
"V1",
"V2",
"V3",
"V4",
"V5",
nullptr
};
return names;
}
inline const char *EnumNameMetadataVersion(MetadataVersion e) {
if (flatbuffers::IsOutRange(e, MetadataVersion::V1, MetadataVersion::V5)) return "";
const size_t index = static_cast<size_t>(e);
return EnumNamesMetadataVersion()[index];
}
/// Represents Arrow Features that might not have full support
/// within implementations. This is intended to be used in
/// two scenarios:
/// 1. A mechanism for readers of Arrow Streams
/// and files to understand that the stream or file makes
/// use of a feature that isn't supported or unknown to
/// the implementation (and therefore can meet the Arrow
/// forward compatibility guarantees).
/// 2. A means of negotiating between a client and server
/// what features a stream is allowed to use. The enums
/// values here are intented to represent higher level
/// features, additional details maybe negotiated
/// with key-value pairs specific to the protocol.
///
/// Enums added to this list should be assigned power-of-two values
/// to facilitate exchanging and comparing bitmaps for supported
/// features.
enum class Feature : int64_t {
/// Needed to make flatbuffers happy.
UNUSED = 0,
/// The stream makes use of multiple full dictionaries with the
/// same ID and assumes clients implement dictionary replacement
/// correctly.
DICTIONARY_REPLACEMENT = 1LL,
/// The stream makes use of compressed bodies as described
/// in Message.fbs.
COMPRESSED_BODY = 2LL,
MIN = UNUSED,
MAX = COMPRESSED_BODY
};
inline const Feature (&EnumValuesFeature())[3] {
static const Feature values[] = {
Feature::UNUSED,
Feature::DICTIONARY_REPLACEMENT,
Feature::COMPRESSED_BODY
};
return values;
}
inline const char * const *EnumNamesFeature() {
static const char * const names[4] = {
"UNUSED",
"DICTIONARY_REPLACEMENT",
"COMPRESSED_BODY",
nullptr
};
return names;
}
inline const char *EnumNameFeature(Feature e) {
if (flatbuffers::IsOutRange(e, Feature::UNUSED, Feature::COMPRESSED_BODY)) return "";
const size_t index = static_cast<size_t>(e);
return EnumNamesFeature()[index];
}
enum class UnionMode : int16_t {
Sparse = 0,
Dense = 1,
MIN = Sparse,
MAX = Dense
};
inline const UnionMode (&EnumValuesUnionMode())[2] {
static const UnionMode values[] = {
UnionMode::Sparse,
UnionMode::Dense
};
return values;
}
inline const char * const *EnumNamesUnionMode() {
static const char * const names[3] = {
"Sparse",
"Dense",
nullptr
};
return names;
}
inline const char *EnumNameUnionMode(UnionMode e) {
if (flatbuffers::IsOutRange(e, UnionMode::Sparse, UnionMode::Dense)) return "";
const size_t index = static_cast<size_t>(e);
return EnumNamesUnionMode()[index];
}
enum class Precision : int16_t {
HALF = 0,
SINGLE = 1,
DOUBLE = 2,
MIN = HALF,
MAX = DOUBLE
};
inline const Precision (&EnumValuesPrecision())[3] {
static const Precision values[] = {
Precision::HALF,
Precision::SINGLE,
Precision::DOUBLE
};
return values;
}
inline const char * const *EnumNamesPrecision() {
static const char * const names[4] = {
"HALF",
"SINGLE",
"DOUBLE",
nullptr
};
return names;
}
inline const char *EnumNamePrecision(Precision e) {
if (flatbuffers::IsOutRange(e, Precision::HALF, Precision::DOUBLE)) return "";
const size_t index = static_cast<size_t>(e);
return EnumNamesPrecision()[index];
}
enum class DateUnit : int16_t {
DAY = 0,
MILLISECOND = 1,
MIN = DAY,
MAX = MILLISECOND
};
inline const DateUnit (&EnumValuesDateUnit())[2] {
static const DateUnit values[] = {
DateUnit::DAY,
DateUnit::MILLISECOND
};
return values;
}
inline const char * const *EnumNamesDateUnit() {
static const char * const names[3] = {
"DAY",
"MILLISECOND",
nullptr
};
return names;
}
inline const char *EnumNameDateUnit(DateUnit e) {
if (flatbuffers::IsOutRange(e, DateUnit::DAY, DateUnit::MILLISECOND)) return "";
const size_t index = static_cast<size_t>(e);
return EnumNamesDateUnit()[index];
}
enum class TimeUnit : int16_t {
SECOND = 0,
MILLISECOND = 1,
MICROSECOND = 2,
NANOSECOND = 3,
MIN = SECOND,
MAX = NANOSECOND
};
inline const TimeUnit (&EnumValuesTimeUnit())[4] {
static const TimeUnit values[] = {
TimeUnit::SECOND,
TimeUnit::MILLISECOND,
TimeUnit::MICROSECOND,
TimeUnit::NANOSECOND
};
return values;
}
inline const char * const *EnumNamesTimeUnit() {
static const char * const names[5] = {
"SECOND",
"MILLISECOND",
"MICROSECOND",
"NANOSECOND",
nullptr
};
return names;
}
inline const char *EnumNameTimeUnit(TimeUnit e) {
if (flatbuffers::IsOutRange(e, TimeUnit::SECOND, TimeUnit::NANOSECOND)) return "";
const size_t index = static_cast<size_t>(e);
return EnumNamesTimeUnit()[index];
}
enum class IntervalUnit : int16_t {
YEAR_MONTH = 0,
DAY_TIME = 1,
MIN = YEAR_MONTH,
MAX = DAY_TIME
};
inline const IntervalUnit (&EnumValuesIntervalUnit())[2] {
static const IntervalUnit values[] = {
IntervalUnit::YEAR_MONTH,
IntervalUnit::DAY_TIME
};
return values;
}
inline const char * const *EnumNamesIntervalUnit() {
static const char * const names[3] = {
"YEAR_MONTH",
"DAY_TIME",
nullptr
};
return names;
}
inline const char *EnumNameIntervalUnit(IntervalUnit e) {
if (flatbuffers::IsOutRange(e, IntervalUnit::YEAR_MONTH, IntervalUnit::DAY_TIME)) return "";
const size_t index = static_cast<size_t>(e);
return EnumNamesIntervalUnit()[index];
}
/// ----------------------------------------------------------------------
/// Top-level Type value, enabling extensible type-specific metadata. We can
/// add new logical types to Type without breaking backwards compatibility
enum class Type : uint8_t {
NONE = 0,
Null = 1,
Int = 2,
FloatingPoint = 3,
Binary = 4,
Utf8 = 5,
Bool = 6,
Decimal = 7,
Date = 8,
Time = 9,
Timestamp = 10,
Interval = 11,
List = 12,
Struct_ = 13,
Union = 14,
FixedSizeBinary = 15,
FixedSizeList = 16,
Map = 17,
Duration = 18,
LargeBinary = 19,
LargeUtf8 = 20,
LargeList = 21,
MIN = NONE,
MAX = LargeList
};
inline const Type (&EnumValuesType())[22] {
static const Type values[] = {
Type::NONE,
Type::Null,
Type::Int,
Type::FloatingPoint,
Type::Binary,
Type::Utf8,
Type::Bool,
Type::Decimal,
Type::Date,
Type::Time,
Type::Timestamp,
Type::Interval,
Type::List,
Type::Struct_,
Type::Union,
Type::FixedSizeBinary,
Type::FixedSizeList,
Type::Map,
Type::Duration,
Type::LargeBinary,
Type::LargeUtf8,
Type::LargeList
};
return values;
}
inline const char * const *EnumNamesType() {
static const char * const names[23] = {
"NONE",
"Null",
"Int",
"FloatingPoint",
"Binary",
"Utf8",
"Bool",
"Decimal",
"Date",
"Time",
"Timestamp",
"Interval",
"List",
"Struct_",
"Union",
"FixedSizeBinary",
"FixedSizeList",
"Map",
"Duration",
"LargeBinary",
"LargeUtf8",
"LargeList",
nullptr
};
return names;
}
inline const char *EnumNameType(Type e) {
if (flatbuffers::IsOutRange(e, Type::NONE, Type::LargeList)) return "";
const size_t index = static_cast<size_t>(e);
return EnumNamesType()[index];
}
template<typename T> struct TypeTraits {
static const Type enum_value = Type::NONE;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Null> {
static const Type enum_value = Type::Null;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Int> {
static const Type enum_value = Type::Int;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::FloatingPoint> {
static const Type enum_value = Type::FloatingPoint;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Binary> {
static const Type enum_value = Type::Binary;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Utf8> {
static const Type enum_value = Type::Utf8;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Bool> {
static const Type enum_value = Type::Bool;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Decimal> {
static const Type enum_value = Type::Decimal;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Date> {
static const Type enum_value = Type::Date;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Time> {
static const Type enum_value = Type::Time;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Timestamp> {
static const Type enum_value = Type::Timestamp;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Interval> {
static const Type enum_value = Type::Interval;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::List> {
static const Type enum_value = Type::List;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Struct_> {
static const Type enum_value = Type::Struct_;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Union> {
static const Type enum_value = Type::Union;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::FixedSizeBinary> {
static const Type enum_value = Type::FixedSizeBinary;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::FixedSizeList> {
static const Type enum_value = Type::FixedSizeList;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Map> {
static const Type enum_value = Type::Map;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::Duration> {
static const Type enum_value = Type::Duration;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::LargeBinary> {
static const Type enum_value = Type::LargeBinary;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::LargeUtf8> {
static const Type enum_value = Type::LargeUtf8;
};
template<> struct TypeTraits<org::apache::arrow::flatbuf::LargeList> {
static const Type enum_value = Type::LargeList;
};
bool VerifyType(flatbuffers::Verifier &verifier, const void *obj, Type type);
bool VerifyTypeVector(flatbuffers::Verifier &verifier, const flatbuffers::Vector<flatbuffers::Offset<void>> *values, const flatbuffers::Vector<uint8_t> *types);
/// ----------------------------------------------------------------------
/// Dictionary encoding metadata
/// Maintained for forwards compatibility, in the future
/// Dictionaries might be explicit maps between integers and values
/// allowing for non-contiguous index values
enum class DictionaryKind : int16_t {
DenseArray = 0,
MIN = DenseArray,
MAX = DenseArray
};
inline const DictionaryKind (&EnumValuesDictionaryKind())[1] {
static const DictionaryKind values[] = {
DictionaryKind::DenseArray
};
return values;
}
inline const char * const *EnumNamesDictionaryKind() {
static const char * const names[2] = {
"DenseArray",
nullptr
};
return names;
}
inline const char *EnumNameDictionaryKind(DictionaryKind e) {
if (flatbuffers::IsOutRange(e, DictionaryKind::DenseArray, DictionaryKind::DenseArray)) return "";
const size_t index = static_cast<size_t>(e);
return EnumNamesDictionaryKind()[index];
}
/// ----------------------------------------------------------------------
/// Endianness of the platform producing the data
enum class Endianness : int16_t {
Little = 0,
Big = 1,
MIN = Little,
MAX = Big
};
inline const Endianness (&EnumValuesEndianness())[2] {
static const Endianness values[] = {
Endianness::Little,
Endianness::Big
};
return values;
}
inline const char * const *EnumNamesEndianness() {
static const char * const names[3] = {
"Little",
"Big",
nullptr
};
return names;
}
inline const char *EnumNameEndianness(Endianness e) {
if (flatbuffers::IsOutRange(e, Endianness::Little, Endianness::Big)) return "";
const size_t index = static_cast<size_t>(e);
return EnumNamesEndianness()[index];
}
/// ----------------------------------------------------------------------
/// A Buffer represents a single contiguous memory segment
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(8) Buffer FLATBUFFERS_FINAL_CLASS {
private:
int64_t offset_;
int64_t length_;
public:
Buffer() {
memset(static_cast<void *>(this), 0, sizeof(Buffer));
}
Buffer(int64_t _offset, int64_t _length)
: offset_(flatbuffers::EndianScalar(_offset)),
length_(flatbuffers::EndianScalar(_length)) {
}
/// The relative offset into the shared memory page where the bytes for this
/// buffer starts
int64_t offset() const {
return flatbuffers::EndianScalar(offset_);
}
/// The absolute length (in bytes) of the memory buffer. The memory is found
/// from offset (inclusive) to offset + length (non-inclusive). When building
/// messages using the encapsulated IPC message, padding bytes may be written
/// after a buffer, but such padding bytes do not need to be accounted for in
/// the size here.
int64_t length() const {
return flatbuffers::EndianScalar(length_);
}
};
FLATBUFFERS_STRUCT_END(Buffer, 16);
/// These are stored in the flatbuffer in the Type union below
struct Null FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef NullBuilder Builder;
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
verifier.EndTable();
}
};
struct NullBuilder {
typedef Null Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
explicit NullBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
NullBuilder &operator=(const NullBuilder &);
flatbuffers::Offset<Null> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Null>(end);
return o;
}
};
inline flatbuffers::Offset<Null> CreateNull(
flatbuffers::FlatBufferBuilder &_fbb) {
NullBuilder builder_(_fbb);
return builder_.Finish();
}
/// A Struct_ in the flatbuffer metadata is the same as an Arrow Struct
/// (according to the physical memory layout). We used Struct_ here as
/// Struct is a reserved word in Flatbuffers
struct Struct_ FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef Struct_Builder Builder;
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
verifier.EndTable();
}
};
struct Struct_Builder {
typedef Struct_ Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
explicit Struct_Builder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
Struct_Builder &operator=(const Struct_Builder &);
flatbuffers::Offset<Struct_> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Struct_>(end);
return o;
}
};
inline flatbuffers::Offset<Struct_> CreateStruct_(
flatbuffers::FlatBufferBuilder &_fbb) {
Struct_Builder builder_(_fbb);
return builder_.Finish();
}
struct List FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef ListBuilder Builder;
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
verifier.EndTable();
}
};
struct ListBuilder {
typedef List Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
explicit ListBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
ListBuilder &operator=(const ListBuilder &);
flatbuffers::Offset<List> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<List>(end);
return o;
}
};
inline flatbuffers::Offset<List> CreateList(
flatbuffers::FlatBufferBuilder &_fbb) {
ListBuilder builder_(_fbb);
return builder_.Finish();
}
/// Same as List, but with 64-bit offsets, allowing to represent
/// extremely large data values.
struct LargeList FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef LargeListBuilder Builder;
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
verifier.EndTable();
}
};
struct LargeListBuilder {
typedef LargeList Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
explicit LargeListBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
LargeListBuilder &operator=(const LargeListBuilder &);
flatbuffers::Offset<LargeList> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<LargeList>(end);
return o;
}
};
inline flatbuffers::Offset<LargeList> CreateLargeList(
flatbuffers::FlatBufferBuilder &_fbb) {
LargeListBuilder builder_(_fbb);
return builder_.Finish();
}
struct FixedSizeList FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef FixedSizeListBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_LISTSIZE = 4
};
/// Number of list items per value
int32_t listSize() const {
return GetField<int32_t>(VT_LISTSIZE, 0);
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int32_t>(verifier, VT_LISTSIZE) &&
verifier.EndTable();
}
};
struct FixedSizeListBuilder {
typedef FixedSizeList Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_listSize(int32_t listSize) {
fbb_.AddElement<int32_t>(FixedSizeList::VT_LISTSIZE, listSize, 0);
}
explicit FixedSizeListBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
FixedSizeListBuilder &operator=(const FixedSizeListBuilder &);
flatbuffers::Offset<FixedSizeList> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<FixedSizeList>(end);
return o;
}
};
inline flatbuffers::Offset<FixedSizeList> CreateFixedSizeList(
flatbuffers::FlatBufferBuilder &_fbb,
int32_t listSize = 0) {
FixedSizeListBuilder builder_(_fbb);
builder_.add_listSize(listSize);
return builder_.Finish();
}
/// A Map is a logical nested type that is represented as
///
/// List<entries: Struct<key: K, value: V>>
///
/// In this layout, the keys and values are each respectively contiguous. We do
/// not constrain the key and value types, so the application is responsible
/// for ensuring that the keys are hashable and unique. Whether the keys are sorted
/// may be set in the metadata for this field.
///
/// In a field with Map type, the field has a child Struct field, which then
/// has two children: key type and the second the value type. The names of the
/// child fields may be respectively "entries", "key", and "value", but this is
/// not enforced.
///
/// Map
/// - child[0] entries: Struct
/// - child[0] key: K
/// - child[1] value: V
///
/// Neither the "entries" field nor the "key" field may be nullable.
///
/// The metadata is structured so that Arrow systems without special handling
/// for Map can make Map an alias for List. The "layout" attribute for the Map
/// field must have the same contents as a List.
struct Map FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef MapBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_KEYSSORTED = 4
};
/// Set to true if the keys within each value are sorted
bool keysSorted() const {
return GetField<uint8_t>(VT_KEYSSORTED, 0) != 0;
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<uint8_t>(verifier, VT_KEYSSORTED) &&
verifier.EndTable();
}
};
struct MapBuilder {
typedef Map Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_keysSorted(bool keysSorted) {
fbb_.AddElement<uint8_t>(Map::VT_KEYSSORTED, static_cast<uint8_t>(keysSorted), 0);
}
explicit MapBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
MapBuilder &operator=(const MapBuilder &);
flatbuffers::Offset<Map> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Map>(end);
return o;
}
};
inline flatbuffers::Offset<Map> CreateMap(
flatbuffers::FlatBufferBuilder &_fbb,
bool keysSorted = false) {
MapBuilder builder_(_fbb);
builder_.add_keysSorted(keysSorted);
return builder_.Finish();
}
/// A union is a complex type with children in Field
/// By default ids in the type vector refer to the offsets in the children
/// optionally typeIds provides an indirection between the child offset and the type id
/// for each child typeIds[offset] is the id used in the type vector
struct Union FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef UnionBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_MODE = 4,
VT_TYPEIDS = 6
};
org::apache::arrow::flatbuf::UnionMode mode() const {
return static_cast<org::apache::arrow::flatbuf::UnionMode>(GetField<int16_t>(VT_MODE, 0));
}
const flatbuffers::Vector<int32_t> *typeIds() const {
return GetPointer<const flatbuffers::Vector<int32_t> *>(VT_TYPEIDS);
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int16_t>(verifier, VT_MODE) &&
VerifyOffset(verifier, VT_TYPEIDS) &&
verifier.VerifyVector(typeIds()) &&
verifier.EndTable();
}
};
struct UnionBuilder {
typedef Union Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_mode(org::apache::arrow::flatbuf::UnionMode mode) {
fbb_.AddElement<int16_t>(Union::VT_MODE, static_cast<int16_t>(mode), 0);
}
void add_typeIds(flatbuffers::Offset<flatbuffers::Vector<int32_t>> typeIds) {
fbb_.AddOffset(Union::VT_TYPEIDS, typeIds);
}
explicit UnionBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
UnionBuilder &operator=(const UnionBuilder &);
flatbuffers::Offset<Union> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Union>(end);
return o;
}
};
inline flatbuffers::Offset<Union> CreateUnion(
flatbuffers::FlatBufferBuilder &_fbb,
org::apache::arrow::flatbuf::UnionMode mode = org::apache::arrow::flatbuf::UnionMode::Sparse,
flatbuffers::Offset<flatbuffers::Vector<int32_t>> typeIds = 0) {
UnionBuilder builder_(_fbb);
builder_.add_typeIds(typeIds);
builder_.add_mode(mode);
return builder_.Finish();
}
inline flatbuffers::Offset<Union> CreateUnionDirect(
flatbuffers::FlatBufferBuilder &_fbb,
org::apache::arrow::flatbuf::UnionMode mode = org::apache::arrow::flatbuf::UnionMode::Sparse,
const std::vector<int32_t> *typeIds = nullptr) {
auto typeIds__ = typeIds ? _fbb.CreateVector<int32_t>(*typeIds) : 0;
return org::apache::arrow::flatbuf::CreateUnion(
_fbb,
mode,
typeIds__);
}
struct Int FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef IntBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_BITWIDTH = 4,
VT_IS_SIGNED = 6
};
int32_t bitWidth() const {
return GetField<int32_t>(VT_BITWIDTH, 0);
}
bool is_signed() const {
return GetField<uint8_t>(VT_IS_SIGNED, 0) != 0;
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int32_t>(verifier, VT_BITWIDTH) &&
VerifyField<uint8_t>(verifier, VT_IS_SIGNED) &&
verifier.EndTable();
}
};
struct IntBuilder {
typedef Int Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_bitWidth(int32_t bitWidth) {
fbb_.AddElement<int32_t>(Int::VT_BITWIDTH, bitWidth, 0);
}
void add_is_signed(bool is_signed) {
fbb_.AddElement<uint8_t>(Int::VT_IS_SIGNED, static_cast<uint8_t>(is_signed), 0);
}
explicit IntBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
IntBuilder &operator=(const IntBuilder &);
flatbuffers::Offset<Int> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Int>(end);
return o;
}
};
inline flatbuffers::Offset<Int> CreateInt(
flatbuffers::FlatBufferBuilder &_fbb,
int32_t bitWidth = 0,
bool is_signed = false) {
IntBuilder builder_(_fbb);
builder_.add_bitWidth(bitWidth);
builder_.add_is_signed(is_signed);
return builder_.Finish();
}
struct FloatingPoint FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef FloatingPointBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_PRECISION = 4
};
org::apache::arrow::flatbuf::Precision precision() const {
return static_cast<org::apache::arrow::flatbuf::Precision>(GetField<int16_t>(VT_PRECISION, 0));
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int16_t>(verifier, VT_PRECISION) &&
verifier.EndTable();
}
};
struct FloatingPointBuilder {
typedef FloatingPoint Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_precision(org::apache::arrow::flatbuf::Precision precision) {
fbb_.AddElement<int16_t>(FloatingPoint::VT_PRECISION, static_cast<int16_t>(precision), 0);
}
explicit FloatingPointBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
FloatingPointBuilder &operator=(const FloatingPointBuilder &);
flatbuffers::Offset<FloatingPoint> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<FloatingPoint>(end);
return o;
}
};
inline flatbuffers::Offset<FloatingPoint> CreateFloatingPoint(
flatbuffers::FlatBufferBuilder &_fbb,
org::apache::arrow::flatbuf::Precision precision = org::apache::arrow::flatbuf::Precision::HALF) {
FloatingPointBuilder builder_(_fbb);
builder_.add_precision(precision);
return builder_.Finish();
}
/// Unicode with UTF-8 encoding
struct Utf8 FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef Utf8Builder Builder;
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
verifier.EndTable();
}
};
struct Utf8Builder {
typedef Utf8 Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
explicit Utf8Builder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
Utf8Builder &operator=(const Utf8Builder &);
flatbuffers::Offset<Utf8> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Utf8>(end);
return o;
}
};
inline flatbuffers::Offset<Utf8> CreateUtf8(
flatbuffers::FlatBufferBuilder &_fbb) {
Utf8Builder builder_(_fbb);
return builder_.Finish();
}
/// Opaque binary data
struct Binary FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef BinaryBuilder Builder;
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
verifier.EndTable();
}
};
struct BinaryBuilder {
typedef Binary Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
explicit BinaryBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
BinaryBuilder &operator=(const BinaryBuilder &);
flatbuffers::Offset<Binary> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Binary>(end);
return o;
}
};
inline flatbuffers::Offset<Binary> CreateBinary(
flatbuffers::FlatBufferBuilder &_fbb) {
BinaryBuilder builder_(_fbb);
return builder_.Finish();
}
/// Same as Utf8, but with 64-bit offsets, allowing to represent
/// extremely large data values.
struct LargeUtf8 FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef LargeUtf8Builder Builder;
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
verifier.EndTable();
}
};
struct LargeUtf8Builder {
typedef LargeUtf8 Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
explicit LargeUtf8Builder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
LargeUtf8Builder &operator=(const LargeUtf8Builder &);
flatbuffers::Offset<LargeUtf8> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<LargeUtf8>(end);
return o;
}
};
inline flatbuffers::Offset<LargeUtf8> CreateLargeUtf8(
flatbuffers::FlatBufferBuilder &_fbb) {
LargeUtf8Builder builder_(_fbb);
return builder_.Finish();
}
/// Same as Binary, but with 64-bit offsets, allowing to represent
/// extremely large data values.
struct LargeBinary FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef LargeBinaryBuilder Builder;
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
verifier.EndTable();
}
};
struct LargeBinaryBuilder {
typedef LargeBinary Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
explicit LargeBinaryBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
LargeBinaryBuilder &operator=(const LargeBinaryBuilder &);
flatbuffers::Offset<LargeBinary> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<LargeBinary>(end);
return o;
}
};
inline flatbuffers::Offset<LargeBinary> CreateLargeBinary(
flatbuffers::FlatBufferBuilder &_fbb) {
LargeBinaryBuilder builder_(_fbb);
return builder_.Finish();
}
struct FixedSizeBinary FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef FixedSizeBinaryBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_BYTEWIDTH = 4
};
/// Number of bytes per value
int32_t byteWidth() const {
return GetField<int32_t>(VT_BYTEWIDTH, 0);
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int32_t>(verifier, VT_BYTEWIDTH) &&
verifier.EndTable();
}
};
struct FixedSizeBinaryBuilder {
typedef FixedSizeBinary Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_byteWidth(int32_t byteWidth) {
fbb_.AddElement<int32_t>(FixedSizeBinary::VT_BYTEWIDTH, byteWidth, 0);
}
explicit FixedSizeBinaryBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
FixedSizeBinaryBuilder &operator=(const FixedSizeBinaryBuilder &);
flatbuffers::Offset<FixedSizeBinary> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<FixedSizeBinary>(end);
return o;
}
};
inline flatbuffers::Offset<FixedSizeBinary> CreateFixedSizeBinary(
flatbuffers::FlatBufferBuilder &_fbb,
int32_t byteWidth = 0) {
FixedSizeBinaryBuilder builder_(_fbb);
builder_.add_byteWidth(byteWidth);
return builder_.Finish();
}
struct Bool FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef BoolBuilder Builder;
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
verifier.EndTable();
}
};
struct BoolBuilder {
typedef Bool Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
explicit BoolBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
BoolBuilder &operator=(const BoolBuilder &);
flatbuffers::Offset<Bool> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Bool>(end);
return o;
}
};
inline flatbuffers::Offset<Bool> CreateBool(
flatbuffers::FlatBufferBuilder &_fbb) {
BoolBuilder builder_(_fbb);
return builder_.Finish();
}
/// Exact decimal value represented as an integer value in two's
/// complement. Currently only 128-bit (16-byte) integers are used but this may
/// be expanded in the future. The representation uses the endianness indicated
/// in the Schema.
struct Decimal FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef DecimalBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_PRECISION = 4,
VT_SCALE = 6,
VT_BITWIDTH = 8
};
/// Total number of decimal digits
int32_t precision() const {
return GetField<int32_t>(VT_PRECISION, 0);
}
/// Number of digits after the decimal point "."
int32_t scale() const {
return GetField<int32_t>(VT_SCALE, 0);
}
/// Number of bits per value. The only accepted width right now is 128 but
/// this field exists for forward compatibility so that other bit widths may
/// be supported in future format versions. We use bitWidth for consistency
/// with Int::bitWidth.
int32_t bitWidth() const {
return GetField<int32_t>(VT_BITWIDTH, 128);
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int32_t>(verifier, VT_PRECISION) &&
VerifyField<int32_t>(verifier, VT_SCALE) &&
VerifyField<int32_t>(verifier, VT_BITWIDTH) &&
verifier.EndTable();
}
};
struct DecimalBuilder {
typedef Decimal Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_precision(int32_t precision) {
fbb_.AddElement<int32_t>(Decimal::VT_PRECISION, precision, 0);
}
void add_scale(int32_t scale) {
fbb_.AddElement<int32_t>(Decimal::VT_SCALE, scale, 0);
}
void add_bitWidth(int32_t bitWidth) {
fbb_.AddElement<int32_t>(Decimal::VT_BITWIDTH, bitWidth, 128);
}
explicit DecimalBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
DecimalBuilder &operator=(const DecimalBuilder &);
flatbuffers::Offset<Decimal> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Decimal>(end);
return o;
}
};
inline flatbuffers::Offset<Decimal> CreateDecimal(
flatbuffers::FlatBufferBuilder &_fbb,
int32_t precision = 0,
int32_t scale = 0,
int32_t bitWidth = 128) {
DecimalBuilder builder_(_fbb);
builder_.add_bitWidth(bitWidth);
builder_.add_scale(scale);
builder_.add_precision(precision);
return builder_.Finish();
}
/// Date is either a 32-bit or 64-bit type representing elapsed time since UNIX
/// epoch (1970-01-01), stored in either of two units:
///
/// * Milliseconds (64 bits) indicating UNIX time elapsed since the epoch (no
/// leap seconds), where the values are evenly divisible by 86400000
/// * Days (32 bits) since the UNIX epoch
struct Date FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef DateBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_UNIT = 4
};
org::apache::arrow::flatbuf::DateUnit unit() const {
return static_cast<org::apache::arrow::flatbuf::DateUnit>(GetField<int16_t>(VT_UNIT, 1));
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int16_t>(verifier, VT_UNIT) &&
verifier.EndTable();
}
};
struct DateBuilder {
typedef Date Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_unit(org::apache::arrow::flatbuf::DateUnit unit) {
fbb_.AddElement<int16_t>(Date::VT_UNIT, static_cast<int16_t>(unit), 1);
}
explicit DateBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
DateBuilder &operator=(const DateBuilder &);
flatbuffers::Offset<Date> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Date>(end);
return o;
}
};
inline flatbuffers::Offset<Date> CreateDate(
flatbuffers::FlatBufferBuilder &_fbb,
org::apache::arrow::flatbuf::DateUnit unit = org::apache::arrow::flatbuf::DateUnit::MILLISECOND) {
DateBuilder builder_(_fbb);
builder_.add_unit(unit);
return builder_.Finish();
}
/// Time type. The physical storage type depends on the unit
/// - SECOND and MILLISECOND: 32 bits
/// - MICROSECOND and NANOSECOND: 64 bits
struct Time FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef TimeBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_UNIT = 4,
VT_BITWIDTH = 6
};
org::apache::arrow::flatbuf::TimeUnit unit() const {
return static_cast<org::apache::arrow::flatbuf::TimeUnit>(GetField<int16_t>(VT_UNIT, 1));
}
int32_t bitWidth() const {
return GetField<int32_t>(VT_BITWIDTH, 32);
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int16_t>(verifier, VT_UNIT) &&
VerifyField<int32_t>(verifier, VT_BITWIDTH) &&
verifier.EndTable();
}
};
struct TimeBuilder {
typedef Time Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_unit(org::apache::arrow::flatbuf::TimeUnit unit) {
fbb_.AddElement<int16_t>(Time::VT_UNIT, static_cast<int16_t>(unit), 1);
}
void add_bitWidth(int32_t bitWidth) {
fbb_.AddElement<int32_t>(Time::VT_BITWIDTH, bitWidth, 32);
}
explicit TimeBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
TimeBuilder &operator=(const TimeBuilder &);
flatbuffers::Offset<Time> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Time>(end);
return o;
}
};
inline flatbuffers::Offset<Time> CreateTime(
flatbuffers::FlatBufferBuilder &_fbb,
org::apache::arrow::flatbuf::TimeUnit unit = org::apache::arrow::flatbuf::TimeUnit::MILLISECOND,
int32_t bitWidth = 32) {
TimeBuilder builder_(_fbb);
builder_.add_bitWidth(bitWidth);
builder_.add_unit(unit);
return builder_.Finish();
}
/// Time elapsed from the Unix epoch, 00:00:00.000 on 1 January 1970, excluding
/// leap seconds, as a 64-bit integer. Note that UNIX time does not include
/// leap seconds.
///
/// The Timestamp metadata supports both "time zone naive" and "time zone
/// aware" timestamps. Read about the timezone attribute for more detail
struct Timestamp FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef TimestampBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_UNIT = 4,
VT_TIMEZONE = 6
};
org::apache::arrow::flatbuf::TimeUnit unit() const {
return static_cast<org::apache::arrow::flatbuf::TimeUnit>(GetField<int16_t>(VT_UNIT, 0));
}
/// The time zone is a string indicating the name of a time zone, one of:
///
/// * As used in the Olson time zone database (the "tz database" or
/// "tzdata"), such as "America/New_York"
/// * An absolute time zone offset of the form +XX:XX or -XX:XX, such as +07:30
///
/// Whether a timezone string is present indicates different semantics about
/// the data:
///
/// * If the time zone is null or equal to an empty string, the data is "time
/// zone naive" and shall be displayed *as is* to the user, not localized
/// to the locale of the user. This data can be though of as UTC but
/// without having "UTC" as the time zone, it is not considered to be
/// localized to any time zone
///
/// * If the time zone is set to a valid value, values can be displayed as
/// "localized" to that time zone, even though the underlying 64-bit
/// integers are identical to the same data stored in UTC. Converting
/// between time zones is a metadata-only operation and does not change the
/// underlying values
const flatbuffers::String *timezone() const {
return GetPointer<const flatbuffers::String *>(VT_TIMEZONE);
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int16_t>(verifier, VT_UNIT) &&
VerifyOffset(verifier, VT_TIMEZONE) &&
verifier.VerifyString(timezone()) &&
verifier.EndTable();
}
};
struct TimestampBuilder {
typedef Timestamp Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_unit(org::apache::arrow::flatbuf::TimeUnit unit) {
fbb_.AddElement<int16_t>(Timestamp::VT_UNIT, static_cast<int16_t>(unit), 0);
}
void add_timezone(flatbuffers::Offset<flatbuffers::String> timezone) {
fbb_.AddOffset(Timestamp::VT_TIMEZONE, timezone);
}
explicit TimestampBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
TimestampBuilder &operator=(const TimestampBuilder &);
flatbuffers::Offset<Timestamp> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Timestamp>(end);
return o;
}
};
inline flatbuffers::Offset<Timestamp> CreateTimestamp(
flatbuffers::FlatBufferBuilder &_fbb,
org::apache::arrow::flatbuf::TimeUnit unit = org::apache::arrow::flatbuf::TimeUnit::SECOND,
flatbuffers::Offset<flatbuffers::String> timezone = 0) {
TimestampBuilder builder_(_fbb);
builder_.add_timezone(timezone);
builder_.add_unit(unit);
return builder_.Finish();
}
inline flatbuffers::Offset<Timestamp> CreateTimestampDirect(
flatbuffers::FlatBufferBuilder &_fbb,
org::apache::arrow::flatbuf::TimeUnit unit = org::apache::arrow::flatbuf::TimeUnit::SECOND,
const char *timezone = nullptr) {
auto timezone__ = timezone ? _fbb.CreateString(timezone) : 0;
return org::apache::arrow::flatbuf::CreateTimestamp(
_fbb,
unit,
timezone__);
}
struct Interval FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef IntervalBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_UNIT = 4
};
org::apache::arrow::flatbuf::IntervalUnit unit() const {
return static_cast<org::apache::arrow::flatbuf::IntervalUnit>(GetField<int16_t>(VT_UNIT, 0));
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int16_t>(verifier, VT_UNIT) &&
verifier.EndTable();
}
};
struct IntervalBuilder {
typedef Interval Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_unit(org::apache::arrow::flatbuf::IntervalUnit unit) {
fbb_.AddElement<int16_t>(Interval::VT_UNIT, static_cast<int16_t>(unit), 0);
}
explicit IntervalBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
IntervalBuilder &operator=(const IntervalBuilder &);
flatbuffers::Offset<Interval> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Interval>(end);
return o;
}
};
inline flatbuffers::Offset<Interval> CreateInterval(
flatbuffers::FlatBufferBuilder &_fbb,
org::apache::arrow::flatbuf::IntervalUnit unit = org::apache::arrow::flatbuf::IntervalUnit::YEAR_MONTH) {
IntervalBuilder builder_(_fbb);
builder_.add_unit(unit);
return builder_.Finish();
}
struct Duration FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef DurationBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_UNIT = 4
};
org::apache::arrow::flatbuf::TimeUnit unit() const {
return static_cast<org::apache::arrow::flatbuf::TimeUnit>(GetField<int16_t>(VT_UNIT, 1));
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int16_t>(verifier, VT_UNIT) &&
verifier.EndTable();
}
};
struct DurationBuilder {
typedef Duration Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_unit(org::apache::arrow::flatbuf::TimeUnit unit) {
fbb_.AddElement<int16_t>(Duration::VT_UNIT, static_cast<int16_t>(unit), 1);
}
explicit DurationBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
DurationBuilder &operator=(const DurationBuilder &);
flatbuffers::Offset<Duration> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Duration>(end);
return o;
}
};
inline flatbuffers::Offset<Duration> CreateDuration(
flatbuffers::FlatBufferBuilder &_fbb,
org::apache::arrow::flatbuf::TimeUnit unit = org::apache::arrow::flatbuf::TimeUnit::MILLISECOND) {
DurationBuilder builder_(_fbb);
builder_.add_unit(unit);
return builder_.Finish();
}
/// ----------------------------------------------------------------------
/// user defined key value pairs to add custom metadata to arrow
/// key namespacing is the responsibility of the user
struct KeyValue FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef KeyValueBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_KEY = 4,
VT_VALUE = 6
};
const flatbuffers::String *key() const {
return GetPointer<const flatbuffers::String *>(VT_KEY);
}
const flatbuffers::String *value() const {
return GetPointer<const flatbuffers::String *>(VT_VALUE);
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyOffset(verifier, VT_KEY) &&
verifier.VerifyString(key()) &&
VerifyOffset(verifier, VT_VALUE) &&
verifier.VerifyString(value()) &&
verifier.EndTable();
}
};
struct KeyValueBuilder {
typedef KeyValue Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_key(flatbuffers::Offset<flatbuffers::String> key) {
fbb_.AddOffset(KeyValue::VT_KEY, key);
}
void add_value(flatbuffers::Offset<flatbuffers::String> value) {
fbb_.AddOffset(KeyValue::VT_VALUE, value);
}
explicit KeyValueBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
KeyValueBuilder &operator=(const KeyValueBuilder &);
flatbuffers::Offset<KeyValue> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<KeyValue>(end);
return o;
}
};
inline flatbuffers::Offset<KeyValue> CreateKeyValue(
flatbuffers::FlatBufferBuilder &_fbb,
flatbuffers::Offset<flatbuffers::String> key = 0,
flatbuffers::Offset<flatbuffers::String> value = 0) {
KeyValueBuilder builder_(_fbb);
builder_.add_value(value);
builder_.add_key(key);
return builder_.Finish();
}
inline flatbuffers::Offset<KeyValue> CreateKeyValueDirect(
flatbuffers::FlatBufferBuilder &_fbb,
const char *key = nullptr,
const char *value = nullptr) {
auto key__ = key ? _fbb.CreateString(key) : 0;
auto value__ = value ? _fbb.CreateString(value) : 0;
return org::apache::arrow::flatbuf::CreateKeyValue(
_fbb,
key__,
value__);
}
struct DictionaryEncoding FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef DictionaryEncodingBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_ID = 4,
VT_INDEXTYPE = 6,
VT_ISORDERED = 8,
VT_DICTIONARYKIND = 10
};
/// The known dictionary id in the application where this data is used. In
/// the file or streaming formats, the dictionary ids are found in the
/// DictionaryBatch messages
int64_t id() const {
return GetField<int64_t>(VT_ID, 0);
}
/// The dictionary indices are constrained to be non-negative integers. If
/// this field is null, the indices must be signed int32. To maximize
/// cross-language compatibility and performance, implementations are
/// recommended to prefer signed integer types over unsigned integer types
/// and to avoid uint64 indices unless they are required by an application.
const org::apache::arrow::flatbuf::Int *indexType() const {
return GetPointer<const org::apache::arrow::flatbuf::Int *>(VT_INDEXTYPE);
}
/// By default, dictionaries are not ordered, or the order does not have
/// semantic meaning. In some statistical, applications, dictionary-encoding
/// is used to represent ordered categorical data, and we provide a way to
/// preserve that metadata here
bool isOrdered() const {
return GetField<uint8_t>(VT_ISORDERED, 0) != 0;
}
org::apache::arrow::flatbuf::DictionaryKind dictionaryKind() const {
return static_cast<org::apache::arrow::flatbuf::DictionaryKind>(GetField<int16_t>(VT_DICTIONARYKIND, 0));
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int64_t>(verifier, VT_ID) &&
VerifyOffset(verifier, VT_INDEXTYPE) &&
verifier.VerifyTable(indexType()) &&
VerifyField<uint8_t>(verifier, VT_ISORDERED) &&
VerifyField<int16_t>(verifier, VT_DICTIONARYKIND) &&
verifier.EndTable();
}
};
struct DictionaryEncodingBuilder {
typedef DictionaryEncoding Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_id(int64_t id) {
fbb_.AddElement<int64_t>(DictionaryEncoding::VT_ID, id, 0);
}
void add_indexType(flatbuffers::Offset<org::apache::arrow::flatbuf::Int> indexType) {
fbb_.AddOffset(DictionaryEncoding::VT_INDEXTYPE, indexType);
}
void add_isOrdered(bool isOrdered) {
fbb_.AddElement<uint8_t>(DictionaryEncoding::VT_ISORDERED, static_cast<uint8_t>(isOrdered), 0);
}
void add_dictionaryKind(org::apache::arrow::flatbuf::DictionaryKind dictionaryKind) {
fbb_.AddElement<int16_t>(DictionaryEncoding::VT_DICTIONARYKIND, static_cast<int16_t>(dictionaryKind), 0);
}
explicit DictionaryEncodingBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
DictionaryEncodingBuilder &operator=(const DictionaryEncodingBuilder &);
flatbuffers::Offset<DictionaryEncoding> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<DictionaryEncoding>(end);
return o;
}
};
inline flatbuffers::Offset<DictionaryEncoding> CreateDictionaryEncoding(
flatbuffers::FlatBufferBuilder &_fbb,
int64_t id = 0,
flatbuffers::Offset<org::apache::arrow::flatbuf::Int> indexType = 0,
bool isOrdered = false,
org::apache::arrow::flatbuf::DictionaryKind dictionaryKind = org::apache::arrow::flatbuf::DictionaryKind::DenseArray) {
DictionaryEncodingBuilder builder_(_fbb);
builder_.add_id(id);
builder_.add_indexType(indexType);
builder_.add_dictionaryKind(dictionaryKind);
builder_.add_isOrdered(isOrdered);
return builder_.Finish();
}
/// ----------------------------------------------------------------------
/// A field represents a named column in a record / row batch or child of a
/// nested type.
struct Field FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef FieldBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_NAME = 4,
VT_NULLABLE = 6,
VT_TYPE_TYPE = 8,
VT_TYPE = 10,
VT_DICTIONARY = 12,
VT_CHILDREN = 14,
VT_CUSTOM_METADATA = 16
};
/// Name is not required, in i.e. a List
const flatbuffers::String *name() const {
return GetPointer<const flatbuffers::String *>(VT_NAME);
}
/// Whether or not this field can contain nulls. Should be true in general.
bool nullable() const {
return GetField<uint8_t>(VT_NULLABLE, 0) != 0;
}
org::apache::arrow::flatbuf::Type type_type() const {
return static_cast<org::apache::arrow::flatbuf::Type>(GetField<uint8_t>(VT_TYPE_TYPE, 0));
}
/// This is the type of the decoded value if the field is dictionary encoded.
const void *type() const {
return GetPointer<const void *>(VT_TYPE);
}
template<typename T> const T *type_as() const;
const org::apache::arrow::flatbuf::Null *type_as_Null() const {
return type_type() == org::apache::arrow::flatbuf::Type::Null ? static_cast<const org::apache::arrow::flatbuf::Null *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Int *type_as_Int() const {
return type_type() == org::apache::arrow::flatbuf::Type::Int ? static_cast<const org::apache::arrow::flatbuf::Int *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::FloatingPoint *type_as_FloatingPoint() const {
return type_type() == org::apache::arrow::flatbuf::Type::FloatingPoint ? static_cast<const org::apache::arrow::flatbuf::FloatingPoint *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Binary *type_as_Binary() const {
return type_type() == org::apache::arrow::flatbuf::Type::Binary ? static_cast<const org::apache::arrow::flatbuf::Binary *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Utf8 *type_as_Utf8() const {
return type_type() == org::apache::arrow::flatbuf::Type::Utf8 ? static_cast<const org::apache::arrow::flatbuf::Utf8 *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Bool *type_as_Bool() const {
return type_type() == org::apache::arrow::flatbuf::Type::Bool ? static_cast<const org::apache::arrow::flatbuf::Bool *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Decimal *type_as_Decimal() const {
return type_type() == org::apache::arrow::flatbuf::Type::Decimal ? static_cast<const org::apache::arrow::flatbuf::Decimal *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Date *type_as_Date() const {
return type_type() == org::apache::arrow::flatbuf::Type::Date ? static_cast<const org::apache::arrow::flatbuf::Date *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Time *type_as_Time() const {
return type_type() == org::apache::arrow::flatbuf::Type::Time ? static_cast<const org::apache::arrow::flatbuf::Time *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Timestamp *type_as_Timestamp() const {
return type_type() == org::apache::arrow::flatbuf::Type::Timestamp ? static_cast<const org::apache::arrow::flatbuf::Timestamp *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Interval *type_as_Interval() const {
return type_type() == org::apache::arrow::flatbuf::Type::Interval ? static_cast<const org::apache::arrow::flatbuf::Interval *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::List *type_as_List() const {
return type_type() == org::apache::arrow::flatbuf::Type::List ? static_cast<const org::apache::arrow::flatbuf::List *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Struct_ *type_as_Struct_() const {
return type_type() == org::apache::arrow::flatbuf::Type::Struct_ ? static_cast<const org::apache::arrow::flatbuf::Struct_ *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Union *type_as_Union() const {
return type_type() == org::apache::arrow::flatbuf::Type::Union ? static_cast<const org::apache::arrow::flatbuf::Union *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::FixedSizeBinary *type_as_FixedSizeBinary() const {
return type_type() == org::apache::arrow::flatbuf::Type::FixedSizeBinary ? static_cast<const org::apache::arrow::flatbuf::FixedSizeBinary *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::FixedSizeList *type_as_FixedSizeList() const {
return type_type() == org::apache::arrow::flatbuf::Type::FixedSizeList ? static_cast<const org::apache::arrow::flatbuf::FixedSizeList *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Map *type_as_Map() const {
return type_type() == org::apache::arrow::flatbuf::Type::Map ? static_cast<const org::apache::arrow::flatbuf::Map *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::Duration *type_as_Duration() const {
return type_type() == org::apache::arrow::flatbuf::Type::Duration ? static_cast<const org::apache::arrow::flatbuf::Duration *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::LargeBinary *type_as_LargeBinary() const {
return type_type() == org::apache::arrow::flatbuf::Type::LargeBinary ? static_cast<const org::apache::arrow::flatbuf::LargeBinary *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::LargeUtf8 *type_as_LargeUtf8() const {
return type_type() == org::apache::arrow::flatbuf::Type::LargeUtf8 ? static_cast<const org::apache::arrow::flatbuf::LargeUtf8 *>(type()) : nullptr;
}
const org::apache::arrow::flatbuf::LargeList *type_as_LargeList() const {
return type_type() == org::apache::arrow::flatbuf::Type::LargeList ? static_cast<const org::apache::arrow::flatbuf::LargeList *>(type()) : nullptr;
}
/// Present only if the field is dictionary encoded.
const org::apache::arrow::flatbuf::DictionaryEncoding *dictionary() const {
return GetPointer<const org::apache::arrow::flatbuf::DictionaryEncoding *>(VT_DICTIONARY);
}
/// children apply only to nested data types like Struct, List and Union. For
/// primitive types children will have length 0.
const flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>> *children() const {
return GetPointer<const flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>> *>(VT_CHILDREN);
}
/// User-defined metadata
const flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>> *custom_metadata() const {
return GetPointer<const flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>> *>(VT_CUSTOM_METADATA);
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyOffset(verifier, VT_NAME) &&
verifier.VerifyString(name()) &&
VerifyField<uint8_t>(verifier, VT_NULLABLE) &&
VerifyField<uint8_t>(verifier, VT_TYPE_TYPE) &&
VerifyOffset(verifier, VT_TYPE) &&
VerifyType(verifier, type(), type_type()) &&
VerifyOffset(verifier, VT_DICTIONARY) &&
verifier.VerifyTable(dictionary()) &&
VerifyOffset(verifier, VT_CHILDREN) &&
verifier.VerifyVector(children()) &&
verifier.VerifyVectorOfTables(children()) &&
VerifyOffset(verifier, VT_CUSTOM_METADATA) &&
verifier.VerifyVector(custom_metadata()) &&
verifier.VerifyVectorOfTables(custom_metadata()) &&
verifier.EndTable();
}
};
template<> inline const org::apache::arrow::flatbuf::Null *Field::type_as<org::apache::arrow::flatbuf::Null>() const {
return type_as_Null();
}
template<> inline const org::apache::arrow::flatbuf::Int *Field::type_as<org::apache::arrow::flatbuf::Int>() const {
return type_as_Int();
}
template<> inline const org::apache::arrow::flatbuf::FloatingPoint *Field::type_as<org::apache::arrow::flatbuf::FloatingPoint>() const {
return type_as_FloatingPoint();
}
template<> inline const org::apache::arrow::flatbuf::Binary *Field::type_as<org::apache::arrow::flatbuf::Binary>() const {
return type_as_Binary();
}
template<> inline const org::apache::arrow::flatbuf::Utf8 *Field::type_as<org::apache::arrow::flatbuf::Utf8>() const {
return type_as_Utf8();
}
template<> inline const org::apache::arrow::flatbuf::Bool *Field::type_as<org::apache::arrow::flatbuf::Bool>() const {
return type_as_Bool();
}
template<> inline const org::apache::arrow::flatbuf::Decimal *Field::type_as<org::apache::arrow::flatbuf::Decimal>() const {
return type_as_Decimal();
}
template<> inline const org::apache::arrow::flatbuf::Date *Field::type_as<org::apache::arrow::flatbuf::Date>() const {
return type_as_Date();
}
template<> inline const org::apache::arrow::flatbuf::Time *Field::type_as<org::apache::arrow::flatbuf::Time>() const {
return type_as_Time();
}
template<> inline const org::apache::arrow::flatbuf::Timestamp *Field::type_as<org::apache::arrow::flatbuf::Timestamp>() const {
return type_as_Timestamp();
}
template<> inline const org::apache::arrow::flatbuf::Interval *Field::type_as<org::apache::arrow::flatbuf::Interval>() const {
return type_as_Interval();
}
template<> inline const org::apache::arrow::flatbuf::List *Field::type_as<org::apache::arrow::flatbuf::List>() const {
return type_as_List();
}
template<> inline const org::apache::arrow::flatbuf::Struct_ *Field::type_as<org::apache::arrow::flatbuf::Struct_>() const {
return type_as_Struct_();
}
template<> inline const org::apache::arrow::flatbuf::Union *Field::type_as<org::apache::arrow::flatbuf::Union>() const {
return type_as_Union();
}
template<> inline const org::apache::arrow::flatbuf::FixedSizeBinary *Field::type_as<org::apache::arrow::flatbuf::FixedSizeBinary>() const {
return type_as_FixedSizeBinary();
}
template<> inline const org::apache::arrow::flatbuf::FixedSizeList *Field::type_as<org::apache::arrow::flatbuf::FixedSizeList>() const {
return type_as_FixedSizeList();
}
template<> inline const org::apache::arrow::flatbuf::Map *Field::type_as<org::apache::arrow::flatbuf::Map>() const {
return type_as_Map();
}
template<> inline const org::apache::arrow::flatbuf::Duration *Field::type_as<org::apache::arrow::flatbuf::Duration>() const {
return type_as_Duration();
}
template<> inline const org::apache::arrow::flatbuf::LargeBinary *Field::type_as<org::apache::arrow::flatbuf::LargeBinary>() const {
return type_as_LargeBinary();
}
template<> inline const org::apache::arrow::flatbuf::LargeUtf8 *Field::type_as<org::apache::arrow::flatbuf::LargeUtf8>() const {
return type_as_LargeUtf8();
}
template<> inline const org::apache::arrow::flatbuf::LargeList *Field::type_as<org::apache::arrow::flatbuf::LargeList>() const {
return type_as_LargeList();
}
struct FieldBuilder {
typedef Field Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_name(flatbuffers::Offset<flatbuffers::String> name) {
fbb_.AddOffset(Field::VT_NAME, name);
}
void add_nullable(bool nullable) {
fbb_.AddElement<uint8_t>(Field::VT_NULLABLE, static_cast<uint8_t>(nullable), 0);
}
void add_type_type(org::apache::arrow::flatbuf::Type type_type) {
fbb_.AddElement<uint8_t>(Field::VT_TYPE_TYPE, static_cast<uint8_t>(type_type), 0);
}
void add_type(flatbuffers::Offset<void> type) {
fbb_.AddOffset(Field::VT_TYPE, type);
}
void add_dictionary(flatbuffers::Offset<org::apache::arrow::flatbuf::DictionaryEncoding> dictionary) {
fbb_.AddOffset(Field::VT_DICTIONARY, dictionary);
}
void add_children(flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>>> children) {
fbb_.AddOffset(Field::VT_CHILDREN, children);
}
void add_custom_metadata(flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>>> custom_metadata) {
fbb_.AddOffset(Field::VT_CUSTOM_METADATA, custom_metadata);
}
explicit FieldBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
FieldBuilder &operator=(const FieldBuilder &);
flatbuffers::Offset<Field> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Field>(end);
return o;
}
};
inline flatbuffers::Offset<Field> CreateField(
flatbuffers::FlatBufferBuilder &_fbb,
flatbuffers::Offset<flatbuffers::String> name = 0,
bool nullable = false,
org::apache::arrow::flatbuf::Type type_type = org::apache::arrow::flatbuf::Type::NONE,
flatbuffers::Offset<void> type = 0,
flatbuffers::Offset<org::apache::arrow::flatbuf::DictionaryEncoding> dictionary = 0,
flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>>> children = 0,
flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>>> custom_metadata = 0) {
FieldBuilder builder_(_fbb);
builder_.add_custom_metadata(custom_metadata);
builder_.add_children(children);
builder_.add_dictionary(dictionary);
builder_.add_type(type);
builder_.add_name(name);
builder_.add_type_type(type_type);
builder_.add_nullable(nullable);
return builder_.Finish();
}
inline flatbuffers::Offset<Field> CreateFieldDirect(
flatbuffers::FlatBufferBuilder &_fbb,
const char *name = nullptr,
bool nullable = false,
org::apache::arrow::flatbuf::Type type_type = org::apache::arrow::flatbuf::Type::NONE,
flatbuffers::Offset<void> type = 0,
flatbuffers::Offset<org::apache::arrow::flatbuf::DictionaryEncoding> dictionary = 0,
const std::vector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>> *children = nullptr,
const std::vector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>> *custom_metadata = nullptr) {
auto name__ = name ? _fbb.CreateString(name) : 0;
auto children__ = children ? _fbb.CreateVector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>>(*children) : 0;
auto custom_metadata__ = custom_metadata ? _fbb.CreateVector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>>(*custom_metadata) : 0;
return org::apache::arrow::flatbuf::CreateField(
_fbb,
name__,
nullable,
type_type,
type,
dictionary,
children__,
custom_metadata__);
}
/// ----------------------------------------------------------------------
/// A Schema describes the columns in a row batch
struct Schema FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
typedef SchemaBuilder Builder;
enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
VT_ENDIANNESS = 4,
VT_FIELDS = 6,
VT_CUSTOM_METADATA = 8,
VT_FEATURES = 10
};
/// endianness of the buffer
/// it is Little Endian by default
/// if endianness doesn't match the underlying system then the vectors need to be converted
org::apache::arrow::flatbuf::Endianness endianness() const {
return static_cast<org::apache::arrow::flatbuf::Endianness>(GetField<int16_t>(VT_ENDIANNESS, 0));
}
const flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>> *fields() const {
return GetPointer<const flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>> *>(VT_FIELDS);
}
const flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>> *custom_metadata() const {
return GetPointer<const flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>> *>(VT_CUSTOM_METADATA);
}
/// Features used in the stream/file.
const flatbuffers::Vector<int64_t> *features() const {
return GetPointer<const flatbuffers::Vector<int64_t> *>(VT_FEATURES);
}
bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyField<int16_t>(verifier, VT_ENDIANNESS) &&
VerifyOffset(verifier, VT_FIELDS) &&
verifier.VerifyVector(fields()) &&
verifier.VerifyVectorOfTables(fields()) &&
VerifyOffset(verifier, VT_CUSTOM_METADATA) &&
verifier.VerifyVector(custom_metadata()) &&
verifier.VerifyVectorOfTables(custom_metadata()) &&
VerifyOffset(verifier, VT_FEATURES) &&
verifier.VerifyVector(features()) &&
verifier.EndTable();
}
};
struct SchemaBuilder {
typedef Schema Table;
flatbuffers::FlatBufferBuilder &fbb_;
flatbuffers::uoffset_t start_;
void add_endianness(org::apache::arrow::flatbuf::Endianness endianness) {
fbb_.AddElement<int16_t>(Schema::VT_ENDIANNESS, static_cast<int16_t>(endianness), 0);
}
void add_fields(flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>>> fields) {
fbb_.AddOffset(Schema::VT_FIELDS, fields);
}
void add_custom_metadata(flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>>> custom_metadata) {
fbb_.AddOffset(Schema::VT_CUSTOM_METADATA, custom_metadata);
}
void add_features(flatbuffers::Offset<flatbuffers::Vector<int64_t>> features) {
fbb_.AddOffset(Schema::VT_FEATURES, features);
}
explicit SchemaBuilder(flatbuffers::FlatBufferBuilder &_fbb)
: fbb_(_fbb) {
start_ = fbb_.StartTable();
}
SchemaBuilder &operator=(const SchemaBuilder &);
flatbuffers::Offset<Schema> Finish() {
const auto end = fbb_.EndTable(start_);
auto o = flatbuffers::Offset<Schema>(end);
return o;
}
};
inline flatbuffers::Offset<Schema> CreateSchema(
flatbuffers::FlatBufferBuilder &_fbb,
org::apache::arrow::flatbuf::Endianness endianness = org::apache::arrow::flatbuf::Endianness::Little,
flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>>> fields = 0,
flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>>> custom_metadata = 0,
flatbuffers::Offset<flatbuffers::Vector<int64_t>> features = 0) {
SchemaBuilder builder_(_fbb);
builder_.add_features(features);
builder_.add_custom_metadata(custom_metadata);
builder_.add_fields(fields);
builder_.add_endianness(endianness);
return builder_.Finish();
}
inline flatbuffers::Offset<Schema> CreateSchemaDirect(
flatbuffers::FlatBufferBuilder &_fbb,
org::apache::arrow::flatbuf::Endianness endianness = org::apache::arrow::flatbuf::Endianness::Little,
const std::vector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>> *fields = nullptr,
const std::vector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>> *custom_metadata = nullptr,
const std::vector<int64_t> *features = nullptr) {
auto fields__ = fields ? _fbb.CreateVector<flatbuffers::Offset<org::apache::arrow::flatbuf::Field>>(*fields) : 0;
auto custom_metadata__ = custom_metadata ? _fbb.CreateVector<flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>>(*custom_metadata) : 0;
auto features__ = features ? _fbb.CreateVector<int64_t>(*features) : 0;
return org::apache::arrow::flatbuf::CreateSchema(
_fbb,
endianness,
fields__,
custom_metadata__,
features__);
}
inline bool VerifyType(flatbuffers::Verifier &verifier, const void *obj, Type type) {
switch (type) {
case Type::NONE: {
return true;
}
case Type::Null: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Null *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Int: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Int *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::FloatingPoint: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::FloatingPoint *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Binary: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Binary *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Utf8: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Utf8 *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Bool: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Bool *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Decimal: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Decimal *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Date: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Date *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Time: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Time *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Timestamp: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Timestamp *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Interval: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Interval *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::List: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::List *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Struct_: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Struct_ *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Union: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Union *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::FixedSizeBinary: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::FixedSizeBinary *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::FixedSizeList: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::FixedSizeList *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Map: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Map *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::Duration: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::Duration *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::LargeBinary: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::LargeBinary *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::LargeUtf8: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::LargeUtf8 *>(obj);
return verifier.VerifyTable(ptr);
}
case Type::LargeList: {
auto ptr = reinterpret_cast<const org::apache::arrow::flatbuf::LargeList *>(obj);
return verifier.VerifyTable(ptr);
}
default: return true;
}
}
inline bool VerifyTypeVector(flatbuffers::Verifier &verifier, const flatbuffers::Vector<flatbuffers::Offset<void>> *values, const flatbuffers::Vector<uint8_t> *types) {
if (!values || !types) return !values && !types;
if (values->size() != types->size()) return false;
for (flatbuffers::uoffset_t i = 0; i < values->size(); ++i) {
if (!VerifyType(
verifier, values->Get(i), types->GetEnum<Type>(i))) {
return false;
}
}
return true;
}
inline const org::apache::arrow::flatbuf::Schema *GetSchema(const void *buf) {
return flatbuffers::GetRoot<org::apache::arrow::flatbuf::Schema>(buf);
}
inline const org::apache::arrow::flatbuf::Schema *GetSizePrefixedSchema(const void *buf) {
return flatbuffers::GetSizePrefixedRoot<org::apache::arrow::flatbuf::Schema>(buf);
}
inline bool VerifySchemaBuffer(
flatbuffers::Verifier &verifier) {
return verifier.VerifyBuffer<org::apache::arrow::flatbuf::Schema>(nullptr);
}
inline bool VerifySizePrefixedSchemaBuffer(
flatbuffers::Verifier &verifier) {
return verifier.VerifySizePrefixedBuffer<org::apache::arrow::flatbuf::Schema>(nullptr);
}
inline void FinishSchemaBuffer(
flatbuffers::FlatBufferBuilder &fbb,
flatbuffers::Offset<org::apache::arrow::flatbuf::Schema> root) {
fbb.Finish(root);
}
inline void FinishSizePrefixedSchemaBuffer(
flatbuffers::FlatBufferBuilder &fbb,
flatbuffers::Offset<org::apache::arrow::flatbuf::Schema> root) {
fbb.FinishSizePrefixed(root);
}
} // namespace flatbuf
} // namespace arrow
} // namespace apache
} // namespace org
#endif // FLATBUFFERS_GENERATED_SCHEMA_ORG_APACHE_ARROW_FLATBUF_H_
|