subsoil 0.2.0

Soil primitives foundation crate
Documentation
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
// This file is part of Soil.

// Copyright (C) Soil contributors.
// Copyright (C) Parity Technologies (UK) Ltd.
// SPDX-License-Identifier: Apache-2.0 OR GPL-3.0-or-later WITH Classpath-exception-2.0

//! Externalities extensions storage.
//!
//! Externalities support to register a wide variety custom extensions. The [`Extensions`] provides
//! some convenience functionality to store and retrieve these extensions.
//!
//! It is required that each extension implements the [`Extension`] trait.

use super::Error;
use alloc::{
	boxed::Box,
	collections::btree_map::{BTreeMap, Entry},
};
use core::{
	any::{Any, TypeId},
	iter::FromIterator,
	ops::DerefMut,
};

/// Informs [`Extension`] about what type of transaction is started, committed or rolled back.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TransactionType {
	/// A transaction started by the host.
	Host,
	/// A transaction started by the runtime.
	Runtime,
}

impl TransactionType {
	/// Is `self` set to [`Self::Host`].
	pub fn is_host(self) -> bool {
		matches!(self, Self::Host)
	}

	/// Is `self` set to [`Self::Runtime`].
	pub fn is_runtime(self) -> bool {
		matches!(self, Self::Runtime)
	}
}

/// Marker trait for types that should be registered as [`Externalities`](crate::externalities::Externalities)
/// extension.
///
/// As extensions are stored as `Box<Any>`, this trait should give more confidence that the correct
/// type is registered and requested.
pub trait Extension: Send + 'static {
	/// Return the extension as `&mut dyn Any`.
	///
	/// This is a trick to make the trait type castable into an [`Any`].
	fn as_mut_any(&mut self) -> &mut dyn Any;

	/// Get the [`TypeId`] of this `Extension`.
	fn type_id(&self) -> TypeId;

	/// Start a transaction of type `ty`.
	fn start_transaction(&mut self, ty: TransactionType) {
		let _ty = ty;
	}

	/// Commit a transaction of type `ty`.
	fn commit_transaction(&mut self, ty: TransactionType) {
		let _ty = ty;
	}

	/// Rollback a transaction of type `ty`.
	fn rollback_transaction(&mut self, ty: TransactionType) {
		let _ty = ty;
	}
}

impl Extension for Box<dyn Extension> {
	fn as_mut_any(&mut self) -> &mut dyn Any {
		(**self).as_mut_any()
	}

	fn type_id(&self) -> TypeId {
		(**self).type_id()
	}

	fn start_transaction(&mut self, ty: TransactionType) {
		(**self).start_transaction(ty);
	}

	fn commit_transaction(&mut self, ty: TransactionType) {
		(**self).commit_transaction(ty);
	}

	fn rollback_transaction(&mut self, ty: TransactionType) {
		(**self).rollback_transaction(ty);
	}
}

