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
|
//! ref: composer/src/Composer/Package/Loader/InvalidPackageException.php
use indexmap::IndexMap;
use shirabe_php_shim::{Exception, PhpMixed};
#[derive(Debug)]
pub struct InvalidPackageException {
inner: Exception,
errors: Vec<String>,
warnings: Vec<String>,
data: IndexMap<String, PhpMixed>,
}
impl InvalidPackageException {
pub fn new(
errors: Vec<String>,
warnings: Vec<String>,
data: IndexMap<String, PhpMixed>,
) -> Self {
let message = format!(
"Invalid package information: \n{}",
errors
.iter()
.chain(warnings.iter())
.cloned()
.collect::<Vec<_>>()
.join("\n")
);
Self {
inner: Exception { message, code: 0 },
errors,
warnings,
data,
}
}
pub fn get_data(&self) -> &IndexMap<String, PhpMixed> {
&self.data
}
pub fn get_errors(&self) -> &[String] {
&self.errors
}
pub fn get_warnings(&self) -> &[String] {
&self.warnings
}
}
impl std::fmt::Display for InvalidPackageException {
fn fmt(&self, _f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
todo!()
}
}
impl std::error::Error for InvalidPackageException {}
|