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
//! Db error surface.
use std::{fmt, io};
use crate::{
ElementId, IncidenceId, IndexId, LabelId, ProjectionId, PropertyKeyId, RelationId,
RelationTypeId, RoleId, catalog::PropertyFamily, value::PropertyType,
};
/// Errors raised by the `OxGraph` database product.
///
/// # Performance
///
/// Formatting is `O(message length)`.
#[derive(Debug)]
#[non_exhaustive]
pub enum DbError {
/// Db files already exist.
AlreadyExists,
/// Db files do not exist.
NotFound,
/// The single-writer lock is already held by another writer.
WriterLockHeld,
/// Canonical ID space is exhausted.
IdOverflow,
/// Transaction ID space is exhausted.
TransactionIdOverflow,
/// Commit sequence space is exhausted.
CommitSeqOverflow,
/// Duplicate catalog name or ID.
DuplicateCatalogName,
/// Duplicate canonical ID.
DuplicateId,
/// Unknown element ID.
UnknownElement {
/// Missing element ID.
id: ElementId,
},
/// Unknown relation ID.
UnknownRelation {
/// Missing relation ID.
id: RelationId,
},
/// Unknown incidence ID.
UnknownIncidence {
/// Missing incidence ID.
id: IncidenceId,
},
/// Unknown role ID.
UnknownRole {
/// Missing role ID.
id: RoleId,
},
/// Unknown label ID.
UnknownLabel {
/// Missing label ID.
id: LabelId,
},
/// Unknown relation type ID.
UnknownRelationType {
/// Missing relation type ID.
id: RelationTypeId,
},
/// Unknown property key ID.
UnknownPropertyKey {
/// Missing property key ID.
id: PropertyKeyId,
},
/// Unknown projection ID.
UnknownProjection {
/// Missing projection ID.
id: ProjectionId,
},
/// Unknown index ID.
UnknownIndex {
/// Missing index ID.
id: IndexId,
},
/// Property value type mismatched the catalog schema.
PropertyTypeMismatch {
/// Expected property type.
expected: PropertyType,
/// Actual property type.
actual: PropertyType,
},
/// Property subject family mismatched the catalog schema.
WrongPropertyFamily {
/// Expected subject family.
expected: PropertyFamily,
/// Actual subject family.
actual: PropertyFamily,
},
/// Projection cannot be materialized as requested.
InvalidProjection {
/// Deterministic validation message.
message: String,
},
/// Query text is empty.
EmptyQuery,
/// Query text is outside the pinned profile.
UnsupportedQuery {
/// Deterministic explanation.
message: String,
},
/// Storage bytes are invalid.
InvalidStore {
/// Deterministic validation message.
message: String,
},
/// The store's OXGDB format version is not supported by this build. A base
/// written under an older format (for example one lacking the persisted
/// `SECTION_INDEX_*` postings) is rejected here rather than silently rebuilt.
UnsupportedFormat {
/// Format version recorded in the store.
found: u32,
/// Format version this build requires.
expected: u32,
},
/// Wraps an IO error with operation context.
Io {
/// Operation that failed.
operation: &'static str,
/// Underlying IO error.
source: io::Error,
},
/// A bounded traversal failed.
Traversal {
/// Deterministic reason the traversal failed.
reason: &'static str,
},
/// A delta-log record is corrupt beyond the recoverable torn tail.
LogCorrupt {
/// Log sequence number of the offending record.
lsn: u64,
/// Deterministic reason the record was rejected.
reason: &'static str,
},
/// A delta-log record names a different base generation than the superblock.
BaseGenerationMismatch {
/// Base generation named by the superblock.
expected: u64,
/// Base generation found in the record.
found: u64,
},
/// A catalog name was not found in a bound schema.
UnknownName {
/// The kind of catalog entry (for example `"role"` or `"property key"`).
kind: &'static str,
/// The name that was not found.
name: String,
},
/// A required property was absent from a subject.
MissingProperty {
/// The property key that was required but absent.
key: PropertyKeyId,
},
/// A declared schema item conflicts with an existing catalog entry.
SchemaConflict {
/// The conflicting catalog name.
name: String,
/// Deterministic reason the declaration conflicts with the catalog.
reason: &'static str,
},
/// A numeric value was outside the representable `i64` range.
ValueOutOfRange,
/// A property key has no associated equality index.
NoEqualityIndex {
/// The property key lacking an equality index.
key: PropertyKeyId,
},
}
impl DbError {
/// Creates an IO error with operation context.
///
/// # Performance
///
/// This function is `O(1)`.
pub(crate) const fn io(operation: &'static str, source: io::Error) -> Self {
Self::Io { operation, source }
}
/// Creates an unsupported-query error.
///
/// # Performance
///
/// This function is `O(message.len())`.
pub(crate) fn unsupported(message: impl Into<String>) -> Self {
Self::UnsupportedQuery {
message: message.into(),
}
}
/// Creates an invalid-projection error.
///
/// # Performance
///
/// This function is `O(message.len())`.
pub(crate) fn invalid_projection(message: impl Into<String>) -> Self {
Self::InvalidProjection {
message: message.into(),
}
}
/// Creates an invalid-store error.
///
/// # Performance
///
/// This function is `O(message.len())`.
pub(crate) fn invalid_store(message: impl Into<String>) -> Self {
Self::InvalidStore {
message: message.into(),
}
}
/// Builds a traversal error from a deterministic reason.
///
/// # Performance
///
/// This function is `O(1)`.
pub(crate) const fn traversal(reason: &'static str) -> Self {
Self::Traversal { reason }
}
}
impl fmt::Display for DbError {
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::AlreadyExists => formatter.write_str("database already exists"),
Self::NotFound => formatter.write_str("database not found"),
Self::WriterLockHeld => formatter.write_str("database writer lock is held"),
Self::IdOverflow => formatter.write_str("database ID overflow"),
Self::TransactionIdOverflow => formatter.write_str("transaction ID overflow"),
Self::CommitSeqOverflow => formatter.write_str("commit sequence overflow"),
Self::DuplicateCatalogName => formatter.write_str("duplicate catalog name"),
Self::DuplicateId => formatter.write_str("duplicate ID"),
Self::UnknownElement { id } => write!(formatter, "unknown element {}", id.get()),
Self::UnknownRelation { id } => write!(formatter, "unknown relation {}", id.get()),
Self::UnknownIncidence { id } => write!(formatter, "unknown incidence {}", id.get()),
Self::UnknownRole { id } => write!(formatter, "unknown role {}", id.get()),
Self::UnknownLabel { id } => write!(formatter, "unknown label {}", id.get()),
Self::UnknownRelationType { id } => {
write!(formatter, "unknown relation type {}", id.get())
}
Self::UnknownPropertyKey { id } => {
write!(formatter, "unknown property key {}", id.get())
}
Self::UnknownProjection { id } => write!(formatter, "unknown projection {}", id.get()),
Self::UnknownIndex { id } => write!(formatter, "unknown index {}", id.get()),
Self::PropertyTypeMismatch { expected, actual } => {
write!(
formatter,
"property type mismatch: expected {expected:?}, got {actual:?}"
)
}
Self::WrongPropertyFamily { expected, actual } => {
write!(
formatter,
"property family mismatch: expected {expected:?}, got {actual:?}"
)
}
Self::InvalidProjection { message } => {
write!(formatter, "invalid projection: {message}")
}
Self::EmptyQuery => formatter.write_str("empty query"),
Self::UnsupportedQuery { message } => write!(formatter, "unsupported query: {message}"),
Self::InvalidStore { message } => write!(formatter, "invalid store: {message}"),
Self::UnsupportedFormat { found, expected } => write!(
formatter,
"unsupported OXGDB format version: found {found}, this build requires {expected}"
),
Self::Io { operation, source } => write!(formatter, "{operation} failed: {source}"),
Self::Traversal { reason } => write!(formatter, "traversal error: {reason}"),
Self::LogCorrupt { lsn, reason } => {
write!(formatter, "delta-log corrupt at lsn {lsn}: {reason}")
}
Self::BaseGenerationMismatch { expected, found } => write!(
formatter,
"base generation mismatch: superblock names {expected}, record has {found}"
),
Self::UnknownName { kind, name } => write!(formatter, "unknown {kind} {name:?}"),
Self::MissingProperty { key } => {
write!(formatter, "missing property {}", key.get())
}
Self::SchemaConflict { name, reason } => {
write!(formatter, "schema conflict for {name:?}: {reason}")
}
Self::ValueOutOfRange => formatter.write_str("value out of representable i64 range"),
Self::NoEqualityIndex { key } => {
write!(
formatter,
"no equality index for property key {}",
key.get()
)
}
}
}
}
impl std::error::Error for DbError {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Self::Io { source, .. } => Some(source),
Self::Traversal { .. }
| Self::AlreadyExists
| Self::NotFound
| Self::WriterLockHeld
| Self::IdOverflow
| Self::TransactionIdOverflow
| Self::CommitSeqOverflow
| Self::DuplicateCatalogName
| Self::DuplicateId
| Self::UnknownElement { .. }
| Self::UnknownRelation { .. }
| Self::UnknownIncidence { .. }
| Self::UnknownRole { .. }
| Self::UnknownLabel { .. }
| Self::UnknownRelationType { .. }
| Self::UnknownPropertyKey { .. }
| Self::UnknownProjection { .. }
| Self::UnknownIndex { .. }
| Self::PropertyTypeMismatch { .. }
| Self::WrongPropertyFamily { .. }
| Self::InvalidProjection { .. }
| Self::EmptyQuery
| Self::UnsupportedQuery { .. }
| Self::InvalidStore { .. }
| Self::UnsupportedFormat { .. }
| Self::LogCorrupt { .. }
| Self::BaseGenerationMismatch { .. }
| Self::UnknownName { .. }
| Self::MissingProperty { .. }
| Self::SchemaConflict { .. }
| Self::ValueOutOfRange
| Self::NoEqualityIndex { .. } => None,
}
}
}