influxdb/generated_types/build.rs

73 lines
1.9 KiB
Rust
Raw Normal View History

//! Compiles Protocol Buffers and FlatBuffers schema definitions into
//! native Rust types.
//!
//! Source files are found in
use std::{
path::{Path, PathBuf},
process::Command,
};
type Error = Box<dyn std::error::Error>;
type Result<T, E = Error> = std::result::Result<T, E>;
fn main() -> Result<()> {
let root = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
generate_grpc_types(&root)?;
generate_wal_types(&root)?;
Ok(())
}
/// Schema used with IOx specific gRPC requests
///
/// Creates `influxdata.platform.storage.rs` and
/// `com.github.influxdata.idpe.storage.read.rs`
fn generate_grpc_types(root: &Path) -> Result<()> {
let proto_files = vec![
root.join("test.proto"),
root.join("predicate.proto"),
root.join("storage_common.proto"),
root.join("storage_common_idpe.proto"),
root.join("service.proto"),
root.join("source.proto"),
];
// Tell cargo to recompile if any of these proto files are changed
for proto_file in &proto_files {
println!("cargo:rerun-if-changed={}", proto_file.display());
}
tonic_build::configure().compile(&proto_files, &[root.into()])?;
Ok(())
}
/// Schema used in the WAL
///
/// Creates `wal_generated.rs`
fn generate_wal_types(root: &Path) -> Result<()> {
let wal_file = root.join("wal.fbs");
println!("cargo:rerun-if-changed={}", wal_file.display());
let out_dir: PathBuf = std::env::var_os("OUT_DIR")
.expect("Could not determine `OUT_DIR`")
.into();
let status = Command::new("flatc")
.arg("--rust")
.arg("-o")
.arg(&out_dir)
.arg(wal_file)
.status();
match status {
Ok(status) if !status.success() => panic!("`flatc` failed to compile the .fbs to Rust"),
Ok(_status) => {} // Successfully compiled
Err(err) => panic!("Could not execute `flatc`: {}", err),
}
Ok(())
}