laurus 0.10.0

Unified search library for lexical, vector, and semantic retrieval
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
//! File-based storage implementation.
//!
//! This module provides disk-based persistent storage with support for both
//! traditional file I/O and memory-mapped files (mmap).
//!
//! # Features
//!
//! - **Traditional I/O**: Buffered reads/writes with configurable buffer size
//! - **Memory-mapped I/O**: High-performance reads using mmap with caching
//! - **File locking**: Concurrent access control
//! - **Flexible configuration**: Buffer size, sync writes, temp directory, etc.
//!
//! # Memory-Mapped Mode
//!
//! When `FileStorageConfig.use_mmap` is enabled:
//! - Files are mapped into memory for reading
//! - Mapped files are cached for reuse
//! - File modifications are detected and cache is invalidated
//! - Supports prefaulting and huge pages for performance
//!
//! # Example
//!
//! ```
//! use laurus::storage::file::{FileStorage, FileStorageConfig};
//! use laurus::storage::Storage;
//! use std::io::Write;
//! use tempfile::TempDir;
//!
//! # fn main() -> laurus::Result<()> {
//! // Create storage with mmap enabled
//! let temp_dir = TempDir::new().unwrap();
//! let mut config = FileStorageConfig::new(temp_dir.path());
//! config.use_mmap = true;
//! let storage = FileStorage::new(temp_dir.path(), config)?;
//!
//! // Write a file
//! let mut output = storage.create_output("test.dat")?;
//! output.write_all(b"Hello, world!")?;
//! output.close()?;
//!
//! // Read using mmap
//! let mut input = storage.open_input("test.dat")?;
//! let mut buffer = Vec::new();
//! input.read_to_end(&mut buffer)?;
//! # Ok(())
//! # }
//! ```

use std::collections::HashMap;
use std::fs::{File, OpenOptions};
use std::io::{BufReader, BufWriter, Cursor, Read, Seek, SeekFrom, Write};
use std::path::{Path, PathBuf};
use std::sync::{Arc, Mutex, RwLock};
use std::time::SystemTime;

use memmap2::{Mmap, MmapOptions};

use crate::error::{LaurusError, Result};
use crate::storage::{
    LockManager, Storage, StorageError, StorageInput, StorageLock, StorageOutput,
};

/// Configuration specific to file-based storage.
///
/// This configuration includes the storage path and various options for
/// file I/O, memory-mapping, and locking behavior.
///
/// # Memory-Mapped Files (mmap)
///
/// When `use_mmap` is enabled, FileStorage uses memory-mapped I/O for reading files,
/// which can significantly improve performance for large files by:
/// - Avoiding system call overhead
/// - Leveraging the OS page cache
/// - Enabling zero-copy reads
///
/// Additional mmap options:
/// - `mmap_cache_size`: Number of mmap files to keep cached
/// - `mmap_enable_prefault`: Pre-populate page tables for faster initial access
/// - `mmap_enable_hugepages`: Use huge pages if available (Linux)
///
/// # Example
///
/// ```
/// use laurus::storage::file::FileStorageConfig;
///
/// // Basic file storage
/// let config = FileStorageConfig::new("/data/index");
///
/// // High-performance configuration with mmap
/// let mut config = FileStorageConfig::new("/data/index");
/// config.use_mmap = true;
/// config.mmap_enable_prefault = true;
/// config.buffer_size = 131072; // 128KB for non-mmap operations
/// ```
#[derive(Debug, Clone)]
pub struct FileStorageConfig {
    /// Path to the storage directory.
    pub path: std::path::PathBuf,

    /// Whether to use memory-mapped files for reading.
    /// When true, files are read using mmap instead of traditional
    /// I/O. **Default `true` on every platform** as of Issue #504
    /// (Linux/macOS) and Issue #508 (Windows); set the
    /// `LAURUS_NO_MMAP=1` environment variable when constructing a
    /// `FileStorageConfig` via [`Self::new`] to opt out.
    pub use_mmap: bool,

    /// Buffer size for traditional I/O operations (bytes).
    /// Default: 65536 (64KB). Used when `use_mmap` is false.
    pub buffer_size: usize,

    /// Whether to sync writes immediately to disk.
    /// When true, calls fsync after each write for durability.
    pub sync_writes: bool,

    /// Whether to use file locking for concurrency control.
    pub use_locking: bool,

    /// Temporary directory for temp files.
    /// If None, uses the storage directory.
    pub temp_dir: Option<String>,

    /// Maximum number of memory-mapped files to cache.
    /// Only used when `use_mmap` is true. Default: 100.
    pub mmap_cache_size: usize,

    /// Enable prefaulting for memory-mapped files.
    /// Pre-populates page tables for faster initial access.
    /// Only used when `use_mmap` is true.
    pub mmap_enable_prefault: bool,

    /// Enable huge pages for memory-mapped files if available.
    /// Can improve TLB performance for large files (Linux only).
    /// Only used when `use_mmap` is true.
    ///
    /// **Note**: This field is currently a placeholder and is not yet used
    /// by the `get_mmap()` implementation. Setting it has no effect at this time.
    pub mmap_enable_hugepages: bool,
}

impl FileStorageConfig {
    /// Create a new FileStorageConfig with the given path and default settings.
    ///
    /// # Default Settings
    ///
    /// - `use_mmap`: **`true` on every platform** (Linux / macOS /
    ///   other Unix per Issue #504; Windows per Issue #508 once the
    ///   cache eviction in [`Self::create_output`] /
    ///   [`Self::delete_file`] landed). mmap-backed reads are the
    ///   default so the lexical posting decoder can take the
    ///   zero-copy path through `StorageInput::as_slice`. Set the
    ///   `LAURUS_NO_MMAP=1` environment variable to opt out (debug /
    ///   fallback for hosts where mmap misbehaves).
    /// - `buffer_size`: 65536 (64KB)
    /// - `sync_writes`: false
    /// - `use_locking`: true
    /// - `mmap_cache_size`: 100
    /// - `mmap_enable_prefault`: false
    /// - `mmap_enable_hugepages`: false
    pub fn new<P: AsRef<std::path::Path>>(path: P) -> Self {
        // The mmap default is platform-specific (Unix on / Windows
        // off, Issue #504, #508); the per-OS policy lives in
        // `super::platform` so this call site stays platform-agnostic.
        FileStorageConfig {
            path: path.as_ref().to_path_buf(),
            use_mmap: super::platform::default_use_mmap(),
            buffer_size: 65536,
            sync_writes: false,
            use_locking: true,
            temp_dir: None,
            mmap_cache_size: 100,
            mmap_enable_prefault: false,
            mmap_enable_hugepages: false,
        }
    }
}

