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
/*!
Work with the file system.
*/

use crate::{common::*, platforms::{if_native_platform, if_browser}};
use file_paths::*;

#[allow(unused)]
use std::path::Path;

pub(crate) mod platforms;

/// Represents a path to a file or directory, either in the native file system, application or
/// application storage directory.
/// 
/// The following URLs are supported when constructing a `File` object:
/// 
/// * `file:` — A file located in the native file system.
/// * `app:` — A file located in the application installation directory.
/// * `app-storage:` — A file located in the application storage directory.
/// 
/// # Browser support
/// 
/// * Synchronous operations are supported on all platforms except for the browser.
/// Synchronous operations are expected to panic when running in the browser.
/// * The `file:` scheme is not supported in the browser. If it is required
/// for the application to pick user files or directories, consider using
/// file pickers and thus `FileReference` and `DirectoryReference`.
/// 
/// # Application files
/// 
/// `File` objects with the `app:` URL are read-only, thus no write operations
/// will succeed on them.
///
#[derive(Clone, Eq, PartialEq)]
pub struct File {
    scheme: FileScheme,
    path: String,
}

impl File {
    /// Creates a file with a specified native path or URL.
    /// `path_or_uri` is treated as an URL if it starts with either
    /// `file:`, `app:` or `app-storage:`.
    /// 
    /// If this constructor is given a non URL, it is taken as a
    /// `file:` native path. If that native path is not absolute,
    /// this native path is reassigned as the current working directory
    /// resolved to that native path.
    ///
    pub fn new(path_or_uri: &str) -> File {
        if path_or_uri.starts_with("file:") {
            File {
                scheme: FileScheme::File,
                path: File::current_directory().resolve_path(&uri_to_native_path(path_or_uri)).path,
            }
        } else if path_or_uri.starts_with("app:") {
            let path = regex_replace!(r"^/{0,2}", &decode_uri(&path_or_uri[4..]), |_| "/".to_owned()).into_owned();
            File {
                scheme: FileScheme::App,
                path: FlexPath::new_common(&path).to_string(),
            }
        } else if path_or_uri.starts_with("app-storage:") {
            let path = regex_replace!(r"^/{0,2}", &decode_uri(&path_or_uri[12..]), |_| "/".to_owned()).into_owned();
            File {
                scheme: FileScheme::AppStorage,
                path: FlexPath::new_common(&path).to_string(),
            }
        } else {
            File {
                scheme: FileScheme::File,
                path: File::current_directory().resolve_path(path_or_uri).path,
            }
        }
    }

    /// The current working directory. The result of this function is non-constant.
    /// 
    /// # Browser support
    /// 
    /// This function is not supported in the browser and may thus panic.
    /// 
    pub fn current_directory() -> File {
        if_native_platform! {{
            Self {
                scheme: FileScheme::File,
                path: std::env::current_dir().unwrap().to_string_lossy().into_owned(),
            }
        }}
        if_browser! {{
            unsupported_browser_operation!();
        }}
    }

    /// The application's installation directory. The result of this function is equivalent
    /// to `File::new("app://")`.
    pub fn application_directory() -> File {
        File::new("app://")
    }

    /// The application's storage directory. The result of this function is equivalent
    /// to `File::new("app-storage://")`.
    pub fn application_storage_directory() -> File {
        File::new("app-storage://")
    }

    /// The user's downloads directory.
    pub fn downloads_directory() -> Option<File> {
        Some(File {
            scheme: FileScheme::File,
            path: downloads_directory()?,
        })
    }

    /// The user's documents directory.
    pub fn documents_directory() -> Option<File> {
        Some(File {
            scheme: FileScheme::File,
            path: documents_directory()?,
        })
    }

    /// The user's pictures directory.
    pub fn pictures_directory() -> Option<File> {
        Some(File {
            scheme: FileScheme::File,
            path: pictures_directory()?,
        })
    }

    /// The user's music directory.
    pub fn music_directory() -> Option<File> {
        Some(File {
            scheme: FileScheme::File,
            path: music_directory()?,
        })
    }

