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 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345
// Copyright 2016 Amanieu d'Antras
// Copyright 2020 Amari Robinson
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
//! Intrusive xor doubly-linked list which uses less memory than a regular doubly linked list.
//!
//! In exchange for less memory use, it is impossible to create a cursor from a pointer to
//! an element.
use core::cell::Cell;
use core::fmt;
use core::ptr::NonNull;
use core::sync::atomic::{AtomicUsize, Ordering};
use crate::link_ops::{self, DefaultLinkOps};
use crate::pointer_ops::PointerOps;
use crate::singly_linked_list::SinglyLinkedListOps;
use crate::Adapter;
// Necessary for Rust 1.56 compatability
#[allow(unused_imports)]
use crate::unchecked_option::UncheckedOptionExt;
// =============================================================================
// XorLinkedListOps
// =============================================================================
/// Link operations for `XorLinkedList`.
pub unsafe trait XorLinkedListOps: link_ops::LinkOps {
/// Returns the "next" link pointer of `ptr`.
///
/// # Safety
/// `prev` must have been previously passed to the [`set`] method, or
/// `prev` must be equal to the `new` argument previously passed to [`replace_next_or_prev`].
///
/// An implementation of `next` must not panic.
///
/// [`replace_next_or_prev`]: #tymethod.replace_next_or_prev
/// [`set`]: #tymethod.set
unsafe fn next(&self, ptr: Self::LinkPtr, prev: Option<Self::LinkPtr>)
-> Option<Self::LinkPtr>;
/// Returns the "prev" link pointer of `ptr`.
///
/// # Safety
/// `next` must have been previously passed to the [`set`] method, or
/// `next` must be equal to the `new` argument previously passed to [`replace_next_or_prev`].
///
/// An implementation of `prev` must not panic.
///
/// [`replace_next_or_prev`]: #tymethod.replace_next_or_prev
/// [`set`]: #tymethod.set
unsafe fn prev(&self, ptr: Self::LinkPtr, next: Option<Self::LinkPtr>)
-> Option<Self::LinkPtr>;
/// Assigns the "prev" and "next" link pointers of `ptr`.
///
/// # Safety
/// An implementation of `set` must not panic.
unsafe fn set(
&mut self,
ptr: Self::LinkPtr,
prev: Option<Self::LinkPtr>,
next: Option<Self::LinkPtr>,
);
/// Replaces the "next" or "prev" link pointer of `ptr`.
///
/// # Safety
/// `old` must be equal to either the `next` or `prev` argument previously passed to the [`set`] method, or
/// `old` must be equal to the `new` argument previously passed to `replace_next_or_prev`.
///
/// An implementation of `replace_next_or_prev` must not panic.
///
/// [`set`]: #tymethod.set
unsafe fn replace_next_or_prev(
&mut self,
ptr: Self::LinkPtr,
old: Option<Self::LinkPtr>,
new: Option<Self::LinkPtr>,
);
}
// =============================================================================
// Link
// =============================================================================
/// Intrusive link that allows an object to be inserted into a
/// `XorLinkedList`.
#[repr(align(2))]
pub struct Link {
packed: Cell<usize>,
}
// Use a special value to indicate an unlinked node
const UNLINKED_MARKER: usize = 1_usize;
impl Link {
/// Creates a new `Link`.
#[inline]
pub const fn new() -> Link {
Link {
packed: Cell::new(UNLINKED_MARKER),
}
}
/// Checks whether the `Link` is linked into a `XorLinkedList`.
#[inline]
pub fn is_linked(&self) -> bool {
self.packed.get() != UNLINKED_MARKER
}
/// Forcibly unlinks an object from a `XorLinkedList`.
///
/// # Safety
///
/// It is undefined behavior to call this function while still linked into a
/// `XorLinkedList`. The only situation where this function is useful is
/// after calling `fast_clear` on a `XorLinkedList`, since this clears
/// the collection without marking the nodes as unlinked.
#[inline]
pub unsafe fn force_unlink(&self) {
self.packed.set(UNLINKED_MARKER);
}
}
impl DefaultLinkOps for Link {
type Ops = LinkOps;
const NEW: Self::Ops = LinkOps;
}
// An object containing a link can be sent to another thread if it is unlinked.
unsafe impl Send for Link {}
// Provide an implementation of Clone which simply initializes the new link as
// unlinked. This allows structs containing a link to derive Clone.
impl Clone for Link {
#[inline]
fn clone(&self) -> Link {
Link::new()
}
}
// Same as above
impl Default for Link {
#[inline]
fn default() -> Link {
Link::new()
}
}
// Provide an implementation of Debug so that structs containing a link can
// still derive Debug.
impl fmt::Debug for Link {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
// There isn't anything sensible to print here except whether the link
// is currently in a list.
if self.is_linked() {
write!(f, "linked")
} else {
write!(f, "unlinked")
}
}
}
// =============================================================================
// LinkOps
// =============================================================================
/// Default `LinkOps` implementation for `XorLinkedList`.
#[derive(Clone, Copy, Default)]
pub struct LinkOps;
unsafe impl link_ops::LinkOps for LinkOps {
type LinkPtr = NonNull<Link>;
#[inline]
unsafe fn acquire_link(&mut self, ptr: Self::LinkPtr) -> bool {
if ptr.as_ref().is_linked() {
false
} else {
ptr.as_ref().packed.set(0);
true
}
}
#[inline]
unsafe fn release_link(&mut self, ptr: Self::LinkPtr) {
ptr.as_ref().packed.set(UNLINKED_MARKER);
}
}
unsafe impl XorLinkedListOps for LinkOps {
#[inline]
unsafe fn next(
&self,
ptr: Self::LinkPtr,
prev: Option<Self::LinkPtr>,
) -> Option<Self::LinkPtr> {
let raw = ptr.as_ref().packed.get() ^ prev.map(|x| x.as_ptr() as usize).unwrap_or(0);
NonNull::new(raw as *mut _)
}
#[inline]
unsafe fn prev(
&self,
ptr: Self::LinkPtr,
next: Option<Self::LinkPtr>,
) -> Option<Self::LinkPtr> {
let raw = ptr.as_ref().packed.get() ^ next.map(|x| x.as_ptr() as usize).unwrap_or(0);
NonNull::new(raw as *mut _)
}
#[inline]
unsafe fn set(
&mut self,
ptr: Self::LinkPtr,
prev: Option<Self::LinkPtr>,
next: Option<Self::LinkPtr>,
) {
let new_packed = prev.map(|x| x.as_ptr() as usize).unwrap_or(0)
^ next.map(|x| x.as_ptr() as usize).unwrap_or(0);
ptr.as_ref().packed.set(new_packed);
}
#[inline]
unsafe fn replace_next_or_prev(
&mut self,
ptr: Self::LinkPtr,
old: Option<Self::LinkPtr>,
new: Option<Self::LinkPtr>,
) {
let new_packed = ptr.as_ref().packed.get()
^ old.map(|x| x.as_ptr() as usize).unwrap_or(0)
^ new.map(|x| x.as_ptr() as usize).unwrap_or(0);
ptr.as_ref().packed.set(new_packed);
}
}
unsafe impl SinglyLinkedListOps for LinkOps {
#[inline]
unsafe fn next(&self, ptr: Self::LinkPtr) -> Option<Self::LinkPtr> {
let raw = ptr.as_ref().packed.get();
NonNull::new(raw as *mut _)
}
#[inline]
unsafe fn set_next(&mut self, ptr: Self::LinkPtr, next: Option<Self::LinkPtr>) {
ptr.as_ref()
.packed
.set(next.map(|x| x.as_ptr() as usize).unwrap_or(0));
}
}
// =============================================================================
// AtomicLink
// =============================================================================
/// Intrusive link that allows an object to be inserted into a
/// `XorLinkedList`. This link allows the structure to be shared between threads.
#[repr(align(2))]
pub struct AtomicLink {
packed: AtomicUsize,
}
impl AtomicLink {
/// Creates a new `Link`.
#[inline]
pub const fn new() -> AtomicLink {
AtomicLink {
packed: AtomicUsize::new(UNLINKED_MARKER),
}
}
/// Checks whether the `Link` is linked into a `XorLinkedList`.
#[inline]
pub fn is_linked(&self) -> bool {
self.packed.load(core::sync::atomic::Ordering::Relaxed) != UNLINKED_MARKER
}
/// Forcibly unlinks an object from a `XorLinkedList`.
///
/// # Safety
///
/// It is undefined behavior to call this function while still linked into a
/// `XorLinkedList`. The only situation where this function is useful is
/// after calling `fast_clear` on a `XorLinkedList`, since this clears
/// the collection without marking the nodes as unlinked.
#[inline]
pub unsafe fn force_unlink(&self) {
self.packed.store(UNLINKED_MARKER, Ordering::Release);
}
/// Access the `packed` pointer in an exclusive context.
///
/// # Safety
///
/// This can only be called after `acquire_link` has been succesfully called.
#[inline]
unsafe fn packed_exclusive(&self) -> &Cell<usize> {
// This is safe because currently AtomicUsize has the same representation Cell<usize>.
core::mem::transmute(&self.packed)
}
}
impl DefaultLinkOps for AtomicLink {
type Ops = AtomicLinkOps;
const NEW: Self::Ops = AtomicLinkOps;
}
// An object containing a link can be sent to another thread since `acquire_link` is atomic.
unsafe impl Send for AtomicLink {}
// An object containing a link can be shared between threads since `acquire_link` is atomic.
unsafe impl Sync for AtomicLink {}
impl Clone for AtomicLink {
#[inline]
fn clone(&self) -> AtomicLink {
AtomicLink::new()
}
}
impl Default for AtomicLink {
#[inline]
fn default() -> AtomicLink {
AtomicLink::new()
}
}
// Provide an implementation of Debug so that structs containing a link can
// still derive Debug.
impl fmt::Debug for AtomicLink {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
// There isn't anything sensible to print here except whether the link
// is currently in a list.
if self.is_linked() {
write!(f, "linked")
} else {
write!(f, "unlinked")
}
}
}
// =============================================================================
// AtomicLinkOps
// =============================================================================
/// Default `AtomicLinkOps` implementation for `LinkedList`.
#[derive(Clone, Copy, Default)]
pub struct AtomicLinkOps;
const LINKED_DEFAULT_VALUE: usize = 0;
unsafe impl link_ops::LinkOps for AtomicLinkOps {
type LinkPtr = NonNull<AtomicLink>;
#[inline]
unsafe fn acquire_link(&mut self, ptr: Self::LinkPtr) -> bool {
ptr.as_ref()
.packed
.compare_exchange(
UNLINKED_MARKER,
LINKED_DEFAULT_VALUE,
Ordering::Acquire,
Ordering::Relaxed,
)
.is_ok()
}
#[inline]
unsafe fn release_link(&mut self, ptr: Self::LinkPtr) {
ptr.as_ref()
.packed
.store(UNLINKED_MARKER, Ordering::Release)
}
}
unsafe impl XorLinkedListOps for AtomicLinkOps {
#[inline]
unsafe fn next(
&self,
ptr: Self::LinkPtr,
prev: Option<Self::LinkPtr>,
) -> Option<Self::LinkPtr> {
let raw =
ptr.as_ref().packed_exclusive().get() ^ prev.map(|x| x.as_ptr() as usize).unwrap_or(0);
NonNull::new(raw as *mut _)
}
#[inline]
unsafe fn prev(
&self,
ptr: Self::LinkPtr,
next: Option<Self::LinkPtr>,
) -> Option<Self::LinkPtr> {
let raw =
ptr.as_ref().packed_exclusive().get() ^ next.map(|x| x.as_ptr() as usize).unwrap_or(0);
NonNull::new(raw as *mut _)
}
#[inline]
unsafe fn set(
&mut self,
ptr: Self::LinkPtr,
prev: Option<Self::LinkPtr>,
next: Option<Self::LinkPtr>,
) {
let new_packed = prev.map(|x| x.as_ptr() as usize).unwrap_or(0)
^ next.map(|x| x.as_ptr() as usize).unwrap_or(0);
ptr.as_ref().packed_exclusive().set(new_packed);
}
#[inline]
unsafe fn replace_next_or_prev(
&mut self,
ptr: Self::LinkPtr,
old: Option<Self::LinkPtr>,
new: Option<Self::LinkPtr>,
) {
let new_packed = ptr.as_ref().packed_exclusive().get()
^ old.map(|x| x.as_ptr() as usize).unwrap_or(0)
^ new.map(|x| x.as_ptr() as usize).unwrap_or(0);
ptr.as_ref().packed_exclusive().set(new_packed);
}
}
unsafe impl SinglyLinkedListOps for AtomicLinkOps {
#[inline]
unsafe fn next(&self, ptr: Self::LinkPtr) -> Option<Self::LinkPtr> {
let raw = ptr.as_ref().packed_exclusive().get();
NonNull::new(raw as *mut _)
}
#[inline]
unsafe fn set_next(&mut self, ptr: Self::LinkPtr, next: Option<Self::LinkPtr>) {
ptr.as_ref()
.packed_exclusive()
.set(next.map(|x| x.as_ptr() as usize).unwrap_or(0));
}
}
#[inline]
unsafe fn link_between<T: XorLinkedListOps>(
link_ops: &mut T,
ptr: T::LinkPtr,
prev: Option<T::LinkPtr>,
next: Option<T::LinkPtr>,
) {
if let Some(prev) = prev {
let prev_of_prev = link_ops.prev(prev, next);
link_ops.set(prev, prev_of_prev, Some(ptr));
}
if let Some(next) = next {
let next_of_next = link_ops.next(next, prev);
link_ops.set(next, Some(ptr), next_of_next);
}
link_ops.set(ptr, prev, next);
}
// =============================================================================
// Cursor, CursorMut, CursorOwning
// =============================================================================
/// A cursor which provides read-only access to a `XorLinkedList`.
pub struct Cursor<'a, A: Adapter>
where
A::LinkOps: XorLinkedListOps,
{
current: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
prev: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
next: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
list: &'a XorLinkedList<A>,
}
impl<'a, A: Adapter> Clone for Cursor<'a, A>
where
A::LinkOps: XorLinkedListOps,
{
#[inline]
fn clone(&self) -> Cursor<'a, A> {
Cursor {
current: self.current,
prev: self.prev,
next: self.next,
list: self.list,
}
}
}
impl<'a, A: Adapter> Cursor<'a, A>
where
A::LinkOps: XorLinkedListOps,
{
/// Checks if the cursor is currently pointing to the null object.
#[inline]
pub fn is_null(&self) -> bool {
self.current.is_none()
}
/// Returns a reference to the object that the cursor is currently
/// pointing to.
///
/// This returns `None` if the cursor is currently pointing to the null
/// object.
#[inline]
pub fn get(&self) -> Option<&'a <A::PointerOps as PointerOps>::Value> {
Some(unsafe { &*self.list.adapter.get_value(self.current?) })
}
/// Clones and returns the pointer that points to the element that the
/// cursor is referencing.
///
/// This returns `None` if the cursor is currently pointing to the null
/// object.
#[inline]
pub fn clone_pointer(&self) -> Option<<A::PointerOps as PointerOps>::Pointer>
where
<A::PointerOps as PointerOps>::Pointer: Clone,
{
let raw_pointer = unsafe { self.list.adapter.get_value(self.current?) };
Some(unsafe {
crate::pointer_ops::clone_pointer_from_raw(self.list.adapter.pointer_ops(), raw_pointer)
})
}
/// Moves the cursor to the next element of the `XorLinkedList`.
///
/// If the cursor is pointer to the null object then this will move it to
/// the first element of the `XorLinkedList`. If it is pointing to the
/// last element of the `XorLinkedList` then this will move it to the
/// null object.
#[inline]
pub fn move_next(&mut self) {
let prev = self.current;
self.current = self.next;
unsafe {
if let Some(current) = self.current {
self.prev = prev;
self.next = self.list.adapter.link_ops().next(current, prev);
} else {
self.prev = self.list.tail;
self.next = self.list.head;
}
}
}
/// Moves the cursor to the previous element of the `XorLinkedList`.
///
/// If the cursor is pointer to the null object then this will move it to
/// the last element of the `XorLinkedList`. If it is pointing to the first
/// element of the `XorLinkedList` then this will move it to the null object.
#[inline]
pub fn move_prev(&mut self) {
let next = self.current;
self.current = self.prev;
unsafe {
if let Some(current) = self.current {
self.prev = self.list.adapter.link_ops().prev(current, next);
self.next = next;
} else {
self.prev = self.list.tail;
self.next = self.list.head;
}
}
}
/// Returns a cursor pointing to the next element of the `XorLinkedList`.
///
/// If the cursor is pointer to the null object then this will return the
/// first element of the `XorLinkedList`. If it is pointing to the last
/// element of the `XorLinkedList` then this will return a null cursor.
#[inline]
pub fn peek_next(&self) -> Cursor<'_, A> {
let mut next = self.clone();
next.move_next();
next
}
/// Returns a cursor pointing to the previous element of the `XorLinkedList`.
///
/// If the cursor is pointer to the null object then this will return the
/// last element of the `XorLinkedList`. If it is pointing to the first
/// element of the `XorLinkedList` then this will return a null cursor.
#[inline]
pub fn peek_prev(&self) -> Cursor<'_, A> {
let mut prev = self.clone();
prev.move_prev();
prev
}
}
/// A cursor which provides mutable access to a `XorLinkedList`.
pub struct CursorMut<'a, A: Adapter>
where
A::LinkOps: XorLinkedListOps,
{
current: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
prev: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
next: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
list: &'a mut XorLinkedList<A>,
}
impl<'a, A: Adapter> CursorMut<'a, A>
where
A::LinkOps: XorLinkedListOps,
{
/// Checks if the cursor is currently pointing to the null object.
#[inline]
pub fn is_null(&self) -> bool {
self.current.is_none()
}
/// Returns a reference to the object that the cursor is currently
/// pointing to.
///
/// This returns None if the cursor is currently pointing to the null
/// object.
#[inline]
pub fn get(&self) -> Option<&<A::PointerOps as PointerOps>::Value> {
Some(unsafe { &*self.list.adapter.get_value(self.current?) })
}
/// Returns a read-only cursor pointing to the current element.
///
/// The lifetime of the returned `Cursor` is bound to that of the
/// `CursorMut`, which means it cannot outlive the `CursorMut` and that the
/// `CursorMut` is frozen for the lifetime of the `Cursor`.
#[inline]
pub fn as_cursor(&self) -> Cursor<'_, A> {
Cursor {
current: self.current,
prev: self.prev,
next: self.next,
list: self.list,
}
}
/// Moves the cursor to the next element of the `XorLinkedList`.
///
/// If the cursor is pointer to the null object then this will move it to
/// the first element of the `XorLinkedList`. If it is pointing to the
/// last element of the `XorLinkedList` then this will move it to the
/// null object.
#[inline]
pub fn move_next(&mut self) {
let prev = self.current;
self.current = self.next;
unsafe {
if let Some(current) = self.current {
self.prev = prev;
self.next = self.list.adapter.link_ops().next(current, prev);
} else {
self.prev = self.list.tail;
self.next = self.list.head;
}
}
}
/// Moves the cursor to the previous element of the `XorLinkedList`.
///
/// If the cursor is pointer to the null object then this will move it to
/// the last element of the `XorLinkedList`. If it is pointing to the first
/// element of the `XorLinkedList` then this will move it to the null object.
#[inline]
pub fn move_prev(&mut self) {
let next = self.current;
self.current = self.prev;
unsafe {
if let Some(current) = self.current {
self.prev = self.list.adapter.link_ops().prev(current, next);
self.next = next;
} else {
self.prev = self.list.tail;
self.next = self.list.head;
}
}
}
/// Returns a cursor pointing to the next element of the `XorLinkedList`.
///
/// If the cursor is pointer to the null object then this will return the
/// first element of the `XorLinkedList`. If it is pointing to the last
/// element of the `XorLinkedList` then this will return a null cursor.
#[inline]
pub fn peek_next(&self) -> Cursor<'_, A> {
let mut next = self.as_cursor();
next.move_next();
next
}
/// Returns a cursor pointing to the previous element of the `XorLinkedList`.
///
/// If the cursor is pointer to the null object then this will return the
/// last element of the `XorLinkedList`. If it is pointing to the first
/// element of the `XorLinkedList` then this will return a null cursor.
#[inline]
pub fn peek_prev(&self) -> Cursor<'_, A> {
let mut prev = self.as_cursor();
prev.move_prev();
prev
}
/// Removes the current element from the `XorLinkedList`.
///
/// A pointer to the element that was removed is returned, and the cursor is
/// moved to point to the next element in the `XorLinkedList`.
///
/// If the cursor is currently pointing to the null object then no element
/// is removed and `None` is returned.
#[inline]
pub fn remove(&mut self) -> Option<<A::PointerOps as PointerOps>::Pointer> {
use link_ops::LinkOps;
unsafe {
let current = self.current?;
let result = current;
self.list.adapter.link_ops_mut().release_link(current);
if let Some(prev) = self.prev {
self.list.adapter.link_ops_mut().replace_next_or_prev(
prev,
Some(current),
self.next,
);
}
if let Some(next) = self.next {
self.list.adapter.link_ops_mut().replace_next_or_prev(
next,
Some(current),
self.prev,
);
}
if self.list.head == Some(current) {
self.list.head = self.next;
}
if self.list.tail == Some(current) {
self.list.tail = self.prev;
}
self.current = self.next;
if let Some(current) = self.current {
self.next = self.list.adapter.link_ops().next(current, self.prev);
} else {
self.prev = self.list.tail;
self.next = self.list.head;
}
Some(
self.list
.adapter
.pointer_ops()
.from_raw(self.list.adapter.get_value(result)),
)
}
}
/// Removes the current element from the `XorLinkedList` and inserts another
/// object in its place.
///
/// A pointer to the element that was removed is returned, and the cursor is
/// modified to point to the newly added element.
///
/// If the cursor is currently pointing to the null object then an error is
/// returned containing the given `val` parameter.
///
/// # Panics
///
/// Panics if the new element is already linked to a different intrusive
/// collection.
#[inline]
pub fn replace_with(
&mut self,
val: <A::PointerOps as PointerOps>::Pointer,
) -> Result<<A::PointerOps as PointerOps>::Pointer, <A::PointerOps as PointerOps>::Pointer>
{
use link_ops::LinkOps;
unsafe {
if let Some(current) = self.current {
let new = self.list.node_from_value(val);
let result = current;
if self.list.head == Some(current) {
self.list.head = Some(new);
}
if self.list.tail == Some(current) {
self.list.tail = Some(new);
}
if let Some(prev) = self.prev {
self.list.adapter.link_ops_mut().replace_next_or_prev(
prev,
Some(current),
Some(new),
);
}
if let Some(next) = self.next {
self.list.adapter.link_ops_mut().replace_next_or_prev(
next,
Some(current),
Some(new),
);
}
self.list
.adapter
.link_ops_mut()
.set(new, self.prev, self.next);
self.list.adapter.link_ops_mut().release_link(result);
self.current = Some(new);
Ok(self
.list
.adapter
.pointer_ops()
.from_raw(self.list.adapter.get_value(result)))
} else {
Err(val)
}
}
}
/// Inserts a new element into the `XorLinkedList` after the current one.
///
/// If the cursor is pointing at the null object then the new element is
/// inserted at the front of the `XorLinkedList`.
///
/// # Panics
///
/// Panics if the new element is already linked to a different intrusive
/// collection.
#[inline]
pub fn insert_after(&mut self, val: <A::PointerOps as PointerOps>::Pointer) {
unsafe {
let new = self.list.node_from_value(val);
if let Some(current) = self.current {
link_between(
self.list.adapter.link_ops_mut(),
new,
Some(current),
self.next,
);
if self.next.is_none() {
// Current pointer was tail
self.list.tail = Some(new);
}
self.next = Some(new);
} else {
link_between(self.list.adapter.link_ops_mut(), new, None, self.list.head);
self.list.head = Some(new);
if self.list.tail.is_none() {
self.list.tail = Some(new);
}
self.prev = self.list.tail;
self.next = self.list.head;
}
}
}
/// Inserts a new element into the `XorLinkedList` before the current one.
///
/// If the cursor is pointing at the null object then the new element is
/// inserted at the end of the `XorLinkedList`.
///
/// # Panics
///
/// Panics if the new element is already linked to a different intrusive
/// collection.
#[inline]
pub fn insert_before(&mut self, val: <A::PointerOps as PointerOps>::Pointer) {
unsafe {
let new = self.list.node_from_value(val);
if let Some(current) = self.current {
link_between(
self.list.adapter.link_ops_mut(),
new,
self.prev,
Some(current),
);
if self.prev.is_none() {
// Current pointer was tail
self.list.head = Some(new);
}
self.prev = Some(new);
} else {
link_between(self.list.adapter.link_ops_mut(), new, self.list.tail, None);
self.list.tail = Some(new);
if self.list.head.is_none() {
self.list.head = Some(new);
}
self.prev = self.list.tail;
self.next = self.list.head;
}
}
}
/// Inserts the elements from the given `XorLinkedList` after the current one.
///
/// If the cursor is pointing at the null object then the new elements are
/// inserted at the start of the `XorLinkedList`.
#[inline]
pub fn splice_after(&mut self, mut list: XorLinkedList<A>) {
if !list.is_empty() {
unsafe {
let head = list.head.unwrap_unchecked();
let tail = list.tail.unwrap_unchecked();
let link_ops = self.list.adapter.link_ops_mut();
if let Some(current) = self.current {
if let Some(next) = self.next {
link_ops.replace_next_or_prev(next, Some(current), Some(tail));
link_ops.replace_next_or_prev(tail, None, Some(next));
}
link_ops.replace_next_or_prev(head, None, Some(current));
self.next = list.head;
link_ops.set(current, self.prev, self.next);
} else {
if let Some(x) = self.list.head {
link_ops.replace_next_or_prev(tail, None, Some(x));
link_ops.replace_next_or_prev(x, None, Some(tail));
}
self.list.head = list.head;
self.next = list.head;
}
if self.list.tail == self.current {
self.list.tail = list.tail;
}
list.head = None;
list.tail = None;
}
}
}
/// Moves all element from the given `XorLinkedList` before the current one.
///
/// If the cursor is pointing at the null object then the new elements are
/// inserted at the end of the `XorLinkedList`.
#[inline]
pub fn splice_before(&mut self, mut list: XorLinkedList<A>) {
if !list.is_empty() {
unsafe {
let head = list.head.unwrap_unchecked();
let tail = list.tail.unwrap_unchecked();
let link_ops = self.list.adapter.link_ops_mut();
if let Some(current) = self.current {
if let Some(prev) = self.prev {
link_ops.replace_next_or_prev(prev, Some(current), Some(head));
link_ops.replace_next_or_prev(head, None, Some(prev));
}
link_ops.replace_next_or_prev(tail, None, Some(current));
self.prev = list.tail;
link_ops.set(current, self.prev, self.next);
} else {
if let Some(x) = self.list.tail {
link_ops.replace_next_or_prev(head, None, Some(x));
link_ops.replace_next_or_prev(x, None, Some(head));
}
self.list.head = list.head;
self.next = list.head;
}
if self.list.tail == self.current {
self.list.tail = list.tail;
}
list.head = None;
list.tail = None;
}
}
}
/// Splits the list into two after the current element. This will return a
/// new list consisting of everything after the cursor, with the original
/// list retaining everything before.
///
/// If the cursor is pointing at the null object then the entire contents
/// of the `XorLinkedList` are moved.
#[inline]
pub fn split_after(&mut self) -> XorLinkedList<A>
where
A: Clone,
{
if let Some(current) = self.current {
unsafe {
let mut list = XorLinkedList {
head: self.next,
tail: self.list.tail,
adapter: self.list.adapter.clone(),
};
if let Some(head) = list.head {
self.list.adapter.link_ops_mut().replace_next_or_prev(
head,
Some(current),
None,
);
self.next = None;
} else {
list.tail = None;
}
self.list
.adapter
.link_ops_mut()
.set(current, self.prev, None);
self.list.tail = self.current;
list
}
} else {
let list = XorLinkedList {
head: self.list.head,
tail: self.list.tail,
adapter: self.list.adapter.clone(),
};
self.list.head = None;
self.list.tail = None;
list
}
}
/// Splits the list into two before the current element. This will return a
/// new list consisting of everything before the cursor, with the original
/// list retaining everything after.
///
/// If the cursor is pointing at the null object then the entire contents
/// of the `XorLinkedList` are moved.
#[inline]
pub fn split_before(&mut self) -> XorLinkedList<A>
where
A: Clone,
{
if let Some(current) = self.current {
unsafe {
let mut list = XorLinkedList {
head: self.list.head,
tail: self.prev,
adapter: self.list.adapter.clone(),
};
if let Some(tail) = list.tail {
self.list.adapter.link_ops_mut().replace_next_or_prev(
tail,
Some(current),
None,
);
self.prev = None;
} else {
list.head = None;
}
self.list
.adapter
.link_ops_mut()
.set(current, None, self.next);
self.list.head = self.current;
list
}
} else {
let list = XorLinkedList {
head: self.list.head,
tail: self.list.tail,
adapter: self.list.adapter.clone(),
};
self.list.head = None;
self.list.tail = None;
list
}
}
/// Consumes `CursorMut` and returns a reference to the object that
/// the cursor is currently pointing to. Unlike [get](Self::get),
/// the returned reference's lifetime is tied to `XorLinkedList`'s lifetime.
///
/// This returns None if the cursor is currently pointing to the null object.
#[inline]
pub fn into_ref(self) -> Option<&'a <A::PointerOps as PointerOps>::Value> {
Some(unsafe { &*self.list.adapter.get_value(self.current?) })
}
}
/// A cursor with ownership over the `XorLinkedList` it points into.
pub struct CursorOwning<A: Adapter>
where
A::LinkOps: XorLinkedListOps,
{
current: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
prev: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
next: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
list: XorLinkedList<A>,
}
impl<A: Adapter> CursorOwning<A>
where
A::LinkOps: XorLinkedListOps,
{
/// Consumes self and returns the inner `XorLinkedList`.
#[inline]
pub fn into_inner(self) -> XorLinkedList<A> {
self.list
}
/// Returns a read-only cursor pointing to the current element.
///
/// The lifetime of the returned `Cursor` is bound to that of the
/// `CursorOwning`, which means it cannot outlive the `CursorOwning` and that the
/// `CursorOwning` is frozen for the lifetime of the `Cursor`.
///
/// Mutations of the returned cursor are _not_ reflected in the original.
#[inline]
pub fn as_cursor(&self) -> Cursor<'_, A> {
Cursor {
current: self.current,
prev: self.prev,
next: self.next,
list: &self.list,
}
}
/// Perform action with mutable reference to the cursor.
///
/// All mutations of the cursor are reflected in the original.
#[inline]
pub fn with_cursor_mut<T>(&mut self, f: impl FnOnce(&mut CursorMut<'_, A>) -> T) -> T {
let mut cursor = CursorMut {
current: self.current,
prev: self.prev,
next: self.next,
list: &mut self.list,
};
let ret = f(&mut cursor);
self.current = cursor.current;
self.prev = cursor.prev;
self.next = cursor.next;
ret
}
}
unsafe impl<A: Adapter> Send for CursorOwning<A>
where
XorLinkedList<A>: Send,
A::LinkOps: XorLinkedListOps,
{
}
// =============================================================================
// XorLinkedList
// =============================================================================
/// Intrusive xor doubly-linked list which uses less memory than a regular doubly linked list
///
/// In exchange for less memory use, it is impossible to create a cursor from a pointer to
/// an element.
///
/// When this collection is dropped, all elements linked into it will be
/// converted back to owned pointers and dropped.
pub struct XorLinkedList<A: Adapter>
where
A::LinkOps: XorLinkedListOps,
{
head: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
tail: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
adapter: A,
}
impl<A: Adapter> XorLinkedList<A>
where
A::LinkOps: XorLinkedListOps,
{
#[inline]
fn node_from_value(
&mut self,
val: <A::PointerOps as PointerOps>::Pointer,
) -> <A::LinkOps as link_ops::LinkOps>::LinkPtr {
use link_ops::LinkOps;
unsafe {
let raw = self.adapter.pointer_ops().into_raw(val);
let link = self.adapter.get_link(raw);
if !self.adapter.link_ops_mut().acquire_link(link) {
// convert the node back into a pointer
self.adapter.pointer_ops().from_raw(raw);
panic!("attempted to insert an object that is already linked");
}
link
}
}
/// Creates an empty `XorLinkedList`.
#[cfg(not(feature = "nightly"))]
#[inline]
pub fn new(adapter: A) -> XorLinkedList<A> {
XorLinkedList {
head: None,
tail: None,
adapter,
}
}
/// Creates an empty `XorLinkedList`.
#[cfg(feature = "nightly")]
#[inline]
pub const fn new(adapter: A) -> XorLinkedList<A> {
XorLinkedList {
head: None,
tail: None,
adapter,
}
}
/// Returns `true` if the `XorLinkedList` is empty.
#[inline]
pub fn is_empty(&self) -> bool {
self.head.is_none()
}
/// Returns a null `Cursor` for this list.
#[inline]
pub fn cursor(&self) -> Cursor<'_, A> {
Cursor {
current: None,
prev: self.tail,
next: self.head,
list: self,
}
}
/// Returns a null `CursorMut` for this list.
#[inline]
pub fn cursor_mut(&mut self) -> CursorMut<'_, A> {
CursorMut {
current: None,
prev: self.tail,
next: self.head,
list: self,
}
}
/// Returns a null `CursorOwning` for this list.
#[inline]
pub fn cursor_owning(self) -> CursorOwning<A> {
CursorOwning {
current: None,
prev: self.tail,
next: self.head,
list: self,
}
}
/// Creates a `Cursor` from a pointer to an element and a pointer to the previous element.
///
/// # Safety
///
/// `ptr` must be a pointer to an object that is part of this list.
/// `prev` must be a pointer to an object that is the previous object in this list (null for the head)
#[inline]
pub unsafe fn cursor_from_ptr_and_prev(
&self,
ptr: *const <A::PointerOps as PointerOps>::Value,
prev: *const <A::PointerOps as PointerOps>::Value,
) -> Cursor<'_, A> {
let current = self.adapter.get_link(ptr);
let prev = if !prev.is_null() {
Some(self.adapter.get_link(prev))
} else {
None
};
let next = self.adapter.link_ops().next(current, prev);
Cursor {
current: Some(current),
prev,
next,
list: self,
}
}
/// Creates a `CursorMut` from a pointer to an element and a pointer to the previous element.
///
/// # Safety
///
/// `ptr` must be a pointer to an object that is part of this list.
/// `prev` must be a pointer to an object that is the previous object in this list (null for the head)
#[inline]
pub unsafe fn cursor_mut_from_ptr_and_prev(
&mut self,
ptr: *const <A::PointerOps as PointerOps>::Value,
prev: *const <A::PointerOps as PointerOps>::Value,
) -> CursorMut<'_, A> {
let current = self.adapter.get_link(ptr);
let prev = if !prev.is_null() {
Some(self.adapter.get_link(prev))
} else {
None
};
let next = self.adapter.link_ops().next(current, prev);
CursorMut {
current: Some(current),
prev,
next,
list: self,
}
}
/// Creates a `CursorOwning` from a pointer to an element and a pointer to the previous element.
///
/// # Safety
///
/// `ptr` must be a pointer to an object that is part of this list.
/// `prev` must be a pointer to an object that is the previous object in this list (null for the head)
#[inline]
pub unsafe fn cursor_owning_from_ptr_and_prev(
self,
ptr: *const <A::PointerOps as PointerOps>::Value,
prev: *const <A::PointerOps as PointerOps>::Value,
) -> CursorOwning<A> {
let current = self.adapter.get_link(ptr);
let prev = if !prev.is_null() {
Some(self.adapter.get_link(prev))
} else {
None
};
let next = self.adapter.link_ops().next(current, prev);
CursorOwning {
current: Some(current),
prev,
next,
list: self,
}
}
/// Creates a `Cursor` from a pointer to an element and a pointer to the next element.
///
/// # Safety
///
/// `ptr` must be a pointer to an object that is part of this list.
/// `next` must be a pointer to an object that is the next object in this list (null for the tail)
#[inline]
pub unsafe fn cursor_from_ptr_and_next(
&self,
ptr: *const <A::PointerOps as PointerOps>::Value,
next: *const <A::PointerOps as PointerOps>::Value,
) -> Cursor<'_, A> {
let current = self.adapter.get_link(ptr);
let next = if !next.is_null() {
Some(self.adapter.get_link(next))
} else {
None
};
let prev = self.adapter.link_ops().prev(current, next);
Cursor {
current: Some(current),
prev,
next,
list: self,
}
}
/// Creates a `CursorMut` from a pointer to an element and a pointer to the next element.
///
/// # Safety
///
/// `ptr` must be a pointer to an object that is part of this list.
/// `next` must be a pointer to an object that is the next object in this list (null for the tail)
#[inline]
pub unsafe fn cursor_mut_from_ptr_and_next(
&mut self,
ptr: *const <A::PointerOps as PointerOps>::Value,
next: *const <A::PointerOps as PointerOps>::Value,
) -> CursorMut<'_, A> {
let current = self.adapter.get_link(ptr);
let next = if !next.is_null() {
Some(self.adapter.get_link(next))
} else {
None
};
let prev = self.adapter.link_ops().prev(current, next);
CursorMut {
current: Some(current),
prev,
next,
list: self,
}
}
/// Creates a `CursorOwning` from a pointer to an element and a pointer to the next element.
///
/// # Safety
///
/// `ptr` must be a pointer to an object that is part of this list.
/// `next` must be a pointer to an object that is the next object in this list (null for the tail)
#[inline]
pub unsafe fn cursor_owning_from_ptr_and_next(
self,
ptr: *const <A::PointerOps as PointerOps>::Value,
next: *const <A::PointerOps as PointerOps>::Value,
) -> CursorOwning<A> {
let current = self.adapter.get_link(ptr);
let next = if !next.is_null() {
Some(self.adapter.get_link(next))
} else {
None
};
let prev = self.adapter.link_ops().prev(current, next);
CursorOwning {
current: Some(current),
prev,
next,
list: self,
}
}
/// Returns a `Cursor` pointing to the first element of the list. If the
/// list is empty then a null cursor is returned.
#[inline]
pub fn front(&self) -> Cursor<'_, A> {
let mut cursor = self.cursor();
cursor.move_next();
cursor
}
/// Returns a `CursorMut` pointing to the first element of the list. If the
/// the list is empty then a null cursor is returned.
#[inline]
pub fn front_mut(&mut self) -> CursorMut<'_, A> {
let mut cursor = self.cursor_mut();
cursor.move_next();
cursor
}
/// Returns a `CursorOwning` pointing to the first element of the list. If the
/// the list is empty then a null cursor is returned.
#[inline]
pub fn front_owning(self) -> CursorOwning<A> {
let mut cursor = self.cursor_owning();
cursor.with_cursor_mut(|c| c.move_next());
cursor
}
/// Returns a `Cursor` pointing to the last element of the list. If the list
/// is empty then a null cursor is returned.
#[inline]
pub fn back(&self) -> Cursor<'_, A> {
let mut cursor = self.cursor();
cursor.move_prev();
cursor
}
/// Returns a `CursorMut` pointing to the last element of the list. If the
/// list is empty then a null cursor is returned.
#[inline]
pub fn back_mut(&mut self) -> CursorMut<'_, A> {
let mut cursor = self.cursor_mut();
cursor.move_prev();
cursor
}
/// Returns a `CursorOwning` pointing to the last element of the list. If the
/// list is empty then a null cursor is returned.
#[inline]
pub fn back_owning(self) -> CursorOwning<A> {
let mut cursor = self.cursor_owning();
cursor.with_cursor_mut(|c| c.move_prev());
cursor
}
/// Gets an iterator over the objects in the `XorLinkedList`.
#[inline]
pub fn iter(&self) -> Iter<'_, A> {
Iter {
prev_head: None,
head: self.head,
tail: self.tail,
next_tail: None,
list: self,
}
}
/// Removes all elements from the `XorLinkedList`.
///
/// This will unlink all object currently in the list, which requires
/// iterating through all elements in the `XorLinkedList`. Each element is
/// converted back to an owned pointer and then dropped.
#[inline]
pub fn clear(&mut self) {
use link_ops::LinkOps;
let mut current = self.head;
let mut prev = None;
self.head = None;
self.tail = None;
while let Some(x) = current {
unsafe {
let next = self.adapter.link_ops().next(x, prev);
self.adapter.link_ops_mut().release_link(x);
self.adapter
.pointer_ops()
.from_raw(self.adapter.get_value(x));
prev = current;
current = next;
}
}
}
/// Empties the `XorLinkedList` without unlinking or freeing objects in it.
///
/// Since this does not unlink any objects, any attempts to link these
/// objects into another `XorLinkedList` will fail but will not cause any
/// memory unsafety. To unlink those objects manually, you must call the
/// `force_unlink` function on them.
#[inline]
pub fn fast_clear(&mut self) {
self.head = None;
self.tail = None;
}
/// Takes all the elements out of the `XorLinkedList`, leaving it empty.
/// The taken elements are returned as a new `XorLinkedList`.
#[inline]
pub fn take(&mut self) -> XorLinkedList<A>
where
A: Clone,
{
let list = XorLinkedList {
head: self.head,
tail: self.tail,
adapter: self.adapter.clone(),
};
self.head = None;
self.tail = None;
list
}
/// Inserts a new element at the start of the `XorLinkedList`.
#[inline]
pub fn push_front(&mut self, val: <A::PointerOps as PointerOps>::Pointer) {
self.cursor_mut().insert_after(val);
}
/// Inserts a new element at the end of the `XorLinkedList`.
#[inline]
pub fn push_back(&mut self, val: <A::PointerOps as PointerOps>::Pointer) {
self.cursor_mut().insert_before(val);
}
/// Removes the first element of the `XorLinkedList`.
///
/// This returns `None` if the `XorLinkedList` is empty.
#[inline]
pub fn pop_front(&mut self) -> Option<<A::PointerOps as PointerOps>::Pointer> {
self.front_mut().remove()
}
/// Removes the last element of the `XorLinkedList`.
///
/// This returns `None` if the `XorLinkedList` is empty.
#[inline]
pub fn pop_back(&mut self) -> Option<<A::PointerOps as PointerOps>::Pointer> {
self.back_mut().remove()
}
/// Reverses the list in-place.
///
/// Due to the structure of `XorLinkedList`, this operation is O(1).
#[inline]
pub fn reverse(&mut self) {
core::mem::swap(&mut self.head, &mut self.tail);
}
}
// Allow read-only access to values from multiple threads
unsafe impl<A: Adapter + Sync> Sync for XorLinkedList<A>
where
<A::PointerOps as PointerOps>::Value: Sync,
A::LinkOps: XorLinkedListOps,
{
}
// Allow sending to another thread if the ownership (represented by the <A::PointerOps as PointerOps>::Pointer owned
// pointer type) can be transferred to another thread.
unsafe impl<A: Adapter + Send> Send for XorLinkedList<A>
where
<A::PointerOps as PointerOps>::Pointer: Send,
A::LinkOps: XorLinkedListOps,
{
}
// Drop all owned pointers if the collection is dropped
impl<A: Adapter> Drop for XorLinkedList<A>
where
A::LinkOps: XorLinkedListOps,
{
#[inline]
fn drop(&mut self) {
self.clear();
}
}
impl<A: Adapter> IntoIterator for XorLinkedList<A>
where
A::LinkOps: XorLinkedListOps,
{
type Item = <A::PointerOps as PointerOps>::Pointer;
type IntoIter = IntoIter<A>;
#[inline]
fn into_iter(self) -> IntoIter<A> {
IntoIter { list: self }
}
}
impl<'a, A: Adapter + 'a> IntoIterator for &'a XorLinkedList<A>
where
A::LinkOps: XorLinkedListOps,
{
type Item = &'a <A::PointerOps as PointerOps>::Value;
type IntoIter = Iter<'a, A>;
#[inline]
fn into_iter(self) -> Iter<'a, A> {
self.iter()
}
}
impl<A: Adapter + Default> Default for XorLinkedList<A>
where
A::LinkOps: XorLinkedListOps,
{
fn default() -> XorLinkedList<A> {
XorLinkedList::new(A::default())
}
}
impl<A: Adapter> fmt::Debug for XorLinkedList<A>
where
A::LinkOps: XorLinkedListOps,
<A::PointerOps as PointerOps>::Value: fmt::Debug,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list().entries(self.iter()).finish()
}
}
// =============================================================================
// Iter
// =============================================================================
/// An iterator over references to the items of a `XorLinkedList`.
pub struct Iter<'a, A: Adapter>
where
A::LinkOps: XorLinkedListOps,
{
prev_head: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
head: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
tail: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
next_tail: Option<<A::LinkOps as link_ops::LinkOps>::LinkPtr>,
list: &'a XorLinkedList<A>,
}
impl<'a, A: Adapter + 'a> Iterator for Iter<'a, A>
where
A::LinkOps: XorLinkedListOps,
{
type Item = &'a <A::PointerOps as PointerOps>::Value;
#[inline]
fn next(&mut self) -> Option<&'a <A::PointerOps as PointerOps>::Value> {
let head = self.head?;
if Some(head) == self.tail {
self.prev_head = None;
self.head = None;
self.next_tail = None;
self.tail = None;
} else {
let next = unsafe { self.list.adapter.link_ops().next(head, self.prev_head) };
self.prev_head = self.head;
self.head = next;
}
Some(unsafe { &*self.list.adapter.get_value(head) })
}
}
impl<'a, A: Adapter + 'a> DoubleEndedIterator for Iter<'a, A>
where
A::LinkOps: XorLinkedListOps,
{
#[inline]
fn next_back(&mut self) -> Option<&'a <A::PointerOps as PointerOps>::Value> {
let tail = self.tail?;
if Some(tail) == self.head {
self.prev_head = None;
self.head = None;
self.next_tail = None;
self.tail = None;
} else {
let new_tail = unsafe { self.list.adapter.link_ops().prev(tail, self.next_tail) };
self.next_tail = self.tail;
self.tail = new_tail;
}
Some(unsafe { &*self.list.adapter.get_value(tail) })
}
}
impl<'a, A: Adapter + 'a> Clone for Iter<'a, A>
where
A::LinkOps: XorLinkedListOps,
{
#[inline]
fn clone(&self) -> Iter<'a, A> {
Iter {
prev_head: self.prev_head,
head: self.head,
tail: self.tail,
next_tail: self.next_tail,
list: self.list,
}
}
}
// =============================================================================
// IntoIter
// =============================================================================
/// An iterator which consumes a `XorLinkedList`.
pub struct IntoIter<A: Adapter>
where
A::LinkOps: XorLinkedListOps,
{
list: XorLinkedList<A>,
}
impl<A: Adapter> Iterator for IntoIter<A>
where
A::LinkOps: XorLinkedListOps,
{
type Item = <A::PointerOps as PointerOps>::Pointer;
#[inline]
fn next(&mut self) -> Option<<A::PointerOps as PointerOps>::Pointer> {
self.list.pop_front()
}
}
impl<A: Adapter> DoubleEndedIterator for IntoIter<A>
where
A::LinkOps: XorLinkedListOps,
{
#[inline]
fn next_back(&mut self) -> Option<<A::PointerOps as PointerOps>::Pointer> {
self.list.pop_back()
}
}
// =============================================================================
// Tests
// =============================================================================
#[cfg(test)]
mod tests {
use crate::UnsafeRef;
use super::{CursorOwning, Link, XorLinkedList};
use core::cell::Cell;
use core::ptr;
use std::boxed::Box;
use std::fmt;
use std::format;
use std::rc::Rc;
use std::vec::Vec;
struct Obj {
link1: Link,
link2: Link,
value: u32,
}
impl fmt::Debug for Obj {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.value)
}
}
intrusive_adapter!(RcObjAdapter1 = Rc<Obj>: Obj { link1: Link });
intrusive_adapter!(RcObjAdapter2 = Rc<Obj>: Obj { link2: Link });
intrusive_adapter!(UnsafeRefObjAdapter1 = UnsafeRef<Obj>: Obj { link1: Link });
fn make_rc_obj(value: u32) -> Rc<Obj> {
Rc::new(make_obj(value))
}
fn make_obj(value: u32) -> Obj {
Obj {
link1: Link::new(),
link2: Link::default(),
value,
}
}
#[test]
fn test_link() {
let a = make_rc_obj(1);
assert!(!a.link1.is_linked());
assert!(!a.link2.is_linked());
let mut b = XorLinkedList::<RcObjAdapter1>::default();
assert!(b.is_empty());
b.cursor_mut().insert_after(a.clone());
assert!(!b.is_empty());
assert!(a.link1.is_linked());
assert!(!a.link2.is_linked());
assert_eq!(format!("{:?}", a.link1), "linked");
assert_eq!(format!("{:?}", a.link2), "unlinked");
assert_eq!(
b.front_mut().remove().unwrap().as_ref() as *const _,
a.as_ref() as *const _
);
assert!(b.is_empty());
assert!(!a.link1.is_linked());
assert!(!a.link2.is_linked());
}
#[test]
fn test_cursor() {
let a = make_rc_obj(1);
let b = make_rc_obj(2);
let c = make_rc_obj(3);
let mut l = XorLinkedList::new(RcObjAdapter1::new());
let mut cur = l.cursor_mut();
assert!(cur.is_null());
assert!(cur.get().is_none());
assert!(cur.remove().is_none());
assert_eq!(
cur.replace_with(a.clone()).unwrap_err().as_ref() as *const _,
a.as_ref() as *const _
);
cur.insert_before(a.clone());
cur.insert_before(c.clone());
cur.move_prev();
cur.insert_before(b.clone());
assert!(cur.peek_next().is_null());
cur.move_next();
assert!(cur.is_null());
cur.move_next();
assert!(cur.peek_prev().is_null());
assert!(!cur.is_null());
assert_eq!(cur.get().unwrap() as *const _, a.as_ref() as *const _);
{
let mut cur2 = cur.as_cursor();
assert_eq!(cur2.get().unwrap() as *const _, a.as_ref() as *const _);
assert_eq!(cur2.peek_next().get().unwrap().value, 2);
cur2.move_next();
assert_eq!(cur2.get().unwrap().value, 2);
cur2.move_next();
assert_eq!(cur2.peek_prev().get().unwrap().value, 2);
assert_eq!(cur2.get().unwrap() as *const _, c.as_ref() as *const _);
cur2.move_prev();
assert_eq!(cur2.get().unwrap() as *const _, b.as_ref() as *const _);
cur2.move_next();
assert_eq!(cur2.get().unwrap() as *const _, c.as_ref() as *const _);
cur2.move_next();
assert!(cur2.is_null());
assert!(cur2.clone().get().is_none());
}
assert_eq!(cur.get().unwrap() as *const _, a.as_ref() as *const _);
cur.move_next();
assert_eq!(
cur.remove().unwrap().as_ref() as *const _,
b.as_ref() as *const _
);
assert_eq!(cur.get().unwrap() as *const _, c.as_ref() as *const _);
cur.insert_after(b.clone());
assert_eq!(cur.get().unwrap() as *const _, c.as_ref() as *const _);
cur.move_prev();
assert_eq!(cur.get().unwrap() as *const _, a.as_ref() as *const _);
assert_eq!(
cur.remove().unwrap().as_ref() as *const _,
a.as_ref() as *const _
);
assert!(!a.link1.is_linked());
assert!(c.link1.is_linked());
assert_eq!(cur.get().unwrap() as *const _, c.as_ref() as *const _);
assert_eq!(
cur.replace_with(a.clone()).unwrap().as_ref() as *const _,
c.as_ref() as *const _
);
assert!(a.link1.is_linked());
assert!(!c.link1.is_linked());
assert_eq!(cur.get().unwrap() as *const _, a.as_ref() as *const _);
cur.move_next();
assert_eq!(
cur.replace_with(c.clone()).unwrap().as_ref() as *const _,
b.as_ref() as *const _
);
assert!(a.link1.is_linked());
assert!(!b.link1.is_linked());
assert!(c.link1.is_linked());
assert_eq!(cur.get().unwrap() as *const _, c.as_ref() as *const _);
}
#[test]
fn test_cursor_owning() {
struct Container {
cur: CursorOwning<RcObjAdapter1>,
}
let mut l = XorLinkedList::new(RcObjAdapter1::new());
l.push_back(make_rc_obj(1));
l.push_back(make_rc_obj(2));
l.push_back(make_rc_obj(3));
l.push_back(make_rc_obj(4));
let mut con = Container {
cur: l.cursor_owning(),
};
assert!(con.cur.as_cursor().is_null());
con.cur = con.cur.into_inner().front_owning();
assert_eq!(con.cur.as_cursor().get().unwrap().value, 1);
con.cur.with_cursor_mut(|c| c.move_next());
assert_eq!(con.cur.as_cursor().get().unwrap().value, 2);
con.cur = con.cur.into_inner().back_owning();
assert_eq!(con.cur.as_cursor().get().unwrap().value, 4);
}
#[test]
fn test_push_pop() {
let a = make_rc_obj(1);
let b = make_rc_obj(2);
let c = make_rc_obj(3);
let mut l = XorLinkedList::new(RcObjAdapter1::new());
l.push_front(a);
assert_eq!(l.iter().map(|x| x.value).collect::<Vec<_>>(), [1]);
l.push_front(b);
assert_eq!(l.iter().map(|x| x.value).collect::<Vec<_>>(), [2, 1]);
l.push_back(c);
assert_eq!(l.iter().map(|x| x.value).collect::<Vec<_>>(), [2, 1, 3]);
assert_eq!(l.pop_front().unwrap().value, 2);
assert_eq!(l.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 3]);
assert_eq!(l.pop_back().unwrap().value, 3);
assert_eq!(l.iter().map(|x| x.value).collect::<Vec<_>>(), [1]);
assert_eq!(l.pop_front().unwrap().value, 1);
assert_eq!(l.iter().map(|x| x.value).collect::<Vec<_>>(), []);
assert!(l.pop_front().is_none());
assert_eq!(l.iter().map(|x| x.value).collect::<Vec<_>>(), []);
assert!(l.pop_back().is_none());
assert_eq!(l.iter().map(|x| x.value).collect::<Vec<_>>(), []);
}
#[test]
fn test_split_splice() {
let mut l1 = XorLinkedList::new(RcObjAdapter1::new());
let mut l2 = XorLinkedList::new(RcObjAdapter1::new());
let mut l3 = XorLinkedList::new(RcObjAdapter1::new());
let a = make_rc_obj(1);
let b = make_rc_obj(2);
let c = make_rc_obj(3);
let d = make_rc_obj(4);
l1.cursor_mut().insert_before(a);
l1.cursor_mut().insert_before(b);
l1.cursor_mut().insert_before(c);
l1.cursor_mut().insert_before(d);
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 2, 3, 4]);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), []);
assert_eq!(l3.iter().map(|x| x.value).collect::<Vec<_>>(), []);
{
let mut cur = l1.front_mut();
cur.move_next();
l2 = cur.split_after();
}
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 2]);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), [3, 4]);
assert_eq!(l3.iter().map(|x| x.value).collect::<Vec<_>>(), []);
{
let mut cur = l2.back_mut();
l3 = cur.split_before();
}
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 2]);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), [4]);
assert_eq!(l3.iter().map(|x| x.value).collect::<Vec<_>>(), [3]);
{
let mut cur = l1.front_mut();
cur.splice_after(l2.take());
}
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 4, 2]);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), []);
assert_eq!(l3.iter().map(|x| x.value).collect::<Vec<_>>(), [3]);
{
let mut cur = l1.front_mut();
cur.move_next();
cur.splice_before(l3.take());
}
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 3, 4, 2]);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), []);
assert_eq!(l3.iter().map(|x| x.value).collect::<Vec<_>>(), []);
{
let mut cur = l2.cursor_mut();
cur.splice_after(l1.take());
}
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), []);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 3, 4, 2]);
assert_eq!(l3.iter().map(|x| x.value).collect::<Vec<_>>(), []);
{
let mut cur = l1.cursor_mut();
cur.splice_before(l2.take());
}
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 3, 4, 2]);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), []);
assert_eq!(l3.iter().map(|x| x.value).collect::<Vec<_>>(), []);
{
let mut cur = l1.cursor_mut();
l2 = cur.split_after();
}
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), []);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 3, 4, 2]);
assert_eq!(l3.iter().map(|x| x.value).collect::<Vec<_>>(), []);
{
let mut cur = l2.cursor_mut();
l1 = cur.split_before();
}
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 3, 4, 2]);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), []);
assert_eq!(l3.iter().map(|x| x.value).collect::<Vec<_>>(), []);
{
let mut cur = l1.front_mut();
l2 = cur.split_before();
}
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 3, 4, 2]);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), []);
assert_eq!(l3.iter().map(|x| x.value).collect::<Vec<_>>(), []);
{
let mut cur = l1.back_mut();
l2 = cur.split_after();
}
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 3, 4, 2]);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), []);
assert_eq!(l3.iter().map(|x| x.value).collect::<Vec<_>>(), []);
}
#[test]
fn test_iter() {
let mut l = XorLinkedList::new(RcObjAdapter1::new());
let a = make_rc_obj(1);
let b = make_rc_obj(2);
let c = make_rc_obj(3);
let d = make_rc_obj(4);
l.cursor_mut().insert_before(a.clone());
l.cursor_mut().insert_before(b.clone());
l.cursor_mut().insert_before(c.clone());
l.cursor_mut().insert_before(d.clone());
assert_eq!(l.front().get().unwrap().value, 1);
assert_eq!(l.back().get().unwrap().value, 4);
unsafe {
let mut cursor = l.cursor_from_ptr_and_prev(b.as_ref(), a.as_ref());
assert_eq!(cursor.get().unwrap().value, 2);
cursor.move_next();
assert_eq!(cursor.get().unwrap().value, 3);
assert_eq!(
l.cursor_mut_from_ptr_and_next(c.as_ref(), d.as_ref())
.get()
.unwrap()
.value,
3
);
assert_eq!(
l.cursor_mut_from_ptr_and_prev(a.as_ref(), ptr::null())
.get()
.unwrap()
.value,
1
);
assert_eq!(
l.cursor_mut_from_ptr_and_next(d.as_ref(), ptr::null())
.get()
.unwrap()
.value,
4
);
let mut cursor = l.cursor_from_ptr_and_next(d.as_ref(), ptr::null());
assert_eq!(cursor.get().unwrap().value, 4);
cursor.move_prev();
assert_eq!(cursor.get().unwrap().value, 3);
cursor.move_next();
assert_eq!(cursor.get().unwrap().value, 4);
cursor.move_next();
assert!(cursor.is_null());
}
let mut v = Vec::new();
for x in &l {
v.push(x.value);
}
assert_eq!(v, [1, 2, 3, 4]);
assert_eq!(
l.iter().clone().map(|x| x.value).collect::<Vec<_>>(),
[1, 2, 3, 4]
);
assert_eq!(
l.iter().rev().map(|x| x.value).collect::<Vec<_>>(),
[4, 3, 2, 1]
);
assert_eq!(l.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 2, 3, 4]);
assert_eq!(format!("{:?}", l), "[1, 2, 3, 4]");
let mut v = Vec::new();
for x in l.take() {
v.push(x.value);
}
assert_eq!(v, [1, 2, 3, 4]);
assert!(l.is_empty());
assert!(!a.link1.is_linked());
assert!(!b.link1.is_linked());
assert!(!c.link1.is_linked());
assert!(!d.link1.is_linked());
l.cursor_mut().insert_before(a.clone());
l.cursor_mut().insert_before(b.clone());
l.cursor_mut().insert_before(c.clone());
l.cursor_mut().insert_before(d.clone());
l.clear();
assert!(l.is_empty());
assert!(!a.link1.is_linked());
assert!(!b.link1.is_linked());
assert!(!c.link1.is_linked());
assert!(!d.link1.is_linked());
v.clear();
l.cursor_mut().insert_before(a.clone());
l.cursor_mut().insert_before(b.clone());
l.cursor_mut().insert_before(c.clone());
l.cursor_mut().insert_before(d.clone());
for x in l.into_iter().rev() {
v.push(x.value);
}
assert_eq!(v, [4, 3, 2, 1]);
assert!(!a.link1.is_linked());
assert!(!b.link1.is_linked());
assert!(!c.link1.is_linked());
assert!(!d.link1.is_linked());
}
#[test]
fn test_multi_list() {
let mut l1 = XorLinkedList::new(RcObjAdapter1::new());
let mut l2 = XorLinkedList::new(RcObjAdapter2::new());
let a = make_rc_obj(1);
let b = make_rc_obj(2);
let c = make_rc_obj(3);
let d = make_rc_obj(4);
l1.cursor_mut().insert_before(a.clone());
l1.cursor_mut().insert_before(b.clone());
l1.cursor_mut().insert_before(c.clone());
l1.cursor_mut().insert_before(d.clone());
l2.cursor_mut().insert_after(a);
l2.cursor_mut().insert_after(b);
l2.cursor_mut().insert_after(c);
l2.cursor_mut().insert_after(d);
assert_eq!(l1.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 2, 3, 4]);
assert_eq!(l2.iter().map(|x| x.value).collect::<Vec<_>>(), [4, 3, 2, 1]);
}
#[test]
fn test_fast_clear_force_unlink() {
let mut l = XorLinkedList::new(UnsafeRefObjAdapter1::new());
let a = UnsafeRef::from_box(Box::new(make_obj(1)));
let b = UnsafeRef::from_box(Box::new(make_obj(2)));
let c = UnsafeRef::from_box(Box::new(make_obj(3)));
l.cursor_mut().insert_before(a.clone());
l.cursor_mut().insert_before(b.clone());
l.cursor_mut().insert_before(c.clone());
l.fast_clear();
assert!(l.is_empty());
unsafe {
assert!(a.link1.is_linked());
assert!(b.link1.is_linked());
assert!(c.link1.is_linked());
a.link1.force_unlink();
b.link1.force_unlink();
c.link1.force_unlink();
assert!(l.is_empty());
assert!(!a.link1.is_linked());
assert!(!b.link1.is_linked());
assert!(!c.link1.is_linked());
}
unsafe {
UnsafeRef::into_box(a);
UnsafeRef::into_box(b);
UnsafeRef::into_box(c);
}
}
#[test]
fn test_reverse() {
let mut l = XorLinkedList::new(RcObjAdapter1::new());
l.push_back(make_rc_obj(1));
l.push_back(make_rc_obj(2));
l.push_back(make_rc_obj(3));
l.push_back(make_rc_obj(4));
assert_eq!(l.iter().map(|x| x.value).collect::<Vec<_>>(), [1, 2, 3, 4]);
l.reverse();
assert_eq!(l.iter().map(|x| x.value).collect::<Vec<_>>(), [4, 3, 2, 1]);
l.push_back(make_rc_obj(5));
l.push_back(make_rc_obj(6));
assert_eq!(
l.iter().map(|x| x.value).collect::<Vec<_>>(),
[4, 3, 2, 1, 5, 6]
);
l.reverse();
assert_eq!(
l.iter().map(|x| x.value).collect::<Vec<_>>(),
[6, 5, 1, 2, 3, 4]
);
}
#[test]
fn test_non_static() {
#[derive(Clone)]
struct Obj<'a, T> {
link: Link,
value: &'a T,
}
intrusive_adapter!(ObjAdapter<'a, T> = &'a Obj<'a, T>: Obj<'a, T> {link: Link} where T: 'a);
let v = 5;
let a = Obj {
link: Link::new(),
value: &v,
};
let b = a.clone();
let mut l = XorLinkedList::new(ObjAdapter::new());
l.cursor_mut().insert_before(&a);
l.cursor_mut().insert_before(&b);
assert_eq!(*l.front().get().unwrap().value, 5);
assert_eq!(*l.back().get().unwrap().value, 5);
}
#[test]
fn test_drop() {
#[derive(Clone)]
struct Obj<'a> {
link: Link,
value: &'a Cell<u32>,
}
impl<'a> Drop for Obj<'a> {
fn drop(&mut self) {
let val = self.value.get();
self.value.set(val + 1);
}
}
intrusive_adapter!(ObjAdapter<'a> = Box<Obj<'a>>: Obj<'a> {link: Link});
let v = Cell::new(0);
let obj = Obj {
link: Link::new(),
value: &v,
};
let mut l = XorLinkedList::new(ObjAdapter::new());
l.cursor_mut().insert_before(Box::new(obj.clone()));
l.cursor_mut().insert_before(Box::new(obj.clone()));
assert_eq!(l.front().get().unwrap().value.get(), 0);
assert_eq!(l.back().get().unwrap().value.get(), 0);
assert_eq!(v.get(), 0);
l.pop_front();
assert_eq!(v.get(), 1);
l.front_mut().insert_after(Box::new(obj.clone()));
assert_eq!(v.get(), 1);
drop(l);
assert_eq!(v.get(), 3);
}
macro_rules! test_clone_pointer {
($ptr: ident, $ptr_import: path) => {
use $ptr_import;
#[derive(Clone)]
struct Obj {
link: Link,
value: usize,
}
intrusive_adapter!(ObjAdapter = $ptr<Obj>: Obj { link: Link });
let a = $ptr::new(Obj {
link: Link::new(),
value: 5,
});
let mut l = XorLinkedList::new(ObjAdapter::new());
l.cursor_mut().insert_before(a.clone());
assert_eq!(2, $ptr::strong_count(&a));
let pointer = l.front().clone_pointer().unwrap();
assert_eq!(pointer.value, 5);
assert_eq!(3, $ptr::strong_count(&a));
l.front_mut().remove();
assert!(l.front().clone_pointer().is_none());
};
}
#[test]
fn test_clone_pointer_rc() {
test_clone_pointer!(Rc, std::rc::Rc);
}
#[test]
fn test_clone_pointer_arc() {
test_clone_pointer!(Arc, std::sync::Arc);
}
}