1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
use clap::Parser;
use std::sync::Arc;
use tracing::error;
use warden_pseudonyms::state::{AppHandle, AppState};
use warden_stack::{Configuration, Services, tracing::Tracing};
/// warden-pseudonyms
#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
struct Args {
/// Path to config file
#[arg(short, long)]
config_file: Option<std::path::PathBuf>,
}
#[tokio::main]
async fn main() -> anyhow::Result<()> {
let args = Args::parse();
let config = include_str!("../pseudonyms.toml");
let mut config = config::Config::builder()
.add_source(config::File::from_str(config, config::FileFormat::Toml));
if let Some(cf) = args.config_file.as_ref().and_then(|v| v.to_str()) {
config = config.add_source(config::File::new(cf, config::FileFormat::Toml));
};
let mut config: Configuration = config.build()?.try_deserialize()?;
config.application.name = env!("CARGO_CRATE_NAME").into();
config.application.version = env!("CARGO_PKG_VERSION").into();
let tracing = Tracing::builder()
.opentelemetry(&config.application, &config.monitoring)?
.loki(&config.application, &config.monitoring)?
.build(&config.monitoring);
let provider = tracing.otel_provider;
tokio::spawn(tracing.loki_task);
let mut services = Services::builder()
.postgres(&config.database)
.await
.inspect_err(|e| error!("database: {e}"))?
.cache(&config.cache)
.await
.inspect_err(|e| error!("cache: {e}"))?
.build();
let postgres = services
.postgres
.take()
.ok_or_else(|| anyhow::anyhow!("database is not ready"))?;
let cache = services
.cache
.take()
.ok_or_else(|| anyhow::anyhow!("cache is not ready"))?;
let services = warden_pseudonyms::state::Services { postgres, cache };
let state = AppState::new(services, config, Some(provider))?;
let (tx, _rx) = tokio::sync::oneshot::channel();
warden_pseudonyms::run(AppHandle(Arc::new(state)), tx)
.await
.inspect_err(|e| error!("{e}"))
}
|