Move codegen to build and remove macros

This commit is contained in:
Lucio Franco
2019-09-06 15:19:18 -04:00
parent 295e7321b9
commit d0cfafafc6
20 changed files with 916 additions and 615 deletions
+33 -78
View File
@@ -1,95 +1,50 @@
use prost_build::Config;
use serde::Serialize;
use std::{io, path};
use std::{io, path, process::Command};
pub fn compile_protos<P>(protos: &[P], includes: &[P]) -> io::Result<()>
mod client;
mod service;
pub fn compile_protos<P>(protos: &[P], includes: &[P], package: &str) -> io::Result<()>
where
P: AsRef<path::Path>,
{
let out_dir = std::env::var("OUT_DIR").unwrap();
let mut config = Config::new();
config.service_generator(Box::new(ServiceGenerator {}));
config.out_dir(&out_dir);
config.compile_protos(protos, includes)?;
config.compile_protos(protos, includes)
fmt(&out_dir, &format!("{}.rs", package));
Ok(())
}
fn fmt(out_dir: &str, file: &str) {
let out = Command::new("rustfmt")
.arg("--emit")
.arg("files")
.arg("--edition")
.arg("2018")
.arg(format!("{}/{}", out_dir, file))
.output()
.unwrap();
println!("out: {:?}", out);
assert!(out.status.success());
}
pub struct ServiceGenerator {}
impl prost_build::ServiceGenerator for ServiceGenerator {
fn generate(&mut self, service: prost_build::Service, _buf: &mut String) {
let file = format!(
"{}/{}.{}.json",
std::env::var("OUT_DIR").unwrap(),
service.package,
service.name
);
fn generate(&mut self, service: prost_build::Service, buf: &mut String) {
let path = "self";
let server = service::generate(&service, path);
let code = format!("{}", server);
buf.push_str(&code);
let svc = Service {
name: service.name,
proto_name: service.proto_name,
package: service.package,
methods: service
.methods
.into_iter()
.map(|m| Method {
name: m.name,
proto_name: m.proto_name,
input_type: m.input_type,
output_type: m.output_type,
input_proto_type: m.input_proto_type,
output_proto_type: m.output_proto_type,
client_streaming: m.client_streaming,
server_streaming: m.server_streaming,
})
.collect(),
};
let json = serde_json::to_string(&svc).unwrap();
std::fs::write(file, json).unwrap();
let client = client::generate(&service, path);
let code = format!("{}", client);
buf.push_str(&code);
}
// fn finalize(&mut self, buf: &mut String) {
// let mut fmt = codegen::Formatter::new(buf);
// self.scope
// .fmt(&mut fmt)
// .expect("formatting root scope failed!");
// self.scope = codegen::Scope::new();
// }
}
/// A service descriptor.
#[derive(Debug, Serialize)]
pub struct Service {
/// The service name in Rust style.
pub name: String,
/// The service name as it appears in the .proto file.
pub proto_name: String,
/// The package name as it appears in the .proto file.
pub package: String,
/// The service methods.
pub methods: Vec<Method>,
}
/// A service method descriptor.
#[derive(Debug, Serialize)]
pub struct Method {
/// The name of the method in Rust style.
pub name: String,
/// The name of the method as it appears in the .proto file.
pub proto_name: String,
/// The input Rust type.
pub input_type: String,
/// The output Rust type.
pub output_type: String,
/// The input Protobuf type.
pub input_proto_type: String,
/// The output Protobuf type.
pub output_proto_type: String,
// /// The method options.
// pub options: prost_types::MethodOptions,
/// Identifies if client streams multiple client messages.
pub client_streaming: bool,
/// Identifies if server streams multiple server messages.
pub server_streaming: bool,
}