summaryrefslogtreecommitdiffstats
path: root/src/parse/mod.rs
blob: 9663086ce6b8fd71be3529a1eaefaadb43377f6e (plain) (blame)
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
pub mod ast;

#[derive(Debug, Eq, PartialEq)]
pub struct Pipeline {
    exes: Vec<Exe>,
}

impl Pipeline {
    pub fn into_exes(self) -> impl Iterator<Item = Exe> {
        self.exes.into_iter()
    }
}

#[derive(Debug, Eq, PartialEq)]
pub struct Exe {
    exe: std::path::PathBuf,
    args: Vec<String>,
    redirects: Vec<Redirect>,
}

impl Exe {
    pub fn exe(&self) -> &std::path::Path {
        &self.exe
    }

    pub fn args(&self) -> &[String] {
        &self.args
    }

    pub fn redirects(&self) -> &[Redirect] {
        &self.redirects
    }

    pub fn shift(&mut self) {
        self.exe = std::path::PathBuf::from(self.args.remove(0));
    }
}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Redirect {
    pub from: std::os::unix::io::RawFd,
    pub to: RedirectTarget,
    pub dir: Direction,
}

#[derive(Debug, Clone, Eq, PartialEq)]
pub enum RedirectTarget {
    Fd(std::os::unix::io::RawFd),
    File(std::path::PathBuf),
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Direction {
    In,
    Out,
    Append,
}

impl Direction {
    pub fn open(
        self,
        path: &std::path::Path,
    ) -> nix::Result<std::os::unix::io::RawFd> {
        use nix::fcntl::OFlag;
        use nix::sys::stat::Mode;
        Ok(match self {
            Self::In => nix::fcntl::open(
                path,
                OFlag::O_NOCTTY | OFlag::O_RDONLY,
                Mode::empty(),
            )?,
            Self::Out => nix::fcntl::open(
                path,
                OFlag::O_CREAT
                    | OFlag::O_NOCTTY
                    | OFlag::O_WRONLY
                    | OFlag::O_TRUNC,
                Mode::S_IRUSR
                    | Mode::S_IWUSR
                    | Mode::S_IRGRP
                    | Mode::S_IWGRP
                    | Mode::S_IROTH
                    | Mode::S_IWOTH,
            )?,
            Self::Append => nix::fcntl::open(
                path,
                OFlag::O_APPEND
                    | OFlag::O_CREAT
                    | OFlag::O_NOCTTY
                    | OFlag::O_WRONLY,
                Mode::S_IRUSR
                    | Mode::S_IWUSR
                    | Mode::S_IRGRP
                    | Mode::S_IWGRP
                    | Mode::S_IROTH
                    | Mode::S_IWOTH,
            )?,
        })
    }
}

#[derive(Debug, Eq, PartialEq)]
pub struct Error {
    input: String,
    e: pest::error::Error<ast::Rule>,
}

impl Error {
    fn new(input: String, e: pest::error::Error<ast::Rule>) -> Self {
        Self {
            input,
            e,
        }
    }
}

impl std::fmt::Display for Error {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match &self.e.variant {
            pest::error::ErrorVariant::ParsingError {
                positives,
                negatives,
            } => {
                if !positives.is_empty() {
                    write!(f, "expected {:?}", positives[0])?;
                    for rule in &positives[1..] {
                        write!(f, ", {:?}", rule)?;
                    }
                    if !negatives.is_empty() {
                        write!(f, "; ")?;
                    }
                }
                if !negatives.is_empty() {
                    write!(f, "unexpected {:?}", negatives[0])?;
                    for rule in &negatives[1..] {
                        write!(f, ", {:?}", rule)?;
                    }
                }
                writeln!(f)?;
                writeln!(f, "{}", self.input)?;
                match &self.e.location {
                    pest::error::InputLocation::Pos(i) => {
                        write!(f, "{}^", " ".repeat(*i))?;
                    }
                    pest::error::InputLocation::Span((i, j)) => {
                        write!(f, "{}{}", " ".repeat(*i), "^".repeat(j - i))?;
                    }
                }
            }
            pest::error::ErrorVariant::CustomError { message } => {
                write!(f, "{}", message)?;
            }
        }
        Ok(())
    }
}

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