agentvfs 0.1.6

Virtual filesystem CLI backed by embedded databases for AI agents
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
//! Storage backend abstraction layer.
//!
//! This module provides a trait-based abstraction over different storage backends
//! (SQLite, Sled, LMDB, etc.). Each backend implements its native concurrency model.

mod sqlite;

#[cfg(feature = "sled-backend")]
mod sled;

#[cfg(feature = "lmdb-backend")]
mod lmdb;

pub use sqlite::{
    AuditEntry, GcStats, OrphanedBlob, PruneStats, QuotaCheck, QuotaSettings, RestoreStats,
    SnapshotInfo, SqliteBackend, VaultStats,
};

#[cfg(feature = "sled-backend")]
pub use self::sled::SledBackend;

#[cfg(feature = "lmdb-backend")]
pub use self::lmdb::LmdbBackend;

use std::fmt;
use std::path::Path;
use std::str::FromStr;

use chrono::{TimeZone, Utc};

/// Storage backend type.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum BackendType {
    /// SQLite backend (default)
    #[default]
    Sqlite,
    /// Sled backend (requires sled-backend feature)
    #[cfg(feature = "sled-backend")]
    Sled,
    /// LMDB backend (requires lmdb-backend feature)
    #[cfg(feature = "lmdb-backend")]
    Lmdb,
}

impl BackendType {
    /// Get all available backend types.
    pub fn available() -> Vec<BackendType> {
        #[allow(unused_mut)]
        let mut backends = vec![BackendType::Sqlite];
        #[cfg(feature = "sled-backend")]
        backends.push(BackendType::Sled);
        #[cfg(feature = "lmdb-backend")]
        backends.push(BackendType::Lmdb);
        backends
    }

    /// Get the file extension for this backend.
    pub fn extension(&self) -> &'static str {
        match self {
            BackendType::Sqlite => "avfs",
            #[cfg(feature = "sled-backend")]
            BackendType::Sled => "sled",
            #[cfg(feature = "lmdb-backend")]
            BackendType::Lmdb => "lmdb",
        }
    }
}

impl fmt::Display for BackendType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            BackendType::Sqlite => write!(f, "sqlite"),
            #[cfg(feature = "sled-backend")]
            BackendType::Sled => write!(f, "sled"),
            #[cfg(feature = "lmdb-backend")]
            BackendType::Lmdb => write!(f, "lmdb"),
        }
    }
}

impl FromStr for BackendType {
    type Err = String;

    fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
        match s.to_lowercase().as_str() {
            "sqlite" => Ok(BackendType::Sqlite),
            #[cfg(feature = "sled-backend")]
            "sled" => Ok(BackendType::Sled),
            #[cfg(feature = "lmdb-backend")]
            "lmdb" => Ok(BackendType::Lmdb),
            _ => Err(format!("unknown backend: {}", s)),
        }
    }
}

use crate::error::Result;
#[cfg(any(feature = "sled-backend", feature = "lmdb-backend"))]
use crate::fs::path as vfs_path;
use crate::fs::{FileEntry, FileVersion, Metadata, SearchResult, Tag};

/// Runtime-selected storage backend wrapper.
pub enum VaultBackend {
    Sqlite(SqliteBackend),
    #[cfg(feature = "sled-backend")]
    Sled(SledBackend),
    #[cfg(feature = "lmdb-backend")]
    Lmdb(LmdbBackend),
}

impl VaultBackend {
    /// Open a vault with the specified backend type.
    pub fn open(path: &Path, backend: BackendType) -> Result<Self> {
        match backend {
            BackendType::Sqlite => Ok(Self::Sqlite(SqliteBackend::open(path)?)),
            #[cfg(feature = "sled-backend")]
            BackendType::Sled => Ok(Self::Sled(SledBackend::open(path)?)),
            #[cfg(feature = "lmdb-backend")]
            BackendType::Lmdb => Ok(Self::Lmdb(LmdbBackend::open(path)?)),
        }
    }