    /// The user's videos directory.
    pub fn videos_directory() -> Option<File> {
        Some(File {
            scheme: FileScheme::File,
            path: videos_directory()?,
        })
    }

    /// The native path of the `File` object, if it has the scheme `file:`.
    pub fn native_path(&self) -> Option<String> {
        if self.scheme == FileScheme::File { Some(self.flex_path().to_string_with_flex_separator()) } else { None }
    }

    /// The URL representing the file path.
    pub fn url(&self) -> String {
        match self.scheme {
            FileScheme::File => {
                native_path_to_uri(&self.path)
            },
            FileScheme::App => {
                format!("app:/{}", encode_uri(&self.path))
            },
            FileScheme::AppStorage => {
                format!("app-storage:/{}", encode_uri(&self.path))
            },
        }
    }

    /// Finds the relative path from this file or directory to `other`.
    ///
    /// # Panics
    /// 
    /// Panics if any of the `File` objects have a different scheme.
    /// 
    /// # Example
    /// 
    /// ```
    /// use agera::file::*;
    /// 
    /// let file_1 = File::new("file:///C:/Users/John/Documents/foo.svg");
    /// let file_2 = File::new("file:///C:/Users/John/Documents/bar.svg");
    /// assert_eq!("../bar.svg", file_1.relative(&file_2));
    /// ```
    ///
    pub fn relative(&self, other: &File) -> String {
        assert_eq!(self.scheme, other.scheme, "Files have different scheme");
        self.flex_path().relative(&other.path)
    }

    /// Resolves path to a file or directory.
    pub fn resolve_path(&self, path: &str) -> File {
        File {
            scheme: self.scheme,
            path: self.flex_path().resolve(path).to_string(),
        }
    }

    fn flex_path(&self) -> FlexPath {
        FlexPath::new(&self.path, self.flex_path_variant())
    }

    fn flex_path_variant(&self) -> FlexPathVariant {
        match self.scheme {
            FileScheme::File => FlexPathVariant::native(),
            _ => FlexPathVariant::Common,
        }
    }

    /// Returns the name of the file or directory.
    pub fn name(&self) -> String {
        self.flex_path().base_name()
    }

    /// Indicates the extension of the file, including the first
    /// dot character (`.`). This method only considers a single dot character
    /// as part of the extension.
    pub fn extension(&self) -> Option<String> {
        let c = regex_captures!(r"\..+$", &self.path);
        c.map(|c| c.to_owned())
    }

    /// Returns the parent directory of the file or directory, or
    /// the same `File` if it has no parent directory.
    pub fn parent(&self) -> File {
        self.resolve_path("..")
    }

    fn path_omega(&self) -> String {
        let mut p = self.path.clone();
        match self.scheme {
            FileScheme::App => {
                p = format!("{}{p}", application_directory());
            },
            FileScheme::AppStorage => {
                p = format!("{}{p}", application_storage_directory());
            },
            FileScheme::File => {},
        }
        FlexPath::new(&p, self.flex_path_variant()).to_string_with_flex_separator()
    }

