2019-04-11 15:23:14 -07:00
|
|
|
use crate::common::*;
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2019-11-10 23:17:47 -08:00
|
|
|
use std::process::{ExitStatus, Stdio};
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2020-02-14 04:49:25 -08:00
|
|
|
/// Return a `RuntimeError::Signal` if the process was terminated by a signal,
|
|
|
|
/// otherwise return an `RuntimeError::UnknownFailure`
|
2017-11-16 23:30:08 -08:00
|
|
|
fn error_from_signal(
|
2018-12-08 14:29:41 -08:00
|
|
|
recipe: &str,
|
2017-11-16 23:30:08 -08:00
|
|
|
line_number: Option<usize>,
|
2018-12-08 14:29:41 -08:00
|
|
|
exit_status: ExitStatus,
|
2017-11-16 23:30:08 -08:00
|
|
|
) -> RuntimeError {
|
|
|
|
match Platform::signal_from_exit_status(exit_status) {
|
2018-12-08 14:29:41 -08:00
|
|
|
Some(signal) => RuntimeError::Signal {
|
|
|
|
recipe,
|
|
|
|
line_number,
|
|
|
|
signal,
|
|
|
|
},
|
|
|
|
None => RuntimeError::Unknown {
|
|
|
|
recipe,
|
|
|
|
line_number,
|
|
|
|
},
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-07 10:55:15 -08:00
|
|
|
/// A recipe, e.g. `foo: bar baz`
|
2021-06-08 01:01:27 -07:00
|
|
|
#[derive(PartialEq, Debug, Clone)]
|
2019-12-07 03:09:21 -08:00
|
|
|
pub(crate) struct Recipe<'src, D = Dependency<'src>> {
|
2019-11-21 06:23:32 -08:00
|
|
|
pub(crate) dependencies: Vec<D>,
|
2020-02-10 20:07:06 -08:00
|
|
|
pub(crate) doc: Option<&'src str>,
|
|
|
|
pub(crate) body: Vec<Line<'src>>,
|
|
|
|
pub(crate) name: Name<'src>,
|
|
|
|
pub(crate) parameters: Vec<Parameter<'src>>,
|
|
|
|
pub(crate) private: bool,
|
|
|
|
pub(crate) quiet: bool,
|
|
|
|
pub(crate) shebang: bool,
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
|
2019-12-07 03:09:21 -08:00
|
|
|
impl<'src, D> Recipe<'src, D> {
|
2019-09-21 15:35:03 -07:00
|
|
|
pub(crate) fn argument_range(&self) -> RangeInclusive<usize> {
|
2019-04-11 12:30:29 -07:00
|
|
|
self.min_arguments()..=self.max_arguments()
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
|
2019-09-21 15:35:03 -07:00
|
|
|
pub(crate) fn min_arguments(&self) -> usize {
|
2018-12-08 14:29:41 -08:00
|
|
|
self
|
|
|
|
.parameters
|
|
|
|
.iter()
|
2020-06-13 01:49:13 -07:00
|
|
|
.filter(|p| p.default.is_none() && p.kind != ParameterKind::Star)
|
2018-12-08 14:29:41 -08:00
|
|
|
.count()
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
|
2019-09-21 15:35:03 -07:00
|
|
|
pub(crate) fn max_arguments(&self) -> usize {
|
2020-06-13 01:49:13 -07:00
|
|
|
if self.parameters.iter().any(|p| p.kind.is_variadic()) {
|
2020-01-15 02:16:13 -08:00
|
|
|
usize::max_value() - 1
|
2017-11-16 23:30:08 -08:00
|
|
|
} else {
|
|
|
|
self.parameters.len()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-07 03:09:21 -08:00
|
|
|
pub(crate) fn name(&self) -> &'src str {
|
2019-11-07 10:55:15 -08:00
|
|
|
self.name.lexeme()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn line_number(&self) -> usize {
|
|
|
|
self.name.line
|
|
|
|
}
|
|
|
|
|
2020-08-21 15:13:54 -07:00
|
|
|
pub(crate) fn public(&self) -> bool {
|
|
|
|
!self.private
|
|
|
|
}
|
|
|
|
|
2019-12-07 03:09:21 -08:00
|
|
|
pub(crate) fn run<'run>(
|
2017-11-16 23:30:08 -08:00
|
|
|
&self,
|
2019-12-07 03:09:21 -08:00
|
|
|
context: &RecipeContext<'src, 'run>,
|
2019-04-11 15:23:14 -07:00
|
|
|
dotenv: &BTreeMap<String, String>,
|
2019-12-07 04:03:03 -08:00
|
|
|
scope: Scope<'src, 'run>,
|
2019-12-25 06:12:06 -08:00
|
|
|
search: &'run Search,
|
2021-05-02 03:25:43 -07:00
|
|
|
positional: &[String],
|
2019-12-07 03:09:21 -08:00
|
|
|
) -> RunResult<'src, ()> {
|
2019-10-07 02:06:45 -07:00
|
|
|
let config = &context.config;
|
2018-08-27 18:36:40 -07:00
|
|
|
|
2019-10-07 02:06:45 -07:00
|
|
|
if config.verbosity.loquacious() {
|
|
|
|
let color = config.color.stderr().banner();
|
2018-12-08 14:29:41 -08:00
|
|
|
eprintln!(
|
|
|
|
"{}===> Running recipe `{}`...{}",
|
|
|
|
color.prefix(),
|
|
|
|
self.name,
|
|
|
|
color.suffix()
|
|
|
|
);
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
|
2019-12-25 06:12:06 -08:00
|
|
|
let mut evaluator =
|
|
|
|
Evaluator::recipe_evaluator(context.config, dotenv, &scope, context.settings, search);
|
2017-11-16 23:30:08 -08:00
|
|
|
|
|
|
|
if self.shebang {
|
|
|
|
let mut evaluated_lines = vec![];
|
2019-11-07 10:55:15 -08:00
|
|
|
for line in &self.body {
|
2020-06-08 22:37:12 -07:00
|
|
|
evaluated_lines.push(evaluator.evaluate_line(line, false)?);
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
|
2021-03-25 16:51:29 -07:00
|
|
|
if config.verbosity.loud() && (config.dry_run || self.quiet) {
|
2017-11-16 23:30:08 -08:00
|
|
|
for line in &evaluated_lines {
|
|
|
|
eprintln!("{}", line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-07 02:06:45 -07:00
|
|
|
if config.dry_run {
|
2017-11-16 23:30:08 -08:00
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2021-05-11 12:21:49 -07:00
|
|
|
let shebang_line = evaluated_lines
|
|
|
|
.first()
|
|
|
|
.ok_or_else(|| RuntimeError::Internal {
|
|
|
|
message: "evaluated_lines was empty".to_owned(),
|
|
|
|
})?;
|
|
|
|
|
2021-05-17 20:44:12 -07:00
|
|
|
let shebang = Shebang::new(shebang_line).ok_or_else(|| RuntimeError::Internal {
|
2021-05-11 12:21:49 -07:00
|
|
|
message: format!("bad shebang line: {}", shebang_line),
|
|
|
|
})?;
|
2021-05-17 20:44:12 -07:00
|
|
|
|
2019-07-13 01:55:06 -07:00
|
|
|
let tmp = tempfile::Builder::new()
|
|
|
|
.prefix("just")
|
|
|
|
.tempdir()
|
|
|
|
.map_err(|error| RuntimeError::TmpdirIoError {
|
2020-02-10 20:07:06 -08:00
|
|
|
recipe: self.name(),
|
2019-07-13 01:55:06 -07:00
|
|
|
io_error: error,
|
|
|
|
})?;
|
2017-11-16 23:30:08 -08:00
|
|
|
let mut path = tmp.path().to_path_buf();
|
2021-05-17 20:44:12 -07:00
|
|
|
|
|
|
|
path.push(shebang.script_filename(self.name()));
|
|
|
|
|
2017-11-16 23:30:08 -08:00
|
|
|
{
|
2018-12-08 14:29:41 -08:00
|
|
|
let mut f = fs::File::create(&path).map_err(|error| RuntimeError::TmpdirIoError {
|
2020-02-10 20:07:06 -08:00
|
|
|
recipe: self.name(),
|
2018-12-08 14:29:41 -08:00
|
|
|
io_error: error,
|
|
|
|
})?;
|
2017-11-16 23:30:08 -08:00
|
|
|
let mut text = String::new();
|
2021-05-17 20:44:12 -07:00
|
|
|
|
|
|
|
if shebang.include_shebang_line() {
|
2021-05-15 22:33:41 -07:00
|
|
|
text += &evaluated_lines[0];
|
2021-05-17 20:44:12 -07:00
|
|
|
} else {
|
|
|
|
text += "\n";
|
2021-05-15 22:33:41 -07:00
|
|
|
}
|
2021-05-17 20:44:12 -07:00
|
|
|
|
2017-11-16 23:30:08 -08:00
|
|
|
text += "\n";
|
2020-02-14 04:49:25 -08:00
|
|
|
// add blank lines so that lines in the generated script have the same line
|
|
|
|
// number as the corresponding lines in the justfile
|
2019-11-07 10:55:15 -08:00
|
|
|
for _ in 1..(self.line_number() + 2) {
|
2021-05-07 00:14:38 -07:00
|
|
|
text += "\n";
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
for line in &evaluated_lines[1..] {
|
|
|
|
text += line;
|
|
|
|
text += "\n";
|
|
|
|
}
|
2018-08-31 00:04:06 -07:00
|
|
|
|
2019-10-07 02:06:45 -07:00
|
|
|
if config.verbosity.grandiloquent() {
|
|
|
|
eprintln!("{}", config.color.doc().stderr().paint(&text));
|
2018-08-31 00:04:06 -07:00
|
|
|
}
|
|
|
|
|
2017-11-16 23:30:08 -08:00
|
|
|
f.write_all(text.as_bytes())
|
2018-12-08 14:29:41 -08:00
|
|
|
.map_err(|error| RuntimeError::TmpdirIoError {
|
2020-02-10 20:07:06 -08:00
|
|
|
recipe: self.name(),
|
2018-12-08 14:29:41 -08:00
|
|
|
io_error: error,
|
|
|
|
})?;
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// make the script executable
|
2018-12-08 14:29:41 -08:00
|
|
|
Platform::set_execute_permission(&path).map_err(|error| RuntimeError::TmpdirIoError {
|
2020-02-10 20:07:06 -08:00
|
|
|
recipe: self.name(),
|
2018-12-08 14:29:41 -08:00
|
|
|
io_error: error,
|
|
|
|
})?;
|
2017-11-16 23:30:08 -08:00
|
|
|
|
|
|
|
// create a command to run the script
|
2021-05-17 20:44:12 -07:00
|
|
|
let mut command =
|
|
|
|
Platform::make_shebang_command(&path, &context.search.working_directory, shebang).map_err(
|
|
|
|
|output_error| RuntimeError::Cygpath {
|
|
|
|
recipe: self.name(),
|
|
|
|
output_error,
|
|
|
|
},
|
|
|
|
)?;
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2021-04-24 18:29:58 -07:00
|
|
|
if context.settings.positional_arguments {
|
2021-05-02 03:25:43 -07:00
|
|
|
command.args(positional);
|
2021-04-24 18:29:58 -07:00
|
|
|
}
|
|
|
|
|
2021-03-25 17:00:32 -07:00
|
|
|
command.export(context.settings, dotenv, &scope);
|
2017-11-16 23:30:08 -08:00
|
|
|
|
|
|
|
// run it!
|
2018-08-27 16:03:52 -07:00
|
|
|
match InterruptHandler::guard(|| command.status()) {
|
2020-02-10 20:07:06 -08:00
|
|
|
Ok(exit_status) =>
|
2018-12-08 14:29:41 -08:00
|
|
|
if let Some(code) = exit_status.code() {
|
|
|
|
if code != 0 {
|
|
|
|
return Err(RuntimeError::Code {
|
2019-11-07 10:55:15 -08:00
|
|
|
recipe: self.name(),
|
2018-12-08 14:29:41 -08:00
|
|
|
line_number: None,
|
|
|
|
code,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
2019-11-07 10:55:15 -08:00
|
|
|
return Err(error_from_signal(self.name(), None, exit_status));
|
2020-02-10 20:07:06 -08:00
|
|
|
},
|
2018-12-08 14:29:41 -08:00
|
|
|
Err(io_error) => {
|
|
|
|
return Err(RuntimeError::Shebang {
|
2019-11-07 10:55:15 -08:00
|
|
|
recipe: self.name(),
|
2021-05-17 20:44:12 -07:00
|
|
|
command: shebang.interpreter.to_owned(),
|
|
|
|
argument: shebang.argument.map(String::from),
|
2018-12-08 14:29:41 -08:00
|
|
|
io_error,
|
2019-04-11 12:30:29 -07:00
|
|
|
});
|
2020-02-10 20:07:06 -08:00
|
|
|
},
|
2017-11-16 23:30:08 -08:00
|
|
|
};
|
|
|
|
} else {
|
2019-11-07 10:55:15 -08:00
|
|
|
let mut lines = self.body.iter().peekable();
|
|
|
|
let mut line_number = self.line_number() + 1;
|
2017-11-16 23:30:08 -08:00
|
|
|
loop {
|
|
|
|
if lines.peek().is_none() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
let mut evaluated = String::new();
|
2020-06-08 22:37:12 -07:00
|
|
|
let mut continued = false;
|
2020-06-09 15:16:05 -07:00
|
|
|
let quiet_command = lines.peek().map(|line| line.is_quiet()).unwrap_or(false);
|
2020-10-03 13:54:19 -07:00
|
|
|
let infallable_command = lines
|
|
|
|
.peek()
|
|
|
|
.map(|line| line.is_infallable())
|
|
|
|
.unwrap_or(false);
|
2017-11-16 23:30:08 -08:00
|
|
|
loop {
|
|
|
|
if lines.peek().is_none() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
let line = lines.next().unwrap();
|
|
|
|
line_number += 1;
|
2020-06-08 22:37:12 -07:00
|
|
|
evaluated += &evaluator.evaluate_line(line, continued)?;
|
2019-11-07 10:55:15 -08:00
|
|
|
if line.is_continuation() {
|
2020-06-08 22:37:12 -07:00
|
|
|
continued = true;
|
2017-11-16 23:30:08 -08:00
|
|
|
evaluated.pop();
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let mut command = evaluated.as_str();
|
2020-10-03 13:54:19 -07:00
|
|
|
if quiet_command || infallable_command {
|
2017-11-16 23:30:08 -08:00
|
|
|
command = &command[1..];
|
|
|
|
}
|
|
|
|
|
2020-11-19 14:47:04 -08:00
|
|
|
if command.is_empty() {
|
2017-11-16 23:30:08 -08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-10-07 02:06:45 -07:00
|
|
|
if config.dry_run
|
|
|
|
|| config.verbosity.loquacious()
|
2020-10-01 20:00:15 -07:00
|
|
|
|| !((quiet_command ^ self.quiet) || config.verbosity.quiet())
|
2018-08-31 00:04:06 -07:00
|
|
|
{
|
2019-10-07 02:06:45 -07:00
|
|
|
let color = if config.highlight {
|
|
|
|
config.color.command()
|
2017-11-16 23:30:08 -08:00
|
|
|
} else {
|
2019-10-07 02:06:45 -07:00
|
|
|
config.color
|
2017-11-16 23:30:08 -08:00
|
|
|
};
|
|
|
|
eprintln!("{}", color.stderr().paint(command));
|
|
|
|
}
|
|
|
|
|
2019-10-07 02:06:45 -07:00
|
|
|
if config.dry_run {
|
2017-11-16 23:30:08 -08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-11-22 11:33:56 -08:00
|
|
|
let mut cmd = context.settings.shell_command(config);
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
|
2019-12-25 06:12:06 -08:00
|
|
|
cmd.current_dir(&context.search.working_directory);
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2019-11-10 23:17:47 -08:00
|
|
|
cmd.arg(command);
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2021-04-24 18:29:58 -07:00
|
|
|
if context.settings.positional_arguments {
|
|
|
|
cmd.arg(self.name.lexeme());
|
2021-05-02 03:25:43 -07:00
|
|
|
cmd.args(positional);
|
2021-04-24 18:29:58 -07:00
|
|
|
}
|
|
|
|
|
2020-10-01 20:00:15 -07:00
|
|
|
if config.verbosity.quiet() {
|
2017-11-16 23:30:08 -08:00
|
|
|
cmd.stderr(Stdio::null());
|
|
|
|
cmd.stdout(Stdio::null());
|
|
|
|
}
|
|
|
|
|
2021-03-25 17:00:32 -07:00
|
|
|
cmd.export(context.settings, dotenv, &scope);
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2018-08-27 16:03:52 -07:00
|
|
|
match InterruptHandler::guard(|| cmd.status()) {
|
2020-02-10 20:07:06 -08:00
|
|
|
Ok(exit_status) =>
|
2018-12-08 14:29:41 -08:00
|
|
|
if let Some(code) = exit_status.code() {
|
2020-10-03 13:54:19 -07:00
|
|
|
if code != 0 && !infallable_command {
|
2018-12-08 14:29:41 -08:00
|
|
|
return Err(RuntimeError::Code {
|
2019-11-07 10:55:15 -08:00
|
|
|
recipe: self.name(),
|
2018-12-08 14:29:41 -08:00
|
|
|
line_number: Some(line_number),
|
|
|
|
code,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
2019-11-07 10:55:15 -08:00
|
|
|
return Err(error_from_signal(
|
|
|
|
self.name(),
|
|
|
|
Some(line_number),
|
|
|
|
exit_status,
|
|
|
|
));
|
2020-02-10 20:07:06 -08:00
|
|
|
},
|
2018-12-08 14:29:41 -08:00
|
|
|
Err(io_error) => {
|
|
|
|
return Err(RuntimeError::IoError {
|
2019-11-07 10:55:15 -08:00
|
|
|
recipe: self.name(),
|
2018-12-08 14:29:41 -08:00
|
|
|
io_error,
|
2019-04-11 12:30:29 -07:00
|
|
|
});
|
2020-02-10 20:07:06 -08:00
|
|
|
},
|
2017-11-16 23:30:08 -08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-21 06:23:32 -08:00
|
|
|
impl<'src, D> Keyed<'src> for Recipe<'src, D> {
|
2019-11-07 10:55:15 -08:00
|
|
|
fn key(&self) -> &'src str {
|
|
|
|
self.name.lexeme()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-08 01:01:27 -07:00
|
|
|
impl<'src, D: Display> Display for Recipe<'src, D> {
|
2019-04-11 15:23:14 -07:00
|
|
|
fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
|
2017-11-16 23:30:08 -08:00
|
|
|
if let Some(doc) = self.doc {
|
|
|
|
writeln!(f, "# {}", doc)?;
|
|
|
|
}
|
2019-04-15 22:40:02 -07:00
|
|
|
|
|
|
|
if self.quiet {
|
|
|
|
write!(f, "@{}", self.name)?;
|
|
|
|
} else {
|
|
|
|
write!(f, "{}", self.name)?;
|
|
|
|
}
|
|
|
|
|
2017-11-16 23:30:08 -08:00
|
|
|
for parameter in &self.parameters {
|
|
|
|
write!(f, " {}", parameter)?;
|
|
|
|
}
|
|
|
|
write!(f, ":")?;
|
|
|
|
for dependency in &self.dependencies {
|
2019-12-07 04:03:03 -08:00
|
|
|
write!(f, " {}", dependency)?;
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
|
2019-11-07 10:55:15 -08:00
|
|
|
for (i, line) in self.body.iter().enumerate() {
|
2017-11-16 23:30:08 -08:00
|
|
|
if i == 0 {
|
2018-08-27 18:36:40 -07:00
|
|
|
writeln!(f)?;
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
2019-11-07 10:55:15 -08:00
|
|
|
for (j, fragment) in line.fragments.iter().enumerate() {
|
2017-11-16 23:30:08 -08:00
|
|
|
if j == 0 {
|
|
|
|
write!(f, " ")?;
|
|
|
|
}
|
2019-11-07 10:55:15 -08:00
|
|
|
match fragment {
|
|
|
|
Fragment::Text { token } => write!(f, "{}", token.lexeme())?,
|
2021-06-08 01:01:27 -07:00
|
|
|
Fragment::Interpolation { expression, .. } => write!(f, "{{{{ {} }}}}", expression)?,
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
}
|
2019-11-07 10:55:15 -08:00
|
|
|
if i + 1 < self.body.len() {
|
2018-08-27 18:36:40 -07:00
|
|
|
writeln!(f)?;
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|