    pub fn get_entry_by_path(&self, path: &str) -> Result<FileEntry> {
        match self {
            Self::Sqlite(backend) => backend.get_entry_by_path(path),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_entry_by_path(path),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_entry_by_path(path),
        }
    }

    pub fn get_entry_by_id(&self, id: i64) -> Result<FileEntry> {
        match self {
            Self::Sqlite(backend) => backend.get_entry_by_id(id),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_entry_by_id(id)?.ok_or_else(|| {
                crate::error::VfsError::Internal(format!("file entry not found: id={id}"))
            }),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_entry_by_id(id)?.ok_or_else(|| {
                crate::error::VfsError::Internal(format!("file entry not found: id={id}"))
            }),
        }
    }

    pub fn list_children(&self, parent_path: &str) -> Result<Vec<FileEntry>> {
        let parent = self.get_entry_by_path(parent_path)?;

        let mut children = match self {
            Self::Sqlite(backend) => backend.list_children(parent.id)?,
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => {
                let children = backend.list_children(parent.id)?;
                let mut entries = Vec::with_capacity(children.len());
                for child in children {
                    let child_path = vfs_path::join(parent_path, &child.name)?;
                    entries.push(backend.get_entry_by_path(&child_path)?);
                }
                entries
            }
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => {
                let children = backend.list_children(parent.id)?;
                let mut entries = Vec::with_capacity(children.len());
                for child in children {
                    let child_path = vfs_path::join(parent_path, &child.name)?;
                    entries.push(backend.get_entry_by_path(&child_path)?);
                }
                entries
            }
        };

        children.sort_by(|a, b| {
            b.file_type
                .to_i64()
                .cmp(&a.file_type.to_i64())
                .then_with(|| a.name.cmp(&b.name))
        });

        Ok(children)
    }

    pub fn read_content(&self, hash: &[u8; 32]) -> Result<Vec<u8>> {
        match self {
            Self::Sqlite(backend) => backend.read_content(hash),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.read_content(hash),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.read_content(hash),
        }
    }

    pub fn write_content(&self, data: &[u8]) -> Result<[u8; 32]> {
        match self {
            Self::Sqlite(backend) => backend.write_content(data),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.write_content(data),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.write_content(data),
        }
    }

    pub fn create_file(
        &self,
        parent_id: i64,
        name: &str,
        content_hash: &[u8; 32],
        size: u64,
        path: &str,
    ) -> Result<i64> {
        match self {
            Self::Sqlite(backend) => backend.create_file(parent_id, name, content_hash, size, path),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.create_file(parent_id, name, *content_hash, size),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.create_file(parent_id, name, *content_hash, size),
        }
    }

