mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-11 01:53:23 +01:00
34 lines
1003 B
Rust
34 lines
1003 B
Rust
use walkdir::{WalkDir, DirEntry};
|
|
|
|
fn is_hidden(entry: &DirEntry) -> bool {
|
|
entry.file_name()
|
|
.to_str()
|
|
.map(|s| s.starts_with('.'))
|
|
.unwrap_or(false)
|
|
}
|
|
|
|
fn main() {
|
|
let mut compile_command = ::capnpc::CompilerCommand::new();
|
|
compile_command.src_prefix("schema");
|
|
|
|
for entry in WalkDir::new("schema")
|
|
.max_depth(2)
|
|
.into_iter()
|
|
.filter_entry(|e| !is_hidden(e))
|
|
.filter_map(Result::ok) // Filter all entries that access failed on
|
|
.filter(|e| !e.file_type().is_dir()) // Filter directories
|
|
// Filter non-schema files
|
|
.filter(|e| e.file_name()
|
|
.to_str()
|
|
.map(|s| s.ends_with(".capnp"))
|
|
.unwrap_or(false)
|
|
)
|
|
{
|
|
println!("Collecting schema file {}", entry.path().display());
|
|
compile_command.file(entry.path());
|
|
}
|
|
|
|
println!("Compiling schemas...");
|
|
compile_command.run().expect("Failed to generate API code");
|
|
}
|