/// Macro for declaring an extension that usable with [`Extensions`].
///
/// The extension will be an unit wrapper struct that implements [`Extension`], `Deref` and
/// `DerefMut`. The wrapped type is given by the user.
///
/// # Example
/// ```
/// # use subsoil::decl_extension;
/// decl_extension! {
///     /// Some test extension
///     struct TestExt(String);
/// }
/// ```
///
/// The [`Extension`] trait provides hooks that are called when starting, committing or rolling back
/// a transaction. These can be implemented with the macro as well:
/// ```
/// # use subsoil::{decl_extension, externalities::TransactionType};
/// decl_extension! {
///     /// Some test extension
///     struct TestExtWithCallback(String);
///
///     impl TestExtWithCallback {
///         fn start_transaction(&mut self, ty: TransactionType) {
///             // do something cool
///         }
///
///         // The other methods `commit_transaction` and `rollback_transaction` can also
///         // be implemented in the same way.
///     }
/// }
/// ```
#[macro_export]
macro_rules! decl_extension {
	(
		$( #[ $attr:meta ] )*
		$vis:vis struct $ext_name:ident ($inner:ty);
		$(
			impl $ext_name_impl:ident {
				$(
					$impls:tt
				)*
			}
		)*
	) => {
		$( #[ $attr ] )*
		$vis struct $ext_name (pub $inner);

		impl $crate::externalities::Extension for $ext_name {
			fn as_mut_any(&mut self) -> &mut dyn core::any::Any {
				self
			}

			fn type_id(&self) -> core::any::TypeId {
				core::any::Any::type_id(self)
			}

			$(
				$(
					$impls
				)*
			)*
		}

		impl $ext_name {
			/// Returns the `TypeId` of this extension.
			#[allow(dead_code)]
			pub fn type_id() -> core::any::TypeId {
				core::any::TypeId::of::<Self>()
			}
		}

		impl core::ops::Deref for $ext_name {
			type Target = $inner;

			fn deref(&self) -> &Self::Target {
				&self.0
			}
		}

		impl core::ops::DerefMut for $ext_name {
			fn deref_mut(&mut self) -> &mut Self::Target {
				&mut self.0
			}
		}

		impl From<$inner> for $ext_name {
			fn from(inner: $inner) -> Self {
				Self(inner)
			}
 		}
	};
	(
		$( #[ $attr:meta ] )*
		$vis:vis struct $ext_name:ident;
	) => {
		$( #[ $attr ] )*
		$vis struct $ext_name;

		impl $crate::externalities::Extension for $ext_name {
			fn as_mut_any(&mut self) -> &mut dyn core::any::Any {
				self
			}

			fn type_id(&self) -> core::any::TypeId {
				core::any::Any::type_id(self)
			}
		}

		impl $ext_name {
			/// Returns the `TypeId` of this extension.
			#[allow(dead_code)]
			pub fn type_id() -> core::any::TypeId {
				core::any::TypeId::of::<Self>()
			}
		}
	}
}

/// Something that provides access to the [`Extensions`] store.
///
/// This is a super trait of the [`Externalities`](crate::externalities::Externalities).
pub trait ExtensionStore {
	/// Tries to find a registered extension by the given `type_id` and returns it as a `&mut dyn
	/// Any`.
	///
	/// It is advised to use [`ExternalitiesExt::extension`](super::ExternalitiesExt::extension)
	/// instead of this function to get type system support and automatic type downcasting.
	fn extension_by_type_id(&mut self, type_id: TypeId) -> Option<&mut dyn Any>;

	/// Register extension `extension` with specified `type_id`.
	///
	/// It should return error if extension is already registered.
	fn register_extension_with_type_id(
		&mut self,
		type_id: TypeId,
		extension: Box<dyn Extension>,
	) -> Result<(), Error>;

	/// Deregister extension with specified 'type_id' and drop it.
	///
	/// It should return error if extension is not registered.
	fn deregister_extension_by_type_id(&mut self, type_id: TypeId) -> Result<(), Error>;
}

/// Stores extensions that should be made available through the externalities.
#[derive(Default)]
pub struct Extensions {
	extensions: BTreeMap<TypeId, Box<dyn Extension>>,
}

impl core::fmt::Debug for Extensions {
	fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
		write!(f, "Extensions: ({})", self.extensions.len())
	}
}

impl Extensions {
	/// Create new instance of `Self`.
	pub fn new() -> Self {
		Self::default()
	}

	/// Register the given extension.
	pub fn register<E: Extension>(&mut self, ext: E) {
		let type_id = ext.type_id();
		self.extensions.insert(type_id, Box::new(ext));
	}

	/// Returns `true` if an extension for the given `type_id` is already registered.
	pub fn is_registered(&self, type_id: TypeId) -> bool {
		self.extensions.contains_key(&type_id)
	}

	/// Register extension `extension` using the given `type_id`.
	pub fn register_with_type_id(
		&mut self,
		type_id: TypeId,
		extension: Box<dyn Extension>,
	) -> Result<(), Error> {
		match self.extensions.entry(type_id) {
			Entry::Vacant(vacant) => {
				vacant.insert(extension);
				Ok(())
			},
			Entry::Occupied(_) => Err(Error::ExtensionAlreadyRegistered),
		}
	}

	/// Return a mutable reference to the requested extension.
	pub fn get_mut(&mut self, ext_type_id: TypeId) -> Option<&mut dyn Any> {
		self.extensions
			.get_mut(&ext_type_id)
			.map(DerefMut::deref_mut)
			.map(Extension::as_mut_any)
	}

	/// Deregister extension for the given `type_id`.
	///
	/// Returns `true` when the extension was registered.
	pub fn deregister(&mut self, type_id: TypeId) -> bool {
		self.extensions.remove(&type_id).is_some()
	}

	/// Returns a mutable iterator over all extensions.
	pub fn iter_mut(&mut self) -> impl Iterator<Item = (&TypeId, &mut Box<dyn Extension>)> {
		self.extensions.iter_mut()
	}

	/// Merge `other` into `self`.
	///
	/// If both contain the same extension, the extension instance of `other` will overwrite the
	/// instance found in `self`.
	pub fn merge(&mut self, other: Self) {
		self.extensions.extend(other.extensions);
	}

	/// Start a transaction of type `ty`.
	pub fn start_transaction(&mut self, ty: TransactionType) {
		self.extensions.values_mut().for_each(|e| e.start_transaction(ty));
	}

	/// Commit a transaction of type `ty`.
	pub fn commit_transaction(&mut self, ty: TransactionType) {
		self.extensions.values_mut().for_each(|e| e.commit_transaction(ty));
	}

	/// Rollback a transaction of type `ty`.
	pub fn rollback_transaction(&mut self, ty: TransactionType) {
		self.extensions.values_mut().for_each(|e| e.rollback_transaction(ty));
	}

	/// Returns an iterator that returns all stored extensions.
	pub fn into_extensions(self) -> impl Iterator<Item = Box<dyn Extension>> {
		self.extensions.into_values()
	}
}

impl Extend<Extensions> for Extensions {
	fn extend<T: IntoIterator<Item = Extensions>>(&mut self, iter: T) {
		iter.into_iter()
			.for_each(|ext| self.extensions.extend(ext.extensions.into_iter()));
	}
}

impl<A: Extension> From<A> for Extensions {
	fn from(ext: A) -> Self {
		Self {
			extensions: FromIterator::from_iter(
				[(Extension::type_id(&ext), Box::new(ext) as Box<dyn Extension>)].into_iter(),
			),
		}
	}
}

impl<A: Extension, B: Extension> From<(A, B)> for Extensions {
	fn from((ext, ext2): (A, B)) -> Self {
		Self {
			extensions: FromIterator::from_iter(
				[
					(Extension::type_id(&ext), Box::new(ext) as Box<dyn Extension>),
					(Extension::type_id(&ext2), Box::new(ext2) as Box<dyn Extension>),
				]
				.into_iter(),
			),
		}
	}
}

impl<A: Extension, B: Extension, C: Extension> From<(A, B, C)> for Extensions {
	fn from((ext, ext2, ext3): (A, B, C)) -> Self {
		Self {
			extensions: FromIterator::from_iter(
				[
					(Extension::type_id(&ext), Box::new(ext) as Box<dyn Extension>),
					(Extension::type_id(&ext2), Box::new(ext2) as Box<dyn Extension>),
					(Extension::type_id(&ext3), Box::new(ext3) as Box<dyn Extension>),
				]
				.into_iter(),
			),
		}
	}
}

#[cfg(test)]
mod tests {
	use super::*;

	decl_extension! {
		struct DummyExt(u32);
	}
	decl_extension! {
		struct DummyExt2(u32);
	}

	#[test]
	fn register_and_retrieve_extension() {
		let mut exts = Extensions::new();
		exts.register(DummyExt(1));
		exts.register(DummyExt2(2));

		let ext = exts.get_mut(TypeId::of::<DummyExt>()).expect("Extension is registered");
		let ext_ty = ext.downcast_mut::<DummyExt>().expect("Downcasting works");

		assert_eq!(ext_ty.0, 1);
	}

	#[test]
	fn register_box_extension() {
		let mut exts = Extensions::new();
		let box1: Box<dyn Extension> = Box::new(DummyExt(1));
		let box2: Box<dyn Extension> = Box::new(DummyExt2(2));
		exts.register(box1);
		exts.register(box2);

		{
			let ext = exts.get_mut(TypeId::of::<DummyExt>()).expect("Extension 1 is registered");
			let ext_ty = ext.downcast_mut::<DummyExt>().expect("Downcasting works for Extension 1");
			assert_eq!(ext_ty.0, 1);
		}
		{
			let ext2 = exts.get_mut(TypeId::of::<DummyExt2>()).expect("Extension 2 is registered");
			let ext_ty2 =
				ext2.downcast_mut::<DummyExt2>().expect("Downcasting works for Extension 2");
			assert_eq!(ext_ty2.0, 2);
		}
	}

	#[test]
	fn from_boxed_extensions() {
		let exts = Extensions::from((DummyExt(1), DummyExt2(2)));

		assert!(exts.is_registered(DummyExt::type_id()));
		assert!(exts.is_registered(DummyExt2::type_id()));
	}
}