sled/tree.rs
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
use std::{
num::NonZeroU64,
borrow::Cow,
fmt::{self, Debug},
ops::{self, Deref, RangeBounds},
sync::atomic::Ordering::SeqCst,
};
use parking_lot::RwLock;
use crate::{atomic_shim::AtomicU64, pagecache::NodeView, *};
#[derive(Debug, Clone)]
pub(crate) struct View<'g> {
pub node_view: NodeView<'g>,
pub pid: PageId,
pub size: u64,
}
impl<'g> Deref for View<'g> {
type Target = Node;
fn deref(&self) -> &Node {
&*self.node_view
}
}
impl IntoIterator for &'_ Tree {
type Item = Result<(IVec, IVec)>;
type IntoIter = Iter;
fn into_iter(self) -> Iter {
self.iter()
}
}
/// A flash-sympathetic persistent lock-free B+ tree.
///
/// A `Tree` represents a single logical keyspace / namespace / bucket.
///
/// Separate `Trees` may be opened to separate concerns using
/// `Db::open_tree`.
///
/// `Db` implements `Deref<Target = Tree>` such that a `Db` acts
/// like the "default" `Tree`. This is the only `Tree` that cannot
/// be deleted via `Db::drop_tree`.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use sled::IVec;
///
/// # let _ = std::fs::remove_dir_all("db");
/// let db: sled::Db = sled::open("db")?;
/// db.insert(b"yo!", b"v1".to_vec());
/// assert_eq!(db.get(b"yo!"), Ok(Some(IVec::from(b"v1"))));
///
/// // Atomic compare-and-swap.
/// db.compare_and_swap(
/// b"yo!", // key
/// Some(b"v1"), // old value, None for not present
/// Some(b"v2"), // new value, None for delete
/// )?;
///
/// // Iterates over key-value pairs, starting at the given key.
/// let scan_key: &[u8] = b"a non-present key before yo!";
/// let mut iter = db.range(scan_key..);
/// assert_eq!(
/// iter.next().unwrap(),
/// Ok((IVec::from(b"yo!"), IVec::from(b"v2")))
/// );
/// assert_eq!(iter.next(), None);
///
/// db.remove(b"yo!");
/// assert_eq!(db.get(b"yo!"), Ok(None));
///
/// let other_tree: sled::Tree = db.open_tree(b"cool db facts")?;
/// other_tree.insert(
/// b"k1",
/// &b"a Db acts like a Tree due to implementing Deref<Target = Tree>"[..]
/// )?;
/// # let _ = std::fs::remove_dir_all("db");
/// # Ok(()) }
/// ```
#[derive(Clone)]
pub struct Tree(pub(crate) Arc<TreeInner>);
#[allow(clippy::module_name_repetitions)]
pub struct TreeInner {
pub(crate) tree_id: IVec,
pub(crate) context: Context,
pub(crate) subscribers: Subscribers,
pub(crate) root: AtomicU64,
pub(crate) merge_operator: RwLock<Option<Box<dyn MergeOperator>>>,
}
impl Drop for TreeInner {
fn drop(&mut self) {
// Flush the underlying system in a loop until we
// have flushed all dirty data.
loop {
match self.context.pagecache.flush() {
Ok(0) => return,
Ok(_) => continue,
Err(e) => {
error!("failed to flush data to disk: {:?}", e);
return
},
}
}
}
}
impl Deref for Tree {
type Target = TreeInner;
fn deref(&self) -> &TreeInner {
&self.0
}
}
#[allow(unsafe_code)]
unsafe impl Send for Tree {}
#[allow(unsafe_code)]
unsafe impl Sync for Tree {}
impl Tree {
#[doc(hidden)]
#[deprecated(since = "0.24.2", note = "replaced by `Tree::insert`")]
pub fn set<K, V>(&self, key: K, value: V) -> Result<Option<IVec>>
where
K: AsRef<[u8]>,
V: Into<IVec>,
{
self.insert(key, value)
}
/// Insert a key to a new value, returning the last value if it
/// was set.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// assert_eq!(db.insert(&[1, 2, 3], vec![0]), Ok(None));
/// assert_eq!(db.insert(&[1, 2, 3], vec![1]), Ok(Some(sled::IVec::from(&[0]))));
/// # Ok(()) }
/// ```
pub fn insert<K, V>(&self, key: K, value: V) -> Result<Option<IVec>>
where
K: AsRef<[u8]>,
V: Into<IVec>,
{
let value = value.into();
let mut guard = pin();
let _cc = concurrency_control::read();
loop {
trace!("setting key {:?}", key.as_ref());
if let Ok(res) =
self.insert_inner(key.as_ref(), Some(value.clone()), &mut guard)?
{
return Ok(res);
}
}
}
pub(crate) fn insert_inner(
&self,
key: &[u8],
mut value: Option<IVec>,
guard: &mut Guard,
) -> Result<Conflictable<Option<IVec>>> {
let _measure = if value.is_some() {
Measure::new(&M.tree_set)
} else {
Measure::new(&M.tree_del)
};
let View { node_view, pid, .. } =
self.view_for_key(key.as_ref(), guard)?;
let mut subscriber_reservation = self.subscribers.reserve(&key);
let (encoded_key, last_value) = node_view.node_kv_pair(key.as_ref());
if value == last_value {
// short-circuit a no-op set or delete
return Ok(Ok(value))
}
let frag = if let Some(value) = value.clone() {
Link::Set(encoded_key, value)
} else {
Link::Del(encoded_key)
};
let link = self.context.pagecache.link(
pid,
node_view.0,
frag,
guard,
)?;
if link.is_ok() {
// success
if let Some(res) = subscriber_reservation.take() {
let event = if let Some(value) = value.take() {
subscriber::Event::Insert {
key: key.as_ref().into(),
value,
}
} else {
subscriber::Event::Remove { key: key.as_ref().into() }
};
res.complete(&event);
}
guard.writeset.push(pid);
Ok(Ok(last_value))
} else {
M.tree_looped();
Ok(Err(Conflict))
}
}
/// Perform a multi-key serializable transaction.
///
/// # Examples
///
/// ```
/// # use sled::{transaction::TransactionResult, Config};
/// # fn main() -> TransactionResult<()> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// // Use write-only transactions as a writebatch:
/// db.transaction(|tx_db| {
/// tx_db.insert(b"k1", b"cats")?;
/// tx_db.insert(b"k2", b"dogs")?;
/// Ok(())
/// })?;
///
/// // Atomically swap two items:
/// db.transaction(|tx_db| {
/// let v1_option = tx_db.remove(b"k1")?;
/// let v1 = v1_option.unwrap();
/// let v2_option = tx_db.remove(b"k2")?;
/// let v2 = v2_option.unwrap();
///
/// tx_db.insert(b"k1", v2)?;
/// tx_db.insert(b"k2", v1)?;
///
/// Ok(())
/// })?;
///
/// assert_eq!(&db.get(b"k1")?.unwrap(), b"dogs");
/// assert_eq!(&db.get(b"k2")?.unwrap(), b"cats");
/// # Ok(())
/// # }
/// ```
///
/// A transaction may return information from
/// an intentionally-cancelled transaction by using
/// the abort function inside the closure in
/// combination with the try operator.
///
/// ```
/// use sled::{transaction::{abort, TransactionError, TransactionResult}, Config};
///
/// #[derive(Debug, PartialEq)]
/// struct MyBullshitError;
///
/// fn main() -> TransactionResult<(), MyBullshitError> {
/// let config = Config::new().temporary(true);
/// let db = config.open()?;
///
/// // Use write-only transactions as a writebatch:
/// let res = db.transaction(|tx_db| {
/// tx_db.insert(b"k1", b"cats")?;
/// tx_db.insert(b"k2", b"dogs")?;
/// // aborting will cause all writes to roll-back.
/// if true {
/// abort(MyBullshitError)?;
/// }
/// Ok(42)
/// }).unwrap_err();
///
/// assert_eq!(res, TransactionError::Abort(MyBullshitError));
/// assert_eq!(db.get(b"k1")?, None);
/// assert_eq!(db.get(b"k2")?, None);
///
/// Ok(())
/// }
/// ```
///
///
/// Transactions also work on tuples of `Tree`s,
/// preserving serializable ACID semantics!
/// In this example, we treat two trees like a
/// work queue, atomically apply updates to
/// data and move them from the unprocessed `Tree`
/// to the processed `Tree`.
///
/// ```
/// # use sled::transaction::TransactionResult;
/// # fn main() -> TransactionResult<()> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// use sled::Transactional;
///
/// let unprocessed = db.open_tree(b"unprocessed items")?;
/// let processed = db.open_tree(b"processed items")?;
///
/// // An update somehow gets into the tree, which we
/// // later trigger the atomic processing of.
/// unprocessed.insert(b"k3", b"ligers")?;
///
/// // Atomically process the new item and move it
/// // between `Tree`s.
/// (&unprocessed, &processed)
/// .transaction(|(tx_unprocessed, tx_processed)| {
/// let unprocessed_item = tx_unprocessed.remove(b"k3")?.unwrap();
/// let mut processed_item = b"yappin' ".to_vec();
/// processed_item.extend_from_slice(&unprocessed_item);
/// tx_processed.insert(b"k3", processed_item)?;
/// Ok(())
/// })?;
///
/// assert_eq!(unprocessed.get(b"k3").unwrap(), None);
/// assert_eq!(&processed.get(b"k3").unwrap().unwrap(), b"yappin' ligers");
/// # Ok(()) }
/// ```
pub fn transaction<F, A, E>(
&self,
f: F,
) -> transaction::TransactionResult<A, E>
where
F: Fn(
&transaction::TransactionalTree,
) -> transaction::ConflictableTransactionResult<A, E>,
{
Transactional::transaction(&self, f)
}
/// Create a new batched update that can be
/// atomically applied.
///
/// It is possible to apply a `Batch` in a transaction
/// as well, which is the way you can apply a `Batch`
/// to multiple `Tree`s atomically.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// db.insert("key_0", "val_0")?;
///
/// let mut batch = sled::Batch::default();
/// batch.insert("key_a", "val_a");
/// batch.insert("key_b", "val_b");
/// batch.insert("key_c", "val_c");
/// batch.remove("key_0");
///
/// db.apply_batch(batch)?;
/// // key_0 no longer exists, and key_a, key_b, and key_c
/// // now do exist.
/// # Ok(()) }
/// ```
pub fn apply_batch(&self, batch: Batch) -> Result<()> {
let _cc = concurrency_control::write();
let mut guard = pin();
self.apply_batch_inner(batch, &mut guard)
}
pub(crate) fn apply_batch_inner(
&self,
batch: Batch,
guard: &mut Guard,
) -> Result<()> {
let peg = self.context.pin_log(guard)?;
trace!("applying batch {:?}", batch);
for (k, v_opt) in batch.writes {
loop {
if self.insert_inner(&k, v_opt.clone(), guard)?.is_ok() {
break;
}
}
}
// when the peg drops, it ensures all updates
// written to the log since its creation are
// recovered atomically
peg.seal_batch()
}
/// Retrieve a value from the `Tree` if it exists.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// db.insert(&[0], vec![0])?;
/// assert_eq!(db.get(&[0]), Ok(Some(sled::IVec::from(vec![0]))));
/// assert_eq!(db.get(&[1]), Ok(None));
/// # Ok(()) }
/// ```
pub fn get<K: AsRef<[u8]>>(&self, key: K) -> Result<Option<IVec>> {
let mut guard = pin();
let _cc = concurrency_control::read();
loop {
if let Ok(get) = self.get_inner(key.as_ref(), &mut guard)? {
return Ok(get);
}
}
}
pub(crate) fn get_inner(
&self,
key: &[u8],
guard: &mut Guard,
) -> Result<Conflictable<Option<IVec>>> {
let _measure = Measure::new(&M.tree_get);
trace!("getting key {:?}", key);
let View { node_view, pid, .. } = self.view_for_key(key.as_ref(), guard)?;
let pair = node_view.leaf_pair_for_key(key.as_ref());
let val = pair.map(|kv| kv.1.clone());
guard.readset.push(pid);
Ok(Ok(val))
}
#[doc(hidden)]
#[deprecated(since = "0.24.2", note = "replaced by `Tree::remove`")]
pub fn del<K: AsRef<[u8]>>(&self, key: K) -> Result<Option<IVec>> {
self.remove(key)
}
/// Delete a value, returning the old value if it existed.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// db.insert(&[1], vec![1]);
/// assert_eq!(db.remove(&[1]), Ok(Some(sled::IVec::from(vec![1]))));
/// assert_eq!(db.remove(&[1]), Ok(None));
/// # Ok(()) }
/// ```
pub fn remove<K: AsRef<[u8]>>(&self, key: K) -> Result<Option<IVec>> {
let mut guard = pin();
let _cc = concurrency_control::read();
loop {
trace!("removing key {:?}", key.as_ref());
if let Ok(res) = self.insert_inner(key.as_ref(), None, &mut guard)? {
return Ok(res);
}
}
}
/// Compare and swap. Capable of unique creation, conditional modification,
/// or deletion. If old is `None`, this will only set the value if it
/// doesn't exist yet. If new is `None`, will delete the value if old is
/// correct. If both old and new are `Some`, will modify the value if
/// old is correct.
///
/// It returns `Ok(Ok(()))` if operation finishes successfully.
///
/// If it fails it returns:
/// - `Ok(Err(CompareAndSwapError(current, proposed)))` if operation
/// failed to setup a new value. `CompareAndSwapError` contains
/// current and proposed values.
/// - `Err(Error::Unsupported)` if the database is opened in read-only
/// mode.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// // unique creation
/// assert_eq!(
/// db.compare_and_swap(&[1], None as Option<&[u8]>, Some(&[10])),
/// Ok(Ok(()))
/// );
///
/// // conditional modification
/// assert_eq!(
/// db.compare_and_swap(&[1], Some(&[10]), Some(&[20])),
/// Ok(Ok(()))
/// );
///
/// // failed conditional modification -- the current value is returned in
/// // the error variant
/// let operation = db.compare_and_swap(&[1], Some(&[30]), Some(&[40]));
/// assert!(operation.is_ok()); // the operation succeeded
/// let modification = operation.unwrap();
/// assert!(modification.is_err());
/// let actual_value = modification.unwrap_err();
/// assert_eq!(actual_value.current.map(|ivec| ivec.to_vec()), Some(vec![20]));
///
/// // conditional deletion
/// assert_eq!(
/// db.compare_and_swap(&[1], Some(&[20]), None as Option<&[u8]>),
/// Ok(Ok(()))
/// );
/// assert_eq!(db.get(&[1]), Ok(None));
/// # Ok(()) }
/// ```
#[allow(clippy::needless_pass_by_value)]
pub fn compare_and_swap<K, OV, NV>(
&self,
key: K,
old: Option<OV>,
new: Option<NV>,
) -> CompareAndSwapResult
where
K: AsRef<[u8]>,
OV: AsRef<[u8]>,
NV: Into<IVec>,
{
trace!("cas'ing key {:?}", key.as_ref());
let _measure = Measure::new(&M.tree_cas);
let guard = pin();
let _cc = concurrency_control::read();
let new = new.map(Into::into);
// we need to retry caps until old != cur, since just because
// cap fails it doesn't mean our value was changed.
loop {
let View { pid, node_view, .. } =
self.view_for_key(key.as_ref(), &guard)?;
let (encoded_key, current_value) =
node_view.node_kv_pair(key.as_ref());
let matches = match (old.as_ref(), ¤t_value) {
(None, None) => true,
(Some(o), Some(ref c)) => o.as_ref() == &**c,
_ => false,
};
if !matches {
return Ok(Err(CompareAndSwapError {
current: current_value,
proposed: new,
}));
}
let mut subscriber_reservation = self.subscribers.reserve(&key);
let frag = if let Some(ref new) = new {
Link::Set(encoded_key, new.clone())
} else {
Link::Del(encoded_key)
};
let link =
self.context.pagecache.link(pid, node_view.0, frag, &guard)?;
if link.is_ok() {
if let Some(res) = subscriber_reservation.take() {
let event = if let Some(new) = new {
subscriber::Event::Insert {
key: key.as_ref().into(),
value: new,
}
} else {
subscriber::Event::Remove { key: key.as_ref().into() }
};
res.complete(&event);
}
return Ok(Ok(()));
}
M.tree_looped();
}
}
/// Fetch the value, apply a function to it and return the result.
///
/// # Note
///
/// This may call the function multiple times if the value has been
/// changed from other threads in the meantime.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use sled::{Config, Error, IVec};
/// use std::convert::TryInto;
///
/// let config = Config::new().temporary(true);
/// let db = config.open()?;
///
/// fn u64_to_ivec(number: u64) -> IVec {
/// IVec::from(number.to_be_bytes().to_vec())
/// }
///
/// let zero = u64_to_ivec(0);
/// let one = u64_to_ivec(1);
/// let two = u64_to_ivec(2);
/// let three = u64_to_ivec(3);
///
/// fn increment(old: Option<&[u8]>) -> Option<Vec<u8>> {
/// let number = match old {
/// Some(bytes) => {
/// let array: [u8; 8] = bytes.try_into().unwrap();
/// let number = u64::from_be_bytes(array);
/// number + 1
/// }
/// None => 0,
/// };
///
/// Some(number.to_be_bytes().to_vec())
/// }
///
/// assert_eq!(db.update_and_fetch("counter", increment), Ok(Some(zero)));
/// assert_eq!(db.update_and_fetch("counter", increment), Ok(Some(one)));
/// assert_eq!(db.update_and_fetch("counter", increment), Ok(Some(two)));
/// assert_eq!(db.update_and_fetch("counter", increment), Ok(Some(three)));
/// # Ok(()) }
/// ```
pub fn update_and_fetch<K, V, F>(
&self,
key: K,
mut f: F,
) -> Result<Option<IVec>>
where
K: AsRef<[u8]>,
F: FnMut(Option<&[u8]>) -> Option<V>,
V: Into<IVec>,
{
let key_ref = key.as_ref();
let mut current = self.get(key_ref)?;
loop {
let tmp = current.as_ref().map(AsRef::as_ref);
let next = f(tmp).map(Into::into);
match self.compare_and_swap::<_, _, IVec>(
key_ref,
tmp,
next.clone(),
)? {
Ok(()) => return Ok(next),
Err(CompareAndSwapError { current: cur, .. }) => {
current = cur;
}
}
}
}
/// Fetch the value, apply a function to it and return the previous value.
///
/// # Note
///
/// This may call the function multiple times if the value has been
/// changed from other threads in the meantime.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use sled::{Config, Error, IVec};
/// use std::convert::TryInto;
///
/// let config = Config::new().temporary(true);
/// let db = config.open()?;
///
/// fn u64_to_ivec(number: u64) -> IVec {
/// IVec::from(number.to_be_bytes().to_vec())
/// }
///
/// let zero = u64_to_ivec(0);
/// let one = u64_to_ivec(1);
/// let two = u64_to_ivec(2);
///
/// fn increment(old: Option<&[u8]>) -> Option<Vec<u8>> {
/// let number = match old {
/// Some(bytes) => {
/// let array: [u8; 8] = bytes.try_into().unwrap();
/// let number = u64::from_be_bytes(array);
/// number + 1
/// }
/// None => 0,
/// };
///
/// Some(number.to_be_bytes().to_vec())
/// }
///
/// assert_eq!(db.fetch_and_update("counter", increment), Ok(None));
/// assert_eq!(db.fetch_and_update("counter", increment), Ok(Some(zero)));
/// assert_eq!(db.fetch_and_update("counter", increment), Ok(Some(one)));
/// assert_eq!(db.fetch_and_update("counter", increment), Ok(Some(two)));
/// # Ok(()) }
/// ```
pub fn fetch_and_update<K, V, F>(
&self,
key: K,
mut f: F,
) -> Result<Option<IVec>>
where
K: AsRef<[u8]>,
F: FnMut(Option<&[u8]>) -> Option<V>,
V: Into<IVec>,
{
let key_ref = key.as_ref();
let mut current = self.get(key_ref)?;
loop {
let tmp = current.as_ref().map(AsRef::as_ref);
let next = f(tmp);
match self.compare_and_swap(key_ref, tmp, next)? {
Ok(()) => return Ok(current),
Err(CompareAndSwapError { current: cur, .. }) => {
current = cur;
}
}
}
}
/// Subscribe to `Event`s that happen to keys that have
/// the specified prefix. Events for particular keys are
/// guaranteed to be witnessed in the same order by all
/// threads, but threads may witness different interleavings
/// of `Event`s across different keys. If subscribers don't
/// keep up with new writes, they will cause new writes
/// to block. There is a buffer of 1024 items per
/// `Subscriber`. This can be used to build reactive
/// and replicated systems.
///
/// `Subscriber` implements both `Iterator<Item = Event>`
/// and `Future<Output=Option<Event>>`
///
/// # Examples
///
/// Synchronous, blocking subscriber:
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// // watch all events by subscribing to the empty prefix
/// let mut subscriber = db.watch_prefix(vec![]);
///
/// let tree_2 = db.clone();
/// let thread = std::thread::spawn(move || {
/// db.insert(vec![0], vec![1])
/// });
///
/// // `Subscription` implements `Iterator<Item=Event>`
/// for event in subscriber.take(1) {
/// match event {
/// sled::Event::Insert{ key, value } => assert_eq!(key.as_ref(), &[0]),
/// sled::Event::Remove {key } => {}
/// }
/// }
///
/// # thread.join().unwrap();
/// # Ok(()) }
/// ```
/// Aynchronous, non-blocking subscriber:
///
/// `Subscription` implements `Future<Output=Option<Event>>`.
///
/// `while let Some(event) = (&mut subscriber).await { /* use it */ }`
pub fn watch_prefix<P: AsRef<[u8]>>(&self, prefix: P) -> Subscriber {
self.subscribers.register(prefix.as_ref())
}
/// Synchronously flushes all dirty IO buffers and calls
/// fsync. If this succeeds, it is guaranteed that all
/// previous writes will be recovered if the system
/// crashes. Returns the number of bytes flushed during
/// this call.
///
/// Flushing can take quite a lot of time, and you should
/// measure the performance impact of using it on
/// realistic sustained workloads running on realistic
/// hardware.
pub fn flush(&self) -> Result<usize> {
self.context.pagecache.flush()
}
/// Asynchronously flushes all dirty IO buffers
/// and calls fsync. If this succeeds, it is
/// guaranteed that all previous writes will
/// be recovered if the system crashes. Returns
/// the number of bytes flushed during this call.
///
/// Flushing can take quite a lot of time, and you
/// should measure the performance impact of
/// using it on realistic sustained workloads
/// running on realistic hardware.
// this clippy check is mis-firing on async code.
#[allow(clippy::used_underscore_binding)]
pub async fn flush_async(&self) -> Result<usize> {
let pagecache = self.context.pagecache.clone();
if let Some(result) = threadpool::spawn(move || pagecache.flush())?.await
{
result
} else {
Err(Error::ReportableBug(
"threadpool failed to complete \
action before shutdown"
.to_string(),
))
}
}
/// Returns `true` if the `Tree` contains a value for
/// the specified key.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// db.insert(&[0], vec![0])?;
/// assert!(db.contains_key(&[0])?);
/// assert!(!db.contains_key(&[1])?);
/// # Ok(()) }
/// ```
pub fn contains_key<K: AsRef<[u8]>>(&self, key: K) -> Result<bool> {
self.get(key).map(|v| v.is_some())
}
/// Retrieve the key and value before the provided key,
/// if one exists.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use sled::IVec;
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// for i in 0..10 {
/// db.insert(&[i], vec![i])
/// .expect("should write successfully");
/// }
///
/// assert_eq!(db.get_lt(&[]), Ok(None));
/// assert_eq!(db.get_lt(&[0]), Ok(None));
/// assert_eq!(
/// db.get_lt(&[1]),
/// Ok(Some((IVec::from(&[0]), IVec::from(&[0]))))
/// );
/// assert_eq!(
/// db.get_lt(&[9]),
/// Ok(Some((IVec::from(&[8]), IVec::from(&[8]))))
/// );
/// assert_eq!(
/// db.get_lt(&[10]),
/// Ok(Some((IVec::from(&[9]), IVec::from(&[9]))))
/// );
/// assert_eq!(
/// db.get_lt(&[255]),
/// Ok(Some((IVec::from(&[9]), IVec::from(&[9]))))
/// );
/// # Ok(()) }
/// ```
pub fn get_lt<K>(&self, key: K) -> Result<Option<(IVec, IVec)>>
where
K: AsRef<[u8]>,
{
let _measure = Measure::new(&M.tree_get);
self.range(..key).next_back().transpose()
}
/// Retrieve the next key and value from the `Tree` after the
/// provided key.
///
/// # Note
/// The order follows the Ord implementation for `Vec<u8>`:
///
/// `[] < [0] < [255] < [255, 0] < [255, 255] ...`
///
/// To retain the ordering of numerical types use big endian reprensentation
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use sled::IVec;
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// for i in 0..10 {
/// db.insert(&[i], vec![i])?;
/// }
///
/// assert_eq!(
/// db.get_gt(&[]),
/// Ok(Some((IVec::from(&[0]), IVec::from(&[0]))))
/// );
/// assert_eq!(
/// db.get_gt(&[0]),
/// Ok(Some((IVec::from(&[1]), IVec::from(&[1]))))
/// );
/// assert_eq!(
/// db.get_gt(&[1]),
/// Ok(Some((IVec::from(&[2]), IVec::from(&[2]))))
/// );
/// assert_eq!(
/// db.get_gt(&[8]),
/// Ok(Some((IVec::from(&[9]), IVec::from(&[9]))))
/// );
/// assert_eq!(db.get_gt(&[9]), Ok(None));
///
/// db.insert(500u16.to_be_bytes(), vec![10]);
/// assert_eq!(
/// db.get_gt(&499u16.to_be_bytes()),
/// Ok(Some((IVec::from(&500u16.to_be_bytes()), IVec::from(&[10]))))
/// );
/// # Ok(()) }
/// ```
pub fn get_gt<K>(&self, key: K) -> Result<Option<(IVec, IVec)>>
where
K: AsRef<[u8]>,
{
let _measure = Measure::new(&M.tree_get);
self.range((ops::Bound::Excluded(key), ops::Bound::Unbounded))
.next()
.transpose()
}
/// Merge state directly into a given key's value using the
/// configured merge operator. This allows state to be written
/// into a value directly, without any read-modify-write steps.
/// Merge operators can be used to implement arbitrary data
/// structures.
///
/// Calling `merge` will return an `Unsupported` error if it
/// is called without first setting a merge operator function.
///
/// Merge operators are shared by all instances of a particular
/// `Tree`. Different merge operators may be set on different
/// `Tree`s.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// use sled::IVec;
///
/// fn concatenate_merge(
/// _key: &[u8], // the key being merged
/// old_value: Option<&[u8]>, // the previous value, if one existed
/// merged_bytes: &[u8] // the new bytes being merged in
/// ) -> Option<Vec<u8>> { // set the new value, return None to delete
/// let mut ret = old_value
/// .map(|ov| ov.to_vec())
/// .unwrap_or_else(|| vec![]);
///
/// ret.extend_from_slice(merged_bytes);
///
/// Some(ret)
/// }
///
/// db.set_merge_operator(concatenate_merge);
///
/// let k = b"k1";
///
/// db.insert(k, vec![0]);
/// db.merge(k, vec![1]);
/// db.merge(k, vec![2]);
/// assert_eq!(db.get(k), Ok(Some(IVec::from(vec![0, 1, 2]))));
///
/// // Replace previously merged data. The merge function will not be called.
/// db.insert(k, vec![3]);
/// assert_eq!(db.get(k), Ok(Some(IVec::from(vec![3]))));
///
/// // Merges on non-present values will cause the merge function to be called
/// // with `old_value == None`. If the merge function returns something (which it
/// // does, in this case) a new value will be inserted.
/// db.remove(k);
/// db.merge(k, vec![4]);
/// assert_eq!(db.get(k), Ok(Some(IVec::from(vec![4]))));
/// # Ok(()) }
/// ```
pub fn merge<K, V>(&self, key: K, value: V) -> Result<Option<IVec>>
where
K: AsRef<[u8]>,
V: AsRef<[u8]>,
{
let _cc = concurrency_control::read();
loop {
if let Ok(merge) = self.merge_inner(key.as_ref(), value.as_ref())? {
return Ok(merge);
}
}
}
pub(crate) fn merge_inner(
&self,
key: &[u8],
value: &[u8],
) -> Result<Conflictable<Option<IVec>>> {
trace!("merging key {:?}", key);
let _measure = Measure::new(&M.tree_merge);
let merge_operator_opt = self.merge_operator.read();
if merge_operator_opt.is_none() {
return Err(Error::Unsupported(
"must set a merge operator on this Tree \
before calling merge by calling \
Tree::set_merge_operator"
.to_owned(),
));
}
let merge_operator = merge_operator_opt.as_ref().unwrap();
loop {
let guard = pin();
let View { pid, node_view, .. } =
self.view_for_key(key.as_ref(), &guard)?;
let (encoded_key, current_value) =
node_view.node_kv_pair(key.as_ref());
let tmp = current_value.as_ref().map(AsRef::as_ref);
let new = merge_operator(key, tmp, value).map(IVec::from);
let mut subscriber_reservation = self.subscribers.reserve(&key);
let frag = if let Some(ref new) = new {
Link::Set(encoded_key, new.clone())
} else {
Link::Del(encoded_key)
};
let link =
self.context.pagecache.link(pid, node_view.0, frag, &guard)?;
if link.is_ok() {
if let Some(res) = subscriber_reservation.take() {
let event = if let Some(new) = &new {
subscriber::Event::Insert {
key: key.as_ref().into(),
value: new.clone(),
}
} else {
subscriber::Event::Remove { key: key.as_ref().into() }
};
res.complete(&event);
}
return Ok(Ok(new));
}
M.tree_looped();
}
}
/// Sets a merge operator for use with the `merge` function.
///
/// Merge state directly into a given key's value using the
/// configured merge operator. This allows state to be written
/// into a value directly, without any read-modify-write steps.
/// Merge operators can be used to implement arbitrary data
/// structures.
///
/// # Panics
///
/// Calling `merge` will panic if no merge operator has been
/// configured.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// use sled::IVec;
///
/// fn concatenate_merge(
/// _key: &[u8], // the key being merged
/// old_value: Option<&[u8]>, // the previous value, if one existed
/// merged_bytes: &[u8] // the new bytes being merged in
/// ) -> Option<Vec<u8>> { // set the new value, return None to delete
/// let mut ret = old_value
/// .map(|ov| ov.to_vec())
/// .unwrap_or_else(|| vec![]);
///
/// ret.extend_from_slice(merged_bytes);
///
/// Some(ret)
/// }
///
/// db.set_merge_operator(concatenate_merge);
///
/// let k = b"k1";
///
/// db.insert(k, vec![0]);
/// db.merge(k, vec![1]);
/// db.merge(k, vec![2]);
/// assert_eq!(db.get(k), Ok(Some(IVec::from(vec![0, 1, 2]))));
///
/// // Replace previously merged data. The merge function will not be called.
/// db.insert(k, vec![3]);
/// assert_eq!(db.get(k), Ok(Some(IVec::from(vec![3]))));
///
/// // Merges on non-present values will cause the merge function to be called
/// // with `old_value == None`. If the merge function returns something (which it
/// // does, in this case) a new value will be inserted.
/// db.remove(k);
/// db.merge(k, vec![4]);
/// assert_eq!(db.get(k), Ok(Some(IVec::from(vec![4]))));
/// # Ok(()) }
/// ```
pub fn set_merge_operator(
&self,
merge_operator: impl MergeOperator + 'static,
) {
let mut mo_write = self.merge_operator.write();
*mo_write = Some(Box::new(merge_operator));
}
/// Create a double-ended iterator over the tuples of keys and
/// values in this tree.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// use sled::IVec;
/// db.insert(&[1], vec![10]);
/// db.insert(&[2], vec![20]);
/// db.insert(&[3], vec![30]);
/// let mut iter = db.iter();
/// assert_eq!(
/// iter.next().unwrap(),
/// Ok((IVec::from(&[1]), IVec::from(&[10])))
/// );
/// assert_eq!(
/// iter.next().unwrap(),
/// Ok((IVec::from(&[2]), IVec::from(&[20])))
/// );
/// assert_eq!(
/// iter.next().unwrap(),
/// Ok((IVec::from(&[3]), IVec::from(&[30])))
/// );
/// assert_eq!(iter.next(), None);
/// # Ok(()) }
/// ```
pub fn iter(&self) -> Iter {
self.range::<Vec<u8>, _>(..)
}
/// Create a double-ended iterator over tuples of keys and values,
/// where the keys fall within the specified range.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// use sled::IVec;
/// db.insert(&[0], vec![0])?;
/// db.insert(&[1], vec![10])?;
/// db.insert(&[2], vec![20])?;
/// db.insert(&[3], vec![30])?;
/// db.insert(&[4], vec![40])?;
/// db.insert(&[5], vec![50])?;
///
/// let start: &[u8] = &[2];
/// let end: &[u8] = &[4];
/// let mut r = db.range(start..end);
/// assert_eq!(r.next().unwrap(), Ok((IVec::from(&[2]), IVec::from(&[20]))));
/// assert_eq!(r.next().unwrap(), Ok((IVec::from(&[3]), IVec::from(&[30]))));
/// assert_eq!(r.next(), None);
///
/// let mut r = db.range(start..end).rev();
/// assert_eq!(r.next().unwrap(), Ok((IVec::from(&[3]), IVec::from(&[30]))));
/// assert_eq!(r.next().unwrap(), Ok((IVec::from(&[2]), IVec::from(&[20]))));
/// assert_eq!(r.next(), None);
/// # Ok(()) }
/// ```
pub fn range<K, R>(&self, range: R) -> Iter
where
K: AsRef<[u8]>,
R: RangeBounds<K>,
{
let lo = match range.start_bound() {
ops::Bound::Included(start) => {
ops::Bound::Included(IVec::from(start.as_ref()))
}
ops::Bound::Excluded(start) => {
ops::Bound::Excluded(IVec::from(start.as_ref()))
}
ops::Bound::Unbounded => ops::Bound::Included(IVec::from(&[])),
};
let hi = match range.end_bound() {
ops::Bound::Included(end) => {
ops::Bound::Included(IVec::from(end.as_ref()))
}
ops::Bound::Excluded(end) => {
ops::Bound::Excluded(IVec::from(end.as_ref()))
}
ops::Bound::Unbounded => ops::Bound::Unbounded,
};
Iter {
tree: self.clone(),
hi,
lo,
cached_node: None,
going_forward: true,
}
}
/// Create an iterator over tuples of keys and values,
/// where the all the keys starts with the given prefix.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// use sled::IVec;
/// db.insert(&[0, 0, 0], vec![0, 0, 0])?;
/// db.insert(&[0, 0, 1], vec![0, 0, 1])?;
/// db.insert(&[0, 0, 2], vec![0, 0, 2])?;
/// db.insert(&[0, 0, 3], vec![0, 0, 3])?;
/// db.insert(&[0, 1, 0], vec![0, 1, 0])?;
/// db.insert(&[0, 1, 1], vec![0, 1, 1])?;
///
/// let prefix: &[u8] = &[0, 0];
/// let mut r = db.scan_prefix(prefix);
/// assert_eq!(
/// r.next(),
/// Some(Ok((IVec::from(&[0, 0, 0]), IVec::from(&[0, 0, 0]))))
/// );
/// assert_eq!(
/// r.next(),
/// Some(Ok((IVec::from(&[0, 0, 1]), IVec::from(&[0, 0, 1]))))
/// );
/// assert_eq!(
/// r.next(),
/// Some(Ok((IVec::from(&[0, 0, 2]), IVec::from(&[0, 0, 2]))))
/// );
/// assert_eq!(
/// r.next(),
/// Some(Ok((IVec::from(&[0, 0, 3]), IVec::from(&[0, 0, 3]))))
/// );
/// assert_eq!(r.next(), None);
/// # Ok(()) }
/// ```
pub fn scan_prefix<P>(&self, prefix: P) -> Iter
where
P: AsRef<[u8]>,
{
let prefix_ref = prefix.as_ref();
let mut upper = prefix_ref.to_vec();
while let Some(last) = upper.pop() {
if last < u8::max_value() {
upper.push(last + 1);
return self.range(prefix_ref..&upper);
}
}
self.range(prefix..)
}
/// Returns the first key and value in the `Tree`, or
/// `None` if the `Tree` is empty.
pub fn first(&self) -> Result<Option<(IVec, IVec)>> {
self.iter().next().transpose()
}
/// Returns the last key and value in the `Tree`, or
/// `None` if the `Tree` is empty.
pub fn last(&self) -> Result<Option<(IVec, IVec)>> {
self.iter().next_back().transpose()
}
/// Atomically removes the maximum item in the `Tree` instance.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// db.insert(&[0], vec![0])?;
/// db.insert(&[1], vec![10])?;
/// db.insert(&[2], vec![20])?;
/// db.insert(&[3], vec![30])?;
/// db.insert(&[4], vec![40])?;
/// db.insert(&[5], vec![50])?;
///
/// assert_eq!(&db.pop_max()?.unwrap().0, &[5]);
/// assert_eq!(&db.pop_max()?.unwrap().0, &[4]);
/// assert_eq!(&db.pop_max()?.unwrap().0, &[3]);
/// assert_eq!(&db.pop_max()?.unwrap().0, &[2]);
/// assert_eq!(&db.pop_max()?.unwrap().0, &[1]);
/// assert_eq!(&db.pop_max()?.unwrap().0, &[0]);
/// assert_eq!(db.pop_max()?, None);
/// # Ok(()) }
/// ```
pub fn pop_max(&self) -> Result<Option<(IVec, IVec)>> {
loop {
if let Some(first_res) = self.iter().next_back() {
let first = first_res?;
if self
.compare_and_swap::<_, _, &[u8]>(
&first.0,
Some(&first.1),
None,
)?
.is_ok()
{
return Ok(Some(first));
}
// try again
} else {
return Ok(None);
}
}
}
/// Atomically removes the minimum item in the `Tree` instance.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// db.insert(&[0], vec![0])?;
/// db.insert(&[1], vec![10])?;
/// db.insert(&[2], vec![20])?;
/// db.insert(&[3], vec![30])?;
/// db.insert(&[4], vec![40])?;
/// db.insert(&[5], vec![50])?;
///
/// assert_eq!(&db.pop_min()?.unwrap().0, &[0]);
/// assert_eq!(&db.pop_min()?.unwrap().0, &[1]);
/// assert_eq!(&db.pop_min()?.unwrap().0, &[2]);
/// assert_eq!(&db.pop_min()?.unwrap().0, &[3]);
/// assert_eq!(&db.pop_min()?.unwrap().0, &[4]);
/// assert_eq!(&db.pop_min()?.unwrap().0, &[5]);
/// assert_eq!(db.pop_min()?, None);
/// # Ok(()) }
/// ```
pub fn pop_min(&self) -> Result<Option<(IVec, IVec)>> {
loop {
if let Some(first_res) = self.iter().next() {
let first = first_res?;
if self
.compare_and_swap::<_, _, &[u8]>(
&first.0,
Some(&first.1),
None,
)?
.is_ok()
{
return Ok(Some(first));
}
// try again
} else {
return Ok(None);
}
}
}
/// Returns the number of elements in this tree.
///
/// Beware: performs a full O(n) scan under the hood.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # let config = sled::Config::new().temporary(true);
/// # let db = config.open()?;
/// db.insert(b"a", vec![0]);
/// db.insert(b"b", vec![1]);
/// assert_eq!(db.len(), 2);
/// # Ok(()) }
/// ```
pub fn len(&self) -> usize {
self.iter().count()
}
/// Returns `true` if the `Tree` contains no elements.
pub fn is_empty(&self) -> bool {
self.iter().next().is_none()
}
/// Clears the `Tree`, removing all values.
///
/// Note that this is not atomic.
pub fn clear(&self) -> Result<()> {
for k in self.iter().keys() {
let key = k?;
let _old = self.remove(key)?;
}
Ok(())
}
/// Returns the name of the tree.
pub fn name(&self) -> IVec {
self.tree_id.clone()
}
/// Returns the CRC32 of all keys and values
/// in this Tree.
///
/// This is O(N) and locks the underlying tree
/// for the duration of the entire scan.
pub fn checksum(&self) -> Result<u32> {
let mut hasher = crc32fast::Hasher::new();
let mut iter = self.iter();
let _cc = concurrency_control::write();
while let Some(kv_res) = iter.next_inner() {
let (k, v) = kv_res?;
hasher.update(&k);
hasher.update(&v);
}
Ok(hasher.finalize())
}
fn split_node<'g>(
&self,
view: &View<'g>,
parent_view: &Option<View<'g>>,
root_pid: PageId,
guard: &'g Guard,
) -> Result<()> {
trace!("splitting node {}", view.pid);
// split node
let (mut lhs, rhs) = view.deref().clone().split();
let rhs_lo = rhs.lo.clone();
// install right side
let (rhs_pid, rhs_ptr) = self.context.pagecache.allocate(rhs, guard)?;
// replace node, pointing next to installed right
lhs.next = Some(NonZeroU64::new(rhs_pid).unwrap());
let replace = self.context.pagecache.replace(
view.pid,
view.node_view.0,
lhs,
guard,
)?;
M.tree_child_split_attempt();
if replace.is_err() {
// if we failed, don't follow through with the
// parent split or root hoist.
let _new_stack = self
.context
.pagecache
.free(rhs_pid, rhs_ptr, guard)?
.expect("could not free allocated page");
return Ok(());
}
M.tree_child_split_success();
// either install parent split or hoist root
if let Some(parent_view) = parent_view {
M.tree_parent_split_attempt();
let mut parent: Node = parent_view.deref().clone();
let split_applied = parent.parent_split(&rhs_lo, rhs_pid);
if !split_applied {
// due to deep races, it's possible for the
// parent to already have a node for this lo key.
// if this is the case, we can skip the parent split
// because it's probably going to fail anyway.
return Ok(());
}
let replace = self.context.pagecache.replace(
parent_view.pid,
parent_view.node_view.0,
parent,
guard,
)?;
if replace.is_ok() {
M.tree_parent_split_success();
} else {
// Parent splits are an optimization
// so we don't need to care if we
// failed.
}
} else {
let _ = self.root_hoist(root_pid, rhs_pid, rhs_lo, guard)?;
}
Ok(())
}
fn root_hoist(
&self,
from: PageId,
to: PageId,
at: IVec,
guard: &Guard,
) -> Result<bool> {
M.tree_root_split_attempt();
// hoist new root, pointing to lhs & rhs
let new_root = Node::new_hoisted_root(from, at, to);
let (new_root_pid, new_root_ptr) =
self.context.pagecache.allocate(new_root, guard)?;
debug!("allocated pid {} in root_hoist", new_root_pid);
debug_delay();
let cas = self.context.pagecache.cas_root_in_meta(
&self.tree_id,
Some(from),
Some(new_root_pid),
guard,
)?;
if cas.is_ok() {
debug!("root hoist from {} to {} successful", from, new_root_pid);
M.tree_root_split_success();
// we spin in a cas loop because it's possible
// 2 threads are at this point, and we don't want
// to cause roots to diverge between meta and
// our version.
while self.root.compare_and_swap(from, new_root_pid, SeqCst) != from
{
}
Ok(true)
} else {
debug!(
"root hoist from {} to {} failed: {:?}",
from, new_root_pid, cas
);
let _new_stack = self
.context
.pagecache
.free(new_root_pid, new_root_ptr, guard)?
.expect("could not free allocated page");
Ok(false)
}
}
pub(crate) fn view_for_pid<'g>(
&self,
pid: PageId,
guard: &'g Guard,
) -> Result<Option<View<'g>>> {
loop {
let node_view_opt = self.context.pagecache.get(pid, guard)?;
// if let Some((tree_ptr, ref leaf, size)) = &frag_opt {
if let Some(node_view) = &node_view_opt {
let size = node_view.0.log_size();
let view = View { node_view: *node_view, pid, size };
if view.merging_child.is_some() {
self.merge_node(&view, view.merging_child.unwrap().get(), guard)?;
} else {
return Ok(Some(view));
}
} else {
return Ok(None);
}
}
}
// Returns the traversal path, completing any observed
// partially complete splits or merges along the way.
//
// We intentionally leave the cyclometric complexity
// high because attempts to split it up have made
// the inherent complexity of the operation more
// challenging to understand.
#[allow(clippy::cognitive_complexity)]
pub(crate) fn view_for_key<'g, K>(
&self,
key: K,
guard: &'g Guard,
) -> Result<View<'g>>
where
K: AsRef<[u8]>,
{
#[cfg(any(test, feature = "lock_free_delays"))]
const MAX_LOOPS: usize = usize::max_value();
#[cfg(not(any(test, feature = "lock_free_delays")))]
const MAX_LOOPS: usize = 1_000_000;
let _measure = Measure::new(&M.tree_traverse);
let mut cursor = self.root.load(Acquire);
let mut root_pid = cursor;
let mut parent_view = None;
let mut unsplit_parent = None;
let mut took_leftmost_branch = false;
macro_rules! retry {
() => {
trace!(
"retrying at line {} when cursor was {}",
line!(),
cursor
);
cursor = self.root.load(Acquire);
root_pid = cursor;
parent_view = None;
unsplit_parent = None;
took_leftmost_branch = false;
continue;
};
}
for _ in 0..MAX_LOOPS {
if cursor == u64::max_value() {
// this collection has been explicitly removed
return Err(Error::CollectionNotFound(self.tree_id.clone()));
}
let node_opt = self.view_for_pid(cursor, guard)?;
let view = if let Some(view) = node_opt {
view
} else {
retry!();
};
// When we encounter a merge intention, we collaboratively help out
if view.merging_child.is_some() {
self.merge_node(&view, view.merging_child.unwrap().get(), guard)?;
retry!();
} else if view.merging {
// we missed the parent merge intention due to a benign race,
// so go around again and try to help out if necessary
retry!();
}
let overshot = key.as_ref() < view.lo.as_ref();
let undershot =
key.as_ref() >= view.hi.as_ref() && !view.hi.is_empty();
if overshot {
// merge interfered, reload root and retry
retry!();
}
if view.should_split() {
self.split_node(&view, &parent_view, root_pid, guard)?;
retry!();
}
if undershot {
// half-complete split detect & completion
cursor = view.next.expect(
"if our hi bound is not Inf (inity), \
we should have a right sibling",
).get();
if unsplit_parent.is_none() && parent_view.is_some() {
unsplit_parent = parent_view.clone();
} else if parent_view.is_none() && view.lo.is_empty() {
assert!(unsplit_parent.is_none());
assert_eq!(view.pid, root_pid);
// we have found a partially-split root
if self.root_hoist(
root_pid,
view.next.unwrap().get(),
view.hi.clone(),
guard,
)? {
M.tree_root_split_success();
retry!();
}
}
continue;
} else if let Some(unsplit_parent) = unsplit_parent.take() {
// we have found the proper page for
// our cooperative parent split
let mut parent: Node = unsplit_parent.deref().clone();
let split_applied =
parent.parent_split(view.lo.as_ref(), cursor);
if !split_applied {
// due to deep races, it's possible for the
// parent to already have a node for this lo key.
// if this is the case, we can skip the parent split
// because it's probably going to fail anyway.
retry!();
}
M.tree_parent_split_attempt();
let replace = self.context.pagecache.replace(
unsplit_parent.pid,
unsplit_parent.node_view.0,
parent,
guard,
)?;
if replace.is_ok() {
M.tree_parent_split_success();
}
}
// detect whether a node is mergeable, and begin
// the merge process.
// NB we can never begin merging a node that is
// the leftmost child of an index, because it
// would be merged into a different index, which
// would add considerable complexity to this already
// fairly complex implementation.
if view.should_merge() && !took_leftmost_branch {
if let Some(ref mut parent) = parent_view {
assert!(parent.merging_child.is_none());
if parent.can_merge_child() {
let frag = Link::ParentMergeIntention(cursor);
let link = self.context.pagecache.link(
parent.pid,
parent.node_view.0,
frag,
guard,
)?;
if let Ok(new_parent_ptr) = link {
parent.node_view = NodeView(new_parent_ptr);
self.merge_node(parent, cursor, guard)?;
retry!();
}
}
}
}
if view.data.is_index() {
let next = view.index_next_node(key.as_ref());
took_leftmost_branch = next.0 == 0;
parent_view = Some(view);
cursor = next.1;
} else {
assert!(!overshot && !undershot);
return Ok(view);
}
}
panic!(
"cannot find pid {} in view_for_key, looking for key {:?} in tree",
cursor,
key.as_ref(),
);
}
fn cap_merging_child<'g>(
&'g self,
child_pid: PageId,
guard: &'g Guard,
) -> Result<Option<View<'g>>> {
// Get the child node and try to install a `MergeCap` frag.
// In case we succeed, we break, otherwise we try from the start.
loop {
let mut child_view = if let Some(child_view) =
self.view_for_pid(child_pid, guard)?
{
child_view
} else {
// the child was already freed, meaning
// somebody completed this whole loop already
return Ok(None);
};
if child_view.merging {
trace!("child pid {} already merging", child_pid);
return Ok(Some(child_view));
}
let install_frag = self.context.pagecache.link(
child_pid,
child_view.node_view.0,
Link::ChildMergeCap,
guard,
)?;
match install_frag {
Ok(new_ptr) => {
trace!("child pid {} merge capped", child_pid);
child_view.node_view = NodeView(new_ptr);
return Ok(Some(child_view));
}
Err(Some((_, _))) => {
trace!(
"child pid {} merge cap failed, retrying",
child_pid
);
continue;
}
Err(None) => {
trace!("child pid {} already freed", child_pid);
return Ok(None);
}
}
}
}
fn install_parent_merge<'g>(
&self,
parent_view: &View<'g>,
child_pid: PageId,
guard: &'g Guard,
) -> Result<bool> {
let mut parent_view = Cow::Borrowed(parent_view);
loop {
let linked = self.context.pagecache.link(
parent_view.pid,
parent_view.node_view.0,
Link::ParentMergeConfirm,
guard,
)?;
match linked {
Ok(_) => {
trace!(
"ParentMergeConfirm succeeded on parent pid {}, \
now freeing child pid {}",
parent_view.pid,
child_pid
);
return Ok(true);
}
Err(None) => {
trace!(
"ParentMergeConfirm \
failed on (now freed) parent pid {}",
parent_view.pid
);
return Ok(false);
}
Err(_) => {
let new_parent_view = if let Some(new_parent_view) =
self.view_for_pid(parent_view.pid, guard)?
{
trace!(
"failed to confirm merge \
on parent pid {}, trying again",
parent_view.pid
);
new_parent_view
} else {
trace!(
"failed to confirm merge \
on parent pid {}, which was freed",
parent_view.pid
);
return Ok(false);
};
if new_parent_view.merging_child.map(NonZeroU64::get) != Some(child_pid) {
trace!(
"someone else must have already \
completed the merge, and now the \
merging child for parent pid {} is {:?}",
new_parent_view.pid,
new_parent_view.merging_child
);
return Ok(false);
}
parent_view = Cow::Owned(new_parent_view);
}
}
}
}
pub(crate) fn merge_node<'g>(
&self,
parent_view: &View<'g>,
child_pid: PageId,
guard: &'g Guard,
) -> Result<()> {
trace!(
"merging child pid {} of parent pid {}",
child_pid,
parent_view.pid
);
let child_view = if let Some(merging_child) =
self.cap_merging_child(child_pid, guard)?
{
merging_child
} else {
return Ok(());
};
let index = parent_view.data.index_ref().unwrap();
let child_index =
index.pointers.iter().position(|pid| pid == &child_pid).unwrap();
assert_ne!(
child_index, 0,
"merging child must not be the \
leftmost child of its parent"
);
let mut merge_index = child_index - 1;
// we assume caller only merges when
// the node to be merged is not the
// leftmost child.
let mut cursor_pid = index.pointers[merge_index];
// searching for the left sibling to merge the target page into
loop {
// The only way this child could have been freed is if the original
// merge has already been handled. Only in that case can this child
// have been freed
trace!(
"cursor_pid is {} while looking for left sibling",
cursor_pid
);
let cursor_view = if let Some(cursor_view) =
self.view_for_pid(cursor_pid, guard)?
{
cursor_view
} else {
trace!(
"couldn't retrieve frags for freed \
(possibly outdated) prospective left \
sibling with pid {}",
cursor_pid
);
if merge_index == 0 {
trace!(
"failed to find any left sibling for \
merging pid {}, which means this merge \
must have already completed.",
child_pid
);
return Ok(());
}
merge_index -= 1;
cursor_pid = index.pointers[merge_index];
continue;
};
// This means that `cursor_node` is the node we want to replace
if cursor_view.next.map(NonZeroU64::get) == Some(child_pid) {
trace!(
"found left sibling pid {} points to merging node pid {}",
cursor_view.pid,
child_pid
);
let cursor_node = cursor_view.node_view;
let replacement = cursor_node.receive_merge(&child_view);
let replace = self.context.pagecache.replace(
cursor_pid,
cursor_node.0,
replacement,
guard,
)?;
match replace {
Ok(_) => {
trace!(
"merged node pid {} into left sibling pid {}",
child_pid,
cursor_pid
);
break;
}
Err(None) => {
trace!(
"failed to merge pid {} into \
pid {} since pid {} doesn't exist anymore",
child_pid,
cursor_pid,
cursor_pid
);
return Ok(());
}
Err(_) => {
trace!(
"failed to merge pid {} into \
pid {} due to cas failure",
child_pid,
cursor_pid
);
continue;
}
}
} else if cursor_view.hi >= child_view.lo {
// we overshot the node being merged,
trace!(
"cursor pid {} has hi key {:?}, which is \
>= merging child pid {}'s lo key of {:?}, breaking",
cursor_pid,
cursor_view.hi,
child_pid,
child_view.lo
);
break;
} else {
// In case we didn't find the child, we get the next cursor node
if let Some(next) = cursor_view.next {
trace!(
"traversing from cursor pid {} to right sibling pid {}",
cursor_pid,
next
);
cursor_pid = next.get();
} else {
trace!(
"hit the right side of the tree without finding \
a left sibling for merging child pid {}",
child_pid
);
break;
}
}
}
trace!(
"trying to install parent merge \
confirmation of merged child pid {} for parent pid {}",
child_pid,
parent_view.pid
);
let should_continue =
self.install_parent_merge(parent_view, child_pid, guard)?;
if !should_continue {
return Ok(());
}
match self.context.pagecache.free(
child_pid,
child_view.node_view.0,
guard,
)? {
Ok(_) => {
// we freed it
trace!("freed merged pid {}", child_pid);
}
Err(None) => {
// someone else freed it
trace!("someone else freed merged pid {}", child_pid);
}
Err(Some(_)) => {
trace!(
"someone was able to reuse freed merged pid {}",
child_pid
);
// it was reused somehow after we
// observed it as in the merging state
panic!(
"somehow the merging child was reused \
before all threads that witnessed its previous \
merge have left their epoch"
)
}
}
trace!("finished with merge of pid {}", child_pid);
Ok(())
}
// Remove all pages for this tree from the underlying
// PageCache. This will leave orphans behind if
// the tree crashes during gc.
pub(crate) fn gc_pages(
&self,
mut leftmost_chain: Vec<PageId>,
) -> Result<()> {
let guard = pin();
while let Some(mut pid) = leftmost_chain.pop() {
loop {
let cursor_view =
if let Some(view) = self.view_for_pid(pid, &guard)? {
view
} else {
trace!("encountered Free node while GC'ing tree");
break;
};
let ret = self.context.pagecache.free(
pid,
cursor_view.node_view.0,
&guard,
)?;
if ret.is_ok() {
let next_pid = if let Some(next_pid) = cursor_view.next {
next_pid
} else {
break;
};
assert_ne!(pid, next_pid.get());
pid = next_pid.get();
}
}
}
Ok(())
}
#[doc(hidden)]
pub fn verify_integrity(&self) -> Result<()> {
// verification happens in Debug impl
let _out = format!("{:?}", self);
Ok(())
}
}
impl Debug for Tree {
fn fmt(
&self,
f: &mut fmt::Formatter<'_>,
) -> std::result::Result<(), fmt::Error> {
let guard = pin();
let mut pid = self.root.load(Acquire);
let mut left_most = pid;
let mut level = 0;
let mut expected_pids = FastSet8::default();
let mut referenced_pids = FastSet8::default();
let mut loop_detector = FastSet8::default();
expected_pids.insert(pid);
f.write_str("Tree: \n\t")?;
self.context.pagecache.fmt(f)?;
f.write_str("\tlevel 0:\n")?;
loop {
let get_res = self.view_for_pid(pid, &guard);
let node = if let Ok(Some(ref view)) = get_res {
expected_pids.remove(&pid);
if loop_detector.contains(&pid) {
if cfg!(feature = "testing") {
panic!(
"detected a loop while iterating over the Tree. \
pid {} was encountered multiple times",
pid
);
} else {
error!(
"detected a loop while iterating over the Tree. \
pid {} was encountered multiple times",
pid
);
}
} else {
loop_detector.insert(pid);
}
view.deref()
} else {
if cfg!(feature = "testing") {
panic!(
"Tree::fmt failed to read node {} \
that has been freed",
pid,
);
} else {
error!(
"Tree::fmt failed to read node {} \
that has been freed",
pid,
);
}
break;
};
write!(f, "\t\t{}: ", pid)?;
node.fmt(f)?;
f.write_str("\n")?;
if let Data::Index(ref index) = &node.data {
for pid in &index.pointers {
referenced_pids.insert(*pid);
}
}
if let Some(next_pid) = node.next {
pid = next_pid.get();
} else {
// we've traversed our level, time to bump down
let left_get_res = self.view_for_pid(left_most, &guard);
let left_node = if let Ok(Some(ref view)) = left_get_res {
view
} else {
panic!(
"pagecache returned non-base node: {:?}",
left_get_res
)
};
match &left_node.data {
Data::Index(index) => {
if let Some(next_pid) = index.pointers.first() {
pid = *next_pid;
left_most = *next_pid;
level += 1;
f.write_str(&*format!("\n\tlevel {}:\n", level))?;
assert!(
expected_pids.is_empty(),
"expected pids {:?} but never \
saw them on this level",
expected_pids
);
std::mem::swap(&mut expected_pids, &mut referenced_pids);
} else {
panic!("trying to debug print empty index node");
}
}
Data::Leaf(_items) => {
// we've reached the end of our tree, all leafs are on
// the lowest level.
break;
}
}
}
}
Ok(())
}
}
/// Compare and swap result.
///
/// It returns `Ok(Ok(()))` if operation finishes successfully and
/// - `Ok(Err(CompareAndSwapError(current, proposed)))` if operation failed
/// to setup a new value. `CompareAndSwapError` contains current and
/// proposed values.
/// - `Err(Error::Unsupported)` if the database is opened in read-only mode.
/// otherwise.
pub type CompareAndSwapResult =
Result<std::result::Result<(), CompareAndSwapError>>;
impl From<Error> for CompareAndSwapResult {
fn from(error: Error) -> Self {
Err(error)
}
}
/// Compare and swap error.
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct CompareAndSwapError {
/// The current value which caused your CAS to fail.
pub current: Option<IVec>,
/// Returned value that was proposed unsuccessfully.
pub proposed: Option<IVec>,
}
impl fmt::Display for CompareAndSwapError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Compare and swap conflict")
}
}
impl std::error::Error for CompareAndSwapError {}