fuel_storage/lib.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
#![no_std]
#![deny(
clippy::arithmetic_side_effects,
clippy::cast_sign_loss,
clippy::cast_possible_truncation,
clippy::cast_possible_wrap,
clippy::string_slice
)]
#![deny(unsafe_code)]
#![deny(unused_crate_dependencies)]
mod impls;
extern crate alloc;
use alloc::{
borrow::{
Cow,
ToOwned,
},
vec::Vec,
};
/// Merkle root alias type
pub type MerkleRoot = [u8; 32];
/// Mappable type with `Key` and `Value`.
///
/// # Example
///
/// ```rust
/// use fuel_storage::Mappable;
/// pub struct Contract;
///
/// impl Mappable for Contract {
/// /// The `[u8; 32]` is a primitive type, so we can't optimize it more.
/// type Key = Self::OwnedKey;
/// type OwnedKey = [u8; 32];
/// /// It is optimized to use slice instead of vector.
/// type Value = [u8];
/// type OwnedValue = Vec<u8>;
/// }
/// ```
pub trait Mappable {
/// The key type is used during interaction with the storage. In most cases, it is the
/// same as `Self::OwnedKey`.
type Key: ?Sized + ToOwned;
/// The owned type of the `Key` retrieving from the storage.
type OwnedKey: From<<Self::Key as ToOwned>::Owned> + Clone;
/// The value type is used while setting the value to the storage. In most cases, it
/// is the same as `Self::OwnedValue`, but it is without restriction and can be
/// used for performance optimizations.
type Value: ?Sized + ToOwned;
/// The owned type of the `Value` retrieving from the storage.
type OwnedValue: From<<Self::Value as ToOwned>::Owned> + Clone;
}
/// Base read storage trait for Fuel infrastructure.
///
/// Generic should implement [`Mappable`] trait with all storage type information.
pub trait StorageInspect<Type: Mappable> {
type Error;
/// Retrieve `Cow<Value>` such as `Key->Value`.
fn get(&self, key: &Type::Key) -> Result<Option<Cow<Type::OwnedValue>>, Self::Error>;
/// Return `true` if there is a `Key` mapping to a value in the storage.
fn contains_key(&self, key: &Type::Key) -> Result<bool, Self::Error>;
}
/// Base storage trait for Fuel infrastructure.
///
/// Generic should implement [`Mappable`] trait with all storage type information.
pub trait StorageMutate<Type: Mappable>: StorageInspect<Type> {
/// Append `Key->Value` mapping to the storage.
fn insert(
&mut self,
key: &Type::Key,
value: &Type::Value,
) -> Result<(), Self::Error> {
self.replace(key, value).map(|_| ())
}
/// Append `Key->Value` mapping to the storage.
///
/// If `Key` was already mappped to a value, return the replaced value as
/// `Ok(Some(Value))`. Return `Ok(None)` otherwise.
fn replace(
&mut self,
key: &Type::Key,
value: &Type::Value,
) -> Result<Option<Type::OwnedValue>, Self::Error>;
/// Remove `Key->Value` mapping from the storage.
fn remove(&mut self, key: &Type::Key) -> Result<(), Self::Error> {
self.take(key).map(|_| ())
}
/// Remove `Key->Value` mapping from the storage.
///
/// Return `Ok(Some(Value))` if the value was present. If the key wasn't found, return
/// `Ok(None)`.
fn take(&mut self, key: &Type::Key) -> Result<Option<Type::OwnedValue>, Self::Error>;
}
/// Base storage trait for Fuel infrastructure.
///
/// Allows checking the size of the value stored at a given key.
/// Checking the size of a value is a cheap operation and should not require
/// copying the value into a buffer.
pub trait StorageSize<Type: Mappable>: StorageInspect<Type> {
/// Return the number of bytes stored at this key.
fn size_of_value(&self, key: &Type::Key) -> Result<Option<usize>, Self::Error>;
}
/// Base storage trait for Fuel infrastructure.
///
/// Allows reading the raw bytes of the value stored at a given key
/// into a provided buffer.
///
/// This trait should skip any deserialization and simply copy the raw bytes.
pub trait StorageRead<Type: Mappable>: StorageInspect<Type> + StorageSize<Type> {
/// Read the value stored at the given key into the provided buffer if the value
/// exists.
///
/// Does not perform any deserialization.
///
/// Returns None if the value does not exist.
/// Otherwise, returns the number of bytes read.
fn read(&self, key: &Type::Key, buf: &mut [u8])
-> Result<Option<usize>, Self::Error>;
/// Same as `read` but allocates a new buffer and returns it.
///
/// Checks the size of the value and allocates a buffer of that size.
fn read_alloc(&self, key: &Type::Key) -> Result<Option<Vec<u8>>, Self::Error>;
}
/// Base storage trait for Fuel infrastructure.
///
/// Allows writing the raw bytes of the value stored to a given key
/// from a provided buffer.
///
/// This trait should skip any serialization and simply copy the raw bytes
/// to the storage.
pub trait StorageWrite<Type: Mappable>: StorageMutate<Type> {
/// Write the bytes to the given key from the provided buffer.
///
/// Does not perform any serialization.
///
/// Returns the number of bytes written.
fn write_bytes(&mut self, key: &Type::Key, buf: &[u8]) -> Result<usize, Self::Error>;
/// Write the bytes to the given key from the provided buffer and
/// return the previous bytes if it existed.
///
/// Does not perform any serialization.
///
/// Returns the number of bytes written and the previous value if it existed.
fn replace_bytes(
&mut self,
key: &Type::Key,
buf: &[u8],
) -> Result<(usize, Option<Vec<u8>>), Self::Error>;
/// Removes a bytes from the storage and returning it without deserializing it.
fn take_bytes(&mut self, key: &Type::Key) -> Result<Option<Vec<u8>>, Self::Error>;
}
/// Returns the merkle root for the `StorageType` per merkle `Key`. Per one storage, it is
/// possible to have several merkle trees under different `Key`.
pub trait MerkleRootStorage<Key, StorageType>: StorageInspect<StorageType>
where
StorageType: Mappable,
{
/// Return the merkle root of the stored `Type` in the storage.
///
/// The cryptographic primitive is an arbitrary choice of the implementor and this
/// trait won't impose any restrictions to that.
fn root(&self, key: &Key) -> Result<MerkleRoot, Self::Error>;
}
/// The wrapper around the storage that supports only methods from `StorageInspect`.
pub struct StorageRef<'a, T: 'a + ?Sized, Type: Mappable>(
&'a T,
core::marker::PhantomData<Type>,
);
/// Helper trait for `StorageInspect` to provide user-friendly API to retrieve storage as
/// reference.
///
/// # Example
///
/// ```rust
/// use fuel_storage::{Mappable, StorageInspect, StorageAsRef};
///
/// pub struct Contracts;
///
/// impl Mappable for Contracts {
/// type Key = Self::OwnedKey;
/// type OwnedKey = [u8; 32];
/// type Value = [u8];
/// type OwnedValue = Vec<u8>;
/// }
///
/// pub struct Balances;
///
/// impl Mappable for Balances {
/// type Key = Self::OwnedKey;
/// type OwnedKey = u128;
/// type Value = Self::OwnedValue;
/// type OwnedValue = u64;
/// }
///
/// pub trait Logic: StorageInspect<Contracts> + StorageInspect<Balances> {
/// fn run(&self) {
/// // You can specify which storage do you want to call with `storage::<Type>()`
/// let _ = self.storage::<Contracts>().get(&[0; 32]);
/// let _ = self.storage::<Balances>().get(&123);
/// }
/// }
/// ```
pub trait StorageAsRef {
#[inline(always)]
fn storage<Type>(&self) -> StorageRef<Self, Type>
where
Type: Mappable,
{
self.storage_as_ref()
}
#[inline(always)]
fn storage_as_ref<Type>(&self) -> StorageRef<Self, Type>
where
Type: Mappable,
{
StorageRef(self, Default::default())
}
}
impl<T> StorageAsRef for T {}
/// The wrapper around the storage that supports methods from `StorageInspect` and
/// `StorageMutate`.
pub struct StorageMut<'a, T: 'a + ?Sized, Type: Mappable>(
&'a mut T,
core::marker::PhantomData<Type>,
);
/// Helper trait for `StorageMutate` to provide user-friendly API to retrieve storage as
/// mutable reference.
///
/// # Example
///
/// ```rust
/// use fuel_storage::{Mappable, StorageMutate, StorageInspect, StorageAsMut};
///
/// pub struct Contracts;
///
/// impl Mappable for Contracts {
/// type Key = Self::OwnedKey;
/// type OwnedKey = [u8; 32];
/// type Value = [u8];
/// type OwnedValue = Vec<u8>;
/// }
///
/// pub struct Balances;
///
/// impl Mappable for Balances {
/// type Key = Self::OwnedKey;
/// type OwnedKey = u128;
/// type Value = Self::OwnedValue;
/// type OwnedValue = u64;
/// }
///
/// pub trait Logic: StorageInspect<Contracts> + StorageMutate<Balances> {
/// fn run(&mut self) {
/// let mut self_ = self;
/// // You can specify which storage do you want to call with `storage::<Type>()`
/// let _ = self_.storage::<Balances>().insert(&123, &321);
/// let _ = self_.storage::<Contracts>().get(&[0; 32]);
/// }
/// }
/// ```
pub trait StorageAsMut {
#[inline(always)]
fn storage<Type>(&mut self) -> StorageMut<Self, Type>
where
Type: Mappable,
{
self.storage_as_mut()
}
#[inline(always)]
fn storage_as_mut<Type>(&mut self) -> StorageMut<Self, Type>
where
Type: Mappable,
{
StorageMut(self, Default::default())
}
}
impl<T> StorageAsMut for T {}