saddle-db 0.2.0-rc.19

Saddle managed asynchronous database access and transactions
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
//! Production adapter from Runtime's verified DB startup claim to the single
//! Saddle-managed physical pool.

use saddle_admission::DbCreditProfile;
use saddle_core::{ComponentLifecycle, LifecycleFuture};
use saddle_observability::Observer;
use saddle_runtime::startup_assembly::{StartupDbPoolFactory, StartupDbPoolOwner};

use crate::{Database, DatabaseConfig, SaddleError};

/// Linear Database-owned input for Runtime's actual-owner assembly.
///
/// Fields are private and this type is deliberately not `Clone`: the facade
/// can hand one configuration owner to the one official assembly path.
#[doc(hidden)]
pub struct StartupManagedDatabaseFactory {
    config: Option<DatabaseConfig>,
    observer: Option<Observer>,
}

impl StartupManagedDatabaseFactory {
    pub fn new(config: Option<DatabaseConfig>, observer: Observer) -> Self {
        Self {
            config,
            observer: Some(observer),
        }
    }

    /// Production remains closed until the started fixed-writer owner can
    /// issue the opaque DB descendant handle. This constructor never creates
    /// a legacy Observer or a second writer.
    #[doc(hidden)]
    pub fn awaiting_started_observability(config: Option<DatabaseConfig>) -> Self {
        Self {
            config,
            observer: None,
        }
    }
}

/// Opaque physical DB owner retained by Runtime until finalization/drop.
///
/// It exposes only the two actual facts required by Runtime's pairing
/// protocol. The managed Database and its raw sqlx pool remain private.
///
/// ```compile_fail
/// # use saddle_db::internal::StartupManagedDatabaseOwner;
/// fn duplicate(owner: StartupManagedDatabaseOwner) {
///     let _second = owner.clone();
/// }
/// ```
///
/// ```compile_fail
/// # use saddle_admission::DbCreditProfile;
/// # use saddle_db::internal::StartupManagedDatabaseOwner;
/// fn forge() -> StartupManagedDatabaseOwner {
///     StartupManagedDatabaseOwner { database: None, profile: DbCreditProfile { connections: 0, operations: 0 } }
/// }
/// ```
#[doc(hidden)]
pub struct StartupManagedDatabaseOwner {
    database: Option<Database>,
    profile: DbCreditProfile,
}

/// One-shot scoped view issued only while the unique startup owner is being
/// consumed by the Facade bootstrap.
///
/// The view cannot be constructed, cloned, replayed, or returned from the
/// higher-ranked bootstrap callback. A managed handle obtained from it remains
/// bounded by the returned owner's shutdown, which permanently closes the
/// shared pool before Runtime finalization.
///
/// ```compile_fail
/// # use saddle_db::internal::StartupManagedDatabaseBootstrap;
/// fn forge<'a>() -> StartupManagedDatabaseBootstrap<'a> {
///     StartupManagedDatabaseBootstrap { database: None }
/// }
/// ```
#[doc(hidden)]
pub struct StartupManagedDatabaseBootstrap<'a> {
    database: Option<&'a Database>,
}

impl StartupManagedDatabaseBootstrap<'_> {
    /// Consumes the one-shot view and returns the existing managed capability.
    /// It never constructs, reconnects, or exposes a raw sqlx pool.
    pub fn existing(self) -> Option<Database> {
        self.database.cloned()
    }
}

impl StartupManagedDatabaseOwner {
    /// Runs one Facade-owned bootstrap consumer and returns the same unique
    /// physical/finalization owner. The HRTB prevents the scoped view from
    /// escaping in `R`; panic/loss drops the owner instead of publishing it.
    pub fn bootstrap<R>(
        self,
        consume: impl for<'a> FnOnce(StartupManagedDatabaseBootstrap<'a>) -> R,
    ) -> (Self, R) {
        let result = consume(StartupManagedDatabaseBootstrap {
            database: self.database.as_ref(),
        });
        (self, result)
    }
}

/// ```compile_fail
/// # use saddle_db::internal::StartupManagedDatabaseOwner;
/// fn replay(owner: StartupManagedDatabaseOwner) {
///     let (owner, ()) = owner.bootstrap(|_| ());
///     let _first = owner.bootstrap(|_| ());
///     let _replay = owner.bootstrap(|_| ());
/// }
/// ```
const _: () = ();

