statiq 0.1.0

Zero-overhead, compile-time MSSQL service for Rust — stored procedures, async CRUD, connection pooling, static dispatch
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
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
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
# SqlService

Zero-overhead, compile-time MSSQL service library for Rust.

- **Compile-time SQL** — all entity SQL constants generated by proc-macro (`&'static str`)
- **Static dispatch**`FromResultSet`, `SqlEntity`, `CacheLayer` all monomorphised at compile time, no vtables
- **Async-first**`tokio` + `CancellationToken` throughout
- **Stored procedure support**`SprocService` with typed tuple returns up to 4 result sets, or unlimited via `MultiReader`
- **Connection pooling** — lock-free idle queue, `sp_reset_connection`, validation, metrics
- **Transaction + deadlock retry** — RAII auto-rollback, exponential backoff
- **Redis cache** — opt-in per entity, invalidation on write
- **Framework integrations**`axum` feature (IntoResponse), `tauri` feature (IPC Serialize)

---

## Table of Contents

1. [Configuration]#configuration
2. [Entity Definition]#entity-definition
3. [Sproc Execution (SprocService)]#sproc-execution-sprocservice
4. [Axum — From Zero to Advanced]#axum--from-zero-to-advanced
5. [Actix-Web — From Zero to Advanced]#actix-web--from-zero-to-advanced
6. [Tauri — From Zero to Advanced]#tauri--from-zero-to-advanced
7. [Entity CRUD (SqlService)]#entity-crud-sqlservice
8. [Transactions]#transactions
9. [Caching]#caching
10. [Entity Macro Reference]#entity-macro-reference
11. [Testing with MockRepository]#testing-with-mockrepository

---

## Configuration

**`config.json`** (root of your project):

```json
{
  "mssql": {
    "connection_string": "Driver={ODBC Driver 18 for SQL Server};Server=localhost,1433;Database=MyDb;UID=sa;PWD=yourStrong(!)Password;Encrypt=yes;TrustServerCertificate=yes",
    "pool": {
      "min_size": 2,
      "max_size": 20,
      "checkout_timeout_ms": 5000,
      "idle_timeout_ms": 300000,
      "max_lifetime_ms": 1800000,
      "validation_interval_ms": 60000
    },
    "query": {
      "slow_query_threshold_ms": 500,
      "max_text_bytes": 65536
    }
  },
  "redis": {
    "url": "redis://127.0.0.1:6379",
    "default_ttl_seconds": 300,
    "count_ttl_seconds": 60
  },
  "logging": {
    "level": "info",
    "json": false
  }
}
```

---

## Entity Definition

```rust
use sqlservice::SqlEntity;
use sqlservice_macros::SqlEntity;

#[derive(SqlEntity, serde::Serialize, serde::Deserialize, Clone)]
#[sql_table("Dealers", schema = "dbo")]
pub struct Dealer {
    #[sql_primary_key(identity)]
    pub id: i32,

    pub name: String,
    pub code: String,

    #[sql_column("TaxId")]          // override SQL column name
    pub tax_id: Option<String>,

    pub active: bool,

    #[sql_default]                  // server default — excluded from INSERT, included in UPDATE
    pub created_at: chrono::DateTime<chrono::Utc>,

    #[sql_computed]                 // DB computed — SELECT only, never written
    pub full_name: Option<String>,

    #[sql_ignore]                   // excluded from all SQL
    pub _cache_key: String,
}
```

**Macro Attributes:**

| Attribute | Location | Meaning |
|---|---|---|
| `#[sql_table("Name", schema = "dbo")]` | struct | Table name + schema |
| `#[sql_primary_key]` | field | PK, not identity |
| `#[sql_primary_key(identity)]` | field | PK, IDENTITY column |
| `#[sql_column("ColName")]` | field | Override SQL column name |
| `#[sql_ignore]` | field | Excluded from all SQL |
| `#[sql_computed]` | field | SELECT only (DB computed column) |
| `#[sql_default]` | field | Excluded from INSERT, included in UPDATE |

---

## Sproc Execution (SprocService)

`SprocService` is the Rust equivalent of `ISprocService` — zero reflection, compile-time dispatch.

### Core Pattern: `FromResultSet`

The `FromResultSet` trait maps one ODBC result set to a Rust type at compile time:

| Rust Type | Meaning | Example |
|---|---|---|
| `Vec<T: SqlEntity>` | All rows | `Vec<VwDealers>` |
| `Single<T>` | First row, `Option<T>` | `Single<VwDealers>` |
| `Required<T>` | First row, error if empty | `Required<VwDealers>` |
| `Scalar<S>` | First column of first row | `Scalar<i64>` |

### SprocParams Builder

```rust
use sqlservice::{SprocParams, SprocService};

let params = SprocParams::new()
    .add("@Name",           "Acme Corp")        // &str, String, i32, bool, Uuid, ...
    .add("@Active",         true)
    .add("@Amount",         rust_decimal::Decimal::new(9999, 2))
    .add_nullable("@TaxId", tax_id.as_deref())  // Option<T> → NULL if None
    .add_nullable("@Notes", None::<&str>);       // explicit NULL
```

Parameter names may include or omit the leading `@` — both `.add("@Name", ...)` and `.add("Name", ...)` work.

### Query Methods

