sails-idl-ast 1.0.0-beta.5

IDL AST model for the Sails framework
Documentation
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
use super::*;
use alloc::{collections::btree_map::BTreeMap, format};
use keccak_const::Keccak256;

type Error = String;

impl ServiceUnit {
    /// Compute a deterministic interface identifier for this service.
    ///
    /// The hash incorporates:
    /// - all functions (kind, name, params, output, optional throws),
    /// - all events (their payload shape),
    /// - all base services by their already-computed interface IDs.
    ///
    /// Types referenced by functions or events are expanded via the AST
    /// definitions in `self.types`, including generic instantiation.
    pub fn interface_id(&self) -> Result<InterfaceId, Error> {
        let type_map: BTreeMap<_, _> = self.types.iter().map(|ty| (ty.name.as_str(), ty)).collect();

        let mut hash = Keccak256::new();
        for func in &self.funcs {
            hash = hash.update(&hash_func(func, &type_map)?);
        }

        if !self.events.is_empty() {
            let mut ev_hash = Keccak256::new();
            for var in &self.events {
                ev_hash = ev_hash.update(&hash_struct(&var.name, &var.def.fields, &type_map, None)?)
            }
            hash = hash.update(&ev_hash.finalize());
        }

        for s in &self.extends {
            let interface_id = s
                .interface_id
                .ok_or_else(|| format!("service `{}` does not have an `interface_id`", s.name))?;
            hash = hash.update(interface_id.as_bytes());
        }

        Ok(InterfaceId::from_bytes_32(hash.finalize()))
    }
}

fn hash_func(func: &ServiceFunc, type_map: &BTreeMap<&str, &Type>) -> Result<[u8; 32], Error> {
    let mut hash = Keccak256::new();
    hash = match func.kind {
        FunctionKind::Command => hash.update(b"command"),
        FunctionKind::Query => hash.update(b"query"),
    };
    hash = hash.update(func.name.as_bytes());
    for p in &func.params {
        hash = hash.update(&hash_type_decl(&p.type_decl, type_map, None)?);
    }
    hash = hash.update(b"res");
    hash = hash.update(&hash_type_decl(&func.output, type_map, None)?);
    if let Some(th) = &func.throws {
        hash = hash.update(b"throws");
        hash = hash.update(&hash_type_decl(th, type_map, None)?);
    }
    Ok(hash.finalize())
}

fn hash_type(
    ty: &Type,
    type_map: &BTreeMap<&str, &Type>,
    type_params: Option<&BTreeMap<String, TypeDecl>>,
) -> Result<[u8; 32], Error> {
    let bytes = match &ty.def {
        TypeDef::Struct(StructDef { fields }) => {
            hash_struct(&ty.name, fields, type_map, type_params)?
        }
        TypeDef::Enum(enum_def) => {
            let mut hash = Keccak256::new();
            for var in &enum_def.variants {
                hash = hash.update(&hash_struct(
                    &var.name,
                    &var.def.fields,
                    type_map,
                    type_params,
                )?)
            }
            hash.finalize()
        }
        TypeDef::Alias(alias_def) => hash_type_decl(&alias_def.target, type_map, type_params)?,
    };
    Ok(bytes)
}

fn hash_struct(
    name: &str,
    fields: &[StructField],
    type_map: &BTreeMap<&str, &Type>,
    type_params: Option<&BTreeMap<String, TypeDecl>>,
) -> Result<[u8; 32], Error> {
    let mut hash = Keccak256::new().update(name.as_bytes());
    for f in fields {
        hash = hash.update(hash_type_decl(&f.type_decl, type_map, type_params)?.as_slice())
    }
    Ok(hash.finalize())
}

