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
use serde::{Deserialize, Serialize};

extern crate colored;
use colored::*;

#[derive(Debug, Clone, Copy, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct Position {
    pub line: i32,
    pub col: i32,
}

impl Position {
    pub fn new(line: i32, col: i32) -> Self {
        Position { line, col }
    }
}

impl std::fmt::Display for Position {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "line: {}, col: {}", self.line, self.col)
    }
}

#[repr(u8)]
#[derive(Debug, PartialEq, Clone, Copy, Eq)]
pub enum NoticeLevel {
    Notice,
    Warning,
    Error,
    Critical,
}

#[derive(Debug, Clone)]
pub struct Notice {
    pub from: String,
    pub msg: String,
    pub pos: Position,
    pub file: Option<String>,
    pub level: NoticeLevel,
}

impl<'a> Notice {
    pub fn report(&self, source: Option<&'a str>) {
        eprint!(
            "{}: ",
            match self.level {
                NoticeLevel::Notice => {
                    format!("{} Notice", self.from).cyan()
                }
                NoticeLevel::Warning => {
                    format!("{} Warning", self.from).cyan().yellow()
                }
                NoticeLevel::Error => {
                    format!("{} Error", self.from).cyan().red()
                }
                NoticeLevel::Critical => {
                    format!("{} Critical", self.from)
                        .cyan()
                        .bold()
                        .underline()
                        .red()
                }
            }
        );
        if self.pos.line > 0 {
            if let Some(s) = source {
                if let Some(f) = &self.file {
                    let mut line = 1;
                    for l in s.lines() {
                        if line == self.pos.line {
                            eprintln!(
                                "{}\n\tat: {}\n\t{}\n\t{}{}{}",
                                self.msg,
                                format!(
                                    "{}{}:{}:{}{}",
                                    "[".bold(),
                                    f,
                                    self.pos.line,
                                    self.pos.col,
                                    "]".bold()
                                ),
                                l,
                                if self.pos.col > 1 {
                                    String::from("~").repeat((self.pos.col - 1) as usize).red()
                                } else {
                                    "".red()
                                },
                                "^".red(),
                                if (self.pos.col as usize) < l.len() {
                                    String::from("~")
                                        .repeat(l.len() - self.pos.col as usize)
                                        .red()
                                } else {
                                    "".red()
                                },
                            );
                        }
                        line += 1;
                    }
                } else {
                    let mut line = 1;
                    for l in s.lines() {
                        if line == self.pos.line {
                            eprintln!(
                                "{}\n\tat: {}\n\t{}\n\t{}{}{}",
                                self.msg,
                                format!(
                                    "{}Line: {}, Col: {}{}",
                                    "[".bold(),
                                    self.pos.line,
                                    self.pos.col,
                                    "]".bold()
                                ),
                                l,
                                if self.pos.col > 1 {
                                    String::from("~").repeat((self.pos.col - 1) as usize).red()
                                } else {
                                    "".red()
                                },
                                "^".red(),
                                if (self.pos.col as usize) < l.len() {
                                    String::from("~")
                                        .repeat(l.len() - self.pos.col as usize)
                                        .red()
                                } else {
                                    "".red()
                                },
                            );
                        }
                        line += 1;
                    }
                }
            } else if let Some(f) = &self.file {
                eprintln!(
                    "{}\n\tat: {}",
                    self.msg,
                    format!(
                        "{}{}:{}:{}{}",
                        "[".bold(),
                        f,
                        self.pos.line,
                        self.pos.col,
                        "]".bold()
                    ),
                );
            } else {
                eprintln!(
                    "{}\n\tat: {}",
                    self.msg,
                    format!(
                        "{}Line: {}, Col: {}{}",
                        "[".bold(),
                        self.pos.line,
                        self.pos.col,
                        "]".bold()
                    ),
                );
            }
        } else if self.pos.line == -1 {
            if let Some(f) = &self.file {
                eprintln!(
                    "{}\n\tat: {}",
                    self.msg,
                    format!("{}{}:EOF{}", "[".bold(), f, "]".bold()),
                );
            } else {
                eprintln!(
                    "{}\n\tat: {}",
                    self.msg,
                    format!("{}EOF{}", "[".bold(), "]".bold()),
                );
            }
        } else if self.pos.line == -2 {
            if let Some(f) = &self.file {
                eprintln!(
                    "{}\n\tat: {}",
                    self.msg,
                    format!("{}{}:module{}", "[".bold(), f, "]".bold()),
                );
            } else {
                eprintln!(
                    "{}\n\tat: {}",
                    self.msg,
                    format!("{}module{}", "[".bold(), "]".bold()),
                );
            }
        } else if let Some(f) = &self.file {
            eprintln!(
                "{}\n\tat: {}",
                self.msg,
                format!("{}{}:??{}", "[".bold(), f, "]".bold()),
            );
        } else {
            eprintln!(
                "{}\n\tat: {}",
                self.msg,
                format!("{}??{}", "[".bold(), "]".bold()),
            );
        }
    }
}

pub fn contains_errors(notices: &[Notice]) -> bool {
    let mut were_errors = false;
    for n in notices {
        if let NoticeLevel::Error = n.level {
            were_errors = true;
        } else if let NoticeLevel::Critical = n.level {
            were_errors = true;
        }
    }
    were_errors
}