/// Metadata information for cached files.
#[derive(Debug, Clone)]
struct MmapFileMetadata {
    size: u64,
    modified: u64,
}

/// A file-based storage implementation.
///
/// FileStorage provides persistent disk-based storage with two read modes:
///
/// 1. **Traditional I/O** (default): Uses buffered file reads with `BufReader`
/// 2. **Memory-mapped I/O**: Uses mmap for zero-copy reads when `config.use_mmap` is true
///
/// The mmap mode includes caching and automatic invalidation on file changes,
/// making it suitable for read-heavy workloads with large files.
#[derive(Debug)]
pub struct FileStorage {
    /// The root directory for storage.
    directory: PathBuf,
    /// Storage configuration.
    config: FileStorageConfig,
    /// Lock manager for coordinating access.
    lock_manager: Arc<FileLockManager>,
    /// Whether the storage is closed.
    closed: bool,
    /// Cache of memory-mapped files (only used when use_mmap is true).
    mmap_cache: Arc<RwLock<HashMap<String, Arc<Mmap>>>>,
    /// Cache of file metadata for mmap files.
    mmap_metadata_cache: Arc<RwLock<HashMap<String, MmapFileMetadata>>>,
}

impl FileStorage {
    /// Create a new file storage in the given directory.
    pub fn new<P: AsRef<Path>>(directory: P, config: FileStorageConfig) -> Result<Self> {
        let directory = directory.as_ref().to_path_buf();

        // Create directory if it doesn't exist
        if !directory.exists() {
            std::fs::create_dir_all(&directory)
                .map_err(|e| LaurusError::storage(format!("Failed to create directory: {e}")))?;
        }

        // Verify it's a directory
        if !directory.is_dir() {
            return Err(LaurusError::storage(format!(
                "Path is not a directory: {}",
                directory.display()
            )));
        }

        let lock_manager = Arc::new(FileLockManager::new(directory.clone()));

        Ok(FileStorage {
            directory,
            config,
            lock_manager,
            closed: false,
            mmap_cache: Arc::new(RwLock::new(HashMap::new())),
            mmap_metadata_cache: Arc::new(RwLock::new(HashMap::new())),
        })
    }

    /// Get the full path for a file name.
    fn file_path(&self, name: &str) -> PathBuf {
        self.directory.join(name)
    }

    /// Check if the storage is closed.
    fn check_closed(&self) -> Result<()> {
        if self.closed {
            Err(StorageError::StorageClosed.into())
        } else {
            Ok(())
        }
    }

    /// Recursively fsync a directory and its subdirectories.
    ///
    /// On Unix, opening a directory and calling `sync_all()` ensures that
    /// directory entries (file creation, rename, delete) are flushed to disk.
    ///
    /// On Windows, directories cannot be opened as regular files, so directory
    /// fsync is not applicable. Instead, the file-level `sync_all()` in
    /// `FileOutput::close()` ensures data durability, and the explicit handle
    /// release ensures file visibility for subsequent reads.
    fn sync_directory_recursive(dir: &Path) -> Result<()> {
        if !dir.exists() {
            return Ok(());
        }

        // Fsync subdirectories first (depth-first).
        if let Ok(entries) = std::fs::read_dir(dir) {
            for entry in entries.flatten() {
                if entry.path().is_dir() {
                    Self::sync_directory_recursive(&entry.path())?;
                }
            }
        }

        // Fsync the directory itself (Unix only).
        // Windows does not support opening directories as files for fsync.
        #[cfg(unix)]
        {
            let dir_file = File::open(dir).map_err(|e| {
                LaurusError::storage(format!(
                    "Failed to open directory {:?} for sync: {}",
                    dir, e
                ))
            })?;
            dir_file.sync_all().map_err(|e| {
                LaurusError::storage(format!("Failed to sync directory {:?}: {}", dir, e))
            })?;
        }

        Ok(())
    }

    /// Drop any cached memory map (and its metadata entry) for `name`
    /// so a subsequent `truncate(true)` or `remove_file` on the
    /// underlying file can proceed.
    ///
    /// # Why this exists
    ///
    /// On Windows the OS holds an exclusive lock on memory-mapped
    /// files (`ERROR_USER_MAPPED_FILE`, os error 1224). Without this
    /// eviction, [`Self::create_output`] and [`Self::delete_file`]
    /// would fail whenever this `FileStorage` still owns a cached
    /// `Arc<Mmap>` for the target file (Issue #508).
    ///
    /// On Unix the call is a no-op for correctness — the kernel keeps
    /// the inode alive across truncate / unlink — but evicting the
    /// stale entry is still useful so subsequent reads do not hand
    /// out a mapping that no longer matches the file content.
    ///
    /// # Lifetime contract
    ///
    /// Any `Arc<Mmap>` clones previously handed out via
    /// [`Self::open_input`] stay alive through the `Arc` refcount;
    /// this method only drops *the cache's* clone. Callers must
    /// ensure no other code path holds a `StorageInput` (or
    /// `as_slice()` borrow derived from it) for the same `name` when
    /// they invoke a mutation, otherwise the outstanding `Arc<Mmap>`
    /// will keep the Windows file lock alive. Today every laurus
    /// reader consumes its `StorageInput` within a single function
    /// scope, so this contract holds by construction.
    fn evict_mmap(&self, name: &str) {
        self.mmap_cache.write().unwrap().remove(name);
        self.mmap_metadata_cache.write().unwrap().remove(name);
    }

    /// Get or create a memory map for a file.
    fn get_mmap(&self, name: &str) -> Result<Arc<Mmap>> {
        let file_path = self.file_path(name);

        // Check cache first
        {
            let cache = self.mmap_cache.read().unwrap();
            if let Some(mmap) = cache.get(name) {
                // Verify the file hasn't changed
                if self.is_mmap_file_unchanged(name, &file_path)? {
                    return Ok(Arc::clone(mmap));
                }
            }
        }

        // Create new memory map
        let file = File::open(&file_path).map_err(|e| {
            if e.kind() == std::io::ErrorKind::NotFound {
                StorageError::FileNotFound(name.to_string())
            } else {
                StorageError::IoError(format!("Failed to open file {name}: {e}"))
            }
        })?;

        let mut mmap_opts = MmapOptions::new();
        if self.config.mmap_enable_prefault {
            mmap_opts.populate();
        }

        let mmap = unsafe {
            mmap_opts
                .map(&file)
                .map_err(|e| LaurusError::storage(format!("Failed to mmap file {name}: {e}")))?
        };

        let mmap_arc = Arc::new(mmap);

        // Update cache
        {
            let mut cache = self.mmap_cache.write().unwrap();
            cache.insert(name.to_string(), Arc::clone(&mmap_arc));
        }

        // Update metadata cache
        self.update_mmap_metadata_cache(name, &file_path)?;

        Ok(mmap_arc)
    }

