wasm-dbms-api 0.9.0

Runtime-agnostic API types and traits for the wasm-dbms DBMS engine.
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
//! [`TableSchema`](super::TableSchema) snapshot types.
//!
//! These types are used to represent a snapshot of a table schema, which can be used to compare different versions of a table schema and detect changes, in
//! order to trigger necessary migrations.

use serde::{Deserialize, Serialize};

use crate::memory::{DecodeError, MemoryError};
use crate::prelude::{DataSize, Encode, PageOffset, Value};

/// Current binary version of the [`TableSchemaSnapshot`] format.
///
/// Bumped on any breaking change to the snapshot layout so that older snapshots can be detected and either migrated or rejected.
const SCHEMA_SNAPSHOT_VERSION: u8 = 0x01;

/// Frozen, comparable view of a [`TableSchema`](super::TableSchema) used for migration detection.
///
/// A snapshot captures the structural shape of a table at a point in time so that two versions can be diffed to derive the migration
/// steps required to bring the on-disk representation up to date with the current schema definition.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[cfg_attr(feature = "candid", derive(candid::CandidType))]
pub struct TableSchemaSnapshot {
    /// Version tag of the snapshot binary layout, see [`SCHEMA_SNAPSHOT_VERSION`].
    pub version: u8,
    /// Name of the table this snapshot was taken from.
    pub name: String,
    /// Name of the column declared as primary key.
    pub primary_key: String,
    /// Record alignment, in bytes, used for on-disk layout.
    pub alignment: u32,
    /// Snapshots of every column in declaration order.
    pub columns: Vec<ColumnSnapshot>,
    /// Snapshots of every secondary index defined on the table.
    pub indexes: Vec<IndexSnapshot>,
}

/// Snapshot of a single column definition.
///
/// Mirrors the subset of column metadata that is meaningful for migration detection; transient or derivable fields are omitted on purpose.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[cfg_attr(feature = "candid", derive(candid::CandidType))]
pub struct ColumnSnapshot {
    /// Column name.
    pub name: String,
    /// Stable encoding of the column data type.
    pub data_type: DataTypeSnapshot,
    /// Whether the column accepts `NULL`.
    pub nullable: bool,
    /// Whether the column is auto-incremented on insert.
    pub auto_increment: bool,
    /// Whether the column carries a `UNIQUE` constraint.
    pub unique: bool,
    /// Whether the column is part of the primary key.
    pub primary_key: bool,
    /// Foreign key reference, if the column is a foreign key.
    pub foreign_key: Option<ForeignKeySnapshot>,
    /// Default value applied when no value is supplied on insert.
    pub default: Option<Value>,
}

/// On-disk wire layout descriptor for a custom-typed column.
///
/// Tells the snapshot-driven record codec how many bytes a custom column
/// occupies in a stored record, without needing access to the user's
/// concrete `Encode` impl. Derived from `<T as Encode>::SIZE` at the time
/// the snapshot is built.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[cfg_attr(feature = "candid", derive(candid::CandidType))]
pub enum WireSize {
    /// Column occupies exactly N bytes per record (`Encode::SIZE = Fixed(N)`).
    Fixed(u32),
    /// Column body is preceded by a 2-byte little-endian length prefix
    /// (the convention used by `Text`, `Blob`, `Json`, and any custom
    /// dynamic-size type — `Encode::SIZE = Dynamic`).
    LengthPrefixed,
}

/// User-defined custom-type metadata carried inside
/// [`DataTypeSnapshot::Custom`]. Boxed in the parent enum so the discriminant
/// stays compact (the migration error variants embed two `DataTypeSnapshot`s
/// each, and an inline `String` + `WireSize` would bloat
/// [`crate::error::DbmsError`] past clippy's `result_large_err` threshold).
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[cfg_attr(feature = "candid", derive(candid::CandidType))]
pub struct CustomDataTypeSnapshot {
    /// Stable type identifier (`CustomDataType::TYPE_TAG`).
    pub tag: String,
    /// On-disk wire layout used by the snapshot codec.
    pub wire_size: WireSize,
}

impl WireSize {
    /// Derive the on-disk wire layout from a custom type's [`DataSize`].
    ///
    /// `const fn` so generated code can use it inside `&[ColumnDef]`
    /// promotable array literals.
    pub const fn from_data_size(size: DataSize) -> Self {
        match size {
            DataSize::Fixed(n) => Self::Fixed(n as u32),
            DataSize::Dynamic => Self::LengthPrefixed,
        }
    }
}

