diaryx_core 0.11.0

Core library for Diaryx - a tool to manage markdown files with YAML frontmatter
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
//! CRDT-updating filesystem decorator.
//!
//! This module provides [`CrdtFs`], a decorator that automatically updates the
//! workspace CRDT when filesystem operations occur. This ensures that local file
//! changes are automatically synchronized to the CRDT layer.
//!
//! # Doc-ID Bridge Layer
//!
//! CrdtFs bridges path-based filesystem operations to the doc-ID-based CRDT:
//!
//! ```text
//! Path Operation → CrdtFs → find_by_path() → doc_id → CRDT Update
//!                         ↘ or create_file() ↗
//! ```
//!
//! - For writes: Look up doc_id by path, or create new file with UUID if not found
//! - For renames: Just update the `filename` property (doc_id is stable!)
//! - For moves: Just update the `part_of` property (doc_id is stable!)
//! - For deletes: Mark the file as deleted (tombstone)
//!
//! # Architecture
//!
//! ```text
//! Local Write → CrdtFs.write_file() → Inner FS → Update WorkspaceCrdt
//!//!                                              WorkspaceCrdt.observe_updates()
//!//!                                              RustSyncBridge (syncs to server)
//! ```
//!
//! # Feature Gate
//!
//! This module requires the `crdt` feature to be enabled.

use std::collections::HashSet;
use std::io::Result;
use std::path::{Path, PathBuf};
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, RwLock};

use crate::crdt::{BodyDocManager, FileMetadata, WorkspaceCrdt};
use crate::frontmatter;
use crate::fs::{AsyncFileSystem, BoxFuture};
use crate::link_parser;

/// A filesystem decorator that automatically updates the CRDT on file operations.
///
/// This decorator intercepts filesystem writes and updates the workspace CRDT
/// with file metadata extracted from frontmatter. It supports:
///
/// - Automatic CRDT updates on file write/create
/// - Soft deletion (tombstone) on file delete
/// - Path tracking on file move/rename
/// - Runtime enable/disable toggle
///
/// # Example
///
/// ```ignore
/// use diaryx_core::fs::{CrdtFs, InMemoryFileSystem, SyncToAsyncFs};
/// use diaryx_core::crdt::{WorkspaceCrdt, MemoryStorage};
/// use std::sync::Arc;
///
/// let inner_fs = SyncToAsyncFs::new(InMemoryFileSystem::new());
/// let storage = Arc::new(MemoryStorage::new());
/// let workspace_crdt = Arc::new(WorkspaceCrdt::new(storage.clone()));
/// let body_manager = Arc::new(BodyDocManager::new(storage));
///
/// let crdt_fs = CrdtFs::new(inner_fs, workspace_crdt, body_manager);
///
/// // All writes now automatically update the CRDT
/// crdt_fs.write_file(Path::new("test.md"), "---\ntitle: Test\n---\nContent").await?;
/// ```
pub struct CrdtFs<FS: AsyncFileSystem> {
    /// The underlying filesystem.
    inner: FS,
    /// The workspace CRDT for file metadata.
    workspace_crdt: Arc<WorkspaceCrdt>,
    /// Manager for per-file body documents.
    body_doc_manager: Arc<BodyDocManager>,
    /// Whether CRDT updates are enabled.
    enabled: AtomicBool,
    /// Paths currently being written locally (for loop prevention).
    local_writes_in_progress: RwLock<HashSet<PathBuf>>,
    /// Paths currently being written from sync (skip CRDT updates entirely).
    /// This prevents feedback loops where remote sync writes trigger new CRDT updates.
    sync_writes_in_progress: RwLock<HashSet<PathBuf>>,
}

impl<FS: AsyncFileSystem> CrdtFs<FS> {
    /// Create a new CRDT filesystem decorator.
    pub fn new(
        inner: FS,
        workspace_crdt: Arc<WorkspaceCrdt>,
        body_doc_manager: Arc<BodyDocManager>,
    ) -> Self {
        Self {
            inner,
            workspace_crdt,
            body_doc_manager,
            enabled: AtomicBool::new(true),
            local_writes_in_progress: RwLock::new(HashSet::new()),
            sync_writes_in_progress: RwLock::new(HashSet::new()),
        }
    }

    /// Normalize a path to a canonical form for CRDT storage.
    ///
    /// Strips leading "./" and "/" prefixes to ensure consistent keys
    /// across the CRDT. This matches how `InitializeWorkspaceCrdt` derives
    /// canonical paths from the workspace tree.
    fn normalize_crdt_path(path: &Path) -> String {
        let path_str = path.to_string_lossy();
        path_str
            .trim_start_matches("./")
            .trim_start_matches('/')
            .to_string()
    }

    /// Check if CRDT updates are enabled.
    pub fn is_enabled(&self) -> bool {
        self.enabled.load(Ordering::SeqCst)
    }

    /// Enable or disable CRDT updates.
    pub fn set_enabled(&self, enabled: bool) {
        self.enabled.store(enabled, Ordering::SeqCst);
    }

    /// Get a reference to the workspace CRDT.
    pub fn workspace_crdt(&self) -> &Arc<WorkspaceCrdt> {
        &self.workspace_crdt
    }

    /// Get a reference to the body document manager.
    pub fn body_doc_manager(&self) -> &Arc<BodyDocManager> {
        &self.body_doc_manager
    }

