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
use crate::{
database::transaction::OwnedTransactionIndexCursor,
model::BlockHeight,
};
use async_graphql::{
connection::CursorType,
InputValueError,
InputValueResult,
Scalar,
ScalarType,
Value,
};
use fuel_core_interfaces::common::{
fuel_types,
tai64::Tai64,
};
use std::{
convert::TryInto,
fmt::{
Display,
Formatter,
},
str::FromStr,
};
pub use tx_pointer::TxPointer;
pub use utxo_id::UtxoId;
pub mod message_id;
pub mod tx_pointer;
pub mod utxo_id;
#[derive(Copy, Clone, Debug, derive_more::Into, derive_more::From)]
pub struct U64(pub u64);
#[Scalar(name = "U64")]
impl ScalarType for U64 {
fn parse(value: Value) -> InputValueResult<Self> {
if let Value::String(value) = &value {
let num: u64 = value.parse().map_err(InputValueError::custom)?;
Ok(U64(num))
} else {
Err(InputValueError::expected_type(value))
}
}
fn to_value(&self) -> Value {
Value::String(self.0.to_string())
}
}
impl From<BlockHeight> for U64 {
fn from(h: BlockHeight) -> Self {
U64(h.to_usize() as u64)
}
}
impl From<U64> for usize {
fn from(u: U64) -> Self {
u.0 as usize
}
}
#[derive(Copy, Clone, Debug, derive_more::Into, derive_more::From)]
pub struct Tai64Timestamp(pub Tai64);
#[Scalar(name = "Tai64Timestamp")]
impl ScalarType for Tai64Timestamp {
fn parse(value: Value) -> InputValueResult<Self> {
if let Value::String(value) = &value {
let num: u64 = value.parse().map_err(InputValueError::custom)?;
Ok(Tai64Timestamp(Tai64(num)))
} else {
Err(InputValueError::expected_type(value))
}
}
fn to_value(&self) -> Value {
Value::String(self.0 .0.to_string())
}
}
#[derive(Clone, Debug)]
pub struct SortedTxCursor {
pub block_height: BlockHeight,
pub tx_id: Bytes32,
}
impl SortedTxCursor {
pub fn new(block_height: BlockHeight, tx_id: Bytes32) -> Self {
Self {
block_height,
tx_id,
}
}
}
impl CursorType for SortedTxCursor {
type Error = String;
fn decode_cursor(s: &str) -> Result<Self, Self::Error> {
let (block_height, tx_id) =
s.split_once('#').ok_or("Incorrect format provided")?;
Ok(Self::new(
usize::from_str(block_height)
.map_err(|_| "Failed to decode block_height")?
.into(),
Bytes32::decode_cursor(tx_id)?,
))
}
fn encode_cursor(&self) -> String {
format!("{}#{}", self.block_height, self.tx_id)
}
}
#[derive(Clone, Debug, derive_more::Into, derive_more::From)]
pub struct HexString(pub(crate) Vec<u8>);
#[Scalar(name = "HexString")]
impl ScalarType for HexString {
fn parse(value: Value) -> InputValueResult<Self> {
if let Value::String(value) = &value {
HexString::from_str(value.as_str()).map_err(Into::into)
} else {
Err(InputValueError::expected_type(value))
}
}
fn to_value(&self) -> Value {
Value::String(self.to_string())
}
}
impl Display for HexString {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let s = format!("0x{}", hex::encode(&self.0));
s.fmt(f)
}
}
impl CursorType for HexString {
type Error = String;
fn decode_cursor(s: &str) -> Result<Self, Self::Error> {
Self::from_str(s)
}
fn encode_cursor(&self) -> String {
self.to_string()
}
}
impl From<HexString> for OwnedTransactionIndexCursor {
fn from(string: HexString) -> Self {
string.0.into()
}
}
impl From<OwnedTransactionIndexCursor> for HexString {
fn from(cursor: OwnedTransactionIndexCursor) -> Self {
HexString(cursor.into())
}
}
impl FromStr for HexString {
type Err = String;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let value = s.strip_prefix("0x").unwrap_or(s);
let bytes = hex::decode(value).map_err(|e| e.to_string())?;
Ok(HexString(bytes))
}
}
macro_rules! fuel_type_scalar {
($name:literal, $id:ident, $ft_id:ident, $len:expr) => {
#[derive(Copy, Clone, Debug)]
pub struct $id(pub(crate) fuel_types::$ft_id);
#[Scalar(name = $name)]
impl ScalarType for $id {
fn parse(value: Value) -> InputValueResult<Self> {
if let Value::String(value) = &value {
$id::from_str(value.as_str()).map_err(Into::into)
} else {
Err(InputValueError::expected_type(value))
}
}
fn to_value(&self) -> Value {
Value::String(self.to_string())
}
}
impl FromStr for $id {
type Err = String;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let value = s.strip_prefix("0x").unwrap_or(s);
let mut bytes = ((value.len() / 2)..$len).map(|_| 0).collect::<Vec<u8>>();
bytes.extend(hex::decode(value).map_err(|e| e.to_string())?);
let bytes: [u8; $len] = bytes.try_into().map_err(|e: Vec<u8>| {
format!("expected {} bytes, received {}", $len, e.len())
})?;
Ok(Self(bytes.into()))
}
}
impl Display for $id {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let s = format!("0x{}", hex::encode(self.0));
s.fmt(f)
}
}
impl From<$id> for fuel_types::$ft_id {
fn from(value: $id) -> Self {
value.0
}
}
impl From<fuel_types::$ft_id> for $id {
fn from(value: fuel_types::$ft_id) -> Self {
$id(value)
}
}
impl CursorType for $id {
type Error = String;
fn decode_cursor(s: &str) -> Result<Self, Self::Error> {
Self::from_str(s)
}
fn encode_cursor(&self) -> String {
self.to_string()
}
}
};
}
fuel_type_scalar!("Bytes32", Bytes32, Bytes32, 32);
fuel_type_scalar!("Address", Address, Address, 32);
fuel_type_scalar!("BlockId", BlockId, Bytes32, 32);
fuel_type_scalar!("AssetId", AssetId, AssetId, 32);
fuel_type_scalar!("ContractId", ContractId, ContractId, 32);
fuel_type_scalar!("Salt", Salt, Salt, 32);
fuel_type_scalar!("TransactionId", TransactionId, Bytes32, 32);
fuel_type_scalar!("MessageId", MessageId, MessageId, 32);
fuel_type_scalar!("Signature", Signature, Bytes64, 64);
impl From<fuel_core_interfaces::common::prelude::Signature> for Signature {
fn from(s: fuel_core_interfaces::common::prelude::Signature) -> Self {
Self(<[u8; 64]>::from(s).into())
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn transaction_id_parseable_with_0x_prefix() {
let id = "0x0101010101010101010101010101010101010101010101010101010101010101";
let tx_id = TransactionId::from_str(id).expect("parseable with 0x");
assert_eq!(*tx_id.0, [0x01; 32]);
}
#[test]
fn transaction_id_parseable_without_0x_prefix() {
let id = "0101010101010101010101010101010101010101010101010101010101010101";
let tx_id = TransactionId::from_str(id).expect("parseable without 0x");
assert_eq!(*tx_id.0, [0x01; 32]);
}
#[test]
fn transaction_id_only_parses_valid_hex() {
let id = "0xZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ";
let res = TransactionId::from_str(id);
assert!(res.is_err());
}
#[test]
fn hex_string_parses_with_0x_prefix() {
let hex_data = "0x0101";
let parsed_data = HexString::from_str(hex_data).expect("parseable with 0x");
assert_eq!(*parsed_data.0, [0x01; 2]);
}
#[test]
fn hex_string_parses_without_0x_prefix() {
let hex_data = "0101";
let parsed_data = HexString::from_str(hex_data).expect("parseable without 0x");
assert_eq!(*parsed_data.0, [0x01; 2]);
}
#[test]
fn hex_string_only_parses_valid_hex() {
let hex_data = "0xZZZZ";
let res = HexString::from_str(hex_data);
assert!(res.is_err());
}
}