```rust
// ── Single result set ────────────────────────────────────────────────────────

// List (QueryListAsync equivalent)
let dealers: Vec<VwDealers> =
    sproc.query("Dealer.sp_DealerList", params, &ct).await?;

// Single nullable (QuerySingleAsync equivalent)
let Single(dealer) =
    sproc.query::<Single<VwDealers>>("Dealer.sp_GetById", params, &ct).await?;

// Required — errors if result set is empty (QuerySingleRequiredAsync equivalent)
let Required(dealer) =
    sproc.query::<Required<VwDealers>>("Dealer.sp_GetById", params, &ct).await?;

// Scalar (QueryScalarAsync equivalent)
let Scalar(count) =
    sproc.query::<Scalar<i64>>("dbo.sp_Count", SprocParams::new(), &ct).await?;

// ── Two result sets ──────────────────────────────────────────────────────────

// Scalar + list (paging pattern — QueryScalarAndListAsync equivalent)
let (Scalar(total), dealers) =
    sproc.query2::<Scalar<i64>, Vec<VwDealers>>(
        "Dealer.sp_DealerList", params, &ct,
    ).await?;

// Two lists
let (Single(dealer), Vec<VwPoolAllocations>) =
    sproc.query2::<Single<VwDealers>, Vec<VwPoolAllocations>>(
        "Dealer.sp_GetWithAllocations", params, &ct,
    ).await?;

// ── Three result sets ────────────────────────────────────────────────────────

let (Single(dealer), allocs, sub_dealers) =
    sproc.query3::<Single<VwDealers>, Vec<VwPoolAllocations>, Vec<VwDealers>>(
        "Dealer.sp_DealerGetById", params, &ct,
    ).await?;

// ── Four result sets ─────────────────────────────────────────────────────────

let (Scalar(total), dealers, allocs, users) =
    sproc.query4::<Scalar<i64>, Vec<VwDealers>, Vec<VwAllocs>, Vec<VwUsers>>(
        "Dealer.sp_Dashboard", params, &ct,
    ).await?;

// ── Manual reader (5+ result sets) ───────────────────────────────────────────

let mut reader = sproc.query_multiple("Dealer.sp_FullReport", params, &ct).await?;
let result_row  = reader.read_single::<SprocResultRow>()?;   // row 1: success/error
let dealer      = reader.read_single::<VwDealers>()?;         // row 2
let allocs      = reader.read_list::<VwPoolAllocations>()?;   // row 3
let licenses    = reader.read_list::<VwUnassignedLicenses>()?;// row 4
let sub_dealers = reader.read_list::<VwDealers>()?;           // row 5
let count       = reader.read_scalar::<i64>()?;               // row 6 (scalar)

// ── Non-query ────────────────────────────────────────────────────────────────

let affected = sproc.execute("Dealer.sp_DealerDelete", params, &ct).await?;
```

### SprocResult Pattern

```rust
// Define a struct for the common status row returned by your sprocs
#[derive(SqlEntity, serde::Serialize, serde::Deserialize, Clone)]
#[sql_table("SprocResultRow", schema = "dbo")]
pub struct SprocResultRow {
    #[sql_primary_key]
    pub success: i32,
    pub error_code: Option<String>,
    pub error_message: Option<String>,
}

// Use SprocResult<T> as the return envelope
use sqlservice::SprocResult;

pub async fn create_dealer(
    sproc: &SprocService,
    req: DealerCreate,
    ct: CancellationToken,
) -> Result<SprocResult<VwDealers>, SqlError> {
    let mut reader = sproc.query_multiple(
        "Dealer.sp_DealerCreate",
        SprocParams::new()
            .add("@Name",           req.name.as_str())
            .add("@Code",           req.code.as_str())
            .add_nullable("@TaxId", req.tax_id.as_deref())
            .add("@CreatedBy",      req.created_by),
        &ct,
    ).await?;

    let status = reader.read_single::<SprocResultRow>()?;
    match status {
        Some(r) if r.success == 1 => {
            let dealer = reader.read_single::<VwDealers>()?;
            Ok(SprocResult::ok(dealer))
        }
        r => Ok(SprocResult::fail(
            r.as_ref().and_then(|x| x.error_code.clone()),
            r.as_ref().and_then(|x| x.error_message.clone()),
        )),
    }
}
```

---

## Axum — From Zero to Advanced

### 1. Project Setup

```toml
# Cargo.toml
[package]
name = "my-axum-api"
version = "0.1.0"
edition = "2021"

[dependencies]
sqlservice  = { path = "../sqlservice", features = ["axum"] }
axum        = "0.7"
tokio       = { version = "1", features = ["full"] }
tokio-util  = { version = "0.7", features = ["full"] }
serde       = { version = "1", features = ["derive"] }
serde_json  = "1"
tower-http  = { version = "0.5", features = ["trace"] }
tracing     = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
```

### 2. App State

```rust
// src/state.rs
use std::sync::Arc;
use sqlservice::SprocService;

#[derive(Clone)]
pub struct AppState {
    pub sproc: Arc<SprocService>,
}
```

### 3. main.rs