    /// Get a reference to the inner filesystem.
    pub fn inner(&self) -> &FS {
        &self.inner
    }

    /// Check if a path is currently being written locally.
    ///
    /// Used to prevent loops when CRDT observers trigger writes.
    pub fn is_local_write_in_progress(&self, path: &Path) -> bool {
        let writes = self.local_writes_in_progress.read().unwrap();
        writes.contains(&path.to_path_buf())
    }

    /// Mark a path as being written locally.
    fn mark_local_write_start(&self, path: &Path) {
        let mut writes = self.local_writes_in_progress.write().unwrap();
        writes.insert(path.to_path_buf());
    }

    /// Clear the local write marker for a path.
    fn mark_local_write_end(&self, path: &Path) {
        let mut writes = self.local_writes_in_progress.write().unwrap();
        writes.remove(&path.to_path_buf());
    }

    /// Check if a path is currently being written from sync.
    ///
    /// Sync writes should skip CRDT updates entirely to prevent feedback loops.
    pub fn is_sync_write_in_progress(&self, path: &Path) -> bool {
        let writes = self.sync_writes_in_progress.read().unwrap();
        writes.contains(&path.to_path_buf())
    }

    /// Mark a path as being written from sync (internal implementation).
    fn mark_sync_write_start_internal(&self, path: &Path) {
        let mut writes = self.sync_writes_in_progress.write().unwrap();
        writes.insert(path.to_path_buf());
        log::debug!(
            "CrdtFs: Marked sync write start for {:?} (total: {})",
            path,
            writes.len()
        );
    }

    /// Clear the sync write marker for a path (internal implementation).
    fn mark_sync_write_end_internal(&self, path: &Path) {
        let mut writes = self.sync_writes_in_progress.write().unwrap();
        writes.remove(&path.to_path_buf());
        log::debug!(
            "CrdtFs: Marked sync write end for {:?} (remaining: {})",
            path,
            writes.len()
        );
    }

    /// Extract FileMetadata from file content, including the filename.
    ///
    /// Parses frontmatter and converts known fields to FileMetadata.
    /// Paths in `part_of` and `contents` are converted to canonical
    /// (workspace-relative) paths for consistent CRDT storage.
    ///
    /// Supports multiple link formats:
    /// - Markdown links: `[Title](/path/file.md)` or `[Title](../file.md)`
    /// - Plain paths: `/path/file.md`, `../file.md`, `file.md`
    fn extract_metadata(&self, path: &Path, content: &str) -> FileMetadata {
        let mut metadata = match frontmatter::parse_or_empty(content) {
            Ok(parsed) => self.frontmatter_to_metadata(&parsed.frontmatter),
            Err(_) => FileMetadata::default(),
        };

        // Set the filename from the path
        metadata.filename = path
            .file_name()
            .and_then(|n| n.to_str())
            .unwrap_or("")
            .to_string();

        // Convert part_of to canonical path using link_parser
        // This handles markdown links, root paths, and relative paths
        if let Some(ref part_of) = metadata.part_of {
            let parsed = link_parser::parse_link(part_of);
            // Only resolve relative paths. If the path is already canonical
            // (WorkspaceRoot) or looks like a canonical path (contains '/' but
            // doesn't start with '.'), use it as-is to avoid path doubling.
            let canonical = if parsed.path_type == link_parser::PathType::WorkspaceRoot {
                parsed.path.clone()
            } else {
                link_parser::to_canonical(&parsed, path)
            };
            metadata.part_of = Some(canonical);
        }

        // Convert contents to canonical paths using link_parser
        if let Some(ref contents) = metadata.contents {
            metadata.contents = Some(
                contents
                    .iter()
                    .map(|link_str| {
                        let parsed = link_parser::parse_link(link_str);
                        // Only resolve relative paths. If the path is already canonical
                        // (WorkspaceRoot) or looks like a canonical path (contains '/' but
                        // doesn't start with '.'), use it as-is to avoid path doubling.
                        if parsed.path_type == link_parser::PathType::WorkspaceRoot {
                            parsed.path.clone()
                        } else {
                            link_parser::to_canonical(&parsed, path)
                        }
                    })
                    .collect(),
            );
        }

        metadata
    }

    /// Look up a doc_id by path, returning the path as the key for backward compatibility.
    ///
    /// This maintains backward compatibility with existing code that expects
    /// path-based CRDT keys. The doc-ID based system is used when:
    /// 1. The workspace has been migrated (needs_migration() returns false)
    /// 2. A file is explicitly created with create_file()
    ///
    /// For now, this returns the path as the key, which maintains compatibility
    /// with all existing tests and functionality. The migration to doc-IDs
    /// will be triggered explicitly via migrate_to_doc_ids().
    fn path_to_doc_id(&self, path: &Path, _metadata: &FileMetadata) -> Option<String> {
        // Normalize the path to a canonical form for CRDT storage
        let normalized = Self::normalize_crdt_path(path);

        // For backward compatibility, always use path as the key
        // The doc-ID based system is opt-in via explicit migration
        //
        // In the future, after migration:
        // 1. Try find_by_path() to get existing doc_id
        // 2. If not found, create_file() to generate new UUID
        //
        // But for now, maintain compatibility with existing code

        Some(normalized)
    }

