main.rs 823 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. mod build_ebpf;
  2. mod build;
  3. mod run;
  4. mod codegen;
  5. use std::process::exit;
  6. use clap::Parser;
  7. use env_logger::Env;
  8. #[derive(Debug, Parser)]
  9. pub struct Options {
  10. #[clap(subcommand)]
  11. command: Command,
  12. }
  13. #[derive(Debug, Parser)]
  14. enum Command {
  15. BuildEbpf(build_ebpf::Options),
  16. BuildArtifacts(build::Options),
  17. Run(run::Options),
  18. CodeGen,
  19. }
  20. fn main() {
  21. env_logger::Builder::from_env(Env::default().default_filter_or("info")).init();
  22. let opts = Options::parse();
  23. use Command::*;
  24. let ret = match opts.command {
  25. BuildEbpf(opts) => build_ebpf::build_ebpf(opts),
  26. BuildArtifacts(opts) => build::build(opts),
  27. Run(opts) => run::run(opts),
  28. CodeGen => codegen::generate(),
  29. };
  30. if let Err(e) = ret {
  31. eprintln!("{:#}", e);
  32. exit(1);
  33. }
  34. }