```rust
// src/main.rs
use std::sync::Arc;
use axum::{Router, routing::get, routing::post};
use sqlservice::SqlServiceFactory;
use tokio_util::sync::CancellationToken;
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};

mod state;
mod handlers;
mod error;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    tracing_subscriber::registry()
        .with(tracing_subscriber::EnvFilter::new("info"))
        .with(tracing_subscriber::fmt::layer())
        .init();

    let shutdown = CancellationToken::new();

    let sproc = SqlServiceFactory::new()
        .config_path("config.json")
        .shutdown(shutdown.clone())
        .build_sproc()
        .await?;

    let state = state::AppState {
        sproc: Arc::new(sproc),
    };

    let app = Router::new()
        .route("/dealers",         get(handlers::dealer::list))
        .route("/dealers",         post(handlers::dealer::create))
        .route("/dealers/:id",     get(handlers::dealer::get_by_id))
        .route("/dealers/:id",     axum::routing::put(handlers::dealer::update))
        .route("/dealers/:id",     axum::routing::delete(handlers::dealer::delete))
        .route("/metrics/pool",    get(handlers::metrics::pool_metrics))
        .with_state(state);

    let listener = tokio::net::TcpListener::bind("0.0.0.0:8080").await?;
    tracing::info!("Listening on :8080");

    axum::serve(listener, app)
        .with_graceful_shutdown(async move { shutdown.cancelled().await })
        .await?;

    Ok(())
}
```

### 4. Error Handling

```rust
// src/error.rs
use axum::{response::{IntoResponse, Response}, http::StatusCode, Json};
use serde_json::json;
use sqlservice::SqlError;

pub struct ApiError(pub SqlError);

impl IntoResponse for ApiError {
    fn into_response(self) -> Response {
        let status = match &self.0 {
            SqlError::NotFound { .. }        => StatusCode::NOT_FOUND,
            SqlError::Cancelled              => StatusCode::SERVICE_UNAVAILABLE,
            SqlError::PoolExhausted { .. }   => StatusCode::SERVICE_UNAVAILABLE,
            SqlError::QueryTimeout { .. }    => StatusCode::GATEWAY_TIMEOUT,
            _                               => StatusCode::INTERNAL_SERVER_ERROR,
        };
        let body = Json(json!({
            "error": self.0.error_code(),
            "message": self.0.safe_message(),
        }));
        (status, body).into_response()
    }
}

impl From<SqlError> for ApiError {
    fn from(e: SqlError) -> Self { ApiError(e) }
}

pub type ApiResult<T> = Result<T, ApiError>;
```

### 5. Handlers — Basic

```rust
// src/handlers/dealer.rs
use axum::{extract::{State, Path}, Json};
use serde::{Deserialize, Serialize};
use tokio_util::sync::CancellationToken;
use sqlservice::{SprocParams, Single, Scalar};

use crate::{state::AppState, error::ApiResult};
use crate::models::{VwDealers, SprocResultRow};

#[derive(Deserialize)]
pub struct ListQuery {
    page: Option<i32>,
    page_size: Option<i32>,
    search: Option<String>,
}

#[derive(Serialize)]
pub struct PagedResponse<T> {
    pub items: Vec<T>,
    pub total_count: Option<i64>,
}

pub async fn list(
    State(state): State<AppState>,
    axum::extract::Query(q): axum::extract::Query<ListQuery>,
) -> ApiResult<Json<PagedResponse<VwDealers>>> {
    let ct = CancellationToken::new();

    let (Scalar(total), dealers) = state.sproc
        .query2::<Scalar<i64>, Vec<VwDealers>>(
            "Dealer.sp_DealerList",
            SprocParams::new()
                .add("@PageNumber", q.page.unwrap_or(1))
                .add("@PageSize",   q.page_size.unwrap_or(20))
                .add_nullable("@Search", q.search.as_deref()),
            &ct,
        )
        .await?;

    Ok(Json(PagedResponse { items: dealers, total_count: total }))
}

pub async fn get_by_id(
    State(state): State<AppState>,
    Path(id): Path<i32>,
) -> ApiResult<Json<VwDealers>> {
    let ct = CancellationToken::new();

    let Single(dealer) = state.sproc
        .query::<Single<VwDealers>>(
            "Dealer.sp_DealerGetById",
            SprocParams::new().add("@Id", id),
            &ct,
        )
        .await?;

    match dealer {
        Some(d) => Ok(Json(d)),
        None => Err(sqlservice::SqlError::NotFound {
            table: "Dealer",
            pk: id.to_string(),
        }.into()),
    }
}

#[derive(Deserialize)]
pub struct CreateDealerRequest {
    pub name: String,
    pub code: String,
    pub tax_id: Option<String>,
    pub created_by: i32,
}

pub async fn create(
    State(state): State<AppState>,
    Json(req): Json<CreateDealerRequest>,
) -> ApiResult<Json<VwDealers>> {
    let ct = CancellationToken::new();

    let mut reader = state.sproc
        .query_multiple(
            "Dealer.sp_DealerCreate",
            SprocParams::new()
                .add("@Name",           req.name.as_str())
                .add("@Code",           req.code.as_str())
                .add_nullable("@TaxId", req.tax_id.as_deref())
                .add("@CreatedBy",      req.created_by),
            &ct,
        )
        .await?;

    let status = reader.read_single::<SprocResultRow>()?;
    if status.as_ref().map_or(true, |r| r.success != 1) {
        let msg = status
            .and_then(|r| r.error_message)
            .unwrap_or_else(|| "Create failed".to_string());
        return Err(sqlservice::SqlError::config(msg).into());
    }

    let dealer = reader
        .read_required::<VwDealers>()
        .map_err(ApiError::from)?;

    Ok(Json(dealer))
}

pub async fn update(
    State(state): State<AppState>,
    Path(id): Path<i32>,
    Json(req): Json<UpdateDealerRequest>,
) -> ApiResult<Json<VwDealers>> {
    let ct = CancellationToken::new();
    // ... similar to create
    todo!()
}

pub async fn delete(
    State(state): State<AppState>,
    Path(id): Path<i32>,
) -> ApiResult<axum::http::StatusCode> {
    let ct = CancellationToken::new();

    state.sproc
        .execute(
            "Dealer.sp_DealerDelete",
            SprocParams::new()
                .add("@Id",        id)
                .add("@DeletedBy", 1i32),
            &ct,
        )
        .await?;

    Ok(axum::http::StatusCode::NO_CONTENT)
}
```

