frozen-core 0.0.20

Custom implementations and core utilities for frozen-lab crates
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
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
//! An high throughput asynchronous IO pipeline for chunk based storage, it uses batches to write requests and
//! flushes them in the background, while providing durability guarantees via epochs
//!
//! `FrozenPipe` batches write requests and flushes them in the background, providing durability guarantees via epochs
//!
//! ## Features
//!
//! - Batched IO
//! - Background durability
//! - Backpressure via [`BufPool`]
//! - Crash-safe durability semantics
//! - Optimized page reads
//!
//! ## Example
//!
//! ```
//! use frozen_core::fpipe::{FrozenPipe, FPCfg};
//! use frozen_core::bpool::BPBackend;
//! use std::time::Duration;
//!
//! const MODULE_ID: u8 = 0;
//!
//! let dir = tempfile::tempdir().unwrap();
//! let path = dir.path().join("tmp_pipe");
//!
//! let cfg = FPCfg {
//!     chunk_size: 0x20,
//!     initial_chunk_amount: 4,
//!     flush_duration: Duration::from_micros(0x3A),
//!     backend: BPBackend::Prealloc { capacity: 0x10 },
//! };
//!
//! let pipe = FrozenPipe::<MODULE_ID>::new(path, cfg).unwrap();
//!
//! let data = vec![1u8; 0x40];
//! let bufs = vec![
//!     &data[0x00..0x20],
//!     &data[0x20..0x40],
//! ];
//!
//! let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
//! pipe.wait_for_durability(epoch).unwrap();
//!
//! let read = pipe.read(0, 2).unwrap();
//! assert_eq!(read, data);
//! ```

use crate::{
    bpool,
    error::{ErrCode, FrozenErr, FrozenRes},
    ffile, hints, mpscq,
};
use std::{
    sync::{self, atomic},
    thread, time,
};

/// Domain Id for [`FrozenPipe`] is **20**
const ERRDOMAIN: u8 = 0x14;

/// module id used for [`FrozenErr`]
static MID: std::sync::OnceLock<u8> = std::sync::OnceLock::new();

#[inline(always)]
fn mid() -> &'static u8 {
    MID.get().unwrap()
}

/// Error codes for [`FrozenPipe`]
mod err {
    use super::ErrCode;

    /// (1024) flush_tx error (panic inside)
    pub const TXE: ErrCode = ErrCode::new(0x400, "flush_tx paniced inside");

    /// (1025) flush_tx error (unable to spawn)
    pub const FXE: ErrCode = ErrCode::new(0x401, "unable to spawn flush_tx");

    /// (1026) lock poisoned
    pub const LPN: ErrCode = ErrCode::new(0x402, "lock poisoned internally");

    /// (1027) internal fuck up (hault and catch fire)
    pub const HCF: ErrCode = ErrCode::new(0x403, "hault and catch fire");
}

#[inline]
fn new_err<R, E: std::fmt::Display>(code: ErrCode, error: E) -> FrozenRes<R> {
    let err = FrozenErr::new_raw(*mid(), ERRDOMAIN, code, error);
    Err(err)
}

#[inline]
fn new_err_raw<E: std::fmt::Display>(code: ErrCode, error: E) -> FrozenErr {
    FrozenErr::new_raw(*mid(), ERRDOMAIN, code, error)
}

/// Config for [`FrozenPipe`]
#[derive(Debug, Clone)]
pub struct FPCfg {
    /// Backend used [`BufPool`]
    pub backend: bpool::BPBackend,

    /// Size (in bytes) of a single chunk on fs
    ///
    /// A chunk is a smalled fixed size allocation and addressing unit used by
    /// [`FrozenFile`] for all the write/read ops, which are operated by index
    /// of the chunk and not the offset of the byte
    pub chunk_size: usize,

    /// Number of chunks to pre-allocate when [`FrozenFile`] is initialized
    ///
    /// Initial file length will be `chunk_size * initial_chunk_amount` (bytes)
    pub initial_chunk_amount: usize,

    /// Time interval used by flusher tx, to batch write ops into a durable window and sync them
    /// together, where all write ops in certain time interval falls into a single durable window
    pub flush_duration: time::Duration,
}

/// An high throughput asynchronous IO pipeline for chunk based storage, it uses batches to write requests and
/// flushes them in the background, while providing durability guarantees via epochs
///
/// ## Example
///
/// ```
/// use frozen_core::fpipe::{FrozenPipe, FPCfg};
/// use frozen_core::bpool::BPBackend;
/// use std::time::Duration;
///
/// const MODULE_ID: u8 = 0;
///
/// let dir = tempfile::tempdir().unwrap();
/// let path = dir.path().join("tmp_pipe_write");
///
/// let cfg = FPCfg {
///     chunk_size: 0x20,
///     initial_chunk_amount: 2,
///     backend: BPBackend::Dynamic,
///     flush_duration: Duration::from_micros(0x3A),
/// };
///
/// let pipe = FrozenPipe::<MODULE_ID>::new(path, cfg).unwrap();
///
/// let data = vec![1u8; 0x40];
/// let bufs = vec![
///     &data[0x00..0x20],
///     &data[0x20..0x40],
/// ];
///
/// let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
/// pipe.wait_for_durability(epoch).unwrap();
///
/// let read = pipe.read(0, 2).unwrap();
/// assert_eq!(read, data);
/// ```
#[derive(Debug)]
pub struct FrozenPipe<const MODULE_ID: u8> {
    core: sync::Arc<Core>,
    tx: Option<thread::JoinHandle<()>>,
}

unsafe impl<const MODULE_ID: u8> Send for FrozenPipe<MODULE_ID> {}
unsafe impl<const MODULE_ID: u8> Sync for FrozenPipe<MODULE_ID> {}

impl<const MODULE_ID: u8> FrozenPipe<MODULE_ID> {
    /// Create a new instance of [`FrozenPipe`]
    ///
    /// ## Example
    ///
    /// ```
    /// use frozen_core::fpipe::{FrozenPipe, FPCfg};
    /// use frozen_core::bpool::BPBackend;
    /// use std::time::Duration;
    ///
    /// const MODULE_ID: u8 = 0;
    ///
    /// let dir = tempfile::tempdir().unwrap();
    /// let path = dir.path().join("tmp_pipe_write");
    ///
    /// let cfg = FPCfg {
    ///     chunk_size: 0x20,
    ///     initial_chunk_amount: 2,
    ///     backend: BPBackend::Dynamic,
    ///     flush_duration: Duration::from_micros(0x3A),
    /// };
    ///
    /// let pipe = FrozenPipe::<MODULE_ID>::new(path, cfg).unwrap();
    ///
    /// let data = vec![1u8; 0x20];
    /// let bufs = vec![&data[0x00..0x20]];
    ///
    /// let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
    /// pipe.wait_for_durability(epoch).unwrap();
    ///
    /// let read = pipe.read(0, 1).unwrap();
    /// assert_eq!(read, data);
    /// ```
    pub fn new<P: AsRef<std::path::Path>>(path: P, cfg: FPCfg) -> FrozenRes<Self> {
        let file = ffile::FrozenFile::new::<MODULE_ID>(ffile::FFCfg {
            path: path.as_ref().to_path_buf(),
            chunk_size: cfg.chunk_size,
            initial_chunk_amount: cfg.initial_chunk_amount,
        })?;
        let pool = bpool::BufPool::new::<MODULE_ID>(bpool::BPCfg {
            chunk_size: cfg.chunk_size,
            backend: cfg.backend,
        });

        // NOTE: The value is used for error logging and is initialized only once, as `OnceLock` guarantees that the
        // first caller sets the value and all subsequent calls reuse it
        let _ = MID.get_or_init(|| MODULE_ID);

        let core = Core::new(file, pool, cfg)?;

        // INFO: we spawn the thread for background sync
        let tx = Core::spawn_tx(core.clone())?;

        Ok(Self { core, tx: Some(tx) })
    }

