eure-codegen-ir 0.1.9

Canonical intermediate representation for Eure code generation
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
use crate::emission::TypeEmissionConfigIr;
use crate::ids::{QualifiedTypeName, RustPathIr};

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RustBindingIr {
    kind: RustTypeKindIr,
    container: ContainerAttrsIr,
    fields: Vec<RustFieldIr>,
    variants: Vec<RustVariantIr>,
    generics: RustGenericsIr,
    where_clause: WhereClauseIr,
    emission: TypeEmissionConfigIr,
}

impl Default for RustBindingIr {
    fn default() -> Self {
        Self {
            kind: RustTypeKindIr::Unit,
            container: ContainerAttrsIr::default(),
            fields: Vec::new(),
            variants: Vec::new(),
            generics: RustGenericsIr::default(),
            where_clause: WhereClauseIr::default(),
            emission: TypeEmissionConfigIr::default(),
        }
    }
}

impl RustBindingIr {
    pub fn new(
        kind: RustTypeKindIr,
        container: ContainerAttrsIr,
        fields: Vec<RustFieldIr>,
        variants: Vec<RustVariantIr>,
        generics: RustGenericsIr,
        where_clause: WhereClauseIr,
        emission: TypeEmissionConfigIr,
    ) -> Self {
        Self {
            kind,
            container,
            fields,
            variants,
            generics,
            where_clause,
            emission,
        }
    }

    pub fn kind(&self) -> &RustTypeKindIr {
        &self.kind
    }

    pub fn container(&self) -> &ContainerAttrsIr {
        &self.container
    }

    pub fn container_mut(&mut self) -> &mut ContainerAttrsIr {
        &mut self.container
    }

    pub fn fields(&self) -> &[RustFieldIr] {
        &self.fields
    }

    pub fn fields_mut(&mut self) -> &mut Vec<RustFieldIr> {
        &mut self.fields
    }

    pub fn variants(&self) -> &[RustVariantIr] {
        &self.variants
    }

    pub fn variants_mut(&mut self) -> &mut Vec<RustVariantIr> {
        &mut self.variants
    }

    pub fn generics(&self) -> &RustGenericsIr {
        &self.generics
    }

    pub fn generics_mut(&mut self) -> &mut RustGenericsIr {
        &mut self.generics
    }

    pub fn where_clause(&self) -> &WhereClauseIr {
        &self.where_clause
    }

    pub fn where_clause_mut(&mut self) -> &mut WhereClauseIr {
        &mut self.where_clause
    }

    pub fn emission(&self) -> &TypeEmissionConfigIr {
        &self.emission
    }

    pub fn emission_mut(&mut self) -> &mut TypeEmissionConfigIr {
        &mut self.emission
    }

    pub fn set_kind(&mut self, kind: RustTypeKindIr) {
        self.kind = kind;
    }

    pub fn push_field(&mut self, field: RustFieldIr) {
        self.fields.push(field);
    }

    pub fn push_variant(&mut self, variant: RustVariantIr) {
        self.variants.push(variant);
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RustTypeKindIr {
    Record,
    Newtype,
    Tuple,
    Unit,
    Enum,
}

#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct ContainerAttrsIr {
    crate_path: Option<RustPathIr>,
    rename_all: Option<RenameRuleIr>,
    rename_all_fields: Option<RenameRuleIr>,
    parse_ext: bool,
    allow_unknown_fields: bool,
    allow_unknown_extensions: bool,
    parse_error: Option<RustPathIr>,
    write_error: Option<RustPathIr>,
    type_name: Option<String>,
    non_exhaustive: bool,
    proxy_target: Option<RustPathIr>,
    opaque_target: Option<RustPathIr>,
}

impl ContainerAttrsIr {
    #[allow(clippy::too_many_arguments)]
    pub fn new(
        crate_path: Option<RustPathIr>,
        rename_all: Option<RenameRuleIr>,
        rename_all_fields: Option<RenameRuleIr>,
        parse_ext: bool,
        allow_unknown_fields: bool,
        allow_unknown_extensions: bool,
        parse_error: Option<RustPathIr>,
        write_error: Option<RustPathIr>,
        type_name: Option<String>,
        non_exhaustive: bool,
        proxy_target: Option<RustPathIr>,
        opaque_target: Option<RustPathIr>,
    ) -> Self {
        Self {
            crate_path,
            rename_all,
            rename_all_fields,
            parse_ext,
            allow_unknown_fields,
            allow_unknown_extensions,
            parse_error,
            write_error,
            type_name,
            non_exhaustive,
            proxy_target,
            opaque_target,
        }
    }

    pub fn crate_path(&self) -> Option<&RustPathIr> {
        self.crate_path.as_ref()
    }

    pub fn rename_all(&self) -> Option<RenameRuleIr> {
        self.rename_all.clone()
    }

    pub fn rename_all_fields(&self) -> Option<RenameRuleIr> {
        self.rename_all_fields.clone()
    }

    pub fn parse_ext(&self) -> bool {
        self.parse_ext
    }

    pub fn allow_unknown_fields(&self) -> bool {
        self.allow_unknown_fields
    }

    pub fn allow_unknown_extensions(&self) -> bool {
        self.allow_unknown_extensions
    }

    pub fn parse_error(&self) -> Option<&RustPathIr> {
        self.parse_error.as_ref()
    }

    pub fn write_error(&self) -> Option<&RustPathIr> {
        self.write_error.as_ref()
    }

    pub fn type_name(&self) -> Option<&str> {
        self.type_name.as_deref()
    }

    pub fn non_exhaustive(&self) -> bool {
        self.non_exhaustive
    }