    /// Convert frontmatter to FileMetadata.
    fn frontmatter_to_metadata(
        &self,
        fm: &indexmap::IndexMap<String, serde_yaml::Value>,
    ) -> FileMetadata {
        // Helper to parse the frontmatter "updated" value into a timestamp (ms)
        fn parse_updated_value(value: &serde_yaml::Value) -> Option<i64> {
            if let Some(num) = value.as_i64() {
                return Some(num);
            }

            if let Some(num) = value.as_f64() {
                return Some(num as i64);
            }

            if let Some(raw) = value.as_str() {
                // Try numeric string first
                if let Ok(num) = raw.parse::<i64>() {
                    return Some(num);
                }

                // Try RFC3339/ISO8601 timestamp
                if let Ok(parsed) = chrono::DateTime::parse_from_rfc3339(raw) {
                    return Some(parsed.timestamp_millis());
                }
            }

            None
        }

        // Try to convert via JSON for automatic field mapping
        if let Ok(json_value) = serde_json::to_value(fm)
            && let Ok(metadata) = serde_json::from_value::<FileMetadata>(json_value)
        {
            let mut metadata = metadata;

            if let Some(updated) = fm.get("updated").and_then(parse_updated_value) {
                metadata.modified_at = updated;
            }

            // Only default to "now" if modified_at is missing/zero
            if metadata.modified_at == 0 {
                metadata.modified_at = chrono::Utc::now().timestamp_millis();
            }

            return metadata;
        }

        // Fallback: manual extraction of known fields
        let mut metadata = FileMetadata::default();

        if let Some(title) = fm.get("title") {
            metadata.title = title.as_str().map(String::from);
        }
        if let Some(part_of) = fm.get("part_of") {
            metadata.part_of = part_of.as_str().map(String::from);
        }
        if let Some(contents) = fm.get("contents")
            && let Some(seq) = contents.as_sequence()
        {
            metadata.contents = Some(
                seq.iter()
                    .filter_map(|v| v.as_str().map(String::from))
                    .collect(),
            );
        }
        if let Some(audience) = fm.get("audience")
            && let Some(seq) = audience.as_sequence()
        {
            metadata.audience = Some(
                seq.iter()
                    .filter_map(|v| v.as_str().map(String::from))
                    .collect(),
            );
        }
        if let Some(description) = fm.get("description") {
            metadata.description = description.as_str().map(String::from);
        }

        // Store remaining fields in extra
        let known_fields = [
            "title",
            "part_of",
            "contents",
            "audience",
            "description",
            "attachments",
            "deleted",
            "modified_at",
            "updated",
        ];
        for (key, value) in fm {
            if !known_fields.contains(&key.as_str())
                && let Ok(json_value) = serde_json::to_value(value)
            {
                metadata.extra.insert(key.clone(), json_value);
            }
        }

        if let Some(updated) = fm.get("updated").and_then(parse_updated_value) {
            metadata.modified_at = updated;
        } else if metadata.modified_at == 0 {
            metadata.modified_at = chrono::Utc::now().timestamp_millis();
        }
        metadata
    }

    /// Update CRDT with metadata from a file.
    ///
    /// This is skipped if:
    /// - CRDT updates are disabled globally
    /// - The path is marked as a sync write (to prevent feedback loops)
    fn update_crdt_for_file(&self, path: &Path, content: &str) {
        self.update_crdt_for_file_internal(path, content, false);
    }

    /// Update CRDT for a newly created file.
    ///
    /// This clears any stale state from storage before creating the body doc,
    /// preventing concatenation with old content from deleted files.
    fn update_crdt_for_new_file(&self, path: &Path, content: &str) {
        self.update_crdt_for_file_internal(path, content, true);
    }

    /// Internal implementation for CRDT updates.
    ///
    /// If `is_new_file` is true, any existing body doc storage is deleted first
    /// to prevent stale state from being merged with new content.
    fn update_crdt_for_file_internal(&self, path: &Path, content: &str, is_new_file: bool) {
        if !self.is_enabled() {
            return;
        }

        // Skip CRDT update if this is a sync write (prevents feedback loops)
        if self.is_sync_write_in_progress(path) {
            log::debug!("CrdtFs: Skipping CRDT update for sync write: {:?}", path);
            return;
        }

        let path_str = path.to_string_lossy().to_string();

        // Skip temporary files created by the metadata writer's safe write process
        // These files should never be synced to the server
        if path_str.ends_with(".tmp") || path_str.ends_with(".bak") || path_str.ends_with(".swap") {
            log::debug!(
                "CrdtFs: Skipping CRDT update for temporary file: {}",
                path_str
            );
            return;
        }
        let body = frontmatter::extract_body(content);
        log::trace!(
            "[CrdtFs] update_crdt_for_file_internal: path_str='{}', is_new_file={}, body_preview='{}'",
            path_str,
            is_new_file,
            body.chars().take(50).collect::<String>()
        );
        let metadata = self.extract_metadata(path, content);

        // Get or create doc_id for this path
        // In doc-ID mode, this finds existing doc_id or creates new UUID
        // In legacy mode, this just returns the path as the key
        let doc_key = self
            .path_to_doc_id(path, &metadata)
            .unwrap_or(path_str.clone());

        // Update workspace CRDT with the doc_key (doc_id or path)
        log::trace!("[CrdtFs] BEFORE set_file: doc_key={}", doc_key);
        if let Err(e) = self.workspace_crdt.set_file(&doc_key, metadata.clone()) {
            log::warn!("[CrdtFs] set_file FAILED: {}: {}", doc_key, e);
        } else {
            log::trace!("[CrdtFs] set_file SUCCESS: {}", doc_key);
            // Verify write by reading back (debug only)
            let verify = self.workspace_crdt.get_file(&doc_key);
            log::trace!(
                "[CrdtFs] set_file VERIFY: {} -> {:?}",
                doc_key,
                verify.is_some()
            );
        }

        // Update body doc using the same key
        let body = frontmatter::extract_body(content);

        // For new files, delete any stale storage and create a fresh doc
        // to prevent concatenation with old content from deleted files
        let body_doc = if is_new_file {
            // Delete stale storage first, then create fresh doc
            let _ = self.body_doc_manager.delete(&doc_key);
            self.body_doc_manager.create(&doc_key)
        } else {
            self.body_doc_manager.get_or_create(&doc_key)
        };

        let _ = body_doc.set_body(body);
    }