/// Stable, tag-keyed encoding of a column data type.
///
/// The discriminants are part of the on-disk format and must not be reused or reordered; new variants must take a fresh tag.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[cfg_attr(feature = "candid", derive(candid::CandidType))]
#[repr(u8)]
pub enum DataTypeSnapshot {
    /// Arbitrary binary blob.
    Blob = 0x50,
    /// Boolean value.
    Boolean = 0x30,
    /// User-defined custom data type, identified by name + on-disk wire layout.
    Custom(Box<CustomDataTypeSnapshot>) = 0xF0,
    /// Calendar date with no time component.
    Date = 0x40,
    /// Date and time.
    Datetime = 0x41,
    /// Arbitrary-precision decimal number.
    Decimal = 0x22,
    /// 32-bit IEEE-754 floating point.
    Float32 = 0x20,
    /// 64-bit IEEE-754 floating point.
    Float64 = 0x21,
    /// Signed 16-bit integer.
    Int16 = 0x02,
    /// Signed 32-bit integer.
    Int32 = 0x03,
    /// Signed 64-bit integer.
    Int64 = 0x04,
    /// Signed 8-bit integer.
    Int8 = 0x01,
    /// JSON document.
    Json = 0x60,
    /// UTF-8 text string.
    Text = 0x51,
    /// UUID value.
    Uuid = 0x52,
    /// Unsigned 16-bit integer.
    Uint16 = 0x11,
    /// Unsigned 32-bit integer.
    Uint32 = 0x12,
    /// Unsigned 64-bit integer.
    Uint64 = 0x13,
    /// Unsigned 8-bit integer.
    Uint8 = 0x10,
}

/// Snapshot of a secondary index defined on a table.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[cfg_attr(feature = "candid", derive(candid::CandidType))]
pub struct IndexSnapshot {
    /// Names of the columns covered by the index, in index order.
    pub columns: Vec<String>,
    /// Whether the index enforces uniqueness across the covered columns.
    pub unique: bool,
}

/// Snapshot of a foreign key reference attached to a column.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[cfg_attr(feature = "candid", derive(candid::CandidType))]
pub struct ForeignKeySnapshot {
    /// Name of the referenced table.
    pub table: String,
    /// Name of the referenced column on the target table.
    pub column: String,
    /// Action performed on referenced row deletion.
    pub on_delete: OnDeleteSnapshot,
}

/// Stable, tag-keyed encoding of the `ON DELETE` referential action.
///
/// Mirrors [`DeleteBehavior`](crate::dbms::query::delete::DeleteBehavior). Discriminants are part of the on-disk format and must not be reused
/// or reordered; new variants must take a fresh tag.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[cfg_attr(feature = "candid", derive(candid::CandidType))]
#[repr(u8)]
pub enum OnDeleteSnapshot {
    /// Reject deletion of referenced row while dependent rows exist.
    Restrict = 0x01,
    /// Delete dependent rows together with referenced row.
    Cascade = 0x02,
}

impl TableSchemaSnapshot {
    /// Returns the latest version of the snapshot format.
    pub fn latest_version() -> u8 {
        SCHEMA_SNAPSHOT_VERSION
    }
}

impl Encode for IndexSnapshot {
    const ALIGNMENT: PageOffset = 32;

    const SIZE: DataSize = DataSize::Dynamic;

    fn size(&self) -> crate::prelude::MSize {
        // 1 byte for columns_len + (1 + column bytes) * columns_len + 1 byte for the unique tag
        1 + self
            .columns
            .iter()
            .map(|col| 1 + col.len() as crate::prelude::MSize)
            .sum::<crate::prelude::MSize>()
            + 1
    }

