use std::collections::{BTreeMap, BTreeSet, HashMap};
#[derive(Clone, Debug)]
pub struct CodeGeneratorConfig {
pub module_name: String,
pub serialization: bool,
pub encodings: BTreeSet<Encoding>,
pub external_definitions: ExternalDefinitions,
pub comments: DocComments,
pub custom_code: CustomCode,
pub enums: EnumConfig,
pub package_manifest: 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,
>;
#[derive(Clone, Debug)]
pub struct EnumConfig {
pub c_style: bool,
pub sealed: bool,
pub output_type: HashMap<&'static str, &'static str>,
}
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(),
enums: EnumConfig {
c_style: false,
sealed: false,
output_type: HashMap::new(),
},
package_manifest: true,
}
}
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.enums.c_style = c_style_enums;
self
}
pub fn with_sealed_enums(mut self, sealed: bool) -> Self {
self.enums.sealed = sealed;
self
}
pub fn with_enum_type_overrides(
mut self,
overrides: HashMap<&'static str, &'static str>,
) -> Self {
self.enums.output_type = overrides;
self
}
pub fn with_package_manifest(mut self, package_manifest: bool) -> Self {
self.package_manifest = package_manifest;
self
}
}
impl Encoding {
pub fn name(self) -> &'static str {
match self {
Encoding::Bincode => "bincode",
Encoding::Bcs => "bcs",
}
}
}