    /// Check if a memory-mapped file has been modified since last cached.
    fn is_mmap_file_unchanged(&self, name: &str, path: &Path) -> Result<bool> {
        let metadata_cache = self.mmap_metadata_cache.read().unwrap();

        if let Some(cached_meta) = metadata_cache.get(name) {
            let current_meta = std::fs::metadata(path)
                .map_err(|e| LaurusError::storage(format!("Failed to get metadata: {e}")))?;

            let current_size = current_meta.len();
            let current_modified = current_meta
                .modified()
                .unwrap_or(SystemTime::UNIX_EPOCH)
                .duration_since(SystemTime::UNIX_EPOCH)
                .unwrap_or_default()
                .as_secs();

            return Ok(cached_meta.size == current_size && cached_meta.modified == current_modified);
        }

        Ok(false)
    }

    /// Update metadata cache for a memory-mapped file.
    fn update_mmap_metadata_cache(&self, name: &str, path: &Path) -> Result<()> {
        let metadata = std::fs::metadata(path)
            .map_err(|e| LaurusError::storage(format!("Failed to get metadata: {e}")))?;

        let size = metadata.len();
        let modified = metadata
            .modified()
            .unwrap_or(SystemTime::UNIX_EPOCH)
            .duration_since(SystemTime::UNIX_EPOCH)
            .unwrap_or_default()
            .as_secs();

        let mut cache = self.mmap_metadata_cache.write().unwrap();
        cache.insert(name.to_string(), MmapFileMetadata { size, modified });

        Ok(())
    }
}

impl Storage for FileStorage {
    fn loading_mode(&self) -> crate::storage::LoadingMode {
        if self.config.use_mmap {
            crate::storage::LoadingMode::Lazy
        } else {
            crate::storage::LoadingMode::Eager
        }
    }

    fn open_input(&self, name: &str) -> Result<Box<dyn StorageInput>> {
        self.check_closed()?;

        if self.config.use_mmap {
            // Use memory-mapped file
            let mmap = self.get_mmap(name)?;
            Ok(Box::new(MmapInput::new(mmap)))
        } else {
            // Use traditional file I/O
            let path = self.file_path(name);
            let file = File::open(&path).map_err(|e| {
                if e.kind() == std::io::ErrorKind::NotFound {
                    StorageError::FileNotFound(name.to_string())
                } else {
                    StorageError::IoError(e.to_string())
                }
            })?;

            Ok(Box::new(FileInput::new(file, self.config.buffer_size)?))
        }
    }

    /// Create a fresh output for `name`, truncating any existing file.
    ///
    /// # Concurrency
    ///
    /// On Windows the OS holds an exclusive lock on memory-mapped
    /// files. This method evicts the storage's own mmap cache entry
    /// for `name` before the truncate so the file lock can be
    /// released (Issue #508). Any `StorageInput` previously returned
    /// by [`Self::open_input`] for the same name must already be
    /// dropped before another code path invokes this method —
    /// otherwise the outstanding `Arc<Mmap>` clone will keep the
    /// Windows lock alive and the OS returns `ERROR_USER_MAPPED_FILE`.
    /// See [`Self::evict_mmap`] for the full lifetime contract.
    fn create_output(&self, name: &str) -> Result<Box<dyn StorageOutput>> {
        self.check_closed()?;

        // Release the Windows file lock before opening with truncate.
        // No-op on Unix; correctness-critical on Windows (Issue #508).
        self.evict_mmap(name);

        let path = self.file_path(name);

        if let Some(parent) = path.parent()
            && !parent.exists()
        {
            std::fs::create_dir_all(parent).map_err(|e| {
                LaurusError::storage(format!("Failed to create directory {:?}: {}", parent, e))
            })?;
        }

        let file = OpenOptions::new()
            .write(true)
            .create(true)
            .truncate(true)
            .open(&path)
            .map_err(|e| StorageError::IoError(e.to_string()))?;

        Ok(Box::new(FileOutput::new(
            file,
            self.config.buffer_size,
            self.config.sync_writes,
        )?))
    }

    /// Open `name` for append, creating it if necessary.
    ///
    /// # Concurrency
    ///
    /// Append-mode targets (WAL, log files) are not memory-mapped in
    /// the current codebase, so the cache eviction below is purely
    /// defensive. If a future change starts mmap'ing one of these
    /// files, the Windows lifecycle contract documented on
    /// [`Self::evict_mmap`] already applies (Issue #508).
    fn create_output_append(&self, name: &str) -> Result<Box<dyn StorageOutput>> {
        self.check_closed()?;

        // Defensive: keep symmetry with `create_output` / `delete_file`
        // so a future caller cannot reintroduce the Windows lock bug
        // by mmap'ing an append-mode target.
        self.evict_mmap(name);

        let path = self.file_path(name);

        if let Some(parent) = path.parent()
            && !parent.exists()
        {
            std::fs::create_dir_all(parent).map_err(|e| {
                LaurusError::storage(format!("Failed to create directory {:?}: {}", parent, e))
            })?;
        }

        let file = OpenOptions::new()
            .create(true)
            .append(true)
            .open(&path)
            .map_err(|e| StorageError::IoError(e.to_string()))?;

        Ok(Box::new(FileOutput::new(
            file,
            self.config.buffer_size,
            self.config.sync_writes,
        )?))
    }

    fn file_exists(&self, name: &str) -> bool {
        if self.closed {
            return false;
        }

        self.file_path(name).exists()
    }

    /// Delete `name` from the storage directory.
    ///
    /// # Concurrency
    ///
    /// On Windows, `remove_file` returns `ERROR_USER_MAPPED_FILE` if
    /// any process still holds an mmap for the file. This method
    /// evicts the storage's own cached `Arc<Mmap>` first to release
    /// the lock (Issue #508). Outstanding `StorageInput` clones held
    /// elsewhere keep the lock alive until they drop; the same
    /// lifetime contract documented on [`Self::evict_mmap`] applies.
    fn delete_file(&self, name: &str) -> Result<()> {
        self.check_closed()?;

        // Release the Windows file lock before unlinking. No-op on
        // Unix; correctness-critical on Windows (Issue #508).
        self.evict_mmap(name);

        let path = self.file_path(name);
        if path.exists() {
            std::fs::remove_file(&path)
                .map_err(|e| StorageError::IoError(format!("Failed to delete file: {e}")))?;
        }

        Ok(())
    }

