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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
//! Error types
//!
//! All database errors are translated into these types before reaching user code.
//!
//! The goal here is to preserve enough context to answer:
//! - what operation failed
//! - which table or query was involved
//! - whether the problem is configuration, validation, connection, or SQL
//!
//! Practical split:
//! - inspect `suggestion()` first when you need the next debugging step quickly
//! - inspect `context()` when the failure depends on rendered SQL or table metadata
//! - use `code()` and `http_status()` only when you need stable external handling for logs or APIs
use thiserror::Error;
mod context;
mod presentation;
pub use context::ErrorContext;
// ── From impls for common external error types ─────────────────────
impl From<crate::internal::OrmError> for Error {
fn from(err: crate::internal::OrmError) -> Self {
crate::internal::translate_error(err)
}
}
impl From<std::io::Error> for Error {
fn from(err: std::io::Error) -> Self {
Self::Internal {
message: err.to_string(),
}
}
}
impl From<serde_json::Error> for Error {
fn from(err: serde_json::Error) -> Self {
Self::Conversion {
message: err.to_string(),
}
}
}
/// Result alias for TideORM operations.
pub type Result<T> = std::result::Result<T, Error>;
/// The main error type for TideORM.
///
/// The variants are grouped by failure source so callers can decide whether to
/// retry, fix input, or stop and inspect configuration.
#[derive(Error, Debug)]
pub enum Error {
/// Requested record was not found.
#[error("Record not found: {message}")]
NotFound {
/// Missing-record description.
message: String,
/// Optional query or table context.
context: Option<Box<ErrorContext>>,
},
/// Database connection failed.
#[error("Connection error: {message}")]
Connection {
/// Backend error text.
message: String,
},
/// Query building or execution failed.
#[error("Query error: {message}")]
Query {
/// Backend or validation error text.
message: String,
/// Optional rendered SQL context.
context: Option<Box<ErrorContext>>,
},
/// Validation failed before the write reached the database.
#[error("Validation error: {field} - {message}")]
Validation {
/// Field name.
field: String,
/// Validation message.
message: String,
},
/// Type conversion failed.
#[error("Conversion error: {message}")]
Conversion {
/// Conversion error text.
message: String,
},
/// Transaction failed.
#[error("Transaction error: {message}")]
Transaction {
/// Transaction error text.
message: String,
},
/// Configuration error.
#[error("Configuration error: {message}")]
Configuration {
/// Configuration error text.
message: String,
},
/// Internal error.
#[error("Internal error: {message}")]
Internal {
/// Internal error text.
message: String,
},
/// Operation is not supported by the active backend.
#[error("Backend not supported: {message}")]
BackendNotSupported {
/// Unsupported-operation message.
message: String,
/// Backend name.
backend: String,
},
/// Operation required a primary key that was not set.
#[error("Primary key not set: {message}")]
PrimaryKeyNotSet {
/// Primary-key error text.
message: String,
/// Model name.
model: String,
},
/// `INSERT ... RETURNING` is not supported by the active backend.
#[error("Insert returning not supported: {message}")]
InsertReturningNotSupported {
/// Unsupported-RETURNING message.
message: String,
/// Backend name.
backend: String,
},
/// Tokenization failed because configuration or encoding work could not proceed.
#[error("Tokenization error: {message}")]
Tokenization {
/// Tokenization error text.
message: String,
},
/// Token was invalid, mismatched, expired, or tampered.
#[error("Invalid token: {message}")]
InvalidToken {
/// Invalid-token message.
message: String,
},
}
impl Error {
/// Construct a missing-record error without extra context.
pub fn not_found(message: impl Into<String>) -> Self {
Self::NotFound {
message: message.into(),
context: None,
}
}
/// Construct a missing-record error and attach table or query context.
pub fn not_found_with_context(message: impl Into<String>, context: ErrorContext) -> Self {
Self::NotFound {
message: message.into(),
context: Some(Box::new(context)),
}
}
/// Construct a connection error.
pub fn connection(message: impl Into<String>) -> Self {
Self::Connection {
message: message.into(),
}
}
/// Construct a query error without extra context.
pub fn query(message: impl Into<String>) -> Self {
Self::Query {
message: message.into(),
context: None,
}
}
/// Construct a query error and attach rendered SQL context.
pub fn query_with_context(message: impl Into<String>, context: ErrorContext) -> Self {
Self::Query {
message: message.into(),
context: Some(Box::new(context)),
}
}
/// Construct a validation error for one field.
pub fn validation(field: impl Into<String>, message: impl Into<String>) -> Self {
Self::Validation {
field: field.into(),
message: message.into(),
}
}
/// Construct a conversion error.
pub fn conversion(message: impl Into<String>) -> Self {
Self::Conversion {
message: message.into(),
}
}
/// Construct a transaction error.
pub fn transaction(message: impl Into<String>) -> Self {
Self::Transaction {
message: message.into(),
}
}
/// Construct a configuration error.
pub fn configuration(message: impl Into<String>) -> Self {
Self::Configuration {
message: message.into(),
}
}
/// Construct an internal error.
pub fn internal(message: impl Into<String>) -> Self {
Self::Internal {
message: message.into(),
}
}
/// Construct an error for a backend-specific unsupported operation.
pub fn backend_not_supported(message: impl Into<String>, backend: impl Into<String>) -> Self {
Self::BackendNotSupported {
message: message.into(),
backend: backend.into(),
}
}
/// Construct an error for operations that require a missing primary key.
pub fn primary_key_not_set(message: impl Into<String>, model: impl Into<String>) -> Self {
Self::PrimaryKeyNotSet {
message: message.into(),
model: model.into(),
}
}
/// Construct an error for `INSERT ... RETURNING` on an unsupported backend.
pub fn insert_returning_not_supported(
message: impl Into<String>,
backend: impl Into<String>,
) -> Self {
Self::InsertReturningNotSupported {
message: message.into(),
backend: backend.into(),
}
}
/// Construct a tokenization error.
pub fn tokenization(message: impl Into<String>) -> Self {
Self::Tokenization {
message: message.into(),
}
}
/// Construct an invalid-token error.
pub fn invalid_token(message: impl Into<String>) -> Self {
Self::InvalidToken {
message: message.into(),
}
}
/// Construct a query-builder misuse error before any SQL runs.
pub fn invalid_query(message: impl Into<String>) -> Self {
Self::Query {
message: message.into(),
context: None,
}
}
/// Return attached context for `NotFound` and `Query` errors.
pub fn context(&self) -> Option<&ErrorContext> {
match self {
Self::NotFound { context, .. } => context.as_deref(),
Self::Query { context, .. } => context.as_deref(),
_ => None,
}
}
/// Attach context to `NotFound` or `Query` errors.
///
/// Other variants are returned unchanged.
pub fn with_context(self, ctx: ErrorContext) -> Self {
match self {
Self::NotFound { message, .. } => Self::NotFound {
message,
context: Some(Box::new(ctx)),
},
Self::Query { message, .. } => Self::Query {
message,
context: Some(Box::new(ctx)),
},
other => other,
}
}
/// True when the variant is `NotFound`.
pub fn is_not_found(&self) -> bool {
matches!(self, Self::NotFound { .. })
}
/// True when the variant is `Connection`.
pub fn is_connection_error(&self) -> bool {
matches!(self, Self::Connection { .. })
}
/// True when the variant is `Validation`.
pub fn is_validation_error(&self) -> bool {
matches!(self, Self::Validation { .. })
}
/// True when the variant is `Query`.
pub fn is_query_error(&self) -> bool {
matches!(self, Self::Query { .. })
}
/// True when the variant is `Transaction`.
pub fn is_transaction_error(&self) -> bool {
matches!(self, Self::Transaction { .. })
}
/// True when the variant is `Configuration`.
pub fn is_configuration_error(&self) -> bool {
matches!(self, Self::Configuration { .. })
}
/// True when the variant is `BackendNotSupported`.
pub fn is_backend_not_supported(&self) -> bool {
matches!(self, Self::BackendNotSupported { .. })
}
/// True when the variant is `PrimaryKeyNotSet`.
pub fn is_primary_key_not_set(&self) -> bool {
matches!(self, Self::PrimaryKeyNotSet { .. })
}
/// True when the variant is `InsertReturningNotSupported`.
pub fn is_insert_returning_not_supported(&self) -> bool {
matches!(self, Self::InsertReturningNotSupported { .. })
}
}
#[cfg(test)]
#[path = "../tests/unit/error_tests.rs"]
mod tests;