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
// Copyright (c) 2023 Richard Cook
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
use crate::error::HasOtherError;
use anyhow::Error as AnyhowError;
use std::error::Error as StdError;
use std::fmt::{Debug, Display};
use std::fs::{create_dir_all, write, File, OpenOptions};
use std::io::{Error as IOError, Write};
use std::path::{Path, PathBuf};
use std::result::Result as StdResult;
use thiserror::Error;

#[allow(unused)]
#[derive(Debug, PartialEq)]
#[non_exhaustive]
pub enum FileWriteErrorKind {
    AlreadyExists,
    Other,
}

#[derive(Debug, Error)]
#[error(transparent)]
pub struct FileWriteError(#[from] FileWriteErrorImpl);

impl FileWriteError {
    #[allow(unused)]
    #[must_use]
    pub const fn kind(&self) -> FileWriteErrorKind {
        match self.0 {
            FileWriteErrorImpl::AlreadyExists(_) => FileWriteErrorKind::AlreadyExists,
            _ => FileWriteErrorKind::Other,
        }
    }

    #[allow(unused)]
    #[must_use]
    pub fn is_already_exists(&self) -> bool {
        self.kind() == FileWriteErrorKind::AlreadyExists
    }

    #[allow(unused)]
    #[must_use]
    pub fn is_other(&self) -> bool {
        self.kind() == FileWriteErrorKind::Other
    }

    fn other<E>(e: E) -> Self
    where
        E: StdError + Send + Sync + 'static,
    {
        Self(FileWriteErrorImpl::Other(AnyhowError::new(e)))
    }

    fn convert(e: IOError, path: &Path) -> Self {
        use std::io::ErrorKind::*;
        match e.kind() {
            AlreadyExists => Self(FileWriteErrorImpl::AlreadyExists(path.to_path_buf())),
            _ => Self::other(e),
        }
    }
}

impl HasOtherError for FileWriteError {
    fn is_other(&self) -> bool {
        self.is_other()
    }

    fn downcast_other_ref<E>(&self) -> Option<&E>
    where
        E: Display + Debug + Send + Sync + 'static,
    {
        if let FileWriteErrorImpl::Other(ref inner) = self.0 {
            inner.downcast_ref::<E>()
        } else {
            None
        }
    }
}

#[derive(Debug, Error)]
enum FileWriteErrorImpl {
    #[error("File {0} already exists")]
    AlreadyExists(PathBuf),
    #[error(transparent)]
    Other(AnyhowError),
}

#[allow(unused)]
pub fn safe_create_file(path: &Path, overwrite: bool) -> StdResult<File, FileWriteError> {
    ensure_dir(path)?;

    let mut options = OpenOptions::new();
    options.write(true);
    if overwrite {
        options.create(true);
    } else {
        options.create_new(true);
    }

    options
        .open(path)
        .map_err(|e| FileWriteError::convert(e, path))
}

#[allow(unused)]
pub fn safe_write_file<C>(
    path: &Path,
    contents: C,
    overwrite: bool,
) -> StdResult<(), FileWriteError>
where
    C: AsRef<[u8]>,
{
    ensure_dir(path)?;

    if overwrite {
        write(path, contents).map_err(|e| FileWriteError::convert(e, path))?;
    } else {
        let mut file = safe_create_file(path, overwrite)?;
        file.write_all(contents.as_ref())
            .map_err(|e| FileWriteError::convert(e, path))?;
    }

    Ok(())
}

fn ensure_dir(file_path: &Path) -> StdResult<(), FileWriteError> {
    let mut dir = PathBuf::new();
    dir.push(file_path);
    dir.pop();
    create_dir_all(&dir).map_err(FileWriteError::other)?;
    Ok(())
}

#[cfg(test)]
mod tests {
    use super::{safe_create_file, safe_write_file, FileWriteErrorKind};
    use anyhow::Result;
    use std::fs::{read_to_string, write};
    use std::io::Write;
    use tempdir::TempDir;

    #[test]
    fn test_safe_create_file_no_overwrite_succeeds() -> Result<()> {
        // Arrange
        let temp_dir = TempDir::new("joatmon-test")?;
        let path = temp_dir.path().join("file.txt");

        // Act
        let mut file = safe_create_file(&path, false)?;
        file.write_all(b"hello-world")?;

        // Assert
        assert_eq!("hello-world", read_to_string(&path)?);
        Ok(())
    }

    #[test]
    fn test_safe_create_file_overwrite_succeeds() -> Result<()> {
        // Arrange
        let temp_dir = TempDir::new("joatmon-test")?;
        let path = temp_dir.path().join("file.txt");

        // Act
        let mut file = safe_create_file(&path, true)?;
        file.write_all(b"hello-world")?;

        // Assert
        assert_eq!("hello-world", read_to_string(&path)?);
        Ok(())
    }

    #[test]
    fn test_safe_create_file_exists_no_overwrite_fails() -> Result<()> {
        // Arrange
        let temp_dir = TempDir::new("joatmon-test")?;
        let path = temp_dir.path().join("file.txt");
        write(&path, "hello-world")?;

        // Act
        let e = match safe_create_file(&path, false) {
            Ok(_) => panic!("safe_create_file must fail"),
            Err(e) => e,
        };

        // Assert
        assert_eq!(FileWriteErrorKind::AlreadyExists, e.kind());
        assert!(e.is_already_exists());
        assert!(!e.is_other());
        let message = format!("{e}");
        assert!(message.contains(path.to_str().expect("must be valid string")));
        assert_eq!("hello-world", read_to_string(&path)?);
        Ok(())
    }

    #[test]
    fn test_safe_create_file_exists_overwrite_succeeds() -> Result<()> {
        // Arrange
        let temp_dir = TempDir::new("joatmon-test")?;
        let path = temp_dir.path().join("file.txt");
        write(&path, "hello-world")?;

        // Act
        let mut file = safe_create_file(&path, true)?;
        file.write_all(b"something-else")?;

        // Assert
        assert_eq!("something-else", read_to_string(&path)?);
        Ok(())
    }

    #[test]
    fn test_safe_write_file_no_overwrite_succeeds() -> Result<()> {
        // Arrange
        let temp_dir = TempDir::new("joatmon-test")?;
        let path = temp_dir.path().join("file.txt");

        // Act
        safe_write_file(&path, "hello-world", false)?;

        // Assert
        assert_eq!("hello-world", read_to_string(&path)?);
        Ok(())
    }

    #[test]
    fn test_safe_write_file_overwrite_succeeds() -> Result<()> {
        // Arrange
        let temp_dir = TempDir::new("joatmon-test")?;
        let path = temp_dir.path().join("file.txt");

        // Act
        safe_write_file(&path, "hello-world", true)?;

        // Assert
        assert_eq!("hello-world", read_to_string(&path)?);
        Ok(())
    }

    #[test]
    fn test_safe_write_file_exists_no_overwrite_fails() -> Result<()> {
        // Arrange
        let temp_dir = TempDir::new("joatmon-test")?;
        let path = temp_dir.path().join("file.txt");
        write(&path, "hello-world")?;

        // Act
        let e = match safe_write_file(&path, "something-else", false) {
            Ok(_) => panic!("safe_write_file must fail"),
            Err(e) => e,
        };

        // Assert
        assert_eq!(FileWriteErrorKind::AlreadyExists, e.kind());
        assert!(e.is_already_exists());
        assert!(!e.is_other());
        let message = format!("{e}");
        assert!(message.contains(path.to_str().expect("must be valid string")));
        assert_eq!("hello-world", read_to_string(&path)?);
        Ok(())
    }

    #[test]
    fn test_safe_write_file_exists_overwrite_succeeds() -> Result<()> {
        // Arrange
        let temp_dir = TempDir::new("joatmon-test")?;
        let path = temp_dir.path().join("file.txt");
        write(&path, "hello-world")?;

        // Act
        safe_write_file(&path, "something-else", true)?;

        // Assert
        assert_eq!("something-else", read_to_string(&path)?);
        Ok(())
    }
}