    /// Update parent's contents array when a child is moved or deleted.
    ///
    /// For rename/move: `new_path` is Some with the new path.
    /// For delete: `new_path` is None.
    fn update_parent_contents(&self, old_path: &str, new_path: Option<&str>) {
        if !self.is_enabled() {
            return;
        }

        let old_metadata = match self.workspace_crdt.get_file(old_path) {
            Some(m) => m,
            None => return,
        };

        if let Some(ref parent_path) = old_metadata.part_of
            && let Some(mut parent) = self.workspace_crdt.get_file(parent_path)
            && let Some(ref mut contents) = parent.contents
        {
            // Find old filename in contents
            let old_filename = std::path::Path::new(old_path)
                .file_name()
                .and_then(|n| n.to_str())
                .unwrap_or(old_path);

            if let Some(idx) = contents
                .iter()
                .position(|e| e == old_filename || e == old_path)
            {
                match new_path {
                    Some(np) => {
                        // Rename: replace with new filename
                        let new_filename = std::path::Path::new(np)
                            .file_name()
                            .and_then(|n| n.to_str())
                            .unwrap_or(np);
                        contents[idx] = new_filename.to_string();
                    }
                    None => {
                        // Delete: remove from contents
                        contents.remove(idx);
                    }
                }
                parent.modified_at = chrono::Utc::now().timestamp_millis();
                let _ = self.workspace_crdt.set_file(parent_path, parent);
            }
        }
    }
}

// Implement Clone if the inner FS is Clone
impl<FS: AsyncFileSystem + Clone> Clone for CrdtFs<FS> {
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
            workspace_crdt: Arc::clone(&self.workspace_crdt),
            body_doc_manager: Arc::clone(&self.body_doc_manager),
            enabled: AtomicBool::new(self.enabled.load(Ordering::SeqCst)),
            local_writes_in_progress: RwLock::new(HashSet::new()),
            sync_writes_in_progress: RwLock::new(HashSet::new()),
        }
    }
}

// AsyncFileSystem implementation - delegates to inner with CRDT updates
#[cfg(not(target_arch = "wasm32"))]
impl<FS: AsyncFileSystem + Send + Sync> AsyncFileSystem for CrdtFs<FS> {
    fn read_to_string<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, Result<String>> {
        self.inner.read_to_string(path)
    }