### 6. Pool Metrics Endpoint

```rust
// src/handlers/metrics.rs
use axum::{extract::State, Json};
use serde::Serialize;
use crate::state::AppState;

#[derive(Serialize)]
pub struct PoolMetrics {
    pub idle: u64,
    pub active: u64,
    pub total_checkouts: u64,
    pub total_timeouts: u64,
    pub total_deadlocks: u64,
}

pub async fn pool_metrics(State(state): State<AppState>) -> Json<PoolMetrics> {
    let m = state.sproc.pool_metrics();
    Json(PoolMetrics {
        idle: m.idle,
        active: m.active,
        total_checkouts: m.total_checkouts,
        total_timeouts: m.total_timeouts,
        total_deadlocks: m.total_deadlocks,
    })
}
```

### 7. Advanced — Entity CRUD + Cache via SqlService

```rust
// For table-entity CRUD with Redis cache, use SqlService instead
use sqlservice::{SqlServiceFactory, SqlRepository};

let dealer_svc = SqlServiceFactory::new()
    .config_path("config.json")
    .shutdown(shutdown.clone())
    .build_with_cache::<VwDealers>()   // SqlService<VwDealers, RedisCache>
    .await?;

// Cached by primary key
let dealer = dealer_svc.get_by_id(42, &ct).await?;

// Paged
let page = dealer_svc.get_paged(1, 20, &ct).await?;

// Filtered
let active = dealer_svc
    .get_where("active = 1", &[], &ct)
    .await?;

// Write (auto-invalidates cache)
let id = dealer_svc.insert(&new_dealer, &ct).await?;
dealer_svc.update(&dealer, &ct).await?;
dealer_svc.delete(42, &ct).await?;
```

### 8. Advanced — Cancellation & Timeouts

```rust
use tokio_util::sync::CancellationToken;
use tokio::time::Duration;

pub async fn list_with_timeout(
    State(state): State<AppState>,
) -> ApiResult<Json<Vec<VwDealers>>> {
    // Request-scoped token with timeout
    let ct = CancellationToken::new();
    let _guard = ct.clone().drop_guard();

    tokio::spawn({
        let ct = ct.clone();
        async move {
            tokio::time::sleep(Duration::from_secs(10)).await;
            ct.cancel();
        }
    });

    let dealers: Vec<VwDealers> = state.sproc
        .query("Dealer.sp_DealerList", SprocParams::new(), &ct)
        .await?;

    Ok(Json(dealers))
}
```

---

## Actix-Web — From Zero to Advanced

### 1. Project Setup

```toml
# Cargo.toml
[dependencies]
sqlservice  = { path = "../sqlservice" }
actix-web   = "4"
tokio       = { version = "1", features = ["full"] }
tokio-util  = { version = "0.7", features = ["full"] }
serde       = { version = "1", features = ["derive"] }
serde_json  = "1"
```

### 2. App State + main.rs

```rust
// src/main.rs
use actix_web::{web, App, HttpServer, middleware};
use sqlservice::SqlServiceFactory;
use std::sync::Arc;
use tokio_util::sync::CancellationToken;

mod handlers;
mod error;

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    let shutdown = CancellationToken::new();

    let sproc = SqlServiceFactory::new()
        .config_path("config.json")
        .with_logging(true)      // opt-in: init tracing subscriber
        .shutdown(shutdown.clone())
        .build_sproc()
        .await
        .expect("Failed to build SprocService");

    let sproc = Arc::new(sproc);

    HttpServer::new(move || {
        App::new()
            .app_data(web::Data::new(sproc.clone()))
            .service(
                web::scope("/api")
                    .route("/dealers",      web::get().to(handlers::dealer::list))
                    .route("/dealers",      web::post().to(handlers::dealer::create))
                    .route("/dealers/{id}", web::get().to(handlers::dealer::get_by_id))
                    .route("/dealers/{id}", web::delete().to(handlers::dealer::delete))
            )
    })
    .bind("0.0.0.0:8080")?
    .run()
    .await
}
```

### 3. Error Handling

