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
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
//! Language-neutral declarations for generated typegen modules.
//!
//! Downstream crates build this small IR from their Rust registrations.  The
//! target-language renderer lives in Myko, so downstream code never has to
//! assemble (or escape) TypeScript source text.

use std::any::TypeId;

use crate::codegen_types::RegisteredType;

/// A typed owner for a generated module output path.
pub trait TypegenModulePath {
    const PATH: &'static str;
}

/// A generated typegen module.
#[derive(Clone, Debug, PartialEq)]
pub struct TypegenModule {
    /// Output path, relative to the bindings directory. A missing `.ts`
    /// extension is added by the TypeScript renderer.
    pub path: String,
    /// Declarations, in source order.
    pub declarations: Vec<Declaration>,
    /// Whether index modules should be generated for parent directories.
    pub barrels: bool,
    /// Registered types re-exported from this module.
    pub registered_reexports: Vec<TypeId>,
}

impl TypegenModule {
    /// Create an empty module at the path owned by a typed marker.
    #[must_use]
    pub fn new_typed<M: TypegenModulePath>() -> Self {
        Self::new(M::PATH)
    }

    /// Create an empty module. Parent-directory barrels are enabled by default.
    pub fn new(path: impl Into<String>) -> Self {
        Self {
            path: path.into(),
            declarations: Vec::new(),
            barrels: true,
            registered_reexports: Vec::new(),
        }
    }

    /// Re-export a registered generated type from this module.
    #[must_use]
    pub fn reexport_type<T: RegisteredType>(mut self) -> Self {
        let type_id = TypeId::of::<T>();
        if !self.registered_reexports.contains(&type_id) {
            self.registered_reexports.push(type_id);
        }
        self
    }

    /// Append a declaration.
    #[must_use]
    pub fn declare(mut self, declaration: Declaration) -> Self {
        self.declarations.push(declaration);
        self
    }

    /// Enable or disable generated parent-directory barrels.
    #[must_use]
    pub const fn with_barrels(mut self, barrels: bool) -> Self {
        self.barrels = barrels;
        self
    }

    /// Append the conventional constants, array, index, and finder for a registry.
    #[must_use]
    pub fn declare_registry(mut self, registry: Registry) -> Self {
        self.declarations.extend(registry.into_declarations());
        self
    }
}

/// One named value in a generated registry.
#[derive(Clone, Debug, PartialEq)]
pub struct RegistryEntry {
    pub name: String,
    pub key: Option<Value>,
    pub value: Value,
}

impl RegistryEntry {
    pub fn new(name: impl Into<String>, value: Value) -> Self {
        Self {
            name: name.into(),
            key: None,
            value,
        }
    }

    pub fn keyed(name: impl Into<String>, key: impl Into<Value>, value: Value) -> Self {
        Self {
            name: name.into(),
            key: Some(key.into()),
            value,
        }
    }
}

/// Centralized public symbol names for a generated registry.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct RegistryNames {
    pub all: String,
    pub index: String,
    pub find: String,
    pub parameter: String,
}

impl RegistryNames {
    pub fn new(all: impl Into<String>, index: impl Into<String>, find: impl Into<String>) -> Self {
        Self {
            all: all.into(),
            index: index.into(),
            find: find.into(),
            parameter: "key".into(),
        }
    }

    #[must_use]
    pub fn with_parameter(mut self, parameter: impl Into<String>) -> Self {
        self.parameter = parameter.into();
        self
    }
}

/// The common generated registry shape: named constants, an all-values array,
/// a key-field index, and a finder function.
#[derive(Clone, Debug, PartialEq)]
pub struct Registry {
    pub entries: Vec<RegistryEntry>,
    pub value_type: Type,
    pub key_field: String,
    pub all_name: String,
    pub index_name: String,
    pub find_name: String,
    pub parameter: String,
    pub key_type: Type,
}