    pub fn update_file(&self, file_id: i64, content_hash: &[u8; 32], size: u64) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.update_file(file_id, content_hash, size),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.update_file(file_id, *content_hash, size),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.update_file(file_id, *content_hash, size),
        }
    }

    pub fn create_directory(&self, parent_id: i64, name: &str, path: &str) -> Result<i64> {
        match self {
            Self::Sqlite(backend) => backend.create_directory(parent_id, name, path),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.create_directory(parent_id, name),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.create_directory(parent_id, name),
        }
    }

    pub fn name_exists(&self, parent_id: i64, name: &str) -> Result<bool> {
        match self {
            Self::Sqlite(backend) => backend.name_exists(parent_id, name),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.name_exists(parent_id, name),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.name_exists(parent_id, name),
        }
    }

    pub fn get_file_id(&self, parent_id: i64, name: &str) -> Result<Option<i64>> {
        match self {
            Self::Sqlite(backend) => backend.get_file_id(parent_id, name),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_file_id(parent_id, name),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_file_id(parent_id, name),
        }
    }

    pub fn delete_entry(&self, id: i64, path: &str, recursive: bool) -> Result<()> {
        let _ = recursive;
        match self {
            Self::Sqlite(backend) => backend.delete_entry(id, path),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.delete_entry(id, recursive),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.delete_entry(id, recursive),
        }
    }

    pub fn has_children(&self, id: i64) -> Result<bool> {
        match self {
            Self::Sqlite(backend) => backend.has_children(id),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.has_children(id),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.has_children(id),
        }
    }

    pub fn move_entry(
        &self,
        id: i64,
        new_parent_id: i64,
        new_name: &str,
        old_path: &str,
        new_path: &str,
    ) -> Result<()> {
        match self {
            Self::Sqlite(backend) => {
                backend.move_entry(id, new_parent_id, new_name, old_path, new_path)
            }
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.move_entry(id, new_parent_id, new_name),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.move_entry(id, new_parent_id, new_name),
        }
    }

    pub fn rebuild_child_paths(&self, parent_id: i64, parent_path: &str) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.rebuild_child_paths(parent_id, parent_path),
            #[cfg(feature = "sled-backend")]
            Self::Sled(_) => Ok(()),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(_) => Ok(()),
        }
    }

    pub fn copy_file(
        &self,
        src: &FileEntry,
        new_parent_id: i64,
        new_name: &str,
        new_path: &str,
    ) -> Result<i64> {
        match self {
            Self::Sqlite(backend) => backend.copy_file(src, new_parent_id, new_name, new_path),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.copy_file(src.id, new_parent_id, new_name),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.copy_file(src.id, new_parent_id, new_name),
        }
    }

    pub fn create_version(&self, file_id: i64, content_hash: &[u8; 32], size: u64) -> Result<u64> {
        match self {
            Self::Sqlite(backend) => backend.create_version(file_id, content_hash, size),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => Ok(backend.create_version(file_id, *content_hash, size)? as u64),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => Ok(backend.create_version(file_id, *content_hash, size)? as u64),
        }
    }

    pub fn sync_file_index(&self, path: &str) -> Result<()> {
        let entry = self.get_entry_by_path(path)?;
        if !entry.is_file() {
            return Ok(());
        }

        match self {
            Self::Sqlite(backend) => backend.sync_file_index(entry.id, path),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => {
                backend.remove_from_index(path)?;
                if let Some(hash) = entry.content_hash {
                    let data = backend.read_content(&hash)?;
                    if let Ok(content) = String::from_utf8(data) {
                        backend.index_file(path, &content)?;
                    }
                }
                Ok(())
            }
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => {
                backend.remove_from_index(path)?;
                if let Some(hash) = entry.content_hash {
                    let data = backend.read_content(&hash)?;
                    if let Ok(content) = String::from_utf8(data) {
                        backend.index_file(path, &content)?;
                    }
                }
                Ok(())
            }
        }
    }

    pub fn remove_from_index(&self, path: &str) -> Result<()> {
        match self {
            Self::Sqlite(backend) => {
                let entry = backend.get_entry_by_path(path)?;
                backend.remove_from_index(entry.id)
            }
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.remove_from_index(path),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.remove_from_index(path),
        }
    }

    pub fn get_setting(&self, key: &str) -> Result<Option<String>> {
        match self {
            Self::Sqlite(backend) => backend.get_setting(key),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_setting(key),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_setting(key),
        }
    }

    pub fn get_file_versions(&self, file_id: i64) -> Result<Vec<FileVersion>> {
        match self {
            Self::Sqlite(backend) => backend.get_file_versions(file_id),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_file_versions(file_id),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_file_versions(file_id),
        }
    }

    pub fn get_version_content(&self, file_id: i64, version_num: u64) -> Result<Vec<u8>> {
        match self {
            Self::Sqlite(backend) => backend.get_version_content(file_id, version_num),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_version_content(file_id, version_num),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_version_content(file_id, version_num),
        }
    }

    pub fn get_latest_version_number(&self, file_id: i64) -> Result<u64> {
        match self {
            Self::Sqlite(backend) => backend.get_latest_version_number(file_id),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => Ok(backend.get_latest_version_number(file_id)?.unwrap_or(0)),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => Ok(backend.get_latest_version_number(file_id)?.unwrap_or(0)),
        }
    }

    pub fn rebuild_search_index(&self) -> Result<u64> {
        match self {
            Self::Sqlite(backend) => backend.rebuild_search_index(),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.rebuild_search_index(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.rebuild_search_index(),
        }
    }

    pub fn search_content(&self, query: &str, limit: usize) -> Result<Vec<SearchResult>> {
        match self {
            Self::Sqlite(backend) => backend.search_content(query, limit),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.search_content(query, limit),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.search_content(query, limit),
        }
    }

    pub fn create_tag(&self, name: &str) -> Result<i64> {
        match self {
            Self::Sqlite(backend) => backend.create_tag(name),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.create_tag(name),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.create_tag(name),
        }
    }

    pub fn delete_tag(&self, tag_id: i64) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.delete_tag(tag_id),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.delete_tag(tag_id),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.delete_tag(tag_id),
        }
    }

    pub fn rename_tag(&self, tag_id: i64, new_name: &str) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.rename_tag(tag_id, new_name),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.rename_tag(tag_id, new_name),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.rename_tag(tag_id, new_name),
        }
    }

    pub fn list_tags(&self) -> Result<Vec<Tag>> {
        match self {
            Self::Sqlite(backend) => backend.list_tags(),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.list_tags(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.list_tags(),
        }
    }

    pub fn get_tag_by_name(&self, name: &str) -> Result<Option<Tag>> {
        match self {
            Self::Sqlite(backend) => backend.get_tag_by_name(name),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_tag_by_name(name),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_tag_by_name(name),
        }
    }

    pub fn add_tag_to_file(&self, file_id: i64, tag_id: i64) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.add_tag_to_file(file_id, tag_id),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.add_tag_to_file(file_id, tag_id),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.add_tag_to_file(file_id, tag_id),
        }
    }

    pub fn remove_tag_from_file(&self, file_id: i64, tag_id: i64) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.remove_tag_from_file(file_id, tag_id),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.remove_tag_from_file(file_id, tag_id),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.remove_tag_from_file(file_id, tag_id),
        }
    }

    pub fn get_file_tags(&self, file_id: i64) -> Result<Vec<Tag>> {
        match self {
            Self::Sqlite(backend) => backend.get_file_tags(file_id),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_file_tags(file_id),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_file_tags(file_id),
        }
    }

    pub fn get_files_with_tag(&self, tag_id: i64) -> Result<Vec<i64>> {
        match self {
            Self::Sqlite(backend) => backend.get_files_with_tag(tag_id),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_files_with_tag(tag_id),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_files_with_tag(tag_id),
        }
    }

    pub fn get_or_create_tag(&self, name: &str) -> Result<i64> {
        match self {
            Self::Sqlite(backend) => backend.get_or_create_tag(name),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_or_create_tag(name),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_or_create_tag(name),
        }
    }

    pub fn set_metadata(&self, file_id: i64, key: &str, value: &str) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.set_metadata(file_id, key, value),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.set_metadata(file_id, key, value),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.set_metadata(file_id, key, value),
        }
    }

    pub fn get_metadata(&self, file_id: i64, key: &str) -> Result<Option<String>> {
        match self {
            Self::Sqlite(backend) => backend.get_metadata(file_id, key),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_metadata(file_id, key),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_metadata(file_id, key),
        }
    }

    pub fn get_all_metadata(&self, file_id: i64) -> Result<Vec<Metadata>> {
        match self {
            Self::Sqlite(backend) => backend.get_all_metadata(file_id),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_all_metadata(file_id),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_all_metadata(file_id),
        }
    }

    pub fn delete_metadata(&self, file_id: i64, key: &str) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.delete_metadata(file_id, key),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.delete_metadata(file_id, key),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.delete_metadata(file_id, key),
        }
    }

    pub fn get_files_with_metadata(&self, key: &str, value: &str) -> Result<Vec<i64>> {
        match self {
            Self::Sqlite(backend) => backend.get_files_with_metadata(key, value),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_files_with_metadata(key, Some(value)),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_files_with_metadata(key, Some(value)),
        }
    }

    pub fn get_vault_stats(&self) -> Result<VaultStats> {
        match self {
            Self::Sqlite(backend) => backend.get_vault_stats(),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_vault_stats(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_vault_stats(),
        }
    }

    pub fn prune_versions_keep(&self, file_id: i64, keep: u64) -> Result<u64> {
        match self {
            Self::Sqlite(backend) => backend.prune_versions_keep(file_id, keep),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => Ok(backend.prune_versions_keep(file_id, keep)?.versions_deleted),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => Ok(backend.prune_versions_keep(file_id, keep)?.versions_deleted),
        }
    }

    pub fn prune_versions_older_than(&self, file_id: i64, timestamp: i64) -> Result<u64> {
        #[cfg(any(feature = "sled-backend", feature = "lmdb-backend"))]
        let before = timestamp_to_utc(timestamp)?;
        match self {
            Self::Sqlite(backend) => backend.prune_versions_older_than(file_id, timestamp),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => Ok(backend
                .prune_versions_older_than(file_id, before)?
                .versions_deleted),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => Ok(backend
                .prune_versions_older_than(file_id, before)?
                .versions_deleted),
        }
    }

    pub fn prune_all_versions(
        &self,
        keep: Option<u64>,
        older_than: Option<i64>,
    ) -> Result<PruneStats> {
        match self {
            Self::Sqlite(backend) => backend.prune_all_versions(keep, older_than),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => {
                let mut stats = PruneStats {
                    files_processed: 0,
                    versions_deleted: 0,
                };
                let before = older_than.map(timestamp_to_utc).transpose()?;
                for file_id in backend.get_all_file_ids()? {
                    let pruned = if let Some(keep) = keep {
                        backend.prune_versions_keep(file_id, keep)?
                    } else if let Some(before) = before {
                        backend.prune_versions_older_than(file_id, before)?
                    } else {
                        continue;
                    };
                    stats.files_processed += pruned.files_processed;
                    stats.versions_deleted += pruned.versions_deleted;
                }
                Ok(stats)
            }
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => {
                let mut stats = PruneStats {
                    files_processed: 0,
                    versions_deleted: 0,
                };
                let before = older_than.map(timestamp_to_utc).transpose()?;
                for file_id in backend.get_all_file_ids()? {
                    let pruned = if let Some(keep) = keep {
                        backend.prune_versions_keep(file_id, keep)?
                    } else if let Some(before) = before {
                        backend.prune_versions_older_than(file_id, before)?
                    } else {
                        continue;
                    };
                    stats.files_processed += pruned.files_processed;
                    stats.versions_deleted += pruned.versions_deleted;
                }
                Ok(stats)
            }
        }
    }

    pub fn count_versions_to_prune_keep(&self, file_id: i64, keep: u64) -> Result<u64> {
        match self {
            Self::Sqlite(backend) => backend.count_versions_to_prune_keep(file_id, keep),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => Ok(backend
                .get_file_versions(file_id)?
                .len()
                .saturating_sub(keep as usize) as u64),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => Ok(backend
                .get_file_versions(file_id)?
                .len()
                .saturating_sub(keep as usize) as u64),
        }
    }

    pub fn count_versions_to_prune_older(&self, file_id: i64, timestamp: i64) -> Result<u64> {
        #[cfg(any(feature = "sled-backend", feature = "lmdb-backend"))]
        let before = timestamp_to_utc(timestamp)?;
        match self {
            Self::Sqlite(backend) => backend.count_versions_to_prune_older(file_id, timestamp),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => Ok(backend
                .get_file_versions(file_id)?
                .into_iter()
                .filter(|version| version.created_at < before)
                .count() as u64),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => Ok(backend
                .get_file_versions(file_id)?
                .into_iter()
                .filter(|version| version.created_at < before)
                .count() as u64),
        }
    }

    pub fn recalculate_ref_counts(&self) -> Result<()> {
        match self {
            Self::Sqlite(backend) => {
                backend.recalculate_ref_counts()?;
                Ok(())
            }
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.recalculate_ref_counts(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.recalculate_ref_counts(),
        }
    }

    pub fn find_orphaned_blobs(&self) -> Result<Vec<OrphanedBlob>> {
        match self {
            Self::Sqlite(backend) => backend.find_orphaned_blobs(),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.find_orphaned_blobs(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.find_orphaned_blobs(),
        }
    }

    pub fn delete_orphaned_blobs(&self) -> Result<GcStats> {
        match self {
            Self::Sqlite(backend) => backend.delete_orphaned_blobs(),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.delete_orphaned_blobs(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.delete_orphaned_blobs(),
        }
    }

    pub fn vacuum(&self) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.vacuum(),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.sync(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.sync(),
        }
    }

    /// Sync all pending operations to disk.
    /// For Sled/LMDB, this flushes deferred index updates and counters.
    pub fn sync(&self) -> Result<()> {
        match self {
            Self::Sqlite(_) => Ok(()), // SQLite auto-syncs on each operation
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.sync(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.sync(),
        }
    }

    pub fn get_db_size(&self) -> Result<u64> {
        match self {
            Self::Sqlite(backend) => backend.get_db_size(),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => Ok(backend.get_db_size()? as u64),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => Ok(backend.get_db_size()? as u64),
        }
    }

    pub fn get_all_file_ids(&self) -> Result<Vec<i64>> {
        match self {
            Self::Sqlite(backend) => backend.get_all_file_ids(),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_all_file_ids(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_all_file_ids(),
        }
    }

    pub fn get_quota(&self, key: &str) -> Result<Option<u64>> {
        match self {
            Self::Sqlite(backend) => backend.get_quota(key),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_quota(key),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_quota(key),
        }
    }

    pub fn set_quota(&self, key: &str, value: u64) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.set_quota(key, value),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.set_quota(key, value),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.set_quota(key, value),
        }
    }

    pub fn clear_quota(&self, key: &str) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.clear_quota(key),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.clear_quota(key),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.clear_quota(key),
        }
    }

    pub fn check_quota(&self, new_size: u64, new_file_count: u64) -> Result<QuotaCheck> {
        match self {
            Self::Sqlite(backend) => backend.check_quota(new_size, new_file_count),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.check_quota(new_size, new_file_count),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.check_quota(new_size, new_file_count),
        }
    }

    pub fn get_all_quotas(&self) -> Result<QuotaSettings> {
        match self {
            Self::Sqlite(backend) => backend.get_all_quotas(),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_all_quotas(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_all_quotas(),
        }
    }

    pub fn log_operation(&self, op: &str, path: Option<&str>, details: Option<&str>) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.log_operation(op, path, details),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.log_operation(op, path, details),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.log_operation(op, path, details),
        }
    }

    pub fn get_audit_log(&self, limit: usize, since: Option<i64>) -> Result<Vec<AuditEntry>> {
        let since = since.map(timestamp_to_utc).transpose()?;
        match self {
            Self::Sqlite(backend) => backend.get_audit_log(limit, since.map(|dt| dt.timestamp())),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_audit_log(Some(limit), since, None),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_audit_log(Some(limit), since, None),
        }
    }

    pub fn clear_audit_log(&self, before: Option<i64>) -> Result<u64> {
        let before = before.map(timestamp_to_utc).transpose()?;
        match self {
            Self::Sqlite(backend) => backend.clear_audit_log(before.map(|dt| dt.timestamp())),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.clear_audit_log(before),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.clear_audit_log(before),
        }
    }

    pub fn get_audit_count(&self) -> Result<u64> {
        match self {
            Self::Sqlite(backend) => backend.get_audit_count(),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_audit_count(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_audit_count(),
        }
    }

    pub fn save_snapshot(&self, name: &str, description: Option<&str>) -> Result<SnapshotInfo> {
        match self {
            Self::Sqlite(backend) => backend.save_snapshot(name, description),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => {
                backend.save_snapshot(name, description)?;
                backend.get_snapshot_info(name)?.ok_or_else(|| {
                    crate::error::VfsError::NotFound(format!("snapshot: {name}").into())
                })
            }
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => {
                backend.save_snapshot(name, description)?;
                backend.get_snapshot_info(name)?.ok_or_else(|| {
                    crate::error::VfsError::NotFound(format!("snapshot: {name}").into())
                })
            }
        }
    }

    pub fn list_snapshots(&self) -> Result<Vec<SnapshotInfo>> {
        match self {
            Self::Sqlite(backend) => backend.list_snapshots(),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.list_snapshots(),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.list_snapshots(),
        }
    }

    pub fn get_snapshot(&self, name: &str) -> Result<SnapshotInfo> {
        match self {
            Self::Sqlite(backend) => backend.get_snapshot(name),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.get_snapshot_info(name)?.ok_or_else(|| {
                crate::error::VfsError::NotFound(format!("snapshot: {name}").into())
            }),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.get_snapshot_info(name)?.ok_or_else(|| {
                crate::error::VfsError::NotFound(format!("snapshot: {name}").into())
            }),
        }
    }

    pub fn restore_snapshot(&self, name: &str) -> Result<RestoreStats> {
        match self {
            Self::Sqlite(backend) => backend.restore_snapshot(name),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.restore_snapshot(name),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.restore_snapshot(name),
        }
    }

    pub fn delete_snapshot(&self, name: &str) -> Result<()> {
        match self {
            Self::Sqlite(backend) => backend.delete_snapshot(name),
            #[cfg(feature = "sled-backend")]
            Self::Sled(backend) => backend.delete_snapshot(name),
            #[cfg(feature = "lmdb-backend")]
            Self::Lmdb(backend) => backend.delete_snapshot(name),
        }
    }
}

