sui_gql_schema/
scalars.rs

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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
use std::str::FromStr;

use af_sui_types::{encoding, Address as SuiAddress, ObjectId};
use cynic::impl_scalar;
use derive_more::{AsRef, Deref, Display, From, Into};
use serde::{Deserialize, Serialize};
use serde_json::Value as Json;
use serde_with::{base64, serde_as, Bytes, DisplayFromStr};

use crate::schema;

macro_rules! scalar_with_generics {
    (
        impl<$($T:ident),+> $schema:ident::$scalar:ident for $type_:ty $(where { $($bounds:tt)+ })?
    ) => {
        impl<$($T),+> cynic::schema::IsScalar<$schema::$scalar> for $type_
        $(where $($bounds)+)?
        {
            type SchemaType = $schema::$scalar;
        }

        impl<$($T),+> cynic::coercions::CoercesTo<$schema::$scalar> for $type_
        $(where $($bounds)+)?
        {
        }

        impl<$($T),+> $schema::variable::Variable for $type_
        $(where $($bounds)+)?
        {
            const TYPE: cynic::variables::VariableType = cynic::variables::VariableType::Named(
                <$schema::$scalar as cynic::schema::NamedType>::NAME,
            );
        }
    };
}

// =============================================================================
//  Base64
// =============================================================================

/// Base64-encoded data. Received from the server as a string.
///
/// From the schema: "String containing Base64-encoded binary data."
#[serde_as]
#[derive(AsRef, Clone, Deref, Deserialize, Serialize)]
#[as_ref(forward)]
pub struct Base64<T>(#[serde_as(as = "base64::Base64")] T)
where
    T: AsRef<[u8]> + From<Vec<u8>>;

impl<T> Base64<T>
where
    T: AsRef<[u8]> + From<Vec<u8>>,
{
    pub const fn new(value: T) -> Self {
        Self(value)
    }

    pub fn into_inner(self) -> T {
        self.0
    }
}

impl<T> std::fmt::Debug for Base64<T>
where
    T: AsRef<[u8]> + From<Vec<u8>>,
{
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "Base64({})",
            af_sui_types::encode_base64_default(&self.0)
        )
    }
}

scalar_with_generics! {
    impl<T> schema::Base64 for Base64<T> where {
        T: AsRef<[u8]> + From<Vec<u8>>,
    }
}

