build.rs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. extern crate protobuf_codegen; // Does the business
  2. extern crate protobuf_codegen_pure; // Helper function
  3. use std::path::Path;
  4. use std::fs::{read_to_string, write};
  5. use protobuf_codegen_pure::Customize;
  6. use protobuf_codegen_pure::parse_and_typecheck;
  7. fn main() {
  8. let customizations = Customize { ..Default::default() };
  9. let lib_str = read_to_string("src/lib.rs").unwrap();
  10. // Iterate over the desired module names.
  11. for line in lib_str.lines() {
  12. if !line.starts_with("pub mod ") {
  13. continue;
  14. }
  15. let len = line.len();
  16. let name = &line[8..len-1]; // Remove keywords and semi-colon
  17. // Build the paths to relevant files.
  18. let src = &format!("proto/{}.proto", name);
  19. let dest = &format!("src/{}.rs", name);
  20. // Get the contents of the existing generated file.
  21. let mut existing = "".to_string();
  22. if Path::new(dest).exists() {
  23. // Removing CRLF line endings if present.
  24. existing = read_to_string(dest).unwrap().replace("\r\n", "\n");
  25. }
  26. println!("Regenerating {} from {}", dest, src);
  27. // Parse the proto files as the protobuf-codegen-pure crate does.
  28. let p = parse_and_typecheck(&["proto"], &[src]).expect("protoc");
  29. // But generate them with the protobuf-codegen crate directly.
  30. // Then we can keep the result in-memory.
  31. let result = protobuf_codegen::gen(
  32. &p.file_descriptors,
  33. &p.relative_paths,
  34. &customizations,
  35. );
  36. // Protoc result as a byte array.
  37. let new = &result.first().unwrap().content;
  38. // Convert to utf8 to compare with existing.
  39. let new = std::str::from_utf8(&new).unwrap();
  40. // Save newly generated file if changed.
  41. if new != existing {
  42. write(dest, &new).unwrap();
  43. }
  44. }
  45. }