-
Notifications
You must be signed in to change notification settings - Fork 825
/
file.rs
1393 lines (1231 loc) · 44.7 KB
/
file.rs
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
//! This module contains the `FileHandle` and `File`
//! implementations. They aren't exposed to the public API. Only
//! `FileHandle` can be used through the `VirtualFile` trait object.
use tokio::io::AsyncRead;
use tokio::io::{AsyncSeek, AsyncWrite};
use super::*;
use crate::{FsError, Result, VirtualFile};
use std::borrow::Cow;
use std::cmp;
use std::convert::TryInto;
use std::fmt;
use std::io;
use std::pin::Pin;
use std::task::{Context, Poll};
/// A file handle. The file system doesn't return the [`File`] type
/// directly, but rather this `FileHandle` type, which contains the
/// inode, the flags, and (a light copy of) the filesystem. For each
/// operations, it is checked that the permissions allow the
/// operations to be executed, and then it is checked that the file
/// still exists in the file system. After that, the operation is
/// delegated to the file itself.
pub(super) struct FileHandle {
inode: Inode,
filesystem: FileSystem,
readable: bool,
writable: bool,
append_mode: bool,
cursor: u64,
arc_file: Option<Result<Box<dyn VirtualFile + Send + Sync + 'static>>>,
}
impl Clone for FileHandle {
fn clone(&self) -> Self {
Self {
inode: self.inode,
filesystem: self.filesystem.clone(),
readable: self.readable,
writable: self.writable,
append_mode: self.append_mode,
cursor: self.cursor,
arc_file: None,
}
}
}
impl FileHandle {
pub(super) fn new(
inode: Inode,
filesystem: FileSystem,
readable: bool,
writable: bool,
append_mode: bool,
cursor: u64,
) -> Self {
Self {
inode,
filesystem,
readable,
writable,
append_mode,
cursor,
arc_file: None,
}
}
fn lazy_load_arc_file_mut(&mut self) -> Result<&mut dyn VirtualFile> {
if self.arc_file.is_none() {
let fs = match self.filesystem.inner.read() {
Ok(fs) => fs,
_ => return Err(FsError::EntryNotFound),
};
let inode = fs.storage.get(self.inode);
match inode {
Some(Node::ArcFile(node)) => {
self.arc_file.replace(
node.fs
.new_open_options()
.read(self.readable)
.write(self.writable)
.append(self.append_mode)
.open(node.path.as_path()),
);
}
_ => return Err(FsError::EntryNotFound),
}
}
Ok(self
.arc_file
.as_mut()
.unwrap()
.as_mut()
.map_err(|err| *err)?
.as_mut())
}
}
impl VirtualFile for FileHandle {
fn last_accessed(&self) -> u64 {
let fs = match self.filesystem.inner.read() {
Ok(fs) => fs,
_ => return 0,
};
let inode = fs.storage.get(self.inode);
match inode {
Some(node) => node.metadata().accessed,
_ => 0,
}
}
fn last_modified(&self) -> u64 {
let fs = match self.filesystem.inner.read() {
Ok(fs) => fs,
_ => return 0,
};
let inode = fs.storage.get(self.inode);
match inode {
Some(node) => node.metadata().modified,
_ => 0,
}
}
fn created_time(&self) -> u64 {
let fs = match self.filesystem.inner.read() {
Ok(fs) => fs,
_ => return 0,
};
let inode = fs.storage.get(self.inode);
let node = match inode {
Some(node) => node,
_ => return 0,
};
node.metadata().created
}
fn size(&self) -> u64 {
let fs = match self.filesystem.inner.read() {
Ok(fs) => fs,
_ => return 0,
};
let inode = fs.storage.get(self.inode);
match inode {
Some(Node::File(node)) => node.file.len().try_into().unwrap_or(0),
Some(Node::ReadOnlyFile(node)) => node.file.len().try_into().unwrap_or(0),
Some(Node::CustomFile(node)) => {
let file = node.file.lock().unwrap();
file.size()
}
Some(Node::ArcFile(node)) => match self.arc_file.as_ref() {
Some(file) => file.as_ref().map(|file| file.size()).unwrap_or(0),
None => node
.fs
.new_open_options()
.read(self.readable)
.write(self.writable)
.append(self.append_mode)
.open(node.path.as_path())
.map(|file| file.size())
.unwrap_or(0),
},
_ => 0,
}
}
fn set_len(&mut self, new_size: u64) -> Result<()> {
let mut fs = self.filesystem.inner.write().map_err(|_| FsError::Lock)?;
let inode = fs.storage.get_mut(self.inode);
match inode {
Some(Node::File(FileNode { file, metadata, .. })) => {
file.buffer
.resize(new_size.try_into().map_err(|_| FsError::UnknownError)?, 0);
metadata.len = new_size;
}
Some(Node::CustomFile(node)) => {
let mut file = node.file.lock().unwrap();
file.set_len(new_size)?;
node.metadata.len = new_size;
}
Some(Node::ReadOnlyFile { .. }) => return Err(FsError::PermissionDenied),
Some(Node::ArcFile { .. }) => {
drop(fs);
self.lazy_load_arc_file_mut()
.map(|file| file.set_len(new_size))??;
}
_ => return Err(FsError::NotAFile),
}
Ok(())
}
fn unlink(&mut self) -> Result<()> {
let (inode_of_parent, position, inode_of_file) = {
// Read lock.
let fs = self.filesystem.inner.read().map_err(|_| FsError::Lock)?;
// The inode of the file.
let inode_of_file = self.inode;
// Find the position of the file in the parent, and the
// inode of the parent.
let (position, inode_of_parent) = fs
.storage
.iter()
.find_map(|(inode_of_parent, node)| match node {
Node::Directory(DirectoryNode { children, .. }) => {
children.iter().enumerate().find_map(|(nth, inode)| {
if inode == &inode_of_file {
Some((nth, inode_of_parent))
} else {
None
}
})
}
_ => None,
})
.ok_or(FsError::BaseNotDirectory)?;
(inode_of_parent, position, inode_of_file)
};
{
// Write lock.
let mut fs = self.filesystem.inner.write().map_err(|_| FsError::Lock)?;
// Remove the file from the storage.
fs.storage.remove(inode_of_file);
// Remove the child from the parent directory.
fs.remove_child_from_node(inode_of_parent, position)?;
}
Ok(())
}
fn get_special_fd(&self) -> Option<u32> {
let fs = match self.filesystem.inner.read() {
Ok(a) => a,
Err(_) => {
return None;
}
};
let inode = fs.storage.get(self.inode);
match inode {
Some(Node::CustomFile(node)) => {
let file = node.file.lock().unwrap();
file.get_special_fd()
}
Some(Node::ArcFile(node)) => match self.arc_file.as_ref() {
Some(file) => file
.as_ref()
.map(|file| file.get_special_fd())
.unwrap_or(None),
None => node
.fs
.new_open_options()
.read(self.readable)
.write(self.writable)
.append(self.append_mode)
.open(node.path.as_path())
.map(|file| file.get_special_fd())
.unwrap_or(None),
},
_ => None,
}
}
fn poll_read_ready(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<usize>> {
if !self.readable {
return Poll::Ready(Err(io::Error::new(
io::ErrorKind::PermissionDenied,
format!(
"the file (inode `{}) doesn't have the `read` permission",
self.inode
),
)));
}
let mut fs =
self.filesystem.inner.write().map_err(|_| {
io::Error::new(io::ErrorKind::Other, "failed to acquire a write lock")
})?;
let inode = fs.storage.get_mut(self.inode);
match inode {
Some(Node::File(node)) => {
let remaining = node.file.buffer.len() - (self.cursor as usize);
Poll::Ready(Ok(remaining))
}
Some(Node::ReadOnlyFile(node)) => {
let remaining = node.file.buffer.len() - (self.cursor as usize);
Poll::Ready(Ok(remaining))
}
Some(Node::CustomFile(node)) => {
let mut file = node.file.lock().unwrap();
let file = Pin::new(file.as_mut());
file.poll_read_ready(cx)
}
Some(Node::ArcFile(_)) => {
drop(fs);
match self.lazy_load_arc_file_mut() {
Ok(file) => {
let file = Pin::new(file);
file.poll_read_ready(cx)
}
Err(_) => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
}
_ => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
}
fn poll_write_ready(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<usize>> {
if !self.readable {
return Poll::Ready(Err(io::Error::new(
io::ErrorKind::PermissionDenied,
format!(
"the file (inode `{}) doesn't have the `read` permission",
self.inode
),
)));
}
let mut fs =
self.filesystem.inner.write().map_err(|_| {
io::Error::new(io::ErrorKind::Other, "failed to acquire a write lock")
})?;
let inode = fs.storage.get_mut(self.inode);
match inode {
Some(Node::File(_)) => Poll::Ready(Ok(8192)),
Some(Node::ReadOnlyFile(_)) => Poll::Ready(Ok(0)),
Some(Node::CustomFile(node)) => {
let mut file = node.file.lock().unwrap();
let file = Pin::new(file.as_mut());
file.poll_read_ready(cx)
}
Some(Node::ArcFile(_)) => {
drop(fs);
match self.lazy_load_arc_file_mut() {
Ok(file) => {
let file = Pin::new(file);
file.poll_read_ready(cx)
}
Err(_) => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
}
_ => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
}
}
#[cfg(test)]
mod test_virtual_file {
use crate::{mem_fs::*, FileSystem as FS};
use std::thread::sleep;
use std::time::Duration;
macro_rules! path {
($path:expr) => {
std::path::Path::new($path)
};
}
#[test]
fn test_last_accessed() {
let fs = FileSystem::default();
let file = fs
.new_open_options()
.write(true)
.create_new(true)
.open(path!("/foo.txt"))
.expect("failed to create a new file");
let last_accessed_time = file.last_accessed();
assert!(last_accessed_time > 0, "last accessed time is not zero");
sleep(Duration::from_secs(3));
let file = fs
.new_open_options()
.read(true)
.open(path!("/foo.txt"))
.expect("failed to open a file");
let next_last_accessed_time = file.last_accessed();
assert!(
next_last_accessed_time > last_accessed_time,
"the last accessed time is updated"
);
}
#[test]
fn test_last_modified() {
let fs = FileSystem::default();
let file = fs
.new_open_options()
.write(true)
.create_new(true)
.open(path!("/foo.txt"))
.expect("failed to create a new file");
assert!(file.last_modified() > 0, "last modified time is not zero");
}
#[test]
fn test_created_time() {
let fs = FileSystem::default();
let file = fs
.new_open_options()
.write(true)
.create_new(true)
.open(path!("/foo.txt"))
.expect("failed to create a new file");
let created_time = file.created_time();
assert!(created_time > 0, "created time is not zero");
let file = fs
.new_open_options()
.read(true)
.open(path!("/foo.txt"))
.expect("failed to create a new file");
let next_created_time = file.created_time();
assert_eq!(
next_created_time, created_time,
"created time stays constant"
);
}
#[test]
fn test_size() {
let fs = FileSystem::default();
let file = fs
.new_open_options()
.write(true)
.create_new(true)
.open(path!("/foo.txt"))
.expect("failed to create a new file");
assert_eq!(file.size(), 0, "new file is empty");
}
#[test]
fn test_set_len() {
let fs = FileSystem::default();
let mut file = fs
.new_open_options()
.write(true)
.create_new(true)
.open(path!("/foo.txt"))
.expect("failed to create a new file");
assert!(matches!(file.set_len(7), Ok(())), "setting a new length");
assert_eq!(file.size(), 7, "file has a new length");
}
#[test]
fn test_unlink() {
let fs = FileSystem::default();
let mut file = fs
.new_open_options()
.write(true)
.create_new(true)
.open(path!("/foo.txt"))
.expect("failed to create a new file");
{
let fs_inner = fs.inner.read().unwrap();
assert_eq!(fs_inner.storage.len(), 2, "storage has the new file");
assert!(
matches!(
fs_inner.storage.get(ROOT_INODE),
Some(Node::Directory(DirectoryNode {
inode: ROOT_INODE,
name,
children,
..
})) if name == "/" && children == &[1]
),
"`/` contains `foo.txt`",
);
assert!(
matches!(
fs_inner.storage.get(1),
Some(Node::File(FileNode {
inode: 1,
name,
..
})) if name == "foo.txt"
),
"`foo.txt` exists and is a file",
);
}
assert_eq!(file.unlink(), Ok(()), "unlinking the file");
{
let fs_inner = fs.inner.read().unwrap();
assert_eq!(
fs_inner.storage.len(),
1,
"storage no longer has the new file"
);
assert!(
matches!(
fs_inner.storage.get(ROOT_INODE),
Some(Node::Directory(DirectoryNode {
inode: ROOT_INODE,
name,
children,
..
})) if name == "/" && children.is_empty()
),
"`/` is empty",
);
}
}
}
impl AsyncRead for FileHandle {
fn poll_read(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut tokio::io::ReadBuf<'_>,
) -> Poll<io::Result<()>> {
if !self.readable {
return Poll::Ready(Err(io::Error::new(
io::ErrorKind::PermissionDenied,
format!(
"the file (inode `{}) doesn't have the `read` permission",
self.inode
),
)));
}
let mut cursor = self.cursor;
let ret = {
let mut fs = self.filesystem.inner.write().map_err(|_| {
io::Error::new(io::ErrorKind::Other, "failed to acquire a write lock")
})?;
let inode = fs.storage.get_mut(self.inode);
match inode {
Some(Node::File(node)) => {
let read = unsafe {
node.file
.read(std::mem::transmute(buf.unfilled_mut()), &mut cursor)
};
if let Ok(read) = &read {
unsafe { buf.assume_init(*read) };
buf.advance(*read);
}
Poll::Ready(read.map(|_| ()))
}
Some(Node::ReadOnlyFile(node)) => {
let read = unsafe {
node.file
.read(std::mem::transmute(buf.unfilled_mut()), &mut cursor)
};
if let Ok(read) = &read {
unsafe { buf.assume_init(*read) };
buf.advance(*read);
}
Poll::Ready(read.map(|_| ()))
}
Some(Node::CustomFile(node)) => {
let mut file = node.file.lock().unwrap();
let file = Pin::new(file.as_mut());
file.poll_read(cx, buf)
}
Some(Node::ArcFile(_)) => {
drop(fs);
match self.lazy_load_arc_file_mut() {
Ok(file) => {
let file = Pin::new(file);
file.poll_read(cx, buf)
}
Err(_) => {
return Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
)))
}
}
}
_ => {
return Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
)));
}
}
};
self.cursor = cursor;
ret
}
}
impl AsyncSeek for FileHandle {
fn start_seek(mut self: Pin<&mut Self>, position: io::SeekFrom) -> io::Result<()> {
if self.append_mode {
return Ok(());
}
let mut cursor = self.cursor;
let ret = {
let mut fs = self.filesystem.inner.write().map_err(|_| {
io::Error::new(io::ErrorKind::Other, "failed to acquire a write lock")
})?;
let inode = fs.storage.get_mut(self.inode);
match inode {
Some(Node::File(node)) => {
node.file.seek(position, &mut cursor)?;
Ok(())
}
Some(Node::ReadOnlyFile(node)) => {
node.file.seek(position, &mut cursor)?;
Ok(())
}
Some(Node::CustomFile(node)) => {
let mut file = node.file.lock().unwrap();
let file = Pin::new(file.as_mut());
file.start_seek(position)
}
Some(Node::ArcFile(_)) => {
drop(fs);
match self.lazy_load_arc_file_mut() {
Ok(file) => {
let file = Pin::new(file);
file.start_seek(position)
}
Err(_) => {
return Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
));
}
}
}
_ => {
return Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
));
}
}
};
self.cursor = cursor;
ret
}
fn poll_complete(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<u64>> {
// In `append` mode, it's not possible to seek in the file. In
// [`open(2)`](https://man7.org/linux/man-pages/man2/open.2.html),
// the `O_APPEND` option describes this behavior well:
//
// > Before each write(2), the file offset is positioned at
// > the end of the file, as if with lseek(2). The
// > modification of the file offset and the write operation
// > are performed as a single atomic step.
// >
// > O_APPEND may lead to corrupted files on NFS filesystems
// > if more than one process appends data to a file at once.
// > This is because NFS does not support appending to a file,
// > so the client kernel has to simulate it, which can't be
// > done without a race condition.
if self.append_mode {
return Poll::Ready(Ok(0));
}
let mut fs =
self.filesystem.inner.write().map_err(|_| {
io::Error::new(io::ErrorKind::Other, "failed to acquire a write lock")
})?;
let inode = fs.storage.get_mut(self.inode);
match inode {
Some(Node::File { .. }) => Poll::Ready(Ok(self.cursor)),
Some(Node::ReadOnlyFile { .. }) => Poll::Ready(Ok(self.cursor)),
Some(Node::CustomFile(node)) => {
let mut file = node.file.lock().unwrap();
let file = Pin::new(file.as_mut());
file.poll_complete(cx)
}
Some(Node::ArcFile { .. }) => {
drop(fs);
match self.lazy_load_arc_file_mut() {
Ok(file) => {
let file = Pin::new(file);
file.poll_complete(cx)
}
Err(_) => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
}
_ => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
}
}
impl AsyncWrite for FileHandle {
fn poll_write(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8],
) -> Poll<io::Result<usize>> {
if !self.writable {
return Poll::Ready(Err(io::Error::new(
io::ErrorKind::PermissionDenied,
format!(
"the file (inode `{}) doesn't have the `write` permission",
self.inode
),
)));
}
let mut cursor = self.cursor;
let bytes_written = {
let mut fs = self.filesystem.inner.write().map_err(|_| {
io::Error::new(io::ErrorKind::Other, "failed to acquire a write lock")
})?;
let inode = fs.storage.get_mut(self.inode);
match inode {
Some(Node::File(node)) => {
let bytes_written = node.file.write(buf, &mut cursor)?;
node.metadata.len = node.file.len().try_into().unwrap();
bytes_written
}
Some(Node::ReadOnlyFile(node)) => {
let bytes_written = node.file.write(buf, &mut cursor)?;
node.metadata.len = node.file.len().try_into().unwrap();
bytes_written
}
Some(Node::CustomFile(node)) => {
let mut guard = node.file.lock().unwrap();
let file = Pin::new(guard.as_mut());
if let Err(err) = file.start_seek(io::SeekFrom::Start(self.cursor as u64)) {
return Poll::Ready(Err(err));
}
let file = Pin::new(guard.as_mut());
let _ = file.poll_complete(cx);
let file = Pin::new(guard.as_mut());
let bytes_written = match file.poll_write(cx, buf) {
Poll::Ready(Ok(a)) => a,
Poll::Ready(Err(err)) => return Poll::Ready(Err(err)),
Poll::Pending => return Poll::Pending,
};
cursor += bytes_written as u64;
node.metadata.len = guard.size();
bytes_written
}
Some(Node::ArcFile(_)) => {
drop(fs);
match self.lazy_load_arc_file_mut() {
Ok(file) => {
let file = Pin::new(file);
return file.poll_write(cx, buf);
}
Err(_) => {
return Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
)))
}
}
}
_ => {
return Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
)))
}
}
};
self.cursor = cursor;
Poll::Ready(Ok(bytes_written))
}
fn poll_write_vectored(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[io::IoSlice<'_>],
) -> Poll<io::Result<usize>> {
let mut cursor = self.cursor;
let ret = {
let mut fs = self.filesystem.inner.write().map_err(|_| {
io::Error::new(io::ErrorKind::Other, "failed to acquire a write lock")
})?;
let inode = fs.storage.get_mut(self.inode);
match inode {
Some(Node::File(node)) => {
let buf = bufs
.iter()
.find(|b| !b.is_empty())
.map_or(&[][..], |b| &**b);
let bytes_written = node.file.write(buf, &mut cursor)?;
node.metadata.len = node.file.buffer.len() as u64;
Poll::Ready(Ok(bytes_written))
}
Some(Node::ReadOnlyFile(node)) => {
let buf = bufs
.iter()
.find(|b| !b.is_empty())
.map_or(&[][..], |b| &**b);
let bytes_written = node.file.write(buf, &mut cursor)?;
node.metadata.len = node.file.buffer.len() as u64;
Poll::Ready(Ok(bytes_written))
}
Some(Node::CustomFile(node)) => {
let mut file = node.file.lock().unwrap();
let file = Pin::new(file.as_mut());
file.poll_write_vectored(cx, bufs)
}
Some(Node::ArcFile(_)) => {
drop(fs);
match self.lazy_load_arc_file_mut() {
Ok(file) => {
let file = Pin::new(file);
file.poll_write_vectored(cx, bufs)
}
Err(_) => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
}
_ => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
};
self.cursor = cursor;
ret
}
fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
let mut fs =
self.filesystem.inner.write().map_err(|_| {
io::Error::new(io::ErrorKind::Other, "failed to acquire a write lock")
})?;
let inode = fs.storage.get_mut(self.inode);
match inode {
Some(Node::File(node)) => Poll::Ready(node.file.flush()),
Some(Node::ReadOnlyFile(node)) => Poll::Ready(node.file.flush()),
Some(Node::CustomFile(node)) => {
let mut file = node.file.lock().unwrap();
let file = Pin::new(file.as_mut());
file.poll_flush(cx)
}
Some(Node::ArcFile { .. }) => {
drop(fs);
match self.lazy_load_arc_file_mut() {
Ok(file) => {
let file = Pin::new(file);
file.poll_flush(cx)
}
Err(_) => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
}
_ => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
}
fn poll_shutdown(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
let mut fs =
self.filesystem.inner.write().map_err(|_| {
io::Error::new(io::ErrorKind::Other, "failed to acquire a write lock")
})?;
let inode = fs.storage.get_mut(self.inode);
match inode {
Some(Node::File { .. }) => Poll::Ready(Ok(())),
Some(Node::ReadOnlyFile { .. }) => Poll::Ready(Ok(())),
Some(Node::CustomFile(node)) => {
let mut file = node.file.lock().unwrap();
let file = Pin::new(file.as_mut());
file.poll_shutdown(cx)
}
Some(Node::ArcFile { .. }) => {
drop(fs);
match self.lazy_load_arc_file_mut() {
Ok(file) => {
let file = Pin::new(file);
file.poll_shutdown(cx)
}
Err(_) => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
}
_ => Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotFound,
format!("inode `{}` doesn't match a file", self.inode),
))),
}
}
fn is_write_vectored(&self) -> bool {
let mut fs = match self.filesystem.inner.write() {
Ok(a) => a,
Err(_) => return false,
};
let inode = fs.storage.get_mut(self.inode);
match inode {
Some(Node::File { .. }) => false,
Some(Node::ReadOnlyFile { .. }) => false,
Some(Node::CustomFile(node)) => {
let file = node.file.lock().unwrap();
file.is_write_vectored()
}
Some(Node::ArcFile { .. }) => {
drop(fs);
match self.arc_file.as_ref() {
Some(Ok(file)) => file.is_write_vectored(),
_ => false,
}
}
_ => false,
}
}
}
#[cfg(test)]
mod test_read_write_seek {
use tokio::io::{AsyncReadExt, AsyncSeekExt, AsyncWriteExt};
use crate::{mem_fs::*, FileSystem as FS};
use std::io;
macro_rules! path {
($path:expr) => {
std::path::Path::new($path)
};
}
#[tokio::test]
async fn test_writing_at_various_positions() {
let fs = FileSystem::default();
let mut file = fs
.new_open_options()
.read(true)
.write(true)
.create_new(true)
.open(path!("/foo.txt"))
.expect("failed to create a new file");