impl Registry {
    #[must_use]
    pub fn for_registered<T: RegisteredType>(names: RegistryNames) -> Self {
        Self {
            entries: Vec::new(),
            value_type: Type::registered::<T>(),
            key_field: String::new(),
            all_name: names.all,
            index_name: names.index,
            find_name: names.find,
            parameter: names.parameter,
            key_type: Type::String,
        }
    }

    pub fn new(
        value_type: Type,
        key_field: impl Into<String>,
        all_name: impl Into<String>,
        index_name: impl Into<String>,
        find_name: impl Into<String>,
    ) -> Self {
        Self {
            entries: Vec::new(),
            value_type,
            key_field: key_field.into(),
            all_name: all_name.into(),
            index_name: index_name.into(),
            find_name: find_name.into(),
            parameter: "key".into(),
            key_type: Type::String,
        }
    }

    #[must_use]
    pub fn entry(mut self, entry: RegistryEntry) -> Self {
        self.entries.push(entry);
        self
    }

    #[must_use]
    pub fn with_parameter(mut self, parameter: impl Into<String>) -> Self {
        self.parameter = parameter.into();
        self
    }

    #[must_use]
    pub fn with_key_type(mut self, key_type: Type) -> Self {
        self.key_type = key_type;
        self
    }

    fn into_declarations(self) -> Vec<Declaration> {
        let mut declarations = self
            .entries
            .iter()
            .map(|entry| {
                Declaration::constant(
                    entry.name.clone(),
                    self.value_type.clone(),
                    entry.value.clone(),
                )
            })
            .collect::<Vec<_>>();
        declarations.push(Declaration::constant(
            self.all_name.clone(),
            Type::array(self.value_type.clone()),
            Value::Array(
                self.entries
                    .iter()
                    .map(|entry| Value::reference(entry.name.clone()))
                    .collect(),
            ),
        ));
        let keyed_entries = self
            .entries
            .iter()
            .map(|entry| entry.key.clone().map(|key| (key, entry.name.clone())))
            .collect::<Option<Vec<_>>>();
        if let Some(entries) = keyed_entries {
            declarations.push(Declaration::KeyedIndex {
                name: self.index_name.clone(),
                entries,
                value_type: self.value_type.clone(),
            });
        } else {
            declarations.push(Declaration::Index {
                name: self.index_name.clone(),
                source: self.all_name,
                key_field: self.key_field,
                value_type: self.value_type.clone(),
            });
        }
        declarations.push(Declaration::Find {
            name: self.find_name,
            index: self.index_name,
            parameter: self.parameter,
            key_type: self.key_type,
            value_type: self.value_type,
        });
        declarations
    }
}

/// A type in the portable SDK-module IR.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum Type {
    Registered(TypeId),
    String,
    Boolean,
    Number,
    Named(String),
    Array(Box<Self>),
    Optional(Box<Self>),
    StringUnion(Vec<String>),
    Object(Vec<Field>),
    Record(Box<Self>, Box<Self>),
}

impl Type {
    #[must_use]
    pub const fn registered<T: RegisteredType>() -> Self {
        Self::Registered(TypeId::of::<T>())
    }

    pub fn named(name: impl Into<String>) -> Self {
        Self::Named(name.into())
    }

    #[must_use]
    pub fn array(item: Self) -> Self {
        Self::Array(Box::new(item))
    }

    #[must_use]
    pub fn optional(inner: Self) -> Self {
        Self::Optional(Box::new(inner))
    }

    #[must_use]
    pub fn record(key: Self, value: Self) -> Self {
        Self::Record(Box::new(key), Box::new(value))
    }
}

/// A field in an object type.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Field {
    pub name: String,
    pub ty: Type,
    pub optional: bool,
}

impl Field {
    pub fn new(name: impl Into<String>, ty: Type) -> Self {
        Self {
            name: name.into(),
            ty,
            optional: false,
        }
    }

    #[must_use]
    pub const fn optional(mut self) -> Self {
        self.optional = true;
        self
    }
}