fn timestamp_to_utc(timestamp: i64) -> Result<chrono::DateTime<Utc>> {
    Utc.timestamp_opt(timestamp, 0).single().ok_or_else(|| {
        crate::error::VfsError::InvalidInput(format!("invalid timestamp: {timestamp}"))
    })
}

/// Storage backend trait.
///
/// All storage backends must implement this trait. The trait is designed to be
/// backend-agnostic while allowing each backend to use its native concurrency model.
///
/// # Concurrency
///
/// Concurrency behavior depends on the backend:
/// - **SQLite (WAL)**: Concurrent reads, single writer with busy timeout
/// - **Sled**: Lock-free reads, internally serialized writes
/// - **LMDB**: MVCC with single writer
/// - **RocksDB**: Concurrent reads and writes with internal synchronization
pub trait StorageBackend: Send + Sync {
    /// Get a value by key from a collection.
    ///
    /// Returns `Ok(None)` if the key doesn't exist.
    fn get(&self, collection: &str, key: &[u8]) -> Result<Option<Vec<u8>>>;

    /// Store a key-value pair in a collection.
    ///
    /// Overwrites any existing value for the key.
    fn put(&self, collection: &str, key: &[u8], value: &[u8]) -> Result<()>;

    /// Delete a key from a collection.
    ///
    /// Returns `Ok(())` even if the key doesn't exist.
    fn delete(&self, collection: &str, key: &[u8]) -> Result<()>;

    /// Check if a key exists in a collection.
    fn exists(&self, collection: &str, key: &[u8]) -> Result<bool>;

    /// Scan all key-value pairs in a collection.
    fn scan_all(&self, collection: &str) -> Result<Vec<(Vec<u8>, Vec<u8>)>>;

    /// Scan key-value pairs where the key starts with the given prefix.
    fn scan_prefix(&self, collection: &str, prefix: &[u8]) -> Result<Vec<(Vec<u8>, Vec<u8>)>>;

    /// Ensure all pending writes are persisted to disk.
    fn sync(&self) -> Result<()>;

    /// Get the path to the database file.
    fn path(&self) -> &std::path::Path;
}