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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
//! # sqlx_pool_router
//!
//! A lightweight library for routing database operations to different SQLx PostgreSQL connection pools
//! based on whether they're read or write operations.
//!
//! This enables load distribution by routing read-heavy operations to read replicas while ensuring
//! write operations always go to the primary database.
//!
//! ## Features
//!
//! - **Zero-cost abstraction**: Trait-based design with no runtime overhead
//! - **Type-safe routing**: Compile-time guarantees for read/write pool separation
//! - **Backward compatible**: `PgPool` implements `PoolProvider` for seamless integration
//! - **Flexible**: Use single pool or separate primary/replica pools
//! - **Test helpers**: [`TestDbPools`] for testing with `#[sqlx::test]`
//! - **Well-tested**: Comprehensive test suite with replica routing verification
//!
//! ## Quick Start
//!
//! ### Single Pool (Development)
//!
//! ```rust,no_run
//! use sqlx::PgPool;
//! use sqlx_pool_router::PoolProvider;
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! let pool = PgPool::connect("postgresql://localhost/mydb").await?;
//!
//! // PgPool implements PoolProvider automatically
//! let result: (i32,) = sqlx::query_as("SELECT 1")
//! .fetch_one(pool.read())
//! .await?;
//! # Ok(())
//! # }
//! ```
//!
//! ### Read/Write Separation (Production)
//!
//! ```rust,no_run
//! use sqlx::postgres::PgPoolOptions;
//! use sqlx_pool_router::{DbPools, PoolProvider};
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! let primary = PgPoolOptions::new()
//! .max_connections(5)
//! .connect("postgresql://primary-host/mydb")
//! .await?;
//!
//! let replica = PgPoolOptions::new()
//! .max_connections(10)
//! .connect("postgresql://replica-host/mydb")
//! .await?;
//!
//! let pools = DbPools::with_replica(primary, replica);
//!
//! // Reads go to replica
//! let users: Vec<(i32, String)> = sqlx::query_as("SELECT id, name FROM users")
//! .fetch_all(pools.read())
//! .await?;
//!
//! // Writes go to primary
//! sqlx::query("INSERT INTO users (name) VALUES ($1)")
//! .bind("Alice")
//! .execute(pools.write())
//! .await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## Architecture
//!
//! ```text
//! ┌─────────────┐
//! │ DbPools │
//! └──────┬──────┘
//! │
//! ┌────┴────┐
//! ↓ ↓
//! ┌─────┐ ┌─────────┐
//! │Primary│ │ Replica │ (optional)
//! └─────┘ └─────────┘
//! ```
//!
//! ## Generic Programming
//!
//! Make your types generic over `PoolProvider` to support both single and multi-pool configurations:
//!
//! ```rust
//! use sqlx_pool_router::PoolProvider;
//!
//! struct Repository<P: PoolProvider> {
//! pools: P,
//! }
//!
//! impl<P: PoolProvider> Repository<P> {
//! async fn get_user(&self, id: i64) -> Result<String, sqlx::Error> {
//! // Read from replica
//! sqlx::query_scalar("SELECT name FROM users WHERE id = $1")
//! .bind(id)
//! .fetch_one(self.pools.read())
//! .await
//! }
//!
//! async fn create_user(&self, name: &str) -> Result<i64, sqlx::Error> {
//! // Write to primary
//! sqlx::query_scalar("INSERT INTO users (name) VALUES ($1) RETURNING id")
//! .bind(name)
//! .fetch_one(self.pools.write())
//! .await
//! }
//! }
//! ```
//!
//! ## Testing
//!
//! Use [`TestDbPools`] with `#[sqlx::test]` to enforce read/write separation in tests:
//!
//! ```rust,no_run
//! use sqlx::PgPool;
//! use sqlx_pool_router::{TestDbPools, PoolProvider};
//!
//! #[sqlx::test]
//! async fn test_repository(pool: PgPool) {
//! let pools = TestDbPools::new(pool).await.unwrap();
//!
//! // Write operations through .read() will FAIL
//! let result = sqlx::query("INSERT INTO users VALUES (1)")
//! .execute(pools.read())
//! .await;
//! assert!(result.is_err());
//! }
//! ```
//!
//! This catches routing bugs immediately without needing a real replica database.
use PgPool;
use Deref;
/// Trait for providing database pools with read/write routing.
///
/// Implementations can provide separate read and write pools for load distribution,
/// or use a single pool for both operations.
///
/// # Thread Safety
///
/// Implementations must be `Clone`, `Send`, and `Sync` to work with async Rust
/// and be shared across tasks.
///
/// # When to Use Each Method
///
/// ## `.read()` - For Read Operations
///
/// Use for queries that:
/// - Don't modify data (SELECT without FOR UPDATE)
/// - Can tolerate slight staleness (eventual consistency)
/// - Benefit from load distribution
///
/// Examples: user listings, analytics, dashboards, search
///
/// ## `.write()` - For Write Operations
///
/// Use for operations that:
/// - Modify data (INSERT, UPDATE, DELETE)
/// - Require transactions
/// - Need locking reads (SELECT FOR UPDATE)
/// - Require read-after-write consistency
///
/// Examples: creating records, updates, deletes, transactions
///
/// # Example Implementation
///
/// ```
/// use sqlx::PgPool;
/// use sqlx_pool_router::PoolProvider;
///
/// #[derive(Clone)]
/// struct MyPools {
/// primary: PgPool,
/// replica: Option<PgPool>,
/// }
///
/// impl PoolProvider for MyPools {
/// fn read(&self) -> &PgPool {
/// self.replica.as_ref().unwrap_or(&self.primary)
/// }
///
/// fn write(&self) -> &PgPool {
/// &self.primary
/// }
/// }
/// ```
/// Database pool abstraction supporting read replicas.
///
/// Wraps primary and optional replica pools, providing methods for
/// explicit read/write routing while maintaining backwards compatibility
/// through `Deref<Target = PgPool>`.
///
/// # Examples
///
/// ## Single Pool Configuration
///
/// ```rust,no_run
/// use sqlx::PgPool;
/// use sqlx_pool_router::DbPools;
///
/// # async fn example() -> Result<(), sqlx::Error> {
/// let pool = PgPool::connect("postgresql://localhost/db").await?;
/// let pools = DbPools::new(pool);
///
/// // Both read() and write() return the same pool
/// assert!(!pools.has_replica());
/// # Ok(())
/// # }
/// ```
///
/// ## Primary/Replica Configuration
///
/// ```rust,no_run
/// use sqlx::postgres::PgPoolOptions;
/// use sqlx_pool_router::DbPools;
///
/// # async fn example() -> Result<(), sqlx::Error> {
/// let primary = PgPoolOptions::new()
/// .max_connections(5)
/// .connect("postgresql://primary/db")
/// .await?;
///
/// let replica = PgPoolOptions::new()
/// .max_connections(10)
/// .connect("postgresql://replica/db")
/// .await?;
///
/// let pools = DbPools::with_replica(primary, replica);
/// assert!(pools.has_replica());
/// # Ok(())
/// # }
/// ```
/// Dereferences to the primary pool.
///
/// This allows natural usage like `&*pools` when you need a `&PgPool`.
/// For explicit routing, use `.read()` or `.write()` methods.
/// Implement PoolProvider for PgPool for backward compatibility.
///
/// This allows existing code using `PgPool` directly to work with generic
/// code that accepts `impl PoolProvider` without any changes.
///
/// # Example
///
/// ```rust,no_run
/// use sqlx::PgPool;
/// use sqlx_pool_router::PoolProvider;
///
/// async fn query_user<P: PoolProvider>(pools: &P, id: i64) -> Result<String, sqlx::Error> {
/// sqlx::query_scalar("SELECT name FROM users WHERE id = $1")
/// .bind(id)
/// .fetch_one(pools.read())
/// .await
/// }
///
/// # async fn example() -> Result<(), sqlx::Error> {
/// let pool = PgPool::connect("postgresql://localhost/db").await?;
///
/// // Works with PgPool directly
/// let name = query_user(&pool, 1).await?;
/// # Ok(())
/// # }
/// ```
/// Test pool provider with read-only replica enforcement.
///
/// This creates two separate connection pools from the same database:
/// - Primary pool for writes (normal permissions)
/// - Replica pool for reads (enforces `default_transaction_read_only = on`)
///
/// This ensures tests catch bugs where write operations are incorrectly
/// routed through `.read()`. PostgreSQL will reject writes with:
/// "cannot execute INSERT/UPDATE/DELETE in a read-only transaction"
///
/// # Usage with `#[sqlx::test]`
///
/// ```rust,no_run
/// use sqlx::PgPool;
/// use sqlx_pool_router::{TestDbPools, PoolProvider};
///
/// #[sqlx::test]
/// async fn test_read_write_routing(pool: PgPool) {
/// let pools = TestDbPools::new(pool).await.unwrap();
///
/// // Write operations work on .write()
/// sqlx::query("CREATE TEMP TABLE users (id INT)")
/// .execute(pools.write())
/// .await
/// .expect("Write pool should allow writes");
///
/// // Write operations FAIL on .read()
/// let result = sqlx::query("INSERT INTO users VALUES (1)")
/// .execute(pools.read())
/// .await;
/// assert!(result.is_err(), "Read pool should reject writes");
///
/// // Read operations work on .read()
/// let count: (i64,) = sqlx::query_as("SELECT COUNT(*) FROM users")
/// .fetch_one(pools.read())
/// .await
/// .expect("Read pool should allow reads");
/// }
/// ```
///
/// # Why This Matters
///
/// Without this test helper, you might accidentally route write operations through
/// `.read()` and not catch the bug until production when you have an actual replica
/// with replication lag. This helper makes the bug obvious immediately in tests.
///
/// # Example
///
/// ```rust,no_run
/// use sqlx::PgPool;
/// use sqlx_pool_router::{TestDbPools, PoolProvider};
///
/// struct Repository<P: PoolProvider> {
/// pools: P,
/// }
///
/// impl<P: PoolProvider> Repository<P> {
/// async fn get_user(&self, id: i64) -> Result<String, sqlx::Error> {
/// sqlx::query_scalar("SELECT name FROM users WHERE id = $1")
/// .bind(id)
/// .fetch_one(self.pools.read())
/// .await
/// }
///
/// async fn create_user(&self, name: &str) -> Result<i64, sqlx::Error> {
/// sqlx::query_scalar("INSERT INTO users (name) VALUES ($1) RETURNING id")
/// .bind(name)
/// .fetch_one(self.pools.write())
/// .await
/// }
/// }
///
/// #[sqlx::test]
/// async fn test_repository_routing(pool: PgPool) {
/// let pools = TestDbPools::new(pool).await.unwrap();
/// let repo = Repository { pools };
///
/// // Test will fail if create_user incorrectly uses .read()
/// sqlx::query("CREATE TEMP TABLE users (id SERIAL PRIMARY KEY, name TEXT)")
/// .execute(repo.pools.write())
/// .await
/// .unwrap();
///
/// let user_id = repo.create_user("Alice").await.unwrap();
/// let name = repo.get_user(user_id).await.unwrap();
/// assert_eq!(name, "Alice");
/// }
/// ```