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
use crate::MongoDbSchemaConnector;
use schema_connector::{BoxFuture, ConnectorResult, MigrationPersistence, Namespaces};

impl MigrationPersistence for MongoDbSchemaConnector {
    fn baseline_initialize(&mut self) -> schema_connector::BoxFuture<'_, ConnectorResult<()>> {
        unsupported_command_error()
    }

    fn initialize(&mut self, _namespaces: Option<Namespaces>) -> BoxFuture<'_, ConnectorResult<()>> {
        unsupported_command_error()
    }

    fn mark_migration_applied_impl(
        &mut self,
        _migration_name: &str,
        _checksum: &str,
    ) -> BoxFuture<'_, ConnectorResult<String>> {
        unsupported_command_error()
    }

    fn mark_migration_rolled_back_by_id(&mut self, _migration_id: &str) -> BoxFuture<'_, ConnectorResult<()>> {
        unsupported_command_error()
    }

    fn record_migration_started_impl(
        &mut self,
        _migration_name: &str,
        _checksum: &str,
    ) -> BoxFuture<'_, ConnectorResult<String>> {
        unsupported_command_error()
    }

    fn record_successful_step(&mut self, _id: &str) -> BoxFuture<'_, ConnectorResult<()>> {
        unsupported_command_error()
    }

    fn record_failed_step(&mut self, _id: &str, _logs: &str) -> BoxFuture<'_, ConnectorResult<()>> {
        unsupported_command_error()
    }

    fn record_migration_finished(&mut self, _id: &str) -> BoxFuture<'_, ConnectorResult<()>> {
        unsupported_command_error()
    }

    fn list_migrations(
        &mut self,
    ) -> BoxFuture<
        '_,
        ConnectorResult<
            Result<Vec<schema_connector::MigrationRecord>, schema_connector::PersistenceNotInitializedError>,
        >,
    > {
        unsupported_command_error()
    }
}

fn unsupported_command_error<T: Send + Sync + 'static>() -> BoxFuture<'static, ConnectorResult<T>> {
    Box::pin(std::future::ready(Err(crate::unsupported_command_error())))
}