    fn list_files(&self) -> Result<Vec<String>> {
        self.check_closed()?;

        let mut files = Vec::new();
        let mut queue = vec![self.directory.clone()];

        while let Some(dir) = queue.pop() {
            // Skip if error reading directory
            let entries = match std::fs::read_dir(&dir) {
                Ok(e) => e,
                Err(_) => continue,
            };

            for entry in entries {
                let entry = match entry {
                    Ok(e) => e,
                    Err(_) => continue,
                };
                let path = entry.path();

                if path.is_dir() {
                    queue.push(path);
                } else if path.is_file()
                    && let Ok(rel) = path.strip_prefix(&self.directory)
                    && let Some(name) = rel.to_str()
                {
                    // Normalize path separators to forward slashes for
                    // cross-platform consistency. PrefixedStorage and other
                    // consumers expect '/' separators regardless of OS.
                    files.push(name.replace('\\', "/"));
                }
            }
        }

        files.sort();
        Ok(files)
    }

    fn file_size(&self, name: &str) -> Result<u64> {
        self.check_closed()?;

        let path = self.file_path(name);
        let metadata = path.metadata().map_err(|e| {
            if e.kind() == std::io::ErrorKind::NotFound {
                StorageError::FileNotFound(name.to_string())
            } else {
                StorageError::IoError(e.to_string())
            }
        })?;

        Ok(metadata.len())
    }

    fn metadata(&self, name: &str) -> Result<crate::storage::FileMetadata> {
        self.check_closed()?;

        let path = self.file_path(name);
        let metadata = path.metadata().map_err(|e| {
            if e.kind() == std::io::ErrorKind::NotFound {
                StorageError::FileNotFound(name.to_string())
            } else {
                StorageError::IoError(e.to_string())
            }
        })?;

        let modified = metadata
            .modified()
            .unwrap_or(SystemTime::UNIX_EPOCH)
            .duration_since(SystemTime::UNIX_EPOCH)
            .unwrap_or_default()
            .as_secs();

        let created = metadata
            .created()
            .unwrap_or(SystemTime::UNIX_EPOCH)
            .duration_since(SystemTime::UNIX_EPOCH)
            .unwrap_or_default()
            .as_secs();

        Ok(crate::storage::FileMetadata {
            size: metadata.len(),
            modified,
            created,
            readonly: metadata.permissions().readonly(),
        })
    }

    fn rename_file(&self, old_name: &str, new_name: &str) -> Result<()> {
        self.check_closed()?;

        let old_path = self.file_path(old_name);
        let new_path = self.file_path(new_name);

        std::fs::rename(&old_path, &new_path)
            .map_err(|e| StorageError::IoError(format!("Failed to rename file: {e}")))?;

        Ok(())
    }

    fn create_temp_output(&self, prefix: &str) -> Result<(String, Box<dyn StorageOutput>)> {
        self.check_closed()?;

        let mut counter = 0;
        let mut temp_name;

        loop {
            temp_name = format!("{prefix}_{counter}.tmp");
            if !self.file_exists(&temp_name) {
                break;
            }
            counter += 1;

            if counter > 10000 {
                return Err(
                    StorageError::IoError("Could not create temporary file".to_string()).into(),
                );
            }
        }

        let output = self.create_output(&temp_name)?;
        Ok((temp_name, output))
    }

    fn sync(&self) -> Result<()> {
        self.check_closed()?;

        // Recursively fsync directories to ensure that all file metadata
        // (creation, rename, size changes) is visible to subsequent readers.
        // This is essential on Windows where directory listings may be cached.
        Self::sync_directory_recursive(&self.directory)?;

        Ok(())
    }

    fn close(&mut self) -> Result<()> {
        self.closed = true;
        self.lock_manager.release_all()?;
        Ok(())
    }
}

/// A file input implementation.
#[derive(Debug)]
pub struct FileInput {
    reader: BufReader<File>,
    size: u64,
}

impl FileInput {
    fn new(file: File, buffer_size: usize) -> Result<Self> {
        let metadata = file
            .metadata()
            .map_err(|e| LaurusError::storage(format!("Failed to get file metadata: {e}")))?;

        let size = metadata.len();
        let reader = BufReader::with_capacity(buffer_size, file);

        Ok(FileInput { reader, size })
    }
}

impl Read for FileInput {
    fn read(&mut self, buf: &mut [u8]) -> std::io::Result<usize> {
        self.reader.read(buf)
    }
}

impl Seek for FileInput {
    fn seek(&mut self, pos: SeekFrom) -> std::io::Result<u64> {
        self.reader.seek(pos)
    }
}

impl StorageInput for FileInput {
    fn size(&self) -> Result<u64> {
        Ok(self.size)
    }

    fn clone_input(&self) -> Result<Box<dyn StorageInput>> {
        // For file inputs, we can't easily clone the underlying file
        // This would require reopening the file, which we'll implement later
        Err(LaurusError::storage("Clone not supported for file inputs"))
    }

    fn close(&mut self) -> Result<()> {
        // BufReader doesn't have an explicit close method
        // The file will be closed when the BufReader is dropped
        Ok(())
    }
}

/// A memory-mapped file input implementation.
#[derive(Debug)]
pub struct MmapInput {
    mmap: Arc<Mmap>,
    #[allow(dead_code)]
    cursor: Cursor<Vec<u8>>,
    position: u64,
}

impl MmapInput {
    fn new(mmap: Arc<Mmap>) -> Self {
        MmapInput {
            mmap,
            cursor: Cursor::new(Vec::new()),
            position: 0,
        }
    }
}

impl Read for MmapInput {
    fn read(&mut self, buf: &mut [u8]) -> std::io::Result<usize> {
        let available = (self.mmap.len() as u64).saturating_sub(self.position) as usize;
        let to_read = buf.len().min(available);

        if to_read == 0 {
            return Ok(0);
        }

        let start = self.position as usize;
        let end = start + to_read;
        buf[..to_read].copy_from_slice(&self.mmap[start..end]);
        self.position += to_read as u64;

        Ok(to_read)
    }
}

impl Seek for MmapInput {
    fn seek(&mut self, pos: SeekFrom) -> std::io::Result<u64> {
        let new_pos = match pos {
            SeekFrom::Start(offset) => offset as i64,
            SeekFrom::End(offset) => self.mmap.len() as i64 + offset,
            SeekFrom::Current(offset) => self.position as i64 + offset,
        };

        if new_pos < 0 {
            return Err(std::io::Error::new(
                std::io::ErrorKind::InvalidInput,
                "Invalid seek to a negative position",
            ));
        }

        self.position = new_pos as u64;
        Ok(self.position)
    }
}

