rust_script_ext/
fs.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
//! File wrapper with extra context on errors and buffered reading/writing.
use crate::prelude::*;
use std::{
    fmt,
    io::{self, BufWriter, Read, Seek, Write},
    path::{Path, PathBuf},
};

/// Wraps a std [`File`](std::fs::File) which provides extra context for errors and buffered
/// writing.
#[derive(Debug)]
pub struct File {
    inner: BufWriter<std::fs::File>,
    path: PathBuf,
}

impl File {
    /// Opens a file in write-only mode.
    ///
    /// This function will create a file if it does not exist, and will truncate it if it does.
    ///
    /// **If the parent directory does not exist, it will be created.**
    pub fn create(path: impl Into<PathBuf>) -> Result<Self> {
        let path = path.into();
        create_p_dir(&path);
        let inner = std::fs::File::create(&path)
            .into_diagnostic()
            .wrap_err_with(|| format!("failed to create or open file '{}'", path.display()))
            .map(BufWriter::new)?;

        Ok(Self { path, inner })
    }

    /// Opens a file in write-only mode.
    ///
    /// This function will create a file if it does not exist, and will append to it if it does.
    /// **If the parent directory does not exist, it will be created.**
    pub fn append(path: impl Into<PathBuf>) -> Result<Self> {
        let path = path.into();
        create_p_dir(&path);
        let inner = std::fs::File::options()
            .create(true)
            .append(true)
            .open(&path)
            .into_diagnostic()
            .wrap_err_with(|| format!("failed to create or open file '{}'", path.display()))
            .map(BufWriter::new)?;

        Ok(Self { path, inner })
    }

    /// Opens a file in read-only mode.
    pub fn open(path: impl Into<PathBuf>) -> Result<Self> {
        let path = path.into();
        let inner = std::fs::File::open(&path)
            .into_diagnostic()
            .wrap_err_with(|| format!("failed to open file '{}'", path.display()))
            .map(BufWriter::new)?;

        Ok(Self { path, inner })
    }

    /// The file path.
    pub fn path(&self) -> &Path {
        &self.path
    }

    /// Helper for `std::path::Path::new(path).exists()`.
    pub fn exists(path: impl AsRef<Path>) -> bool {
        path.as_ref().exists()
    }

    /// Unwrap into `std::fs::File`, flushing any data to be written.
    pub fn into_std_file(self) -> Result<std::fs::File> {
        self.inner.into_inner().into_diagnostic()
    }

    /// Read entire file contents to byte buffer.
    ///
    /// Note that reading starts from where the cursor is.
    /// Previous reads may have advanced the cursor.
    pub fn read_to_vec(&mut self) -> Result<Vec<u8>> {
        let len = self
            .inner
            .get_ref()
            .metadata()
            .map(|x| x.len())
            .unwrap_or_default() as usize;
        let mut buf = Vec::with_capacity(len);
        self.read_to_end(&mut buf)
            .into_diagnostic()
            .wrap_err_with(|| format!("failed reading bytes from '{}'", self.path.display()))?;
        Ok(buf)
    }

    /// Read entire file contents as a UTF8 encoded string.
    ///
    /// Note that reading starts from where the cursor is.
    /// Previous reads may have advanced the cursor.
    pub fn read_to_string(&mut self) -> Result<String> {
        self.read_to_vec().and_then(|x| {
            String::from_utf8(x).into_diagnostic().wrap_err_with(|| {
                format!(
                    "failed to encode bytes from '{}' as UTF8",
                    self.path.display()
                )
            })
        })
    }

    /// Conveniance function to write bytes to the file.
    pub fn write(&mut self, contents: impl AsRef<[u8]>) -> Result<()> {
        self.write_all(contents.as_ref())
            .into_diagnostic()
            .wrap_err_with(|| format!("failed to write to '{}'", self.path.display()))
    }

    fn wrap_err(&self, err: io::Error) -> io::Error {
        let kind = err.kind();
        io::Error::new(
            kind,
            Error {
                path: self.path.clone(),
                inner: err,
            },
        )
    }
}

fn create_p_dir(path: &Path) {
    if let Some(p) = path.parent() {
        if let Err(e) = std::fs::create_dir_all(p) {
            eprintln!("failed to create parent directory '{}': {e}", p.display());
        }
    }
}

