libuv 2.13.1

A safe rust wrapper for libuv
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
//! All file operations are run on the threadpool. See Thread pool work scheduling for information
//! on the threadpool size.
//!
//! Starting with libuv v1.45.0, some file operations on Linux are handed off to io_uring
//! <https://en.wikipedia.org/wiki/Io_uring> when possible. Apart from a (sometimes significant)
//! increase in throughput there should be no change in observable behavior. Libuv reverts to using
//! its threadpool when the necessary kernel features are unavailable or unsuitable. Starting with
//! libuv v1.49.0 this behavior was reverted and Libuv on Linux by default will be using the
//! threadpool again. In order to enable io_uring the Loop instance must be configured with the
//! USE_IO_URING_SQPOLL option.
//!
//! Note: Uses utf-8 encoding on Windows

include!("./fs_copy_flags.inc.rs");
include!("./fs_open_flags.inc.rs");
include!("./fs_mode_flags.rs");
include!("./fs_symlink_flags.inc.rs");
include!("./fs_types.inc.rs");

use crate::{FromInner, FsReq, Inner, IntoInner};
use std::ffi::CString;
use uv::{
    uv_fs_access, uv_fs_chmod, uv_fs_chown, uv_fs_close, uv_fs_closedir, uv_fs_copyfile,
    uv_fs_fchmod, uv_fs_fchown, uv_fs_fdatasync, uv_fs_fstat, uv_fs_fsync, uv_fs_ftruncate,
    uv_fs_futime, uv_fs_lchown, uv_fs_link, uv_fs_lstat, uv_fs_mkdir, uv_fs_mkdtemp, uv_fs_mkstemp,
    uv_fs_open, uv_fs_opendir, uv_fs_read, uv_fs_readdir, uv_fs_readlink, uv_fs_realpath,
    uv_fs_rename, uv_fs_rmdir, uv_fs_scandir, uv_fs_scandir_next, uv_fs_sendfile, uv_fs_stat,
    uv_fs_statfs, uv_fs_symlink, uv_fs_unlink, uv_fs_utime, uv_fs_write,
};

pub mod dir;
pub use dir::*;

pub mod dirent;
pub use dirent::*;

pub mod misc;
pub use misc::*;

pub mod stat;
pub use stat::*;

pub mod statfs;
pub use statfs::*;

pub mod timespec;
pub use timespec::*;

type FsReqResult = crate::Result<FsReq>;
type FsReqErrResult = Result<FsReq, Box<dyn std::error::Error>>;
type SyncResult = crate::Result<usize>;
type SyncErrResult = Result<usize, Box<dyn std::error::Error>>;

/// Cross platform representation of a file handle.
pub type File = i32;

/// Platform dependent representation of a file handle.
#[cfg(windows)]
pub type OsFile = *mut std::ffi::c_void;
#[cfg(not(windows))]
pub type OsFile = i32;

/// Cross platform representation of a socket handle.
#[cfg(windows)]
pub type Socket = u64;
#[cfg(not(windows))]
pub type Socket = i32;

/// Cross platform representation of a user id
#[cfg(windows)]
pub type Uid = u8;
#[cfg(not(windows))]
pub type Uid = u32;

/// Cross platform representation of a group id
#[cfg(windows)]
pub type Gid = u8;
#[cfg(not(windows))]
pub type Gid = u32;

/// Destroys the given FsReq and returns the result
fn destroy_req_return_result(mut req: FsReq) -> SyncResult {
    let result = req.result();
    req.destroy();
    result
}

/// Destroys the given FsReq and returns the result
fn destroy_req_return_boxed_result(req: FsReq) -> SyncErrResult {
    destroy_req_return_result(req).map_err(|e| Box::new(e) as _)
}

