near_sdk/store/lazy_option/mod.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
mod impls;
use borsh::{BorshDeserialize, BorshSerialize};
use near_sdk_macros::near;
use once_cell::unsync::OnceCell;
use crate::env;
use crate::store::lazy::{load_and_deserialize, serialize_and_store};
use crate::utils::{CacheEntry, EntryState};
use crate::IntoStorageKey;
/// An persistent lazily loaded option, that stores a `value` in the storage when `Some(value)`
/// is set, and not when `None` is set. `LazyOption` also [`Deref`]s into [`Option`] so we get
/// all its APIs for free.
///
/// This will only write to the underlying store if the value has changed, and will only read the
/// existing value from storage once.
///
/// # Examples
/// ```
/// use near_sdk::store::LazyOption;
///
/// let mut a = LazyOption::new(b"a", None);
/// assert!(a.is_none());
///
/// *a = Some("new value".to_owned());
/// assert_eq!(a.get(), &Some("new value".to_owned()));
///
/// // Using Option::replace:
/// let old_str = a.replace("new new value".to_owned());
/// assert_eq!(old_str, Some("new value".to_owned()));
/// assert_eq!(a.get(), &Some("new new value".to_owned()));
/// ```
/// [`Deref`]: std::ops::Deref
#[near(inside_nearsdk)]
pub struct LazyOption<T>
where
T: BorshSerialize,
{
/// Key bytes to index the contract's storage.
prefix: Box<[u8]>,
/// Cached value which is lazily loaded and deserialized from storage.
#[borsh(skip, bound(deserialize = ""))] // removes `core::default::Default` bound from T
cache: OnceCell<CacheEntry<T>>,
}
impl<T> LazyOption<T>
where
T: BorshSerialize,
{
/// Create a new lazy option with the given `prefix` and the initial value.
///
/// This prefix can be anything that implements [`IntoStorageKey`]. The prefix is used when
/// storing and looking up values in storage to ensure no collisions with other collections.
pub fn new<S>(prefix: S, value: Option<T>) -> Self
where
S: IntoStorageKey,
{
let cache = match value {
Some(value) => CacheEntry::new_modified(Some(value)),
None => CacheEntry::new_cached(None),
};
Self { prefix: prefix.into_storage_key().into_boxed_slice(), cache: OnceCell::from(cache) }
}
/// Updates the value with a new value. This does not load the current value from storage.
pub fn set(&mut self, value: Option<T>) {
if let Some(v) = self.cache.get_mut() {
*v.value_mut() = value;
} else {
self.cache
.set(CacheEntry::new_modified(value))
// Cache is checked to not be filled in if statement above
.unwrap_or_else(|_| env::abort());
}
}
/// Writes any changes to the value to storage. This will automatically be done when the
/// value is dropped through [`Drop`] so this should only be used when the changes need to be
/// reflected in the underlying storage before then.
pub fn flush(&mut self) {
if let Some(v) = self.cache.get_mut() {
if !v.is_modified() {
return;
}
match v.value().as_ref() {
Some(value) => serialize_and_store(&self.prefix, value),
None => {
env::storage_remove(&self.prefix);
}
}
// Replaces cache entry state to cached because the value in memory matches the
// stored value. This avoids writing the same value twice.
v.replace_state(EntryState::Cached);
}
}
}
impl<T> LazyOption<T>
where
T: BorshSerialize + BorshDeserialize,
{
/// Returns a reference to the lazily loaded optional.
/// The load from storage only happens once, and if the value is already cached, it will not
/// be reloaded.
pub fn get(&self) -> &Option<T> {
let entry = self.cache.get_or_init(|| load_and_deserialize(&self.prefix));
entry.value()
}
/// Returns a reference to the lazily loaded optional.
/// The load from storage only happens once, and if the value is already cached, it will not
/// be reloaded.
pub fn get_mut(&mut self) -> &mut Option<T> {
self.cache.get_or_init(|| load_and_deserialize(&self.prefix));
let entry = self.cache.get_mut().unwrap_or_else(|| env::abort());
entry.value_mut()
}
}
#[cfg(not(target_arch = "wasm32"))]
#[cfg(test)]
mod tests {
use super::*;
#[test]
pub fn test_lazy_option() {
let mut a = LazyOption::new(b"a", None);
assert!(a.is_none());
assert!(!env::storage_has_key(b"a"));
// Check value has been set in via cache:
a.set(Some(42u32));
assert!(a.is_some());
assert_eq!(a.get(), &Some(42));
// Flushing, then check if storage has been set:
a.flush();
assert!(env::storage_has_key(b"a"));
assert_eq!(u32::try_from_slice(&env::storage_read(b"a").unwrap()).unwrap(), 42);
// New value is set
*a = Some(49u32);
assert!(a.is_some());
assert_eq!(a.get(), &Some(49));
// Testing `Option::replace`
let old = a.replace(69u32);
assert!(a.is_some());
assert_eq!(old, Some(49));
// Testing `Option::take` deletes from internal storage
let taken = a.take();
assert!(a.is_none());
assert_eq!(taken, Some(69));
// `flush`/`drop` after `Option::take` should remove from storage:
drop(a);
assert!(!env::storage_has_key(b"a"));
}
#[test]
pub fn test_debug() {
let mut lazy_option = LazyOption::new(b"m", None);
if cfg!(feature = "expensive-debug") {
assert_eq!(format!("{:?}", lazy_option), "None");
} else {
assert_eq!(
format!("{:?}", lazy_option),
"LazyOption { storage_key: [109], cache: Some(CacheEntry { value: None, state: Cached }) }"
);
}
*lazy_option = Some(1u8);
if cfg!(feature = "expensive-debug") {
assert_eq!(format!("{:?}", lazy_option), "Some(1)");
} else {
assert_eq!(
format!("{:?}", lazy_option),
"LazyOption { storage_key: [109], cache: Some(CacheEntry { value: Some(1), state: Modified }) }"
);
}
// Serialize and deserialize to simulate storing and loading.
let serialized = borsh::to_vec(&lazy_option).unwrap();
drop(lazy_option);
let lazy_option = LazyOption::<u8>::try_from_slice(&serialized).unwrap();
if cfg!(feature = "expensive-debug") {
assert_eq!(format!("{:?}", lazy_option), "Some(1)");
} else {
assert_eq!(
format!("{:?}", lazy_option),
"LazyOption { storage_key: [109], cache: None }"
);
}
}
}