#[serde_as]
#[derive(AsRef, Clone, Debug, Deref, Deserialize, Serialize)]
#[as_ref(forward)]
#[serde(bound(deserialize = "T: for<'a> Deserialize<'a>"))]
#[serde(bound(serialize = "T: Serialize"))]
pub struct Base64Bcs<T>(#[serde_as(as = "encoding::Base64Bcs")] T);

impl<T> Base64Bcs<T> {
    pub fn into_inner(self) -> T {
        self.0
    }
}

scalar_with_generics! {
    impl<T> schema::Base64 for Base64Bcs<T>
}

// =============================================================================
//  BigInt
// =============================================================================

/// Generic integer. Received from the server as a string.
///
/// From the schema: "String representation of an arbitrary width, possibly signed integer."
#[serde_as]
#[derive(Clone, Debug, Display, Deserialize, Serialize)]
pub struct BigInt<T>(#[serde_as(as = "DisplayFromStr")] T)
where
    T: Display + FromStr,
    T::Err: Display;

impl<T> BigInt<T>
where
    T: Display + FromStr,
    T::Err: Display,
{
    pub fn into_inner(self) -> T {
        self.0
    }
}

scalar_with_generics! {
    impl<T> schema::BigInt for BigInt<T>
    where {
        T: Display + FromStr,
        T::Err: Display,
    }
}

// =============================================================================
//  DateTime
// =============================================================================

impl_scalar!(DateTime, schema::DateTime);

/// ISO-8601 Date and Time: RFC3339 in UTC with format: YYYY-MM-DDTHH:MM:SS.mmmZ. Note that the
/// milliseconds part is optional, and it may be omitted if its value is 0.
#[serde_as]
#[derive(Deserialize, Serialize, Clone, Debug, Eq, PartialEq, Into, Display, Deref)]
pub struct DateTime(#[serde_as(as = "DisplayFromStr")] chrono::DateTime<chrono::Utc>);

// =============================================================================
//  JSON
// =============================================================================

impl_scalar!(Json, schema::JSON);

// =============================================================================
//  MoveData
// =============================================================================

impl_scalar!(MoveData, schema::MoveData);

/// The contents of a Move Value, corresponding to the following recursive type:
///
/// type MoveData =
///     { Address: SuiAddress }
///   | { UID:     SuiAddress }
///   | { ID:      SuiAddress }
///   | { Bool:    bool }
///   | { Number:  BigInt }
///   | { String:  string }
///   | { Vector:  [MoveData] }
///   | { Option:   MoveData? }
///   | { Struct:  [{ name: string, value: MoveData }] }
///   | { Variant: {
///       name: string,
///       fields: [{ name: string, value: MoveData }],
///   }
#[serde_as]
#[derive(Deserialize, Serialize, Clone, Debug)]
pub enum MoveData {
    Address(#[serde_as(as = "Bytes")] [u8; 32]),
    #[serde(rename = "UID")]
    Uid(#[serde_as(as = "Bytes")] [u8; 32]),
    #[serde(rename = "ID")]
    Id(#[serde_as(as = "Bytes")] [u8; 32]),
    Bool(bool),
    Number(String),
    String(String),
    Vector(Vec<MoveData>),
    Option(Option<Box<MoveData>>),
    Struct(Vec<MoveField>),
    Variant(MoveVariant),
}

#[derive(Deserialize, Serialize, Clone, Debug)]
pub struct MoveVariant {
    name: String,
    fields: Vec<MoveField>,
}

#[derive(Deserialize, Serialize, Clone, Debug)]
pub struct MoveField {
    pub name: String,
    pub value: MoveData,
}

// =============================================================================
//  MoveTypeLayout
// =============================================================================

impl_scalar!(MoveTypeLayout, schema::MoveTypeLayout);

#[doc = r#"The shape of a concrete Move Type (a type with all its type parameters instantiated with
concrete types), corresponding to the following recursive type:

type MoveTypeLayout =
    "address"
  | "bool"
  | "u8" | "u16" | ... | "u256"
  | { vector: MoveTypeLayout }
  | {
      struct: {
        type: string,
        fields: [{ name: string, layout: MoveTypeLayout }],
      }
    }
  | { enum: [{
          type: string,
          variants: [{ 
              name: string,
              fields: [{ name: string, layout: MoveTypeLayout }],
          }]
      }] 
    }"#]
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum MoveTypeLayout {
    Address,
    Bool,
    U8,
    U16,
    U32,
    U64,
    U128,
    U256,
    Vector(Box<MoveTypeLayout>),
    Struct(MoveStructLayout),
    Enum(MoveEnumLayout),
}

#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct MoveEnumLayout {
    pub variants: Vec<MoveVariantLayout>,
}

#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct MoveVariantLayout {
    pub name: String,
    pub layout: Vec<MoveFieldLayout>,
}

#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct MoveStructLayout {
    #[serde(rename = "type")]
    type_: String,
    fields: Vec<MoveFieldLayout>,
}

#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct MoveFieldLayout {
    name: String,
    layout: MoveTypeLayout,
}

// =============================================================================
//  MoveTypeSignature
// =============================================================================

impl_scalar!(MoveTypeSignature, schema::MoveTypeSignature);

#[doc = r#"The signature of a concrete Move Type (a type with all its type parameters instantiated
with concrete types, that contains no references), corresponding to the following recursive type:

type MoveTypeSignature =
    "address"
  | "bool"
  | "u8" | "u16" | ... | "u256"
  | { vector: MoveTypeSignature }
  | {
      datatype: {
        package: string,
        module: string,
        type: string,
        typeParameters: [MoveTypeSignature],
      }
    }"#]
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub enum MoveTypeSignature {
    Address,
    Bool,
    U8,
    U16,
    U32,
    U64,
    U128,
    U256,
    Vector(Box<MoveTypeSignature>),
    Datatype {
        package: String,
        module: String,
        #[serde(rename = "type")]
        type_: String,
        #[serde(rename = "typeParameters")]
        type_parameters: Vec<MoveTypeSignature>,
    },
}

// =============================================================================
//  OpenMoveTypeSignature
// =============================================================================

impl_scalar!(OpenMoveTypeSignature, schema::OpenMoveTypeSignature);

#[doc = r#"The shape of an abstract Move Type (a type that can contain free type parameters, and can
optionally be taken by reference), corresponding to the following recursive type:

