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
use crate::*;
use elrond_codec::*;

/// Any type that is used as an endpoint argument must implement this trait.
pub trait DynArg: Sized {
	fn dyn_load<I, D>(loader: &mut D, arg_id: ArgId) -> Self
	where
		I: TopDecodeInput,
		D: DynArgInput<I>;
}

/// All top-deserializable types can be endpoint arguments.
impl<T> DynArg for T
where
	T: TopDecode,
{
	fn dyn_load<I, D>(loader: &mut D, arg_id: ArgId) -> Self
	where
		I: TopDecodeInput,
		D: DynArgInput<I>,
	{
		if let TypeInfo::Unit = T::TYPE_INFO {
			// unit type returns without loading anything
			let cast_unit: T = unsafe { core::mem::transmute_copy(&()) };
			return cast_unit;
		}

		let arg_input = loader.next_arg_input();
		T::top_decode_or_exit(arg_input, &(&*loader, arg_id), dyn_load_exit)
	}
}

#[inline(always)]
fn dyn_load_exit<I, D>(ctx: &(&D, ArgId), de_err: DecodeError) -> !
where
	I: TopDecodeInput,
	D: DynArgInput<I>,
{
	let (loader, arg_id) = ctx;
	signal_arg_de_error(*loader, *arg_id, de_err)
}