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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
//! The migration connector ConnectorError type.

use crate::migrations_directory::{ListMigrationsError, ReadMigrationScriptError};
use std::{
    error::Error as StdError,
    fmt::{Debug, Display, Write},
    sync::Arc,
};
use tracing_error::SpanTrace;
use user_facing_errors::{
    common::SchemaParserError, schema_engine::MigrationFileNotFound, KnownError, UserFacingError,
};

/// The general error reporting type for migration connectors.
#[derive(Clone)]
pub struct ConnectorError(Box<ConnectorErrorImpl>);

/// Shorthand for a [Result](https://doc.rust-lang.org/std/result/enum.Result.html) where the error
/// variant is a [ConnectorError](/error/enum.ConnectorError.html).
pub type ConnectorResult<T> = Result<T, ConnectorError>;

#[derive(Debug, Clone)]
struct ConnectorErrorImpl {
    /// An optional error already rendered for users in case the migration core does not handle it.
    user_facing_error: Option<KnownError>,
    /// Additional context.
    message: Option<Box<str>>,
    /// The source of the error.
    source: Option<Arc<(dyn StdError + Send + Sync + 'static)>>,
    /// See the tracing-error docs.
    context: SpanTrace,
}

impl Debug for ConnectorError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        Debug::fmt(&self.0, f)?;
        f.write_char('\n')?;
        Display::fmt(self, f)
    }
}

impl Display for ConnectorError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        if let Some(message) = &self.0.message {
            f.write_str(message)?;
            f.write_char('\n')?;
        }

        if let Some(source) = &self.0.source {
            Display::fmt(source.as_ref(), f)?;
            f.write_char('\n')?;
        }

        Display::fmt(&self.0.context, f)
    }
}

impl StdError for ConnectorError {
    fn source(&self) -> Option<&(dyn StdError + 'static)> {
        self.0
            .source
            .as_ref()
            .map(|err| -> &(dyn StdError + 'static) { err.as_ref() })
    }
}

impl ConnectorError {
    /// A reference to the tracing-error context.
    pub fn context(&self) -> &SpanTrace {
        &self.0.context
    }

    /// The user-facing error code for this error.
    pub fn error_code(&self) -> Option<&str> {
        self.0.user_facing_error.as_ref().map(|err| err.error_code.as_ref())
    }

    /// The error message. Unlike the [`Display`] implementation, this does not include the source
    /// and context.
    pub fn message(&self) -> Option<&str> {
        self.0.message.as_deref()
    }

    /// Build a generic unknown error from just an error message.
    pub fn from_msg(msg: String) -> Self {
        ConnectorError(Box::new(ConnectorErrorImpl {
            user_facing_error: None,
            context: SpanTrace::capture(),
            message: Some(msg.into_boxed_str()),
            source: None,
        }))
    }

    /// Build a generic unknown error from a source error, with some additional context.
    pub fn from_source_with_context<E: StdError + Send + Sync + 'static>(source: E, context: Box<str>) -> Self {
        ConnectorError(Box::new(ConnectorErrorImpl {
            user_facing_error: None,
            message: Some(context),
            source: Some(Arc::new(source)),
            context: SpanTrace::capture(),
        }))
    }

    /// Build a generic unknown error from a source error, with some additional context.
    pub fn from_source<E: StdError + Send + Sync + 'static>(source: E, context: &'static str) -> Self {
        ConnectorError(Box::new(ConnectorErrorImpl {
            user_facing_error: None,
            message: Some(context.into()),
            source: Some(Arc::new(source)),
            context: SpanTrace::capture(),
        }))
    }

    /// Turn the error into a nested, user-facing IntrospectionResultEmpty error.
    pub fn into_introspection_result_empty_error() -> Self {
        let user_facing_error = user_facing_errors::schema_engine::IntrospectionResultEmpty;

        ConnectorError(Box::new(ConnectorErrorImpl {
            user_facing_error: Some(KnownError::new(user_facing_error)),
            source: None,
            message: None,
            context: SpanTrace::capture(),
        }))
    }

    /// Turn the error into a nested, user-facing MigrationDoesNotApplyCleanly error.
    pub fn into_migration_does_not_apply_cleanly(self, migration_name: String) -> Self {
        let context = self.0.context.clone();
        let user_facing_error = user_facing_errors::schema_engine::MigrationDoesNotApplyCleanly {
            migration_name,
            inner_error: self.to_user_facing(),
        };

        ConnectorError(Box::new(ConnectorErrorImpl {
            user_facing_error: Some(KnownError::new(user_facing_error)),
            source: Some(Arc::new(self)),
            context,
            message: None,
        }))
    }

