mithril_signer/commands/
database_command.rsuse std::path::PathBuf;
use anyhow::Context;
use clap::{Parser, Subcommand};
use slog::{debug, Logger};
use mithril_common::StdResult;
use crate::{
dependency_injection::DependenciesBuilder, Configuration, SQLITE_FILE,
SQLITE_FILE_CARDANO_TRANSACTION,
};
#[derive(Parser, Debug, Clone)]
pub struct DatabaseCommand {
#[clap(subcommand)]
pub database_subcommand: DatabaseSubCommand,
}
impl DatabaseCommand {
pub async fn execute(&self, root_logger: Logger) -> StdResult<()> {
self.database_subcommand.execute(root_logger).await
}
}
#[derive(Debug, Clone, Subcommand)]
pub enum DatabaseSubCommand {
Migrate(MigrateCommand),
}
impl DatabaseSubCommand {
pub async fn execute(&self, root_logger: Logger) -> StdResult<()> {
match self {
Self::Migrate(cmd) => cmd.execute(root_logger).await,
}
}
}
#[derive(Parser, Debug, Clone)]
pub struct MigrateCommand {
#[clap(long, env = "STORES_DIRECTORY")]
stores_directory: PathBuf,
}
impl MigrateCommand {
pub async fn execute(&self, root_logger: Logger) -> StdResult<()> {
let config = Configuration {
data_stores_directory: self.stores_directory.clone(),
..Configuration::new_sample("0")
};
debug!(root_logger, "DATABASE MIGRATE command"; "config" => format!("{config:?}"));
println!(
"Migrating databases from stores directory: {}",
self.stores_directory.to_string_lossy()
);
let services = DependenciesBuilder::new(&config, root_logger.clone());
services
.build_sqlite_connection(SQLITE_FILE, crate::database::migration::get_migrations())
.await
.with_context(|| "Dependencies Builder can not get sqlite connection")?;
services
.build_sqlite_connection(
SQLITE_FILE_CARDANO_TRANSACTION,
mithril_persistence::database::cardano_transaction_migration::get_migrations(),
)
.await
.with_context(|| {
"Dependencies Builder can not get cardano transaction pool sqlite connection"
})?;
Ok(())
}
}