fcache 0.2.0

File caching library with lazy creation, automatic refresh, and callback-based initialization
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
use std::fmt::{self, Debug};
use std::fs::{self, File};
use std::path::{Component, Path, PathBuf};
use std::time::{Duration, SystemTime};

use crate::callback::CallbackFn;
use crate::result::{Error, Result};

/// A file in the cache that is lazily created when accessed.
///
/// Lazy files defer their creation until the first time they are opened,
/// allowing for more efficient resource usage when files may not be needed immediately.
///
/// # Example
///
/// ```rust
/// use fcache::prelude::*;
///
/// # fn wrapper() -> fcache::Result<()> {
/// // Create a new cache instance
/// let cache = Cache::new()?;
///
/// // Create a lazy file that won't be created until accessed
/// let cache_file = cache.get_lazy("data.txt", |mut file| {
///     file.write_all(b"Lazy file content")?;
///     Ok(())
/// })?;
///
/// // File doesn't exist yet on disk
/// assert!(!cache_file.path().exists());
///
/// // Opening the file triggers its creation
/// let mut file = cache_file.open()?;
/// // Read data from the file
/// let mut content = String::new();
/// file.read_to_string(&mut content)?;
/// assert_eq!(content, "Lazy file content");
/// # Ok(())
/// # }
/// ```
pub struct CacheLazyFile<'a> {
    /// Path to the lazy file
    path: PathBuf,
    /// Name of the lazy file
    name: String,
    /// Callback function to initialize the file
    callback: Box<dyn CallbackFn>,
    /// Refresh interval for the file
    refresh_interval: Duration,
    /// Cache root directory
    cache_root: &'a Path,
    /// Cache refresh interval
    cache_refresh_interval: &'a Duration,
    /// Whether the file is locked
    locked: bool,
}

impl<'a> CacheLazyFile<'a> {
    /// Creates a new lazy file instance.
    pub(crate) fn new(
        path: impl AsRef<Path>,
        callback: impl CallbackFn + 'static,
        refresh_interval: Duration,
        cache_root: &'a Path,
        cache_refresh_interval: &'a Duration,
    ) -> Result<Self> {
        let path = path.as_ref();
        let name = if let Some(component) = path.components().next_back()
            && let Component::Normal(name) = component
            && let Some(name) = name.to_str()
            && name.trim() != ""
        {
            name.to_string()
        } else {
            let path = path.to_path_buf();
            let error = Error::InvalidPath { path };
            return Err(error);
        };
        (!path.exists())
            .then(|| {
                let callback = Box::new(callback);
                let path = path.to_path_buf();
                let locked = false;
                Self {
                    path,
                    name,
                    callback,
                    refresh_interval,
                    cache_root,
                    cache_refresh_interval,
                    locked,
                }
            })
            .ok_or_else(|| {
                let path = path.to_path_buf();
                Error::FileAlreadyExists { path }
            })
    }

    /// Sets the refresh interval for the lazy file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use std::time::Duration;
    ///
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Set custom refresh interval to 30 minutes
    /// let cache_file = cache_file.with_refresh_interval(Duration::from_secs(30 * 60));
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn with_refresh_interval(self, refresh_interval: Duration) -> Self {
        let Self {
            path,
            name,
            callback,
            cache_root,
            cache_refresh_interval,
            locked,
            ..
        } = self;
        Self {
            path,
            name,
            callback,
            refresh_interval,
            cache_root,
            cache_refresh_interval,
            locked,
        }
    }

    /// Sets the refresh interval to the default value.
    ///
    /// # Example
    ///
    /// ```rust
    /// use std::time::Duration;
    ///
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Set custom interval, then reset to default
    /// let cache_file = cache_file
    ///     .with_refresh_interval(Duration::from_secs(60))
    ///     .with_default_refresh_interval();
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn with_default_refresh_interval(self) -> Self {
        let Self {
            path,
            name,
            callback,
            cache_root,
            cache_refresh_interval,
            locked,
            ..
        } = self;
        let refresh_interval = *cache_refresh_interval;
        Self {
            path,
            name,
            callback,
            refresh_interval,
            cache_root,
            cache_refresh_interval,
            locked,
        }
    }