    /// Indicates whether a file or directory exists, synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    ///
    pub fn exists(&self) -> bool {
        if_native_platform! {{
            Path::new(&self.path_omega()).exists()
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Indicates whether a file or directory exists, asynchronously.
    pub async fn exists_async(&self) -> bool {
        if_native_platform! {{
            tokio::fs::metadata(&self.path_omega()).await.is_ok()
        }}
        if_browser! {{
            platforms::browser::exists_async(self.path_omega()).await
        }}
    }

    /// Indicates whether the `File` object is a directory, synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    ///
    pub fn is_directory(&self) -> bool {
        if_native_platform! {{
            std::fs::metadata(&self.path_omega()).map(|data| data.is_dir()).unwrap_or(false)
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Indicates whether the `File` object is a directory, asynchronously.
    pub async fn is_directory_async(&self) -> bool {
        if_native_platform! {{
            tokio::fs::metadata(&self.path_omega()).await.map(|data| data.is_dir()).unwrap_or(false)
        }}
        if_browser! {{
            platforms::browser::is_directory_async(self.path_omega()).await
        }}
    }

    /// Indicates whether the `File` object is a file, synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    ///
    pub fn is_file(&self) -> bool {
        if_native_platform! {{
            std::fs::metadata(&self.path_omega()).map(|data| data.is_file()).unwrap_or(false)
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Indicates whether the `File` object is a file, asynchronously.
    pub async fn is_file_async(&self) -> bool {
        if_native_platform! {{
            tokio::fs::metadata(&self.path_omega()).await.map(|data| data.is_file()).unwrap_or(false)
        }}
        if_browser! {{
            platforms::browser::is_file_async(self.path_omega()).await
        }}
    }

    /// Indicates whether the `File` object is a symbolic link, synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    /// 
    pub fn is_symbolic_link(&self) -> bool {
        if_native_platform! {{
            std::fs::metadata(&self.path_omega()).map(|data| data.is_symlink()).unwrap_or(false)
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Indicates whether the `File` object is a symbolic link, asynchronously.
    pub async fn is_symbolic_link_async(&self) -> bool {
        if_native_platform! {{
            tokio::fs::metadata(&self.path_omega()).await.map(|data| data.is_symlink()).unwrap_or(false)
        }}
        if_browser! {{
            false
        }}
    }

    /// Canonicalizes the file path, synchronously.
    /// For non `file:` schemes, this returns the same path.
    ///
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    /// 
    pub fn canonicalize(&self) -> File {
        if_native_platform! {{
            if self.scheme != FileScheme::File {
                return self.clone();
            }
            if let Some(result) = Path::new(&self.path_omega()).canonicalize().ok().map(|result| result.to_string_lossy().into_owned()) {
                return File { scheme: FileScheme::File, path: result };
            }
            return self.clone();
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Canonicalizes the file path, asynchronously.
    /// For non `file:` schemes, this returns the same path.
    pub async fn canonicalize_async(&self) -> File {
        if_native_platform! {{
            if self.scheme != FileScheme::File {
                return self.clone();
            }
            if let Some(result) = tokio::fs::canonicalize(&self.path_omega()).await.ok().map(|result| result.to_string_lossy().into_owned()) {
                return File { scheme: FileScheme::File, path: result };
            }
            return self.clone();
        }}
        if_browser! {{
            self.clone()
        }}
    }

    /// Copies a file to another path specified by `location`,
    /// overriding any contents at `location`. This is a synchronous operation.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    ///
    pub fn copy_file_contents_to(&self, location: &File) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            std::fs::copy(&self.path_omega(), &location.path_omega())?;
            Ok(())
        }}
        if_browser! {{
            let _ = location;
            unsupported_browser_sync_operation!();
        }}
    }

    /// Copies a file to another path specified by `location`,
    /// overriding any contents at `location`. This is an asynchronous operation.
    /// 
    /// # Browser support
    /// 
    /// This operation is currently not supported in the browser
    /// and thus should panic.
    ///
    pub async fn copy_file_contents_to_async(&self, location: &File) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            tokio::fs::copy(&self.path_omega(), &location.path_omega()).await?;
            Ok(())
        }}
        if_browser! {{
            let _ = location;
            unsupported_browser_operation!();
        }}
    }

    /// Creates an empty directory synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    ///
    pub fn create_directory(&self) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            std::fs::create_dir(&self.path_omega())
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Creates an empty directory asynchronously.
    pub async fn create_directory_async(&self) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            tokio::fs::create_dir(&self.path_omega()).await
        }}
        if_browser! {{
            platforms::browser::create_directory_async(self.parent().path_omega(), self.flex_path().base_name()).await
        }}
    }

    /// Creates a directory and its parent directories synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    /// 
    pub fn create_directory_all(&self) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            std::fs::create_dir_all(&self.path_omega())
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Creates a directory and its parent directories asynchronously.
    pub async fn create_directory_all_async(&self) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            tokio::fs::create_dir_all(&self.path_omega()).await
        }}
        if_browser! {{
            platforms::browser::create_directory_all_async(self.path_omega()).await
        }}
    }

    /// Reads the bytes from a file synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    ///
    pub fn read_bytes(&self) -> std::io::Result<Bytes> {
        if_native_platform! {{
            std::fs::read(&self.path_omega()).map(|data| Bytes::from(data))
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Reads the bytes from a file asynchronously.
    pub async fn read_bytes_async(&self) -> std::io::Result<Bytes> {
        if_native_platform! {{
            tokio::fs::read(&self.path_omega()).await.map(|data| Bytes::from(data))
        }}
        if_browser! {{
            platforms::browser::read_bytes_async(self.path_omega()).await
        }}
    }

    /// Reads an UTF-8 encoded string from a file synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    /// 
    pub fn read_utf8(&self) -> std::io::Result<String> {
        if_native_platform! {{
            std::fs::read_to_string(&self.path_omega())
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Reads an UTF-8 encoded string from a file asynchronously.
    pub async fn read_utf8_async(&self) -> std::io::Result<String> {
        if_native_platform! {{
            tokio::fs::read_to_string(&self.path_omega()).await
        }}
        if_browser! {{
            platforms::browser::read_utf8_async(self.path_omega()).await
        }}
    }

    /// Returns entries from a directory, synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    /// 
    pub fn directory_listing(&self) -> std::io::Result<Vec<File>> {
        if_native_platform! {{
            let listing_1 = std::fs::read_dir(&self.path_omega())?;
            let mut listing_2 = vec![];
            for entry in listing_1 {
                if entry.is_err() {
                    continue;
                }
                let entry_name = entry.unwrap().file_name();
                listing_2.push(self.resolve_path(&entry_name.to_string_lossy().into_owned()));
            }
            Ok(listing_2)
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Returns entries from a directory, asynchronously.
    pub async fn directory_listing_async(&self) -> std::io::Result<Vec<File>> {
        if_native_platform! {{
            let mut listing_1 = tokio::fs::read_dir(&self.path_omega()).await?;
            let mut listing_2 = vec![];
            loop {
                let entry = listing_1.next_entry().await;
                if entry.is_err() {
                    continue;
                }
                let entry = entry.unwrap();
                if entry.is_none() {
                    break;
                }
                let entry = entry.unwrap();
                let entry_name = entry.file_name();
                listing_2.push(self.resolve_path(&entry_name.to_string_lossy().into_owned()));
            }
            Ok(listing_2)
        }}
        if_browser! {{
            let listing_1 = platforms::browser::directory_listing_async(self.path_omega()).await?;
            let mut listing_2 = vec![];
            for name in listing_1 {
                listing_2.push(self.resolve_path(&name));
            }
            Ok(listing_2)
        }}
    }

    /// Deletes an empty directory synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    /// 
    pub fn delete_empty_directory(&self) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            std::fs::remove_dir(&self.path_omega())
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Deletes an empty directory asynchronously.
    pub async fn delete_empty_directory_async(&self) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            tokio::fs::remove_dir(&self.path_omega()).await
        }}
        if_browser! {{
            platforms::browser::delete_empty_directory_async(self.parent().path_omega(), self.flex_path().base_name()).await
        }}
    }

    /// Deletes a directory recursively synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    /// 
    pub fn delete_directory_all(&self) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            std::fs::remove_dir_all(&self.path_omega())
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Deletes a directory recursively asynchronously.
    pub async fn delete_directory_all_async(&self) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            tokio::fs::remove_dir_all(&self.path_omega()).await
        }}
        if_browser! {{
            platforms::browser::delete_directory_all_async(self.parent().path_omega(), self.flex_path().base_name()).await
        }}
    }

    /// Deletes a file synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    /// 
    pub fn delete_file(&self) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            std::fs::remove_file(&self.path_omega())
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// Deletes a file asynchronously.
    pub async fn delete_file_async(&self) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            tokio::fs::remove_file(&self.path_omega()).await
        }}
        if_browser! {{
            platforms::browser::delete_file_async(self.parent().path_omega(), self.flex_path().base_name()).await
        }}
    }

    /// Moves a file or directory from its existing path to the path `path`, synchronously.
    /// This method overrides any file contents present at the path `path`.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    /// 
    /// # Example
    /// 
    /// ```
    /// use agera::file::*;
    /// 
    /// // Rename a.txt to b.txt
    /// let a_txt = File::new("a.txt");
    /// let b_txt = File::new("b.txt");
    /// a_txt.move_to(&b_txt)?;
    /// ```
    /// 
    pub fn move_to(&self, path: &File) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            std::fs::rename(&self.path_omega(), &path.path_omega())
        }}
        if_browser! {{
            let _ = path;
            unsupported_browser_sync_operation!();
        }}
    }