    fn encode(&'_ self) -> std::borrow::Cow<'_, [u8]> {
        let mut bytes = Vec::with_capacity(self.size() as usize);
        bytes.push(self.columns.len() as u8);
        for col in &self.columns {
            bytes.push(col.len() as u8);
            bytes.extend_from_slice(col.as_bytes());
        }
        bytes.push(self.unique as u8);

        std::borrow::Cow::Owned(bytes)
    }

    fn decode(data: std::borrow::Cow<[u8]>) -> crate::prelude::MemoryResult<Self>
    where
        Self: Sized,
    {
        let data = data.into_owned();
        let mut offset = 0;
        if data.len() < 2 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }

        let columns_len = data[offset] as usize;
        offset += 1;
        let mut columns = Vec::with_capacity(columns_len);
        for _ in 0..columns_len {
            if data.len() < offset + 1 {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            let col_len = data[offset] as usize;
            offset += 1;
            if data.len() < offset + col_len + 1 {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            let col = String::from_utf8(data[offset..offset + col_len].to_vec())?;
            offset += col_len;
            columns.push(col);
        }

        let unique = data[offset] != 0;

        Ok(Self { columns, unique })
    }
}

impl Encode for ForeignKeySnapshot {
    const ALIGNMENT: PageOffset = 32;

    const SIZE: DataSize = DataSize::Dynamic;

    fn size(&self) -> crate::prelude::MSize {
        // 1 byte for the table_len + table bytes + 1 byte for the column_len + column bytes + 1 byte for the on_delete tag
        1 + self.table.len() as crate::prelude::MSize
            + 1
            + self.column.len() as crate::prelude::MSize
            + 1
    }

    fn encode(&'_ self) -> std::borrow::Cow<'_, [u8]> {
        let mut bytes = Vec::with_capacity(self.size() as usize);
        bytes.push(self.table.len() as u8);
        bytes.extend_from_slice(self.table.as_bytes());
        bytes.push(self.column.len() as u8);
        bytes.extend_from_slice(self.column.as_bytes());
        bytes.push(self.on_delete as u8);

        std::borrow::Cow::Owned(bytes)
    }

    fn decode(data: std::borrow::Cow<[u8]>) -> crate::prelude::MemoryResult<Self>
    where
        Self: Sized,
    {
        let data = data.into_owned();
        let mut offset = 0;
        if data.len() < 3 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }

        let table_len = data[offset] as usize;
        offset += 1;
        if data.len() < offset + table_len + 1 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let table = String::from_utf8(data[offset..offset + table_len].to_vec())?;
        offset += table_len;

        let column_len = data[offset] as usize;
        offset += 1;
        if data.len() < offset + column_len + 1 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let column = String::from_utf8(data[offset..offset + column_len].to_vec())?;
        offset += column_len;

        let on_delete = match data[offset] {
            0x01 => OnDeleteSnapshot::Restrict,
            0x02 => OnDeleteSnapshot::Cascade,
            value => {
                return Err(MemoryError::DecodeError(DecodeError::IdentityDecodeError(
                    format!("Unknown `OnDeleteSnapshot`: {value:#x}"),
                )));
            }
        };

        Ok(Self {
            table,
            column,
            on_delete,
        })
    }
}

impl Encode for DataTypeSnapshot {
    const ALIGNMENT: PageOffset = 32;

    const SIZE: DataSize = DataSize::Dynamic;

    fn size(&self) -> crate::prelude::MSize {
        match self {
            // 1 tag + wire_size header + 1 name_len + name bytes
            DataTypeSnapshot::Custom(meta) => {
                let ws_bytes: crate::prelude::MSize = match meta.wire_size {
                    // 1 ws_tag + 4 (u32 LE)
                    WireSize::Fixed(_) => 1 + 4,
                    // 1 ws_tag
                    WireSize::LengthPrefixed => 1,
                };
                1 + ws_bytes + 1 + meta.tag.len() as crate::prelude::MSize
            }
            // single tag byte
            _ => 1,
        }
    }

    fn encode(&'_ self) -> std::borrow::Cow<'_, [u8]> {
        let tag = match self {
            DataTypeSnapshot::Blob => 0x50u8,
            DataTypeSnapshot::Boolean => 0x30,
            DataTypeSnapshot::Custom(_) => 0xF0,
            DataTypeSnapshot::Date => 0x40,
            DataTypeSnapshot::Datetime => 0x41,
            DataTypeSnapshot::Decimal => 0x22,
            DataTypeSnapshot::Float32 => 0x20,
            DataTypeSnapshot::Float64 => 0x21,
            DataTypeSnapshot::Int16 => 0x02,
            DataTypeSnapshot::Int32 => 0x03,
            DataTypeSnapshot::Int64 => 0x04,
            DataTypeSnapshot::Int8 => 0x01,
            DataTypeSnapshot::Json => 0x60,
            DataTypeSnapshot::Text => 0x51,
            DataTypeSnapshot::Uuid => 0x52,
            DataTypeSnapshot::Uint16 => 0x11,
            DataTypeSnapshot::Uint32 => 0x12,
            DataTypeSnapshot::Uint64 => 0x13,
            DataTypeSnapshot::Uint8 => 0x10,
        };

        match self {
            DataTypeSnapshot::Custom(meta) => {
                let mut bytes = Vec::with_capacity(self.size() as usize);
                bytes.push(tag);
                match meta.wire_size {
                    WireSize::Fixed(n) => {
                        bytes.push(0x01u8);
                        bytes.extend_from_slice(&n.to_le_bytes());
                    }
                    WireSize::LengthPrefixed => {
                        bytes.push(0x02u8);
                    }
                }
                bytes.push(meta.tag.len() as u8);
                bytes.extend_from_slice(meta.tag.as_bytes());
                std::borrow::Cow::Owned(bytes)
            }
            _ => std::borrow::Cow::Owned(vec![tag]),
        }
    }

    fn decode(data: std::borrow::Cow<[u8]>) -> crate::prelude::MemoryResult<Self>
    where
        Self: Sized,
    {
        if data.is_empty() {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }

        let tag = data[0];
        match tag {
            0x01 => Ok(DataTypeSnapshot::Int8),
            0x02 => Ok(DataTypeSnapshot::Int16),
            0x03 => Ok(DataTypeSnapshot::Int32),
            0x04 => Ok(DataTypeSnapshot::Int64),
            0x10 => Ok(DataTypeSnapshot::Uint8),
            0x11 => Ok(DataTypeSnapshot::Uint16),
            0x12 => Ok(DataTypeSnapshot::Uint32),
            0x13 => Ok(DataTypeSnapshot::Uint64),
            0x20 => Ok(DataTypeSnapshot::Float32),
            0x21 => Ok(DataTypeSnapshot::Float64),
            0x22 => Ok(DataTypeSnapshot::Decimal),
            0x30 => Ok(DataTypeSnapshot::Boolean),
            0x40 => Ok(DataTypeSnapshot::Date),
            0x41 => Ok(DataTypeSnapshot::Datetime),
            0x50 => Ok(DataTypeSnapshot::Blob),
            0x51 => Ok(DataTypeSnapshot::Text),
            0x52 => Ok(DataTypeSnapshot::Uuid),
            0x60 => Ok(DataTypeSnapshot::Json),
            0xF0 => {
                if data.len() < 2 {
                    return Err(MemoryError::DecodeError(DecodeError::TooShort));
                }
                let (wire_size, header_len) = match data[1] {
                    0x01 => {
                        if data.len() < 6 {
                            return Err(MemoryError::DecodeError(DecodeError::TooShort));
                        }
                        let n = u32::from_le_bytes([data[2], data[3], data[4], data[5]]);
                        (WireSize::Fixed(n), 6)
                    }
                    0x02 => (WireSize::LengthPrefixed, 2),
                    v => {
                        return Err(MemoryError::DecodeError(DecodeError::IdentityDecodeError(
                            format!("Unknown WireSize tag: {v:#x}"),
                        )));
                    }
                };
                if data.len() < header_len + 1 {
                    return Err(MemoryError::DecodeError(DecodeError::TooShort));
                }
                let name_len = data[header_len] as usize;
                let name_off = header_len + 1;
                if data.len() < name_off + name_len {
                    return Err(MemoryError::DecodeError(DecodeError::TooShort));
                }
                let tag = String::from_utf8(data[name_off..name_off + name_len].to_vec())?;
                Ok(DataTypeSnapshot::Custom(Box::new(CustomDataTypeSnapshot {
                    tag,
                    wire_size,
                })))
            }
            value => Err(MemoryError::DecodeError(DecodeError::IdentityDecodeError(
                format!("Unknown `DataTypeSnapshot` tag: {value:#x}"),
            ))),
        }
    }
}

/// Flag bits packed into the [`ColumnSnapshot`] flags byte.
const COL_FLAG_NULLABLE: u8 = 0b0000_0001;
const COL_FLAG_AUTO_INCREMENT: u8 = 0b0000_0010;
const COL_FLAG_UNIQUE: u8 = 0b0000_0100;
const COL_FLAG_PRIMARY_KEY: u8 = 0b0000_1000;

impl Encode for ColumnSnapshot {
    const ALIGNMENT: PageOffset = 32;

    const SIZE: DataSize = DataSize::Dynamic;

    fn size(&self) -> crate::prelude::MSize {
        // name_len(1) + name + data_type + flags(1)
        // + fk_flag(1) + (fk_size_prefix(2) + fk bytes)?
        // + default_flag(1) + (default_size_prefix(2) + value bytes)?
        let mut total: crate::prelude::MSize =
            1 + self.name.len() as crate::prelude::MSize + self.data_type.size() + 1;
        total += 1;
        if let Some(fk) = &self.foreign_key {
            total += 2 + fk.size();
        }
        total += 1;
        if let Some(value) = &self.default {
            total += 2 + Encode::size(value);
        }
        total
    }

    fn encode(&'_ self) -> std::borrow::Cow<'_, [u8]> {
        let mut bytes = Vec::with_capacity(self.size() as usize);
        bytes.push(self.name.len() as u8);
        bytes.extend_from_slice(self.name.as_bytes());

        bytes.extend_from_slice(&self.data_type.encode());

        let mut flags: u8 = 0;
        if self.nullable {
            flags |= COL_FLAG_NULLABLE;
        }
        if self.auto_increment {
            flags |= COL_FLAG_AUTO_INCREMENT;
        }
        if self.unique {
            flags |= COL_FLAG_UNIQUE;
        }
        if self.primary_key {
            flags |= COL_FLAG_PRIMARY_KEY;
        }
        bytes.push(flags);

        match &self.foreign_key {
            Some(fk) => {
                bytes.push(1);
                let encoded = fk.encode();
                bytes.extend_from_slice(&(encoded.len() as u16).to_le_bytes());
                bytes.extend_from_slice(&encoded);
            }
            None => bytes.push(0),
        }

        match &self.default {
            Some(value) => {
                bytes.push(1);
                let encoded = Encode::encode(value);
                bytes.extend_from_slice(&(encoded.len() as u16).to_le_bytes());
                bytes.extend_from_slice(&encoded);
            }
            None => bytes.push(0),
        }

        std::borrow::Cow::Owned(bytes)
    }

    fn decode(data: std::borrow::Cow<[u8]>) -> crate::prelude::MemoryResult<Self>
    where
        Self: Sized,
    {
        let data = data.into_owned();
        let mut offset = 0;

        if data.is_empty() {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let name_len = data[offset] as usize;
        offset += 1;
        if data.len() < offset + name_len {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let name = String::from_utf8(data[offset..offset + name_len].to_vec())?;
        offset += name_len;

        // data_type: peek tag, derive consumed length
        if data.len() < offset + 1 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let dt_consumed = if data[offset] == 0xF0 {
            if data.len() < offset + 2 {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            let header = match data[offset + 1] {
                0x01 => 6,
                0x02 => 2,
                v => {
                    return Err(MemoryError::DecodeError(DecodeError::IdentityDecodeError(
                        format!("Unknown WireSize tag: {v:#x}"),
                    )));
                }
            };
            if data.len() < offset + header + 1 {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            header + 1 + data[offset + header] as usize
        } else {
            1
        };
        if data.len() < offset + dt_consumed {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let data_type = DataTypeSnapshot::decode(std::borrow::Cow::Owned(
            data[offset..offset + dt_consumed].to_vec(),
        ))?;
        offset += dt_consumed;

        if data.len() < offset + 1 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let flags = data[offset];
        offset += 1;
        let nullable = flags & COL_FLAG_NULLABLE != 0;
        let auto_increment = flags & COL_FLAG_AUTO_INCREMENT != 0;
        let unique = flags & COL_FLAG_UNIQUE != 0;
        let primary_key = flags & COL_FLAG_PRIMARY_KEY != 0;

        if data.len() < offset + 1 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let fk_flag = data[offset];
        offset += 1;
        let foreign_key = if fk_flag != 0 {
            if data.len() < offset + 2 {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            let fk_len = u16::from_le_bytes([data[offset], data[offset + 1]]) as usize;
            offset += 2;
            if data.len() < offset + fk_len {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            let fk = ForeignKeySnapshot::decode(std::borrow::Cow::Owned(
                data[offset..offset + fk_len].to_vec(),
            ))?;
            offset += fk_len;
            Some(fk)
        } else {
            None
        };

        if data.len() < offset + 1 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let default_flag = data[offset];
        offset += 1;
        let default = if default_flag != 0 {
            if data.len() < offset + 2 {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            let v_len = u16::from_le_bytes([data[offset], data[offset + 1]]) as usize;
            offset += 2;
            if data.len() < offset + v_len {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            let value = Value::decode(std::borrow::Cow::Owned(
                data[offset..offset + v_len].to_vec(),
            ))?;
            Some(value)
        } else {
            None
        };

        Ok(Self {
            name,
            data_type,
            nullable,
            auto_increment,
            unique,
            primary_key,
            foreign_key,
            default,
        })
    }
}

impl Encode for TableSchemaSnapshot {
    const ALIGNMENT: PageOffset = 32;

    const SIZE: DataSize = DataSize::Dynamic;

    fn size(&self) -> crate::prelude::MSize {
        // version(1)
        // + name_len(1) + name
        // + pk_len(1) + pk
        // + alignment(4)
        // + columns_len(2) + sum(col_size_prefix(2) + col bytes)
        // + indexes_len(2) + sum(idx_size_prefix(2) + idx bytes)
        let mut total: crate::prelude::MSize = 1
            + 1
            + self.name.len() as crate::prelude::MSize
            + 1
            + self.primary_key.len() as crate::prelude::MSize
            + 4
            + 2;
        for c in &self.columns {
            total += 2 + c.size();
        }
        total += 2;
        for i in &self.indexes {
            total += 2 + i.size();
        }
        total
    }

    fn encode(&'_ self) -> std::borrow::Cow<'_, [u8]> {
        let mut bytes = Vec::with_capacity(self.size() as usize);
        bytes.push(self.version);

        bytes.push(self.name.len() as u8);
        bytes.extend_from_slice(self.name.as_bytes());

        bytes.push(self.primary_key.len() as u8);
        bytes.extend_from_slice(self.primary_key.as_bytes());

        bytes.extend_from_slice(&self.alignment.to_le_bytes());

        bytes.extend_from_slice(&(self.columns.len() as u16).to_le_bytes());
        for c in &self.columns {
            let encoded = c.encode();
            bytes.extend_from_slice(&(encoded.len() as u16).to_le_bytes());
            bytes.extend_from_slice(&encoded);
        }

        bytes.extend_from_slice(&(self.indexes.len() as u16).to_le_bytes());
        for i in &self.indexes {
            let encoded = i.encode();
            bytes.extend_from_slice(&(encoded.len() as u16).to_le_bytes());
            bytes.extend_from_slice(&encoded);
        }

        std::borrow::Cow::Owned(bytes)
    }

    fn decode(data: std::borrow::Cow<[u8]>) -> crate::prelude::MemoryResult<Self>
    where
        Self: Sized,
    {
        let data = data.into_owned();
        let mut offset = 0;

        if data.is_empty() {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let version = data[offset];
        offset += 1;
        if version != SCHEMA_SNAPSHOT_VERSION {
            return Err(MemoryError::DecodeError(DecodeError::IdentityDecodeError(
                format!("Unsupported `TableSchemaSnapshot` version: {version:#x}"),
            )));
        }

        if data.len() < offset + 1 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let name_len = data[offset] as usize;
        offset += 1;
        if data.len() < offset + name_len {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let name = String::from_utf8(data[offset..offset + name_len].to_vec())?;
        offset += name_len;

        if data.len() < offset + 1 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let pk_len = data[offset] as usize;
        offset += 1;
        if data.len() < offset + pk_len {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let primary_key = String::from_utf8(data[offset..offset + pk_len].to_vec())?;
        offset += pk_len;

        if data.len() < offset + 4 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let alignment = u32::from_le_bytes([
            data[offset],
            data[offset + 1],
            data[offset + 2],
            data[offset + 3],
        ]);
        offset += 4;

        if data.len() < offset + 2 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let columns_len = u16::from_le_bytes([data[offset], data[offset + 1]]) as usize;
        offset += 2;
        let mut columns = Vec::with_capacity(columns_len);
        for _ in 0..columns_len {
            if data.len() < offset + 2 {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            let c_len = u16::from_le_bytes([data[offset], data[offset + 1]]) as usize;
            offset += 2;
            if data.len() < offset + c_len {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            let c = ColumnSnapshot::decode(std::borrow::Cow::Owned(
                data[offset..offset + c_len].to_vec(),
            ))?;
            offset += c_len;
            columns.push(c);
        }

        if data.len() < offset + 2 {
            return Err(MemoryError::DecodeError(DecodeError::TooShort));
        }
        let indexes_len = u16::from_le_bytes([data[offset], data[offset + 1]]) as usize;
        offset += 2;
        let mut indexes = Vec::with_capacity(indexes_len);
        for _ in 0..indexes_len {
            if data.len() < offset + 2 {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            let i_len = u16::from_le_bytes([data[offset], data[offset + 1]]) as usize;
            offset += 2;
            if data.len() < offset + i_len {
                return Err(MemoryError::DecodeError(DecodeError::TooShort));
            }
            let i = IndexSnapshot::decode(std::borrow::Cow::Owned(
                data[offset..offset + i_len].to_vec(),
            ))?;
            offset += i_len;
            indexes.push(i);
        }

        Ok(Self {
            version,
            name,
            primary_key,
            alignment,
            columns,
            indexes,
        })
    }
}

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

    fn roundtrip<T>(value: T) -> T
    where
        T: Encode + PartialEq + std::fmt::Debug,
    {
        let encoded = value.encode();
        assert_eq!(
            encoded.len() as crate::prelude::MSize,
            value.size(),
            "size() must match encoded length",
        );
        T::decode(std::borrow::Cow::Owned(encoded.into_owned())).expect("decode failed")
    }

    #[test]
    fn test_index_snapshot_roundtrip() {
        let idx = IndexSnapshot {
            columns: vec!["a".to_string(), "long_column_name".to_string()],
            unique: true,
        };
        assert_eq!(roundtrip(idx.clone()), idx);

        let empty = IndexSnapshot {
            columns: vec![],
            unique: false,
        };
        assert_eq!(roundtrip(empty.clone()), empty);
    }

    #[test]
    fn test_index_snapshot_decode_too_short() {
        let err = IndexSnapshot::decode(std::borrow::Cow::Owned(vec![0u8])).unwrap_err();
        assert!(matches!(
            err,
            MemoryError::DecodeError(DecodeError::TooShort)
        ));
    }

    #[test]
    fn test_foreign_key_snapshot_roundtrip() {
        for on_delete in [OnDeleteSnapshot::Restrict, OnDeleteSnapshot::Cascade] {
            let fk = ForeignKeySnapshot {
                table: "users".to_string(),
                column: "id".to_string(),
                on_delete,
            };
            assert_eq!(roundtrip(fk.clone()), fk);
        }
    }

    #[test]
    fn test_foreign_key_snapshot_decode_unknown_on_delete() {
        let bytes = vec![1u8, b'a', 1, b'b', 0xFE];
        let err = ForeignKeySnapshot::decode(std::borrow::Cow::Owned(bytes)).unwrap_err();
        assert!(matches!(
            err,
            MemoryError::DecodeError(DecodeError::IdentityDecodeError(_))
        ));
    }

    #[test]
    fn test_data_type_snapshot_roundtrip_all_variants() {
        let cases = [
            DataTypeSnapshot::Blob,
            DataTypeSnapshot::Boolean,
            DataTypeSnapshot::Date,
            DataTypeSnapshot::Datetime,
            DataTypeSnapshot::Decimal,
            DataTypeSnapshot::Float32,
            DataTypeSnapshot::Float64,
            DataTypeSnapshot::Int8,
            DataTypeSnapshot::Int16,
            DataTypeSnapshot::Int32,
            DataTypeSnapshot::Int64,
            DataTypeSnapshot::Json,
            DataTypeSnapshot::Text,
            DataTypeSnapshot::Uint8,
            DataTypeSnapshot::Uint16,
            DataTypeSnapshot::Uint32,
            DataTypeSnapshot::Uint64,
            DataTypeSnapshot::Uuid,
            DataTypeSnapshot::Custom(Box::new(CustomDataTypeSnapshot {
                tag: "Money".to_string(),
                wire_size: WireSize::Fixed(16),
            })),
            DataTypeSnapshot::Custom(Box::new(CustomDataTypeSnapshot {
                tag: String::new(),
                wire_size: WireSize::LengthPrefixed,
            })),
        ];
        for dt in cases {
            assert_eq!(roundtrip(dt.clone()), dt);
        }
    }

    #[test]
    fn test_custom_wire_size_fixed_roundtrip() {
        let dt = DataTypeSnapshot::Custom(Box::new(CustomDataTypeSnapshot {
            tag: "Money".to_string(),
            wire_size: WireSize::Fixed(8),
        }));
        assert_eq!(roundtrip(dt.clone()), dt);
    }

    #[test]
    fn test_custom_wire_size_length_prefixed_roundtrip() {
        let dt = DataTypeSnapshot::Custom(Box::new(CustomDataTypeSnapshot {
            tag: "Json".to_string(),
            wire_size: WireSize::LengthPrefixed,
        }));
        assert_eq!(roundtrip(dt.clone()), dt);
    }

    #[test]
    fn test_data_type_snapshot_decode_unknown_tag() {
        let err = DataTypeSnapshot::decode(std::borrow::Cow::Owned(vec![0xAA])).unwrap_err();
        assert!(matches!(
            err,
            MemoryError::DecodeError(DecodeError::IdentityDecodeError(_))
        ));
    }

    #[test]
    fn test_data_type_snapshot_decode_empty() {
        let err = DataTypeSnapshot::decode(std::borrow::Cow::Owned(vec![])).unwrap_err();
        assert!(matches!(
            err,
            MemoryError::DecodeError(DecodeError::TooShort)
        ));
    }

    #[test]
    fn test_data_type_snapshot_tags_are_stable() {
        // Discriminants are part of the on-disk format; this test fails loudly if any reordered or reused.
        assert_eq!(DataTypeSnapshot::Int8.encode()[0], 0x01);
        assert_eq!(DataTypeSnapshot::Int16.encode()[0], 0x02);
        assert_eq!(DataTypeSnapshot::Int32.encode()[0], 0x03);
        assert_eq!(DataTypeSnapshot::Int64.encode()[0], 0x04);
        assert_eq!(DataTypeSnapshot::Uint8.encode()[0], 0x10);
        assert_eq!(DataTypeSnapshot::Uint16.encode()[0], 0x11);
        assert_eq!(DataTypeSnapshot::Uint32.encode()[0], 0x12);
        assert_eq!(DataTypeSnapshot::Uint64.encode()[0], 0x13);
        assert_eq!(DataTypeSnapshot::Float32.encode()[0], 0x20);
        assert_eq!(DataTypeSnapshot::Float64.encode()[0], 0x21);
        assert_eq!(DataTypeSnapshot::Decimal.encode()[0], 0x22);
        assert_eq!(DataTypeSnapshot::Boolean.encode()[0], 0x30);
        assert_eq!(DataTypeSnapshot::Date.encode()[0], 0x40);
        assert_eq!(DataTypeSnapshot::Datetime.encode()[0], 0x41);
        assert_eq!(DataTypeSnapshot::Blob.encode()[0], 0x50);
        assert_eq!(DataTypeSnapshot::Text.encode()[0], 0x51);
        assert_eq!(DataTypeSnapshot::Uuid.encode()[0], 0x52);
        assert_eq!(DataTypeSnapshot::Json.encode()[0], 0x60);
        assert_eq!(
            DataTypeSnapshot::Custom(Box::new(CustomDataTypeSnapshot {
                tag: "x".into(),
                wire_size: WireSize::Fixed(0),
            }))
            .encode()[0],
            0xF0
        );
    }

    fn sample_column(name: &str) -> ColumnSnapshot {
        ColumnSnapshot {
            name: name.to_string(),
            data_type: DataTypeSnapshot::Int32,
            nullable: false,
            auto_increment: false,
            unique: false,
            primary_key: false,
            foreign_key: None,
            default: None,
        }
    }

    #[test]
    fn test_column_snapshot_minimal_roundtrip() {
        let col = sample_column("id");
        assert_eq!(roundtrip(col.clone()), col);
    }

    #[test]
    fn test_column_snapshot_all_flags_roundtrip() {
        let col = ColumnSnapshot {
            name: "user_id".to_string(),
            data_type: DataTypeSnapshot::Uint64,
            nullable: true,
            auto_increment: true,
            unique: true,
            primary_key: true,
            foreign_key: None,
            default: None,
        };
        assert_eq!(roundtrip(col.clone()), col);
    }

    #[test]
    fn test_column_snapshot_with_fk_roundtrip() {
        let col = ColumnSnapshot {
            name: "owner".to_string(),
            data_type: DataTypeSnapshot::Uint32,
            nullable: false,
            auto_increment: false,
            unique: false,
            primary_key: false,
            foreign_key: Some(ForeignKeySnapshot {
                table: "users".to_string(),
                column: "id".to_string(),
                on_delete: OnDeleteSnapshot::Cascade,
            }),
            default: None,
        };
        assert_eq!(roundtrip(col.clone()), col);
    }

    #[test]
    fn test_column_snapshot_with_default_roundtrip() {
        use crate::prelude::Uint32;
        let col = ColumnSnapshot {
            name: "score".to_string(),
            data_type: DataTypeSnapshot::Uint32,
            nullable: true,
            auto_increment: false,
            unique: false,
            primary_key: false,
            foreign_key: None,
            default: Some(Value::Uint32(Uint32(42))),
        };
        assert_eq!(roundtrip(col.clone()), col);
    }

    #[test]
    fn test_column_snapshot_with_custom_data_type_roundtrip() {
        let col = ColumnSnapshot {
            name: "amount".to_string(),
            data_type: DataTypeSnapshot::Custom(Box::new(CustomDataTypeSnapshot {
                tag: "Money".to_string(),
                wire_size: WireSize::Fixed(16),
            })),
            nullable: false,
            auto_increment: false,
            unique: false,
            primary_key: false,
            foreign_key: None,
            default: None,
        };
        assert_eq!(roundtrip(col.clone()), col);
    }

    #[test]
    fn test_column_snapshot_full_roundtrip() {
        use crate::prelude::Text;
        let col = ColumnSnapshot {
            name: "email".to_string(),
            data_type: DataTypeSnapshot::Text,
            nullable: true,
            auto_increment: false,
            unique: true,
            primary_key: false,
            foreign_key: Some(ForeignKeySnapshot {
                table: "accounts".to_string(),
                column: "email".to_string(),
                on_delete: OnDeleteSnapshot::Restrict,
            }),
            default: Some(Value::Text(Text("none@example.com".to_string()))),
        };
        assert_eq!(roundtrip(col.clone()), col);
    }

    #[test]
    fn test_column_snapshot_decode_too_short() {
        let err = ColumnSnapshot::decode(std::borrow::Cow::Owned(vec![])).unwrap_err();
        assert!(matches!(
            err,
            MemoryError::DecodeError(DecodeError::TooShort)
        ));
    }

    #[test]
    fn test_table_schema_snapshot_empty_roundtrip() {
        let snap = TableSchemaSnapshot {
            version: TableSchemaSnapshot::latest_version(),
            name: "empty".to_string(),
            primary_key: "id".to_string(),
            alignment: 32,
            columns: vec![],
            indexes: vec![],
        };
        assert_eq!(roundtrip(snap.clone()), snap);
    }

    #[test]
    fn test_table_schema_snapshot_full_roundtrip() {
        use crate::prelude::Uint32;
        let snap = TableSchemaSnapshot {
            version: TableSchemaSnapshot::latest_version(),
            name: "users".to_string(),
            primary_key: "id".to_string(),
            alignment: 64,
            columns: vec![
                ColumnSnapshot {
                    name: "id".to_string(),
                    data_type: DataTypeSnapshot::Uint32,
                    nullable: false,
                    auto_increment: true,
                    unique: true,
                    primary_key: true,
                    foreign_key: None,
                    default: None,
                },
                ColumnSnapshot {
                    name: "owner".to_string(),
                    data_type: DataTypeSnapshot::Uint32,
                    nullable: true,
                    auto_increment: false,
                    unique: false,
                    primary_key: false,
                    foreign_key: Some(ForeignKeySnapshot {
                        table: "accounts".to_string(),
                        column: "id".to_string(),
                        on_delete: OnDeleteSnapshot::Cascade,
                    }),
                    default: Some(Value::Uint32(Uint32(0))),
                },
            ],
            indexes: vec![
                IndexSnapshot {
                    columns: vec!["owner".to_string()],
                    unique: false,
                },
                IndexSnapshot {
                    columns: vec!["owner".to_string(), "id".to_string()],
                    unique: true,
                },
            ],
        };
        assert_eq!(roundtrip(snap.clone()), snap);
    }

    #[test]
    fn test_table_schema_snapshot_unsupported_version() {
        let mut snap_bytes = TableSchemaSnapshot {
            version: TableSchemaSnapshot::latest_version(),
            name: "t".to_string(),
            primary_key: "id".to_string(),
            alignment: 32,
            columns: vec![],
            indexes: vec![],
        }
        .encode()
        .into_owned();
        snap_bytes[0] = 0xEE;
        let err = TableSchemaSnapshot::decode(std::borrow::Cow::Owned(snap_bytes)).unwrap_err();
        assert!(matches!(
            err,
            MemoryError::DecodeError(DecodeError::IdentityDecodeError(_))
        ));
    }

    #[test]
    fn test_table_schema_snapshot_decode_too_short() {
        let err = TableSchemaSnapshot::decode(std::borrow::Cow::Owned(vec![])).unwrap_err();
        assert!(matches!(
            err,
            MemoryError::DecodeError(DecodeError::TooShort)
        ));
    }

    #[test]
    fn test_latest_version_matches_constant() {
        assert_eq!(
            TableSchemaSnapshot::latest_version(),
            SCHEMA_SNAPSHOT_VERSION
        );
    }
}