```rust
// src/error.rs
use actix_web::{HttpResponse, ResponseError};
use serde_json::json;
use sqlservice::SqlError;

#[derive(Debug)]
pub struct ApiError(pub SqlError);

impl std::fmt::Display for ApiError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.0)
    }
}

impl ResponseError for ApiError {
    fn error_response(&self) -> HttpResponse {
        let status = match &self.0 {
            SqlError::NotFound { .. }      => actix_web::http::StatusCode::NOT_FOUND,
            SqlError::PoolExhausted { .. } => actix_web::http::StatusCode::SERVICE_UNAVAILABLE,
            SqlError::Cancelled            => actix_web::http::StatusCode::SERVICE_UNAVAILABLE,
            _                             => actix_web::http::StatusCode::INTERNAL_SERVER_ERROR,
        };
        HttpResponse::build(status).json(json!({
            "error":   self.0.error_code(),
            "message": self.0.safe_message(),
        }))
    }
}

impl From<SqlError> for ApiError {
    fn from(e: SqlError) -> Self { ApiError(e) }
}

pub type ApiResult<T> = Result<T, ApiError>;
```

### 4. Handlers

```rust
// src/handlers/dealer.rs
use actix_web::{web, HttpResponse};
use serde::{Deserialize, Serialize};
use tokio_util::sync::CancellationToken;
use sqlservice::{SprocService, SprocParams, Single, Scalar};
use std::sync::Arc;

use crate::error::ApiResult;
use crate::models::VwDealers;

#[derive(Deserialize)]
pub struct ListQuery {
    page:      Option<i32>,
    page_size: Option<i32>,
    search:    Option<String>,
}

#[derive(Serialize)]
pub struct PagedResponse<T> {
    items:       Vec<T>,
    total_count: Option<i64>,
}

pub async fn list(
    sproc: web::Data<Arc<SprocService>>,
    query: web::Query<ListQuery>,
) -> ApiResult<HttpResponse> {
    let ct = CancellationToken::new();

    let (Scalar(total), dealers) = sproc
        .query2::<Scalar<i64>, Vec<VwDealers>>(
            "Dealer.sp_DealerList",
            SprocParams::new()
                .add("@PageNumber", query.page.unwrap_or(1))
                .add("@PageSize",   query.page_size.unwrap_or(20))
                .add_nullable("@Search", query.search.as_deref()),
            &ct,
        )
        .await?;

    Ok(HttpResponse::Ok().json(PagedResponse {
        items: dealers,
        total_count: total,
    }))
}

pub async fn get_by_id(
    sproc: web::Data<Arc<SprocService>>,
    path: web::Path<i32>,
) -> ApiResult<HttpResponse> {
    let id = path.into_inner();
    let ct = CancellationToken::new();

    let Single(dealer) = sproc
        .query::<Single<VwDealers>>(
            "Dealer.sp_DealerGetById",
            SprocParams::new().add("@Id", id),
            &ct,
        )
        .await?;

    match dealer {
        Some(d) => Ok(HttpResponse::Ok().json(d)),
        None    => Ok(HttpResponse::NotFound().finish()),
    }
}

#[derive(Deserialize)]
pub struct CreateRequest {
    pub name:       String,
    pub code:       String,
    pub tax_id:     Option<String>,
    pub created_by: i32,
}

pub async fn create(
    sproc: web::Data<Arc<SprocService>>,
    body: web::Json<CreateRequest>,
) -> ApiResult<HttpResponse> {
    let ct = CancellationToken::new();

    let mut reader = sproc
        .query_multiple(
            "Dealer.sp_DealerCreate",
            SprocParams::new()
                .add("@Name",           body.name.as_str())
                .add("@Code",           body.code.as_str())
                .add_nullable("@TaxId", body.tax_id.as_deref())
                .add("@CreatedBy",      body.created_by),
            &ct,
        )
        .await?;

    let status = reader.read_single::<SprocResultRow>()?;
    if status.as_ref().map_or(true, |r| r.success != 1) {
        return Ok(HttpResponse::BadRequest().json(serde_json::json!({
            "error": status.and_then(|r| r.error_code),
        })));
    }

    let dealer = reader.read_required::<VwDealers>()?;
    Ok(HttpResponse::Created().json(dealer))
}

pub async fn delete(
    sproc: web::Data<Arc<SprocService>>,
    path: web::Path<i32>,
) -> ApiResult<HttpResponse> {
    let id = path.into_inner();
    let ct = CancellationToken::new();

    sproc.execute(
        "Dealer.sp_DealerDelete",
        SprocParams::new()
            .add("@Id", id)
            .add("@DeletedBy", 1i32),
        &ct,
    ).await?;

    Ok(HttpResponse::NoContent().finish())
}
```

### 5. Advanced — Background Validation + Graceful Shutdown

```rust
// In main.rs, pass a shared shutdown token to both the pool and the server
let shutdown = CancellationToken::new();

let sproc = SqlServiceFactory::new()
    .config_path("config.json")
    .shutdown(shutdown.clone())   // pool validator stops when token is cancelled
    .build_sproc()
    .await?;

// Catch Ctrl+C
let shutdown_for_signal = shutdown.clone();
tokio::spawn(async move {
    tokio::signal::ctrl_c().await.ok();
    shutdown_for_signal.cancel();
});

// ... start HttpServer ...
```

---

## Tauri — From Zero to Advanced

### 1. Project Setup

