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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
use codespan_reporting::diagnostic::Severity;
use schemars::JsonSchema;
use serde::Deserialize;
use serde::Serialize;

use crate::annotation::Annotation;

#[derive(
    Debug, PartialEq, Eq, Ord, Copy, Clone, Hash, PartialOrd, Deserialize, Serialize, JsonSchema,
)]
#[serde(rename_all = "snake_case", tag = "type")]
pub enum IssueSeverity {
    Note,
    Help,
    Warning,
    Error,
    Bug,
}

#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub struct Issue {
    pub severity: IssueSeverity,
    pub code: Option<String>,
    pub message: String,
    pub source: Option<(String, usize, usize)>,
    pub annotations: Vec<Annotation>,
    pub notes: Vec<String>,
}

/// A report issue.
///
/// An issue is a single error or warning in a report.
///
/// Example:
///
/// ```rust
/// # use serde_json::Value::String;
/// use ara_reporting::issue::Issue;
/// # use ara_reporting::issue::IssueSeverity;
/// # use ara_reporting::annotation::Annotation;
/// let issue = Issue::error("0003", "standalone type `void` cannot be part of a union")
///     .with_source("main.ara", 10, 14)
///     .with_annotation(
///         Annotation::secondary("main.ara", 9, 10)
///             .with_message("union type starts here")
///     )
///    .with_note("`void`, `never`, and `mixed` are standalone types and cannot be part of a union, or an intersection")
///    .with_note("consider using `null` instead of `void`");
///
/// # assert_eq!(issue.severity, IssueSeverity::Error);
/// # assert_eq!(issue.code, Some("0003".to_string()));
/// # assert_eq!(issue.message, "standalone type `void` cannot be part of a union");
/// # assert_eq!(issue.source, Some(("main.ara".to_string(), 10, 14)));
/// # assert_eq!(issue.annotations.len(), 1);
/// # assert_eq!(issue.annotations[0].from, 9);
/// # assert_eq!(issue.annotations[0].to, 10);
/// # assert_eq!(issue.annotations[0].message, Some("union type starts here".to_string()));
/// # assert_eq!(issue.notes, vec![
/// #     "`void`, `never`, and `mixed` are standalone types and cannot be part of a union, or an intersection".to_string(),
/// #    "consider using `null` instead of `void`".to_string(),
/// # ]);
/// ```
impl Issue {
    /// Create a new issue with the given code and message.
    pub fn new<M: Into<String>>(severity: IssueSeverity, message: M) -> Self {
        Self {
            severity,
            code: None,
            message: message.into(),
            source: None,
            annotations: Vec::new(),
            notes: Vec::new(),
        }
    }

    /// Create a new error issue with the given code and message.
    ///
    /// Example:
    ///
    /// ```rust
    /// use ara_reporting::issue::Issue;
    /// use ara_reporting::issue::IssueSeverity;
    ///
    /// let issue = Issue::error("0003", "...")
    ///     .with_source("main.ara", 10, 11);
    ///
    /// assert_eq!(issue.severity, IssueSeverity::Error);
    /// ```
    pub fn error<C: Into<String>, M: Into<String>>(code: C, message: M) -> Self {
        Self::new(IssueSeverity::Error, message).with_code(code)
    }

    /// Create a new warning issue with the given code and message.
    ///
    /// Example:
    ///
    /// ```rust
    /// use ara_reporting::issue::Issue;
    /// use ara_reporting::issue::IssueSeverity;
    ///
    /// let issue = Issue::warning("0003", "...")
    ///     .with_source("main.ara", 10, 11);
    ///
    /// assert_eq!(issue.severity, IssueSeverity::Warning);
    /// ```
    pub fn warning<C: Into<String>, M: Into<String>>(code: C, message: M) -> Self {
        Self::new(IssueSeverity::Warning, message).with_code(code)
    }

    /// Create a new help issue with the given code and message.
    ///
    /// Example:
    ///
    /// ```rust
    /// use ara_reporting::issue::Issue;
    /// use ara_reporting::issue::IssueSeverity;
    ///
    /// let issue = Issue::help("0003", "...")
    ///     .with_source("main.ara", 10, 11);
    ///
    /// assert_eq!(issue.severity, IssueSeverity::Help);
    /// ```
    pub fn help<C: Into<String>, M: Into<String>>(code: C, message: M) -> Self {
        Self::new(IssueSeverity::Help, message).with_code(code)
    }

    /// Create a new note issue with the given code and message.
    ///
    /// Example:
    ///
    /// ```rust
    /// use ara_reporting::issue::Issue;
    /// use ara_reporting::issue::IssueSeverity;
    ///
    /// let issue = Issue::note("0003", "...")
    ///     .with_source("main.ara", 10, 11);
    ///
    /// assert_eq!(issue.severity, IssueSeverity::Note);
    /// ```
    pub fn note<C: Into<String>, M: Into<String>>(code: C, message: M) -> Self {
        Self::new(IssueSeverity::Note, message).with_code(code)
    }

    /// Create a new bug issue with the given code and message.
    ///
    /// Example:
    ///
    /// ```rust
    /// use ara_reporting::issue::Issue;
    /// use ara_reporting::issue::IssueSeverity;
    ///
    /// let issue = Issue::bug("0003", "...")
    ///     .with_source("main.ara", 10, 11);
    ///
    /// assert_eq!(issue.severity, IssueSeverity::Bug);
    /// ```
    pub fn bug<C: Into<String>, M: Into<String>>(code: C, message: M) -> Self {
        Self::new(IssueSeverity::Bug, message).with_code(code)
    }

