oxigdal-postgis 0.1.5

PostgreSQL/PostGIS integration for OxiGDAL - Spatial database workflows with connection pooling and async operations
Documentation
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
//! Error types for OxiGDAL PostGIS operations
//!
//! This module provides comprehensive error types for PostgreSQL/PostGIS integration.
//! All error types implement [`std::error::Error`] via [`thiserror`].

use thiserror::Error;

/// The main result type for PostGIS operations
pub type Result<T> = std::result::Result<T, PostGisError>;

/// The main error type for PostGIS operations
#[derive(Debug, Error)]
pub enum PostGisError {
    /// Connection error occurred
    #[error("Connection error: {0}")]
    Connection(#[from] ConnectionError),

    /// Query execution error
    #[error("Query error: {0}")]
    Query(#[from] QueryError),

    /// Type conversion error
    #[error("Conversion error: {0}")]
    Conversion(#[from] ConversionError),

    /// Transaction error
    #[error("Transaction error: {0}")]
    Transaction(#[from] TransactionError),

    /// WKB encoding/decoding error
    #[error("WKB error: {0}")]
    Wkb(#[from] WkbError),

    /// SQL generation error
    #[error("SQL error: {0}")]
    Sql(#[from] SqlError),

    /// OxiGDAL core error
    #[error("Core error: {0}")]
    Core(#[from] oxigdal_core::error::OxiGdalError),

    /// Invalid parameter
    #[error("Invalid parameter '{parameter}': {message}")]
    InvalidParameter {
        /// The parameter name
        parameter: &'static str,
        /// Error message
        message: String,
    },

    /// Operation not supported
    #[error("Not supported: {operation}")]
    NotSupported {
        /// The unsupported operation
        operation: String,
    },
}

/// Connection-related errors
#[derive(Debug, Error)]
pub enum ConnectionError {
    /// Failed to establish connection
    #[error("Failed to connect to database: {message}")]
    ConnectionFailed {
        /// Error message
        message: String,
    },

    /// Invalid connection string
    #[error("Invalid connection string: {message}")]
    InvalidConnectionString {
        /// Error message
        message: String,
    },

    /// Connection pool error
    #[error("Connection pool error: {message}")]
    PoolError {
        /// Error message
        message: String,
    },

    /// Connection timeout
    #[error("Connection timeout after {seconds} seconds")]
    Timeout {
        /// Timeout duration in seconds
        seconds: u64,
    },

    /// SSL/TLS error
    #[error("SSL/TLS error: {message}")]
    Ssl {
        /// Error message
        message: String,
    },

    /// Authentication failed
    #[error("Authentication failed: {message}")]
    AuthenticationFailed {
        /// Error message
        message: String,
    },

    /// Database not found
    #[error("Database not found: {database}")]
    DatabaseNotFound {
        /// Database name
        database: String,
    },

    /// PostGIS extension not installed
    #[error("PostGIS extension not installed or enabled")]
    PostGisNotInstalled,
}

/// Query execution errors
#[derive(Debug, Error)]
pub enum QueryError {
    /// Query execution failed
    #[error("Query execution failed: {message}")]
    ExecutionFailed {
        /// Error message
        message: String,
    },

    /// Syntax error in SQL query
    #[error("SQL syntax error: {message}")]
    SyntaxError {
        /// Error message
        message: String,
    },

    /// Table not found
    #[error("Table not found: {table}")]
    TableNotFound {
        /// Table name
        table: String,
    },

    /// Column not found
    #[error("Column not found: {column} in table {table}")]
    ColumnNotFound {
        /// Column name
        column: String,
        /// Table name
        table: String,
    },

    /// No rows returned
    #[error("No rows returned for query")]
    NoRows,

    /// Too many rows returned
    #[error("Expected {expected} rows, got {actual}")]
    TooManyRows {
        /// Expected number of rows
        expected: usize,
        /// Actual number of rows
        actual: usize,
    },

    /// Invalid spatial reference system
    #[error("Invalid SRID: {srid}")]
    InvalidSrid {
        /// SRID value
        srid: i32,
    },

    /// Spatial index not found
    #[error("Spatial index not found for table: {table}")]
    SpatialIndexNotFound {
        /// Table name
        table: String,
    },

    /// Query timeout
    #[error("Query timeout after {seconds} seconds")]
    Timeout {
        /// Timeout duration in seconds
        seconds: u64,
    },
}

/// Type conversion errors
#[derive(Debug, Error)]
pub enum ConversionError {
    /// Failed to convert PostgreSQL type to OxiGDAL type
    #[error("Failed to convert from PostgreSQL type '{pg_type}' to OxiGDAL type: {message}")]
    FromPostgres {
        /// PostgreSQL type name
        pg_type: String,
        /// Error message
        message: String,
    },

    /// Failed to convert OxiGDAL type to PostgreSQL type
    #[error("Failed to convert from OxiGDAL type to PostgreSQL type '{pg_type}': {message}")]
    ToPostgres {
        /// PostgreSQL type name
        pg_type: String,
        /// Error message
        message: String,
    },

    /// Unsupported geometry type
    #[error("Unsupported geometry type: {geometry_type}")]
    UnsupportedGeometry {
        /// Geometry type name
        geometry_type: String,
    },

    /// Invalid SRID
    #[error("Invalid SRID value: {srid}")]
    InvalidSrid {
        /// SRID value
        srid: i32,
    },

    /// NULL value encountered
    #[error("Unexpected NULL value in column: {column}")]
    UnexpectedNull {
        /// Column name
        column: String,
    },

    /// Type mismatch
    #[error("Type mismatch: expected {expected}, got {actual}")]
    TypeMismatch {
        /// Expected type
        expected: String,
        /// Actual type
        actual: String,
    },

    /// Invalid dimension
    #[error("Invalid geometry dimension: {dimension}")]
    InvalidDimension {
        /// Dimension value
        dimension: u32,
    },
}

/// Transaction-related errors
#[derive(Debug, Error)]
pub enum TransactionError {
    /// Failed to begin transaction
    #[error("Failed to begin transaction: {message}")]
    BeginFailed {
        /// Error message
        message: String,
    },

    /// Failed to commit transaction
    #[error("Failed to commit transaction: {message}")]
    CommitFailed {
        /// Error message
        message: String,
    },

    /// Failed to rollback transaction
    #[error("Failed to rollback transaction: {message}")]
    RollbackFailed {
        /// Error message
        message: String,
    },

    /// Transaction already in progress
    #[error("Transaction already in progress")]
    AlreadyInTransaction,

    /// No active transaction
    #[error("No active transaction")]
    NoActiveTransaction,

    /// Savepoint error
    #[error("Savepoint error: {message}")]
    SavepointError {
        /// Error message
        message: String,
    },

    /// Deadlock detected
    #[error("Deadlock detected: {message}")]
    Deadlock {
        /// Error message
        message: String,
    },
}

/// WKB encoding/decoding errors
#[derive(Debug, Error)]
pub enum WkbError {
    /// Invalid WKB format
    #[error("Invalid WKB format: {message}")]
    InvalidFormat {
        /// Error message
        message: String,
    },

    /// Invalid byte order
    #[error("Invalid byte order marker: {byte}")]
    InvalidByteOrder {
        /// Byte order value
        byte: u8,
    },

    /// Unsupported geometry type
    #[error("Unsupported WKB geometry type: {type_code}")]
    UnsupportedGeometryType {
        /// WKB type code
        type_code: u32,
    },

    /// Invalid coordinates
    #[error("Invalid coordinates: {message}")]
    InvalidCoordinates {
        /// Error message
        message: String,
    },

    /// Buffer too short
    #[error("Buffer too short: expected at least {expected} bytes, got {actual}")]
    BufferTooShort {
        /// Expected size
        expected: usize,
        /// Actual size
        actual: usize,
    },

    /// Invalid ring
    #[error("Invalid ring: {message}")]
    InvalidRing {
        /// Error message
        message: String,
    },

    /// Encoding error
    #[error("Failed to encode geometry to WKB: {message}")]
    EncodingFailed {
        /// Error message
        message: String,
    },

    /// Decoding error
    #[error("Failed to decode WKB: {message}")]
    DecodingFailed {
        /// Error message
        message: String,
    },
}

/// SQL generation errors
#[derive(Debug, Error)]
pub enum SqlError {
    /// Invalid identifier
    #[error("Invalid SQL identifier: {identifier}")]
    InvalidIdentifier {
        /// The invalid identifier
        identifier: String,
    },

    /// SQL injection attempt detected
    #[error("Potential SQL injection detected in: {input}")]
    InjectionAttempt {
        /// The suspicious input
        input: String,
    },

    /// Invalid table name
    #[error("Invalid table name: {table}")]
    InvalidTableName {
        /// Table name
        table: String,
    },

    /// Invalid column name
    #[error("Invalid column name: {column}")]
    InvalidColumnName {
        /// Column name
        column: String,
    },

    /// Invalid spatial function
    #[error("Invalid spatial function: {function}")]
    InvalidSpatialFunction {
        /// Function name
        function: String,
    },

    /// Parameter binding error
    #[error("Parameter binding error: {message}")]
    ParameterBindingError {
        /// Error message
        message: String,
    },
}

// Implement conversions from external error types

impl From<tokio_postgres::Error> for PostGisError {
    fn from(err: tokio_postgres::Error) -> Self {
        Self::Query(QueryError::ExecutionFailed {
            message: err.to_string(),
        })
    }
}

impl From<deadpool_postgres::PoolError> for PostGisError {
    fn from(err: deadpool_postgres::PoolError) -> Self {
        Self::Connection(ConnectionError::PoolError {
            message: err.to_string(),
        })
    }
}

impl From<std::io::Error> for PostGisError {
    fn from(err: std::io::Error) -> Self {
        Self::Connection(ConnectionError::ConnectionFailed {
            message: err.to_string(),
        })
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_error_display() {
        let err = PostGisError::InvalidParameter {
            parameter: "table",
            message: "must not be empty".to_string(),
        };
        assert!(err.to_string().contains("table"));
        assert!(err.to_string().contains("must not be empty"));
    }

    #[test]
    fn test_connection_error() {
        let err = ConnectionError::DatabaseNotFound {
            database: "test_db".to_string(),
        };
        assert!(err.to_string().contains("test_db"));
    }

    #[test]
    fn test_query_error() {
        let err = QueryError::TableNotFound {
            table: "buildings".to_string(),
        };
        assert!(err.to_string().contains("buildings"));
    }

    #[test]
    fn test_conversion_error() {
        let err = ConversionError::UnsupportedGeometry {
            geometry_type: "Unknown".to_string(),
        };
        assert!(err.to_string().contains("Unknown"));
    }

    #[test]
    fn test_wkb_error() {
        let err = WkbError::BufferTooShort {
            expected: 100,
            actual: 50,
        };
        assert!(err.to_string().contains("100"));
        assert!(err.to_string().contains("50"));
    }

    #[test]
    fn test_error_conversion() {
        let conn_err = ConnectionError::ConnectionFailed {
            message: "test".to_string(),
        };
        let postgis_err: PostGisError = conn_err.into();
        assert!(matches!(
            postgis_err,
            PostGisError::Connection(ConnectionError::ConnectionFailed { .. })
        ));
    }
}