    /// Moves a file or directory from its existing path to the path `path`, asynchronously.
    /// This method overrides any file contents present at the path `path`.
    /// 
    /// # Browser support
    /// 
    /// This operation is currently not supported in the browser
    /// and thus should panic.
    /// 
    /// # Example
    /// 
    /// ```
    /// use agera::file::*;
    /// 
    /// // Rename a.txt to b.txt
    /// let a_txt = File::new("a.txt");
    /// let b_txt = File::new("b.txt");
    /// a_txt.move_to_async(&b_txt).await?;
    /// ```
    ///
    pub async fn move_to_async(&self, path: &File) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            tokio::fs::rename(&self.path_omega(), &path.path_omega()).await
        }}
        if_browser! {{
            let _ = path;
            unsupported_browser_operation!();
        }}
    }

    /// Writes data to a file synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    ///
    pub fn write<T: AsRef<[u8]>>(&self, data: T) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            std::fs::write(&self.path_omega(), data)
        }}
        if_browser! {{
            let _ = data;
            unsupported_browser_sync_operation!();
        }}
    }

    /// Writes data to a file asynchronously.
    pub async fn write_async<T: AsRef<[u8]>>(&self, data: T) -> std::io::Result<()> {
        if self.scheme == FileScheme::App {
            return Err(std::io::Error::new(std::io::ErrorKind::PermissionDenied, "Permission denied to 'app:'"));
        }
        if_native_platform! {{
            tokio::fs::write(&self.path_omega(), data).await
        }}
        if_browser! {{
            platforms::browser::write_async(self.path_omega(), data.as_ref()).await
        }}
    }

    /// The creation date of a file or directory. This method returns synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    ///
    pub fn creation_date(&self) -> std::io::Result<Option<std::time::SystemTime>> {
        if_native_platform! {{
            std::fs::metadata(&self.path_omega()).map(|metadata| metadata.created().ok())
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// The creation date of a file or directory.
    /// This method returns asynchronously.
    /// 
    /// # Browser support
    /// 
    /// This method is not supported in the browser, thus returning always
    /// `Ok(None)`.
    /// 
    pub async fn creation_date_async(&self) -> std::io::Result<Option<std::time::SystemTime>> {
        if_native_platform! {{
            tokio::fs::metadata(&self.path_omega()).await.map(|metadata| metadata.created().ok())
        }}
        if_browser! {{
            Ok(None)
        }}
    }

    /// The modification date of a file or directory. This method
    /// returns synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    ///
    pub fn modification_date(&self) -> std::io::Result<Option<std::time::SystemTime>> {
        if_native_platform! {{
            std::fs::metadata(&self.path_omega()).map(|metadata| metadata.modified().ok())
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// The modification date of a file or directory.
    /// This method returns asynchronously.
    /// 
    /// # Browser support
    /// 
    /// In the browser, this method returns `Ok(None)` for directories.
    /// 
    pub async fn modification_date_async(&self) -> std::io::Result<Option<std::time::SystemTime>> {
        if_native_platform! {{
            tokio::fs::metadata(&self.path_omega()).await.map(|metadata| metadata.modified().ok())
        }}
        if_browser! {{
            platforms::browser::modification_date_async(self.path_omega()).await
        }}
    }

    /// The size of a file, in bytes. This method returns synchronously.
    /// 
    /// # Browser support
    ///
    /// This is a synchronous operation, therefore it is not supported
    /// in the browser.
    ///
    pub fn size(&self) -> std::io::Result<usize> {
        if_native_platform! {{
            std::fs::metadata(&self.path_omega()).map(|metadata| metadata.len() as usize)
        }}
        if_browser! {{
            unsupported_browser_sync_operation!();
        }}
    }

    /// The size of a file, in bytes. This method returns asynchronously.
    /// 
    pub async fn size_async(&self) -> std::io::Result<usize> {
        if_native_platform! {{
            tokio::fs::metadata(&self.path_omega()).await.map(|metadata| metadata.len() as usize)
        }}
        if_browser! {{
            platforms::browser::size_async(self.path_omega()).await
        }}
    }
}

#[allow(unused)]
macro unsupported_browser_operation {
    () => {
        panic!("Operation not supported in the browser");
    },
}

#[allow(unused)]
macro unsupported_browser_sync_operation {
    () => {
        panic!("Browser does not support synchronous file operations");
    },
}

#[allow(unused)]
macro unsupported_browser_filescheme_operation {
    () => {
        panic!("Browser does not support the 'file:' scheme");
    },
}

#[derive(Copy, Clone, Eq, PartialEq, Debug)]
enum FileScheme {
    File,
    App,
    AppStorage,
}

fn uri_to_native_path(uri: &str) -> String {
    assert!(uri.starts_with("file:"));
    cfg_if! {
        if #[cfg(target_os = "windows")] {
            return regex_replace!(r"^/{2,3}", &decode_uri(&uri[5..]), |_| "".to_owned()).into_owned();
        } else {
            return regex_replace!(r"^/{0,2}", &decode_uri(&uri[5..]), |_| "/".to_owned()).into_owned();
        }
    }
}

fn native_path_to_uri(path: &str) -> String {
    #[cfg(target_os = "windows")] {
        format!("file:///{}", encode_uri(&path))
    }
    #[cfg(not(target_os = "windows"))] {
        format!("file:/{}", encode_uri(&path))
    }
}

#[doc(hidden)]
#[allow(non_snake_case)]
pub async fn __agera_File_bootstrap() {
    if cfg!(debug_assertions) {
        // Pass
    } else {
        let _ = File::application_directory().create_directory_all_async().await;
        let _ = File::application_storage_directory().create_directory_all_async().await;
    }
}

fn application_directory() -> String {
    if_native_platform! {{
        cfg_if! {
            if #[cfg(target_os = "android")] {
                let path = if let Some(p) = crate::platforms::application().external_data_path() { p } else { crate::platforms::application().internal_data_path().unwrap() };
                path.join("installFiles").to_string_lossy().into_owned()
            } else if #[cfg(debug_assertions)] {
                std::env::current_dir().unwrap().to_str().unwrap().into()
            } else if #[cfg(target_os = "windows")] {
                // dirs::data_local_dir().unwrap().join(&crate::application::id()).to_string_lossy().into_owned()
                std::path::PathBuf::from(&std::env::current_exe().unwrap()).parent().unwrap().to_str().unwrap().into()
            } else {
                dirs::data_dir().unwrap().join(&crate::application::id()).join("installFiles").to_string_lossy().into_owned()
            }
        }
    }}
    if_browser! {{
        format!("/{}/installFiles", crate::application::id())
    }}
}

