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
#[cfg(test)]
mod test;
use std::collections::HashMap;
use std::path::{Path, PathBuf};
use serde::{Deserialize, Serialize};
use smol_str::SmolStr;
#[derive(thiserror::Error, Debug)]
pub enum DeserializationError {
#[error(transparent)]
TomlError(#[from] toml::de::Error),
#[error(transparent)]
IoError(#[from] std::io::Error),
#[error("PathError")]
PathError,
}
const PROJECT_FILE_NAME: &str = "cairo_project.toml";
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct ProjectConfig {
pub base_path: PathBuf,
pub content: ProjectConfigContent,
}
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub struct ProjectConfigContent {
pub crate_roots: HashMap<SmolStr, PathBuf>,
}
impl ProjectConfig {
pub fn from_directory(directory: &Path) -> Result<Self, DeserializationError> {
Self::from_file(&directory.join(PROJECT_FILE_NAME))
}
pub fn from_file(filename: &Path) -> Result<Self, DeserializationError> {
let base_path = filename
.parent()
.and_then(|p| p.to_str())
.ok_or(DeserializationError::PathError)?
.into();
let content = toml::from_str(&std::fs::read_to_string(filename)?)?;
Ok(ProjectConfig { base_path, content })
}
}