    fn write_file<'a>(&'a self, path: &'a Path, content: &'a str) -> BoxFuture<'a, Result<()>> {
        Box::pin(async move {
            // Mark local write in progress
            self.mark_local_write_start(path);

            // Write to inner filesystem
            let result = self.inner.write_file(path, content).await;

            // Update CRDT if write succeeded and enabled
            if result.is_ok() {
                self.update_crdt_for_file(path, content);
            }

            // Clear local write marker
            self.mark_local_write_end(path);

            result
        })
    }

    fn create_new<'a>(&'a self, path: &'a Path, content: &'a str) -> BoxFuture<'a, Result<()>> {
        Box::pin(async move {
            log::info!(
                "[CrdtFs] create_new CALLED: path='{}', enabled={}, content_len={}",
                path.display(),
                self.is_enabled(),
                content.len()
            );

            // Mark local write in progress
            self.mark_local_write_start(path);

            // Create in inner filesystem
            let result = self.inner.create_new(path, content).await;

            log::info!(
                "[CrdtFs] create_new RESULT: path='{}', success={}, err={:?}",
                path.display(),
                result.is_ok(),
                result.as_ref().err()
            );

            // Update CRDT if creation succeeded and enabled
            // Use new file variant to clear any stale state from storage
            if result.is_ok() {
                log::info!(
                    "[CrdtFs] create_new calling update_crdt_for_new_file: path='{}'",
                    path.display()
                );
                self.update_crdt_for_new_file(path, content);
            }

            // Clear local write marker
            self.mark_local_write_end(path);

            result
        })
    }

    fn delete_file<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, Result<()>> {
        Box::pin(async move {
            // Mark local write in progress
            self.mark_local_write_start(path);

            // Delete from inner filesystem
            let result = self.inner.delete_file(path).await;

            // Mark as deleted in CRDT if deletion succeeded and enabled
            if result.is_ok() && self.is_enabled() {
                let path_str = Self::normalize_crdt_path(path);

                // Update parent's contents to remove the deleted file
                self.update_parent_contents(&path_str, None);

                if let Err(e) = self.workspace_crdt.delete_file(&path_str) {
                    log::warn!(
                        "Failed to mark file as deleted in CRDT for {}: {}",
                        path_str,
                        e
                    );
                }
            }

            // Clear local write marker
            self.mark_local_write_end(path);

            result
        })
    }

    fn list_md_files<'a>(&'a self, dir: &'a Path) -> BoxFuture<'a, Result<Vec<PathBuf>>> {
        self.inner.list_md_files(dir)
    }

    fn exists<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, bool> {
        self.inner.exists(path)
    }

    fn create_dir_all<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, Result<()>> {
        self.inner.create_dir_all(path)
    }

    fn is_dir<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, bool> {
        self.inner.is_dir(path)
    }

    fn move_file<'a>(&'a self, from: &'a Path, to: &'a Path) -> BoxFuture<'a, Result<()>> {
        Box::pin(async move {
            // Mark both paths as local writes in progress
            self.mark_local_write_start(from);
            self.mark_local_write_start(to);

            // Perform the physical move
            let result = self.inner.move_file(from, to).await;

            // Update CRDT if move succeeded
            if result.is_ok() && self.is_enabled() {
                let from_str = Self::normalize_crdt_path(from);
                let to_str = Self::normalize_crdt_path(to);

                // Find the doc_id for the file being moved
                if let Some(doc_id) = self.workspace_crdt.find_by_path(from) {
                    let new_filename = to
                        .file_name()
                        .and_then(|n| n.to_str())
                        .unwrap_or("")
                        .to_string();

                    // Detect rename (same directory) vs move (different directory)
                    let from_parent = from.parent();
                    let to_parent = to.parent();
                    let is_rename = from_parent == to_parent;

                    if is_rename {
                        // Rename: Just update the filename property - doc_id stays stable
                        log::debug!(
                            "CrdtFs: Renaming doc_id={} from {:?} to {}",
                            doc_id,
                            from,
                            new_filename
                        );
                        if let Err(e) = self.workspace_crdt.rename_file(&doc_id, &new_filename) {
                            log::warn!("Failed to rename file in CRDT: {}", e);
                        }
                    } else {
                        // Move: Update the parent reference - doc_id stays stable
                        // Find the new parent's doc_id
                        let new_parent_id =
                            to_parent.and_then(|p| self.workspace_crdt.find_by_path(p));

                        log::debug!(
                            "CrdtFs: Moving doc_id={} to parent={:?}, new_filename={}",
                            doc_id,
                            new_parent_id,
                            new_filename
                        );

                        // Update parent reference
                        if let Err(e) = self
                            .workspace_crdt
                            .move_file(&doc_id, new_parent_id.as_deref())
                        {
                            log::warn!("Failed to move file in CRDT: {}", e);
                        }

                        // Also update filename if it changed
                        if let Some(meta) = self.workspace_crdt.get_file(&doc_id)
                            && meta.filename != new_filename
                            && let Err(e) = self.workspace_crdt.rename_file(&doc_id, &new_filename)
                        {
                            log::warn!("Failed to rename file during move in CRDT: {}", e);
                        }
                    }

                    // Update parent's contents list (replace old path with new path)
                    self.update_parent_contents(&from_str, Some(&to_str));
                } else {
                    // Fallback for legacy path-based entries: use old delete+create behavior
                    log::debug!(
                        "CrdtFs: No doc_id found for {:?}, using legacy move behavior",
                        from
                    );
                    self.update_parent_contents(&from_str, Some(&to_str));

                    if let Err(e) = self.workspace_crdt.delete_file(&from_str) {
                        log::warn!("Failed to mark old path as deleted in CRDT: {}", e);
                    }

                    if let Ok(content) = self.inner.read_to_string(to).await {
                        self.update_crdt_for_file(to, &content);
                    }
                }
            }

            // Clear local write markers
            self.mark_local_write_end(from);
            self.mark_local_write_end(to);

            result
        })
    }

    fn read_binary<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, Result<Vec<u8>>> {
        self.inner.read_binary(path)
    }

    fn write_binary<'a>(&'a self, path: &'a Path, content: &'a [u8]) -> BoxFuture<'a, Result<()>> {
        // Binary files are not tracked in the CRDT (they're attachments)
        self.inner.write_binary(path, content)
    }

    fn list_files<'a>(&'a self, dir: &'a Path) -> BoxFuture<'a, Result<Vec<PathBuf>>> {
        self.inner.list_files(dir)
    }

    fn get_modified_time<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, Option<i64>> {
        self.inner.get_modified_time(path)
    }

    // Override sync write markers to track which paths are being written from sync
    fn mark_sync_write_start(&self, path: &Path) {
        self.mark_sync_write_start_internal(path);
    }

    fn mark_sync_write_end(&self, path: &Path) {
        self.mark_sync_write_end_internal(path);
    }
}

// WASM implementation (without Send + Sync bounds)
#[cfg(target_arch = "wasm32")]
impl<FS: AsyncFileSystem> AsyncFileSystem for CrdtFs<FS> {
    fn read_to_string<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, Result<String>> {
        self.inner.read_to_string(path)
    }

