thread-flow 0.1.0

Thread dataflow integration for data processing pipelines, using CocoIndex.
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
// SPDX-FileCopyrightText: 2025 Knitli Inc. <knitli@knit.li>
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Concrete storage backend implementations for the incremental update system.
//!
//! This module provides database-specific implementations of the
//! [`StorageBackend`](super::storage::StorageBackend) trait:
//!
//! - **Postgres** (`postgres-backend` feature): Full SQL backend for CLI deployment
//!   with connection pooling, prepared statements, and batch operations.
//! - **D1** (`d1-backend` feature): Cloudflare D1 backend for edge deployment
//!   via the Cloudflare REST API.
//! - **InMemory**: Simple in-memory backend for testing (always available).
//!
//! ## Backend Factory Pattern
//!
//! The [`create_backend`] factory function provides runtime backend selection
//! based on deployment environment and feature flags:
//!
//! ```rust
//! use thread_flow::incremental::backends::{BackendType, BackendConfig, create_backend};
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! // CLI deployment with Postgres
//! # #[cfg(feature = "postgres-backend")]
//! let backend = create_backend(
//!     BackendType::Postgres,
//!     BackendConfig::Postgres {
//!         database_url: "postgresql://localhost/thread".to_string(),
//!     },
//! ).await?;
//!
//! // Edge deployment with D1
//! # #[cfg(feature = "d1-backend")]
//! let backend = create_backend(
//!     BackendType::D1,
//!     BackendConfig::D1 {
//!         account_id: "your-account-id".to_string(),
//!         database_id: "your-db-id".to_string(),
//!         api_token: "your-token".to_string(),
//!     },
//! ).await?;
//!
//! // Testing with in-memory storage (always available)
//! let backend = create_backend(
//!     BackendType::InMemory,
//!     BackendConfig::InMemory,
//! ).await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## Feature Gating
//!
//! Backend availability depends on cargo features:
//!
//! - `postgres-backend`: Enables [`PostgresIncrementalBackend`]
//! - `d1-backend`: Enables [`D1IncrementalBackend`]
//! - No features required: [`InMemoryStorage`] always available
//!
//! Attempting to use a disabled backend returns [`IncrementalError::UnsupportedBackend`].
//!
//! ## Deployment Scenarios
//!
//! ### CLI Deployment (Postgres)
//!
//! ```toml
//! [dependencies]
//! thread-flow = { version = "*", features = ["postgres-backend"] }
//! ```
//!
//! ```rust
//! # #[cfg(feature = "postgres-backend")]
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! use thread_flow::incremental::backends::{BackendType, BackendConfig, create_backend};
//!
//! let backend = create_backend(
//!     BackendType::Postgres,
//!     BackendConfig::Postgres {
//!         database_url: std::env::var("DATABASE_URL")?,
//!     },
//! ).await?;
//! # Ok(())
//! # }
//! ```
//!
//! ### Edge Deployment (D1)
//!
//! ```toml
//! [dependencies]
//! thread-flow = { version = "*", features = ["d1-backend", "worker"] }
//! ```
//!
//! ```rust
//! # #[cfg(feature = "d1-backend")]
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! use thread_flow::incremental::backends::{BackendType, BackendConfig, create_backend};
//!
//! let backend = create_backend(
//!     BackendType::D1,
//!     BackendConfig::D1 {
//!         account_id: std::env::var("CF_ACCOUNT_ID")?,
//!         database_id: std::env::var("CF_DATABASE_ID")?,
//!         api_token: std::env::var("CF_API_TOKEN")?,
//!     },
//! ).await?;
//! # Ok(())
//! # }
//! ```
//!
//! ### Testing (InMemory)
//!
//! ```rust
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! use thread_flow::incremental::backends::{BackendType, BackendConfig, create_backend};
//!
//! let backend = create_backend(
//!     BackendType::InMemory,
//!     BackendConfig::InMemory,
//! ).await?;
//! # Ok(())
//! # }
//! ```

use super::storage::{InMemoryStorage, StorageBackend};
use std::error::Error;
use std::fmt;

#[cfg(feature = "postgres-backend")]
pub mod postgres;

#[cfg(feature = "d1-backend")]
pub mod d1;

#[cfg(feature = "postgres-backend")]
pub use postgres::PostgresIncrementalBackend;