impl StorageInput for MmapInput {
    fn size(&self) -> Result<u64> {
        Ok(self.mmap.len() as u64)
    }

    fn clone_input(&self) -> Result<Box<dyn StorageInput>> {
        Ok(Box::new(MmapInput {
            mmap: Arc::clone(&self.mmap),
            cursor: Cursor::new(Vec::new()),
            position: 0,
        }))
    }

    fn close(&mut self) -> Result<()> {
        // Memory map will be automatically unmapped when dropped
        Ok(())
    }

    /// Borrow the mmap region from the current read position to the end
    /// of the file. The slice is valid for the lifetime of `&self`; the
    /// underlying `Arc<Mmap>` keeps the page mapping alive as long as
    /// this `MmapInput` exists. Callers can advance through `seek`
    /// independently of any slices they continue to hold.
    fn as_slice(&self) -> Option<&[u8]> {
        let start = (self.position as usize).min(self.mmap.len());
        Some(&self.mmap[start..])
    }
}

/// A file output implementation.
///
/// Uses `Option<BufWriter<File>>` so that `close()` can explicitly release
/// the file handle via `take()` + `into_inner()`. This is critical on Windows
/// where file handles must be fully released before other processes (or the
/// same process) can read or delete the file.
#[derive(Debug)]
pub struct FileOutput {
    writer: Option<BufWriter<File>>,
    sync_writes: bool,
    position: u64,
    /// Whether bytes have been written since the last successful
    /// `sync_all()` (via [`Self::flush_and_sync`] or [`Self::close`]).
    ///
    /// Starts `true` so a handle that is closed without ever calling
    /// `flush_and_sync` still syncs on close, matching the historical
    /// behavior. Set by [`StorageOutput::flush_and_sync`]'s write path;
    /// cleared once that sync succeeds — lets [`StorageOutput::close`] skip a
    /// redundant `sync_all()` when `flush_and_sync` already made everything
    /// durable and nothing was written afterward (Issue #877).
    dirty: bool,
    /// Test-only: number of real `sync_all()` (fsync) calls issued by this
    /// handle. Lets tests assert the exact fsync count instead of inferring it
    /// from timing or `strace`.
    #[cfg(test)]
    sync_count: usize,
}

impl FileOutput {
    fn new(file: File, buffer_size: usize, sync_writes: bool) -> Result<Self> {
        let writer = BufWriter::with_capacity(buffer_size, file);

        Ok(FileOutput {
            writer: Some(writer),
            sync_writes,
            position: 0,
            dirty: true,
            #[cfg(test)]
            sync_count: 0,
        })
    }
}

impl Write for FileOutput {
    fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
        let writer = self
            .writer
            .as_mut()
            .ok_or_else(|| std::io::Error::other("FileOutput already closed"))?;
        let bytes_written = writer.write(buf)?;
        self.position += bytes_written as u64;
        // Any successful write, buffered or not, means the file is no longer
        // fully represented by the last `sync_all()` (Issue #877).
        self.dirty = true;

        if self.sync_writes {
            // Re-borrow since position assignment ended the previous borrow.
            self.writer.as_mut().unwrap().flush()?;
        }

        Ok(bytes_written)
    }

    fn flush(&mut self) -> std::io::Result<()> {
        self.writer
            .as_mut()
            .ok_or_else(|| std::io::Error::other("FileOutput already closed"))?
            .flush()
    }
}

impl Seek for FileOutput {
    fn seek(&mut self, pos: SeekFrom) -> std::io::Result<u64> {
        let new_pos = self
            .writer
            .as_mut()
            .ok_or_else(|| std::io::Error::other("FileOutput already closed"))?
            .seek(pos)?;
        self.position = new_pos;
        Ok(new_pos)
    }
}

impl StorageOutput for FileOutput {
    fn flush_and_sync(&mut self) -> Result<()> {
        let writer = self
            .writer
            .as_mut()
            .ok_or_else(|| LaurusError::storage("FileOutput already closed".to_string()))?;

        writer
            .flush()
            .map_err(|e| LaurusError::storage(format!("Failed to flush: {e}")))?;

        writer
            .get_ref()
            .sync_all()
            .map_err(|e| LaurusError::storage(format!("Failed to sync: {e}")))?;
        self.dirty = false;
        #[cfg(test)]
        {
            self.sync_count += 1;
        }

        Ok(())
    }

    fn position(&self) -> Result<u64> {
        Ok(self.position)
    }

    fn close(&mut self) -> Result<()> {
        if let Some(writer) = self.writer.take() {
            // Flush buffered data and get the underlying File handle. Needed
            // regardless of `dirty`: if nothing was written since the last
            // `flush_and_sync`, the buffer is already empty and this is a
            // no-op, but the handle must still be extracted to sync/drop it.
            let file = writer
                .into_inner()
                .map_err(|e| LaurusError::storage(format!("Failed to flush on close: {e}")))?;

            // Sync all data and metadata to disk — unless `flush_and_sync`
            // already made everything durable and nothing was written since
            // (Issue #877: avoids a second redundant `fsync` per file for
            // every caller that flushes before closing, e.g. `StructWriter`).
            if self.dirty {
                file.sync_all()
                    .map_err(|e| LaurusError::storage(format!("Failed to sync on close: {e}")))?;
                #[cfg(test)]
                {
                    self.sync_count += 1;
                }
            }

            // `file` is dropped here, explicitly releasing the OS file handle.
        }
        Ok(())
    }
}

/// A file-based lock manager.
#[derive(Debug)]
pub struct FileLockManager {
    directory: PathBuf,
    locks: Arc<Mutex<HashMap<String, Arc<Mutex<FileLock>>>>>,
}

impl FileLockManager {
    fn new(directory: PathBuf) -> Self {
        FileLockManager {
            directory,
            locks: Arc::new(Mutex::new(HashMap::new())),
        }
    }

    fn lock_path(&self, name: &str) -> PathBuf {
        self.directory.join(format!("{name}.lock"))
    }
}