```toml
# src-tauri/Cargo.toml
[dependencies]
sqlservice = { path = "../../sqlservice", features = ["tauri"] }
tauri      = { version = "2", features = [] }
tokio      = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["full"] }
serde      = { version = "1", features = ["derive"] }
serde_json = "1"
```

### 2. State Setup in main.rs / lib.rs

```rust
// src-tauri/src/lib.rs
use sqlservice::SqlServiceFactory;
use std::sync::Arc;
use tokio_util::sync::CancellationToken;

pub struct DbState {
    pub sproc: Arc<sqlservice::SprocService>,
}

#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
    let rt = tokio::runtime::Runtime::new().expect("Tokio runtime failed");

    let shutdown = CancellationToken::new();

    let sproc = rt.block_on(async {
        SqlServiceFactory::new()
            .config_path("config.json")
            .with_logging(true)
            .shutdown(shutdown.clone())
            .build_sproc()
            .await
            .expect("Failed to connect to database")
    });

    tauri::Builder::default()
        .manage(DbState { sproc: Arc::new(sproc) })
        .invoke_handler(tauri::generate_handler![
            cmd_dealer_list,
            cmd_dealer_get_by_id,
            cmd_dealer_create,
            cmd_dealer_delete,
        ])
        .run(tauri::generate_context!())
        .expect("error while running tauri application");
}
```

### 3. IPC Commands

```rust
// src-tauri/src/commands/dealer.rs
use tauri::State;
use serde::{Deserialize, Serialize};
use tokio_util::sync::CancellationToken;
use sqlservice::{SprocParams, Single, Scalar, SqlError};

use crate::lib::DbState;
use crate::models::{VwDealers, SprocResultRow};

// ── Error type for Tauri IPC ──────────────────────────────────────────────────

#[derive(Serialize)]
pub struct IpcError {
    pub code:    String,
    pub message: String,
}

impl From<SqlError> for IpcError {
    fn from(e: SqlError) -> Self {
        IpcError {
            code:    e.error_code().to_string(),
            message: e.safe_message(),
        }
    }
}

// ── Commands ──────────────────────────────────────────────────────────────────

#[derive(Serialize)]
pub struct PagedResult<T: Serialize> {
    pub items:       Vec<T>,
    pub total_count: Option<i64>,
}

#[tauri::command]
pub async fn cmd_dealer_list(
    state: State<'_, DbState>,
    page:      Option<i32>,
    page_size: Option<i32>,
    search:    Option<String>,
) -> Result<PagedResult<VwDealers>, IpcError> {
    let ct = CancellationToken::new();

    let (Scalar(total), dealers) = state.sproc
        .query2::<Scalar<i64>, Vec<VwDealers>>(
            "Dealer.sp_DealerList",
            SprocParams::new()
                .add("@PageNumber", page.unwrap_or(1))
                .add("@PageSize",   page_size.unwrap_or(20))
                .add_nullable("@Search", search.as_deref()),
            &ct,
        )
        .await
        .map_err(IpcError::from)?;

    Ok(PagedResult { items: dealers, total_count: total })
}

#[tauri::command]
pub async fn cmd_dealer_get_by_id(
    state: State<'_, DbState>,
    id: i32,
) -> Result<Option<VwDealers>, IpcError> {
    let ct = CancellationToken::new();

    let Single(dealer) = state.sproc
        .query::<Single<VwDealers>>(
            "Dealer.sp_DealerGetById",
            SprocParams::new().add("@Id", id),
            &ct,
        )
        .await
        .map_err(IpcError::from)?;

    Ok(dealer)
}

#[derive(Deserialize)]
pub struct CreateDealerArgs {
    pub name:       String,
    pub code:       String,
    pub tax_id:     Option<String>,
    pub created_by: i32,
}

#[derive(Serialize)]
pub struct SprocResultIpc<T: Serialize> {
    pub success:       bool,
    pub error_code:    Option<String>,
    pub error_message: Option<String>,
    pub data:          Option<T>,
}

#[tauri::command]
pub async fn cmd_dealer_create(
    state: State<'_, DbState>,
    args: CreateDealerArgs,
) -> Result<SprocResultIpc<VwDealers>, IpcError> {
    let ct = CancellationToken::new();

    let mut reader = state.sproc
        .query_multiple(
            "Dealer.sp_DealerCreate",
            SprocParams::new()
                .add("@Name",           args.name.as_str())
                .add("@Code",           args.code.as_str())
                .add_nullable("@TaxId", args.tax_id.as_deref())
                .add("@CreatedBy",      args.created_by),
            &ct,
        )
        .await
        .map_err(IpcError::from)?;

    let status = reader.read_single::<SprocResultRow>().map_err(IpcError::from)?;

    if status.as_ref().map_or(true, |r| r.success != 1) {
        return Ok(SprocResultIpc {
            success:       false,
            error_code:    status.as_ref().and_then(|r| r.error_code.clone()),
            error_message: status.as_ref().and_then(|r| r.error_message.clone()),
            data:          None,
        });
    }

    let dealer = reader.read_single::<VwDealers>().map_err(IpcError::from)?;

    Ok(SprocResultIpc {
        success:       true,
        error_code:    None,
        error_message: None,
        data:          dealer,
    })
}

#[tauri::command]
pub async fn cmd_dealer_delete(
    state: State<'_, DbState>,
    id: i32,
    deleted_by: i32,
) -> Result<(), IpcError> {
    let ct = CancellationToken::new();

    state.sproc
        .execute(
            "Dealer.sp_DealerDelete",
            SprocParams::new()
                .add("@Id",        id)
                .add("@DeletedBy", deleted_by),
            &ct,
        )
        .await
        .map_err(IpcError::from)?;

    Ok(())
}
```