    /// Create a new error `Issue` from a string.
    ///
    /// Example:
    ///
    /// ```rust
    /// use ara_reporting::issue::Issue;
    /// use ara_reporting::issue::IssueSeverity;
    ///
    /// let issue = Issue::from_string("invalid digit found in string");
    ///
    /// assert_eq!(issue.severity, IssueSeverity::Error);
    /// assert_eq!("invalid digit found in string", issue.message);
    /// ```
    pub fn from_string<M: Into<String>>(message: M) -> Self {
        Self::new(IssueSeverity::Error, message)
    }

    /// Add a code to this issue.
    #[must_use]
    pub fn with_code<C: Into<String>>(mut self, code: C) -> Self {
        self.code = Some(code.into());

        self
    }

    /// Add an annotation to this issue.
    #[must_use]
    pub fn with_annotation(mut self, annotation: Annotation) -> Self {
        self.annotations.push(annotation);

        self
    }

    /// Add a note to this issue.
    #[must_use]
    pub fn with_note<S: Into<String>>(mut self, note: S) -> Self {
        self.notes.push(note.into());

        self
    }

    /// Add a source/position details to this issue.
    #[must_use]
    pub fn with_source<O: Into<String>>(mut self, source: O, from: usize, to: usize) -> Self {
        self.source = Some((source.into(), from, to));

        self
    }
}

/// Returns an error `Issue` from anything that derives `std::error::Error`.
///
/// Example:
///
///```rust
/// use ara_reporting::issue::Issue;
/// use ara_reporting::issue::IssueSeverity;
///
/// let error: std::num::ParseIntError = "NaN".parse::<u8>().unwrap_err();
/// let issue: Issue = error.into();
/// assert_eq!(IssueSeverity::Error, issue.severity);
/// assert_eq!("invalid digit found in string", issue.message);
///
/// let error: std::io::Error = std::fs::read_to_string("nonexistent_file.txt").unwrap_err();
/// let issue: Issue = error.into();
/// assert_eq!(IssueSeverity::Error, issue.severity);
/// assert_eq!("No such file or directory (os error 2)", issue.message);
/// ```
#[doc(hidden)]
impl<E: std::error::Error> From<E> for Issue {
    fn from(error: E) -> Self {
        Issue::new(IssueSeverity::Error, error.to_string())
    }
}

/// Returns `Severity` from `IssueSeverity`
///
/// Example:
///
/// ```rust
/// use codespan_reporting::diagnostic::Severity;
/// use ara_reporting::issue::IssueSeverity;
///
/// assert_eq!(Severity::Error, IssueSeverity::Error.into());
/// ```
#[doc(hidden)]
impl From<IssueSeverity> for Severity {
    fn from(severity: IssueSeverity) -> Self {
        match severity {
            IssueSeverity::Error => Severity::Error,
            IssueSeverity::Warning => Severity::Warning,
            IssueSeverity::Note => Severity::Note,
            IssueSeverity::Help => Severity::Help,
            IssueSeverity::Bug => Severity::Bug,
        }
    }
}

/// Display the issue kind as a string.
///
/// Example:
///
/// ```rust
/// use ara_reporting::issue::IssueSeverity;
///
/// assert_eq!(IssueSeverity::Error.to_string(), "error");
/// assert_eq!(IssueSeverity::Warning.to_string(), "warning");
/// assert_eq!(IssueSeverity::Help.to_string(), "help");
/// assert_eq!(IssueSeverity::Note.to_string(), "note");
/// assert_eq!(IssueSeverity::Bug.to_string(), "bug");
/// ```
impl std::fmt::Display for IssueSeverity {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            IssueSeverity::Error => write!(f, "error"),
            IssueSeverity::Warning => write!(f, "warning"),
            IssueSeverity::Help => write!(f, "help"),
            IssueSeverity::Note => write!(f, "note"),
            IssueSeverity::Bug => write!(f, "bug"),
        }
    }
}

/// Display the issue as a string.
///
/// Example:
///
/// ```rust
/// use ara_reporting::issue::Issue;
/// use ara_reporting::issue::IssueSeverity;
///
/// let issue = Issue::error("E0231", "unexpected token `{`, expecting `[`")
///     .with_source("main.ara", 10, 1);
/// assert_eq!(issue.to_string(), "error[E0231]: unexpected token `{`, expecting `[` at main.ara@10:1");
///
/// let issue = Issue::bug("B0001", "failed to read the file");
/// assert_eq!(issue.to_string(), "bug[B0001]: failed to read the file");
///
/// let issue = Issue::new(IssueSeverity::Error, "some error just happened");
/// assert_eq!(issue.to_string(), "error: some error just happened");
/// ```
impl std::fmt::Display for Issue {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match &self.code {
            Some(code) => write!(f, "{}[{}]: {}", self.severity, code, self.message)?,
            None => write!(f, "{}: {}", self.severity, self.message)?,
        }

        if let Some((source, from, to)) = &self.source {
            write!(f, " at {source}@{from}:{to}")?;
        }

        Ok(())
    }
}