    /// Returns the path of the lazy file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("config.txt", |mut file| {
    ///     file.write_all(b"config data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Get the file path
    /// let path = cache_file.path();
    /// println!("File will be created at: {}", path.display());
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn path(&self) -> &Path {
        let Self { path, .. } = self;
        path
    }

    /// Returns the name of the lazy file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("config.txt", |mut file| {
    ///     file.write_all(b"config data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Get the file name
    /// let name = cache_file.name();
    /// println!("File name: {}", name);
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn name(&self) -> &str {
        let Self { name, .. } = self;
        name
    }

    /// Returns the refresh interval of the lazy file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use std::time::Duration;
    ///
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache
    ///     .get_lazy("data.txt", |mut file| {
    ///         file.write_all(b"content")?;
    ///         Ok(())
    ///     })?
    ///     .with_refresh_interval(Duration::from_secs(300));
    ///
    /// // Check the current refresh interval
    /// let interval = cache_file.refresh_interval();
    /// println!("Refresh interval: {} seconds", interval.as_secs());
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn refresh_interval(&self) -> Duration {
        let Self { refresh_interval, .. } = self;
        *refresh_interval
    }

    /// Returns whether the lazy file is locked.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let mut cache_file = cache.get_lazy("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Check if the file is locked
    /// assert!(!cache_file.is_locked());
    /// cache_file.lock()?;
    /// assert!(cache_file.is_locked());
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn is_locked(&self) -> bool {
        let Self { locked, .. } = self;
        *locked
    }

    /// Returns whether the lazy file is unlocked.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let mut cache_file = cache.get_lazy("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Check if the file is unlocked
    /// assert!(cache_file.is_unlocked());
    /// cache_file.lock()?;
    /// assert!(!cache_file.is_unlocked());
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn is_unlocked(&self) -> bool {
        !self.is_locked()
    }

    /// Checks if the lazy file is valid.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Check if the file is still valid
    /// if cache_file.is_valid()? {
    ///     println!("File is still fresh");
    /// }
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file metadata cannot be read, modification time cannot be determined, or system time calculations fail.
    pub fn is_valid(&self) -> Result<bool> {
        let Self {
            path, refresh_interval, ..
        } = self;
        let metadata = fs::metadata(path)?;
        let modified = metadata.modified()?;
        let elapsed = modified.elapsed()?;
        Ok(elapsed < *refresh_interval)
    }

    /// Checks if the lazy file is invalid.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Check if the file needs refreshing
    /// if cache_file.is_invalid()? {
    ///     println!("File needs to be refreshed");
    /// }
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file metadata cannot be read, modification time cannot be determined, or system time calculations fail.
    pub fn is_invalid(&self) -> Result<bool> {
        self.is_valid().map(|valid| !valid)
    }

    /// Returns the time until the lazy file is valid.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Get when the file will expire
    /// let valid_until = cache_file.valid_until()?;
    /// println!("File valid until: {:?}", valid_until);
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file metadata cannot be read or the file's modification time cannot be determined.
    pub fn valid_until(&self) -> Result<SystemTime> {
        let Self {
            path, refresh_interval, ..
        } = self;
        let metadata = fs::metadata(path)?;
        let modified = metadata.modified()?;
        Ok(modified + *refresh_interval)
    }