impl Drop for StartupManagedDatabaseOwner {
    fn drop(&mut self) {
        // Make the unique physical owner release explicit. There is no
        // replacement factory, reconnect loop, or second pool.
        drop(self.database.take());
    }
}

impl StartupDbPoolOwner for StartupManagedDatabaseOwner {
    fn connection_capacity(&self) -> usize {
        self.profile.connections
    }

    fn operation_capacity(&self) -> usize {
        self.profile.operations
    }
}

impl ComponentLifecycle for StartupManagedDatabaseOwner {
    fn name(&self) -> &'static str {
        "database"
    }

    fn start(&self) -> LifecycleFuture<'_> {
        Box::pin(std::future::ready(Ok(())))
    }

    fn shutdown(&self) -> LifecycleFuture<'_> {
        Box::pin(async move {
            match self.database.as_ref() {
                Some(database) => database.close().await,
                None => Ok(()),
            }
        })
    }
}

/// Stable failure boundary for construction before Runtime pairs the DB
/// actual-facts receipt.
#[derive(Debug)]
#[doc(hidden)]
pub enum StartupManagedDatabaseError {
    ConfigurationMismatch,
    CapacityOverflow,
    Connect(SaddleError),
}

impl StartupDbPoolFactory for StartupManagedDatabaseFactory {
    type Owner = StartupManagedDatabaseOwner;
    type Error = StartupManagedDatabaseError;

    async fn construct(self, required: DbCreditProfile) -> Result<Self::Owner, Self::Error> {
        if required.connections != required.operations {
            return Err(StartupManagedDatabaseError::ConfigurationMismatch);
        }

        if required.connections == 0 {
            return if self.config.is_none() {
                Ok(StartupManagedDatabaseOwner {
                    database: None,
                    profile: required,
                })
            } else {
                Err(StartupManagedDatabaseError::ConfigurationMismatch)
            };
        }

        let config = self
            .config
            .ok_or(StartupManagedDatabaseError::ConfigurationMismatch)?;
        let connections = u32::try_from(required.connections)
            .map_err(|_| StartupManagedDatabaseError::CapacityOverflow)?;
        let config = config.verified_connections(connections);
        let observer = self
            .observer
            .ok_or(StartupManagedDatabaseError::ConfigurationMismatch)?;
        let database = Database::connect(config, observer)
            .await
            .map_err(StartupManagedDatabaseError::Connect)?;
        Ok(StartupManagedDatabaseOwner {
            database: Some(database),
            profile: required,
        })
    }
}

#[cfg(test)]
mod tests {
    use std::{env, io, time::Duration};

    use saddle_observability::ObserverConfig;
    use sqlx::{Connection, mysql::MySqlConnection};

    use super::*;

    fn runtime() -> tokio::runtime::Runtime {
        tokio::runtime::Builder::new_multi_thread()
            .worker_threads(1)
            .enable_all()
            .build()
            .unwrap()
    }

    fn observer() -> Observer {
        Observer::with_writer(ObserverConfig::default(), io::sink()).unwrap()
    }

    #[test]
    fn zero_profile_requires_no_database_configuration() {
        let owner = runtime()
            .block_on(
                StartupManagedDatabaseFactory::new(None, observer()).construct(DbCreditProfile {
                    connections: 0,
                    operations: 0,
                }),
            )
            .unwrap();
        assert!(owner.database.is_none());
        assert_eq!(owner.connection_capacity(), 0);
        assert_eq!(owner.operation_capacity(), 0);
        let (owner, database) = owner.bootstrap(|database| database.existing());
        assert!(database.is_none());
        drop(owner);

        let result = runtime().block_on(
            StartupManagedDatabaseFactory::new(
                Some(DatabaseConfig::new("mysql://localhost/unused")),
                observer(),
            )
            .construct(DbCreditProfile {
                connections: 0,
                operations: 0,
            }),
        );
        assert!(matches!(
            result,
            Err(StartupManagedDatabaseError::ConfigurationMismatch)
        ));
    }

    #[test]
    fn asymmetric_and_overflowing_profiles_fail_before_connect() {
        let asymmetric = runtime().block_on(
            StartupManagedDatabaseFactory::new(
                Some(DatabaseConfig::new("mysql://localhost/unused")),
                observer(),
            )
            .construct(DbCreditProfile {
                connections: 1,
                operations: 2,
            }),
        );
        assert!(matches!(
            asymmetric,
            Err(StartupManagedDatabaseError::ConfigurationMismatch)
        ));

        if usize::BITS > u32::BITS {
            let overflow = runtime().block_on(
                StartupManagedDatabaseFactory::new(
                    Some(DatabaseConfig::new("mysql://localhost/unused")),
                    observer(),
                )
                .construct(DbCreditProfile {
                    connections: u32::MAX as usize + 1,
                    operations: u32::MAX as usize + 1,
                }),
            );
            assert!(matches!(
                overflow,
                Err(StartupManagedDatabaseError::CapacityOverflow)
            ));
        }
    }

