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
use std::collections::{BTreeMap, BTreeSet};
#[derive(Clone, Debug)]
pub struct CodeGeneratorConfig {
pub(crate) module_name: String,
pub(crate) serialization: bool,
pub(crate) encodings: BTreeSet<Encoding>,
pub(crate) external_definitions: ExternalDefinitions,
pub(crate) comments: DocComments,
pub(crate) custom_code: CustomCode,
pub(crate) c_style_enums: bool,
}
#[derive(Clone, Copy, Debug, PartialOrd, Ord, PartialEq, Eq)]
pub enum Encoding {
Bincode,
Bcs,
}
pub type ExternalDefinitions =
std::collections::BTreeMap< String, Vec<String>>;
pub type DocComments =
std::collections::BTreeMap< Vec<String>, String>;
pub type CustomCode = std::collections::BTreeMap<
Vec<String>,
String,
>;
pub trait SourceInstaller {
type Error;
fn install_module(
&self,
config: &CodeGeneratorConfig,
registry: &serde_reflection::Registry,
) -> std::result::Result<(), Self::Error>;
fn install_serde_runtime(&self) -> std::result::Result<(), Self::Error>;
fn install_bincode_runtime(&self) -> std::result::Result<(), Self::Error>;
fn install_bcs_runtime(&self) -> std::result::Result<(), Self::Error>;
}
impl CodeGeneratorConfig {
pub fn new(module_name: String) -> Self {
Self {
module_name,
serialization: true,
encodings: BTreeSet::new(),
external_definitions: BTreeMap::new(),
comments: BTreeMap::new(),
custom_code: BTreeMap::new(),
c_style_enums: false,
}
}
pub fn module_name(&self) -> &str {
&self.module_name
}
pub fn with_serialization(mut self, serialization: bool) -> Self {
self.serialization = serialization;
self
}
pub fn with_encodings<I>(mut self, encodings: I) -> Self
where
I: IntoIterator<Item = Encoding>,
{
self.encodings = encodings.into_iter().collect();
self
}
pub fn with_external_definitions(mut self, external_definitions: ExternalDefinitions) -> Self {
self.external_definitions = external_definitions;
self
}
pub fn with_comments(mut self, mut comments: DocComments) -> Self {
for comment in comments.values_mut() {
*comment = format!("{}\n", comment.trim());
}
self.comments = comments;
self
}
pub fn with_custom_code(mut self, code: CustomCode) -> Self {
self.custom_code = code;
self
}
pub fn with_c_style_enums(mut self, c_style_enums: bool) -> Self {
self.c_style_enums = c_style_enums;
self
}
}
impl Encoding {
pub fn name(self) -> &'static str {
match self {
Encoding::Bincode => "bincode",
Encoding::Bcs => "bcs",
}
}
}