    /// Locks this file to prevent other processes from reading or writing to it.
    ///
    /// For more details about the locking mechanism see [`CacheFile::lock`].
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let mut cache_file = cache.get_lazy("shared.txt", |mut file| {
    ///     file.write_all(b"shared data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Lock the file to prevent concurrent access
    /// cache_file.lock()?;
    /// // ... perform critical operations ...
    /// cache_file.unlock()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file is already locked by another process, system file locking mechanisms fail, or the underlying file cannot be accessed.
    pub fn lock(&mut self) -> Result<()> {
        self.is_unlocked()
            .then(|| {
                self.locked = true;
            })
            .ok_or_else(|| Error::FileAlreadyLocked)
    }

    /// Unlocks the lazy file to allow refreshing.
    ///
    /// For more details about the locking mechanism see [`CacheFile::unlock`].
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let mut cache_file = cache.get_lazy("shared.txt", |mut file| {
    ///     file.write_all(b"shared data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Lock and then unlock the file
    /// cache_file.lock()?;
    /// // ... critical operations complete ...
    /// cache_file.unlock()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file is already unlocked.
    pub fn unlock(&mut self) -> Result<()> {
        self.is_locked()
            .then(|| {
                self.locked = false;
            })
            .ok_or_else(|| Error::FileAlreadyUnlocked)
    }

    /// Creates the lazy file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use std::io::Write;
    ///
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("document.txt", |mut file| {
    ///     file.write_all(b"Document content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Explicitly create the file if it doesn't exist
    /// let file = cache_file.create()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file already exists, file creation fails due to permissions or disk space, the callback function returns an error, or the file cannot be reopened for reading.
    pub fn create(&self) -> Result<File> {
        // FIXME: Refactor
        let Self { path, callback, .. } = self;
        File::options()
            .create_new(true)
            .read(false)
            .write(true)
            .open(path)
            .map_err(Error::IO)
            .and_then(|file| callback(file).map_err(Error::Callback))
            .and_then(|()| File::options().read(true).write(false).open(path).map_err(Error::IO))
    }

    /// Opens the lazy file, creating it if it doesn't exist.
    ///
    /// # Example
    ///
    /// ```rust
    /// use std::io::Read;
    ///
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("config.txt", |mut file| {
    ///     file.write_all(b"config data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Open and read the file content
    /// let mut file = cache_file.open()?;
    /// let mut content = String::new();
    /// file.read_to_string(&mut content)?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if file creation fails (if the file doesn't exist), file refresh fails (if the file exists), the file cannot be opened for reading, or the callback function returns an error during creation.
    pub fn open(&self) -> Result<File> {
        let Self { path, .. } = self;
        if path.exists() {
            self.refresh()?;
            File::options().read(true).write(false).open(path).map_err(Error::IO)
        } else {
            self.create()
        }
    }

    /// Refreshes the lazy file if it is invalid.
    ///
    /// This method only refreshes the file when it has expired. For unconditional refresh, see [`force_refresh`](Self::force_refresh).
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("cache.txt", |mut file| {
    ///     file.write_all(b"cached data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Refresh only if the file is invalid
    /// cache_file.refresh()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if file validity cannot be determined or force refresh fails when the file is invalid.
    pub fn refresh(&self) -> Result<()> {
        self.is_invalid()
            .and_then(|invalid| if invalid { self.force_refresh() } else { Ok(()) })
    }

    /// Forces a refresh of the lazy file.
    ///
    /// This method refreshes the file regardless of its validity. For conditional refresh, see [`refresh`](Self::refresh).
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("data.txt", |mut file| {
    ///     file.write_all(b"fresh data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Force refresh regardless of validity
    /// cache_file.force_refresh()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file cannot be opened for writing, the callback function returns an error, or file truncation fails.
    pub fn force_refresh(&self) -> Result<()> {
        let Self { path, callback, .. } = self;
        File::options()
            .read(false)
            .write(true)
            .truncate(true)
            .open(path)
            .map_err(Error::IO)
            .and_then(|file| callback(file).map_err(Error::Callback))
    }

    /// Removes the lazy file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("temp.txt", |mut file| {
    ///     file.write_all(b"temporary data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Create the file first
    /// cache_file.open()?;
    ///
    /// // Remove the file when no longer needed
    /// cache_file.remove()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file exists but cannot be removed due to permissions or file system operations fail.
    pub fn remove(&self) -> Result<()> {
        let Self { path, cache_root, .. } = self;
        if path.exists() {
            fs::remove_file(path)?;

            // Remove empty parent directories up to cache root
            let mut current_parent = path.parent();
            while let Some(parent_dir) = current_parent
                && parent_dir != *cache_root
                && fs::read_dir(parent_dir)?.next().is_none()
            {
                // Try to remove the directory if it's empty
                fs::remove_dir(parent_dir)?;
                current_parent = parent_dir.parent();
            }
        }
        Ok(())
    }

    /// Initializes the lazy file, converting it to a [`CacheFile`].
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get_lazy("settings.txt", |mut file| {
    ///     file.write_all(b"default settings")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Initialize and convert to CacheFile
    /// let cache_file = cache_file.init()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file creation fails, the callback function returns an error, or file system operations fail.
    pub fn init(self) -> Result<CacheFile<'a>> {
        let Self { path, .. } = &self;
        if !path.exists() {
            let _ = self.create()?;
        }
        let cache_file = CacheFile(self);
        Ok(cache_file)
    }
}

impl Debug for CacheLazyFile<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let Self {
            path,
            refresh_interval,
            locked,
            ..
        } = self;
        f.debug_struct("LazyFile")
            .field("path", &path)
            .field("callback", &"...")
            .field("refresh_interval", &refresh_interval)
            .field("locked", &locked)
            .finish()
    }
}

/// A file in the cache.
///
/// Files are created immediately and can be accessed right away through the cache.
pub struct CacheFile<'a>(CacheLazyFile<'a>);

impl CacheFile<'_> {
    /// Sets the refresh interval for the file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use std::time::Duration;
    ///
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Set custom refresh interval to 10 minutes
    /// let cache_file = cache_file.with_refresh_interval(Duration::from_secs(10 * 60));
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn with_refresh_interval(self, refresh_interval: Duration) -> Self {
        let Self(inner) = self;
        let inner = inner.with_refresh_interval(refresh_interval);
        Self(inner)
    }

    /// Sets the refresh interval to the default value.
    ///
    /// # Example
    ///
    /// ```rust
    /// use std::time::Duration;
    ///
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Set custom interval, then reset to default
    /// let cache_file = cache_file
    ///     .with_refresh_interval(Duration::from_secs(120))
    ///     .with_default_refresh_interval();
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn with_default_refresh_interval(self) -> Self {
        let Self(inner) = self;
        let inner = inner.with_default_refresh_interval();
        Self(inner)
    }

    /// Returns the path of the file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get("settings.txt", |mut file| {
    ///     file.write_all(b"settings data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Get the file path
    /// let path = cache_file.path();
    /// println!("Cache file located at: {}", path.display());
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn path(&self) -> &Path {
        let Self(inner) = self;
        inner.path()
    }

    /// Returns the name of the file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Get the file name
    /// let name = cache_file.name();
    /// println!("Cache file name: {}", name);
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn name(&self) -> &str {
        let Self(inner) = self;
        inner.name()
    }

    /// Returns the refresh interval of the file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use std::time::Duration;
    ///
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache
    ///     .get("data.txt", |mut file| {
    ///         file.write_all(b"content")?;
    ///         Ok(())
    ///     })?
    ///     .with_refresh_interval(Duration::from_secs(600));
    ///
    /// // Check the current refresh interval
    /// let interval = cache_file.refresh_interval();
    /// println!("Cache refresh interval: {} seconds", interval.as_secs());
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn refresh_interval(&self) -> Duration {
        let Self(inner) = self;
        inner.refresh_interval()
    }

    /// Returns whether the file is locked.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let mut cache_file = cache.get("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Check if the file is locked
    /// assert!(!cache_file.is_locked());
    /// cache_file.lock()?;
    /// assert!(cache_file.is_locked());
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn is_locked(&self) -> bool {
        let Self(inner) = self;
        inner.is_locked()
    }

    /// Returns whether the file is unlocked.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let mut cache_file = cache.get("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Check if the file is unlocked
    /// assert!(cache_file.is_unlocked());
    /// cache_file.lock()?;
    /// assert!(!cache_file.is_unlocked());
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn is_unlocked(&self) -> bool {
        let Self(inner) = self;
        inner.is_unlocked()
    }

    /// Checks if the file is valid.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get("config.txt", |mut file| {
    ///     file.write_all(b"config data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Check if the cache file is still valid
    /// if cache_file.is_valid()? {
    ///     println!("File is valid, using cached content");
    /// }
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file metadata cannot be read, modification time cannot be determined, or system time calculations fail.
    pub fn is_valid(&self) -> Result<bool> {
        let Self(inner) = self;
        inner.is_valid()
    }

    /// Checks if the file is invalid.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get("data.txt", |mut file| {
    ///     file.write_all(b"cached data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Check if the cache file needs refreshing
    /// if cache_file.is_invalid()? {
    ///     println!("File is invalid, needs refresh");
    /// }
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file metadata cannot be read, modification time cannot be determined, or system time calculations fail.
    pub fn is_invalid(&self) -> Result<bool> {
        let Self(inner) = self;
        inner.is_invalid()
    }

    /// Returns the time until the file is valid.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get("data.txt", |mut file| {
    ///     file.write_all(b"content")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Get when the file will expire
    /// let valid_until = cache_file.valid_until()?;
    /// println!("File valid until: {:?}", valid_until);
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file metadata cannot be read or the file's modification time cannot be determined.
    pub fn valid_until(&self) -> Result<SystemTime> {
        let Self(inner) = self;
        inner.valid_until()
    }

    /// Locks the file to prevent refreshing.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let mut cache_file = cache.get("shared.txt", |mut file| {
    ///     file.write_all(b"shared data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Lock the file to prevent concurrent access
    /// cache_file.lock()?;
    /// // ... perform critical operations ...
    /// cache_file.unlock()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file is already locked.
    pub fn lock(&mut self) -> Result<()> {
        let Self(inner) = self;
        inner.lock()
    }

    /// Unlocks the file to allow refreshing.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let mut cache_file = cache.get("shared.txt", |mut file| {
    ///     file.write_all(b"shared data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Lock and then unlock the file
    /// cache_file.lock()?;
    /// // ... critical operations complete ...
    /// cache_file.unlock()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file is already unlocked.
    pub fn unlock(&mut self) -> Result<()> {
        let Self(inner) = self;
        inner.unlock()
    }

    /// Opens the file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use std::io::Read;
    ///
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get("config.txt", |mut file| {
    ///     file.write_all(b"config data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Open and read the file content
    /// let mut file = cache_file.open()?;
    /// let mut content = String::new();
    /// file.read_to_string(&mut content)?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if file creation fails (if the file doesn't exist), file refresh fails (if the file exists), the file cannot be opened for reading, or the callback function returns an error during creation.
    pub fn open(&self) -> Result<File> {
        let Self(inner) = self;
        inner.open()
    }

    /// Refreshes the file if it is invalid.
    ///
    /// This method only refreshes the file when it has expired. For unconditional refresh, see [`force_refresh`](Self::force_refresh).
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get("cache.txt", |mut file| {
    ///     file.write_all(b"cached data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Refresh only if the file is invalid
    /// cache_file.refresh()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if file validity cannot be determined or force refresh fails when the file is invalid.
    pub fn refresh(&self) -> Result<()> {
        let Self(inner) = self;
        inner.refresh()
    }

    /// Forces a refresh of the file.
    ///
    /// This method refreshes the file regardless of its validity. For conditional refresh, see [`refresh`](Self::refresh).
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get("data.txt", |mut file| {
    ///     file.write_all(b"fresh data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Force refresh regardless of validity
    /// cache_file.force_refresh()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file cannot be opened for writing, the callback function returns an error, or file truncation fails.
    pub fn force_refresh(&self) -> Result<()> {
        let Self(inner) = self;
        inner.force_refresh()
    }

    /// Removes the file.
    ///
    /// # Example
    ///
    /// ```rust
    /// use fcache::prelude::*;
    ///
    /// # fn wrapper() -> fcache::Result<()> {
    /// let cache = fcache::new()?;
    /// let cache_file = cache.get("temp.txt", |mut file| {
    ///     file.write_all(b"temporary data")?;
    ///     Ok(())
    /// })?;
    ///
    /// // Remove the file when no longer needed
    /// cache_file.remove()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Errors
    ///
    /// This function will return an error if the file exists but cannot be removed due to permissions or file system operations fail.
    pub fn remove(&self) -> Result<()> {
        let Self(inner) = self;
        inner.remove()
    }
}

impl Debug for CacheFile<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let Self(inner) = self;
        let CacheLazyFile {
            path,
            refresh_interval,
            locked,
            ..
        } = inner;
        f.debug_struct("File")
            .field("path", &path)
            .field("callback", &"...")
            .field("refresh_interval", &refresh_interval)
            .field("locked", &locked)
            .finish()
    }
}