### 4. Advanced — Entity CRUD in Tauri

```rust
// For table CRUD, SqlService is available alongside SprocService
use sqlservice::{SqlServiceFactory, SqlRepository};

// In your AppState alongside sproc:
pub struct DbState {
    pub sproc:       Arc<sqlservice::SprocService>,
    pub dealer_svc:  Arc<sqlservice::SqlService<VwDealers>>,
}

// Build both in run()
let dealer_svc = SqlServiceFactory::new()
    .config_path("config.json")
    .shutdown(shutdown.clone())
    .build::<VwDealers>()
    .await?;

// In command:
#[tauri::command]
pub async fn cmd_get_dealer(
    state: State<'_, DbState>,
    id: i32,
) -> Result<Option<VwDealers>, IpcError> {
    let ct = CancellationToken::new();
    state.dealer_svc
        .get_by_id(id, &ct)
        .await
        .map_err(IpcError::from)
}
```

### 5. Advanced — Async Tauri Command with Timeout

```rust
#[tauri::command]
pub async fn cmd_complex_report(
    state: State<'_, DbState>,
    dealer_id: i32,
) -> Result<DealerReport, IpcError> {
    // 15-second timeout for heavy reports
    let ct = CancellationToken::new();
    let ct_clone = ct.clone();
    tokio::spawn(async move {
        tokio::time::sleep(std::time::Duration::from_secs(15)).await;
        ct_clone.cancel();
    });

    let (Single(dealer), allocs, sub_dealers) = state.sproc
        .query3::<Single<VwDealers>, Vec<VwPoolAllocations>, Vec<VwDealers>>(
            "Dealer.sp_DealerGetById",
            SprocParams::new().add("@Id", dealer_id),
            &ct,
        )
        .await
        .map_err(IpcError::from)?;

    let dealer = dealer.ok_or_else(|| IpcError {
        code:    "not_found".to_string(),
        message: format!("Dealer {dealer_id} not found"),
    })?;

    Ok(DealerReport { dealer, allocs, sub_dealers })
}
```

---

## Entity CRUD (SqlService)

`SqlService<T, C>` implements `SqlRepository<T>` — full compile-time CRUD.

```rust
use sqlservice::{SqlServiceFactory, SqlRepository, params};

let svc = SqlServiceFactory::new()
    .config_path("config.json")
    .build::<Dealer>()
    .await?;

let ct = CancellationToken::new();

// ── Read ─────────────────────────────────────────────────────────────────────
let dealer  = svc.get_by_id(1, &ct).await?;           // Option<Dealer>
let all     = svc.get_all(&ct).await?;                 // Vec<Dealer>
let count   = svc.count(&ct).await?;                   // i64
let exists  = svc.exists(1, &ct).await?;               // bool
let page    = svc.get_paged(1, 20, &ct).await?;        // Vec<Dealer>
let active  = svc.get_where("active = 1", &[], &ct).await?;

// With params!{} macro:
let filtered = svc
    .get_where("name LIKE @name", params!{ name: "%Acme%" }, &ct)
    .await?;

// ── Write ─────────────────────────────────────────────────────────────────────
let id = svc.insert(&new_dealer, &ct).await?;    // i64 (identity or pk)
svc.update(&dealer, &ct).await?;
svc.delete(id, &ct).await?;
svc.upsert(&dealer, &ct).await?;                 // MERGE

// ── Batch ────────────────────────────────────────────────────────────────────
let ids = svc.batch_insert(&dealers, &ct).await?;  // wraps in transaction
svc.batch_update(&dealers, &ct).await?;
svc.batch_delete(&[pk1, pk2, pk3], &ct).await?;

// ── Raw ──────────────────────────────────────────────────────────────────────
let rows    = svc.query_raw("SELECT TOP 5 * FROM dbo.Dealers", &[], &ct).await?;
let affected = svc.execute_raw("UPDATE dbo.Dealers SET active = 0 WHERE id = @id",
    params!{ id: 99i32 }, &ct).await?;
let total: i64 = svc.scalar("SELECT COUNT_BIG(*) FROM dbo.Dealers", &[], &ct).await?;
```

---

## Transactions

```rust
// Transaction with manual begin/commit
let mut tx = svc.begin_transaction(&ct).await?;

let id1 = tx.insert::<Dealer>(&dealer_a, &ct).await?;
let id2 = tx.insert::<Dealer>(&dealer_b, &ct).await?;
tx.update::<Dealer>(&dealer_c, &ct).await?;
tx.delete::<Dealer>(old_id, &ct).await?;
tx.execute_raw("EXEC dbo.sp_DoSomething", &ct).await?;

tx.commit().await?;
// If you forget commit(), drop() auto-rolls back.

// ── Deadlock retry ───────────────────────────────────────────────────────────
use sqlservice::transaction::with_retry;

with_retry(3, || async {
    let mut tx = svc.begin_transaction(&ct).await?;
    tx.update::<Dealer>(&dealer, &ct).await?;
    tx.commit().await
}).await?;
```