    #[test]
    fn connect_failure_returns_without_a_physical_owner() {
        let result = runtime().block_on(
            StartupManagedDatabaseFactory::new(
                Some(
                    DatabaseConfig::new("mysql://root@127.0.0.1:1/unreachable")
                        .acquire_timeout(Duration::from_millis(50)),
                ),
                observer(),
            )
            .construct(DbCreditProfile {
                connections: 1,
                operations: 1,
            }),
        );
        assert!(matches!(
            result,
            Err(StartupManagedDatabaseError::Connect(_))
        ));
    }

    #[test]
    fn real_mariadb_constructs_exact_single_pool_and_drop_releases_owner() {
        let Ok(url) = env::var("SADDLE_TEST_DATABASE_URL") else {
            eprintln!("skipping startup pool adapter: SADDLE_TEST_DATABASE_URL is not set");
            return;
        };
        let runtime = runtime();
        let mut admin = runtime.block_on(MySqlConnection::connect(&url)).unwrap();
        let baseline = runtime
            .block_on(
                sqlx::query_scalar::<_, i64>(
                    "SELECT COUNT(*) FROM information_schema.PROCESSLIST WHERE DB = DATABASE()",
                )
                .fetch_one(&mut admin),
            )
            .unwrap();
        let owner = runtime
            .block_on(
                StartupManagedDatabaseFactory::new(
                    Some(DatabaseConfig::new(&url).max_connections(99)),
                    observer(),
                )
                .construct(DbCreditProfile {
                    connections: 2,
                    operations: 2,
                }),
            )
            .unwrap();
        assert_eq!(owner.connection_capacity(), 2);
        assert_eq!(owner.operation_capacity(), 2);
        let database = owner.database.as_ref().unwrap();
        assert_eq!(database.pool.size(), 2);
        assert_eq!(database.pool.num_idle(), 2);
        let (owner, bootstrap_database) = owner.bootstrap(|database| database.existing());
        let bootstrap_database = bootstrap_database.unwrap();
        assert_eq!(bootstrap_database.pool.size(), 2);
        drop(bootstrap_database);
        let with_pool = runtime
            .block_on(
                sqlx::query_scalar::<_, i64>(
                    "SELECT COUNT(*) FROM information_schema.PROCESSLIST WHERE DB = DATABASE()",
                )
                .fetch_one(&mut admin),
            )
            .unwrap();
        assert_eq!(with_pool, baseline + 2);
        drop(owner);
        runtime.block_on(async {
            for _ in 0..50 {
                let current = sqlx::query_scalar::<_, i64>(
                    "SELECT COUNT(*) FROM information_schema.PROCESSLIST WHERE DB = DATABASE()",
                )
                .fetch_one(&mut admin)
                .await
                .unwrap();
                if current == baseline {
                    return;
                }
                tokio::time::sleep(Duration::from_millis(20)).await;
            }
            panic!("dropping the unique startup owner did not close its physical pool");
        });

        let lost = runtime
            .block_on(
                StartupManagedDatabaseFactory::new(Some(DatabaseConfig::new(&url)), observer())
                    .construct(DbCreditProfile {
                        connections: 2,
                        operations: 2,
                    }),
            )
            .unwrap();
        let panic = std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| {
            let _ = lost.bootstrap::<()>(|_| panic!("lost bootstrap consumer"));
        }));
        assert!(panic.is_err());
        runtime.block_on(async {
            for _ in 0..50 {
                let current = sqlx::query_scalar::<_, i64>(
                    "SELECT COUNT(*) FROM information_schema.PROCESSLIST WHERE DB = DATABASE()",
                )
                .fetch_one(&mut admin)
                .await
                .unwrap();
                if current == baseline {
                    return;
                }
                tokio::time::sleep(Duration::from_millis(20)).await;
            }
            panic!("lost bootstrap capability did not drop its physical owner");
        });
        runtime.block_on(admin.close()).unwrap();
        runtime.shutdown_background();
    }
}