fn application_storage_directory() -> String {
    if_native_platform! {{
        cfg_if! {
            if #[cfg(target_os = "android")] {
                let path = if let Some(p) = crate::platforms::application().external_data_path() { p } else { crate::platforms::application().internal_data_path().unwrap() };
                path.join("storageFiles").to_string_lossy().into_owned()
            } else if #[cfg(debug_assertions)] {
                std::path::PathBuf::from(std::env::var("OUT_DIR").unwrap()).join("agera_sdk_build/debug_storage_files").to_string_lossy().into_owned()
            } else if #[cfg(target_os = "windows")] {
                dirs::data_dir().unwrap().join(&crate::application::id()).to_string_lossy().into_owned()
            } else {
                dirs::data_dir().unwrap().join(&crate::application::id()).join("storageFiles").to_string_lossy().into_owned()
            }
        }
    }}
    if_browser! {{
        format!("/{}/storageFiles", crate::application::id())
    }}
}

fn downloads_directory() -> Option<String> {
    if_native_platform! {{
        dirs::download_dir().map(|d| d.to_string_lossy().into_owned())
    }}
    if_browser! {{ None }}
}

fn documents_directory() -> Option<String> {
    if_native_platform! {{
        dirs::document_dir().map(|d| d.to_string_lossy().into_owned())
    }}
    if_browser! {{ None }}
}