impl LockManager for FileLockManager {
    fn acquire_lock(&self, name: &str) -> Result<Box<dyn StorageLock>> {
        let lock_path = self.lock_path(name);

        // Try to create the lock file
        let file = OpenOptions::new()
            .write(true)
            .create_new(true)
            .open(&lock_path)
            .map_err(|e| {
                if e.kind() == std::io::ErrorKind::AlreadyExists {
                    StorageError::LockFailed(name.to_string())
                } else {
                    StorageError::IoError(e.to_string())
                }
            })?;

        let lock = Arc::new(Mutex::new(FileLock::new(name.to_string(), lock_path, file)));

        // Store the lock
        {
            let mut locks = self.locks.lock().unwrap();
            locks.insert(name.to_string(), lock.clone());
        }

        Ok(Box::new(FileLockWrapper { lock }))
    }

    fn try_acquire_lock(&self, name: &str) -> Result<Option<Box<dyn StorageLock>>> {
        match self.acquire_lock(name) {
            Ok(lock) => Ok(Some(lock)),
            Err(e) => {
                if let LaurusError::Storage(ref msg) = e
                    && msg.contains("Failed to acquire lock")
                {
                    return Ok(None);
                }
                Err(e)
            }
        }
    }

    fn lock_exists(&self, name: &str) -> bool {
        let locks = self.locks.lock().unwrap();
        locks.contains_key(name)
    }

    fn release_all(&self) -> Result<()> {
        let mut locks = self.locks.lock().unwrap();

        for (_, lock) in locks.drain() {
            let mut file_lock = lock.lock().unwrap();
            file_lock.release()?;
        }

        Ok(())
    }
}

/// A file-based lock implementation.
#[derive(Debug)]
struct FileLock {
    #[allow(dead_code)]
    name: String,
    path: PathBuf,
    _file: File,
    released: bool,
}

impl FileLock {
    fn new(name: String, path: PathBuf, file: File) -> Self {
        FileLock {
            name,
            path,
            _file: file,
            released: false,
        }
    }

    fn release(&mut self) -> Result<()> {
        if !self.released {
            std::fs::remove_file(&self.path)
                .map_err(|e| LaurusError::storage(format!("Failed to release lock: {e}")))?;
            self.released = true;
        }
        Ok(())
    }
}

/// A wrapper around FileLock that implements StorageLock.
#[derive(Debug)]
struct FileLockWrapper {
    lock: Arc<Mutex<FileLock>>,
}

impl StorageLock for FileLockWrapper {
    /// Returns a fixed identifier `"file_lock"` rather than the actual lock name.
    ///
    /// Because the real name is stored behind a `Mutex`, returning a borrowed
    /// reference to it is not possible with the current `&str` return type.
    fn name(&self) -> &str {
        "file_lock"
    }

    fn release(&mut self) -> Result<()> {
        let mut lock = self.lock.lock().unwrap();
        lock.release()
    }