    /// Submit a write request
    ///
    /// ## Working
    ///
    /// The buffer is split into `chunk_size` sized segments and staged using [`BufPool`] before being
    /// written by the background flusher
    ///
    /// Returns the epoch representing the durability window of the write
    ///
    /// ## Requirements
    ///
    /// Length of each data buffer in given `&[buf]` must be of exact `chunk_size`, otherwise the call may cause
    /// undefined behaviour
    ///
    /// ## Example
    ///
    /// ```
    /// use frozen_core::fpipe::{FrozenPipe, FPCfg};
    /// use frozen_core::bpool::BPBackend;
    /// use std::time::Duration;
    ///
    /// const MODULE_ID: u8 = 0;
    ///
    /// let dir = tempfile::tempdir().unwrap();
    /// let path = dir.path().join("tmp_pipe_write");
    ///
    /// let cfg = FPCfg {
    ///     chunk_size: 0x20,
    ///     initial_chunk_amount: 2,
    ///     backend: BPBackend::Dynamic,
    ///     flush_duration: Duration::from_micros(0x3A),
    /// };
    ///
    /// let pipe = FrozenPipe::<MODULE_ID>::new(path, cfg).unwrap();
    ///
    /// let data = [0x3Bu8; 0x40];
    /// let bufs = vec![
    ///     &data[0x00..0x20],
    ///     &data[0x20..0x40],
    /// ];
    ///
    /// let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
    /// pipe.wait_for_durability(epoch).unwrap();
    ///
    /// let read = pipe.read(0, 2).unwrap();
    /// assert_eq!(read, data);
    /// ```
    #[inline(always)]
    pub unsafe fn write(&self, buf: &[&[u8]], index: usize) -> FrozenRes<u64> {
        if let Some(err) = self.core.get_sync_error() {
            return Err(err);
        }

        let chunk_size = self.core.cfg.chunk_size;
        let chunks = buf.len();

        let alloc = self.core.pool.allocate(chunks)?;

        // NOTE: Read lock prevents torn syncs by ensuring the flusher_tx cannot acquire an exclusive lock unitl the
        // write ops is submited, while this lock must be acquired after pool allocations as `BufPool::allocate` may
        // block while waiting for chunks, otherwise the wait would delay the flusher from obtaining the lock, and
        // potentially stalling the durability progress for the entire `FrozenPipe`
        let _lock = self.core.acquire_io_lock()?;

        for (idx, ptr) in alloc.slots().iter().enumerate() {
            unsafe {
                std::ptr::copy_nonoverlapping(buf[idx].as_ptr(), *ptr, chunk_size);
            };
        }

        let epoch = self.core.epoch.load(atomic::Ordering::Acquire);
        let req = WriteType::Single(WriteReq::new(index, chunks, alloc));
        self.core.mpscq.push(req);

        Ok(epoch)
    }

    /// Read a single chunk from the given `index`
    ///
    /// This function performs a blocking read operation
    ///
    /// ## Example
    ///
    /// ```
    /// use frozen_core::fpipe::{FrozenPipe, FPCfg};
    /// use frozen_core::bpool::BPBackend;
    /// use std::time::Duration;
    ///
    /// const MODULE_ID: u8 = 0;
    ///
    /// let dir = tempfile::tempdir().unwrap();
    /// let path = dir.path().join("tmp_pipe_write");
    ///
    /// let cfg = FPCfg {
    ///     chunk_size: 0x20,
    ///     initial_chunk_amount: 2,
    ///     backend: BPBackend::Dynamic,
    ///     flush_duration: Duration::from_micros(0x3A),
    /// };
    ///
    /// let pipe = FrozenPipe::<MODULE_ID>::new(path, cfg).unwrap();
    ///
    /// let data = vec![0xAAu8; 0x20];
    /// let bufs = vec![&data[0x00..0x20]];
    ///
    /// let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
    /// pipe.wait_for_durability(epoch).unwrap();
    ///
    /// let read = pipe.read_single(0).unwrap();
    /// assert_eq!(read, data);
    /// ```
    #[inline(always)]
    pub fn read_single(&self, index: usize) -> FrozenRes<Vec<u8>> {
        let _lock = self.core.acquire_io_lock()?;

        let mut slice = vec![0u8; self.core.cfg.chunk_size];
        self.core.file.pread(slice.as_mut_ptr(), index)?;

        drop(_lock);
        Ok(slice)
    }

    /// Read `count` chunks starting from at the given `index`
    ///
    /// This function performs a blocking read operation
    ///
    /// ## Example
    ///
    /// ```
    /// use frozen_core::fpipe::{FrozenPipe, FPCfg};
    /// use frozen_core::bpool::BPBackend;
    /// use std::time::Duration;
    ///
    /// const MODULE_ID: u8 = 0;
    ///
    /// let dir = tempfile::tempdir().unwrap();
    /// let path = dir.path().join("tmp_pipe_write");
    ///
    /// let cfg = FPCfg {
    ///     chunk_size: 0x20,
    ///     initial_chunk_amount: 2,
    ///     backend: BPBackend::Dynamic,
    ///     flush_duration: Duration::from_micros(0x3A),
    /// };
    ///
    /// let pipe = FrozenPipe::<MODULE_ID>::new(path, cfg).unwrap();
    ///
    /// let data = vec![0xBBu8; 0x20 * 2];
    /// let bufs = vec![&data[0x00..0x20], &data[0x20..0x40]];
    ///
    /// let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
    /// pipe.wait_for_durability(epoch).unwrap();
    ///
    /// let read = pipe.read(0, 2).unwrap();
    /// assert_eq!(read, data);
    /// ```
    #[inline(always)]
    pub fn read(&self, index: usize, count: usize) -> FrozenRes<Vec<u8>> {
        let _lock = self.core.acquire_io_lock()?;

        match count {
            2 => self.read_2x(index),
            4 => self.read_4x(index),
            _ => self.read_multi(index, count),
        }
    }

    /// Blocks until given `epoch` becomes durable
    ///
    /// Durability epochs increase when the background flusher successfully syncs the underlying [`FrozenFile`]
    ///
    /// ## Example
    ///
    /// ```
    /// use frozen_core::fpipe::{FrozenPipe, FPCfg};
    /// use frozen_core::bpool::BPBackend;
    /// use std::time::Duration;
    ///
    /// const MODULE_ID: u8 = 0;
    ///
    /// let dir = tempfile::tempdir().unwrap();
    /// let path = dir.path().join("tmp_pipe_write");
    ///
    /// let cfg = FPCfg {
    ///     chunk_size: 0x20,
    ///     initial_chunk_amount: 2,
    ///     backend: BPBackend::Dynamic,
    ///     flush_duration: Duration::from_micros(0x3A),
    /// };
    ///
    /// let pipe = FrozenPipe::<MODULE_ID>::new(path, cfg).unwrap();
    ///
    /// let data = vec![1u8; 0x20];
    /// let bufs = vec![&data[0x00..0x20]];
    ///
    /// let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
    /// pipe.wait_for_durability(epoch).unwrap();
    /// ```
    pub fn wait_for_durability(&self, epoch: u64) -> FrozenRes<()> {
        self.internal_wait(epoch)
    }