    fn write_file<'a>(&'a self, path: &'a Path, content: &'a str) -> BoxFuture<'a, Result<()>> {
        Box::pin(async move {
            // Mark local write in progress
            self.mark_local_write_start(path);

            // Write to inner filesystem
            let result = self.inner.write_file(path, content).await;

            // Update CRDT if write succeeded and enabled
            if result.is_ok() {
                self.update_crdt_for_file(path, content);
            }

            // Clear local write marker
            self.mark_local_write_end(path);

            result
        })
    }

    fn create_new<'a>(&'a self, path: &'a Path, content: &'a str) -> BoxFuture<'a, Result<()>> {
        Box::pin(async move {
            log::info!(
                "[CrdtFs] create_new CALLED: path='{}', enabled={}, content_len={}",
                path.display(),
                self.is_enabled(),
                content.len()
            );

            // Mark local write in progress
            self.mark_local_write_start(path);

            // Create in inner filesystem
            let result = self.inner.create_new(path, content).await;

            log::info!(
                "[CrdtFs] create_new RESULT: path='{}', success={}, err={:?}",
                path.display(),
                result.is_ok(),
                result.as_ref().err()
            );

            // Update CRDT if creation succeeded and enabled
            // Use new file variant to clear any stale state from storage
            if result.is_ok() {
                log::info!(
                    "[CrdtFs] create_new calling update_crdt_for_new_file: path='{}'",
                    path.display()
                );
                self.update_crdt_for_new_file(path, content);
            }

            // Clear local write marker
            self.mark_local_write_end(path);

            result
        })
    }

    fn delete_file<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, Result<()>> {
        Box::pin(async move {
            // Mark local write in progress
            self.mark_local_write_start(path);

            // Delete from inner filesystem
            let result = self.inner.delete_file(path).await;

            // Mark as deleted in CRDT if deletion succeeded and enabled
            if result.is_ok() && self.is_enabled() {
                let path_str = Self::normalize_crdt_path(path);

                // Update parent's contents to remove the deleted file
                self.update_parent_contents(&path_str, None);

                if let Err(e) = self.workspace_crdt.delete_file(&path_str) {
                    log::warn!(
                        "Failed to mark file as deleted in CRDT for {}: {}",
                        path_str,
                        e
                    );
                }
            }

            // Clear local write marker
            self.mark_local_write_end(path);

            result
        })
    }

    fn list_md_files<'a>(&'a self, dir: &'a Path) -> BoxFuture<'a, Result<Vec<PathBuf>>> {
        self.inner.list_md_files(dir)
    }

    fn exists<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, bool> {
        self.inner.exists(path)
    }

    fn create_dir_all<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, Result<()>> {
        self.inner.create_dir_all(path)
    }

    fn is_dir<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, bool> {
        self.inner.is_dir(path)
    }

    fn move_file<'a>(&'a self, from: &'a Path, to: &'a Path) -> BoxFuture<'a, Result<()>> {
        Box::pin(async move {
            // Mark both paths as local writes in progress
            self.mark_local_write_start(from);
            self.mark_local_write_start(to);

            // Perform the physical move
            let result = self.inner.move_file(from, to).await;

            // Update CRDT if move succeeded
            if result.is_ok() && self.is_enabled() {
                let from_str = Self::normalize_crdt_path(from);
                let to_str = Self::normalize_crdt_path(to);

                // Find the doc_id for the file being moved
                if let Some(doc_id) = self.workspace_crdt.find_by_path(from) {
                    let new_filename = to
                        .file_name()
                        .and_then(|n| n.to_str())
                        .unwrap_or("")
                        .to_string();

                    // Detect rename (same directory) vs move (different directory)
                    let from_parent = from.parent();
                    let to_parent = to.parent();
                    let is_rename = from_parent == to_parent;

                    if is_rename {
                        // Rename: Just update the filename property - doc_id stays stable
                        log::debug!(
                            "CrdtFs: Renaming doc_id={} from {:?} to {}",
                            doc_id,
                            from,
                            new_filename
                        );
                        if let Err(e) = self.workspace_crdt.rename_file(&doc_id, &new_filename) {
                            log::warn!("Failed to rename file in CRDT: {}", e);
                        }
                    } else {
                        // Move: Update the parent reference - doc_id stays stable
                        // Find the new parent's doc_id
                        let new_parent_id =
                            to_parent.and_then(|p| self.workspace_crdt.find_by_path(p));

                        log::debug!(
                            "CrdtFs: Moving doc_id={} to parent={:?}, new_filename={}",
                            doc_id,
                            new_parent_id,
                            new_filename
                        );

                        // Update parent reference
                        if let Err(e) = self
                            .workspace_crdt
                            .move_file(&doc_id, new_parent_id.as_deref())
                        {
                            log::warn!("Failed to move file in CRDT: {}", e);
                        }

                        // Also update filename if it changed
                        if let Some(meta) = self.workspace_crdt.get_file(&doc_id) {
                            if meta.filename != new_filename {
                                if let Err(e) =
                                    self.workspace_crdt.rename_file(&doc_id, &new_filename)
                                {
                                    log::warn!("Failed to rename file during move in CRDT: {}", e);
                                }
                            }
                        }
                    }

                    // Update parent's contents list (replace old path with new path)
                    self.update_parent_contents(&from_str, Some(&to_str));
                } else {
                    // Fallback for legacy path-based entries: use old delete+create behavior
                    log::debug!(
                        "CrdtFs: No doc_id found for {:?}, using legacy move behavior",
                        from
                    );
                    self.update_parent_contents(&from_str, Some(&to_str));

                    if let Err(e) = self.workspace_crdt.delete_file(&from_str) {
                        log::warn!("Failed to mark old path as deleted in CRDT: {}", e);
                    }

                    if let Ok(content) = self.inner.read_to_string(to).await {
                        self.update_crdt_for_file(to, &content);
                    }
                }
            }

            // Clear local write markers
            self.mark_local_write_end(from);
            self.mark_local_write_end(to);

            result
        })
    }

    fn read_binary<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, Result<Vec<u8>>> {
        self.inner.read_binary(path)
    }

    fn write_binary<'a>(&'a self, path: &'a Path, content: &'a [u8]) -> BoxFuture<'a, Result<()>> {
        // Binary files are not tracked in the CRDT (they're attachments)
        self.inner.write_binary(path, content)
    }

    fn list_files<'a>(&'a self, dir: &'a Path) -> BoxFuture<'a, Result<Vec<PathBuf>>> {
        self.inner.list_files(dir)
    }

    fn get_modified_time<'a>(&'a self, path: &'a Path) -> BoxFuture<'a, Option<i64>> {
        self.inner.get_modified_time(path)
    }

    // Override sync write markers to track which paths are being written from sync
    fn mark_sync_write_start(&self, path: &Path) {
        self.mark_sync_write_start_internal(path);
    }

    fn mark_sync_write_end(&self, path: &Path) {
        self.mark_sync_write_end_internal(path);
    }
}

