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
use std::{io, path::Path};

pub struct Socket(String);

impl Socket {
    pub fn new(socket: String) -> Self {
        Socket(socket)
    }

    pub fn value(&self) -> String {
        self.0.clone()
    }

    pub fn as_str(&self) -> &str {
        self.0.as_str()
    }

    pub fn get_path(&self) -> &Path {
        std::path::Path::new(&self.0)
    }

    /// Safely removes file pointed out by a path.
    ///
    /// In practice this tries to remove the file, and if
    /// the file does not exist, it ignores it, and propagates
    /// any other error.
    pub fn remove_file(&self) -> io::Result<()> {
        let path = self.get_path();
        match std::fs::remove_file(path) {
            Err(ref e) if e.kind() == io::ErrorKind::NotFound => Ok(()),
            result => result,
        }
    }
}