#[cfg(feature = "d1-backend")]
pub use d1::D1IncrementalBackend;

// ─── Error Types ──────────────────────────────────────────────────────────────

/// Errors that can occur during backend initialization and operation.
#[derive(Debug)]
pub enum IncrementalError {
    /// The requested backend is not available (feature flag disabled).
    UnsupportedBackend(&'static str),

    /// Backend initialization failed (connection error, invalid config, etc.).
    InitializationFailed(String),

    /// Propagated storage error from backend operations.
    Storage(super::storage::StorageError),
}

impl fmt::Display for IncrementalError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            IncrementalError::UnsupportedBackend(backend) => {
                write!(
                    f,
                    "Backend '{}' is not available. Enable the corresponding feature flag.",
                    backend
                )
            }
            IncrementalError::InitializationFailed(msg) => {
                write!(f, "Backend initialization failed: {}", msg)
            }
            IncrementalError::Storage(err) => write!(f, "Storage error: {}", err),
        }
    }
}

impl Error for IncrementalError {
    fn source(&self) -> Option<&(dyn Error + 'static)> {
        match self {
            IncrementalError::Storage(err) => Some(err),
            _ => None,
        }
    }
}

impl From<super::storage::StorageError> for IncrementalError {
    fn from(err: super::storage::StorageError) -> Self {
        IncrementalError::Storage(err)
    }
}

// ─── Backend Configuration ────────────────────────────────────────────────────

/// Backend type selector for runtime backend selection.
///
/// Use this enum with [`create_backend`] to instantiate the appropriate
/// storage backend based on deployment environment.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum BackendType {
    /// PostgreSQL backend (requires `postgres-backend` feature).
    ///
    /// Primary backend for CLI deployment with connection pooling
    /// and batch operations.
    Postgres,

    /// Cloudflare D1 backend (requires `d1-backend` feature).
    ///
    /// Primary backend for edge deployment via Cloudflare Workers.
    D1,

    /// In-memory backend (always available).
    ///
    /// Used for testing and development. Data is not persisted.
    InMemory,
}

/// Configuration for backend initialization.
///
/// Each variant contains the connection parameters needed to initialize
/// the corresponding backend type.
#[derive(Debug, Clone)]
pub enum BackendConfig {
    /// PostgreSQL connection configuration.
    Postgres {
        /// PostgreSQL connection URL (e.g., `postgresql://localhost/thread`).
        database_url: String,
    },

    /// Cloudflare D1 connection configuration.
    D1 {
        /// Cloudflare account ID.
        account_id: String,
        /// D1 database ID.
        database_id: String,
        /// Cloudflare API token with D1 read/write permissions.
        api_token: String,
    },

    /// In-memory storage (no configuration needed).
    InMemory,
}

// ─── Backend Factory ──────────────────────────────────────────────────────────