    /// Force instant durability for the current batch
    ///
    /// This wakes the flusher thread and waits for the durability epoch
    ///
    /// ## Example
    ///
    /// ```
    /// use frozen_core::fpipe::{FrozenPipe, FPCfg};
    /// use frozen_core::bpool::BPBackend;
    /// use std::time::Duration;
    ///
    /// const MODULE_ID: u8 = 0;
    ///
    /// let dir = tempfile::tempdir().unwrap();
    /// let path = dir.path().join("tmp_pipe_write");
    ///
    /// let cfg = FPCfg {
    ///     chunk_size: 0x20,
    ///     initial_chunk_amount: 2,
    ///     backend: BPBackend::Dynamic,
    ///     flush_duration: Duration::from_micros(0x3A),
    /// };
    ///
    /// let pipe = FrozenPipe::<MODULE_ID>::new(path, cfg).unwrap();
    ///
    /// let data = vec![1u8; 0x20];
    /// let bufs = vec![&data[0x00..0x20]];
    ///
    /// let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
    /// pipe.force_durability(epoch).unwrap();
    /// ```
    pub fn force_durability(&self, epoch: u64) -> FrozenRes<()> {
        let guard = self.core.lock.lock().map_err(|e| new_err_raw(err::LPN, e))?;
        self.core.cv.notify_one();
        drop(guard);

        self.internal_wait(epoch)
    }

    /// Grow the underlying [`FrozenFile`] by given `count`
    ///
    /// The pipeline waits until all pending writes are flushed before extending the file
    ///
    /// ## Example
    ///
    /// ```
    /// use frozen_core::fpipe::{FrozenPipe, FPCfg};
    /// use frozen_core::bpool::BPBackend;
    /// use std::time::Duration;
    ///
    /// const MODULE_ID: u8 = 0;
    ///
    /// let dir = tempfile::tempdir().unwrap();
    /// let path = dir.path().join("tmp_pipe_write");
    ///
    /// let cfg = FPCfg {
    ///     chunk_size: 0x20,
    ///     initial_chunk_amount: 0x0A,
    ///     backend: BPBackend::Dynamic,
    ///     flush_duration: Duration::from_micros(0x3A),
    /// };
    ///
    /// let pipe = FrozenPipe::<MODULE_ID>::new(path, cfg).unwrap();
    /// pipe.grow(0x0A).unwrap();
    ///
    /// let total_chunks = pipe.total_chunks().unwrap();
    /// assert_eq!(total_chunks, 0x14);
    /// ```
    pub fn grow(&self, count: usize) -> FrozenRes<()> {
        loop {
            // NOTE: we must make sure there are no remaining items in the queue left for sync
            if hints::likely(!self.core.mpscq.is_empty()) {
                let epoch = self.core.epoch.load(atomic::Ordering::Acquire);
                self.force_durability(epoch)?;
            }

            // we acquire an exclusive lock to block write, read and sync ops
            let lock = self.core.acquire_exclusive_io_lock()?;

            // NOTE: it is possible that a write could sneak in between the sync and lock acquire, if so we must
            // make sure that it has synced

            if self.core.mpscq.is_empty() {
                self.core.file.grow(count)?;
                drop(lock);
                return Ok(());
            }

            drop(lock);
        }
    }

    /// Fetch total available chunks in [`FrozenFile`] from fs
    ///
    /// ## Working
    ///
    /// This call performs a syscall to fetch current length of [`FrozenFile`] from fs, as the current length of the
    /// file is not cached anywhere in the pipeline to avoid TOCTAU race conditions
    ///
    /// ## Example
    ///
    /// ```
    /// use frozen_core::fpipe::{FrozenPipe, FPCfg};
    /// use frozen_core::bpool::BPBackend;
    /// use std::time::Duration;
    ///
    /// const MODULE_ID: u8 = 0;
    ///
    /// let dir = tempfile::tempdir().unwrap();
    /// let path = dir.path().join("tmp_pipe_write");
    ///
    /// let cfg = FPCfg {
    ///     chunk_size: 0x20,
    ///     initial_chunk_amount: 2,
    ///     backend: BPBackend::Dynamic,
    ///     flush_duration: Duration::from_micros(0x3A),
    /// };
    ///
    /// let pipe = FrozenPipe::<MODULE_ID>::new(path, cfg).unwrap();
    ///
    /// let total_chunks = pipe.total_chunks().unwrap();
    /// assert_eq!(total_chunks, 2);
    /// ```
    #[inline]
    pub fn total_chunks(&self) -> FrozenRes<usize> {
        self.core.file.total_chunks()
    }

    /// Create a new [`FPTransaction`] context to group multiple write ops into a single atomic operation
    ///
    /// ## Overview
    ///
    /// Use of [`FPTransaction`] allows to group multiple write ops into a single atomic operation, similar to
    /// what a transaction represents in database systems
    ///
    /// - All writes ops succeed together
    /// - Single epoch is assigned to track durability for the transaction
    /// - Durability guarantee is same for all writes included in the transaction
    ///
    /// Simply, this preserves atomic durability semantics for multi index updates
    ///
    /// ## Example
    ///
    /// ```
    /// use frozen_core::fpipe::{FrozenPipe, FPCfg};
    /// use frozen_core::bpool::BPBackend;
    /// use std::time::Duration;
    ///
    /// const MID: u8 = 0;
    ///
    /// let dir = tempfile::tempdir().unwrap();
    /// let path = dir.path().join("tx_multi");
    ///
    /// let pipe = FrozenPipe::<MID>::new(
    ///     path,
    ///     FPCfg {
    ///         chunk_size: 0x20,
    ///         initial_chunk_amount: 4,
    ///         backend: BPBackend::Dynamic,
    ///         flush_duration: Duration::from_micros(50),
    ///     },
    /// ).unwrap();
    ///
    /// let a = vec![1u8; 0x20];
    /// let b = vec![2u8; 0x20];
    ///
    /// let mut tx = pipe.new_tx();
    /// unsafe {
    ///     tx.write(&[&a], 0).unwrap();
    ///     tx.write(&[&b], 1).unwrap();
    /// }
    ///
    /// let epoch = tx.commit().unwrap();
    /// pipe.wait_for_durability(epoch).unwrap();
    ///
    /// let read = pipe.read(0, 2).unwrap();
    /// assert_eq!(read, [a, b].concat());
    /// ```
    #[inline]
    pub fn new_tx(&self) -> FPTransaction<'_> {
        FPTransaction {
            core: &self.core,
            ops: Vec::new(),
        }
    }

    #[inline(always)]
    fn read_2x(&self, index: usize) -> FrozenRes<Vec<u8>> {
        let chunk = self.core.cfg.chunk_size;

        let mut buf = vec![0u8; chunk * 2];
        let base = buf.as_mut_ptr();

        let ptrs = [base, unsafe { base.add(chunk) }];
        self.core.file.preadv(&ptrs, index)?;

        Ok(buf)
    }

    #[inline(always)]
    fn read_4x(&self, index: usize) -> FrozenRes<Vec<u8>> {
        let chunk = self.core.cfg.chunk_size;

        let mut buf = vec![0u8; chunk * 4];
        let base = buf.as_mut_ptr();

        let ptrs = [
            base,
            unsafe { base.add(chunk) },
            unsafe { base.add(chunk * 2) },
            unsafe { base.add(chunk * 3) },
        ];
        self.core.file.preadv(&ptrs, index)?;

        Ok(buf)
    }

    #[inline(always)]
    fn read_multi(&self, index: usize, count: usize) -> FrozenRes<Vec<u8>> {
        let chunk = self.core.cfg.chunk_size;

        let mut buf = vec![0u8; chunk * count];
        let base = buf.as_mut_ptr();

        let mut ptrs = Vec::with_capacity(count);
        for i in 0..count {
            ptrs.push(unsafe { base.add(i * chunk) });
        }

        self.core.file.preadv(&ptrs, index)?;
        Ok(buf)
    }

    fn internal_wait(&self, epoch: u64) -> FrozenRes<()> {
        if hints::unlikely(self.core.epoch.load(atomic::Ordering::Acquire) > epoch) {
            return Ok(());
        }

        if let Some(sync_err) = self.core.get_sync_error() {
            return Err(sync_err);
        }

        let mut guard = match self.core.durable_lock.lock() {
            Ok(g) => g,
            Err(e) => return new_err(err::LPN, e),
        };

        loop {
            if let Some(sync_err) = self.core.get_sync_error() {
                return Err(sync_err);
            }

            if self.core.epoch.load(atomic::Ordering::Acquire) > epoch {
                return Ok(());
            }

            guard = match self.core.durable_cv.wait(guard) {
                Ok(g) => g,
                Err(e) => return new_err(err::LPN, e),
            };
        }
    }
}

