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
|
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package array
import (
"bytes"
"errors"
"fmt"
"math"
"math/bits"
"sync/atomic"
"unsafe"
"github.com/apache/arrow-go/v18/arrow"
"github.com/apache/arrow-go/v18/arrow/bitutil"
"github.com/apache/arrow-go/v18/arrow/decimal"
"github.com/apache/arrow-go/v18/arrow/decimal128"
"github.com/apache/arrow-go/v18/arrow/decimal256"
"github.com/apache/arrow-go/v18/arrow/float16"
"github.com/apache/arrow-go/v18/arrow/internal/debug"
"github.com/apache/arrow-go/v18/arrow/memory"
"github.com/apache/arrow-go/v18/internal/hashing"
"github.com/apache/arrow-go/v18/internal/json"
"github.com/apache/arrow-go/v18/internal/utils"
)
// Dictionary represents the type for dictionary-encoded data with a data
// dependent dictionary.
//
// A dictionary array contains an array of non-negative integers (the "dictionary"
// indices") along with a data type containing a "dictionary" corresponding to
// the distinct values represented in the data.
//
// For example, the array:
//
// ["foo", "bar", "foo", "bar", "foo", "bar"]
//
// with dictionary ["bar", "foo"], would have the representation of:
//
// indices: [1, 0, 1, 0, 1, 0]
// dictionary: ["bar", "foo"]
//
// The indices in principle may be any integer type.
type Dictionary struct {
array
indices arrow.Array
dict arrow.Array
}
// NewDictionaryArray constructs a dictionary array with the provided indices
// and dictionary using the given type.
func NewDictionaryArray(typ arrow.DataType, indices, dict arrow.Array) *Dictionary {
a := &Dictionary{}
a.array.refCount = 1
dictdata := NewData(typ, indices.Len(), indices.Data().Buffers(), indices.Data().Children(), indices.NullN(), indices.Data().Offset())
dictdata.dictionary = dict.Data().(*Data)
dict.Data().Retain()
defer dictdata.Release()
a.setData(dictdata)
return a
}
// checkIndexBounds returns an error if any value in the provided integer
// arraydata is >= the passed upperlimit or < 0. otherwise nil
func checkIndexBounds(indices *Data, upperlimit uint64) error {
if indices.length == 0 {
return nil
}
var maxval uint64
switch indices.dtype.ID() {
case arrow.UINT8:
maxval = math.MaxUint8
case arrow.UINT16:
maxval = math.MaxUint16
case arrow.UINT32:
maxval = math.MaxUint32
case arrow.UINT64:
maxval = math.MaxUint64
}
// for unsigned integers, if the values array is larger than the maximum
// index value (especially for UINT8/UINT16), then there's no need to
// boundscheck. for signed integers we still need to bounds check
// because a value could be < 0.
isSigned := maxval == 0
if !isSigned && upperlimit > maxval {
return nil
}
start := indices.offset
end := indices.offset + indices.length
// TODO(ARROW-15950): lift BitSetRunReader from parquet to utils
// and use it here for performance improvement.
switch indices.dtype.ID() {
case arrow.INT8:
data := arrow.Int8Traits.CastFromBytes(indices.buffers[1].Bytes())
min, max := utils.GetMinMaxInt8(data[start:end])
if min < 0 || max >= int8(upperlimit) {
return fmt.Errorf("contains out of bounds index: min: %d, max: %d", min, max)
}
case arrow.UINT8:
data := arrow.Uint8Traits.CastFromBytes(indices.buffers[1].Bytes())
_, max := utils.GetMinMaxUint8(data[start:end])
if max >= uint8(upperlimit) {
return fmt.Errorf("contains out of bounds index: max: %d", max)
}
case arrow.INT16:
data := arrow.Int16Traits.CastFromBytes(indices.buffers[1].Bytes())
min, max := utils.GetMinMaxInt16(data[start:end])
if min < 0 || max >= int16(upperlimit) {
return fmt.Errorf("contains out of bounds index: min: %d, max: %d", min, max)
}
case arrow.UINT16:
data := arrow.Uint16Traits.CastFromBytes(indices.buffers[1].Bytes())
_, max := utils.GetMinMaxUint16(data[start:end])
if max >= uint16(upperlimit) {
return fmt.Errorf("contains out of bounds index: max: %d", max)
}
case arrow.INT32:
data := arrow.Int32Traits.CastFromBytes(indices.buffers[1].Bytes())
min, max := utils.GetMinMaxInt32(data[start:end])
if min < 0 || max >= int32(upperlimit) {
return fmt.Errorf("contains out of bounds index: min: %d, max: %d", min, max)
}
case arrow.UINT32:
data := arrow.Uint32Traits.CastFromBytes(indices.buffers[1].Bytes())
_, max := utils.GetMinMaxUint32(data[start:end])
if max >= uint32(upperlimit) {
return fmt.Errorf("contains out of bounds index: max: %d", max)
}
case arrow.INT64:
data := arrow.Int64Traits.CastFromBytes(indices.buffers[1].Bytes())
min, max := utils.GetMinMaxInt64(data[start:end])
if min < 0 || max >= int64(upperlimit) {
return fmt.Errorf("contains out of bounds index: min: %d, max: %d", min, max)
}
case arrow.UINT64:
data := arrow.Uint64Traits.CastFromBytes(indices.buffers[1].Bytes())
_, max := utils.GetMinMaxUint64(data[indices.offset : indices.offset+indices.length])
if max >= upperlimit {
return fmt.Errorf("contains out of bounds value: max: %d", max)
}
default:
return fmt.Errorf("invalid type for bounds checking: %T", indices.dtype)
}
return nil
}
// NewValidatedDictionaryArray constructs a dictionary array from the provided indices
// and dictionary arrays, while also performing validation checks to ensure correctness
// such as bounds checking at are usually skipped for performance.
func NewValidatedDictionaryArray(typ *arrow.DictionaryType, indices, dict arrow.Array) (*Dictionary, error) {
if indices.DataType().ID() != typ.IndexType.ID() {
return nil, fmt.Errorf("dictionary type index (%T) does not match indices array type (%T)", typ.IndexType, indices.DataType())
}
if !arrow.TypeEqual(typ.ValueType, dict.DataType()) {
return nil, fmt.Errorf("dictionary value type (%T) does not match dict array type (%T)", typ.ValueType, dict.DataType())
}
if err := checkIndexBounds(indices.Data().(*Data), uint64(dict.Len())); err != nil {
return nil, err
}
return NewDictionaryArray(typ, indices, dict), nil
}
// NewDictionaryData creates a strongly typed Dictionary array from
// an ArrayData object with a datatype of arrow.Dictionary and a dictionary
func NewDictionaryData(data arrow.ArrayData) *Dictionary {
a := &Dictionary{}
a.refCount = 1
a.setData(data.(*Data))
return a
}
func (d *Dictionary) Retain() {
atomic.AddInt64(&d.refCount, 1)
}
func (d *Dictionary) Release() {
debug.Assert(atomic.LoadInt64(&d.refCount) > 0, "too many releases")
if atomic.AddInt64(&d.refCount, -1) == 0 {
d.data.Release()
d.data, d.nullBitmapBytes = nil, nil
d.indices.Release()
d.indices = nil
if d.dict != nil {
d.dict.Release()
d.dict = nil
}
}
}
func (d *Dictionary) setData(data *Data) {
d.array.setData(data)
dictType := data.dtype.(*arrow.DictionaryType)
if data.dictionary == nil {
if data.length > 0 {
panic("arrow/array: no dictionary set in Data for Dictionary array")
}
} else {
debug.Assert(arrow.TypeEqual(dictType.ValueType, data.dictionary.DataType()), "mismatched dictionary value types")
}
indexData := NewData(dictType.IndexType, data.length, data.buffers, data.childData, data.nulls, data.offset)
defer indexData.Release()
d.indices = MakeFromData(indexData)
}
// Dictionary returns the values array that makes up the dictionary for this
// array.
func (d *Dictionary) Dictionary() arrow.Array {
if d.dict == nil {
d.dict = MakeFromData(d.data.dictionary)
}
return d.dict
}
// Indices returns the underlying array of indices as it's own array
func (d *Dictionary) Indices() arrow.Array {
return d.indices
}
// CanCompareIndices returns true if the dictionary arrays can be compared
// without having to unify the dictionaries themselves first.
// This means that the index types are equal too.
func (d *Dictionary) CanCompareIndices(other *Dictionary) bool {
if !arrow.TypeEqual(d.indices.DataType(), other.indices.DataType()) {
return false
}
minlen := int64(min(d.data.dictionary.length, other.data.dictionary.length))
return SliceEqual(d.Dictionary(), 0, minlen, other.Dictionary(), 0, minlen)
}
func (d *Dictionary) ValueStr(i int) string {
if d.IsNull(i) {
return NullValueStr
}
return d.Dictionary().ValueStr(d.GetValueIndex(i))
}
func (d *Dictionary) String() string {
return fmt.Sprintf("{ dictionary: %v\n indices: %v }", d.Dictionary(), d.Indices())
}
// GetValueIndex returns the dictionary index for the value at index i of the array.
// The actual value can be retrieved by using d.Dictionary().(valuetype).Value(d.GetValueIndex(i))
func (d *Dictionary) GetValueIndex(i int) int {
indiceData := d.data.buffers[1].Bytes()
// we know the value is non-negative per the spec, so
// we can use the unsigned value regardless.
switch d.indices.DataType().ID() {
case arrow.UINT8, arrow.INT8:
return int(uint8(indiceData[d.data.offset+i]))
case arrow.UINT16, arrow.INT16:
return int(arrow.Uint16Traits.CastFromBytes(indiceData)[d.data.offset+i])
case arrow.UINT32, arrow.INT32:
idx := arrow.Uint32Traits.CastFromBytes(indiceData)[d.data.offset+i]
debug.Assert(bits.UintSize == 64 || idx <= math.MaxInt32, "arrow/dictionary: truncation of index value")
return int(idx)
case arrow.UINT64, arrow.INT64:
idx := arrow.Uint64Traits.CastFromBytes(indiceData)[d.data.offset+i]
debug.Assert((bits.UintSize == 32 && idx <= math.MaxInt32) || (bits.UintSize == 64 && idx <= math.MaxInt64), "arrow/dictionary: truncation of index value")
return int(idx)
}
debug.Assert(false, "unreachable dictionary index")
return -1
}
func (d *Dictionary) GetOneForMarshal(i int) interface{} {
if d.IsNull(i) {
return nil
}
vidx := d.GetValueIndex(i)
return d.Dictionary().GetOneForMarshal(vidx)
}
func (d *Dictionary) MarshalJSON() ([]byte, error) {
vals := make([]interface{}, d.Len())
for i := 0; i < d.Len(); i++ {
vals[i] = d.GetOneForMarshal(i)
}
return json.Marshal(vals)
}
func arrayEqualDict(l, r *Dictionary) bool {
return Equal(l.Dictionary(), r.Dictionary()) && Equal(l.indices, r.indices)
}
func arrayApproxEqualDict(l, r *Dictionary, opt equalOption) bool {
return arrayApproxEqual(l.Dictionary(), r.Dictionary(), opt) && arrayApproxEqual(l.indices, r.indices, opt)
}
// helper for building the properly typed indices of the dictionary builder
type IndexBuilder struct {
Builder
Append func(int)
}
func createIndexBuilder(mem memory.Allocator, dt arrow.FixedWidthDataType) (ret IndexBuilder, err error) {
ret = IndexBuilder{Builder: NewBuilder(mem, dt)}
switch dt.ID() {
case arrow.INT8:
ret.Append = func(idx int) {
ret.Builder.(*Int8Builder).Append(int8(idx))
}
case arrow.UINT8:
ret.Append = func(idx int) {
ret.Builder.(*Uint8Builder).Append(uint8(idx))
}
case arrow.INT16:
ret.Append = func(idx int) {
ret.Builder.(*Int16Builder).Append(int16(idx))
}
case arrow.UINT16:
ret.Append = func(idx int) {
ret.Builder.(*Uint16Builder).Append(uint16(idx))
}
case arrow.INT32:
ret.Append = func(idx int) {
ret.Builder.(*Int32Builder).Append(int32(idx))
}
case arrow.UINT32:
ret.Append = func(idx int) {
ret.Builder.(*Uint32Builder).Append(uint32(idx))
}
case arrow.INT64:
ret.Append = func(idx int) {
ret.Builder.(*Int64Builder).Append(int64(idx))
}
case arrow.UINT64:
ret.Append = func(idx int) {
ret.Builder.(*Uint64Builder).Append(uint64(idx))
}
default:
debug.Assert(false, "dictionary index type must be integral")
err = fmt.Errorf("dictionary index type must be integral, not %s", dt)
}
return
}
// helper function to construct an appropriately typed memo table based on
// the value type for the dictionary
func createMemoTable(mem memory.Allocator, dt arrow.DataType) (ret hashing.MemoTable, err error) {
switch dt.ID() {
case arrow.INT8:
ret = hashing.NewInt8MemoTable(0)
case arrow.UINT8:
ret = hashing.NewUint8MemoTable(0)
case arrow.INT16:
ret = hashing.NewInt16MemoTable(0)
case arrow.UINT16:
ret = hashing.NewUint16MemoTable(0)
case arrow.INT32:
ret = hashing.NewInt32MemoTable(0)
case arrow.UINT32:
ret = hashing.NewUint32MemoTable(0)
case arrow.INT64:
ret = hashing.NewInt64MemoTable(0)
case arrow.UINT64:
ret = hashing.NewUint64MemoTable(0)
case arrow.DURATION, arrow.TIMESTAMP, arrow.DATE64, arrow.TIME64:
ret = hashing.NewInt64MemoTable(0)
case arrow.TIME32, arrow.DATE32, arrow.INTERVAL_MONTHS:
ret = hashing.NewInt32MemoTable(0)
case arrow.FLOAT16:
ret = hashing.NewUint16MemoTable(0)
case arrow.FLOAT32:
ret = hashing.NewFloat32MemoTable(0)
case arrow.FLOAT64:
ret = hashing.NewFloat64MemoTable(0)
case arrow.BINARY, arrow.FIXED_SIZE_BINARY, arrow.DECIMAL32, arrow.DECIMAL64,
arrow.DECIMAL128, arrow.DECIMAL256, arrow.INTERVAL_DAY_TIME, arrow.INTERVAL_MONTH_DAY_NANO:
ret = hashing.NewBinaryMemoTable(0, 0, NewBinaryBuilder(mem, arrow.BinaryTypes.Binary))
case arrow.STRING:
ret = hashing.NewBinaryMemoTable(0, 0, NewBinaryBuilder(mem, arrow.BinaryTypes.String))
case arrow.NULL:
default:
err = fmt.Errorf("unimplemented dictionary value type, %s", dt)
}
return
}
type DictionaryBuilder interface {
Builder
NewDictionaryArray() *Dictionary
NewDelta() (indices, delta arrow.Array, err error)
AppendArray(arrow.Array) error
AppendIndices([]int, []bool)
ResetFull()
DictionarySize() int
}
type dictionaryBuilder struct {
builder
dt *arrow.DictionaryType
deltaOffset int
memoTable hashing.MemoTable
idxBuilder IndexBuilder
}
// NewDictionaryBuilderWithDict initializes a dictionary builder and inserts the values from `init` as the first
// values in the dictionary, but does not insert them as values into the array.
func NewDictionaryBuilderWithDict(mem memory.Allocator, dt *arrow.DictionaryType, init arrow.Array) DictionaryBuilder {
if init != nil && !arrow.TypeEqual(dt.ValueType, init.DataType()) {
panic(fmt.Errorf("arrow/array: cannot initialize dictionary type %T with array of type %T", dt.ValueType, init.DataType()))
}
idxbldr, err := createIndexBuilder(mem, dt.IndexType.(arrow.FixedWidthDataType))
if err != nil {
panic(fmt.Errorf("arrow/array: unsupported builder for index type of %T", dt))
}
memo, err := createMemoTable(mem, dt.ValueType)
if err != nil {
panic(fmt.Errorf("arrow/array: unsupported builder for value type of %T", dt))
}
bldr := dictionaryBuilder{
builder: builder{refCount: 1, mem: mem},
idxBuilder: idxbldr,
memoTable: memo,
dt: dt,
}
switch dt.ValueType.ID() {
case arrow.NULL:
ret := &NullDictionaryBuilder{bldr}
debug.Assert(init == nil, "arrow/array: doesn't make sense to init a null dictionary")
return ret
case arrow.UINT8:
ret := &Uint8DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Uint8)); err != nil {
panic(err)
}
}
return ret
case arrow.INT8:
ret := &Int8DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Int8)); err != nil {
panic(err)
}
}
return ret
case arrow.UINT16:
ret := &Uint16DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Uint16)); err != nil {
panic(err)
}
}
return ret
case arrow.INT16:
ret := &Int16DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Int16)); err != nil {
panic(err)
}
}
return ret
case arrow.UINT32:
ret := &Uint32DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Uint32)); err != nil {
panic(err)
}
}
return ret
case arrow.INT32:
ret := &Int32DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Int32)); err != nil {
panic(err)
}
}
return ret
case arrow.UINT64:
ret := &Uint64DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Uint64)); err != nil {
panic(err)
}
}
return ret
case arrow.INT64:
ret := &Int64DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Int64)); err != nil {
panic(err)
}
}
return ret
case arrow.FLOAT16:
ret := &Float16DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Float16)); err != nil {
panic(err)
}
}
return ret
case arrow.FLOAT32:
ret := &Float32DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Float32)); err != nil {
panic(err)
}
}
return ret
case arrow.FLOAT64:
ret := &Float64DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Float64)); err != nil {
panic(err)
}
}
return ret
case arrow.STRING:
ret := &BinaryDictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertStringDictValues(init.(*String)); err != nil {
panic(err)
}
}
return ret
case arrow.BINARY:
ret := &BinaryDictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Binary)); err != nil {
panic(err)
}
}
return ret
case arrow.FIXED_SIZE_BINARY:
ret := &FixedSizeBinaryDictionaryBuilder{
bldr, dt.ValueType.(*arrow.FixedSizeBinaryType).ByteWidth,
}
if init != nil {
if err = ret.InsertDictValues(init.(*FixedSizeBinary)); err != nil {
panic(err)
}
}
return ret
case arrow.DATE32:
ret := &Date32DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Date32)); err != nil {
panic(err)
}
}
return ret
case arrow.DATE64:
ret := &Date64DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Date64)); err != nil {
panic(err)
}
}
return ret
case arrow.TIMESTAMP:
ret := &TimestampDictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Timestamp)); err != nil {
panic(err)
}
}
return ret
case arrow.TIME32:
ret := &Time32DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Time32)); err != nil {
panic(err)
}
}
return ret
case arrow.TIME64:
ret := &Time64DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Time64)); err != nil {
panic(err)
}
}
return ret
case arrow.INTERVAL_MONTHS:
ret := &MonthIntervalDictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*MonthInterval)); err != nil {
panic(err)
}
}
return ret
case arrow.INTERVAL_DAY_TIME:
ret := &DayTimeDictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*DayTimeInterval)); err != nil {
panic(err)
}
}
return ret
case arrow.DECIMAL32:
ret := &Decimal32DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Decimal32)); err != nil {
panic(err)
}
}
return ret
case arrow.DECIMAL64:
ret := &Decimal64DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Decimal64)); err != nil {
panic(err)
}
}
return ret
case arrow.DECIMAL128:
ret := &Decimal128DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Decimal128)); err != nil {
panic(err)
}
}
return ret
case arrow.DECIMAL256:
ret := &Decimal256DictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Decimal256)); err != nil {
panic(err)
}
}
return ret
case arrow.LIST:
case arrow.STRUCT:
case arrow.SPARSE_UNION:
case arrow.DENSE_UNION:
case arrow.DICTIONARY:
case arrow.MAP:
case arrow.EXTENSION:
case arrow.FIXED_SIZE_LIST:
case arrow.DURATION:
ret := &DurationDictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*Duration)); err != nil {
panic(err)
}
}
return ret
case arrow.LARGE_STRING:
case arrow.LARGE_BINARY:
case arrow.LARGE_LIST:
case arrow.INTERVAL_MONTH_DAY_NANO:
ret := &MonthDayNanoDictionaryBuilder{bldr}
if init != nil {
if err = ret.InsertDictValues(init.(*MonthDayNanoInterval)); err != nil {
panic(err)
}
}
return ret
}
panic("arrow/array: unimplemented dictionary key type")
}
func NewDictionaryBuilder(mem memory.Allocator, dt *arrow.DictionaryType) DictionaryBuilder {
return NewDictionaryBuilderWithDict(mem, dt, nil)
}
func (b *dictionaryBuilder) Type() arrow.DataType { return b.dt }
func (b *dictionaryBuilder) Release() {
debug.Assert(atomic.LoadInt64(&b.refCount) > 0, "too many releases")
if atomic.AddInt64(&b.refCount, -1) == 0 {
b.idxBuilder.Release()
b.idxBuilder.Builder = nil
if binmemo, ok := b.memoTable.(*hashing.BinaryMemoTable); ok {
binmemo.Release()
}
b.memoTable = nil
}
}
func (b *dictionaryBuilder) AppendNull() {
b.length += 1
b.nulls += 1
b.idxBuilder.AppendNull()
}
func (b *dictionaryBuilder) AppendNulls(n int) {
for i := 0; i < n; i++ {
b.AppendNull()
}
}
func (b *dictionaryBuilder) AppendEmptyValue() {
b.length += 1
b.idxBuilder.AppendEmptyValue()
}
func (b *dictionaryBuilder) AppendEmptyValues(n int) {
for i := 0; i < n; i++ {
b.AppendEmptyValue()
}
}
func (b *dictionaryBuilder) Reserve(n int) {
b.idxBuilder.Reserve(n)
}
func (b *dictionaryBuilder) Resize(n int) {
b.idxBuilder.Resize(n)
b.length = b.idxBuilder.Len()
}
func (b *dictionaryBuilder) ResetFull() {
b.builder.reset()
b.idxBuilder.NewArray().Release()
b.memoTable.Reset()
}
func (b *dictionaryBuilder) Cap() int { return b.idxBuilder.Cap() }
func (b *dictionaryBuilder) IsNull(i int) bool { return b.idxBuilder.IsNull(i) }
func (b *dictionaryBuilder) UnmarshalJSON(data []byte) error {
dec := json.NewDecoder(bytes.NewReader(data))
t, err := dec.Token()
if err != nil {
return err
}
if delim, ok := t.(json.Delim); !ok || delim != '[' {
return fmt.Errorf("dictionary builder must unpack from json array, found %s", delim)
}
return b.Unmarshal(dec)
}
func (b *dictionaryBuilder) Unmarshal(dec *json.Decoder) error {
bldr := NewBuilder(b.mem, b.dt.ValueType)
defer bldr.Release()
if err := bldr.Unmarshal(dec); err != nil {
return err
}
arr := bldr.NewArray()
defer arr.Release()
return b.AppendArray(arr)
}
func (b *dictionaryBuilder) AppendValueFromString(s string) error {
bldr := NewBuilder(b.mem, b.dt.ValueType)
defer bldr.Release()
if err := bldr.AppendValueFromString(s); err != nil {
return err
}
arr := bldr.NewArray()
defer arr.Release()
return b.AppendArray(arr)
}
func (b *dictionaryBuilder) UnmarshalOne(dec *json.Decoder) error {
bldr := NewBuilder(b.mem, b.dt.ValueType)
defer bldr.Release()
if err := bldr.UnmarshalOne(dec); err != nil {
return err
}
arr := bldr.NewArray()
defer arr.Release()
return b.AppendArray(arr)
}
func (b *dictionaryBuilder) NewArray() arrow.Array {
return b.NewDictionaryArray()
}
func (b *dictionaryBuilder) newData() *Data {
indices, dict, err := b.newWithDictOffset(0)
if err != nil {
panic(err)
}
indices.dtype = b.dt
indices.dictionary = dict
return indices
}
func (b *dictionaryBuilder) NewDictionaryArray() *Dictionary {
a := &Dictionary{}
a.refCount = 1
indices := b.newData()
a.setData(indices)
indices.Release()
return a
}
func (b *dictionaryBuilder) newWithDictOffset(offset int) (indices, dict *Data, err error) {
idxarr := b.idxBuilder.NewArray()
defer idxarr.Release()
indices = idxarr.Data().(*Data)
b.deltaOffset = b.memoTable.Size()
dict, err = GetDictArrayData(b.mem, b.dt.ValueType, b.memoTable, offset)
b.reset()
indices.Retain()
return
}
// NewDelta returns the dictionary indices and a delta dictionary since the
// last time NewArray or NewDictionaryArray were called, and resets the state
// of the builder (except for the dictionary / memotable)
func (b *dictionaryBuilder) NewDelta() (indices, delta arrow.Array, err error) {
indicesData, deltaData, err := b.newWithDictOffset(b.deltaOffset)
if err != nil {
return nil, nil, err
}
defer indicesData.Release()
defer deltaData.Release()
indices, delta = MakeFromData(indicesData), MakeFromData(deltaData)
return
}
func (b *dictionaryBuilder) insertDictValue(val interface{}) error {
_, _, err := b.memoTable.GetOrInsert(val)
return err
}
func (b *dictionaryBuilder) insertDictBytes(val []byte) error {
_, _, err := b.memoTable.GetOrInsertBytes(val)
return err
}
func (b *dictionaryBuilder) appendValue(val interface{}) error {
idx, _, err := b.memoTable.GetOrInsert(val)
b.idxBuilder.Append(idx)
b.length += 1
return err
}
func (b *dictionaryBuilder) appendBytes(val []byte) error {
idx, _, err := b.memoTable.GetOrInsertBytes(val)
b.idxBuilder.Append(idx)
b.length += 1
return err
}
func getvalFn(arr arrow.Array) func(i int) interface{} {
switch typedarr := arr.(type) {
case *Int8:
return func(i int) interface{} { return typedarr.Value(i) }
case *Uint8:
return func(i int) interface{} { return typedarr.Value(i) }
case *Int16:
return func(i int) interface{} { return typedarr.Value(i) }
case *Uint16:
return func(i int) interface{} { return typedarr.Value(i) }
case *Int32:
return func(i int) interface{} { return typedarr.Value(i) }
case *Uint32:
return func(i int) interface{} { return typedarr.Value(i) }
case *Int64:
return func(i int) interface{} { return typedarr.Value(i) }
case *Uint64:
return func(i int) interface{} { return typedarr.Value(i) }
case *Float16:
return func(i int) interface{} { return typedarr.Value(i).Uint16() }
case *Float32:
return func(i int) interface{} { return typedarr.Value(i) }
case *Float64:
return func(i int) interface{} { return typedarr.Value(i) }
case *Duration:
return func(i int) interface{} { return int64(typedarr.Value(i)) }
case *Timestamp:
return func(i int) interface{} { return int64(typedarr.Value(i)) }
case *Date64:
return func(i int) interface{} { return int64(typedarr.Value(i)) }
case *Time64:
return func(i int) interface{} { return int64(typedarr.Value(i)) }
case *Time32:
return func(i int) interface{} { return int32(typedarr.Value(i)) }
case *Date32:
return func(i int) interface{} { return int32(typedarr.Value(i)) }
case *MonthInterval:
return func(i int) interface{} { return int32(typedarr.Value(i)) }
case *Binary:
return func(i int) interface{} { return typedarr.Value(i) }
case *FixedSizeBinary:
return func(i int) interface{} { return typedarr.Value(i) }
case *String:
return func(i int) interface{} { return typedarr.Value(i) }
case *Decimal32:
return func(i int) interface{} {
val := typedarr.Value(i)
return (*(*[arrow.Decimal32SizeBytes]byte)(unsafe.Pointer(&val)))[:]
}
case *Decimal64:
return func(i int) interface{} {
val := typedarr.Value(i)
return (*(*[arrow.Decimal64SizeBytes]byte)(unsafe.Pointer(&val)))[:]
}
case *Decimal128:
return func(i int) interface{} {
val := typedarr.Value(i)
return (*(*[arrow.Decimal128SizeBytes]byte)(unsafe.Pointer(&val)))[:]
}
case *Decimal256:
return func(i int) interface{} {
val := typedarr.Value(i)
return (*(*[arrow.Decimal256SizeBytes]byte)(unsafe.Pointer(&val)))[:]
}
case *DayTimeInterval:
return func(i int) interface{} {
val := typedarr.Value(i)
return (*(*[arrow.DayTimeIntervalSizeBytes]byte)(unsafe.Pointer(&val)))[:]
}
case *MonthDayNanoInterval:
return func(i int) interface{} {
val := typedarr.Value(i)
return (*(*[arrow.MonthDayNanoIntervalSizeBytes]byte)(unsafe.Pointer(&val)))[:]
}
}
panic("arrow/array: invalid dictionary value type")
}
func (b *dictionaryBuilder) AppendArray(arr arrow.Array) error {
debug.Assert(arrow.TypeEqual(b.dt.ValueType, arr.DataType()), "wrong value type of array to append to dict")
valfn := getvalFn(arr)
for i := 0; i < arr.Len(); i++ {
if arr.IsNull(i) {
b.AppendNull()
} else {
if err := b.appendValue(valfn(i)); err != nil {
return err
}
}
}
return nil
}
func (b *dictionaryBuilder) IndexBuilder() IndexBuilder {
return b.idxBuilder
}
func (b *dictionaryBuilder) AppendIndices(indices []int, valid []bool) {
b.length += len(indices)
switch idxbldr := b.idxBuilder.Builder.(type) {
case *Int8Builder:
vals := make([]int8, len(indices))
for i, v := range indices {
vals[i] = int8(v)
}
idxbldr.AppendValues(vals, valid)
case *Int16Builder:
vals := make([]int16, len(indices))
for i, v := range indices {
vals[i] = int16(v)
}
idxbldr.AppendValues(vals, valid)
case *Int32Builder:
vals := make([]int32, len(indices))
for i, v := range indices {
vals[i] = int32(v)
}
idxbldr.AppendValues(vals, valid)
case *Int64Builder:
vals := make([]int64, len(indices))
for i, v := range indices {
vals[i] = int64(v)
}
idxbldr.AppendValues(vals, valid)
case *Uint8Builder:
vals := make([]uint8, len(indices))
for i, v := range indices {
vals[i] = uint8(v)
}
idxbldr.AppendValues(vals, valid)
case *Uint16Builder:
vals := make([]uint16, len(indices))
for i, v := range indices {
vals[i] = uint16(v)
}
idxbldr.AppendValues(vals, valid)
case *Uint32Builder:
vals := make([]uint32, len(indices))
for i, v := range indices {
vals[i] = uint32(v)
}
idxbldr.AppendValues(vals, valid)
case *Uint64Builder:
vals := make([]uint64, len(indices))
for i, v := range indices {
vals[i] = uint64(v)
}
idxbldr.AppendValues(vals, valid)
}
}
func (b *dictionaryBuilder) DictionarySize() int {
return b.memoTable.Size()
}
type NullDictionaryBuilder struct {
dictionaryBuilder
}
func (b *NullDictionaryBuilder) NewArray() arrow.Array {
return b.NewDictionaryArray()
}
func (b *NullDictionaryBuilder) NewDictionaryArray() *Dictionary {
idxarr := b.idxBuilder.NewArray()
defer idxarr.Release()
out := idxarr.Data().(*Data)
dictarr := NewNull(0)
defer dictarr.Release()
dictarr.data.Retain()
out.dtype = b.dt
out.dictionary = dictarr.data
return NewDictionaryData(out)
}
func (b *NullDictionaryBuilder) AppendArray(arr arrow.Array) error {
if arr.DataType().ID() != arrow.NULL {
return fmt.Errorf("cannot append non-null array to null dictionary")
}
for i := 0; i < arr.(*Null).Len(); i++ {
b.AppendNull()
}
return nil
}
type Int8DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Int8DictionaryBuilder) Append(v int8) error { return b.appendValue(v) }
func (b *Int8DictionaryBuilder) InsertDictValues(arr *Int8) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(v); err != nil {
break
}
}
return
}
type Uint8DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Uint8DictionaryBuilder) Append(v uint8) error { return b.appendValue(v) }
func (b *Uint8DictionaryBuilder) InsertDictValues(arr *Uint8) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(v); err != nil {
break
}
}
return
}
type Int16DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Int16DictionaryBuilder) Append(v int16) error { return b.appendValue(v) }
func (b *Int16DictionaryBuilder) InsertDictValues(arr *Int16) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(v); err != nil {
break
}
}
return
}
type Uint16DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Uint16DictionaryBuilder) Append(v uint16) error { return b.appendValue(v) }
func (b *Uint16DictionaryBuilder) InsertDictValues(arr *Uint16) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(v); err != nil {
break
}
}
return
}
type Int32DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Int32DictionaryBuilder) Append(v int32) error { return b.appendValue(v) }
func (b *Int32DictionaryBuilder) InsertDictValues(arr *Int32) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(v); err != nil {
break
}
}
return
}
type Uint32DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Uint32DictionaryBuilder) Append(v uint32) error { return b.appendValue(v) }
func (b *Uint32DictionaryBuilder) InsertDictValues(arr *Uint32) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(v); err != nil {
break
}
}
return
}
type Int64DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Int64DictionaryBuilder) Append(v int64) error { return b.appendValue(v) }
func (b *Int64DictionaryBuilder) InsertDictValues(arr *Int64) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(v); err != nil {
break
}
}
return
}
type Uint64DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Uint64DictionaryBuilder) Append(v uint64) error { return b.appendValue(v) }
func (b *Uint64DictionaryBuilder) InsertDictValues(arr *Uint64) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(v); err != nil {
break
}
}
return
}
type DurationDictionaryBuilder struct {
dictionaryBuilder
}
func (b *DurationDictionaryBuilder) Append(v arrow.Duration) error { return b.appendValue(int64(v)) }
func (b *DurationDictionaryBuilder) InsertDictValues(arr *Duration) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(int64(v)); err != nil {
break
}
}
return
}
type TimestampDictionaryBuilder struct {
dictionaryBuilder
}
func (b *TimestampDictionaryBuilder) Append(v arrow.Timestamp) error { return b.appendValue(int64(v)) }
func (b *TimestampDictionaryBuilder) InsertDictValues(arr *Timestamp) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(int64(v)); err != nil {
break
}
}
return
}
type Time32DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Time32DictionaryBuilder) Append(v arrow.Time32) error { return b.appendValue(int32(v)) }
func (b *Time32DictionaryBuilder) InsertDictValues(arr *Time32) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(int32(v)); err != nil {
break
}
}
return
}
type Time64DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Time64DictionaryBuilder) Append(v arrow.Time64) error { return b.appendValue(int64(v)) }
func (b *Time64DictionaryBuilder) InsertDictValues(arr *Time64) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(int64(v)); err != nil {
break
}
}
return
}
type Date32DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Date32DictionaryBuilder) Append(v arrow.Date32) error { return b.appendValue(int32(v)) }
func (b *Date32DictionaryBuilder) InsertDictValues(arr *Date32) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(int32(v)); err != nil {
break
}
}
return
}
type Date64DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Date64DictionaryBuilder) Append(v arrow.Date64) error { return b.appendValue(int64(v)) }
func (b *Date64DictionaryBuilder) InsertDictValues(arr *Date64) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(int64(v)); err != nil {
break
}
}
return
}
type MonthIntervalDictionaryBuilder struct {
dictionaryBuilder
}
func (b *MonthIntervalDictionaryBuilder) Append(v arrow.MonthInterval) error {
return b.appendValue(int32(v))
}
func (b *MonthIntervalDictionaryBuilder) InsertDictValues(arr *MonthInterval) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(int32(v)); err != nil {
break
}
}
return
}
type Float16DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Float16DictionaryBuilder) Append(v float16.Num) error { return b.appendValue(v.Uint16()) }
func (b *Float16DictionaryBuilder) InsertDictValues(arr *Float16) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(v.Uint16()); err != nil {
break
}
}
return
}
type Float32DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Float32DictionaryBuilder) Append(v float32) error { return b.appendValue(v) }
func (b *Float32DictionaryBuilder) InsertDictValues(arr *Float32) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(v); err != nil {
break
}
}
return
}
type Float64DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Float64DictionaryBuilder) Append(v float64) error { return b.appendValue(v) }
func (b *Float64DictionaryBuilder) InsertDictValues(arr *Float64) (err error) {
for _, v := range arr.values {
if err = b.insertDictValue(v); err != nil {
break
}
}
return
}
type BinaryDictionaryBuilder struct {
dictionaryBuilder
}
func (b *BinaryDictionaryBuilder) Append(v []byte) error {
if v == nil {
b.AppendNull()
return nil
}
return b.appendBytes(v)
}
func (b *BinaryDictionaryBuilder) AppendString(v string) error { return b.appendBytes([]byte(v)) }
func (b *BinaryDictionaryBuilder) InsertDictValues(arr *Binary) (err error) {
if !arrow.TypeEqual(arr.DataType(), b.dt.ValueType) {
return fmt.Errorf("dictionary insert type mismatch: cannot insert values of type %T to dictionary type %T", arr.DataType(), b.dt.ValueType)
}
for i := 0; i < arr.Len(); i++ {
if err = b.insertDictBytes(arr.Value(i)); err != nil {
break
}
}
return
}
func (b *BinaryDictionaryBuilder) InsertStringDictValues(arr *String) (err error) {
if !arrow.TypeEqual(arr.DataType(), b.dt.ValueType) {
return fmt.Errorf("dictionary insert type mismatch: cannot insert values of type %T to dictionary type %T", arr.DataType(), b.dt.ValueType)
}
for i := 0; i < arr.Len(); i++ {
if err = b.insertDictValue(arr.Value(i)); err != nil {
break
}
}
return
}
func (b *BinaryDictionaryBuilder) GetValueIndex(i int) int {
switch b := b.idxBuilder.Builder.(type) {
case *Uint8Builder:
return int(b.Value(i))
case *Int8Builder:
return int(b.Value(i))
case *Uint16Builder:
return int(b.Value(i))
case *Int16Builder:
return int(b.Value(i))
case *Uint32Builder:
return int(b.Value(i))
case *Int32Builder:
return int(b.Value(i))
case *Uint64Builder:
return int(b.Value(i))
case *Int64Builder:
return int(b.Value(i))
default:
return -1
}
}
func (b *BinaryDictionaryBuilder) Value(i int) []byte {
switch mt := b.memoTable.(type) {
case *hashing.BinaryMemoTable:
return mt.Value(i)
}
return nil
}
func (b *BinaryDictionaryBuilder) ValueStr(i int) string {
return string(b.Value(i))
}
type FixedSizeBinaryDictionaryBuilder struct {
dictionaryBuilder
byteWidth int
}
func (b *FixedSizeBinaryDictionaryBuilder) Append(v []byte) error {
return b.appendValue(v[:b.byteWidth])
}
func (b *FixedSizeBinaryDictionaryBuilder) InsertDictValues(arr *FixedSizeBinary) (err error) {
var (
beg = arr.array.data.offset * b.byteWidth
end = (arr.array.data.offset + arr.data.length) * b.byteWidth
)
data := arr.valueBytes[beg:end]
for len(data) > 0 {
if err = b.insertDictValue(data[:b.byteWidth]); err != nil {
break
}
data = data[b.byteWidth:]
}
return
}
type Decimal32DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Decimal32DictionaryBuilder) Append(v decimal.Decimal32) error {
return b.appendValue((*(*[arrow.Decimal32SizeBytes]byte)(unsafe.Pointer(&v)))[:])
}
func (b *Decimal32DictionaryBuilder) InsertDictValues(arr *Decimal32) (err error) {
data := arrow.Decimal32Traits.CastToBytes(arr.values)
for len(data) > 0 {
if err = b.insertDictValue(data[:arrow.Decimal32SizeBytes]); err != nil {
break
}
data = data[arrow.Decimal32SizeBytes:]
}
return
}
type Decimal64DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Decimal64DictionaryBuilder) Append(v decimal.Decimal64) error {
return b.appendValue((*(*[arrow.Decimal64SizeBytes]byte)(unsafe.Pointer(&v)))[:])
}
func (b *Decimal64DictionaryBuilder) InsertDictValues(arr *Decimal64) (err error) {
data := arrow.Decimal64Traits.CastToBytes(arr.values)
for len(data) > 0 {
if err = b.insertDictValue(data[:arrow.Decimal64SizeBytes]); err != nil {
break
}
data = data[arrow.Decimal64SizeBytes:]
}
return
}
type Decimal128DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Decimal128DictionaryBuilder) Append(v decimal128.Num) error {
return b.appendValue((*(*[arrow.Decimal128SizeBytes]byte)(unsafe.Pointer(&v)))[:])
}
func (b *Decimal128DictionaryBuilder) InsertDictValues(arr *Decimal128) (err error) {
data := arrow.Decimal128Traits.CastToBytes(arr.values)
for len(data) > 0 {
if err = b.insertDictValue(data[:arrow.Decimal128SizeBytes]); err != nil {
break
}
data = data[arrow.Decimal128SizeBytes:]
}
return
}
type Decimal256DictionaryBuilder struct {
dictionaryBuilder
}
func (b *Decimal256DictionaryBuilder) Append(v decimal256.Num) error {
return b.appendValue((*(*[arrow.Decimal256SizeBytes]byte)(unsafe.Pointer(&v)))[:])
}
func (b *Decimal256DictionaryBuilder) InsertDictValues(arr *Decimal256) (err error) {
data := arrow.Decimal256Traits.CastToBytes(arr.values)
for len(data) > 0 {
if err = b.insertDictValue(data[:arrow.Decimal256SizeBytes]); err != nil {
break
}
data = data[arrow.Decimal256SizeBytes:]
}
return
}
type MonthDayNanoDictionaryBuilder struct {
dictionaryBuilder
}
func (b *MonthDayNanoDictionaryBuilder) Append(v arrow.MonthDayNanoInterval) error {
return b.appendValue((*(*[arrow.MonthDayNanoIntervalSizeBytes]byte)(unsafe.Pointer(&v)))[:])
}
func (b *MonthDayNanoDictionaryBuilder) InsertDictValues(arr *MonthDayNanoInterval) (err error) {
data := arrow.MonthDayNanoIntervalTraits.CastToBytes(arr.values)
for len(data) > 0 {
if err = b.insertDictValue(data[:arrow.MonthDayNanoIntervalSizeBytes]); err != nil {
break
}
data = data[arrow.MonthDayNanoIntervalSizeBytes:]
}
return
}
type DayTimeDictionaryBuilder struct {
dictionaryBuilder
}
func (b *DayTimeDictionaryBuilder) Append(v arrow.DayTimeInterval) error {
return b.appendValue((*(*[arrow.DayTimeIntervalSizeBytes]byte)(unsafe.Pointer(&v)))[:])
}
func (b *DayTimeDictionaryBuilder) InsertDictValues(arr *DayTimeInterval) (err error) {
data := arrow.DayTimeIntervalTraits.CastToBytes(arr.values)
for len(data) > 0 {
if err = b.insertDictValue(data[:arrow.DayTimeIntervalSizeBytes]); err != nil {
break
}
data = data[arrow.DayTimeIntervalSizeBytes:]
}
return
}
func IsTrivialTransposition(transposeMap []int32) bool {
for i, t := range transposeMap {
if t != int32(i) {
return false
}
}
return true
}
func TransposeDictIndices(mem memory.Allocator, data arrow.ArrayData, inType, outType arrow.DataType, dict arrow.ArrayData, transposeMap []int32) (arrow.ArrayData, error) {
// inType may be different from data->dtype if data is ExtensionType
if inType.ID() != arrow.DICTIONARY || outType.ID() != arrow.DICTIONARY {
return nil, errors.New("arrow/array: expected dictionary type")
}
var (
inDictType = inType.(*arrow.DictionaryType)
outDictType = outType.(*arrow.DictionaryType)
inIndexType = inDictType.IndexType
outIndexType = outDictType.IndexType.(arrow.FixedWidthDataType)
)
if inIndexType.ID() == outIndexType.ID() && IsTrivialTransposition(transposeMap) {
// index type and values will be identical, we can reuse the existing buffers
return NewDataWithDictionary(outType, data.Len(), []*memory.Buffer{data.Buffers()[0], data.Buffers()[1]},
data.NullN(), data.Offset(), dict.(*Data)), nil
}
// default path: compute the transposed indices as a new buffer
outBuf := memory.NewResizableBuffer(mem)
outBuf.Resize(data.Len() * int(bitutil.BytesForBits(int64(outIndexType.BitWidth()))))
defer outBuf.Release()
// shift null buffer if original offset is non-zero
var nullBitmap *memory.Buffer
if data.Offset() != 0 && data.NullN() != 0 {
nullBitmap = memory.NewResizableBuffer(mem)
nullBitmap.Resize(int(bitutil.BytesForBits(int64(data.Len()))))
bitutil.CopyBitmap(data.Buffers()[0].Bytes(), data.Offset(), data.Len(), nullBitmap.Bytes(), 0)
defer nullBitmap.Release()
} else {
nullBitmap = data.Buffers()[0]
}
outData := NewDataWithDictionary(outType, data.Len(),
[]*memory.Buffer{nullBitmap, outBuf}, data.NullN(), 0, dict.(*Data))
err := utils.TransposeIntsBuffers(inIndexType, outIndexType,
data.Buffers()[1].Bytes(), outBuf.Bytes(), data.Offset(), outData.offset, data.Len(), transposeMap)
return outData, err
}
// DictionaryUnifier defines the interface used for unifying, and optionally producing
// transposition maps for, multiple dictionary arrays incrementally.
type DictionaryUnifier interface {
// Unify adds the provided array of dictionary values to be unified.
Unify(arrow.Array) error
// UnifyAndTranspose adds the provided array of dictionary values,
// just like Unify but returns an allocated buffer containing a mapping
// to transpose dictionary indices.
UnifyAndTranspose(dict arrow.Array) (transposed *memory.Buffer, err error)
// GetResult returns the dictionary type (choosing the smallest index type
// that can represent all the values) and the new unified dictionary.
//
// Calling GetResult clears the existing dictionary from the unifier so it
// can be reused by calling Unify/UnifyAndTranspose again with new arrays.
GetResult() (outType arrow.DataType, outDict arrow.Array, err error)
// GetResultWithIndexType is like GetResult, but allows specifying the type
// of the dictionary indexes rather than letting the unifier pick. If the
// passed in index type isn't large enough to represent all of the dictionary
// values, an error will be returned instead. The new unified dictionary
// is returned.
GetResultWithIndexType(indexType arrow.DataType) (arrow.Array, error)
// Release should be called to clean up any allocated scratch memo-table used
// for building the unified dictionary.
Release()
}
type unifier struct {
mem memory.Allocator
valueType arrow.DataType
memoTable hashing.MemoTable
}
// NewDictionaryUnifier constructs and returns a new dictionary unifier for dictionaries
// of valueType, using the provided allocator for allocating the unified dictionary
// and the memotable used for building it.
//
// This will only work for non-nested types currently. a nested valueType or dictionary type
// will result in an error.
func NewDictionaryUnifier(alloc memory.Allocator, valueType arrow.DataType) (DictionaryUnifier, error) {
memoTable, err := createMemoTable(alloc, valueType)
if err != nil {
return nil, err
}
return &unifier{
mem: alloc,
valueType: valueType,
memoTable: memoTable,
}, nil
}
func (u *unifier) Release() {
if bin, ok := u.memoTable.(*hashing.BinaryMemoTable); ok {
bin.Release()
}
}
func (u *unifier) Unify(dict arrow.Array) (err error) {
if !arrow.TypeEqual(u.valueType, dict.DataType()) {
return fmt.Errorf("dictionary type different from unifier: %s, expected: %s", dict.DataType(), u.valueType)
}
valFn := getvalFn(dict)
for i := 0; i < dict.Len(); i++ {
if dict.IsNull(i) {
u.memoTable.GetOrInsertNull()
continue
}
if _, _, err = u.memoTable.GetOrInsert(valFn(i)); err != nil {
return err
}
}
return
}
func (u *unifier) UnifyAndTranspose(dict arrow.Array) (transposed *memory.Buffer, err error) {
if !arrow.TypeEqual(u.valueType, dict.DataType()) {
return nil, fmt.Errorf("dictionary type different from unifier: %s, expected: %s", dict.DataType(), u.valueType)
}
transposed = memory.NewResizableBuffer(u.mem)
transposed.Resize(arrow.Int32Traits.BytesRequired(dict.Len()))
newIdxes := arrow.Int32Traits.CastFromBytes(transposed.Bytes())
valFn := getvalFn(dict)
for i := 0; i < dict.Len(); i++ {
if dict.IsNull(i) {
idx, _ := u.memoTable.GetOrInsertNull()
newIdxes[i] = int32(idx)
continue
}
idx, _, err := u.memoTable.GetOrInsert(valFn(i))
if err != nil {
transposed.Release()
return nil, err
}
newIdxes[i] = int32(idx)
}
return
}
func (u *unifier) GetResult() (outType arrow.DataType, outDict arrow.Array, err error) {
dictLen := u.memoTable.Size()
var indexType arrow.DataType
switch {
case dictLen <= math.MaxInt8:
indexType = arrow.PrimitiveTypes.Int8
case dictLen <= math.MaxInt16:
indexType = arrow.PrimitiveTypes.Int16
case dictLen <= math.MaxInt32:
indexType = arrow.PrimitiveTypes.Int32
default:
indexType = arrow.PrimitiveTypes.Int64
}
outType = &arrow.DictionaryType{IndexType: indexType, ValueType: u.valueType}
dictData, err := GetDictArrayData(u.mem, u.valueType, u.memoTable, 0)
if err != nil {
return nil, nil, err
}
u.memoTable.Reset()
defer dictData.Release()
outDict = MakeFromData(dictData)
return
}
func (u *unifier) GetResultWithIndexType(indexType arrow.DataType) (arrow.Array, error) {
dictLen := u.memoTable.Size()
var toobig bool
switch indexType.ID() {
case arrow.UINT8:
toobig = dictLen > math.MaxUint8
case arrow.INT8:
toobig = dictLen > math.MaxInt8
case arrow.UINT16:
toobig = dictLen > math.MaxUint16
case arrow.INT16:
toobig = dictLen > math.MaxInt16
case arrow.UINT32:
toobig = uint(dictLen) > math.MaxUint32
case arrow.INT32:
toobig = dictLen > math.MaxInt32
case arrow.UINT64:
toobig = uint64(dictLen) > uint64(math.MaxUint64)
case arrow.INT64:
default:
return nil, fmt.Errorf("arrow/array: invalid dictionary index type: %s, must be integral", indexType)
}
if toobig {
return nil, errors.New("arrow/array: cannot combine dictionaries. unified dictionary requires a larger index type")
}
dictData, err := GetDictArrayData(u.mem, u.valueType, u.memoTable, 0)
if err != nil {
return nil, err
}
u.memoTable.Reset()
defer dictData.Release()
return MakeFromData(dictData), nil
}
type binaryUnifier struct {
mem memory.Allocator
memoTable *hashing.BinaryMemoTable
}
// NewBinaryDictionaryUnifier constructs and returns a new dictionary unifier for dictionaries
// of binary values, using the provided allocator for allocating the unified dictionary
// and the memotable used for building it.
func NewBinaryDictionaryUnifier(alloc memory.Allocator) DictionaryUnifier {
return &binaryUnifier{
mem: alloc,
memoTable: hashing.NewBinaryMemoTable(0, 0, NewBinaryBuilder(alloc, arrow.BinaryTypes.Binary)),
}
}
func (u *binaryUnifier) Release() {
u.memoTable.Release()
}
func (u *binaryUnifier) Unify(dict arrow.Array) (err error) {
if !arrow.TypeEqual(arrow.BinaryTypes.Binary, dict.DataType()) {
return fmt.Errorf("dictionary type different from unifier: %s, expected: %s", dict.DataType(), arrow.BinaryTypes.Binary)
}
typedDict := dict.(*Binary)
for i := 0; i < dict.Len(); i++ {
if dict.IsNull(i) {
u.memoTable.GetOrInsertNull()
continue
}
if _, _, err = u.memoTable.GetOrInsertBytes(typedDict.Value(i)); err != nil {
return err
}
}
return
}
func (u *binaryUnifier) UnifyAndTranspose(dict arrow.Array) (transposed *memory.Buffer, err error) {
if !arrow.TypeEqual(arrow.BinaryTypes.Binary, dict.DataType()) {
return nil, fmt.Errorf("dictionary type different from unifier: %s, expected: %s", dict.DataType(), arrow.BinaryTypes.Binary)
}
transposed = memory.NewResizableBuffer(u.mem)
transposed.Resize(arrow.Int32Traits.BytesRequired(dict.Len()))
newIdxes := arrow.Int32Traits.CastFromBytes(transposed.Bytes())
typedDict := dict.(*Binary)
for i := 0; i < dict.Len(); i++ {
if dict.IsNull(i) {
idx, _ := u.memoTable.GetOrInsertNull()
newIdxes[i] = int32(idx)
continue
}
idx, _, err := u.memoTable.GetOrInsertBytes(typedDict.Value(i))
if err != nil {
transposed.Release()
return nil, err
}
newIdxes[i] = int32(idx)
}
return
}
func (u *binaryUnifier) GetResult() (outType arrow.DataType, outDict arrow.Array, err error) {
dictLen := u.memoTable.Size()
var indexType arrow.DataType
switch {
case dictLen <= math.MaxInt8:
indexType = arrow.PrimitiveTypes.Int8
case dictLen <= math.MaxInt16:
indexType = arrow.PrimitiveTypes.Int16
case dictLen <= math.MaxInt32:
indexType = arrow.PrimitiveTypes.Int32
default:
indexType = arrow.PrimitiveTypes.Int64
}
outType = &arrow.DictionaryType{IndexType: indexType, ValueType: arrow.BinaryTypes.Binary}
dictData, err := GetDictArrayData(u.mem, arrow.BinaryTypes.Binary, u.memoTable, 0)
if err != nil {
return nil, nil, err
}
u.memoTable.Reset()
defer dictData.Release()
outDict = MakeFromData(dictData)
return
}
func (u *binaryUnifier) GetResultWithIndexType(indexType arrow.DataType) (arrow.Array, error) {
dictLen := u.memoTable.Size()
var toobig bool
switch indexType.ID() {
case arrow.UINT8:
toobig = dictLen > math.MaxUint8
case arrow.INT8:
toobig = dictLen > math.MaxInt8
case arrow.UINT16:
toobig = dictLen > math.MaxUint16
case arrow.INT16:
toobig = dictLen > math.MaxInt16
case arrow.UINT32:
toobig = uint(dictLen) > math.MaxUint32
case arrow.INT32:
toobig = dictLen > math.MaxInt32
case arrow.UINT64:
toobig = uint64(dictLen) > uint64(math.MaxUint64)
case arrow.INT64:
default:
return nil, fmt.Errorf("arrow/array: invalid dictionary index type: %s, must be integral", indexType)
}
if toobig {
return nil, errors.New("arrow/array: cannot combine dictionaries. unified dictionary requires a larger index type")
}
dictData, err := GetDictArrayData(u.mem, arrow.BinaryTypes.Binary, u.memoTable, 0)
if err != nil {
return nil, err
}
u.memoTable.Reset()
defer dictData.Release()
return MakeFromData(dictData), nil
}
func unifyRecursive(mem memory.Allocator, typ arrow.DataType, chunks []*Data) (changed bool, err error) {
debug.Assert(len(chunks) != 0, "must provide non-zero length chunk slice")
var extType arrow.DataType
if typ.ID() == arrow.EXTENSION {
extType = typ
typ = typ.(arrow.ExtensionType).StorageType()
}
if nestedTyp, ok := typ.(arrow.NestedType); ok {
children := make([]*Data, len(chunks))
for i, f := range nestedTyp.Fields() {
for j, c := range chunks {
children[j] = c.childData[i].(*Data)
}
childChanged, err := unifyRecursive(mem, f.Type, children)
if err != nil {
return false, err
}
if childChanged {
// only when unification actually occurs
for j := range chunks {
chunks[j].childData[i] = children[j]
}
changed = true
}
}
}
if typ.ID() == arrow.DICTIONARY {
dictType := typ.(*arrow.DictionaryType)
var (
uni DictionaryUnifier
newDict arrow.Array
)
// unify any nested dictionaries first, but the unifier doesn't support
// nested dictionaries yet so this would fail.
uni, err = NewDictionaryUnifier(mem, dictType.ValueType)
if err != nil {
return changed, err
}
defer uni.Release()
transposeMaps := make([]*memory.Buffer, len(chunks))
for i, c := range chunks {
debug.Assert(c.dictionary != nil, "missing dictionary data for dictionary array")
arr := MakeFromData(c.dictionary)
defer arr.Release()
if transposeMaps[i], err = uni.UnifyAndTranspose(arr); err != nil {
return
}
defer transposeMaps[i].Release()
}
if newDict, err = uni.GetResultWithIndexType(dictType.IndexType); err != nil {
return
}
defer newDict.Release()
for j := range chunks {
chnk, err := TransposeDictIndices(mem, chunks[j], typ, typ, newDict.Data(), arrow.Int32Traits.CastFromBytes(transposeMaps[j].Bytes()))
if err != nil {
return changed, err
}
chunks[j].Release()
chunks[j] = chnk.(*Data)
if extType != nil {
chunks[j].dtype = extType
}
}
changed = true
}
return
}
// UnifyChunkedDicts takes a chunked array of dictionary type and will unify
// the dictionary across all of the chunks with the returned chunked array
// having all chunks share the same dictionary.
//
// The return from this *must* have Release called on it unless an error is returned
// in which case the *arrow.Chunked will be nil.
//
// If there is 1 or fewer chunks, then nothing is modified and this function will just
// call Retain on the passed in Chunked array (so Release can safely be called on it).
// The same is true if the type of the array is not a dictionary or if no changes are
// needed for all of the chunks to be using the same dictionary.
func UnifyChunkedDicts(alloc memory.Allocator, chnkd *arrow.Chunked) (*arrow.Chunked, error) {
if len(chnkd.Chunks()) <= 1 {
chnkd.Retain()
return chnkd, nil
}
chunksData := make([]*Data, len(chnkd.Chunks()))
for i, c := range chnkd.Chunks() {
c.Data().Retain()
chunksData[i] = c.Data().(*Data)
}
changed, err := unifyRecursive(alloc, chnkd.DataType(), chunksData)
if err != nil || !changed {
for _, c := range chunksData {
c.Release()
}
if err == nil {
chnkd.Retain()
} else {
chnkd = nil
}
return chnkd, err
}
chunks := make([]arrow.Array, len(chunksData))
for i, c := range chunksData {
chunks[i] = MakeFromData(c)
defer chunks[i].Release()
c.Release()
}
return arrow.NewChunked(chnkd.DataType(), chunks), nil
}
// UnifyTableDicts performs UnifyChunkedDicts on each column of the table so that
// any dictionary column will have the dictionaries of its chunks unified.
//
// The returned Table should always be Release'd unless a non-nil error was returned,
// in which case the table returned will be nil.
func UnifyTableDicts(alloc memory.Allocator, table arrow.Table) (arrow.Table, error) {
cols := make([]arrow.Column, table.NumCols())
for i := 0; i < int(table.NumCols()); i++ {
chnkd, err := UnifyChunkedDicts(alloc, table.Column(i).Data())
if err != nil {
return nil, err
}
defer chnkd.Release()
cols[i] = *arrow.NewColumn(table.Schema().Field(i), chnkd)
defer cols[i].Release()
}
return NewTable(table.Schema(), cols, table.NumRows()), nil
}
var (
_ arrow.Array = (*Dictionary)(nil)
_ Builder = (*dictionaryBuilder)(nil)
)
|