    fn is_valid(&self) -> bool {
        let lock = self.lock.lock().unwrap();
        !lock.released
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::io::Write;
    use tempfile::TempDir;

    fn create_test_storage() -> (TempDir, FileStorage) {
        let temp_dir = TempDir::new().unwrap();
        let config = FileStorageConfig::new(temp_dir.path());
        let storage = FileStorage::new(temp_dir.path(), config).unwrap();
        (temp_dir, storage)
    }

    #[test]
    fn test_file_storage_creation() {
        let (_temp_dir, storage) = create_test_storage();
        assert!(!storage.closed);
    }

    /// Construct a `FileOutput` directly (bypassing the `Storage` trait) so
    /// tests can read its test-only `sync_count`.
    fn open_file_output(dir: &TempDir, name: &str) -> FileOutput {
        let file = File::create(dir.path().join(name)).unwrap();
        FileOutput::new(file, 8192, false).unwrap()
    }

    /// #877: `flush_and_sync()` followed by `close()` with no intervening
    /// write must fsync exactly once, not twice — `close()` must recognize
    /// `flush_and_sync` already made everything durable.
    #[test]
    fn flush_and_sync_then_close_syncs_once() {
        let temp_dir = TempDir::new().unwrap();
        let mut output = open_file_output(&temp_dir, "a.bin");

        output.write_all(b"hello").unwrap();
        output.flush_and_sync().unwrap();
        assert_eq!(output.sync_count, 1, "flush_and_sync must fsync once");

        output.close().unwrap();
        assert_eq!(
            output.sync_count, 1,
            "close() must skip a redundant fsync when nothing was written \
             since the last flush_and_sync (#877)"
        );
    }

    /// #877: a handle that is closed WITHOUT ever calling `flush_and_sync`
    /// must still fsync on close — the optimization only applies when
    /// `flush_and_sync` already covered everything.
    #[test]
    fn close_without_flush_and_sync_still_syncs() {
        let temp_dir = TempDir::new().unwrap();
        let mut output = open_file_output(&temp_dir, "b.bin");

        output.write_all(b"hello").unwrap();
        output.close().unwrap();

        assert_eq!(
            output.sync_count, 1,
            "close() must still fsync when nothing has synced this data yet"
        );
    }

    /// #877: a write AFTER `flush_and_sync()` re-dirties the handle, so the
    /// following `close()` must fsync again — the skip is only safe when
    /// nothing changed since the last sync.
    #[test]
    fn write_after_flush_and_sync_forces_close_to_sync_again() {
        let temp_dir = TempDir::new().unwrap();
        let mut output = open_file_output(&temp_dir, "c.bin");

        output.write_all(b"first").unwrap();
        output.flush_and_sync().unwrap();
        assert_eq!(output.sync_count, 1);

        output.write_all(b"second").unwrap();
        output.close().unwrap();
        assert_eq!(
            output.sync_count, 2,
            "a write after flush_and_sync must still be synced on close"
        );
    }

    /// #877: an empty handle (never written to) closed with no prior
    /// `flush_and_sync` still fsyncs once, matching historical behavior for
    /// callers that create-then-immediately-close (e.g. recreating an empty
    /// file).
    #[test]
    fn close_with_no_writes_still_syncs_once() {
        let temp_dir = TempDir::new().unwrap();
        let mut output = open_file_output(&temp_dir, "d.bin");
        output.close().unwrap();
        assert_eq!(output.sync_count, 1);
    }

    /// #877: durability is unaffected when `close()` skips its fsync — every
    /// byte written before `close()` is readable back after reopening, on the
    /// path where `flush_and_sync` ran first and `close()` relies on it
    /// (the exact case the skip applies to).
    #[test]
    fn data_survives_close_after_prior_flush_and_sync() {
        let temp_dir = TempDir::new().unwrap();
        let storage =
            FileStorage::new(temp_dir.path(), FileStorageConfig::new(temp_dir.path())).unwrap();

        let mut out = storage.create_output("synced_then_closed.bin").unwrap();
        out.write_all(b"synced then closed").unwrap();
        out.flush_and_sync().unwrap();
        out.close().unwrap();

        let mut input = storage.open_input("synced_then_closed.bin").unwrap();
        let mut buf = Vec::new();
        input.read_to_end(&mut buf).unwrap();
        assert_eq!(buf, b"synced then closed");
    }

    /// #877: durability holds on the other path too — `close()` alone, with
    /// no prior `flush_and_sync`, must still fsync (per
    /// `close_without_flush_and_sync_still_syncs`) and the data must survive.
    #[test]
    fn data_survives_close_without_prior_flush_and_sync() {
        let temp_dir = TempDir::new().unwrap();
        let storage =
            FileStorage::new(temp_dir.path(), FileStorageConfig::new(temp_dir.path())).unwrap();

        let mut out = storage.create_output("closed_only.bin").unwrap();
        out.write_all(b"closed without a prior sync").unwrap();
        out.close().unwrap();

        let mut input = storage.open_input("closed_only.bin").unwrap();
        let mut buf = Vec::new();
        input.read_to_end(&mut buf).unwrap();
        assert_eq!(buf, b"closed without a prior sync");
    }

    #[test]
    fn mmap_input_as_slice_returns_remaining_bytes() {
        // Issue #504: MmapInput exposes a zero-copy slice into the
        // mapped region from the current read position. Without mmap
        // (default config), the BufReader-backed FileInput returns
        // None via the trait default.
        let temp_dir = TempDir::new().unwrap();
        let mut config = FileStorageConfig::new(temp_dir.path());
        config.use_mmap = true;
        let storage = FileStorage::new(temp_dir.path(), config).unwrap();

        let mut output = storage.create_output("data.bin").unwrap();
        output.write_all(b"abcdefghij").unwrap();
        output.close().unwrap();

        let mut input = storage.open_input("data.bin").unwrap();
        assert_eq!(input.as_slice(), Some(&b"abcdefghij"[..]));

        let mut head = [0u8; 3];
        input.read_exact(&mut head).unwrap();
        assert_eq!(&head, b"abc");
        assert_eq!(input.as_slice(), Some(&b"defghij"[..]));

        input.seek(SeekFrom::End(0)).unwrap();
        assert_eq!(input.as_slice(), Some(&[][..]));
    }

    #[test]
    fn buffered_file_input_falls_back_to_none() {
        // When use_mmap is disabled, FileInput is buffered I/O and
        // cannot expose a zero-copy slice. Callers must use the
        // Read+Seek fallback. Issue #504 flipped the default to mmap,
        // so this test now constructs a config that opts out.
        let temp_dir = TempDir::new().unwrap();
        let mut config = FileStorageConfig::new(temp_dir.path());
        config.use_mmap = false;
        let storage = FileStorage::new(temp_dir.path(), config).unwrap();
        let mut output = storage.create_output("data.bin").unwrap();
        output.write_all(b"abc").unwrap();
        output.close().unwrap();
        let input = storage.open_input("data.bin").unwrap();
        assert_eq!(input.as_slice(), None);
    }

    #[test]
    fn create_output_releases_mmap_lock() {
        // Issue #508: with `use_mmap=true`, rewriting a file via
        // `create_output` would hit `ERROR_USER_MAPPED_FILE` on
        // Windows if the storage still held a cached `Arc<Mmap>`.
        // `evict_mmap` (called from `create_output`) drops the cache
        // entry before the truncate so the OS releases the lock.
        //
        // On Unix this assertion is a tautology — the kernel allows
        // truncate while mapped. On Windows it is the actual
        // regression gate; without the eviction the second
        // `create_output` would fail with os error 1224.
        let temp_dir = TempDir::new().unwrap();
        let mut config = FileStorageConfig::new(temp_dir.path());
        config.use_mmap = true;
        let storage = FileStorage::new(temp_dir.path(), config).unwrap();

        let mut output = storage.create_output("segment.bin").unwrap();
        output.write_all(b"old-content").unwrap();
        output.close().unwrap();

        {
            // Take a read mapping so the cache holds an Arc<Mmap>.
            // Scope ends here, but the cached clone in FileStorage
            // outlives this drop until we call `create_output` again.
            let mut input = storage.open_input("segment.bin").unwrap();
            assert_eq!(input.as_slice(), Some(&b"old-content"[..]));
            let mut buf = Vec::new();
            input.read_to_end(&mut buf).unwrap();
            assert_eq!(buf, b"old-content");
        }

        // Re-write — must succeed on every OS now that
        // `create_output` evicts the cache first.
        let mut output = storage.create_output("segment.bin").unwrap();
        output.write_all(b"new-content").unwrap();
        output.close().unwrap();

        let mut input = storage.open_input("segment.bin").unwrap();
        let mut buf = Vec::new();
        input.read_to_end(&mut buf).unwrap();
        assert_eq!(buf, b"new-content");
    }

    #[test]
    fn delete_file_releases_mmap_lock() {
        // Sibling of `create_output_releases_mmap_lock` — same
        // mechanism, exercised through the `delete_file` path that
        // segment-manager merge / compaction calls (Issue #508).
        let temp_dir = TempDir::new().unwrap();
        let mut config = FileStorageConfig::new(temp_dir.path());
        config.use_mmap = true;
        let storage = FileStorage::new(temp_dir.path(), config).unwrap();

        let mut output = storage.create_output("doomed.bin").unwrap();
        output.write_all(b"will-be-removed").unwrap();
        output.close().unwrap();

        {
            let _input = storage.open_input("doomed.bin").unwrap();
            // _input drops here; FileStorage still holds the cached
            // Arc<Mmap> at this point.
        }

        // Must succeed on Windows after the eviction in
        // `delete_file`; without it, os error 1224 fires here.
        storage.delete_file("doomed.bin").unwrap();
        assert!(!storage.file_exists("doomed.bin"));

        // Re-create to confirm the cache slot is genuinely gone, not
        // just shadowed.
        let mut output = storage.create_output("doomed.bin").unwrap();
        output.write_all(b"fresh").unwrap();
        output.close().unwrap();
        let mut input = storage.open_input("doomed.bin").unwrap();
        let mut buf = Vec::new();
        input.read_to_end(&mut buf).unwrap();
        assert_eq!(buf, b"fresh");
    }

    #[test]
    fn config_new_defaults_use_mmap_true() {
        // Issue #504 (Unix) and Issue #508 (Windows): mmap is the
        // default on every platform now. The opt-out is the
        // `LAURUS_NO_MMAP=1` env var, applied symmetrically by both
        // `platform/unix.rs` and `platform/windows.rs`.
        let temp_dir = TempDir::new().unwrap();
        let prior = std::env::var("LAURUS_NO_MMAP").ok();
        // SAFETY: this test temporarily mutates a process-global env
        // var. It restores the prior state before returning so other
        // tests in the binary are unaffected. Rust 2024 marks
        // `remove_var`/`set_var` unsafe because they are not
        // synchronised with concurrent threads; cargo test parallel
        // sandboxing means another concurrent test could observe the
        // intermediate state, but in practice the storage tests do
        // not branch on LAURUS_NO_MMAP outside of this test, so the
        // race is harmless.
        unsafe {
            std::env::remove_var("LAURUS_NO_MMAP");
        }
        let cfg = FileStorageConfig::new(temp_dir.path());
        assert!(cfg.use_mmap, "default config must enable mmap");
        unsafe {
            std::env::set_var("LAURUS_NO_MMAP", "1");
        }
        let cfg = FileStorageConfig::new(temp_dir.path());
        assert!(
            !cfg.use_mmap,
            "LAURUS_NO_MMAP=1 must opt out of the mmap default"
        );
        unsafe {
            match prior {
                Some(v) => std::env::set_var("LAURUS_NO_MMAP", v),
                None => std::env::remove_var("LAURUS_NO_MMAP"),
            }
        }
    }

    #[test]
    fn test_create_and_read_file() {
        let (_temp_dir, storage) = create_test_storage();

        // Create a file
        let mut output = storage.create_output("test.txt").unwrap();
        output.write_all(b"Hello, World!").unwrap();
        output.close().unwrap();

        // Read the file
        let mut input = storage.open_input("test.txt").unwrap();
        let mut buffer = Vec::new();
        input.read_to_end(&mut buffer).unwrap();

        assert_eq!(buffer, b"Hello, World!");
        assert_eq!(input.size().unwrap(), 13);
    }

    #[test]
    fn test_file_operations() {
        let (_temp_dir, storage) = create_test_storage();

        // File doesn't exist initially
        assert!(!storage.file_exists("nonexistent.txt"));

        // Create a file
        let mut output = storage.create_output("test.txt").unwrap();
        output.write_all(b"Test content").unwrap();
        output.close().unwrap();

        // File exists now
        assert!(storage.file_exists("test.txt"));

        // Check file size
        assert_eq!(storage.file_size("test.txt").unwrap(), 12);

        // List files
        let files = storage.list_files().unwrap();
        assert_eq!(files, vec!["test.txt"]);

        // Rename file
        storage.rename_file("test.txt", "renamed.txt").unwrap();
        assert!(!storage.file_exists("test.txt"));
        assert!(storage.file_exists("renamed.txt"));

        // Delete file
        storage.delete_file("renamed.txt").unwrap();
        assert!(!storage.file_exists("renamed.txt"));
    }

    #[test]
    fn test_temp_file_creation() {
        let (_temp_dir, storage) = create_test_storage();

        let (temp_name, mut output) = storage.create_temp_output("test").unwrap();

        assert!(temp_name.starts_with("test_"));
        assert!(temp_name.ends_with(".tmp"));

        output.write_all(b"Temporary content").unwrap();
        output.close().unwrap();

        assert!(storage.file_exists(&temp_name));
        assert_eq!(storage.file_size(&temp_name).unwrap(), 17);
    }

    #[test]
    fn test_file_not_found() {
        let (_temp_dir, storage) = create_test_storage();

        let result = storage.open_input("nonexistent.txt");
        assert!(result.is_err());

        let result = storage.file_size("nonexistent.txt");
        assert!(result.is_err());
    }

    #[test]
    fn test_storage_close() {
        let (_temp_dir, mut storage) = create_test_storage();

        storage.close().unwrap();
        assert!(storage.closed);

        // Operations should fail after close
        let result = storage.create_output("test.txt");
        assert!(result.is_err());
    }

    #[test]
    fn test_mmap_storage() {
        let temp_dir = TempDir::new().unwrap();
        let mut config = FileStorageConfig::new(temp_dir.path());
        config.use_mmap = true;
        let storage = FileStorage::new(temp_dir.path(), config).unwrap();

        // Create a file
        let mut output = storage.create_output("test_mmap.txt").unwrap();
        output.write_all(b"Hello, Memory-Mapped World!").unwrap();
        output.close().unwrap();

        // Read the file using mmap
        let mut input = storage.open_input("test_mmap.txt").unwrap();
        let mut buffer = Vec::new();
        input.read_to_end(&mut buffer).unwrap();

        assert_eq!(buffer, b"Hello, Memory-Mapped World!");
        assert_eq!(input.size().unwrap(), 27);
    }

    #[test]
    fn test_mmap_cache() {
        let temp_dir = TempDir::new().unwrap();
        let mut config = FileStorageConfig::new(temp_dir.path());
        config.use_mmap = true;
        let storage = FileStorage::new(temp_dir.path(), config).unwrap();

        // Create a file
        let mut output = storage.create_output("cached.txt").unwrap();
        output.write_all(b"Cached content").unwrap();
        output.close().unwrap();

        // Read the file twice to test cache
        let mut input1 = storage.open_input("cached.txt").unwrap();
        let mut buffer1 = Vec::new();
        input1.read_to_end(&mut buffer1).unwrap();

        let mut input2 = storage.open_input("cached.txt").unwrap();
        let mut buffer2 = Vec::new();
        input2.read_to_end(&mut buffer2).unwrap();

        assert_eq!(buffer1, buffer2);
        assert_eq!(buffer1, b"Cached content");

        // Check that cache was used
        let cache = storage.mmap_cache.read().unwrap();
        assert!(cache.contains_key("cached.txt"));
    }

    #[test]
    fn test_mmap_clone_input() {
        let temp_dir = TempDir::new().unwrap();
        let mut config = FileStorageConfig::new(temp_dir.path());
        config.use_mmap = true;
        let storage = FileStorage::new(temp_dir.path(), config).unwrap();

        // Create a file
        let mut output = storage.create_output("clone_test.txt").unwrap();
        output.write_all(b"Clone me!").unwrap();
        output.close().unwrap();

        // Open and clone the input
        let mut input1 = storage.open_input("clone_test.txt").unwrap();
        let input2 = input1.clone_input().unwrap();

        // Read from both
        let mut buffer1 = Vec::new();
        input1.read_to_end(&mut buffer1).unwrap();

        let mut buffer2 = Vec::new();
        let mut input2_mut = input2;
        input2_mut.read_to_end(&mut buffer2).unwrap();

        assert_eq!(buffer1, buffer2);
        assert_eq!(buffer1, b"Clone me!");
    }
}