stateset-embedded 0.7.13

Embeddable commerce library - the SQLite of commerce operations
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
//! Performance-optimized database backend with static dispatch
//!
//! Replaces Box<dyn> trait objects with zero-cost static dispatch while
//! maintaining backward compatibility.

use stateset_core::{
    AccountsPayableRepository, AccountsReceivableRepository, AnalyticsRepository,
    BackorderRepository, BomRepository, CartRepository, CostAccountingRepository, CreditRepository,
    CurrencyRepository, CustomerRepository, FulfillmentRepository, GeneralLedgerRepository,
    InventoryRepository, InvoiceRepository, LotRepository, OrderRepository, PaymentRepository,
    ProductRepository, PromotionRepository, PurchaseOrderRepository, QualityRepository,
    ReceivingRepository, Result, ReturnRepository, SerialRepository, ShipmentRepository,
    SubscriptionRepository, TaxRepository, WarehouseRepository, WarrantyRepository,
    WorkOrderRepository,
};

/// Zero-cost database backend using static dispatch instead of dynamic trait objects
///
/// # Performance Benefits
/// - Zero alloc: No heap allocations on repository access
/// - Monomorphic: Compiler optimizes each backend separately
/// - Cache-friendly: Better CPU cache locality
/// - Inlinable: Methods can be inlined by compiler
///
/// # Migration Path
/// For existing code using `dyn Database`, use `DatabaseBackend::from_dyn()` adapter.
pub struct DatabaseBackend<DB> {
    inner: DB,
}

impl<DB> DatabaseBackend<DB> {
    /// Create a new database backend
    pub fn new(db: DB) -> Self {
        Self { inner: db }
    }

    /// Get the inner database for advanced operations
    pub fn inner(&self) -> &DB {
        &self.inner
    }

    /// Get mutable reference to inner database
    pub fn inner_mut(&mut self) -> &mut DB {
        &mut self.inner
    }
}

impl<DB> Clone for DatabaseBackend<DB>
where
    DB: Clone,
{
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
        }
    }
}

// ============================================================================
// Backend Implementations
// ============================================================================

/// Type alias for SQLite backend with static dispatch
pub type SqliteBackend = DatabaseBackend<stateset_db::SqliteDatabase>;

/// Type alias for PostgreSQL backend with static dispatch
pub type PostgresBackend = DatabaseBackend<stateset_db::PostgresDatabase>;

// ============================================================================
// Repository Accessors (Zero-Cost)
// ============================================================================

