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
use relative_path::RelativePathBuf;
use serde::{Deserialize, Serialize};
use std::{
    fs, io,
    os::unix,
    path::{Path, PathBuf},
};

use crate::{GID, UID};

/// Calculates the [RelativePathBuf] between two [Path].
///
/// # Example
///
/// ```no_run
/// use hua_core::extra::path;
/// use relative_path::RelativePathBuf;
///
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let root = "/a/b/c/d";
/// let path = "c/d/e/f";
///
/// let relative = path::relative_path_between(root, path)?;
///
/// assert_eq!(relative, RelativePathBuf::from("e/f"));
/// # Ok(())
/// # }
pub fn relative_path_between<P: AsRef<Path>, Q: AsRef<Path>>(
    root: P,
    path: Q,
) -> io::Result<RelativePathBuf> {
    use io::{Error, ErrorKind};

    let absolute = path.as_ref().canonicalize()?;
    let relative = absolute
        .strip_prefix(root)
        .map_err(|err| Error::new(ErrorKind::Other, err))?;
    RelativePathBuf::from_path(relative).map_err(|err| Error::new(ErrorKind::Other, err))
}

#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct ComponentPathBuf {
    pub binary: PathBuf,
    pub config: PathBuf,
    pub library: PathBuf,
    pub share: PathBuf,
}

impl ComponentPathBuf {
    pub fn from_path<P: AsRef<Path>>(path: P) -> Self {
        let path = path.as_ref();
        Self {
            binary: path.join("bin"),
            config: path.join("cfg"),
            library: path.join("lib"),
            share: path.join("share"),
        }
    }

    pub fn global() -> Self {
        Self {
            binary: "/usr/bin".into(),
            config: "/etc".into(),
            library: "/usr/lib".into(),
            share: "/usr/share".into(),
        }
    }

    pub fn new<T, U, V, W>(binary: T, config: U, library: V, share: W) -> Self
    where
        T: AsRef<Path>,
        U: AsRef<Path>,
        V: AsRef<Path>,
        W: AsRef<Path>,
    {
        Self {
            binary: binary.as_ref().to_owned(),
            config: config.as_ref().to_owned(),
            library: library.as_ref().to_owned(),
            share: share.as_ref().to_owned(),
        }
    }

    pub fn create_dirs(&self, chown: bool) -> io::Result<()> {
        if !self.binary.exists() {
            fs::create_dir(&self.binary)?;
            if chown {
                unix::fs::chown(&self.binary, UID, GID)?;
            }
        }
        if !self.config.exists() {
            fs::create_dir(&self.config)?;
            if chown {
                unix::fs::chown(&self.config, UID, GID)?;
            }
        }
        if !self.library.exists() {
            fs::create_dir(&self.library)?;
            if chown {
                unix::fs::chown(&self.library, UID, GID)?;
            }
        }
        if !self.share.exists() {
            fs::create_dir(&self.share)?;
            if chown {
                unix::fs::chown(&self.share, UID, GID)?;
            }
        }

        Ok(())
    }
}