fn pictures_directory() -> Option<String> {
    if_native_platform! {{
        dirs::picture_dir().map(|d| d.to_string_lossy().into_owned())
    }}
    if_browser! {{ None }}
}

fn music_directory() -> Option<String> {
    if_native_platform! {{
        dirs::audio_dir().map(|d| d.to_string_lossy().into_owned())
    }}
    if_browser! {{ None }}
}

fn videos_directory() -> Option<String> {
    if_native_platform! {{
        dirs::video_dir().map(|d| d.to_string_lossy().into_owned())
    }}
    if_browser! {{ None }}
}

cfg_if! {
    if #[cfg(target_arch = "wasm32")] {
        #[path = "./file/reference/platforms/browser.rs"]
        mod reference;
    } else {
        #[path = "./file/reference/platforms/native.rs"]
        mod reference;
    }
}

/// `FileSystemReference` represents a reference to a file or directory in the file system.
///
#[derive(Clone)]
pub struct FileSystemReference(reference::FileSystemReference);

impl FileSystemReference {
    /// Returns the name of the file or directory. This is the last
    /// segment of the full file path, including any extensions.
    pub fn name(&self) -> String {
        self.0.name()
    }

    /// Indicates whether an `FileSystemReference` is a directory.
    pub fn is_directory(&self) -> bool {
        self.as_directory().is_some()
    }

