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
use crate::ir::*;
use check_keyword::CheckKeyword;
use inflector::Inflector;
use proc_macro2::TokenStream;
use quote::*;
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum CratePrefix {
Internal,
External,
}
impl CratePrefix {
pub fn as_path(&self) -> syn::Path {
match self {
CratePrefix::Internal => syn::parse_str("crate").unwrap(),
CratePrefix::External => syn::parse_str("::ruststep").unwrap(),
}
}
}
impl IR {
pub fn to_token_stream(&self, prefix: CratePrefix) -> TokenStream {
let schemas: Vec<_> = self
.schemas
.iter()
.map(|schema| schema.to_token_stream(prefix))
.collect();
quote! { #(#schemas)* }
}
}
impl Schema {
pub fn to_token_stream(&self, prefix: CratePrefix) -> TokenStream {
let name = format_ident!("{}", self.name);
let types = &self.types;
let entities = &self.entities;
let type_decls = self.types.iter().filter(|e| match e {
TypeDecl::Enumeration(_) => false,
_ => true,
});
let entity_types: Vec<_> = entities
.iter()
.map(|e| format_ident!("{}", e.name.to_pascal_case()))
.chain(
type_decls
.clone()
.map(|e| format_ident!("{}", e.id().to_pascal_case())),
)
.collect();
let holder_name: Vec<_> = entities
.iter()
.map(|e| format_ident!("{}", e.name.as_str().into_safe()))
.chain(
type_decls
.clone()
.map(|e| format_ident!("{}", e.id().into_safe())),
)
.collect();
let holders_name: Vec<_> = entities
.iter()
.map(|e| format_ident!("{}_holders", e.name))
.chain(type_decls.map(|e| format_ident!("{}_holders", e.id())))
.collect();
let ruststep_path = prefix.as_path();
quote! {
pub mod #name {
use #ruststep_path::{as_holder, Holder, TableInit, primitive::*, derive_more::*};
use std::collections::HashMap;
#[derive(Debug, Clone, PartialEq, Default, TableInit)]
pub struct Tables {
#(
#holder_name: HashMap<u64, as_holder!(#entity_types)>,
)*
}
impl Tables {
#(
pub fn #holders_name(&self) -> &HashMap<u64, as_holder!(#entity_types)> {
&self.#holder_name
}
)*
}
#(#types)*
#(#entities)*
}
}
}
}