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
//! `sled` is a high-performance embedded database with
//! an API that is similar to a `BTreeMap<[u8], [u8]>`,
//! but with several additional capabilities for
//! assisting creators of stateful systems.
//!
//! It is fully thread-safe, and all operations are
//! atomic. Multiple `Tree`s with isolated keyspaces
//! are supported with the
//! [`Db::open_tree`](struct.Db.html#method.open_tree) method.
//!
//! ACID transactions involving reads and writes to
//! multiple items are supported with the
//! [`Tree::transaction`](struct.Tree.html#method.transaction)
//! method. Transactions may also operate over
//! multiple `Tree`s (see
//! [`Tree::transaction`](struct.Tree.html#method.transaction)
//! docs for more info).
//!
//! Users may also subscribe to updates on individual
//! `Tree`s by using the
//! [`Tree::watch_prefix`](struct.Tree.html#method.watch_prefix)
//! method, which returns a blocking `Iterator` over
//! updates to keys that begin with the provided
//! prefix. You may supply an empty prefix to subscribe
//! to everything.
//!
//! [Merge operators](https://github.com/spacejam/sled/wiki/merge-operators)
//! (aka read-modify-write operators) are supported. A
//! merge operator is a function that specifies
//! how new data can be merged into an existing value
//! without requiring both a read and a write.
//! Using the
//! [`Tree::merge`](struct.Tree.html#method.merge)
//! method, you may "push" data to a `Tree` value
//! and have the provided merge operator combine
//! it with the existing value, if there was one.
//! They are set on a per-`Tree` basis, and essentially
//! allow any sort of data structure to be built
//! using merges as an atomic high-level operation.
//!
//! `sled` is built by experienced database engineers
//! who think users should spend less time tuning and
//! working against high-friction APIs. Expect
//! significant ergonomic and performance improvements
//! over time. Most surprises are bugs, so please
//! [let us know](mailto:t@jujit.su?subject=sled%20sucks!!!) if something
//! is high friction.
//!
//! # Examples
//!
//! ```
//! # let _ = std::fs::remove_dir_all("my_db");
//! let db: sled::Db = sled::open("my_db").unwrap();
//!
//! // insert and get
//! db.insert(b"yo!", b"v1");
//! assert_eq!(&db.get(b"yo!").unwrap().unwrap(), 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
//! )
//! .unwrap();
//!
//! // 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().unwrap().0, b"yo!");
//! 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").unwrap();
//! other_tree.insert(
//! b"k1",
//! &b"a Db acts like a Tree due to implementing Deref<Target = Tree>"[..]
//! ).unwrap();
//! # let _ = std::fs::remove_dir_all("my_db");
//! ```
#![doc(
html_logo_url = "https://raw.githubusercontent.com/spacejam/sled/master/art/tree_face_anti-transphobia.png"
)]
#![deny(
missing_docs,
future_incompatible,
nonstandard_style,
rust_2018_idioms,
missing_copy_implementations,
trivial_casts,
trivial_numeric_casts,
unsafe_code,
unused_qualifications
)]
#![deny(
// over time, consider enabling the commented-out lints below
clippy::cast_lossless,
clippy::cast_possible_truncation,
clippy::cast_possible_wrap,
clippy::cast_precision_loss,
clippy::cast_sign_loss,
clippy::checked_conversions,
clippy::decimal_literal_representation,
clippy::doc_markdown,
// clippy::else_if_without_else,
clippy::empty_enum,
clippy::explicit_into_iter_loop,
clippy::explicit_iter_loop,
clippy::expl_impl_clone_on_copy,
clippy::fallible_impl_from,
clippy::filter_map,
clippy::filter_map_next,
clippy::find_map,
clippy::float_arithmetic,
clippy::get_unwrap,
clippy::if_not_else,
// clippy::indexing_slicing,
clippy::inline_always,
//clippy::integer_arithmetic,
clippy::invalid_upcast_comparisons,
clippy::items_after_statements,
clippy::map_entry,
clippy::map_flatten,
clippy::match_same_arms,
clippy::maybe_infinite_iter,
clippy::mem_forget,
// clippy::missing_const_for_fn,
// clippy::missing_docs_in_private_items,
clippy::module_name_repetitions,
clippy::multiple_inherent_impl,
clippy::mut_mut,
clippy::needless_borrow,
clippy::needless_continue,
clippy::needless_pass_by_value,
clippy::non_ascii_literal,
clippy::path_buf_push_overwrite,
clippy::print_stdout,
clippy::pub_enum_variant_names,
clippy::redundant_closure_for_method_calls,
clippy::shadow_reuse,
clippy::shadow_same,
clippy::shadow_unrelated,
clippy::single_match_else,
clippy::string_add,
clippy::string_add_assign,
clippy::type_repetition_in_bounds,
clippy::unicode_not_nfc,
// clippy::unimplemented,
clippy::unseparated_literal_suffix,
clippy::used_underscore_binding,
clippy::wildcard_dependencies,
// clippy::wildcard_enum_match_arm,
clippy::wrong_pub_self_convention,
)]
#![warn(clippy::multiple_crate_versions)]
#![allow(clippy::mem_replace_with_default)] // Not using std::mem::take() due to MSRV of 1.37 (intro'd in 1.40)
#![allow(clippy::match_like_matches_macro)] // Not using std::matches! due to MSRV of 1.37 (intro'd in 1.42)
macro_rules! io_fail {
($config:expr, $e:expr) => {
#[cfg(feature = "failpoints")]
{
debug_delay();
if fail::is_active($e) {
$config.set_global_error(Error::FailPoint);
return Err(Error::FailPoint).into();
}
}
};
}
macro_rules! testing_assert {
($($e:expr),*) => {
#[cfg(feature = "lock_free_delays")]
assert!($($e),*)
};
}
mod arc;
mod atomic_shim;
mod batch;
mod binary_search;
mod concurrency_control;
mod config;
mod context;
mod db;
mod dll;
mod fastcmp;
mod fastlock;
mod histogram;
mod iter;
mod ivec;
mod lazy;
mod lru;
mod meta;
mod metrics;
mod node;
mod oneshot;
mod pagecache;
mod prefix;
mod result;
mod serialization;
mod stack;
mod subscriber;
mod sys_limits;
pub mod transaction;
mod tree;
/// Functionality for conditionally triggering failpoints under test.
#[cfg(feature = "failpoints")]
pub mod fail;
#[cfg(feature = "docs")]
pub mod doc;
#[cfg(any(
miri,
not(any(
windows,
target_os = "linux",
target_os = "macos",
target_os = "dragonfly",
target_os = "freebsd",
target_os = "openbsd",
target_os = "netbsd",
))
))]
mod threadpool {
use super::{OneShot, Result};
/// Just execute a task without involving threads.
pub fn spawn<F, R>(work: F) -> Result<OneShot<R>>
where
F: FnOnce() -> R + Send + 'static,
R: Send + 'static,
{
let (promise_filler, promise) = OneShot::pair();
promise_filler.fill((work)());
Ok(promise)
}
}
#[cfg(all(
not(miri),
any(
windows,
target_os = "linux",
target_os = "macos",
target_os = "dragonfly",
target_os = "freebsd",
target_os = "openbsd",
target_os = "netbsd",
)
))]
mod threadpool;
#[cfg(all(
not(miri),
any(
windows,
target_os = "linux",
target_os = "macos",
target_os = "dragonfly",
target_os = "freebsd",
target_os = "openbsd",
target_os = "netbsd",
)
))]
mod flusher;
#[cfg(feature = "event_log")]
/// The event log helps debug concurrency issues.
pub mod event_log;
#[cfg(feature = "measure_allocs")]
mod measure_allocs;
#[cfg(feature = "measure_allocs")]
#[global_allocator]
static ALLOCATOR: measure_allocs::TrackingAllocator =
measure_allocs::TrackingAllocator;
const DEFAULT_TREE_ID: &[u8] = b"__sled__default";
/// hidden re-export of items for testing purposes
#[doc(hidden)]
pub use {
self::{
config::RunningConfig,
lazy::Lazy,
pagecache::{
constants::{
MAX_MSG_HEADER_LEN, MAX_SPACE_AMPLIFICATION,
MINIMUM_ITEMS_PER_SEGMENT, SEG_HEADER_LEN,
},
BatchManifest, DiskPtr, Log, LogKind, LogOffset, LogRead, Lsn,
PageCache, PageId,
},
serialization::Serialize,
},
crossbeam_epoch::{
pin as crossbeam_pin, Atomic, Guard as CrossbeamGuard, Owned, Shared,
},
};
pub use self::{
batch::Batch,
config::{Config, Mode},
db::{open, Db},
iter::Iter,
ivec::IVec,
result::{Error, Result},
subscriber::{Event, Subscriber},
transaction::Transactional,
tree::{CompareAndSwapError, Tree},
};
use {
self::{
arc::Arc,
atomic_shim::{AtomicI64 as AtomicLsn, AtomicU64},
binary_search::binary_search_lub,
concurrency_control::Protector,
context::Context,
fastcmp::fastcmp,
histogram::Histogram,
lru::Lru,
meta::Meta,
metrics::{clock, Measure, M},
node::{Data, Node},
oneshot::{OneShot, OneShotFiller},
result::CasResult,
subscriber::Subscribers,
tree::TreeInner,
},
crossbeam_utils::{Backoff, CachePadded},
log::{debug, error, trace, warn},
pagecache::RecoveryGuard,
parking_lot::{Condvar, Mutex, RwLock},
std::{
collections::BTreeMap,
convert::TryFrom,
fmt::{self, Debug},
io::{Read, Write},
sync::atomic::{
AtomicUsize,
Ordering::{Acquire, Release, SeqCst},
},
},
};
#[doc(hidden)]
pub fn pin() -> Guard {
Guard { inner: crossbeam_pin(), readset: vec![], writeset: vec![] }
}
#[doc(hidden)]
pub struct Guard {
inner: CrossbeamGuard,
readset: Vec<PageId>,
writeset: Vec<PageId>,
}
impl std::ops::Deref for Guard {
type Target = CrossbeamGuard;
fn deref(&self) -> &CrossbeamGuard {
&self.inner
}
}
#[derive(Debug)]
struct Conflict;
type Conflictable<T> = std::result::Result<T, Conflict>;
fn crc32(buf: &[u8]) -> u32 {
let mut hasher = crc32fast::Hasher::new();
hasher.update(buf);
hasher.finalize()
}
fn calculate_message_crc32(header: &[u8], body: &[u8]) -> u32 {
let mut hasher = crc32fast::Hasher::new();
hasher.update(body);
hasher.update(&header[4..]);
let crc32 = hasher.finalize();
crc32 ^ 0xFFFF_FFFF
}
#[cfg(any(test, feature = "lock_free_delays"))]
mod debug_delay;
#[cfg(any(test, feature = "lock_free_delays"))]
use debug_delay::debug_delay;
/// This function is useful for inducing random jitter into our atomic
/// operations, shaking out more possible interleavings quickly. It gets
/// fully eliminated by the compiler in non-test code.
#[cfg(not(any(test, feature = "lock_free_delays")))]
const fn debug_delay() {}
/// Link denotes a tree node or its modification fragment such as
/// key addition or removal.
#[derive(Clone, Debug, PartialEq)]
pub(crate) enum Link {
/// A new value is set for a given key
Set(IVec, IVec),
/// The associated value is removed for a given key
Del(IVec),
/// A child of this Index node is marked as mergable
ParentMergeIntention(PageId),
/// The merging child has been completely merged into its left sibling
ParentMergeConfirm,
/// A Node is marked for being merged into its left sibling
ChildMergeCap,
}
/// A fast map that is not resistant to collision attacks. Works
/// on 8 bytes at a time.
pub(crate) type FastMap8<K, V> = std::collections::HashMap<
K,
V,
std::hash::BuildHasherDefault<fxhash::FxHasher64>,
>;
/// A fast set that is not resistant to collision attacks. Works
/// on 8 bytes at a time.
pub(crate) type FastSet8<V> = std::collections::HashSet<
V,
std::hash::BuildHasherDefault<fxhash::FxHasher64>,
>;
/// A function that may be configured on a particular shared `Tree`
/// that will be applied as a kind of read-modify-write operator
/// to any values that are written using the `Tree::merge` method.
///
/// The first argument is the key. The second argument is the
/// optional existing value that was in place before the
/// merged value being applied. The Third argument is the
/// data being merged into the item.
///
/// You may return `None` to delete the value completely.
///
/// 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>> {
/// use sled::{Config, 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)
/// }
///
/// let config = Config::new()
/// .temporary(true);
///
/// let tree = config.open()?;
/// tree.set_merge_operator(concatenate_merge);
///
/// let k = b"k1";
///
/// tree.insert(k, vec![0]);
/// tree.merge(k, vec![1]);
/// tree.merge(k, vec![2]);
/// assert_eq!(tree.get(k), Ok(Some(IVec::from(vec![0, 1, 2]))));
///
/// // Replace previously merged data. The merge function will not be called.
/// tree.insert(k, vec![3]);
/// assert_eq!(tree.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.
/// tree.remove(k);
/// tree.merge(k, vec![4]);
/// assert_eq!(tree.get(k), Ok(Some(IVec::from(vec![4]))));
/// # Ok(()) }
/// ```
pub trait MergeOperator:
Fn(&[u8], Option<&[u8]>, &[u8]) -> Option<Vec<u8>>
{
}
impl<F> MergeOperator for F where
F: Fn(&[u8], Option<&[u8]>, &[u8]) -> Option<Vec<u8>>
{
}
mod compile_time_assertions {
use crate::*;
#[allow(unreachable_code)]
fn _assert_public_types_send_sync() {
_assert_send::<Subscriber>(unreachable!());
_assert_send_sync::<Iter>(unreachable!());
_assert_send_sync::<Tree>(unreachable!());
_assert_send_sync::<Db>(unreachable!());
_assert_send_sync::<Batch>(unreachable!());
_assert_send_sync::<IVec>(unreachable!());
_assert_send_sync::<Config>(unreachable!());
_assert_send_sync::<CompareAndSwapError>(unreachable!());
_assert_send_sync::<Error>(unreachable!());
_assert_send_sync::<Event>(unreachable!());
_assert_send_sync::<Mode>(unreachable!());
}
fn _assert_send<S: Send>(_: &S) {}
fn _assert_send_sync<S: Send + Sync>(_: &S) {}
}