    pub fn proxy_target(&self) -> Option<&RustPathIr> {
        self.proxy_target.as_ref()
    }

    pub fn opaque_target(&self) -> Option<&RustPathIr> {
        self.opaque_target.as_ref()
    }

    pub fn proxy_mode(&self) -> Option<ProxyModeIr> {
        match (&self.proxy_target, &self.opaque_target) {
            (Some(target), None) => Some(ProxyModeIr::Transparent(target.clone())),
            (None, Some(target)) => Some(ProxyModeIr::Opaque(target.clone())),
            _ => None,
        }
    }

    pub fn proxy_target_mut(&mut self) -> &mut Option<RustPathIr> {
        &mut self.proxy_target
    }

    pub fn opaque_target_mut(&mut self) -> &mut Option<RustPathIr> {
        &mut self.opaque_target
    }

    pub fn parse_ext_mut(&mut self) -> &mut bool {
        &mut self.parse_ext
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ProxyModeIr {
    Transparent(RustPathIr),
    Opaque(RustPathIr),
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RustFieldIr {
    rust_name: String,
    wire_name: String,
    mode: FieldModeIr,
    source_attrs: FieldSourceAttrsIr,
    ty: RustTypeExprIr,
    default: DefaultValueIr,
    via: Option<RustPathIr>,
}

impl RustFieldIr {
    pub fn new(
        rust_name: String,
        wire_name: String,
        mode: FieldModeIr,
        source_attrs: FieldSourceAttrsIr,
        ty: RustTypeExprIr,
        default: DefaultValueIr,
        via: Option<RustPathIr>,
    ) -> Self {
        Self {
            rust_name,
            wire_name,
            mode,
            source_attrs,
            ty,
            default,
            via,
        }
    }

    pub fn rust_name(&self) -> &str {
        &self.rust_name
    }

    pub fn wire_name(&self) -> &str {
        &self.wire_name
    }

    pub fn mode(&self) -> &FieldModeIr {
        &self.mode
    }

    pub fn source_attrs(&self) -> &FieldSourceAttrsIr {
        &self.source_attrs
    }

    pub fn ty(&self) -> &RustTypeExprIr {
        &self.ty
    }

    pub fn default(&self) -> &DefaultValueIr {
        &self.default
    }

    pub fn via(&self) -> Option<&RustPathIr> {
        self.via.as_ref()
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum FieldModeIr {
    Record,
    Ext,
    Flatten,
    FlattenExt,
}

#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct FieldSourceAttrsIr {
    pub ext: bool,
    pub flatten: bool,
    pub flatten_ext: bool,
}

#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub enum DefaultValueIr {
    #[default]
    None,
    DefaultTrait,
    Function(RustPathIr),
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RustVariantIr {
    rust_name: String,
    wire_name: String,
    allow_unknown_fields: bool,
    shape: VariantShapeIr,
}

impl RustVariantIr {
    pub fn new(
        rust_name: String,
        wire_name: String,
        allow_unknown_fields: bool,
        shape: VariantShapeIr,
    ) -> Self {
        Self {
            rust_name,
            wire_name,
            allow_unknown_fields,
            shape,
        }
    }

    pub fn rust_name(&self) -> &str {
        &self.rust_name
    }

    pub fn wire_name(&self) -> &str {
        &self.wire_name
    }

    pub fn allow_unknown_fields(&self) -> bool {
        self.allow_unknown_fields
    }

    pub fn shape(&self) -> &VariantShapeIr {
        &self.shape
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum VariantShapeIr {
    Unit,
    Newtype {
        ty: RustTypeExprIr,
        via: Option<RustPathIr>,
    },
    Tuple(Vec<TupleElementIr>),
    Record(Vec<RustFieldIr>),
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TupleElementIr {
    pub ty: RustTypeExprIr,
    pub via: Option<RustPathIr>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RustTypeExprIr {
    Primitive(PrimitiveRustTypeIr),
    Named(QualifiedTypeName),
    Path(RustPathIr),
    GenericParam(String),
    Option(Box<RustTypeExprIr>),
    Vec(Box<RustTypeExprIr>),
    Map {
        key: Box<RustTypeExprIr>,
        value: Box<RustTypeExprIr>,
        impl_type: MapImplTypeIr,
    },
    Tuple(Vec<RustTypeExprIr>),
    Result {
        ok: Box<RustTypeExprIr>,
        err: Box<RustTypeExprIr>,
    },
    Wrapper {
        inner: Box<RustTypeExprIr>,
        wrapper: WrapperKindIr,
    },
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum PrimitiveRustTypeIr {
    String,
    Bool,
    Unit,
    Text,
    Any,
    I8,
    I16,
    I32,
    I64,
    I128,
    Isize,
    U8,
    U16,
    U32,
    U64,
    U128,
    Usize,
    F32,
    F64,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum MapImplTypeIr {
    HashMap,
    BTreeMap,
    IndexMap,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum WrapperKindIr {
    Box,
    Rc,
    Arc,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RenameRuleIr {
    Lower,
    Upper,
    Pascal,
    Camel,
    Snake,
    ScreamingSnake,
    Kebab,
    Cobol,
}

#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct RustGenericsIr {
    pub type_params: Vec<TypeParamIr>,
    pub lifetime_params: Vec<LifetimeParamIr>,
    pub const_params: Vec<ConstParamIr>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TypeParamIr {
    pub name: String,
    pub bounds: Vec<String>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct LifetimeParamIr {
    pub name: String,
    pub bounds: Vec<String>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ConstParamIr {
    pub name: String,
    pub ty: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct WhereClauseIr {
    pub predicates: Vec<String>,
}