type OpenMoveTypeSignature = {
  ref: ("&" | "&mut")?,
  body: OpenMoveTypeSignatureBody,
}

type OpenMoveTypeSignatureBody =
    "address"
  | "bool"
  | "u8" | "u16" | ... | "u256"
  | { vector: OpenMoveTypeSignatureBody }
  | {
      datatype {
        package: string,
        module: string,
        type: string,
        typeParameters: [OpenMoveTypeSignatureBody]
      }
    }
  | { typeParameter: number }"#]
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct OpenMoveTypeSignature {
    #[serde(rename = "ref")]
    ref_: Option<OpenMoveTypeReference>,
    body: OpenMoveTypeSignatureBody,
}

#[derive(Serialize, Deserialize, Clone, Debug)]
pub enum OpenMoveTypeReference {
    #[serde(rename = "&")]
    Immutable,

    #[serde(rename = "&mut")]
    Mutable,
}

#[derive(Serialize, Deserialize, Clone, Debug)]
#[serde(rename_all = "camelCase")]
pub enum OpenMoveTypeSignatureBody {
    TypeParameter(u16),
    Address,
    Bool,
    U8,
    U16,
    U32,
    U64,
    U128,
    U256,
    Vector(Box<OpenMoveTypeSignatureBody>),
    Datatype {
        package: String,
        module: String,
        #[serde(rename = "type")]
        type_: String,
        #[serde(rename = "typeParameters")]
        type_parameters: Vec<OpenMoveTypeSignatureBody>,
    },
}

// =============================================================================
//  SuiAddress:
//  String containing 32B hex-encoded address, with a leading "0x". Leading
//  zeroes can be omitted on input but will always appear in outputs (SuiAddress
//  in output is guaranteed to be 66 characters long).
// =============================================================================

impl_scalar!(ObjectId, schema::SuiAddress);
impl_scalar!(SuiAddress, schema::SuiAddress);

// =============================================================================
//  Extras
// =============================================================================

impl_scalar!(Digest, schema::String);
impl_scalar!(TypeTag, schema::String);

#[derive(Clone, Debug, Deserialize)]
pub struct Digest(pub af_sui_types::Digest);

/// Newtype for using [`af_sui_types::TypeTag`] in GQL queries.
#[serde_as]
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct TypeTag(#[serde_as(as = "DisplayFromStr")] pub af_sui_types::TypeTag);

// =============================================================================
//  UInt53
// =============================================================================

impl_scalar!(af_sui_types::Version, schema::UInt53);

// =============================================================================
//  Tests
// =============================================================================

#[cfg(test)]
mod tests {
    use color_eyre::Result;

    use super::*;

    /// Taken from
    ///
    /// ```grapql
    /// query Events($first: Int, $after: String, $filter: EventFilter) {
    ///   events(after: $after, first: $first, filter: $filter) {
    ///     edges {
    ///       node {
    ///         timestamp
    ///         type {
    ///           signature
    ///         }
    ///         json
    ///       }
    ///       cursor
    ///     }
    ///     pageInfo {
    ///       hasNextPage
    ///     }
    ///   }
    /// }
    /// ```
    /// Variables:
    /// ```json
    /// {
    ///   "filter": {
    ///     "eventType": "0xfd6f306bb2f8dce24dd3d4a9bdc51a46e7c932b15007d73ac0cfb38c15de0fea::events"
    ///   }
    /// }
    /// ```
    const MOVE_TYPE_SIGNATURE_JSON: &str = r#"{
        "datatype": {
          "package": "0xfd6f306bb2f8dce24dd3d4a9bdc51a46e7c932b15007d73ac0cfb38c15de0fea",
          "module": "events",
          "type": "DepositedCollateral",
          "typeParameters": []
        }
    }"#;

    #[test]
    fn move_type_signature_serde() -> Result<()> {
        let sig: MoveTypeSignature = serde_json::from_str(MOVE_TYPE_SIGNATURE_JSON)?;
        assert_eq!(
            sig,
            MoveTypeSignature::Datatype {
                package: "0xfd6f306bb2f8dce24dd3d4a9bdc51a46e7c932b15007d73ac0cfb38c15de0fea"
                    .into(),
                module: "events".into(),
                type_: "DepositedCollateral".into(),
                type_parameters: vec![],
            }
        );
        Ok(())
    }
}