aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_project_model/src/workspace_error.rs
blob: 5f7384968101eb7340266eaa30b9ba7b9b734f71 (plain)
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
//! Workspace-related errors

use std::{error::Error, fmt, io, path::PathBuf, string::FromUtf8Error};

use ra_db::ParseEditionError;

#[derive(Debug)]
pub enum WorkspaceError {
    CargoMetadataFailed(cargo_metadata::Error),
    CargoTomlNotFound(PathBuf),
    NoStdLib(PathBuf),
    OpenWorkspaceError(io::Error),
    ParseEditionError(ParseEditionError),
    ReadWorkspaceError(serde_json::Error),
    RustcCfgError,
    RustcError(io::Error),
    RustcOutputError(FromUtf8Error),
    SysrootNotFound,
}

impl fmt::Display for WorkspaceError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::OpenWorkspaceError(err) | Self::RustcError(err) => write!(f, "{}", err),
            Self::ParseEditionError(err) => write!(f, "{}", err),
            Self::ReadWorkspaceError(err) => write!(f, "{}", err),
            Self::RustcOutputError(err) => write!(f, "{}", err),
            Self::CargoMetadataFailed(err) => write!(f, "cargo metadata failed: {}", err),
            Self::RustcCfgError => write!(f, "failed to get rustc cfgs"),
            Self::SysrootNotFound => write!(f, "failed to locate sysroot"),
            Self::CargoTomlNotFound(path) => {
                write!(f, "can't find Cargo.toml at {}", path.display())
            }
            Self::NoStdLib(sysroot) => write!(
                f,
                "can't load standard library from sysroot\n\
                 {:?}\n\
                 try running `rustup component add rust-src` or set `RUST_SRC_PATH`",
                sysroot,
            ),
        }
    }
}

impl From<ParseEditionError> for WorkspaceError {
    fn from(err: ParseEditionError) -> Self {
        Self::ParseEditionError(err.into())
    }
}

impl From<cargo_metadata::Error> for WorkspaceError {
    fn from(err: cargo_metadata::Error) -> Self {
        Self::CargoMetadataFailed(err.into())
    }
}

impl Error for WorkspaceError {}