/// A data value or reference used by a declaration.
#[derive(Clone, Debug, PartialEq)]
pub enum Value {
    Null,
    String(String),
    Bool(bool),
    Integer(i64),
    Unsigned(u64),
    Float(f64),
    Reference(String),
    Array(Vec<Self>),
    Object(Vec<(String, Self)>),
}

impl Value {
    /// Convert any serializable Rust value into the portable module IR.
    ///
    /// # Errors
    ///
    /// Returns an error when serialization fails or produces an unrepresentable number.
    pub fn from_serializable(value: &impl serde::Serialize) -> serde_json::Result<Self> {
        Self::try_from(serde_json::to_value(value)?)
    }

    pub fn string(value: impl Into<String>) -> Self {
        Self::String(value.into())
    }

    pub fn reference(name: impl Into<String>) -> Self {
        Self::Reference(name.into())
    }

    pub fn object(entries: impl IntoIterator<Item = (impl Into<String>, Self)>) -> Self {
        Self::Object(
            entries
                .into_iter()
                .map(|(key, value)| (key.into(), value))
                .collect(),
        )
    }
}

impl TryFrom<serde_json::Value> for Value {
    type Error = serde_json::Error;

    fn try_from(value: serde_json::Value) -> Result<Self, Self::Error> {
        Ok(match value {
            serde_json::Value::Null => Self::Null,
            serde_json::Value::Bool(value) => Self::Bool(value),
            serde_json::Value::String(value) => Self::String(value),
            serde_json::Value::Number(value) => {
                if let Some(value) = value.as_i64() {
                    Self::Integer(value)
                } else if let Some(value) = value.as_u64() {
                    Self::Unsigned(value)
                } else {
                    Self::Float(value.as_f64().ok_or_else(|| {
                        <serde_json::Error as serde::de::Error>::custom(
                            "JSON number cannot be represented in typegen IR",
                        )
                    })?)
                }
            }
            serde_json::Value::Array(values) => Self::Array(
                values
                    .into_iter()
                    .map(Self::try_from)
                    .collect::<Result<_, _>>()?,
            ),
            serde_json::Value::Object(entries) => {
                let mut entries = entries
                    .into_iter()
                    .map(|(key, value)| Ok((key, Self::try_from(value)?)))
                    .collect::<Result<Vec<_>, serde_json::Error>>()?;
                entries.sort_by(|(left, _), (right, _)| left.cmp(right));
                Self::Object(entries)
            }
        })
    }
}

impl From<&str> for Value {
    fn from(value: &str) -> Self {
        Self::string(value)
    }
}

impl From<String> for Value {
    fn from(value: String) -> Self {
        Self::String(value)
    }
}

impl From<bool> for Value {
    fn from(value: bool) -> Self {
        Self::Bool(value)
    }
}

/// A leaf value accepted in a generated predicate.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum Operand {
    ParameterField(String),
    String(String),
    Bool(bool),
}

/// A portable boolean predicate.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum Predicate {
    Equal(Operand, Operand),
    NotEqual(Operand, Operand),
    And(Vec<Self>),
    Or(Vec<Self>),
}

/// A declaration supported by the SDK renderer.
#[derive(Clone, Debug, PartialEq)]
pub enum Declaration {
    Import {
        names: Vec<String>,
        from: String,
        type_only: bool,
    },
    TypeAlias {
        name: String,
        doc: Option<String>,
        ty: Type,
    },
    Const {
        name: String,
        doc: Option<String>,
        ty: Option<Type>,
        value: Value,
        immutable: bool,
        satisfies: Option<Type>,
    },
    FilteredArray {
        name: String,
        source: String,
        parameter: String,
        predicate: Predicate,
    },
    Index {
        name: String,
        source: String,
        key_field: String,
        value_type: Type,
    },
    KeyedIndex {
        name: String,
        entries: Vec<(Value, String)>,
        value_type: Type,
    },
    Find {
        name: String,
        index: String,
        parameter: String,
        key_type: Type,
        value_type: Type,
    },
    LookupOr {
        name: String,
        index: String,
        parameter: String,
        key_type: Type,
        value_type: Type,
        fallback: Value,
    },
}