---

## Caching

```rust
// Build with Redis cache
let svc = SqlServiceFactory::new()
    .config_path("config.json")
    .build_with_cache::<Dealer>()   // SqlService<Dealer, RedisCache>
    .await?;

// get_by_id, get_all, count → cached automatically
// insert, update, delete, upsert → auto-invalidate cache
```

Cache keys follow the pattern `{CACHE_PREFIX}::GetById::{pk}` (generated by the macro from table + schema).

---

## Entity Macro Reference

```rust
#[derive(SqlEntity, Serialize, Deserialize, Clone)]
#[sql_table("TableName", schema = "dbo")]
pub struct MyEntity {
    // ── Primary key ─────────────────────────────────────────────────────────
    #[sql_primary_key(identity)]   // IDENTITY — excluded from INSERT, returned via OUTPUT INSERTED
    pub id: i64,

    // ── Or non-identity PK ───────────────────────────────────────────────────
    // #[sql_primary_key]
    // pub id: uuid::Uuid,

    // ── Regular column ───────────────────────────────────────────────────────
    pub name: String,

    // ── Override SQL column name ─────────────────────────────────────────────
    #[sql_column("TaxIdentifier")]
    pub tax_id: Option<String>,

    // ── Server default (GETDATE(), NEWID(), …) ───────────────────────────────
    // Excluded from INSERT (server fills it). Included in UPDATE.
    #[sql_default]
    pub created_at: chrono::DateTime<chrono::Utc>,

    // ── DB computed column ───────────────────────────────────────────────────
    // SELECT only — never in INSERT / UPDATE / MERGE / to_params
    #[sql_computed]
    pub display_name: Option<String>,

    // ── Ignored field ────────────────────────────────────────────────────────
    // Completely excluded from all SQL
    #[sql_ignore]
    pub runtime_flag: bool,
}
```

**Generated compile-time constants on the trait:**

| Constant | Value |
|---|---|
| `TABLE_NAME` | `"TableName"` |
| `SCHEMA` | `"dbo"` |
| `SELECT_SQL` | `SELECT [id],[name],[TaxIdentifier],… FROM [dbo].[TableName]` |
| `INSERT_SQL` | `INSERT INTO … OUTPUT INSERTED.id VALUES (…)` |
| `UPDATE_SQL` | `UPDATE … SET name=@name,… WHERE id=@id` |
| `DELETE_SQL` | `DELETE FROM … WHERE id=@id` |
| `UPSERT_SQL` | `MERGE … WHEN MATCHED UPDATE … WHEN NOT MATCHED INSERT …` |
| `COUNT_SQL` | `SELECT COUNT_BIG(*) FROM …` |
| `PK_IS_IDENTITY` | `true` / `false` |

---

## Testing with MockRepository

```rust
// Cargo.toml
[dev-dependencies]
sqlservice = { path = "../sqlservice", features = ["testing"] }

// In tests:
use sqlservice::testing::MockRepository;

let mock = MockRepository::<Dealer>::new()
    .with_data(vec![
        Dealer { id: 1, name: "Acme".to_string(), active: true, .. },
        Dealer { id: 2, name: "Beta".to_string(), active: false, .. },
    ]);

let ct = CancellationToken::new();

// All SqlRepository methods work in-memory
let dealer = mock.get_by_id(1, &ct).await?.unwrap();
assert_eq!(dealer.name, "Acme");

let count = mock.count(&ct).await?;
assert_eq!(count, 2);

mock.insert(&new_dealer, &ct).await?;
assert_eq!(mock.insert_call_count(), 1);

mock.update(&dealer, &ct).await?;
assert_eq!(mock.update_call_count(), 1);

mock.delete(1, &ct).await?;
assert_eq!(mock.delete_call_count(), 1);

// Inspect state
let all = mock.all_items();
assert_eq!(all.len(), 1);  // id=2 remains

// Reseed
mock.clear();
mock.seed(Dealer { id: 99, .. });
assert_eq!(mock.len(), 1);
```

---

## Supported SQL Server Types

| SQL Server Type | Rust Type | `ParamValue` Variant |
|---|---|---|
| `bit` | `bool` | `Bool` |
| `tinyint` | `u8` | `U8` |
| `smallint` | `i16` | `I16` |
| `int` | `i32` | `I32` |
| `bigint` | `i64` | `I64` |
| `real` | `f32` | `F32` |
| `float` | `f64` | `F64` |
| `decimal`, `numeric`, `money` | `rust_decimal::Decimal` | `Decimal` |
| `char`, `varchar`, `nvarchar`, `text` | `String` | `Str` |
| `binary`, `varbinary`, `image` | `Vec<u8>` | `Bytes` |
| `date` | `chrono::NaiveDate` | `NaiveDate` |
| `time` | `chrono::NaiveTime` | `NaiveTime` |
| `datetime`, `datetime2`, `smalldatetime` | `chrono::DateTime<Utc>` | `DateTime` |
| `datetimeoffset` | `chrono::DateTime<FixedOffset>` | `DateTimeOffset` |
| `uniqueidentifier` | `uuid::Uuid` | `Guid` |
| `NULL` | `Option<T>` | `Null` |