impl<DB> DatabaseBackend<DB>
where
    DB: OrderRepository,
{
    /// Get order repository (zero-cost, no heap allocation)
    pub fn orders(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: InventoryRepository,
{
    /// Get inventory repository (zero-cost, no heap allocation)
    pub fn inventory(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: CustomerRepository,
{
    /// Get customer repository (zero-cost, no heap allocation)
    pub fn customers(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: ProductRepository,
{
    /// Get product repository (zero-cost, no heap allocation)
    pub fn products(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: ReturnRepository,
{
    /// Get return repository (zero-cost, no heap allocation)
    pub fn returns(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: BomRepository,
{
    /// Get BOM repository (zero-cost, no heap allocation)
    pub fn bom(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: WorkOrderRepository,
{
    /// Get work order repository (zero-cost, no heap allocation)
    pub fn work_orders(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: ShipmentRepository,
{
    /// Get shipment repository (zero-cost, no heap allocation)
    pub fn shipments(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: PaymentRepository,
{
    /// Get payment repository (zero-cost, no heap allocation)
    pub fn payments(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: WarrantyRepository,
{
    /// Get warranty repository (zero-cost, no heap allocation)
    pub fn warranties(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: PurchaseOrderRepository,
{
    /// Get purchase order repository (zero-cost, no heap allocation)
    pub fn purchase_orders(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: InvoiceRepository,
{
    /// Get invoice repository (zero-cost, no heap allocation)
    pub fn invoices(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: CartRepository,
{
    /// Get cart repository (zero-cost, no heap allocation)
    pub fn carts(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: AnalyticsRepository,
{
    /// Get analytics repository (zero-cost, no heap allocation)
    pub fn analytics(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: CurrencyRepository,
{
    /// Get currency repository (zero-cost, no heap allocation)
    pub fn currency(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: TaxRepository,
{
    /// Get tax repository (zero-cost, no heap allocation)
    pub fn tax(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: PromotionRepository,
{
    /// Get promotions repository (zero-cost, no heap allocation)
    pub fn promotions(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: SubscriptionRepository,
{
    /// Get subscriptions repository (zero-cost, no heap allocation)
    pub fn subscriptions(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: QualityRepository,
{
    /// Get quality repository (zero-cost, no heap allocation)
    pub fn quality(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: LotRepository,
{
    /// Get lots repository (zero-cost, no heap allocation)
    pub fn lots(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: SerialRepository,
{
    /// Get serials repository (zero-cost, no heap allocation)
    pub fn serials(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: WarehouseRepository,
{
    /// Get warehouse repository (zero-cost, no heap allocation)
    pub fn warehouses(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: ReceivingRepository,
{
    /// Get receiving repository (zero-cost, no heap allocation)
    pub fn receiving(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: FulfillmentRepository,
{
    /// Get fulfillment repository (zero-cost, no heap allocation)
    pub fn fulfillment(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: AccountsPayableRepository,
{
    /// Get accounts payable repository (zero-cost, no heap allocation)
    pub fn accounts_payable(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: CostAccountingRepository,
{
    /// Get cost accounting repository (zero-cost, no heap allocation)
    pub fn cost_accounting(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: CreditRepository,
{
    /// Get credit repository (zero-cost, no heap allocation)
    pub fn credits(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: BackorderRepository,
{
    /// Get backorder repository (zero-cost, no heap allocation)
    pub fn backorders(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: AccountsReceivableRepository,
{
    /// Get accounts receivable repository (zero-cost, no heap allocation)
    pub fn accounts_receivable(&self) -> &DB {
        &self.inner
    }
}

impl<DB> DatabaseBackend<DB>
where
    DB: GeneralLedgerRepository,
{
    /// Get general ledger repository (zero-cost, no heap allocation)
    pub fn general_ledger(&self) -> &DB {
        &self.inner
    }
}

// ============================================================================
// Backward Compatibility Adapter
// ============================================================================

impl From<stateset_db::SqliteDatabase> for SqliteBackend {
    fn from(db: stateset_db::SqliteDatabase) -> Self {
        Self::new(db)
    }
}

#[cfg(feature = "postgres")]
impl From<stateset_db::PostgresDatabase> for PostgresBackend {
    fn from(db: stateset_db::PostgresDatabase) -> Self {
        Self::new(db)
    }
}

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

    #[test]
    fn test_sqlite_backend_zero_cost() {
        let db = stateset_db::SqliteDatabase::new(&DatabaseConfig::in_memory())
            .expect("Failed to create database");
        let backend = SqliteBackend::new(db);

        // These calls should be zero-cost - no heap allocation
        let _ = backend.orders();
        let _ = backend.customers();
        let _ = backend.inventory();
    }

    #[test]
    fn test_backend_clone() {
        let db = stateset_db::SqliteDatabase::new(&DatabaseConfig::in_memory())
            .expect("Failed to create database");
        let backend = SqliteBackend::new(db);

        // Clone should work if inner DB is cloneable
        let _backend2 = backend.clone();
    }

    #[test]
    fn test_fulfillment_accessor_name() {
        let db = stateset_db::SqliteDatabase::new(&DatabaseConfig::in_memory())
            .expect("Failed to create database");
        let backend = SqliteBackend::new(db);

        let _ = backend.fulfillment();
    }

    #[test]
    fn test_returns_and_receiving_accessors() {
        let db = stateset_db::SqliteDatabase::new(&DatabaseConfig::in_memory())
            .expect("Failed to create database");
        let backend = SqliteBackend::new(db);

        let _ = backend.returns();
        let _ = backend.receiving();
    }
}