impl<const MODULE_ID: u8> Drop for FrozenPipe<MODULE_ID> {
    fn drop(&mut self) {
        self.core.closed.store(true, atomic::Ordering::Release);
        self.core.cv.notify_one(); // notify flusher tx to shut

        if let Some(handle) = self.tx.take() {
            let _ = handle.join();
        }

        // we must acquire an exclusive lock, to prevent dropping while sync, growing or any io ops
        let _io_lock = self.core.acquire_exclusive_io_lock();

        // free up the boxed error (if any)
        let ptr = self.core.error.swap(std::ptr::null_mut(), atomic::Ordering::AcqRel);
        if !ptr.is_null() {
            unsafe {
                drop(Box::from_raw(ptr));
            }
        }
    }
}

#[derive(Debug)]
struct Core {
    cfg: FPCfg,
    cv: sync::Condvar,
    pool: bpool::BufPool,
    lock: sync::Mutex<()>,
    file: ffile::FrozenFile,
    epoch: atomic::AtomicU64,
    io_lock: sync::RwLock<()>,
    durable_cv: sync::Condvar,
    closed: atomic::AtomicBool,
    durable_lock: sync::Mutex<()>,
    mpscq: mpscq::MPSCQueue<WriteType>,
    error: atomic::AtomicPtr<FrozenErr>,
}

impl Core {
    fn new(file: ffile::FrozenFile, pool: bpool::BufPool, cfg: FPCfg) -> FrozenRes<sync::Arc<Self>> {
        Ok(sync::Arc::new(Self {
            cfg,
            file,
            pool,
            cv: sync::Condvar::new(),
            lock: sync::Mutex::new(()),
            io_lock: sync::RwLock::new(()),
            epoch: atomic::AtomicU64::new(0),
            durable_cv: sync::Condvar::new(),
            mpscq: mpscq::MPSCQueue::default(),
            durable_lock: sync::Mutex::new(()),
            closed: atomic::AtomicBool::new(false),
            error: atomic::AtomicPtr::new(std::ptr::null_mut()),
        }))
    }

    #[inline]
    fn acquire_io_lock(&self) -> FrozenRes<sync::RwLockReadGuard<'_, ()>> {
        self.io_lock.read().map_err(|e| new_err_raw(err::LPN, e))
    }

    #[inline]
    fn acquire_exclusive_io_lock(&self) -> FrozenRes<sync::RwLockWriteGuard<'_, ()>> {
        self.io_lock.write().map_err(|e| new_err_raw(err::LPN, e))
    }

    #[inline]
    fn get_sync_error(&self) -> Option<FrozenErr> {
        let ptr = self.error.load(atomic::Ordering::Acquire);
        if hints::likely(ptr.is_null()) {
            return None;
        }

        Some(unsafe { (*ptr).clone() })
    }

    #[inline]
    fn set_sync_error(&self, err: FrozenErr) {
        let boxed = Box::into_raw(Box::new(err));
        let old = self.error.swap(boxed, atomic::Ordering::AcqRel);

        // NOTE: we must free the old error, if any, to avoid mem leaks
        if !old.is_null() {
            unsafe {
                drop(Box::from_raw(old));
            }
        }
    }

    #[inline]
    fn clear_sync_error(&self) {
        let old = self.error.swap(std::ptr::null_mut(), atomic::Ordering::AcqRel);
        if hints::unlikely(!old.is_null()) {
            unsafe {
                drop(Box::from_raw(old));
            }
        }
    }

    #[inline]
    fn incr_epoch(&self) {
        self.epoch.fetch_add(1, atomic::Ordering::Release);
    }

    fn write_batch(&self, batch: Vec<WriteType>) -> FrozenRes<(usize, usize)> {
        let mut max_index = 0usize;
        let mut min_index = usize::MAX;

        for req_type in &batch {
            match req_type {
                WriteType::Single(req) => {
                    let slots = req.alloc.slots();
                    match req.chunks {
                        1 => {
                            self.file.pwrite(slots[0], req.index)?;
                        }
                        _ => {
                            self.file.pwritev(slots, req.index)?;
                        }
                    }

                    min_index = min_index.min(req.index);
                    max_index = max_index.max(req.index + req.chunks);
                }

                WriteType::Transaction(reqs) => {
                    for req in reqs {
                        let slots = req.alloc.slots();
                        match req.chunks {
                            1 => {
                                self.file.pwrite(slots[0], req.index)?;
                            }
                            _ => {
                                self.file.pwritev(slots, req.index)?;
                            }
                        }

                        min_index = min_index.min(req.index);
                        max_index = max_index.max(req.index + req.chunks);
                    }
                }
            }
        }

        Ok((min_index, max_index))
    }

    fn spawn_tx(core: sync::Arc<Self>) -> FrozenRes<thread::JoinHandle<()>> {
        match thread::Builder::new()
            .name("fpipe-flush-tx".into())
            .spawn(move || Self::flush_tx(core))
        {
            Ok(tx) => Ok(tx),
            Err(error) => new_err(err::FXE, error),
        }
    }

    fn flush_tx(core: sync::Arc<Self>) {
        // init phase (acquiring locks)
        let mut guard = match core.lock.lock() {
            Ok(g) => g,
            Err(error) => {
                core.set_sync_error(new_err_raw(err::FXE, error));
                return;
            }
        };

        // sync loop w/ non-busy waiting
        loop {
            guard = match core.cv.wait_timeout(guard, core.cfg.flush_duration) {
                Ok((g, _)) => g,
                Err(e) => {
                    core.set_sync_error(new_err_raw(err::TXE, e));
                    return;
                }
            };

            // INFO: we must drop the guard before syscall, as its a blocking operation and holding
            // the mutex while the syscall takes place is not a good idea, while we drop the mutex
            // and acqurie it again, in-between other process could acquire it and use it
            drop(guard);

            // NOTE: we must read values of close brodcast before acquire exclusive lock,
            // if done otherwise, we impose serious deadlock sort of situation for the the flusher tx

            let req_batch = core.mpscq.drain();
            let closing = core.closed.load(atomic::Ordering::Acquire);

            if req_batch.is_empty() {
                if closing {
                    return;
                }

                guard = match core.lock.lock() {
                    Ok(g) => g,
                    Err(e) => {
                        core.set_sync_error(new_err_raw(err::LPN, e));
                        return;
                    }
                };

                continue;
            }

            // INFO: we must acquire an exclusive IO lock for sync, hence no write/read ops are allowed
            // while sync is in progress

            let io_lock = match core.acquire_exclusive_io_lock() {
                Ok(lock) => lock,
                Err(err) => {
                    core.set_sync_error(err);
                    return;
                }
            };

            // QUESTION: If either of `write_batch`, `file.sync_range` or `file.sync` fails, the req_batch is dropped,
            // as its already drained from the MPSCQ, should we re-insert it so we could retry the same ops in the
            // next flush_tx cycle??

            let (_min, _max) = match core.write_batch(req_batch) {
                Ok(res) => res,
                Err(err) => {
                    core.set_sync_error(err);
                    drop(io_lock);

                    guard = match core.lock.lock() {
                        Ok(g) => g,
                        Err(e) => {
                            core.set_sync_error(new_err_raw(err::LPN, e));
                            return;
                        }
                    };

                    continue;
                }
            };

            // NOTE: On linux, we can initiate writeback (best-effort only) for a given range
            #[cfg(target_os = "linux")]
            if let Err(err) = core.file.sync_range(_min, _max - _min) {
                core.set_sync_error(err);
            }

            // NOTE:
            //
            // - if sync fails, we update the Core::error w/ the received error object
            // - we clear it up when another sync call succeeds
            // - this is valid, as the underlying sync flushes entire mmaped region, hence
            //   even if the last call failed, and the new one succeeded, we do get the durability
            //   guarenty for the old data as well

            match core.file.sync() {
                Err(err) => core.set_sync_error(err),
                Ok(()) => {
                    core.incr_epoch();
                    let _g = match core.durable_lock.lock() {
                        Ok(g) => g,
                        Err(e) => {
                            core.set_sync_error(new_err_raw(err::LPN, e));
                            return;
                        }
                    };

                    core.durable_cv.notify_all();
                    core.clear_sync_error();
                }
            }

            drop(io_lock);
            guard = match core.lock.lock() {
                Ok(g) => g,
                Err(e) => {
                    core.set_sync_error(new_err_raw(err::LPN, e));
                    return;
                }
            };
        }
    }
}

