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
use super::h256::H256;
use crate::abi::TypeAbi;
use crate::BoxedBytes;
use alloc::boxed::Box;
use alloc::string::String;
use alloc::vec::Vec;
use core::fmt::Debug;

/// An Address is just a H256 with a different name.
/// Has a different ABI name than H256.
#[derive(Hash, Eq, PartialEq, Clone, Debug)]
pub struct Address(H256);

impl From<H256> for Address {
	#[inline]
	fn from(hash: H256) -> Self {
		Address(hash)
	}
}

impl From<Address> for H256 {
	#[inline]
	fn from(address: Address) -> Self {
		address.0
	}
}

impl<'a> From<&'a Address> for &'a H256 {
	#[inline]
	fn from(address: &'a Address) -> Self {
		&address.0
	}
}

impl From<[u8; 32]> for Address {
	#[inline]
	fn from(arr: [u8; 32]) -> Self {
		Address(H256::from(arr))
	}
}

impl<'a> From<&'a [u8; 32]> for Address {
	#[inline]
	fn from(bytes: &'a [u8; 32]) -> Self {
		Address(H256::from(bytes))
	}
}

impl<'a> From<&'a mut [u8; 32]> for Address {
	#[inline]
	fn from(bytes: &'a mut [u8; 32]) -> Self {
		Address(H256::from(bytes))
	}
}

impl From<Box<[u8; 32]>> for Address {
	#[inline]
	fn from(bytes: Box<[u8; 32]>) -> Self {
		Address(H256::from(bytes))
	}
}

impl Address {
	pub fn from_slice(slice: &[u8]) -> Self {
		Address(H256::from_slice(slice))
	}
}

impl From<Address> for [u8; 32] {
	#[inline]
	fn from(addr: Address) -> Self {
		addr.0.into()
	}
}

impl AsRef<[u8]> for Address {
	#[inline]
	fn as_ref(&self) -> &[u8] {
		self.0.as_ref()
	}
}

impl AsMut<[u8]> for Address {
	#[inline]
	fn as_mut(&mut self) -> &mut [u8] {
		self.0.as_mut()
	}
}

impl Address {
	/// Returns a new address of 32 zeros.
	/// Allocates directly in heap.
	/// Minimal resulting wasm code (14 bytes if not inlined).
	pub fn zero() -> Self {
		Address(H256::zero())
	}

	/// Returns the size of an address in bytes.
	#[inline]
	pub fn len_bytes() -> usize {
		H256::len_bytes()
	}

	/// Extracts a byte slice containing the entire fixed hash.
	#[inline]
	pub fn as_bytes(&self) -> &[u8] {
		self.0.as_bytes()
	}

	#[inline]
	pub fn copy_to_array(&self, target: &mut [u8; 32]) {
		self.0.copy_to_array(target)
	}

	#[inline]
	pub fn to_vec(&self) -> Vec<u8> {
		self.0.to_vec()
	}

	/// Pointer to the data on the heap.
	#[inline]
	pub fn as_ptr(&mut self) -> *const u8 {
		self.0.as_ptr()
	}

	/// Returns an unsafe mutable pointer to the data on the heap.
	/// Used by the API to populate data.
	#[inline]
	pub fn as_mut_ptr(&mut self) -> *mut u8 {
		self.0.as_mut_ptr()
	}

	/// True if all 32 bytes of the hash are zero.
	pub fn is_zero(&self) -> bool {
		self.0.is_zero()
	}

	/// Transmutes self to an (in principle) variable length boxed bytes object.
	/// Both BoxedBytes and H256 keep the data on the heap, so only the pointer to that data needs to be transmuted.
	/// Does not reallocate or copy data, the data on the heap remains untouched.
	pub fn into_boxed_bytes(self) -> BoxedBytes {
		self.0.into_boxed_bytes()
	}
}

use dharitri_codec::*;

impl NestedEncode for Address {
	fn dep_encode<O: NestedEncodeOutput>(&self, dest: &mut O) -> Result<(), EncodeError> {
		self.0.dep_encode(dest)
	}

	fn dep_encode_or_exit<O: NestedEncodeOutput, ExitCtx: Clone>(
		&self,
		dest: &mut O,
		c: ExitCtx,
		exit: fn(ExitCtx, EncodeError) -> !,
	) {
		self.0.dep_encode_or_exit(dest, c, exit);
	}
}

impl TopEncode for Address {
	fn top_encode<O: TopEncodeOutput>(&self, output: O) -> Result<(), EncodeError> {
		self.0.top_encode(output)
	}

	fn top_encode_or_exit<O: TopEncodeOutput, ExitCtx: Clone>(
		&self,
		output: O,
		c: ExitCtx,
		exit: fn(ExitCtx, EncodeError) -> !,
	) {
		self.0.top_encode_or_exit(output, c, exit);
	}
}

impl NestedDecode for Address {
	fn dep_decode<I: NestedDecodeInput>(input: &mut I) -> Result<Self, DecodeError> {
		Ok(Address(H256::dep_decode(input)?))
	}

	fn dep_decode_or_exit<I: NestedDecodeInput, ExitCtx: Clone>(
		input: &mut I,
		c: ExitCtx,
		exit: fn(ExitCtx, DecodeError) -> !,
	) -> Self {
		Address(H256::dep_decode_or_exit(input, c, exit))
	}
}

impl TopDecode for Address {
	fn top_decode<I: TopDecodeInput>(input: I) -> Result<Self, DecodeError> {
		Ok(Address(H256::top_decode(input)?))
	}

	fn top_decode_or_exit<I: TopDecodeInput, ExitCtx: Clone>(
		input: I,
		c: ExitCtx,
		exit: fn(ExitCtx, DecodeError) -> !,
	) -> Self {
		Address(H256::top_decode_or_exit(input, c, exit))
	}
}

impl TypeAbi for Address {
	fn type_name() -> String {
		"Address".into()
	}
}

#[cfg(test)]
mod address_tests {
	use super::*;
	use alloc::vec::Vec;
	use dharitri_codec::test_util::{check_top_encode, ser_deser_ok};

	#[test]
	fn test_address() {
		let addr = Address::from([4u8; 32]);
		ser_deser_ok(addr, &[4u8; 32]);
	}

	#[test]
	fn test_opt_address() {
		let addr = Address::from([4u8; 32]);
		let mut expected: Vec<u8> = Vec::new();
		expected.push(1u8);
		expected.extend_from_slice(&[4u8; 32]);
		ser_deser_ok(Some(addr), expected.as_slice());
	}

	#[test]
	fn test_ser_address_ref() {
		let addr = Address::from([4u8; 32]);
		let expected_bytes: &[u8] = &[4u8; 32 * 3];

		let tuple = (&addr, &&&addr, addr.clone());
		let serialized_bytes = check_top_encode(&tuple);
		assert_eq!(serialized_bytes.as_slice(), expected_bytes);
	}

	#[test]
	fn test_is_zero() {
		assert!(Address::zero().is_zero());
	}

	#[test]
	fn test_size_of() {
		use core::mem::size_of;
		assert_eq!(size_of::<Address>(), size_of::<usize>());
		assert_eq!(size_of::<Option<Address>>(), size_of::<usize>());
	}
}