fn hash_type_decl(
    type_decl: &TypeDecl,
    type_map: &BTreeMap<&str, &Type>,
    type_params: Option<&BTreeMap<String, TypeDecl>>,
) -> Result<[u8; 32], Error> {
    let bytes = match type_decl {
        // Encode slices as [T].
        TypeDecl::Slice { item } => Keccak256::new()
            .update(b"[")
            .update(hash_type_decl(item, type_map, type_params)?.as_slice())
            .update(b"]")
            .finalize(),
        // Arrays include the element type and the length.
        TypeDecl::Array { item, len } => Keccak256::new()
            .update(hash_type_decl(item, type_map, type_params)?.as_slice())
            .update(format!("{len}").as_bytes())
            .finalize(),
        // Tuples hash their element types in order.
        TypeDecl::Tuple { types } => {
            let mut hash = Keccak256::new();
            for ty in types {
                hash = hash.update(&hash_type_decl(ty, type_map, type_params)?);
            }
            hash.finalize()
        }
        TypeDecl::Generic { name } => {
            let Some(param_ty) = type_params.and_then(|map| map.get(name)) else {
                return Err(format!("generic type parameter `{name}` must be resolved"));
            };
            return hash_type_decl(param_ty, type_map, type_params);
        }
        TypeDecl::Named { name, generics } => {
            // Normalize well-known container types to stable markers.
            if let Some(ty) = TypeDecl::option_type_decl(type_decl) {
                Keccak256::new()
                    .update(b"Option")
                    .update(&hash_type_decl(&ty, type_map, type_params)?)
                    .finalize()
            } else if let Some((ok, err)) = TypeDecl::result_type_decl(type_decl) {
                Keccak256::new()
                    .update(b"Result")
                    .update(&hash_type_decl(&ok, type_map, type_params)?)
                    .update(&hash_type_decl(&err, type_map, type_params)?)
                    .finalize()
            // Expand named user-defined types from the map, with generics applied.
            } else if let Some(ty) = type_map.get(name.as_str()) {
                if generics.is_empty() {
                    hash_type(ty, type_map, None)?
                } else if ty.type_params.len() == generics.len() {
                    let mut params = BTreeMap::new();
                    for (param, arg) in ty.type_params.iter().zip(generics.iter()) {
                        params.insert(param.name.clone(), arg.clone());
                    }
                    hash_type(ty, type_map, Some(&params))?
                } else {
                    return Err(format!("generic params type `{name}` must be resolved"));
                }
            } else {
                return Err(format!("type `{name}` not supported"));
            }
        }
        // Primitives are hashed by their canonical IDL spelling.
        TypeDecl::Primitive(primitive_type) => Keccak256::new()
            .update(primitive_type.as_str().as_bytes())
            .finalize(),
    };
    Ok(bytes)
}

#[cfg(test)]
mod tests {
    use super::*;
    use PrimitiveType::*;
    use TypeDecl::*;
    use alloc::{boxed::Box, vec};
    use sails_reflect_hash::ReflectHash;

    macro_rules! assert_type_decl {
        ($ty: ty, $p: expr) => {
            assert_eq!(
                <$ty as ReflectHash>::HASH,
                hash_type_decl(&$p, &BTreeMap::new(), None).unwrap()
            );
        };

        ($ty: ty, $p: expr, $map: expr) => {
            assert_eq!(
                <$ty as ReflectHash>::HASH,
                hash_type_decl(&$p, &$map, None).unwrap()
            );
        };
    }

    #[test]
    fn hash_primitive() {
        assert_type_decl!((), Primitive(Void));
        assert_type_decl!(bool, Primitive(Bool));
        assert_type_decl!(char, Primitive(Char));
        assert_type_decl!(str, Primitive(String));

        assert_type_decl!(u8, Primitive(U8));
        assert_type_decl!(u16, Primitive(U16));
        assert_type_decl!(u32, Primitive(U32));
        assert_type_decl!(u64, Primitive(U64));
        assert_type_decl!(u128, Primitive(U128));

        assert_type_decl!(i8, Primitive(I8));
        assert_type_decl!(i16, Primitive(I16));
        assert_type_decl!(i32, Primitive(I32));
        assert_type_decl!(i64, Primitive(I64));
        assert_type_decl!(i128, Primitive(I128));

        assert_type_decl!(gprimitives::ActorId, Primitive(ActorId));
        assert_type_decl!(gprimitives::CodeId, Primitive(CodeId));
        assert_type_decl!(gprimitives::MessageId, Primitive(MessageId));

        assert_type_decl!(gprimitives::H160, Primitive(H160));
        assert_type_decl!(gprimitives::H256, Primitive(H256));
        assert_type_decl!(gprimitives::U256, Primitive(U256));
    }