    /// Indicates whether an `FileSystemReference` is a file.
    pub fn is_file(&self) -> bool {
        self.as_file().is_some()
    }

    /// Attempts to convert a `FileSystemReference` into a directory reference.
    pub fn as_directory(&self) -> Option<DirectoryReference> {
        self.0.as_directory().map(|d| DirectoryReference(d))
    }

    /// Attempts to convert a `FileSystemReference` into a file reference.
    pub fn as_file(&self) -> Option<FileReference> {
        self.0.as_file().map(|f| FileReference(f))
    }
}

/// `FileReference` represents a reference to a file in the file system.
/// 
/// # Browser support
/// 
/// Unlike with `File` objects, all operations on `FileReference` are asynchronous and are
/// designed to be compatible with the browser.
///
#[derive(Clone)]
pub struct FileReference(reference::FileReference);

impl FileReference {
    /// Reads bytes from a file.
    pub async fn read_bytes(&self) -> std::io::Result<Bytes> {
        self.0.read_bytes().await
    }

    /// Reads an UTF-8 encoded string from a file.
    pub async fn read_utf8(&self) -> std::io::Result<String> {
        self.0.read_utf8().await
    }

    /// Writes data to a file.
    pub async fn write<T: AsRef<[u8]>>(&self, data: T) -> std::io::Result<()> {
        self.0.write(data.as_ref()).await
    }

    /// The modification date from a file.
    pub async fn modification_date(&self) -> std::io::Result<std::time::SystemTime> {
        self.0.modification_date().await
    }

    /// The name of a file. This operation returns the last segment
    /// of the full file path, including any file extensions.
    pub fn name(&self) -> String {
        self.0.name()
    }

    /// The size of a file, in bytes.
    pub async fn size(&self) -> std::io::Result<usize> {
        self.0.size().await
    }
}

