summaryrefslogtreecommitdiffstats
path: root/src/recipe.rs
blob: 477a09670fd8278e241b66a630e613414602c3db (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
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
use std::{cell::RefCell, collections::HashMap, fmt, fs::File, io, path::Path, result};

use serde::{Deserialize, Deserializer};
use walkdir::WalkDir;

use crate::{
	task::{RecipeMeta, TaskDef},
	types::TaskID,
};

thread_local! {
	pub static CURRENT_RECIPE: RefCell<Option<String>> = RefCell::new(None);
}

fn current_recipe() -> String {
	CURRENT_RECIPE.with(|current| {
		current
			.borrow()
			.as_ref()
			.expect("No current recipe")
			.clone()
	})
}

pub fn deserialize_task_id<'de, D>(deserializer: D) -> result::Result<TaskID, D::Error>
where
	D: Deserializer<'de>,
{
	#[derive(Deserialize)]
	struct RecipeTaskID {
		recipe: Option<String>,
		task: String,
	}
	let RecipeTaskID { recipe, task } = RecipeTaskID::deserialize(deserializer)?;
	Ok(TaskID {
		recipe: recipe.unwrap_or_else(current_recipe),
		task,
	})
}

#[derive(Debug, Deserialize)]
struct Recipe {
	#[serde(default)]
	pub meta: RecipeMeta,
	pub tasks: HashMap<String, TaskDef>,
}

#[derive(Debug)]
pub enum Error {
	IOError(io::Error),
	YAMLError(serde_yaml::Error),
}

impl From<io::Error> for Error {
	fn from(err: io::Error) -> Self {
		Error::IOError(err)
	}
}

impl From<serde_yaml::Error> for Error {
	fn from(err: serde_yaml::Error) -> Self {
		Error::YAMLError(err)
	}
}

impl fmt::Display for Error {
	fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
		match self {
			Error::IOError(err) => write!(f, "IO error: {}", err),
			Error::YAMLError(err) => write!(f, "YAML error: {}", err),
		}
	}
}

impl std::error::Error for Error {}

pub type Result<T> = std::result::Result<T, Error>;

fn read_recipe(path: &Path) -> Result<Recipe> {
	let f = File::open(path)?;

	let recipe: Recipe = serde_yaml::from_reader(f)?;

	Ok(recipe)
}

fn is_yml(path: &Path) -> bool {
	path.extension() == Some("yml".as_ref())
}

pub fn read_recipes<P: AsRef<Path>>(path: P) -> Result<HashMap<TaskID, TaskDef>> {
	let mut tasks = HashMap::new();

	for entry in WalkDir::new(path).into_iter().filter_map(|e| e.ok()) {
		let path = entry.path();
		if !path.is_file() || !is_yml(path) {
			continue;
		}

		let basename = match path.file_stem().map(|n| n.to_str()) {
			Some(Some(v)) => v,
			_ => continue,
		};

		CURRENT_RECIPE.with(|current| {
			*current.borrow_mut() = Some(basename.to_string());
		});

		let recipe = read_recipe(path)?;

		CURRENT_RECIPE.with(|current| {
			*current.borrow_mut() = None;
		});

		let mut meta = recipe.meta;
		if meta.name.is_empty() {
			meta.name = basename.to_string();
		}

		for (label, mut task) in recipe.tasks {
			let task_id = TaskID {
				recipe: basename.to_string(),
				task: label,
			};
			task.meta = meta.clone();
			tasks.insert(task_id, task);
		}
	}

	Ok(tasks)
}