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
use crate::{DirView, ViewKind};
use cap_std::fs::{DirEntry, File, FileType, Metadata, OpenOptions};
#[cfg(not(windows))]
use rustix::fs::DirEntryExt;
use std::ffi::OsString;
use std::{fmt, io};
pub struct DirEntryView {
pub(crate) entry: DirEntry,
pub(crate) view_kind: ViewKind,
}
impl DirEntryView {
#[inline]
pub fn open(&self) -> io::Result<File> {
self.entry.open()
}
#[inline]
pub fn open_with(&self, options: &OpenOptions) -> io::Result<File> {
let mut options = options.clone();
match self.view_kind {
ViewKind::Full => {}
ViewKind::Readonly => {
options.append(false);
options.truncate(false);
options.write(false);
options.create(false);
options.create_new(false);
}
}
self.entry.open_with(&options)
}
#[inline]
pub fn open_dir(&self) -> io::Result<DirView> {
Ok(DirView {
dir: self.entry.open_dir()?,
view_kind: self.view_kind,
})
}
#[inline]
pub fn remove_file(&self) -> io::Result<()> {
self.check_mutation()?;
self.entry.remove_file()
}
#[inline]
pub fn remove_dir(&self) -> io::Result<()> {
self.check_mutation()?;
self.entry.remove_dir()
}
#[inline]
pub fn metadata(&self) -> io::Result<Metadata> {
self.entry.metadata()
}
#[inline]
pub fn file_type(&self) -> io::Result<FileType> {
self.entry.file_type()
}
#[inline]
pub fn file_name(&self) -> OsString {
self.entry.file_name()
}
fn check_mutation(&self) -> io::Result<()> {
match self.view_kind {
ViewKind::Full => Ok(()),
ViewKind::Readonly => Err(Self::readonly()),
}
}
fn readonly() -> io::Error {
io::Error::new(
io::ErrorKind::PermissionDenied,
"attempt to modify a directory tree through a read-only `DirView`",
)
}
}
#[cfg(not(windows))]
impl DirEntryExt for DirEntryView {
#[inline]
fn ino(&self) -> u64 {
self.entry.ino()
}
}
#[cfg(windows)]
#[doc(hidden)]
impl cap_primitives::fs::_WindowsDirEntryExt for DirEntryView {
#[inline]
fn full_metadata(&self) -> io::Result<Metadata> {
cap_primitives::fs::_WindowsDirEntryExt::full_metadata(&self.entry)
}
}
impl fmt::Debug for DirEntryView {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.entry.fmt(f)
}
}
#[cfg(feature = "cap-fs-ext")]
impl cap_fs_ext::DirEntryExt for DirEntryView {
fn full_metadata(&self) -> io::Result<Metadata> {
cap_fs_ext::DirEntryExt::full_metadata(&self.entry)
}
}