    /// Turn the error into a nested, user-facing ShadowDbCreationError.
    pub fn into_shadow_db_creation_error(self) -> Self {
        let context = self.0.context.clone();
        let user_facing_error = user_facing_errors::schema_engine::ShadowDbCreationError {
            inner_error: self.to_user_facing(),
        };

        ConnectorError(Box::new(ConnectorErrorImpl {
            user_facing_error: Some(KnownError::new(user_facing_error)),
            message: None,
            context,
            source: Some(Arc::new(self)),
        }))
    }

    /// Turn the error into a nested, user-facing SoftResetFailed error.
    pub fn into_soft_reset_failed_error(self) -> Self {
        let context = self.0.context.clone();
        let user_facing_error = user_facing_errors::schema_engine::SoftResetFailed {
            inner_error: self.to_user_facing(),
        };

        ConnectorError(Box::new(ConnectorErrorImpl {
            user_facing_error: Some(KnownError::new(user_facing_error)),
            context,
            message: None,
            source: Some(Arc::new(self)),
        }))
    }

    /// Is this error's cause the passed in user facing error?
    pub fn is_user_facing_error<T: UserFacingError>(&self) -> bool {
        self.error_code() == Some(T::ERROR_CODE)
    }

    /// Access the inner `user_facing_error::KnownError`.
    pub fn known_error(&self) -> Option<&KnownError> {
        self.0.user_facing_error.as_ref()
    }

    /// Create a new P1012 user facing error from the rendered datamodel parser error.
    pub fn new_schema_parser_error(full_error: String) -> Self {
        ConnectorError::user_facing(SchemaParserError { full_error })
    }

    /// Try to downcast the source to a specific type.
    pub fn source_as<T: StdError + 'static>(&self) -> Option<&T> {
        let source = self.0.source.as_ref()?;
        source.downcast_ref()
    }

    /// Render to a user_facing_error::Error
    pub fn to_user_facing(&self) -> user_facing_errors::Error {
        match &self.0.user_facing_error {
            Some(known_error) => known_error.clone().into(),
            None => user_facing_errors::UnknownError::new(self).into(),
        }
    }

    /// Construct a GenericError with an associated user facing error.
    pub fn user_facing<T: UserFacingError>(err: T) -> Self {
        ConnectorError(Box::new(ConnectorErrorImpl {
            message: Some(err.message().into_boxed_str()),
            user_facing_error: Some(KnownError::new(err)),
            source: None,
            context: SpanTrace::capture(),
        }))
    }

    /// Construct an UrlParseError.
    pub fn url_parse_error(err: impl Display) -> Self {
        Self::user_facing(user_facing_errors::common::InvalidConnectionString {
            details: invalid_connection_string_description(err),
        })
    }
}

impl From<KnownError> for ConnectorError {
    fn from(err: KnownError) -> Self {
        ConnectorError(Box::new(ConnectorErrorImpl {
            message: Some(err.message.clone().into_boxed_str()),
            user_facing_error: Some(err),
            source: None,
            context: SpanTrace::capture(),
        }))
    }
}

impl From<ReadMigrationScriptError> for ConnectorError {
    fn from(err: ReadMigrationScriptError) -> Self {
        let context = err.1.clone();

        ConnectorError(Box::new(ConnectorErrorImpl {
            user_facing_error: Some(KnownError::new(MigrationFileNotFound {
                migration_file_path: err.2.clone(),
            })),
            context,
            message: None,
            source: Some(Arc::new(err)),
        }))
    }
}

impl From<ListMigrationsError> for ConnectorError {
    fn from(err: ListMigrationsError) -> Self {
        ConnectorError::from_msg(err.to_string())
    }
}

fn invalid_connection_string_description(error_details: impl Display) -> String {
    let docs = r#"https://www.prisma.io/docs/reference/database-reference/connection-urls"#;

    format! {r#"{error_details} in database URL. Please refer to the documentation in {docs} for constructing a correct connection string. In some cases, certain characters must be escaped. Please check the string for any illegal characters."#}
}

#[cfg(test)]
mod tests {
    use crate::ConnectorError;

    #[test]
    fn connector_error_has_the_expected_size() {
        assert_eq!(std::mem::size_of::<ConnectorError>(), std::mem::size_of::<*mut ()>());
    }
}