/// Creates a storage backend based on the specified type and configuration.
///
/// This factory function provides runtime backend selection with compile-time
/// feature gating. If a backend is requested but its feature flag is disabled,
/// returns [`IncrementalError::UnsupportedBackend`].
///
/// # Arguments
///
/// * `backend_type` - The type of backend to instantiate.
/// * `config` - Configuration parameters for the backend.
///
/// # Returns
///
/// A boxed trait object implementing [`StorageBackend`], or an error if:
/// - The backend feature is disabled ([`IncrementalError::UnsupportedBackend`])
/// - Backend initialization fails ([`IncrementalError::InitializationFailed`])
/// - Configuration mismatch between `backend_type` and `config`
///
/// # Examples
///
/// ```rust
/// use thread_flow::incremental::backends::{BackendType, BackendConfig, create_backend};
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// // Create in-memory backend (always available)
/// let backend = create_backend(
///     BackendType::InMemory,
///     BackendConfig::InMemory,
/// ).await?;
///
/// // Create Postgres backend (requires postgres-backend feature)
/// # #[cfg(feature = "postgres-backend")]
/// let backend = create_backend(
///     BackendType::Postgres,
///     BackendConfig::Postgres {
///         database_url: "postgresql://localhost/thread".to_string(),
///     },
/// ).await?;
/// # Ok(())
/// # }
/// ```
///
/// # Errors
///
/// - [`IncrementalError::UnsupportedBackend`]: Feature flag disabled for requested backend
/// - [`IncrementalError::InitializationFailed`]: Connection failed, invalid config, or initialization error
pub async fn create_backend(
    backend_type: BackendType,
    config: BackendConfig,
) -> Result<Box<dyn StorageBackend>, IncrementalError> {
    match (backend_type, config) {
        // ── Postgres Backend ──────────────────────────────────────────────
        (BackendType::Postgres, BackendConfig::Postgres { database_url }) => {
            #[cfg(feature = "postgres-backend")]
            {
                PostgresIncrementalBackend::new(&database_url)
                    .await
                    .map(|b| Box::new(b) as Box<dyn StorageBackend>)
                    .map_err(|e| {
                        IncrementalError::InitializationFailed(format!(
                            "Postgres init failed: {}",
                            e
                        ))
                    })
            }
            #[cfg(not(feature = "postgres-backend"))]
            {
                let _ = database_url; // Suppress unused warning
                Err(IncrementalError::UnsupportedBackend("postgres"))
            }
        }

        // ── D1 Backend ────────────────────────────────────────────────────
        (
            BackendType::D1,
            BackendConfig::D1 {
                account_id,
                database_id,
                api_token,
            },
        ) => {
            #[cfg(feature = "d1-backend")]
            {
                D1IncrementalBackend::new(account_id, database_id, api_token)
                    .map(|b| Box::new(b) as Box<dyn StorageBackend>)
                    .map_err(|e| {
                        IncrementalError::InitializationFailed(format!("D1 init failed: {}", e))
                    })
            }
            #[cfg(not(feature = "d1-backend"))]
            {
                let _ = (account_id, database_id, api_token); // Suppress unused warnings
                Err(IncrementalError::UnsupportedBackend("d1"))
            }
        }

        // ── InMemory Backend ──────────────────────────────────────────────
        (BackendType::InMemory, BackendConfig::InMemory) => {
            Ok(Box::new(InMemoryStorage::new()) as Box<dyn StorageBackend>)
        }

        // ── Configuration Mismatch ────────────────────────────────────────
        _ => Err(IncrementalError::InitializationFailed(
            "Backend type and configuration mismatch".to_string(),
        )),
    }
}

// ─── Tests ────────────────────────────────────────────────────────────────────

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

    #[tokio::test]
    async fn test_create_in_memory_backend() {
        let result = create_backend(BackendType::InMemory, BackendConfig::InMemory).await;
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_configuration_mismatch() {
        let result = create_backend(
            BackendType::InMemory,
            BackendConfig::Postgres {
                database_url: "test".to_string(),
            },
        )
        .await;
        assert!(result.is_err());
        if let Err(err) = result {
            assert!(matches!(err, IncrementalError::InitializationFailed(_)));
        }
    }

    #[cfg(not(feature = "postgres-backend"))]
    #[tokio::test]
    async fn test_postgres_backend_unavailable() {
        let result = create_backend(
            BackendType::Postgres,
            BackendConfig::Postgres {
                database_url: "postgresql://localhost/test".to_string(),
            },
        )
        .await;
        assert!(result.is_err());
        if let Err(err) = result {
            assert!(matches!(
                err,
                IncrementalError::UnsupportedBackend("postgres")
            ));
        }
    }

    #[cfg(not(feature = "d1-backend"))]
    #[tokio::test]
    async fn test_d1_backend_unavailable() {
        let result = create_backend(
            BackendType::D1,
            BackendConfig::D1 {
                account_id: "test".to_string(),
                database_id: "test".to_string(),
                api_token: "test".to_string(),
            },
        )
        .await;
        assert!(result.is_err());
        if let Err(err) = result {
            assert!(matches!(err, IncrementalError::UnsupportedBackend("d1")));
        }
    }

    #[test]
    fn test_incremental_error_display() {
        let err = IncrementalError::UnsupportedBackend("test");
        assert!(format!("{}", err).contains("not available"));

        let err = IncrementalError::InitializationFailed("connection failed".to_string());
        assert!(format!("{}", err).contains("connection failed"));
    }

    #[test]
    fn test_backend_type_equality() {
        assert_eq!(BackendType::InMemory, BackendType::InMemory);
        assert_ne!(BackendType::Postgres, BackendType::D1);
    }
}