unsafe impl Send for Core {}
unsafe impl Sync for Core {}

/// A context to group multiple write ops into a single atomic operation
///
/// ## Overview
///
/// Use of [`FPTransaction`] allows to group multiple write ops into a single atomic operation, similar to
/// what a transaction represents in database systems
///
/// - All writes ops succeed together
/// - Single epoch is assigned to track durability for the transaction
/// - Durability guarantee is same for all writes included in the transaction
///
/// Simply, this preserves atomic durability semantics for multi index updates
///
/// ## Example
///
/// ```
/// use frozen_core::fpipe::{FPCfg, FrozenPipe};
/// use frozen_core::bpool::BPBackend;
/// use std::time::Duration;
///
/// const MID: u8 = 0;
///
/// let dir = tempfile::tempdir().unwrap();
/// let path = dir.path().join("tx_multi");
///
/// let pipe = FrozenPipe::<MID>::new(
///     path,
///     FPCfg {
///         chunk_size: 0x20,
///         initial_chunk_amount: 4,
///         backend: BPBackend::Dynamic,
///         flush_duration: Duration::from_micros(50),
///     },
/// ).unwrap();
///
/// let a = vec![0x0Au8; 0x20];
/// let b = vec![0x0Bu8; 0x20];
///
/// let mut tx = pipe.new_tx();
/// unsafe {
///     tx.write(&[&a], 0).unwrap();
///     tx.write(&[&b], 1).unwrap();
/// }
///
/// let epoch = tx.commit().unwrap();
/// pipe.wait_for_durability(epoch).unwrap();
///
/// let read = pipe.read(0, 2).unwrap();
/// assert_eq!(read, [a, b].concat());
/// ```
pub struct FPTransaction<'a> {
    core: &'a Core,
    ops: Vec<WriteReq>,
}

impl<'a> FPTransaction<'a> {
    /// Append a write op into the [`FPTransaction`]
    ///
    /// ## Safety
    ///
    /// Same safety requirements as [`FrozenPipe::write`] apply here
    ///
    /// ## Example
    ///
    /// ```
    /// use frozen_core::fpipe::{FPCfg, FrozenPipe};
    /// use frozen_core::bpool::BPBackend;
    /// use std::time::Duration;
    ///
    /// const MID: u8 = 0;
    ///
    /// let dir = tempfile::tempdir().unwrap();
    /// let path = dir.path().join("tx_multi");
    ///
    /// let pipe = FrozenPipe::<MID>::new(
    ///     path,
    ///     FPCfg {
    ///         chunk_size: 0x20,
    ///         initial_chunk_amount: 4,
    ///         backend: BPBackend::Dynamic,
    ///         flush_duration: Duration::from_micros(50),
    ///     },
    /// ).unwrap();
    ///
    /// let a = vec![0x0Au8; 0x20];
    /// let b = vec![0x0Bu8; 0x20];
    ///
    /// let mut tx = pipe.new_tx();
    /// unsafe {
    ///     tx.write(&[&a], 0).unwrap();
    ///     tx.write(&[&b], 1).unwrap();
    /// }
    ///
    /// let epoch = tx.commit().unwrap();
    /// pipe.wait_for_durability(epoch).unwrap();
    ///
    /// let read = pipe.read(0, 2).unwrap();
    /// assert_eq!(read, [a, b].concat());
    /// ```
    #[inline(always)]
    pub unsafe fn write(&mut self, buf: &[&[u8]], index: usize) -> FrozenRes<()> {
        let chunk_size = self.core.cfg.chunk_size;
        let chunks = buf.len();

        let alloc = self.core.pool.allocate(chunks)?;
        for (i, ptr) in alloc.slots().iter().enumerate() {
            std::ptr::copy_nonoverlapping(buf[i].as_ptr(), *ptr, chunk_size);
        }

        self.ops.push(WriteReq::new(index, chunks, alloc));
        Ok(())
    }

    /// Commit the transaction, applying all the writes ops, combined into a single atomic operation
    ///
    /// ## Guarantees
    ///
    /// - All writes are applied under a single epoch
    /// - All writes belong to the same durability batch
    ///
    /// ## Example
    ///
    /// ```
    /// use frozen_core::fpipe::{FPCfg, FrozenPipe};
    /// use frozen_core::bpool::BPBackend;
    /// use std::time::Duration;
    ///
    /// const MID: u8 = 0;
    ///
    /// let dir = tempfile::tempdir().unwrap();
    /// let path = dir.path().join("tx_multi");
    ///
    /// let pipe = FrozenPipe::<MID>::new(
    ///     path,
    ///     FPCfg {
    ///         chunk_size: 0x20,
    ///         initial_chunk_amount: 4,
    ///         backend: BPBackend::Dynamic,
    ///         flush_duration: Duration::from_micros(50),
    ///     },
    /// ).unwrap();
    ///
    /// let a = vec![0x0Au8; 0x20];
    /// let b = vec![0x0Bu8; 0x20];
    ///
    /// let mut tx = pipe.new_tx();
    /// unsafe {
    ///     tx.write(&[&a], 0).unwrap();
    ///     tx.write(&[&b], 1).unwrap();
    /// }
    ///
    /// let epoch = tx.commit().unwrap();
    /// pipe.wait_for_durability(epoch).unwrap();
    ///
    /// let read = pipe.read(0, 2).unwrap();
    /// assert_eq!(read, [a, b].concat());
    /// ```
    #[inline(always)]
    pub fn commit(self) -> FrozenRes<u64> {
        if let Some(err) = self.core.get_sync_error() {
            return Err(err);
        }

        // protection against a potential footgun ;-)
        if hints::unlikely(self.ops.is_empty()) {
            return new_err(
                err::HCF,
                "Transaction does not contain any write ops for a commit to succeed",
            );
        }

        let _lock = self.core.acquire_io_lock()?;
        let epoch = self.core.epoch.load(atomic::Ordering::Acquire);
        self.core.mpscq.push(WriteType::Transaction(self.ops));

        Ok(epoch)
    }
}

