config.rs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. // SPDX-License-Identifier: AGPL-3.0-or-later
  2. use super::DEFAULT_CONFIG;
  3. use std::{
  4. net::IpAddr,
  5. path::{Path, PathBuf},
  6. };
  7. pub struct Config {
  8. pub ip_addr: IpAddr,
  9. pub tabrmd: String,
  10. pub tpm_state_path: PathBuf,
  11. pub block_dir: PathBuf,
  12. }
  13. impl Config {
  14. pub fn builder() -> ConfigBuilder {
  15. ConfigBuilder::new()
  16. }
  17. }
  18. #[derive(Default)]
  19. pub struct ConfigBuilder {
  20. pub ip_addr: Option<IpAddr>,
  21. pub tabrmd: Option<String>,
  22. pub tpm_state_path: Option<PathBuf>,
  23. pub block_dir: Option<PathBuf>,
  24. }
  25. impl ConfigBuilder {
  26. pub fn new() -> Self {
  27. Self::default()
  28. }
  29. pub fn with_ip_addr(mut self, ip_addr: Option<IpAddr>) -> Self {
  30. self.ip_addr = ip_addr;
  31. self
  32. }
  33. pub fn with_tabrmd(mut self, tabrmd: Option<String>) -> Self {
  34. self.tabrmd = tabrmd;
  35. self
  36. }
  37. pub fn with_tpm_state_path(mut self, tpm_state_path: Option<PathBuf>) -> Self {
  38. self.tpm_state_path = tpm_state_path;
  39. self
  40. }
  41. pub fn with_block_dir(mut self, block_dir: Option<PathBuf>) -> Self {
  42. self.block_dir = block_dir;
  43. self
  44. }
  45. pub fn build(self) -> Config {
  46. Config {
  47. ip_addr: self.ip_addr.unwrap_or(DEFAULT_CONFIG.ip_addr),
  48. tabrmd: self.tabrmd.unwrap_or(DEFAULT_CONFIG.tabrmd.to_owned()),
  49. tpm_state_path: self
  50. .tpm_state_path
  51. .unwrap_or(Path::new(DEFAULT_CONFIG.tpm_state_path).to_owned()),
  52. block_dir: self
  53. .block_dir
  54. .unwrap_or(Path::new(DEFAULT_CONFIG.block_dir).to_owned()),
  55. }
  56. }
  57. }
  58. pub struct ConfigRef<'a> {
  59. pub ip_addr: IpAddr,
  60. pub tabrmd: &'a str,
  61. pub tpm_state_path: &'a str,
  62. pub block_dir: &'a str,
  63. }
  64. pub struct Envvars<'a> {
  65. pub ip_addr: &'a str,
  66. pub tabrmd: &'a str,
  67. pub tpm_state_path: &'a str,
  68. pub block_dir: &'a str,
  69. }