impl Declaration {
    /// Import generated values or types from another module.
    pub fn import(
        names: impl IntoIterator<Item = impl Into<String>>,
        from: impl Into<String>,
    ) -> Self {
        Self::Import {
            names: names.into_iter().map(Into::into).collect(),
            from: from.into(),
            type_only: false,
        }
    }

    /// Import generated types from another module.
    pub fn import_type(
        names: impl IntoIterator<Item = impl Into<String>>,
        from: impl Into<String>,
    ) -> Self {
        Self::Import {
            names: names.into_iter().map(Into::into).collect(),
            from: from.into(),
            type_only: true,
        }
    }

    pub fn type_alias(name: impl Into<String>, ty: Type) -> Self {
        Self::TypeAlias {
            name: name.into(),
            doc: None,
            ty,
        }
    }

    pub fn constant(name: impl Into<String>, ty: Type, value: Value) -> Self {
        Self::Const {
            name: name.into(),
            doc: None,
            ty: Some(ty),
            value,
            immutable: false,
            satisfies: None,
        }
    }

    pub fn inferred_constant(name: impl Into<String>, value: Value) -> Self {
        Self::Const {
            name: name.into(),
            doc: None,
            ty: None,
            value,
            immutable: false,
            satisfies: None,
        }
    }

    /// Attach documentation to declarations which support it.
    #[must_use]
    pub fn documented(mut self, doc: impl Into<String>) -> Self {
        match &mut self {
            Self::TypeAlias { doc: target, .. } | Self::Const { doc: target, .. } => {
                *target = Some(doc.into());
            }
            _ => {}
        }
        self
    }

    /// Render a constant with a const assertion.
    #[must_use]
    pub const fn immutable(mut self) -> Self {
        if let Self::Const { immutable, .. } = &mut self {
            *immutable = true;
        }
        self
    }

    /// Render a constant with a target-language `satisfies` check.
    #[must_use]
    pub fn satisfies(mut self, ty: Type) -> Self {
        if let Self::Const { satisfies, .. } = &mut self {
            *satisfies = Some(ty);
        }
        self
    }
}

#[cfg(test)]
mod tests {
    use serde::Serialize;

    use super::{Declaration, Registry, RegistryEntry, RegistryNames, TypegenModule, Value};

    #[derive(Serialize)]
    struct Example<'a> {
        name: &'a str,
        optional: Option<bool>,
        count: u64,
    }

    #[test]
    fn converts_serializable_values_without_redeclaring_their_shape() {
        let value = Value::from_serializable(&Example {
            name: "example",
            optional: None,
            count: u64::MAX,
        });
        assert!(value.is_ok(), "example should serialize");
        let Ok(value) = value else {
            return;
        };

        assert_eq!(
            value,
            Value::Object(vec![
                ("count".into(), Value::Unsigned(u64::MAX)),
                ("name".into(), Value::String("example".into())),
                ("optional".into(), Value::Null),
            ])
        );
    }

    #[test]
    fn registry_appends_constants_array_index_and_finder() {
        let module = TypegenModule::new("registry").declare_registry(
            Registry::for_registered::<String>(RegistryNames::new(
                "allEntries",
                "entriesByKey",
                "findEntry",
            ))
            .entry(RegistryEntry::keyed(
                "FIRST",
                "first",
                Value::object([("value", "example".into())]),
            )),
        );

        assert_eq!(module.declarations.len(), 4);
        assert!(matches!(
            module.declarations.get(2),
            Some(Declaration::KeyedIndex { name, entries, .. })
                if name == "entriesByKey"
                    && entries == &vec![(Value::string("first"), "FIRST".into())]
        ));
        assert!(matches!(
            module.declarations.get(3),
            Some(Declaration::Find { name, index, .. })
                if name == "findEntry" && index == "entriesByKey"
        ));
    }
}