mithril_signer/commands/
database_command.rs

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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
use 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,
};

/// Database tools
#[derive(Parser, Debug, Clone)]
pub struct DatabaseCommand {
    /// commands
    #[clap(subcommand)]
    pub database_subcommand: DatabaseSubCommand,
}

impl DatabaseCommand {
    /// Execute the database command
    pub async fn execute(&self, root_logger: Logger) -> StdResult<()> {
        self.database_subcommand.execute(root_logger).await
    }
}

/// Database subcommands
#[derive(Debug, Clone, Subcommand)]
pub enum DatabaseSubCommand {
    /// Migrate databases located in the given stores directory
    Migrate(MigrateCommand),
}

impl DatabaseSubCommand {
    /// Execute the database subcommand
    pub async fn execute(&self, root_logger: Logger) -> StdResult<()> {
        match self {
            Self::Migrate(cmd) => cmd.execute(root_logger).await,
        }
    }
}

/// Migrate command
#[derive(Parser, Debug, Clone)]
pub struct MigrateCommand {
    /// Stores directory
    #[clap(long, env = "STORES_DIRECTORY")]
    stores_directory: PathBuf,
}

impl MigrateCommand {
    /// Execute the migrate command
    pub async fn execute(&self, root_logger: Logger) -> StdResult<()> {
        let config = Configuration {
            data_stores_directory: self.stores_directory.clone(),
            // Temporary solution to avoid the need to provide a full configuration
            ..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(())
    }
}