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
use std::path::{Path, PathBuf};
use anyhow::{Context, Error};
use codespan_reporting::{
diagnostic::{Diagnostic, Severity},
files::SimpleFile,
term::{
termcolor::{ColorChoice, StandardStream},
Config,
},
};
use hotg_rune_compiler::{
codegen::RuneVersion,
compile::{CompilationResult, CompiledBinary},
hooks::{
AfterCodegenContext, AfterLoweringContext, AfterParseContext,
AfterTypeCheckingContext, Continuation,
},
BuildContext, Verbosity,
};
use once_cell::sync::Lazy;
use crate::Unstable;
#[derive(Debug, Clone, PartialEq, structopt::StructOpt)]
pub struct Build {
#[structopt(parse(from_os_str), default_value = "Runefile.yml")]
runefile: PathBuf,
#[structopt(short, long, parse(from_os_str))]
output: Option<PathBuf>,
#[structopt(long, env)]
cache_dir: Option<PathBuf>,
#[structopt(short, long, env)]
current_dir: Option<PathBuf>,
#[structopt(short, long)]
name: Option<String>,
#[structopt(short, long, conflicts_with = "verbose")]
quiet: bool,
#[structopt(short, long, conflicts_with = "quiet")]
verbose: bool,
#[structopt(long)]
debug: bool,
}
impl Build {
pub fn execute(
self,
color: ColorChoice,
unstable: Unstable,
) -> Result<(), Error> {
let ctx = self.build_context()?;
let features = unstable.feature_flags();
log::debug!(
"Compiling {} in \"{}\"",
ctx.name,
ctx.working_directory.display()
);
let dest = self.output.unwrap_or_else(|| {
ctx.current_directory.join(&ctx.name).with_extension("rune")
});
let mut hooks = Hooks::new(dest, color, self.runefile);
hotg_rune_compiler::build_with_hooks(ctx, features, &mut hooks);
match hooks.error {
None => Ok(()),
Some(e) => Err(e),
}
}
fn build_context(&self) -> Result<BuildContext, Error> {
let verbosity =
Verbosity::from_quiet_and_verbose(self.quiet, self.verbose)
.context(
"The --verbose and --quiet flags can't be used together",
)?;
let current_directory = self.current_directory()?;
let name = self.name()?;
let working_directory = self
.cache_dir
.clone()
.unwrap_or_else(|| Path::new(&*DEFAULT_CACHE_DIR).join(&name));
let runefile =
std::fs::read_to_string(&self.runefile).with_context(|| {
format!("Unable to read \"{}\"", self.runefile.display())
})?;
Ok(BuildContext {
name,
current_directory,
runefile,
verbosity,
working_directory,
optimized: !self.debug,
rune_version: Some(RuneVersion::new(env!("CARGO_PKG_VERSION"))),
})
}
fn current_directory(&self) -> Result<PathBuf, Error> {
if let Some(dir) = &self.current_dir {
return Ok(dir.clone());
}
if let Some(parent) =
self.runefile.parent().and_then(|p| p.canonicalize().ok())
{
return Ok(parent);
}
std::env::current_dir()
.context("Unable to determine the current directory")
}
fn name(&self) -> Result<String, Error> {
if let Some(name) = &self.name {
return Ok(name.clone());
}
let current_dir = self.current_directory()?;
if let Some(name) = current_dir.file_name().and_then(|n| n.to_str()) {
return Ok(name.to_string());
}
Err(Error::msg("Unable to determine the Rune's name"))
}
}
static DEFAULT_CACHE_DIR: Lazy<String> = Lazy::new(|| {
let cache_dir = dirs::cache_dir()
.or_else(dirs::home_dir)
.unwrap_or_else(|| PathBuf::from("."));
cache_dir
.join("rune")
.join("runes")
.to_string_lossy()
.into_owned()
});
#[derive(Debug)]
struct Hooks {
dest: PathBuf,
runefile_path: PathBuf,
color: ColorChoice,
error: Option<Error>,
}
impl Hooks {
fn new(dest: PathBuf, color: ColorChoice, runefile_path: PathBuf) -> Self {
Hooks {
dest,
color,
runefile_path,
error: None,
}
}
fn save_binary(&self, binary: &CompiledBinary) -> Result<(), Error> {
if let Some(parent) = self.dest.parent() {
std::fs::create_dir_all(parent).with_context(|| {
format!(
"Unable to create the \"{}\" directory",
parent.display()
)
})?;
}
std::fs::write(&self.dest, &binary).with_context(|| {
format!("Unable to write to \"{}\"", self.dest.display())
})?;
log::info!("The Rune was written to \"{}\"", self.dest.display());
Ok(())
}
fn check_diagnostics(
&mut self,
diags: impl Iterator<Item = Diagnostic<()>>,
ctx: &BuildContext,
) -> Continuation {
let mut writer = StandardStream::stderr(self.color);
let config = Config::default();
let file = SimpleFile::new(
self.runefile_path.display().to_string(),
&ctx.runefile,
);
let mut errors = 0;
for diag in diags {
if diag.severity >= Severity::Error {
errors += 1;
}
match codespan_reporting::term::emit(
&mut writer,
&config,
&file,
&diag,
)
.context("Unable to print the diagnostic")
{
Ok(_) => {},
Err(e) => {
self.error = Some(e);
return Continuation::Halt;
},
}
}
match errors {
0 => Continuation::Continue,
1 => {
self.error = Some(Error::msg("There was a build error"));
Continuation::Halt
},
_ => {
self.error =
Some(anyhow::anyhow!("There were {} build errors", errors));
Continuation::Halt
},
}
}
}
impl hotg_rune_compiler::hooks::Hooks for Hooks {
fn after_type_checking(
&mut self,
ctx: &mut dyn AfterTypeCheckingContext,
) -> Continuation {
self.check_diagnostics(
ctx.diagnostics_mut().drain(),
&ctx.build_context(),
)
}
fn after_parse(&mut self, ctx: &mut dyn AfterParseContext) -> Continuation {
self.check_diagnostics(
ctx.diagnostics_mut().drain(),
&ctx.build_context(),
)
}
fn after_lowering(
&mut self,
ctx: &mut dyn AfterLoweringContext,
) -> Continuation {
self.check_diagnostics(
ctx.diagnostics_mut().drain(),
&ctx.build_context(),
)
}
fn after_codegen(
&mut self,
ctx: &mut dyn AfterCodegenContext,
) -> Continuation {
self.check_diagnostics(
ctx.diagnostics_mut().drain(),
&ctx.build_context(),
)
}
fn after_compile(
&mut self,
ctx: &mut dyn hotg_rune_compiler::hooks::AfterCompileContext,
) -> Continuation {
let CompilationResult(result) = ctx.take_compilation_result();
if let Err(err) = result
.map_err(Error::from)
.and_then(|c| self.save_binary(&c))
{
self.error = Some(err);
}
Continuation::Continue
}
}