    #[test]
    fn hash_slice() {
        assert_type_decl!(
            [u8],
            Slice {
                item: Box::new(Primitive(U8))
            }
        );
        assert_type_decl!(
            Vec<u8>,
            Slice {
                item: Box::new(Primitive(U8))
            }
        );
        assert_type_decl!(
            Vec<(u8, &str)>,
            Slice {
                item: Box::new(Tuple {
                    types: vec![Primitive(U8), Primitive(String)]
                })
            }
        );
    }

    #[test]
    fn hash_array() {
        assert_type_decl!(
            [u8; 32],
            Array {
                item: Box::new(Primitive(U8)),
                len: 32
            }
        );
        assert_type_decl!(
            [(u8, &str); 4],
            Array {
                item: Box::new(Tuple {
                    types: vec![Primitive(U8), Primitive(String)]
                }),
                len: 4
            }
        );
    }

    #[test]
    fn hash_tuple() {
        assert_type_decl!(
            (u8, &str),
            Tuple {
                types: vec![Primitive(U8), Primitive(String)]
            }
        );
        assert_type_decl!(
            (u8, &str, [u8; 32]),
            Tuple {
                types: vec![
                    Primitive(U8),
                    Primitive(String),
                    Array {
                        item: Box::new(Primitive(U8)),
                        len: 32
                    }
                ]
            }
        );
    }

    #[test]
    fn hash_option() {
        assert_type_decl!(
            Option<u8>,
            Named {
                name: "Option".to_string(),
                generics: vec![Primitive(U8)]
            }
        );
        assert_type_decl!(
            Option<(u8, &str, [u8; 32])>,
            Named {
                name: "Option".to_string(),
                generics: vec![Tuple {
                    types: vec![
                        Primitive(U8),
                        Primitive(String),
                        Array {
                            item: Box::new(Primitive(U8)),
                            len: 32
                        }
                    ]
                }]
            }
        );
    }

    #[test]
    fn hash_result() {
        assert_type_decl!(
            Result<u8, &str>,
            Named {
                name: "Result".to_string(),
                generics: vec![Primitive(U8), Primitive(String)]
            }
        );
        assert_type_decl!(
            Result<(u8, &str, [u8; 32]), ()>,
            Named {
                name: "Result".to_string(),
                generics: vec![Tuple {
                    types: vec![
                        Primitive(U8),
                        Primitive(String),
                        Array {
                            item: Box::new(Primitive(U8)),
                            len: 32
                        }
                    ]
                }, Primitive(Void)]
            }
        );
    }

    #[test]
    fn hash_struct_unit() {
        #[derive(ReflectHash)]
        struct UnitStruct;

        let mut map = BTreeMap::new();
        let ty = Type {
            name: "UnitStruct".to_string(),
            type_params: vec![],
            def: TypeDef::Struct(StructDef { fields: vec![] }),
            docs: vec![],
            annotations: vec![],
        };
        map.insert("UnitStruct", &ty);

        assert_type_decl!(
            UnitStruct,
            Named {
                name: "UnitStruct".to_string(),
                generics: vec![]
            },
            map
        );
    }

    #[test]
    fn hash_struct_tuple() {
        #[derive(ReflectHash)]
        #[allow(unused)]
        struct TupleStruct(u32);

        let mut map = BTreeMap::new();
        let ty = Type {
            name: "TupleStruct".to_string(),
            type_params: vec![],
            def: TypeDef::Struct(StructDef {
                fields: vec![StructField {
                    name: None,
                    type_decl: Primitive(U32),
                    docs: vec![],
                    annotations: vec![],
                }],
            }),
            docs: vec![],
            annotations: vec![],
        };
        map.insert("TupleStruct", &ty);

        assert_type_decl!(
            TupleStruct,
            Named {
                name: "TupleStruct".to_string(),
                generics: vec![]
            },
            map
        );
    }

