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
use crate::UtxoId;
use fuel_types::bytes::{self, SizedBytes};
use fuel_types::{Address, Bytes32, Color, ContractId, Word};
use std::convert::TryFrom;
use std::{io, mem};
const WORD_SIZE: usize = mem::size_of::<Word>();
const INPUT_COIN_FIXED_SIZE: usize = WORD_SIZE
+ Bytes32::LEN
+ WORD_SIZE
+ Address::LEN
+ WORD_SIZE
+ Color::LEN
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE
+ WORD_SIZE;
const INPUT_CONTRACT_SIZE: usize = WORD_SIZE
+ Bytes32::LEN
+ WORD_SIZE
+ Bytes32::LEN
+ Bytes32::LEN
+ ContractId::LEN;
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
enum InputRepr {
Coin = 0x00,
Contract = 0x01,
}
impl TryFrom<Word> for InputRepr {
type Error = io::Error;
fn try_from(b: Word) -> Result<Self, Self::Error> {
match b {
0x00 => Ok(Self::Coin),
0x01 => Ok(Self::Contract),
_ => Err(io::Error::new(
io::ErrorKind::InvalidData,
"The provided identifier is invalid!",
)),
}
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
#[cfg_attr(
feature = "serde-types-minimal",
derive(serde::Serialize, serde::Deserialize)
)]
pub enum Input {
Coin {
utxo_id: UtxoId,
owner: Address,
amount: Word,
color: Color,
witness_index: u8,
maturity: Word,
predicate: Vec<u8>,
predicate_data: Vec<u8>,
},
Contract {
utxo_id: UtxoId,
balance_root: Bytes32,
state_root: Bytes32,
contract_id: ContractId,
},
}
impl Default for Input {
fn default() -> Self {
Self::Contract {
utxo_id: Default::default(),
balance_root: Default::default(),
state_root: Default::default(),
contract_id: Default::default(),
}
}
}
impl bytes::SizedBytes for Input {
fn serialized_size(&self) -> usize {
match self {
Self::Coin {
predicate,
predicate_data,
..
} => {
INPUT_COIN_FIXED_SIZE
+ bytes::padded_len(predicate.as_slice())
+ bytes::padded_len(predicate_data.as_slice())
}
_ => INPUT_CONTRACT_SIZE,
}
}
}
impl Input {
pub const fn coin(
utxo_id: UtxoId,
owner: Address,
amount: Word,
color: Color,
witness_index: u8,
maturity: Word,
predicate: Vec<u8>,
predicate_data: Vec<u8>,
) -> Self {
Self::Coin {
utxo_id,
owner,
amount,
color,
witness_index,
maturity,
predicate,
predicate_data,
}
}
pub const fn contract(
utxo_id: UtxoId,
balance_root: Bytes32,
state_root: Bytes32,
contract_id: ContractId,
) -> Self {
Self::Contract {
utxo_id,
balance_root,
state_root,
contract_id,
}
}
pub const fn utxo_id(&self) -> &UtxoId {
match self {
Self::Coin { utxo_id, .. } => utxo_id,
Self::Contract { utxo_id, .. } => utxo_id,
}
}
pub fn predicate(&self) -> Option<(&[u8], &[u8])> {
match self {
Input::Coin {
predicate,
predicate_data,
..
} => Some((predicate.as_slice(), predicate_data.as_slice())),
_ => None,
}
}
pub const fn is_coin(&self) -> bool {
matches!(self, Input::Coin { .. })
}
pub const fn coin_predicate_offset() -> usize {
INPUT_COIN_FIXED_SIZE
}
pub fn coin_predicate_data_offset(&self) -> Option<usize> {
match self {
Input::Coin { predicate, .. } => {
Some(Self::coin_predicate_offset() + bytes::padded_len(predicate.as_slice()))
}
_ => None,
}
}
}
impl io::Read for Input {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
let n = self.serialized_size();
if buf.len() < n {
return Err(bytes::eof());
}
match self {
Self::Coin {
utxo_id,
owner,
amount,
color,
witness_index,
maturity,
predicate,
predicate_data,
} => {
let buf = bytes::store_number_unchecked(buf, InputRepr::Coin as Word);
let buf = bytes::store_array_unchecked(buf, utxo_id.tx_id());
let buf = bytes::store_number_unchecked(buf, utxo_id.output_index() as Word);
let buf = bytes::store_array_unchecked(buf, owner);
let buf = bytes::store_number_unchecked(buf, *amount);
let buf = bytes::store_array_unchecked(buf, color);
let buf = bytes::store_number_unchecked(buf, *witness_index);
let buf = bytes::store_number_unchecked(buf, *maturity);
let buf = bytes::store_number_unchecked(buf, predicate.len() as Word);
let buf = bytes::store_number_unchecked(buf, predicate_data.len() as Word);
let (_, buf) = bytes::store_raw_bytes(buf, predicate.as_slice())?;
bytes::store_raw_bytes(buf, predicate_data.as_slice())?;
}
Self::Contract {
utxo_id,
balance_root,
state_root,
contract_id,
} => {
let buf = bytes::store_number_unchecked(buf, InputRepr::Contract as Word);
let buf = bytes::store_array_unchecked(buf, utxo_id.tx_id());
let buf = bytes::store_number_unchecked(buf, utxo_id.output_index() as Word);
let buf = bytes::store_array_unchecked(buf, balance_root);
let buf = bytes::store_array_unchecked(buf, state_root);
bytes::store_array_unchecked(buf, contract_id);
}
}
Ok(n)
}
}
impl io::Write for Input {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
if buf.len() < WORD_SIZE {
return Err(bytes::eof());
}
let (identifier, buf): (Word, _) = unsafe { bytes::restore_number_unchecked(buf) };
let identifier = InputRepr::try_from(identifier)?;
match identifier {
InputRepr::Coin if buf.len() < INPUT_COIN_FIXED_SIZE - WORD_SIZE => Err(bytes::eof()),
InputRepr::Coin => {
let mut n = INPUT_COIN_FIXED_SIZE;
let (tx_id, buf) = unsafe { bytes::restore_array_unchecked(buf) };
let (output_index, buf) = unsafe { bytes::restore_number_unchecked::<Word>(buf) };
let (owner, buf) = unsafe { bytes::restore_array_unchecked(buf) };
let (amount, buf) = unsafe { bytes::restore_number_unchecked(buf) };
let (color, buf) = unsafe { bytes::restore_array_unchecked(buf) };
let (witness_index, buf) = unsafe { bytes::restore_u8_unchecked(buf) };
let (maturity, buf) = unsafe { bytes::restore_number_unchecked(buf) };
let (predicate_len, buf) = unsafe { bytes::restore_usize_unchecked(buf) };
let (predicate_data_len, buf) = unsafe { bytes::restore_usize_unchecked(buf) };
let (size, predicate, buf) = bytes::restore_raw_bytes(buf, predicate_len)?;
n += size;
let (size, predicate_data, _) = bytes::restore_raw_bytes(buf, predicate_data_len)?;
n += size;
let utxo_id = UtxoId::new(tx_id.into(), output_index as u8);
let owner = owner.into();
let color = color.into();
*self = Self::Coin {
utxo_id,
owner,
amount,
color,
witness_index,
maturity,
predicate,
predicate_data,
};
Ok(n)
}
InputRepr::Contract if buf.len() < INPUT_CONTRACT_SIZE - WORD_SIZE => Err(bytes::eof()),
InputRepr::Contract => {
let (tx_id, buf) = unsafe { bytes::restore_array_unchecked(buf) };
let (output_index, buf) = unsafe { bytes::restore_number_unchecked::<Word>(buf) };
let (balance_root, buf) = unsafe { bytes::restore_array_unchecked(buf) };
let (state_root, buf) = unsafe { bytes::restore_array_unchecked(buf) };
let (contract_id, _) = unsafe { bytes::restore_array_unchecked(buf) };
let utxo_id = UtxoId::new(tx_id.into(), output_index as u8);
let balance_root = balance_root.into();
let state_root = state_root.into();
let contract_id = contract_id.into();
*self = Self::Contract {
utxo_id,
balance_root,
state_root,
contract_id,
};
Ok(INPUT_CONTRACT_SIZE)
}
}
}
fn flush(&mut self) -> io::Result<()> {
Ok(())
}
}