#[derive(Debug)]
enum WriteType {
    Single(WriteReq),
    Transaction(Vec<WriteReq>),
}

#[derive(Debug)]
struct WriteReq {
    index: usize,
    chunks: usize,
    alloc: bpool::Allocation,
}

impl WriteReq {
    fn new(index: usize, chunks: usize, alloc: bpool::Allocation) -> Self {
        Self { alloc, index, chunks }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::sync::{Arc, Barrier};
    use std::thread;
    use std::time::{Duration, Instant};

    const MID: u8 = 0;
    const INIT: usize = 4;
    const CHUNK: usize = 0x10;

    // NOTE: we keep this small on purpose, so we won't have to wait at all in tests
    const FLUSH_DURATION: time::Duration = time::Duration::from_micros(10);

    fn new_env() -> (tempfile::TempDir, FrozenPipe<MID>) {
        let dir = tempfile::tempdir().unwrap();
        let path = dir.path().join("tmp_pipe");

        let pipe = FrozenPipe::<MID>::new(
            path,
            FPCfg {
                chunk_size: CHUNK,
                initial_chunk_amount: INIT,
                flush_duration: FLUSH_DURATION,
                backend: bpool::BPBackend::Dynamic,
            },
        )
        .unwrap();

        (dir, pipe)
    }

    mod lifecycle {
        use super::*;

        #[test]
        fn ok_new() {
            let (_dir, pipe) = new_env();
            assert_eq!(pipe.core.epoch.load(atomic::Ordering::Acquire), 0);
        }

        #[test]
        fn ok_drop() {
            let (_dir, pipe) = new_env();
            drop(pipe);
        }
    }

    mod fp_write {
        use super::*;

        #[test]
        fn ok_write_and_wait() {
            let (_dir, pipe) = new_env();

            let data = vec![0xAB; CHUNK];
            let buf = vec![&data[0..CHUNK]];
            let epoch = unsafe { pipe.write(&buf, 0) }.unwrap();
            pipe.wait_for_durability(epoch).unwrap();
        }

        #[test]
        fn ok_write_multiple_chunks() {
            let (_dir, pipe) = new_env();

            let data = vec![0xAA; CHUNK * 2];
            let bufs = vec![&data[0..CHUNK], &data[CHUNK..(CHUNK * 2)]];

            let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
            pipe.wait_for_durability(epoch).unwrap();
        }

        #[test]
        fn ok_force_durability() {
            let (_dir, pipe) = new_env();

            let data = vec![1u8; CHUNK];
            let bufs = vec![&data[0..CHUNK]];
            let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
            pipe.force_durability(epoch).unwrap();
        }

        #[test]
        fn ok_write_epoch_monotonic() {
            let (_dir, pipe) = new_env();
            let data = vec![1u8; CHUNK];
            let buf = vec![&data[0..CHUNK]];

            let e1 = unsafe { pipe.write(&buf, 0) }.unwrap();
            pipe.wait_for_durability(e1).unwrap();

            let e2 = unsafe { pipe.write(&buf, 1) }.unwrap();
            pipe.wait_for_durability(e2).unwrap();

            assert!(e2 >= e1);
        }

        #[test]
        fn ok_write_large() {
            let (_dir, pipe) = new_env();
            let data = vec![0xAB; CHUNK * 0x80];
            let bufs: Vec<&[u8]> = data.chunks_exact(CHUNK).collect();

            let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
            pipe.wait_for_durability(epoch).unwrap();
        }

        #[test]
        fn ok_write_large_batch() {
            let (_dir, pipe) = new_env();

            for i in 0..0x10 {
                let data = vec![i as u8; CHUNK];
                let buf = vec![&data[0..CHUNK]];
                let epoch = unsafe { pipe.write(&buf, i) }.unwrap();
                pipe.wait_for_durability(epoch).unwrap();
            }
        }

        #[test]
        fn ok_write_is_blocked_at_pool_exhaustion_for_prealloc_backend() {
            let dir = tempfile::tempdir().unwrap();
            let path = dir.path().join("tmp_pipe");

            let cfg = FPCfg {
                chunk_size: CHUNK,
                initial_chunk_amount: INIT,
                backend: bpool::BPBackend::Prealloc { capacity: 1 },
                flush_duration: FLUSH_DURATION,
            };
            let pipe = Arc::new(FrozenPipe::<MID>::new(path, cfg).unwrap());

            let p2 = pipe.clone();
            let t = thread::spawn(move || {
                let data = vec![1u8; CHUNK];
                let buf = vec![&data[0..CHUNK]];
                let epoch = unsafe { p2.write(&buf, 0) }.unwrap();
                p2.wait_for_durability(epoch).unwrap();
            });

            thread::sleep(Duration::from_millis(0x0A));

            let data = vec![2u8; CHUNK];
            let buf = vec![&data[0..CHUNK]];
            let epoch = unsafe { pipe.write(&buf, 1) }.unwrap();
            pipe.wait_for_durability(epoch).unwrap();

            t.join().unwrap();
        }
    }

    mod fp_read {
        use super::*;

        #[test]
        fn ok_read_single_after_write() {
            let (_dir, pipe) = new_env();

            let data = vec![0xAB; CHUNK];
            let buf = vec![&data[0..CHUNK]];
            let epoch = unsafe { pipe.write(&buf, 0) }.unwrap();
            pipe.wait_for_durability(epoch).unwrap();

            let read = pipe.read_single(0).unwrap();
            assert_eq!(read, data);
        }

        #[test]
        fn ok_read_2x() {
            let (_dir, pipe) = new_env();

            let data = vec![0xAA; CHUNK * 2];
            let buf = vec![&data[0..CHUNK], &data[CHUNK..(CHUNK * 2)]];

            let epoch = unsafe { pipe.write(&buf, 0) }.unwrap();
            pipe.wait_for_durability(epoch).unwrap();

            let read = pipe.read(0, 2).unwrap();
            assert_eq!(read, data);
        }

        #[test]
        fn ok_read_4x() {
            let (_dir, pipe) = new_env();

            let data = vec![0xBB; CHUNK * 4];
            let bufs: Vec<&[u8]> = data.chunks_exact(CHUNK).collect();

            let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
            pipe.wait_for_durability(epoch).unwrap();

            let read = pipe.read(0, 4).unwrap();
            assert_eq!(read, data);
        }

        #[test]
        fn ok_read_multi_generic() {
            let (_dir, pipe) = new_env();

            let data = vec![0xCC; CHUNK * 6];
            let bufs: Vec<&[u8]> = data.chunks_exact(CHUNK).collect();

            let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
            pipe.wait_for_durability(epoch).unwrap();

            let read = pipe.read(0, 6).unwrap();
            assert_eq!(read, data);
        }

        #[test]
        fn ok_read_multiple_indices() {
            let (_dir, pipe) = new_env();

            for i in 0..2 {
                let data = vec![i as u8; CHUNK];
                let buf = vec![&data[0..CHUNK]];

                let epoch = unsafe { pipe.write(&buf, i) }.unwrap();
                pipe.wait_for_durability(epoch).unwrap();
            }

            for i in 0..2 {
                let read = pipe.read_single(i).unwrap();
                assert_eq!(read, vec![i as u8; CHUNK]);
            }
        }

        #[test]
        fn ok_overwrite_same_index() {
            let (_dir, pipe) = new_env();

            let data1 = vec![0xAA; CHUNK];
            let buf1 = vec![&data1[0..CHUNK]];
            let e1 = unsafe { pipe.write(&buf1, 0) }.unwrap();
            pipe.wait_for_durability(e1).unwrap();

            let data2 = vec![0xBB; CHUNK];
            let buf2 = vec![&data2[0..CHUNK]];
            let e2 = unsafe { pipe.write(&buf2, 0) }.unwrap();
            pipe.wait_for_durability(e2).unwrap();

            let read = pipe.read_single(0).unwrap();
            assert_eq!(read, data2);
        }

        #[test]
        fn ok_large_read_multi() {
            let (_dir, pipe) = new_env();

            let data = vec![0x7A; CHUNK * 0x10];
            let bufs: Vec<&[u8]> = data.chunks_exact(CHUNK).collect();

            let epoch = unsafe { pipe.write(&bufs, 0) }.unwrap();
            pipe.wait_for_durability(epoch).unwrap();

            let read = pipe.read(0, 0x10).unwrap();
            assert_eq!(read, data);
        }

        #[test]
        fn ok_read_concurrent() {
            const THREADS: usize = 2;

            let (_dir, pipe) = new_env();
            let pipe = Arc::new(pipe);

            for i in 0..THREADS {
                let data = vec![i as u8; CHUNK];
                let buf = vec![&data[0..CHUNK]];
                let epoch = unsafe { pipe.write(&buf, i) }.unwrap();
                pipe.wait_for_durability(epoch).unwrap();
            }

            let mut handles = Vec::new();
            for i in 0..THREADS {
                let pipe = pipe.clone();

                handles.push(thread::spawn(move || {
                    let read = pipe.read_single(i).unwrap();
                    assert_eq!(read, vec![i as u8; CHUNK]);
                }));
            }

            for h in handles {
                h.join().unwrap();
            }
        }

        #[test]
        fn ok_concurrent_read_write() {
            let (_dir, pipe) = new_env();
            let pipe = Arc::new(pipe);

            let writer = {
                let pipe = pipe.clone();
                thread::spawn(move || {
                    for i in 0..4 {
                        let data = vec![i as u8; CHUNK];
                        let buf = vec![&data[0..CHUNK]];
                        let epoch = unsafe { pipe.write(&buf, i) }.unwrap();
                        pipe.wait_for_durability(epoch).unwrap();
                    }
                })
            };

            let reader = {
                let pipe = pipe.clone();
                thread::spawn(move || {
                    for _ in 0..4 {
                        let _ = pipe.read_single(0);
                    }
                })
            };

            writer.join().unwrap();
            reader.join().unwrap();
        }

        #[test]
        fn ok_read_after_grow() {
            let (_dir, pipe) = new_env();

            pipe.grow(8).unwrap();

            let data = vec![0x5A; CHUNK];
            let buf = vec![&data[0..CHUNK]];
            let epoch = unsafe { pipe.write(&buf, INIT) }.unwrap();
            pipe.wait_for_durability(epoch).unwrap();

            let read = pipe.read_single(INIT).unwrap();
            assert_eq!(read, data);
        }
    }

    mod batching {
        use super::*;

        #[test]
        fn ok_multiple_writes_single_batch() {
            let (_dir, pipe) = new_env();

            let mut epochs = Vec::new();
            for i in 0..4 {
                let data = vec![i as u8; CHUNK];
                let buf = vec![&data[0..CHUNK]];
                epochs.push(unsafe { pipe.write(&buf, i) }.unwrap());
            }

            for e in epochs {
                pipe.wait_for_durability(e).unwrap();
            }

            assert!(pipe.core.epoch.load(atomic::Ordering::Acquire) > 0);
        }
    }

    mod fp_grow {
        use super::*;

        #[test]
        fn ok_grow_file() {
            let (_dir, pipe) = new_env();
            let curr_len = pipe.core.file.length().unwrap();

            pipe.grow(0x10).unwrap();
            let new_len = pipe.core.file.length().unwrap();

            assert_eq!(new_len, curr_len + (0x10 * pipe.core.cfg.chunk_size));
        }

        #[test]
        fn ok_write_after_grow() {
            let (_dir, pipe) = new_env();
            pipe.grow(0x10).unwrap();

            let data = vec![0xBB; CHUNK];
            let buf = vec![&data[0..CHUNK]];
            let epoch = unsafe { pipe.write(&buf, INIT) }.unwrap();
            pipe.wait_for_durability(epoch).unwrap();
        }

        #[test]
        fn ok_grow_while_writing() {
            let (_dir, pipe) = new_env();
            let pipe = Arc::new(pipe);
            let curr_len = pipe.core.file.length().unwrap();

            let p2 = pipe.clone();
            let writer = thread::spawn(move || {
                for i in 0..INIT {
                    let data = vec![1u8; CHUNK];
                    let buf = vec![&data[0..CHUNK]];
                    let epoch = unsafe { p2.write(&buf, i) }.unwrap();
                    p2.wait_for_durability(epoch).unwrap();
                }
            });

            thread::sleep(Duration::from_millis(10));

            pipe.grow(0x3A).unwrap();
            writer.join().unwrap();

            let new_len = pipe.core.file.length().unwrap();
            assert_eq!(new_len, curr_len + (0x3A * pipe.core.cfg.chunk_size));
        }
    }

    mod fp_tx {
        use super::*;

        #[test]
        fn ok_tx_basic_multi_write() {
            let (_dir, pipe) = new_env();

            let a = vec![1u8; CHUNK];
            let b = vec![2u8; CHUNK];
            let c = vec![3u8; CHUNK];

            let mut tx = pipe.new_tx();
            unsafe {
                tx.write(&[&a], 0).unwrap();
                tx.write(&[&b], 1).unwrap();
                tx.write(&[&c], 2).unwrap();
            }

            let epoch = tx.commit().unwrap();
            pipe.wait_for_durability(epoch).unwrap();

            let read = pipe.read(0, 3).unwrap();
            assert_eq!(read, [a, b, c].concat());
        }

        #[test]
        fn ok_tx_single_epoch() {
            let (_dir, pipe) = new_env();

            let a = vec![0x0Au8; CHUNK];
            let b = vec![0x14u8; CHUNK];

            let mut tx = pipe.new_tx();
            unsafe {
                tx.write(&[&a], 0).unwrap();
                tx.write(&[&b], 1).unwrap();
            }

            let epoch = tx.commit().unwrap();

            let c = vec![0x1Eu8; CHUNK];
            let next_epoch = unsafe { pipe.write(&[&c], 2) }.unwrap();

            assert!(next_epoch >= epoch);
        }

        #[test]
        fn ok_tx_overwrite_last_wins() {
            let (_dir, pipe) = new_env();

            let a = vec![1u8; CHUNK];
            let b = vec![2u8; CHUNK];

            let mut tx1 = pipe.new_tx();
            unsafe {
                tx1.write(&[&a], 0).unwrap();
            }

            let e1 = tx1.commit().unwrap();
            pipe.wait_for_durability(e1).unwrap();

            let mut tx2 = pipe.new_tx();
            unsafe {
                tx2.write(&[&b], 0).unwrap();
            }

            let epoch = tx2.commit().unwrap();
            pipe.wait_for_durability(epoch).unwrap();

            let read = pipe.read_single(0).unwrap();
            assert_eq!(read, b);
        }

        #[test]
        fn ok_tx_concurrent_non_overlapping() {
            let (_dir, pipe) = new_env();
            let pipe = Arc::new(pipe);

            let mut handles = Vec::new();
            for i in 0..2 {
                let pipe = pipe.clone();

                handles.push(thread::spawn(move || {
                    let data = vec![i as u8; CHUNK];

                    let mut tx = pipe.new_tx();
                    unsafe {
                        tx.write(&[&data], i * 2).unwrap();
                        tx.write(&[&data], i * 2 + 1).unwrap();
                    }

                    let epoch = tx.commit().unwrap();
                    pipe.wait_for_durability(epoch).unwrap();
                }));
            }

            for h in handles {
                h.join().unwrap();
            }

            for i in 0..2 {
                let v0 = pipe.read_single(i * 2).unwrap();
                let v1 = pipe.read_single(i * 2 + 1).unwrap();

                assert_eq!(v0, vec![i as u8; CHUNK]);
                assert_eq!(v1, vec![i as u8; CHUNK]);
            }
        }

        #[test]
        fn ok_tx_persists_across_reopen() {
            let dir = tempfile::tempdir().unwrap();
            let path = dir.path().join("tmp_pipe_tx");

            let cfg = FPCfg {
                chunk_size: CHUNK,
                initial_chunk_amount: INIT,
                flush_duration: FLUSH_DURATION,
                backend: bpool::BPBackend::Dynamic,
            };

            {
                let pipe = FrozenPipe::<MID>::new(&path, cfg.clone()).unwrap();

                let a = vec![0x3Au8; CHUNK];
                let b = vec![0x54u8; CHUNK];

                let mut tx = pipe.new_tx();
                unsafe {
                    tx.write(&[&a], 0).unwrap();
                    tx.write(&[&b], 1).unwrap();
                }

                let epoch = tx.commit().unwrap();
                pipe.wait_for_durability(epoch).unwrap();
            }

            {
                let pipe = FrozenPipe::<MID>::new(&path, cfg).unwrap();

                let v0 = pipe.read_single(0).unwrap();
                let v1 = pipe.read_single(1).unwrap();

                assert_eq!(v0, vec![0x3A; CHUNK]);
                assert_eq!(v1, vec![0x54; CHUNK]);
            }
        }

        #[test]
        fn err_tx_empty_commit() {
            let (_dir, pipe) = new_env();

            let tx = pipe.new_tx();
            assert!(tx.commit().is_err());
        }
    }

    mod concurrency {
        use super::*;

        #[test]
        fn ok_multi_writer() {
            const THREADS: usize = 2;
            const ITERS: usize = 0x10;

            let (_dir, pipe) = new_env();
            let pipe = Arc::new(pipe);

            let mut handles = Vec::new();
            for t in 0..THREADS {
                let pipe = pipe.clone();

                handles.push(thread::spawn(move || {
                    for i in 0..ITERS {
                        let data = vec![t as u8; CHUNK];
                        let buf = vec![&data[0..CHUNK]];
                        let epoch = unsafe { pipe.write(&buf, i) }.unwrap();
                        pipe.wait_for_durability(epoch).unwrap();
                    }
                }));
            }

            for h in handles {
                h.join().unwrap();
            }
        }

        #[test]
        fn ok_barrier_start_parallel_writes() {
            const THREADS: usize = 2;

            let (_dir, pipe) = new_env();
            let pipe = Arc::new(pipe);
            let barrier = Arc::new(Barrier::new(THREADS));

            let mut handles = Vec::new();

            for i in 0..THREADS {
                let pipe = pipe.clone();
                let barrier = barrier.clone();

                handles.push(thread::spawn(move || {
                    barrier.wait();

                    let data = vec![i as u8; CHUNK];
                    let buf = vec![&data[0..CHUNK]];
                    let epoch = unsafe { pipe.write(&buf, i) }.unwrap();
                    pipe.wait_for_durability(epoch).unwrap();
                }));
            }

            for h in handles {
                h.join().unwrap();
            }
        }
    }

    mod durability_wait {
        use super::*;

        #[test]
        fn ok_wait_blocks_until_flush() {
            let (_dir, pipe) = new_env();

            let data = vec![0x55; CHUNK];
            let buf = vec![&data[0..CHUNK]];
            let epoch = unsafe { pipe.write(&buf, 0) }.unwrap();

            let start = Instant::now();
            pipe.wait_for_durability(epoch).unwrap();

            assert!(start.elapsed() >= Duration::from_micros(1));
        }

        #[test]
        fn ok_force_durability_concurrent() {
            let (_dir, pipe) = new_env();
            let pipe = Arc::new(pipe);

            let mut handles = Vec::new();
            for i in 0..4 {
                let pipe = pipe.clone();

                handles.push(thread::spawn(move || {
                    let data = vec![i as u8; CHUNK];
                    let buf = vec![&data[0..CHUNK]];
                    let epoch = unsafe { pipe.write(&buf, i) }.unwrap();
                    pipe.force_durability(epoch).unwrap();
                }));
            }

            for h in handles {
                h.join().unwrap();
            }
        }
    }

    mod shutdown {
        use super::*;

        #[test]
        fn ok_drop_with_pending_writes() {
            let (_dir, pipe) = new_env();

            let data = vec![0xAA; CHUNK];
            let buf = vec![&data[0..CHUNK]];
            unsafe { pipe.write(&buf, 0) }.unwrap();
            drop(pipe);
        }

        #[test]
        fn ok_drop_during_activity() {
            let (_dir, pipe) = new_env();
            let pipe = Arc::new(pipe);

            let p2 = pipe.clone();
            let handle = thread::spawn(move || {
                let data = vec![1u8; CHUNK];
                let buf = vec![&data[0..CHUNK]];
                let epoch = unsafe { p2.write(&buf, 0) }.unwrap();
                p2.wait_for_durability(epoch).unwrap();
            });

            thread::sleep(Duration::from_millis(10));
            drop(pipe);

            handle.join().unwrap();
        }

        #[test]
        fn ok_drop_while_writer_waiting() {
            let (_dir, pipe) = new_env();
            let pipe = Arc::new(pipe);

            let p2 = pipe.clone();
            let handle = thread::spawn(move || {
                for i in 0..0x10 {
                    let data = vec![1u8; CHUNK];
                    let buf = vec![&data[0..CHUNK]];
                    let epoch = unsafe { p2.write(&buf, i) }.unwrap();
                    p2.wait_for_durability(epoch).unwrap();
                }
            });

            thread::sleep(Duration::from_millis(0x0A));
            drop(pipe);

            handle.join().unwrap();
        }
    }
}