    #[test]
    fn hash_struct_named() {
        #[derive(ReflectHash)]
        #[allow(unused)]
        struct NamedStruct {
            f1: u32,
            f2: Option<&'static str>,
        }

        let mut map = BTreeMap::new();
        let ty = Type {
            name: "NamedStruct".to_string(),
            type_params: vec![],
            def: TypeDef::Struct(StructDef {
                fields: vec![
                    StructField {
                        name: Some("f1".to_string()),
                        type_decl: Primitive(U32),
                        docs: vec![],
                        annotations: vec![],
                    },
                    StructField {
                        name: Some("f2".to_string()),
                        type_decl: Named {
                            name: "Option".to_string(),
                            generics: vec![Primitive(String)],
                        },
                        docs: vec![],
                        annotations: vec![],
                    },
                ],
            }),
            docs: vec![],
            annotations: vec![],
        };
        map.insert("NamedStruct", &ty);

        assert_type_decl!(
            NamedStruct,
            Named {
                name: "NamedStruct".to_string(),
                generics: vec![]
            },
            map
        );
    }

    #[test]
    fn hash_struct_generics() {
        #[derive(ReflectHash)]
        #[allow(unused)]
        struct GenericStruct<T1: ReflectHash, T2: ReflectHash> {
            f1: T1,
            f2: Option<T2>,
        }

        let mut map = BTreeMap::new();
        let ty = Type {
            name: "GenericStruct".to_string(),
            type_params: vec![
                TypeParameter {
                    name: "T1".to_string(),
                    ty: None,
                },
                TypeParameter {
                    name: "T2".to_string(),
                    ty: None,
                },
            ],
            def: TypeDef::Struct(StructDef {
                fields: vec![
                    StructField {
                        name: Some("f1".to_string()),
                        type_decl: Generic {
                            name: "T1".to_string(),
                        },
                        docs: vec![],
                        annotations: vec![],
                    },
                    StructField {
                        name: Some("f2".to_string()),
                        type_decl: Named {
                            name: "Option".to_string(),
                            generics: vec![Generic {
                                name: "T2".to_string(),
                            }],
                        },
                        docs: vec![],
                        annotations: vec![],
                    },
                ],
            }),
            docs: vec![],
            annotations: vec![],
        };
        map.insert("GenericStruct", &ty);

        let ty_u8_str = Named {
            name: "GenericStruct".to_string(),
            generics: vec![Primitive(U8), Primitive(String)],
        };
        let ty_str_u8 = Named {
            name: "GenericStruct".to_string(),
            generics: vec![Primitive(String), Primitive(U8)],
        };

        assert_ne!(
            hash_type_decl(&ty_u8_str, &map, None),
            hash_type_decl(&ty_str_u8, &map, None)
        );

        assert_type_decl!(
            GenericStruct<u8, &str>,
            Named {
                name: "GenericStruct".to_string(),
                generics: vec![Primitive(U8), Primitive(String)],
            },
            map
        );

        assert_type_decl!(
            GenericStruct<&str, u8>,
            Named {
                name: "GenericStruct".to_string(),
                generics: vec![Primitive(String), Primitive(U8)],
            },
            map
        );
    }

    #[test]
    fn hash_unresolved_generic_errors() {
        let err = hash_type_decl(
            &Generic {
                name: "T".to_string(),
            },
            &BTreeMap::new(),
            None,
        )
        .expect_err("unresolved Generic must not hash as a named type");

        assert_eq!(err, "generic type parameter `T` must be resolved");
    }

    #[test]
    fn hash_alias_is_same_as_target() {
        let mut map = BTreeMap::new();
        let target = TypeDecl::Primitive(PrimitiveType::U32);
        let alias = Type {
            name: "MyAlias".to_string(),
            type_params: vec![],
            def: TypeDef::Alias(AliasDef {
                target: target.clone(),
            }),
            docs: vec![],
            annotations: vec![],
        };
        map.insert("MyAlias", &alias);

        let struct_hash = hash_type_decl(&target, &map, None).unwrap();
        let alias_decl = TypeDecl::Named {
            name: "MyAlias".to_string(),
            generics: vec![],
        };
        let alias_hash = hash_type_decl(&alias_decl, &map, None).unwrap();

        assert_eq!(struct_hash, alias_hash);
    }
}