impl From<FileReference> for FileSystemReference {
    fn from(value: FileReference) -> Self {
        FileSystemReference(value.0.into())
    }
}

impl TryFrom<FileSystemReference> for FileReference {
    type Error = ();
    fn try_from(value: FileSystemReference) -> Result<Self, Self::Error> {
        if let Some(d) = value.as_file() { Ok(d) } else { Err(()) }
    }
}

/// `DirectoryReference` represents a reference to a directory in the file system.
/// 
/// # Browser support
/// 
/// Unlike with `File` objects, all operations on `DirectoryReference` are asynchronous and are
/// designed to be compatible with the browser.
///
#[derive(Clone)]
pub struct DirectoryReference(reference::DirectoryReference);

impl DirectoryReference {
    /// The name of a directory. This operation returns the last segment
    /// of the full directory path, including any file extensions.
    pub fn name(&self) -> String {
        self.0.name()
    }

    /// Returns the entries of a directory.
    pub async fn entries(&self) -> std::io::Result<Vec<FileSystemReference>> {
        Ok(self.0.entries().await?.iter().map(|entry| FileSystemReference(entry.clone())).collect())
    }

    /// Attempts to get a directory entry.
    /// `name` is taken as the entry filename.
    /// 
    /// # Errors
    /// 
    /// - Returns `Err` if the specified filename is invalid.
    /// - Returns `Err` if the directory does not exist or is a file.
    /// 
    pub async fn get_directory(&self, name: &str) -> std::io::Result<DirectoryReference> {
        Ok(DirectoryReference(self.0.get_directory(name).await?))
    }

    /// Attempts to get a directory entry or creates it if it does not exist.
    /// `name` is taken as the entry filename.
    /// 
    /// # Errors
    /// 
    /// - Returns `Err` if the specified filename is invalid.
    /// - Returns `Err` if a file of the specified filename already exists.
    /// 
    pub async fn get_directory_or_create(&self, name: &str) -> std::io::Result<DirectoryReference> {
        Ok(DirectoryReference(self.0.get_directory_or_create(name).await?))
    }

    /// Attempts to get a file entry.
    /// `name` is taken as the entry filename.
    /// 
    /// # Errors
    /// 
    /// - Returns `Err` if the specified filename is invalid.
    /// - Returns `Err` if the file does not exist or is a directory.
    /// 
    pub async fn get_file(&self, name: &str) -> std::io::Result<FileReference> {
        Ok(FileReference(self.0.get_file(name).await?))
    }

    /// Attempts to get a file entry or creates it if it does not exist.
    /// `name` is taken as the entry filename.
    /// 
    /// # Errors
    /// 
    /// - Returns `Err` if the specified filename is invalid.
    /// - Returns `Err` if a directory of the specified filename already exists.
    /// 
    pub async fn get_file_or_create(&self, name: &str) -> std::io::Result<FileReference> {
        Ok(FileReference(self.0.get_file_or_create(name).await?))
    }

    /// Deletes an empty entry directory. `name` is taken as the entry filename.
    pub async fn delete_empty_directory(&self, name: &str) -> std::io::Result<()> {
        self.0.delete_empty_directory(name).await
    }

    /// Deletes a directory entry recursively. `name` is taken as the entry filename.
    pub async fn delete_directory_all(&self, name: &str) -> std::io::Result<()> {
        self.0.delete_directory_all(name).await
    }

    /// Deletes a file entry. `name` is taken as the entry filename.
    pub async fn delete_file(&self, name: &str) -> std::io::Result<()> {
        self.0.delete_file(name).await
    }
}

impl From<DirectoryReference> for FileSystemReference {
    fn from(value: DirectoryReference) -> Self {
        FileSystemReference(value.0.into())
    }
}

impl TryFrom<FileSystemReference> for DirectoryReference {
    type Error = ();
    fn try_from(value: FileSystemReference) -> Result<Self, Self::Error> {
        if let Some(d) = value.as_directory() { Ok(d) } else { Err(()) }
    }
}