impl crate::Loop {
    /// Private implementation for fs_close()
    fn _fs_close<CB: Into<crate::FsCB<'static>>>(&self, file: File, cb: CB) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let result =
            crate::uvret(unsafe { uv_fs_close(self.into_inner(), req.inner(), file as _, uv_cb) });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to close(2).
    pub fn fs_close<CB: Into<crate::FsCB<'static>>>(&self, file: File, cb: CB) -> FsReqResult {
        self._fs_close(file, cb)
    }

    /// Equivalent to close(2).
    pub fn fs_close_sync(&self, file: File) -> SyncResult {
        self._fs_close(file, ()).and_then(destroy_req_return_result)
    }

    /// Private implementation for fs_open()
    fn _fs_open<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        flags: FsOpenFlags,
        mode: FsModeFlags,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_open(
                self.into_inner(),
                req.inner(),
                path.as_ptr(),
                flags.bits(),
                mode.bits(),
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to open(2).
    ///
    /// Note: On Windows libuv uses CreateFileW and thus the file is always opened in binary mode.
    pub fn fs_open<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        flags: FsOpenFlags,
        mode: FsModeFlags,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_open(path, flags, mode, cb)
    }

    /// Equivalent to open(2).
    ///
    /// Note: On Windows libuv uses CreateFileW and thus the file is always opened in binary mode.
    pub fn fs_open_sync(
        &self,
        path: &str,
        flags: FsOpenFlags,
        mode: FsModeFlags,
    ) -> Result<File, Box<dyn std::error::Error>> {
        self._fs_open(path, flags, mode, ()).and_then(|mut req| {
            let file = req.result();
            req.destroy();
            file.map(|f| f as _).map_err(|e| Box::new(e) as _)
        })
    }

    /// Private implementation for fs_read()
    fn _fs_read<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        bufs: &[crate::Buf],
        offset: i64,
        cb: CB,
    ) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let (bufs_ptr, bufs_len, _) = bufs.into_inner();
        let result = crate::uvret(unsafe {
            uv_fs_read(
                self.into_inner(),
                req.inner(),
                file as _,
                bufs_ptr as _,
                bufs_len as _,
                offset,
                uv_cb,
            )
        });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to preadv(2).
    ///
    /// Warning: On Windows, under non-MSVC environments (e.g. when GCC or Clang is used to build
    /// libuv), files opened using the Filemap flag may cause a fatal crash if the memory mapped
    /// read operation fails.
    pub fn fs_read<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        bufs: &[crate::Buf],
        offset: i64,
        cb: CB,
    ) -> FsReqResult {
        self._fs_read(file, bufs, offset, cb)
    }

    /// Equivalent to preadv(2).
    ///
    /// Warning: On Windows, under non-MSVC environments (e.g. when GCC or Clang is used to build
    /// libuv), files opened using the Filemap flag may cause a fatal crash if the memory mapped
    /// read operation fails.
    pub fn fs_read_sync(&self, file: File, bufs: &[crate::Buf], offset: i64) -> SyncResult {
        self._fs_read(file, bufs, offset, ())
            .and_then(destroy_req_return_result)
    }

    /// Private implementation for fs_unlink()
    fn _fs_unlink<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_unlink(self.into_inner(), req.inner(), path.as_ptr(), uv_cb)
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to unlink(2).
    pub fn fs_unlink<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        self._fs_unlink(path, cb)
    }

    /// Equivalent to unlink(2).
    pub fn fs_unlink_sync(&self, path: &str) -> SyncErrResult {
        self._fs_unlink(path, ())
            .and_then(destroy_req_return_boxed_result)
    }

    /// Private implementation for fs_write()
    fn _fs_write<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        bufs: &[impl crate::BufTrait],
        offset: i64,
        cb: CB,
    ) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let (bufs_ptr, bufs_len, _) = bufs.into_inner();
        let result = crate::uvret(unsafe {
            uv_fs_write(
                self.into_inner(),
                req.inner(),
                file as _,
                bufs_ptr as _,
                bufs_len as _,
                offset,
                uv_cb,
            )
        });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to pwritev(2).
    ///
    /// Warning: On Windows, under non-MSVC environments (e.g. when GCC or Clang is used to build
    /// libuv), files opened using the Filemap flag may cause a fatal crash if the memory mapped
    /// write operation fails.
    pub fn fs_write<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        bufs: &[impl crate::BufTrait],
        offset: i64,
        cb: CB,
    ) -> FsReqResult {
        self._fs_write(file, bufs, offset, cb)
    }

    /// Equivalent to pwritev(2).
    ///
    /// Warning: On Windows, under non-MSVC environments (e.g. when GCC or Clang is used to build
    /// libuv), files opened using the Filemap flag may cause a fatal crash if the memory mapped
    /// write operation fails.
    pub fn fs_write_sync(
        &self,
        file: File,
        bufs: &[impl crate::BufTrait],
        offset: i64,
    ) -> SyncResult {
        self._fs_write(file, bufs, offset, ())
            .and_then(destroy_req_return_result)
    }

    /// Private implementation for fs_mkdir()
    fn _fs_mkdir<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        mode: FsModeFlags,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_mkdir(
                self.into_inner(),
                req.inner(),
                path.as_ptr() as _,
                mode.bits(),
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to mkdir(2).
    ///
    /// Note: mode is currently not implemented on Windows.
    pub fn fs_mkdir<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        mode: FsModeFlags,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_mkdir(path, mode, cb)
    }

    /// Equivalent to mkdir(2).
    ///
    /// Note: mode is currently not implemented on Windows.
    pub fn fs_mkdir_sync(&self, path: &str, mode: FsModeFlags) -> SyncErrResult {
        self._fs_mkdir(path, mode, ())
            .and_then(destroy_req_return_boxed_result)
    }

    /// Private implementation for fs_mkdtemp()
    fn _fs_mkdtemp<CB: Into<crate::FsCB<'static>>>(&self, tpl: &str, cb: CB) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let tpl = CString::new(tpl)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_mkdtemp(self.into_inner(), req.inner(), tpl.as_ptr(), uv_cb)
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy()
        }
        result.map(|_| req)
    }

    /// Equivalent to mkdtemp(3). The result can be found as req.path()
    pub fn fs_mkdtemp<CB: Into<crate::FsCB<'static>>>(&self, tpl: &str, cb: CB) -> FsReqErrResult {
        self._fs_mkdtemp(tpl, cb)
    }

    /// Equivalent to mkdtemp(3).
    pub fn fs_mkdtemp_sync(&self, tpl: &str) -> Result<String, Box<dyn std::error::Error>> {
        self._fs_mkdtemp(tpl, ()).map(|mut req| {
            let path = req.path();
            req.destroy();
            return path;
        })
    }

    /// Private implementation for fs_mkstemp()
    fn _fs_mkstemp<CB: Into<crate::FsCB<'static>>>(&self, tpl: &str, cb: CB) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let tpl = CString::new(tpl)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_mkstemp(self.into_inner(), req.inner(), tpl.as_ptr(), uv_cb)
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to mkstemp(3).
    pub fn fs_mkstemp<CB: Into<crate::FsCB<'static>>>(&self, tpl: &str, cb: CB) -> FsReqErrResult {
        self._fs_mkstemp(tpl, cb)
    }

    /// Equivalent to mkstemp(3).
    pub fn fs_mkstemp_sync(&self, tpl: &str) -> SyncErrResult {
        self._fs_mkstemp(tpl, ())
            .and_then(destroy_req_return_boxed_result)
    }

    /// Private implementation for fs_rmdir()
    fn _fs_rmdir<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_rmdir(self.into_inner(), req.inner(), path.as_ptr(), uv_cb)
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to rmdir(2).
    pub fn fs_rmdir<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        self._fs_rmdir(path, cb)
    }

    /// Equivalent to rmdir(2).
    pub fn fs_rmdir_sync(&self, path: &str) -> SyncErrResult {
        self._fs_rmdir(path, ())
            .and_then(destroy_req_return_boxed_result)
    }

    /// Private implementation for fs_opendir()
    fn _fs_opendir<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_opendir(self.into_inner(), req.inner(), path.as_ptr(), uv_cb)
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Opens path as a directory stream. On success, a Dir is allocated and returned via
    /// req.dir(). This memory is not freed by req.destroy(). The allocated memory must be freed by
    /// calling fs_closedir(). On failure, no memory is allocated.
    ///
    /// The contents of the directory can be iterated over by passing the resulting Dir to
    /// fs_readdir().
    pub fn fs_opendir<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        self._fs_opendir(path, cb)
    }

    /// Opens path as a directory stream. On success, a Dir is allocated and returned. The
    /// allocated memory must be freed by calling fs_closedir(). On failure, no memory is
    /// allocated.
    ///
    /// The contents of the directory can be iterated over by passing the resulting Dir to
    /// fs_readdir().
    pub fn fs_opendir_sync(&self, path: &str) -> Result<crate::Dir, Box<dyn std::error::Error>> {
        self._fs_opendir(path, ()).and_then(|mut req| {
            let dir = req.dir();
            req.destroy();
            dir.ok_or_else(|| Box::new(crate::Error::EINVAL) as _)
        })
    }

    /// Private implementation for fs_closedir()
    fn _fs_closedir<CB: Into<crate::FsCB<'static>>>(&self, dir: &Dir, cb: CB) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_closedir(self.into_inner(), req.inner(), dir.into_inner(), uv_cb)
        });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Closes the directory stream represented by dir and frees the memory allocated by
    /// fs_opendir(). Don't forget to call Dir::free_entries() first!
    pub fn fs_closedir<CB: Into<crate::FsCB<'static>>>(&self, dir: &Dir, cb: CB) -> FsReqResult {
        self._fs_closedir(dir, cb)
    }

    /// Closes the directory stream represented by dir and frees the memory allocated by
    /// fs_opendir(). Don't forget to call Dir::free_entries() first!
    pub fn fs_closedir_sync(&self, dir: &Dir) -> SyncResult {
        self._fs_closedir(dir, ())
            .and_then(destroy_req_return_result)
    }

    /// Private implementation for fs_readdir
    fn _fs_readdir<CB: Into<crate::FsCB<'static>>>(&self, dir: &Dir, cb: CB) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_readdir(self.into_inner(), req.inner(), dir.into_inner(), uv_cb)
        });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Iterates over the directory stream, dir, returned by a successful fs_opendir() call. Prior
    /// to invoking fs_readdir(), the caller must allocate space for directory entries by calling
    /// Dir::reserve().
    ///
    /// Warning: fs_readdir() is not thread safe.
    ///
    /// Note: This function does not return the “.” and “..” entries.
    ///
    /// Note: On success this function allocates memory that must be freed using FsReq::destroy().
    /// destroy() must be called before closing the directory with fs_closedir().
    pub fn fs_readdir<CB: Into<crate::FsCB<'static>>>(&self, dir: &Dir, cb: CB) -> FsReqResult {
        self._fs_readdir(dir, cb).and_then(|req| {
            if let Some(dir) = req.dir().as_mut() {
                let result = req.result()?;
                dir.set_len(result as _);
            }
            Ok(req)
        })
    }

    /// Iterates over the directory stream, dir, returned by a successful fs_opendir() call. Prior
    /// to invoking fs_readdir(), the caller must allocate space for directory entries by calling
    /// Dir::reserve().
    ///
    /// On success, the result is an integer >= 0 representing the number of entries read from the
    /// stream.
    ///
    /// Warning: fs_readdir() is not thread safe.
    ///
    /// Note: This function does not return the “.” and “..” entries.
    pub fn fs_readdir_sync(&self, dir: &Dir) -> SyncResult {
        self._fs_readdir(dir, ())
            .and_then(destroy_req_return_result)
    }

    /// Private implementation for fs_scandir()
    fn _fs_scandir<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        flags: FsOpenFlags,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_scandir(
                self.into_inner(),
                req.inner(),
                path.as_ptr(),
                flags.bits(),
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Start scanning a directory. Unlike most other fs_* methods, the callback is passed a
    /// ScandirIter which is an iterator over the entries in the directory. If you need access to
    /// the FsReq in the callback, you can access iter.req.
    ///
    /// Note: Unlike scandir(3), this function does not return the “.” and “..” entries.
    ///
    /// Note: On Linux, getting the type of an entry is only supported by some file systems (btrfs,
    /// ext2, ext3 and ext4 at the time of this writing), check the getdents(2) man page.
    pub fn fs_scandir(
        &self,
        path: &str,
        flags: FsOpenFlags,
        mut cb: impl FnMut(ScandirIter) + 'static,
    ) -> FsReqErrResult {
        self._fs_scandir(path, flags, move |req| cb(ScandirIter { req }))
    }

    /// Returns a ScandirIter that can be used to iterate over the contents of a directory.
    pub fn fs_scandir_sync(
        &self,
        path: &str,
        flags: FsOpenFlags,
    ) -> Result<ScandirIter, Box<dyn std::error::Error>> {
        self._fs_scandir(path, flags, ())
            .map(|req| ScandirIter { req })
    }

    /// Private implementation for fs_stat()
    fn _fs_stat<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_stat(self.into_inner(), req.inner(), path.as_ptr(), uv_cb)
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to stat(2).
    pub fn fs_stat<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        self._fs_stat(path, cb)
    }

    /// Equivalent to stat(2).
    pub fn fs_stat_sync(&self, path: &str) -> Result<Stat, Box<dyn std::error::Error>> {
        self._fs_stat(path, ()).map(|mut req| {
            let stat = req.stat();
            req.destroy();
            return stat;
        })
    }

    /// Private implementation for fs_fstat()
    fn _fs_fstat<CB: Into<crate::FsCB<'static>>>(&self, file: File, cb: CB) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let result =
            crate::uvret(unsafe { uv_fs_fstat(self.into_inner(), req.inner(), file as _, uv_cb) });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to fstat(2).
    pub fn fs_fstat<CB: Into<crate::FsCB<'static>>>(&self, file: File, cb: CB) -> FsReqResult {
        self._fs_fstat(file, cb)
    }

    /// Equivalent to fstat(2).
    pub fn fs_fstat_sync(&self, file: File) -> crate::Result<Stat> {
        self._fs_fstat(file, ()).map(|mut req| {
            let stat = req.stat();
            req.destroy();
            return stat;
        })
    }

    /// Private implementation for fs_lstat
    fn _fs_lstat<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_lstat(self.into_inner(), req.inner(), path.as_ptr(), uv_cb)
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to lstat(2).
    pub fn fs_lstat<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        self._fs_lstat(path, cb)
    }

    /// Equivalent to lstat(2).
    pub fn fs_lstat_sync(&self, path: &str) -> Result<Stat, Box<dyn std::error::Error>> {
        self._fs_lstat(path, ()).map(|mut req| {
            let stat = req.stat();
            req.destroy();
            return stat;
        })
    }

    /// Private implementation for fs_statfs()
    fn _fs_statfs<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_statfs(self.into_inner(), req.inner(), path.as_ptr(), uv_cb)
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to statfs(2). On success, FsReq::statfs() will return a StatFs
    ///
    /// Note: Any fields in the resulting StatFs that are not supported by the underlying operating
    /// system are set to zero.
    pub fn fs_statfs<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        self._fs_statfs(path, cb)
    }

    /// Equivalent to statfs(2). On success, FsReq::statfs() will return a StatFs
    ///
    /// Note: Any fields in the resulting StatFs that are not supported by the underlying operating
    /// system are set to zero.
    pub fn fs_statfs_sync(&self, path: &str) -> Result<StatFs, Box<dyn std::error::Error>> {
        self._fs_statfs(path, ()).and_then(|mut req| {
            let statfs = req.statfs();
            req.destroy();
            statfs.ok_or_else(|| Box::new(crate::Error::EINVAL) as _)
        })
    }

    /// Private implementation for fs_rename()
    fn _fs_rename<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        new_path: &str,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let new_path = CString::new(new_path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_rename(
                self.into_inner(),
                req.inner(),
                path.as_ptr(),
                new_path.as_ptr(),
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to rename(2).
    pub fn fs_rename<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        new_path: &str,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_rename(path, new_path, cb)
    }

    /// Equivalent to rename(2).
    pub fn fs_rename_sync(&self, path: &str, new_path: &str) -> SyncErrResult {
        self._fs_rename(path, new_path, ())
            .and_then(destroy_req_return_boxed_result)
    }

    /// Private implementation for fs_fsync()
    fn _fs_fsync<CB: Into<crate::FsCB<'static>>>(&self, file: File, cb: CB) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let result =
            crate::uvret(unsafe { uv_fs_fsync(self.into_inner(), req.inner(), file as _, uv_cb) });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to fsync(2).
    ///
    /// Note: For AIX, uv_fs_fsync returns UV_EBADF on file descriptors referencing non regular
    /// files.
    pub fn fs_fsync<CB: Into<crate::FsCB<'static>>>(&self, file: File, cb: CB) -> FsReqResult {
        self._fs_fsync(file, cb)
    }

    /// Equivalent to fsync(2).
    ///
    /// Note: For AIX, uv_fs_fsync returns UV_EBADF on file descriptors referencing non regular
    /// files.
    pub fn fs_fsync_sync(&self, file: File) -> SyncResult {
        self._fs_fsync(file, ()).and_then(destroy_req_return_result)
    }

    /// Private implementation for fs_fdatasync()
    fn _fs_fdatasync<CB: Into<crate::FsCB<'static>>>(&self, file: File, cb: CB) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_fdatasync(self.into_inner(), req.inner(), file as _, uv_cb)
        });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to fdatasync(2).
    pub fn fs_fdatasync<CB: Into<crate::FsCB<'static>>>(&self, file: File, cb: CB) -> FsReqResult {
        self._fs_fdatasync(file, cb)
    }

    /// Equivalent to fdatasync(2).
    pub fn fs_fdatasync_sync(&self, file: File) -> SyncResult {
        self._fs_fdatasync(file, ())
            .and_then(destroy_req_return_result)
    }

    /// Private implementation for fs_ftruncate()
    fn _fs_ftruncate<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        offset: i64,
        cb: CB,
    ) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_ftruncate(self.into_inner(), req.inner(), file as _, offset, uv_cb)
        });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to ftruncate(2).
    pub fn fs_ftruncate<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        offset: i64,
        cb: CB,
    ) -> FsReqResult {
        self._fs_ftruncate(file, offset, cb)
    }

    /// Equivalent to ftruncate(2).
    pub fn fs_ftruncate_sync(&self, file: File, offset: i64) -> SyncResult {
        self._fs_ftruncate(file, offset, ())
            .and_then(destroy_req_return_result)
    }

    /// Private implementation for fs_copyfile()
    fn _fs_copyfile<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        new_path: &str,
        flags: FsCopyFlags,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let new_path = CString::new(new_path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_copyfile(
                self.into_inner(),
                req.inner(),
                path.as_ptr(),
                new_path.as_ptr(),
                flags.bits(),
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Copies a file from path to new_path. Supported flags are described below.
    ///
    ///   * EXCL: If present, fs_copyfile() will fail with EEXIST if the destination path already
    ///     exists. The default behavior is to overwrite the destination if it exists.
    ///   * FICLONE: If present, fs_copyfile() will attempt to create a copy-on-write reflink. If
    ///     the underlying platform does not support copy-on-write, or an error occurs while
    ///     attempting to use copy-on-write, a fallback copy mechanism based on fs_sendfile() is
    ///     used.
    ///   * FICLONE_FORCE: If present, fs_copyfile() will attempt to create a copy-on-write
    ///     reflink. If the underlying platform does not support copy-on-write, or an error occurs
    ///     while attempting to use copy-on-write, then an error is returned.
    ///
    /// Warning: If the destination path is created, but an error occurs while copying the data,
    /// then the destination path is removed. There is a brief window of time between closing and
    /// removing the file where another process could access the file.
    pub fn fs_copyfile<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        new_path: &str,
        flags: FsCopyFlags,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_copyfile(path, new_path, flags, cb)
    }

    /// Copies a file from path to new_path. Supported flags are described below.
    ///
    ///   * EXCL: If present, fs_copyfile() will fail with EEXIST if the destination path already
    ///     exists. The default behavior is to overwrite the destination if it exists.
    ///   * FICLONE: If present, fs_copyfile() will attempt to create a copy-on-write reflink. If
    ///     the underlying platform does not support copy-on-write, or an error occurs while
    ///     attempting to use copy-on-write, a fallback copy mechanism based on fs_sendfile() is
    ///     used.
    ///   * FICLONE_FORCE: If present, fs_copyfile() will attempt to create a copy-on-write
    ///     reflink. If the underlying platform does not support copy-on-write, or an error occurs
    ///     while attempting to use copy-on-write, then an error is returned.
    ///
    /// Warning: If the destination path is created, but an error occurs while copying the data,
    /// then the destination path is removed. There is a brief window of time between closing and
    /// removing the file where another process could access the file.
    pub fn fs_copyfile_sync(
        &self,
        path: &str,
        new_path: &str,
        flags: FsCopyFlags,
    ) -> SyncErrResult {
        self._fs_copyfile(path, new_path, flags, ())
            .and_then(destroy_req_return_boxed_result)
    }

    /// Private implementation for fs_sendfile
    fn _fs_sendfile<CB: Into<crate::FsCB<'static>>>(
        &self,
        out_file: File,
        in_file: File,
        offset: i64,
        len: usize,
        cb: CB,
    ) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_sendfile(
                self.into_inner(),
                req.inner(),
                out_file as _,
                in_file as _,
                offset,
                len as _,
                uv_cb,
            )
        });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Limited equivalent to sendfile(2).
    pub fn fs_sendfile<CB: Into<crate::FsCB<'static>>>(
        &self,
        out_file: File,
        in_file: File,
        offset: i64,
        len: usize,
        cb: CB,
    ) -> FsReqResult {
        self._fs_sendfile(out_file, in_file, offset, len, cb)
    }

    /// Limited equivalent to sendfile(2).
    pub fn fs_sendfile_sync(
        &self,
        out_file: File,
        in_file: File,
        offset: i64,
        len: usize,
    ) -> SyncResult {
        self._fs_sendfile(out_file, in_file, offset, len, ())
            .and_then(destroy_req_return_result)
    }

    /// Private implementation for fs_access()
    fn _fs_access<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        mode: FsAccessFlags,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_access(
                self.into_inner(),
                req.inner(),
                path.as_ptr(),
                mode.bits(),
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to access(2) on Unix. Windows uses GetFileAttributesW().
    pub fn fs_access<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        mode: FsAccessFlags,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_access(path, mode, cb)
    }

    /// Equivalent to access(2) on Unix. Windows uses GetFileAttributesW().
    pub fn fs_access_sync(&self, path: &str, mode: FsAccessFlags) -> SyncErrResult {
        self._fs_access(path, mode, ())
            .and_then(destroy_req_return_boxed_result)
    }

    /// Private implementation for fs_chmod()
    fn _fs_chmod<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        mode: FsModeFlags,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_chmod(
                self.into_inner(),
                req.inner(),
                path.as_ptr(),
                mode.bits(),
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to chmod(2).
    pub fn fs_chmod<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        mode: FsModeFlags,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_chmod(path, mode, cb)
    }

    /// Equivalent to chmod(2).
    pub fn fs_chmod_sync(&self, path: &str, mode: FsModeFlags) -> SyncErrResult {
        self._fs_chmod(path, mode, ())
            .and_then(destroy_req_return_boxed_result)
    }

    /// Private implementation for fs_fchomd()
    fn _fs_fchmod<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        mode: FsModeFlags,
        cb: CB,
    ) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_fchmod(
                self.into_inner(),
                req.inner(),
                file as _,
                mode.bits(),
                uv_cb,
            )
        });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to fchmod(2).
    pub fn fs_fchmod<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        mode: FsModeFlags,
        cb: CB,
    ) -> FsReqResult {
        self._fs_fchmod(file, mode, cb)
    }

    /// Equivalent to fchmod(2).
    pub fn fs_fchmod_sync(&self, file: File, mode: FsModeFlags) -> SyncResult {
        self._fs_fchmod(file, mode, ())
            .and_then(destroy_req_return_result)
    }

    fn _fs_utime<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        atime: f64,
        mtime: f64,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_utime(
                self.into_inner(),
                req.inner(),
                path.as_ptr(),
                atime,
                mtime,
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to utime(2).
    ///
    /// Note: AIX: This function only works for AIX 7.1 and newer. It can still be called on older
    /// versions but will return ENOSYS.
    pub fn fs_utime<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        atime: f64,
        mtime: f64,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_utime(path, atime, mtime, cb)
    }

    /// Equivalent to utime(2).
    ///
    /// Note: AIX: This function only works for AIX 7.1 and newer. It can still be called on older
    /// versions but will return ENOSYS.
    pub fn fs_utime_sync(&self, path: &str, atime: f64, mtime: f64) -> SyncErrResult {
        self._fs_utime(path, atime, mtime, ())
            .and_then(destroy_req_return_boxed_result)
    }

    /// Private implementation for fs_futime()
    fn _fs_futime<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        atime: f64,
        mtime: f64,
        cb: CB,
    ) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_futime(
                self.into_inner(),
                req.inner(),
                file as _,
                atime,
                mtime,
                uv_cb,
            )
        });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to futimes(3) respectively.
    ///
    /// Note: AIX: This function only works for AIX 7.1 and newer. It can still be called on older
    /// versions but will return ENOSYS.
    pub fn fs_futime<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        atime: f64,
        mtime: f64,
        cb: CB,
    ) -> FsReqResult {
        self._fs_futime(file, atime, mtime, cb)
    }

    /// Equivalent to futimes(3) respectively.
    ///
    /// Note: AIX: This function only works for AIX 7.1 and newer. It can still be called on older
    /// versions but will return ENOSYS.
    pub fn fs_futime_sync(&self, file: File, atime: f64, mtime: f64) -> SyncResult {
        self._fs_futime(file, atime, mtime, ())
            .and_then(destroy_req_return_result)
    }

    /// Private implementation for fs_link()
    fn _fs_link<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        new_path: &str,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let new_path = CString::new(new_path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_link(
                self.into_inner(),
                req.inner(),
                path.as_ptr(),
                new_path.as_ptr(),
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to link(2).
    pub fn fs_link<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        new_path: &str,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_link(path, new_path, cb)
    }

    /// Equivalent to link(2).
    pub fn fs_link_sync(&self, path: &str, new_path: &str) -> SyncErrResult {
        self._fs_link(path, new_path, ())
            .and_then(destroy_req_return_boxed_result)
    }

    /// Private implementation for fs_symlink()
    fn _fs_symlink<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        new_path: &str,
        flags: FsSymlinkFlags,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let new_path = CString::new(new_path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_symlink(
                self.into_inner(),
                req.inner(),
                path.as_ptr(),
                new_path.as_ptr(),
                flags.bits(),
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to symlink(2).
    ///
    /// Note: On Windows the flags parameter can be specified to control how the symlink will be
    /// created:
    ///
    ///   * UV_FS_SYMLINK_DIR: indicates that path points to a directory.
    ///   * UV_FS_SYMLINK_JUNCTION: request that the symlink is created using junction points.
    pub fn fs_symlink<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        new_path: &str,
        flags: FsSymlinkFlags,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_symlink(path, new_path, flags, cb)
    }

    /// Equivalent to symlink(2).
    ///
    /// Note: On Windows the flags parameter can be specified to control how the symlink will be
    /// created:
    ///
    ///   * UV_FS_SYMLINK_DIR: indicates that path points to a directory.
    ///   * UV_FS_SYMLINK_JUNCTION: request that the symlink is created using junction points.
    pub fn fs_symlink_sync(
        &self,
        path: &str,
        new_path: &str,
        flags: FsSymlinkFlags,
    ) -> SyncErrResult {
        self._fs_symlink(path, new_path, flags, ())
            .and_then(destroy_req_return_boxed_result)
    }

    fn _fs_readlink<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_readlink(self.into_inner(), req.inner(), path.as_ptr(), uv_cb)
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to readlink(2). The path can be read from FsReq::real_path()
    pub fn fs_readlink<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_readlink(path, cb)
    }

    /// Equivalent to readlink(2).
    pub fn fs_readlink_sync(&self, path: &str) -> Result<String, Box<dyn std::error::Error>> {
        self._fs_readlink(path, ()).and_then(|mut req| {
            let path = req.real_path();
            req.destroy();
            path.ok_or_else(|| Box::new(crate::Error::EINVAL) as _)
        })
    }

    /// Private implementation for fs_realpath()
    fn _fs_realpath<CB: Into<crate::FsCB<'static>>>(&self, path: &str, cb: CB) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_realpath(self.into_inner(), req.inner(), path.as_ptr(), uv_cb)
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to realpath(3) on Unix. Windows uses GetFinalPathNameByHandleW. The path can be
    /// read from FsReq::real_path()
    ///
    /// Warning: This function has certain platform-specific caveats that were discovered when used
    /// in Node.
    ///
    ///   * macOS and other BSDs: this function will fail with ELOOP if more than 32 symlinks are
    ///     found while resolving the given path. This limit is hardcoded and cannot be
    ///     sidestepped.
    ///   * Windows: while this function works in the common case, there are a number of corner
    ///     cases where it doesn’t:
    ///       * Paths in ramdisk volumes created by tools which sidestep the Volume Manager (such
    ///         as ImDisk) cannot be resolved.
    ///       * Inconsistent casing when using drive letters.
    ///       * Resolved path bypasses subst’d drives.
    ///
    /// While this function can still be used, it’s not recommended if scenarios such as the above
    /// need to be supported.
    ///
    /// Note: This function is not implemented on Windows XP and Windows Server 2003. On these
    /// systems, ENOSYS is returned.
    pub fn fs_realpath<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_realpath(path, cb)
    }

    /// Equivalent to realpath(3) on Unix. Windows uses GetFinalPathNameByHandleW.
    ///
    /// Warning: This function has certain platform-specific caveats that were discovered when used
    /// in Node.
    ///
    ///   * macOS and other BSDs: this function will fail with ELOOP if more than 32 symlinks are
    ///     found while resolving the given path. This limit is hardcoded and cannot be
    ///     sidestepped.
    ///   * Windows: while this function works in the common case, there are a number of corner
    ///     cases where it doesn’t:
    ///       * Paths in ramdisk volumes created by tools which sidestep the Volume Manager (such
    ///         as ImDisk) cannot be resolved.
    ///       * Inconsistent casing when using drive letters.
    ///       * Resolved path bypasses subst’d drives.
    ///
    /// While this function can still be used, it’s not recommended if scenarios such as the above
    /// need to be supported.
    ///
    /// Note: This function is not implemented on Windows XP and Windows Server 2003. On these
    /// systems, ENOSYS is returned.
    pub fn fs_realpath_sync(&self, path: &str) -> Result<String, Box<dyn std::error::Error>> {
        self._fs_realpath(path, ()).and_then(|mut req| {
            let path = req.real_path();
            req.destroy();
            path.ok_or_else(|| Box::new(crate::Error::EINVAL) as _)
        })
    }

    /// Private implementation for fs_chown()
    fn _fs_chown<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        uid: Uid,
        gid: Gid,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_chown(
                self.into_inner(),
                req.inner(),
                path.as_ptr(),
                uid as _,
                gid as _,
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to chown(2)
    ///
    /// Note: This functions are not implemented on Windows.
    pub fn fs_chown<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        uid: Uid,
        gid: Gid,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_chown(path, uid, gid, cb)
    }

    /// Equivalent to chown(2)
    ///
    /// Note: This functions are not implemented on Windows.
    pub fn fs_chown_sync(&self, path: &str, uid: Uid, gid: Gid) -> SyncErrResult {
        self._fs_chown(path, uid, gid, ())
            .and_then(destroy_req_return_boxed_result)
    }

    /// Private implementation for fs_fchown()
    fn _fs_fchown<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        uid: Uid,
        gid: Gid,
        cb: CB,
    ) -> FsReqResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_fchown(
                self.into_inner(),
                req.inner(),
                file as _,
                uid as _,
                gid as _,
                uv_cb,
            )
        });
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to fchown(2)
    ///
    /// Note: This functions are not implemented on Windows.
    pub fn fs_fchown<CB: Into<crate::FsCB<'static>>>(
        &self,
        file: File,
        uid: Uid,
        gid: Gid,
        cb: CB,
    ) -> FsReqResult {
        self._fs_fchown(file, uid, gid, cb)
    }

    /// Equivalent to fchown(2)
    ///
    /// Note: This functions are not implemented on Windows.
    pub fn fs_fchown_sync(&self, file: File, uid: Uid, gid: Gid) -> SyncResult {
        self._fs_fchown(file, uid, gid, ())
            .and_then(destroy_req_return_result)
    }

    /// Private implementation for fs_lchown()
    fn _fs_lchown<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        uid: Uid,
        gid: Gid,
        cb: CB,
    ) -> FsReqErrResult {
        let cb = cb.into();
        let uv_cb = use_c_callback!(crate::uv_fs_cb, cb);
        let path = CString::new(path)?;
        let mut req = FsReq::new(cb)?;
        let result = crate::uvret(unsafe {
            uv_fs_lchown(
                self.into_inner(),
                req.inner(),
                path.as_ptr(),
                uid as _,
                gid as _,
                uv_cb,
            )
        })
        .map_err(|e| Box::new(e) as _);
        if result.is_err() {
            req.destroy();
        }
        result.map(|_| req)
    }

    /// Equivalent to lchown(2)
    ///
    /// Note: This functions are not implemented on Windows.
    pub fn fs_lchown<CB: Into<crate::FsCB<'static>>>(
        &self,
        path: &str,
        uid: Uid,
        gid: Gid,
        cb: CB,
    ) -> FsReqErrResult {
        self._fs_lchown(path, uid, gid, cb)
    }

    /// Equivalent to lchown(2)
    ///
    /// Note: This functions are not implemented on Windows.
    pub fn fs_lchown_sync(&self, path: &str, uid: Uid, gid: Gid) -> SyncErrResult {
        self._fs_lchown(path, uid, gid, ())
            .and_then(destroy_req_return_boxed_result)
    }
}

/// An iterator using scandir to get a directory listing.
///
/// Note: Unlike scandir(3), this function does not return the “.” and “..” entries.
///
/// Note: On Linux, getting the type of an entry is only supported by some file systems (btrfs,
/// ext2, ext3 and ext4 at the time of this writing), check the getdents(2) man page.
pub struct ScandirIter {
    pub req: FsReq,
}

impl Iterator for ScandirIter {
    type Item = crate::Result<crate::Dirent>;

    fn next(&mut self) -> Option<Self::Item> {
        let mut dirent: uv::uv_dirent_t = unsafe { std::mem::zeroed() };
        let result =
            crate::uvret(unsafe { uv_fs_scandir_next(self.req.inner(), &mut dirent as _) });
        match result {
            Ok(_) => Some(Ok(crate::Dirent::from_inner(
                &dirent as *const uv::uv_dirent_t,
            ))),
            Err(crate::Error::EOF) => None,
            Err(e) => Some(Err(e)),
        }
    }
}

impl std::iter::FusedIterator for ScandirIter {}

impl Drop for ScandirIter {
    fn drop(&mut self) {
        self.req.destroy();
    }
}