#[derive(Debug)]
struct Error {
    path: PathBuf,
    inner: io::Error,
}

impl std::error::Error for Error {
    fn cause(&self) -> Option<&dyn std::error::Error> {
        Some(&self.inner)
    }

    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        Some(&self.inner)
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "io error with file '{}': {}",
            self.path.display(),
            self.inner
        )
    }
}

impl Read for File {
    fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
        self.inner.get_mut().read(buf).map_err(|e| self.wrap_err(e))
    }

    fn read_exact(&mut self, buf: &mut [u8]) -> io::Result<()> {
        self.inner
            .get_mut()
            .read_exact(buf)
            .map_err(|e| self.wrap_err(e))
    }

    fn read_to_end(&mut self, buf: &mut Vec<u8>) -> io::Result<usize> {
        self.inner
            .get_mut()
            .read_to_end(buf)
            .map_err(|e| self.wrap_err(e))
    }

    fn read_vectored(&mut self, bufs: &mut [io::IoSliceMut<'_>]) -> io::Result<usize> {
        self.inner
            .get_mut()
            .read_vectored(bufs)
            .map_err(|e| self.wrap_err(e))
    }

    fn read_to_string(&mut self, buf: &mut String) -> io::Result<usize> {
        self.inner
            .get_mut()
            .read_to_string(buf)
            .map_err(|e| self.wrap_err(e))
    }
}

impl Write for File {
    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
        self.inner.write(buf).map_err(|e| self.wrap_err(e))
    }

    fn write_vectored(&mut self, bufs: &[io::IoSlice<'_>]) -> io::Result<usize> {
        self.inner
            .write_vectored(bufs)
            .map_err(|e| self.wrap_err(e))
    }

    fn flush(&mut self) -> io::Result<()> {
        self.inner.flush().map_err(|e| self.wrap_err(e))
    }
}

impl Seek for File {
    fn seek(&mut self, pos: io::SeekFrom) -> io::Result<u64> {
        self.inner.seek(pos).map_err(|e| self.wrap_err(e))
    }

    fn stream_position(&mut self) -> io::Result<u64> {
        self.inner.stream_position().map_err(|e| self.wrap_err(e))
    }
}

/// List out the directory entries under `path` which match the **glob** pattern `matching`.
///
/// The return `PathBuf`s will have `path` prefixed.
///
/// # Example
/// ```rust
/// # use rust_script_ext::prelude::*;
/// # use std::path::PathBuf;
/// let ps = ls("src", "*.rs").unwrap();
/// assert_eq!(ps, vec![
///     PathBuf::from("src/args.rs"),
///     PathBuf::from("src/cmd.rs"),
///     PathBuf::from("src/fs.rs"),
///     PathBuf::from("src/io.rs"),
///     PathBuf::from("src/lib.rs"),
/// ]);
/// ```
pub fn ls<P, M>(path: P, matching: M) -> Result<Vec<PathBuf>>
where
    P: AsRef<Path>,
    M: AsRef<str>,
{
    let pat = matching.as_ref();
    let glob = globset::Glob::new(pat)
        .into_diagnostic()
        .wrap_err_with(|| format!("invalid glob pattern: {pat}"))?
        .compile_matcher();

    let prefix = path.as_ref();
    let rdr = std::fs::read_dir(prefix)
        .into_diagnostic()
        .wrap_err_with(|| {
            format!(
                "failed to read directory: {}",
                prefix
                    .canonicalize()
                    .unwrap_or_else(|_| prefix.to_path_buf())
                    .display()
            )
        })?;

    let mut v = Vec::new();
    for e in rdr {
        let e = e.into_diagnostic().wrap_err_with(|| {
            format!(
                "failed to read directory: {}",
                prefix
                    .canonicalize()
                    .unwrap_or_else(|_| prefix.to_path_buf())
                    .display()
            )
        })?;

        let path = e.path();

        if glob.is_match(path.strip_prefix(prefix).expect("path prefix matches")) {
            v.push(path);
        }
    }

    v.sort_unstable();

    Ok(v)
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn file_not_found() {
        let x = File::open("wont-exist.txt").unwrap_err().to_string();
        assert_eq!(&x, "failed to open file 'wont-exist.txt'");
    }
}