impl<FS: AsyncFileSystem> std::fmt::Debug for CrdtFs<FS> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("CrdtFs")
            .field("enabled", &self.is_enabled())
            .field("workspace_crdt", &self.workspace_crdt)
            .field("body_doc_manager", &self.body_doc_manager)
            .finish()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::crdt::{CrdtStorage, MemoryStorage};
    use crate::fs::{InMemoryFileSystem, SyncToAsyncFs};

    fn create_test_crdt_fs() -> CrdtFs<SyncToAsyncFs<InMemoryFileSystem>> {
        let inner = SyncToAsyncFs::new(InMemoryFileSystem::new());
        let storage: Arc<dyn CrdtStorage> = Arc::new(MemoryStorage::new());
        let workspace_crdt = Arc::new(WorkspaceCrdt::new(Arc::clone(&storage)));
        let body_manager = Arc::new(BodyDocManager::new(storage));
        CrdtFs::new(inner, workspace_crdt, body_manager)
    }

    #[test]
    fn test_write_updates_crdt() {
        let fs = create_test_crdt_fs();
        let content = "---\ntitle: Test\npart_of: index.md\n---\nBody content";

        futures_lite::future::block_on(async {
            fs.write_file(Path::new("test.md"), content).await.unwrap();
        });

        // Check CRDT was updated
        let metadata = fs.workspace_crdt.get_file("test.md").unwrap();
        assert_eq!(metadata.title, Some("Test".to_string()));
        assert_eq!(metadata.part_of, Some("index.md".to_string()));
    }

    #[test]
    fn test_delete_marks_deleted_in_crdt() {
        let fs = create_test_crdt_fs();
        let content = "---\ntitle: Test\n---\nBody";

        futures_lite::future::block_on(async {
            fs.write_file(Path::new("test.md"), content).await.unwrap();
            fs.delete_file(Path::new("test.md")).await.unwrap();
        });

        // Check file is marked as deleted in CRDT
        let metadata = fs.workspace_crdt.get_file("test.md").unwrap();
        assert!(metadata.deleted);
    }

    #[test]
    fn test_disabled_skips_crdt_updates() {
        let fs = create_test_crdt_fs();
        fs.set_enabled(false);

        let content = "---\ntitle: Test\n---\nBody";

        futures_lite::future::block_on(async {
            fs.write_file(Path::new("test.md"), content).await.unwrap();
        });

        // CRDT should not have the file
        assert!(fs.workspace_crdt.get_file("test.md").is_none());
    }

    #[test]
    fn test_toggle_enabled() {
        let fs = create_test_crdt_fs();

        assert!(fs.is_enabled());
        fs.set_enabled(false);
        assert!(!fs.is_enabled());
        fs.set_enabled(true);
        assert!(fs.is_enabled());
    }

    #[test]
    fn test_local_write_tracking() {
        let fs = create_test_crdt_fs();

        assert!(!fs.is_local_write_in_progress(Path::new("test.md")));

        fs.mark_local_write_start(Path::new("test.md"));
        assert!(fs.is_local_write_in_progress(Path::new("test.md")));

        fs.mark_local_write_end(Path::new("test.md"));
        assert!(!fs.is_local_write_in_progress(Path::new("test.md")));
    }

    #[test]
    fn test_sync_write_tracking() {
        let fs = create_test_crdt_fs();

        assert!(!fs.is_sync_write_in_progress(Path::new("test.md")));

        fs.mark_sync_write_start(Path::new("test.md"));
        assert!(fs.is_sync_write_in_progress(Path::new("test.md")));

        fs.mark_sync_write_end(Path::new("test.md"));
        assert!(!fs.is_sync_write_in_progress(Path::new("test.md")));
    }

    #[test]
    fn test_sync_write_skips_crdt_update() {
        let fs = create_test_crdt_fs();
        let content = "---\ntitle: Sync Write Test\n---\nBody content";

        // First, write without sync marker - should update CRDT
        futures_lite::future::block_on(async {
            fs.write_file(Path::new("test1.md"), content).await.unwrap();
        });
        assert!(fs.workspace_crdt.get_file("test1.md").is_some());

        // Now, mark sync write and write - should NOT update CRDT
        fs.mark_sync_write_start(Path::new("test2.md"));
        futures_lite::future::block_on(async {
            fs.write_file(Path::new("test2.md"), content).await.unwrap();
        });
        fs.mark_sync_write_end(Path::new("test2.md"));

        // File should exist on disk but NOT in CRDT
        assert!(futures_lite::future::block_on(
            fs.exists(Path::new("test2.md"))
        ));
        assert!(
            fs.workspace_crdt.get_file("test2.md").is_none(),
            "CRDT should not have been updated for sync write"
        );
    }

    // =========================================================================
    // Link Parser Integration Tests
    // =========================================================================

    #[test]
    fn test_markdown_link_part_of_converts_to_canonical() {
        let fs = create_test_crdt_fs();
        // Write a file with markdown link in part_of
        let content =
            "---\ntitle: Child\npart_of: \"[Parent Index](/Folder/parent.md)\"\n---\nContent";

        futures_lite::future::block_on(async {
            fs.write_file(Path::new("Folder/child.md"), content)
                .await
                .unwrap();
        });

        // Check CRDT stores canonical path (without leading /)
        let metadata = fs.workspace_crdt.get_file("Folder/child.md").unwrap();
        assert_eq!(metadata.part_of, Some("Folder/parent.md".to_string()));
    }

    #[test]
    fn test_relative_part_of_converts_to_canonical() {
        let fs = create_test_crdt_fs();
        // Write a file with relative path in part_of
        let content = "---\ntitle: Child\npart_of: ../index.md\n---\nContent";

        futures_lite::future::block_on(async {
            fs.write_file(Path::new("Folder/Sub/child.md"), content)
                .await
                .unwrap();
        });

        // Check CRDT stores canonical path
        let metadata = fs.workspace_crdt.get_file("Folder/Sub/child.md").unwrap();
        assert_eq!(metadata.part_of, Some("Folder/index.md".to_string()));
    }

    #[test]
    fn test_plain_part_of_at_root_stays_canonical() {
        let fs = create_test_crdt_fs();
        // Write a file at root with plain filename part_of
        let content = "---\ntitle: Child\npart_of: index.md\n---\nContent";

        futures_lite::future::block_on(async {
            fs.write_file(Path::new("child.md"), content).await.unwrap();
        });

        // Check CRDT stores canonical path
        let metadata = fs.workspace_crdt.get_file("child.md").unwrap();
        assert_eq!(metadata.part_of, Some("index.md".to_string()));
    }

    #[test]
    fn test_markdown_link_contents_converts_to_canonical() {
        let fs = create_test_crdt_fs();
        // Write a file with markdown links in contents
        let content = r#"---
title: Parent Index
contents:
  - "[Child 1](/Folder/child1.md)"
  - "[Child 2](/Folder/Sub/child2.md)"
---
Content"#;

        futures_lite::future::block_on(async {
            fs.write_file(Path::new("Folder/index.md"), content)
                .await
                .unwrap();
        });

        // Check CRDT stores canonical paths (without leading /)
        let metadata = fs.workspace_crdt.get_file("Folder/index.md").unwrap();
        assert_eq!(
            metadata.contents,
            Some(vec![
                "Folder/child1.md".to_string(),
                "Folder/Sub/child2.md".to_string()
            ])
        );
    }

    #[test]
    fn test_relative_contents_converts_to_canonical() {
        let fs = create_test_crdt_fs();
        // Write a file with relative paths in contents
        let content = r#"---
title: Parent Index
contents:
  - child1.md
  - Sub/child2.md
---
Content"#;

        futures_lite::future::block_on(async {
            fs.write_file(Path::new("Folder/index.md"), content)
                .await
                .unwrap();
        });

        // Check CRDT stores canonical paths
        let metadata = fs.workspace_crdt.get_file("Folder/index.md").unwrap();
        assert_eq!(
            metadata.contents,
            Some(vec![
                "Folder/child1.md".to_string(),
                "Folder/Sub/child2.md".to_string()
            ])
        );
    }

    #[test]
    fn test_mixed_format_links_all_convert_to_canonical() {
        let fs = create_test_crdt_fs();
        // Write a file with mixed link formats
        let content = r#"---
title: Parent Index
part_of: "[Root](/README.md)"
contents:
  - child1.md
  - "[Child 2](/Folder/Sub/child2.md)"
  - ../sibling.md
---
Content"#;

        futures_lite::future::block_on(async {
            fs.write_file(Path::new("Folder/index.md"), content)
                .await
                .unwrap();
        });

        // Check CRDT stores all paths as canonical
        let metadata = fs.workspace_crdt.get_file("Folder/index.md").unwrap();
        assert_eq!(metadata.part_of, Some("README.md".to_string()));
        assert_eq!(
            metadata.contents,
            Some(vec![
                "Folder/child1.md".to_string(),
                "Folder/Sub/child2.md".to_string(),
                "sibling.md".to_string(),
            ])
        );
    }
}