2024-05-14 20:29:40 -07:00
|
|
|
use {
|
|
|
|
super::*,
|
|
|
|
std::io::{Read, Seek},
|
|
|
|
tempfile::tempfile,
|
|
|
|
};
|
Reform positional argument parsing (#523)
This diff makes positional argument parsing much cleaner, along with
adding a bunch of tests. Just's positional argument parsing is rather,
complex, so hopefully this reform allows it to both be correct and stay
correct.
User-visible changes:
- `just ..` is now accepted, with the same effect as `just ../`
- `just .` is also accepted, with the same effect as `just`
- It is now an error to pass arguments or overrides to subcommands
that do not accept them, namely `--dump`, `--edit`, `--list`,
`--show`, and `--summary`. It is also an error to pass arguments to
`--evaluate`, although `--evaluate` does of course still accept
overrides.
(This is a breaking change, but hopefully worth it, as it will allow us
to add arguments to subcommands which did not previously take
them, if we so desire.)
- Subcommands which do not accept arguments may now accept a
single search-directory argument, so `just --list ../` and
`just --dump foo/` are now accepted, with the former starting the
search for the justfile to list in the parent directory, and the latter
starting the search for the justfile to dump in `foo`.
2019-11-10 18:02:36 -08:00
|
|
|
|
2022-02-23 11:47:43 -08:00
|
|
|
const INIT_JUSTFILE: &str = "default:\n echo 'Hello, world!'\n";
|
2021-07-26 17:19:52 -07:00
|
|
|
|
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
|
|
|
#[derive(PartialEq, Clone, Debug)]
|
|
|
|
pub(crate) enum Subcommand {
|
2021-07-31 13:53:27 -07:00
|
|
|
Changelog,
|
2020-09-17 19:43:04 -07:00
|
|
|
Choose {
|
|
|
|
overrides: BTreeMap<String, String>,
|
2021-09-16 06:44:40 -07:00
|
|
|
chooser: Option<String>,
|
2020-09-17 19:43:04 -07:00
|
|
|
},
|
2021-05-09 20:35:35 -07:00
|
|
|
Command {
|
|
|
|
arguments: Vec<OsString>,
|
2021-09-16 06:44:40 -07:00
|
|
|
binary: OsString,
|
2021-05-09 20:35:35 -07:00
|
|
|
overrides: BTreeMap<String, String>,
|
|
|
|
},
|
2020-01-15 01:20:38 -08:00
|
|
|
Completions {
|
2024-05-14 20:29:40 -07:00
|
|
|
shell: clap_complete::Shell,
|
2020-01-15 01:20:38 -08:00
|
|
|
},
|
2019-10-07 04:04:39 -07:00
|
|
|
Dump,
|
2019-10-31 17:39:25 -07:00
|
|
|
Edit,
|
Reform positional argument parsing (#523)
This diff makes positional argument parsing much cleaner, along with
adding a bunch of tests. Just's positional argument parsing is rather,
complex, so hopefully this reform allows it to both be correct and stay
correct.
User-visible changes:
- `just ..` is now accepted, with the same effect as `just ../`
- `just .` is also accepted, with the same effect as `just`
- It is now an error to pass arguments or overrides to subcommands
that do not accept them, namely `--dump`, `--edit`, `--list`,
`--show`, and `--summary`. It is also an error to pass arguments to
`--evaluate`, although `--evaluate` does of course still accept
overrides.
(This is a breaking change, but hopefully worth it, as it will allow us
to add arguments to subcommands which did not previously take
them, if we so desire.)
- Subcommands which do not accept arguments may now accept a
single search-directory argument, so `just --list ../` and
`just --dump foo/` are now accepted, with the former starting the
search for the justfile to list in the parent directory, and the latter
starting the search for the justfile to dump in `foo`.
2019-11-10 18:02:36 -08:00
|
|
|
Evaluate {
|
|
|
|
overrides: BTreeMap<String, String>,
|
2021-09-16 06:44:40 -07:00
|
|
|
variable: Option<String>,
|
Reform positional argument parsing (#523)
This diff makes positional argument parsing much cleaner, along with
adding a bunch of tests. Just's positional argument parsing is rather,
complex, so hopefully this reform allows it to both be correct and stay
correct.
User-visible changes:
- `just ..` is now accepted, with the same effect as `just ../`
- `just .` is also accepted, with the same effect as `just`
- It is now an error to pass arguments or overrides to subcommands
that do not accept them, namely `--dump`, `--edit`, `--list`,
`--show`, and `--summary`. It is also an error to pass arguments to
`--evaluate`, although `--evaluate` does of course still accept
overrides.
(This is a breaking change, but hopefully worth it, as it will allow us
to add arguments to subcommands which did not previously take
them, if we so desire.)
- Subcommands which do not accept arguments may now accept a
single search-directory argument, so `just --list ../` and
`just --dump foo/` are now accepted, with the former starting the
search for the justfile to list in the parent directory, and the latter
starting the search for the justfile to dump in `foo`.
2019-11-10 18:02:36 -08:00
|
|
|
},
|
2021-06-08 01:01:27 -07:00
|
|
|
Format,
|
2019-11-19 23:07:44 -08:00
|
|
|
Init,
|
|
|
|
List,
|
Reform positional argument parsing (#523)
This diff makes positional argument parsing much cleaner, along with
adding a bunch of tests. Just's positional argument parsing is rather,
complex, so hopefully this reform allows it to both be correct and stay
correct.
User-visible changes:
- `just ..` is now accepted, with the same effect as `just ../`
- `just .` is also accepted, with the same effect as `just`
- It is now an error to pass arguments or overrides to subcommands
that do not accept them, namely `--dump`, `--edit`, `--list`,
`--show`, and `--summary`. It is also an error to pass arguments to
`--evaluate`, although `--evaluate` does of course still accept
overrides.
(This is a breaking change, but hopefully worth it, as it will allow us
to add arguments to subcommands which did not previously take
them, if we so desire.)
- Subcommands which do not accept arguments may now accept a
single search-directory argument, so `just --list ../` and
`just --dump foo/` are now accepted, with the former starting the
search for the justfile to list in the parent directory, and the latter
starting the search for the justfile to dump in `foo`.
2019-11-10 18:02:36 -08:00
|
|
|
Run {
|
|
|
|
arguments: Vec<String>,
|
2022-03-30 22:13:59 -07:00
|
|
|
overrides: BTreeMap<String, String>,
|
Reform positional argument parsing (#523)
This diff makes positional argument parsing much cleaner, along with
adding a bunch of tests. Just's positional argument parsing is rather,
complex, so hopefully this reform allows it to both be correct and stay
correct.
User-visible changes:
- `just ..` is now accepted, with the same effect as `just ../`
- `just .` is also accepted, with the same effect as `just`
- It is now an error to pass arguments or overrides to subcommands
that do not accept them, namely `--dump`, `--edit`, `--list`,
`--show`, and `--summary`. It is also an error to pass arguments to
`--evaluate`, although `--evaluate` does of course still accept
overrides.
(This is a breaking change, but hopefully worth it, as it will allow us
to add arguments to subcommands which did not previously take
them, if we so desire.)
- Subcommands which do not accept arguments may now accept a
single search-directory argument, so `just --list ../` and
`just --dump foo/` are now accepted, with the former starting the
search for the justfile to list in the parent directory, and the latter
starting the search for the justfile to dump in `foo`.
2019-11-10 18:02:36 -08:00
|
|
|
},
|
|
|
|
Show {
|
|
|
|
name: String,
|
|
|
|
},
|
2019-10-31 17:39:25 -07:00
|
|
|
Summary,
|
2020-03-13 22:19:43 -07:00
|
|
|
Variables,
|
2019-10-07 04:04:39 -07:00
|
|
|
}
|
2020-03-16 17:20:14 -07:00
|
|
|
|
2021-07-26 17:19:52 -07:00
|
|
|
impl Subcommand {
|
2022-03-30 22:13:59 -07:00
|
|
|
pub(crate) fn execute<'src>(
|
|
|
|
&self,
|
|
|
|
config: &Config,
|
|
|
|
loader: &'src Loader,
|
|
|
|
) -> Result<(), Error<'src>> {
|
2021-07-26 17:19:52 -07:00
|
|
|
use Subcommand::*;
|
2020-03-16 17:20:14 -07:00
|
|
|
|
2021-07-31 13:53:27 -07:00
|
|
|
match self {
|
|
|
|
Changelog => {
|
|
|
|
Self::changelog();
|
|
|
|
return Ok(());
|
2021-09-16 06:44:40 -07:00
|
|
|
}
|
2024-05-14 20:29:40 -07:00
|
|
|
Completions { shell } => return Self::completions(*shell),
|
2021-07-31 13:53:27 -07:00
|
|
|
Init => return Self::init(config),
|
2022-03-30 22:13:59 -07:00
|
|
|
Run {
|
|
|
|
arguments,
|
|
|
|
overrides,
|
|
|
|
} => return Self::run(config, loader, arguments, overrides),
|
2021-09-16 06:44:40 -07:00
|
|
|
_ => {}
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
2020-10-05 19:12:48 -07:00
|
|
|
|
2021-07-26 17:19:52 -07:00
|
|
|
let search = Search::find(&config.search_config, &config.invocation_directory)?;
|
2020-10-05 19:12:48 -07:00
|
|
|
|
2021-07-26 17:19:52 -07:00
|
|
|
if let Edit = self {
|
|
|
|
return Self::edit(&search);
|
|
|
|
}
|
2020-10-05 19:12:48 -07:00
|
|
|
|
2023-11-21 11:28:59 -08:00
|
|
|
let compilation = Self::compile(config, loader, &search)?;
|
|
|
|
let justfile = &compilation.justfile;
|
|
|
|
let ast = compilation.root_ast();
|
|
|
|
let src = compilation.root_src();
|
2020-10-05 19:12:48 -07:00
|
|
|
|
2021-07-26 17:19:52 -07:00
|
|
|
match self {
|
2021-09-16 06:44:40 -07:00
|
|
|
Choose { overrides, chooser } => {
|
|
|
|
Self::choose(config, justfile, &search, overrides, chooser.as_deref())?;
|
|
|
|
}
|
2021-09-16 07:51:45 -07:00
|
|
|
Command { overrides, .. } | Evaluate { overrides, .. } => {
|
2022-01-30 12:16:10 -08:00
|
|
|
justfile.run(config, &search, overrides, &[])?;
|
2021-09-16 07:51:45 -07:00
|
|
|
}
|
2021-11-17 00:07:48 -08:00
|
|
|
Dump => Self::dump(config, ast, justfile)?,
|
2022-01-30 12:16:10 -08:00
|
|
|
Format => Self::format(config, &search, src, ast)?,
|
2023-12-27 20:27:15 -08:00
|
|
|
List => Self::list(config, 0, justfile),
|
2022-01-30 12:16:10 -08:00
|
|
|
Show { ref name } => Self::show(config, name, justfile)?,
|
2021-07-28 18:06:57 -07:00
|
|
|
Summary => Self::summary(config, justfile),
|
2021-07-26 17:19:52 -07:00
|
|
|
Variables => Self::variables(justfile),
|
2022-03-30 22:13:59 -07:00
|
|
|
Changelog | Completions { .. } | Edit | Init | Run { .. } => unreachable!(),
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
2020-10-05 17:58:30 -07:00
|
|
|
|
2021-07-26 17:19:52 -07:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2023-11-21 11:28:59 -08:00
|
|
|
fn run<'src>(
|
2022-03-30 22:13:59 -07:00
|
|
|
config: &Config,
|
|
|
|
loader: &'src Loader,
|
|
|
|
arguments: &[String],
|
|
|
|
overrides: &BTreeMap<String, String>,
|
|
|
|
) -> Result<(), Error<'src>> {
|
2023-01-03 22:31:56 -08:00
|
|
|
if matches!(
|
|
|
|
config.search_config,
|
|
|
|
SearchConfig::FromInvocationDirectory | SearchConfig::FromSearchDirectory { .. }
|
|
|
|
) {
|
|
|
|
let starting_path = match &config.search_config {
|
2022-09-20 22:46:53 -07:00
|
|
|
SearchConfig::FromInvocationDirectory => config.invocation_directory.clone(),
|
2023-01-03 22:31:56 -08:00
|
|
|
SearchConfig::FromSearchDirectory { search_directory } => {
|
2023-10-16 20:07:09 -07:00
|
|
|
env::current_dir().unwrap().join(search_directory)
|
2023-01-03 22:31:56 -08:00
|
|
|
}
|
2022-09-20 22:46:53 -07:00
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
2022-03-30 22:13:59 -07:00
|
|
|
|
2023-01-03 22:31:56 -08:00
|
|
|
let mut path = starting_path.clone();
|
|
|
|
|
2022-03-30 22:13:59 -07:00
|
|
|
let mut unknown_recipes_errors = None;
|
|
|
|
|
|
|
|
loop {
|
|
|
|
let search = match Search::find_next(&path) {
|
|
|
|
Err(SearchError::NotFound) => match unknown_recipes_errors {
|
|
|
|
Some(err) => return Err(err),
|
|
|
|
None => return Err(SearchError::NotFound.into()),
|
|
|
|
},
|
|
|
|
Err(err) => return Err(err.into()),
|
|
|
|
Ok(search) => {
|
2023-01-13 13:36:52 -08:00
|
|
|
if config.verbosity.loquacious() && path != starting_path {
|
2022-03-30 22:13:59 -07:00
|
|
|
eprintln!(
|
|
|
|
"Trying {}",
|
2023-01-03 22:31:56 -08:00
|
|
|
starting_path
|
2022-03-30 22:13:59 -07:00
|
|
|
.strip_prefix(path)
|
|
|
|
.unwrap()
|
|
|
|
.components()
|
|
|
|
.map(|_| path::Component::ParentDir)
|
|
|
|
.collect::<PathBuf>()
|
|
|
|
.join(search.justfile.file_name().unwrap())
|
|
|
|
.display()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
search
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
match Self::run_inner(config, loader, arguments, overrides, &search) {
|
2022-10-19 19:00:09 -07:00
|
|
|
Err((err @ Error::UnknownRecipes { .. }, true)) => {
|
2022-03-30 22:13:59 -07:00
|
|
|
match search.justfile.parent().unwrap().parent() {
|
|
|
|
Some(parent) => {
|
|
|
|
unknown_recipes_errors.get_or_insert(err);
|
|
|
|
path = parent.into();
|
|
|
|
}
|
|
|
|
None => return Err(err),
|
|
|
|
}
|
|
|
|
}
|
2022-10-19 19:00:09 -07:00
|
|
|
result => return result.map_err(|(err, _fallback)| err),
|
2022-03-30 22:13:59 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Self::run_inner(
|
|
|
|
config,
|
|
|
|
loader,
|
|
|
|
arguments,
|
|
|
|
overrides,
|
|
|
|
&Search::find(&config.search_config, &config.invocation_directory)?,
|
|
|
|
)
|
2022-10-19 19:00:09 -07:00
|
|
|
.map_err(|(err, _fallback)| err)
|
2022-03-30 22:13:59 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run_inner<'src>(
|
|
|
|
config: &Config,
|
|
|
|
loader: &'src Loader,
|
|
|
|
arguments: &[String],
|
|
|
|
overrides: &BTreeMap<String, String>,
|
|
|
|
search: &Search,
|
2022-10-19 19:00:09 -07:00
|
|
|
) -> Result<(), (Error<'src>, bool)> {
|
2023-11-21 11:28:59 -08:00
|
|
|
let compilation = Self::compile(config, loader, search).map_err(|err| (err, false))?;
|
|
|
|
let justfile = &compilation.justfile;
|
2022-10-19 19:00:09 -07:00
|
|
|
justfile
|
|
|
|
.run(config, search, overrides, arguments)
|
|
|
|
.map_err(|err| (err, justfile.settings.fallback))
|
2022-03-30 22:13:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn compile<'src>(
|
|
|
|
config: &Config,
|
|
|
|
loader: &'src Loader,
|
|
|
|
search: &Search,
|
2023-11-21 11:28:59 -08:00
|
|
|
) -> Result<Compilation<'src>, Error<'src>> {
|
2023-12-27 20:27:15 -08:00
|
|
|
let compilation = Compiler::compile(config.unstable, loader, &search.justfile)?;
|
2022-03-30 22:13:59 -07:00
|
|
|
|
|
|
|
if config.verbosity.loud() {
|
2023-11-21 11:28:59 -08:00
|
|
|
for warning in &compilation.justfile.warnings {
|
2022-03-30 22:13:59 -07:00
|
|
|
eprintln!("{}", warning.color_display(config.color.stderr()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-21 11:28:59 -08:00
|
|
|
Ok(compilation)
|
2022-03-30 22:13:59 -07:00
|
|
|
}
|
|
|
|
|
2021-07-31 13:53:27 -07:00
|
|
|
fn changelog() {
|
|
|
|
print!("{}", include_str!("../CHANGELOG.md"));
|
|
|
|
}
|
|
|
|
|
2021-07-26 17:19:52 -07:00
|
|
|
fn choose<'src>(
|
|
|
|
config: &Config,
|
2023-11-21 11:28:59 -08:00
|
|
|
justfile: &Justfile<'src>,
|
2021-07-26 17:19:52 -07:00
|
|
|
search: &Search,
|
|
|
|
overrides: &BTreeMap<String, String>,
|
|
|
|
chooser: Option<&str>,
|
|
|
|
) -> Result<(), Error<'src>> {
|
|
|
|
let recipes = justfile
|
|
|
|
.public_recipes(config.unsorted)
|
|
|
|
.iter()
|
|
|
|
.filter(|recipe| recipe.min_arguments() == 0)
|
2022-01-30 12:16:10 -08:00
|
|
|
.copied()
|
2021-07-26 17:19:52 -07:00
|
|
|
.collect::<Vec<&Recipe<Dependency>>>();
|
|
|
|
|
|
|
|
if recipes.is_empty() {
|
|
|
|
return Err(Error::NoChoosableRecipes);
|
|
|
|
}
|
|
|
|
|
2024-05-14 20:29:40 -07:00
|
|
|
let chooser = chooser.map_or_else(|| config::chooser_default(&search.justfile), From::from);
|
2021-07-26 17:19:52 -07:00
|
|
|
|
|
|
|
let result = justfile
|
|
|
|
.settings
|
2022-01-30 12:16:10 -08:00
|
|
|
.shell_command(config)
|
2021-07-26 17:19:52 -07:00
|
|
|
.arg(&chooser)
|
|
|
|
.current_dir(&search.working_directory)
|
|
|
|
.stdin(Stdio::piped())
|
|
|
|
.stdout(Stdio::piped())
|
|
|
|
.spawn();
|
|
|
|
|
|
|
|
let mut child = match result {
|
|
|
|
Ok(child) => child,
|
|
|
|
Err(io_error) => {
|
2022-08-08 19:50:31 -07:00
|
|
|
let (shell_binary, shell_arguments) = justfile.settings.shell(config);
|
2021-07-26 17:19:52 -07:00
|
|
|
return Err(Error::ChooserInvoke {
|
2022-08-08 19:50:31 -07:00
|
|
|
shell_binary: shell_binary.to_owned(),
|
|
|
|
shell_arguments: shell_arguments.join(" "),
|
2021-07-26 17:19:52 -07:00
|
|
|
chooser,
|
|
|
|
io_error,
|
|
|
|
});
|
2021-09-16 06:44:40 -07:00
|
|
|
}
|
2021-07-26 17:19:52 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
for recipe in recipes {
|
|
|
|
if let Err(io_error) = child
|
|
|
|
.stdin
|
|
|
|
.as_mut()
|
|
|
|
.expect("Child was created with piped stdio")
|
|
|
|
.write_all(format!("{}\n", recipe.name).as_bytes())
|
|
|
|
{
|
|
|
|
return Err(Error::ChooserWrite { io_error, chooser });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let output = match child.wait_with_output() {
|
|
|
|
Ok(output) => output,
|
|
|
|
Err(io_error) => {
|
|
|
|
return Err(Error::ChooserRead { io_error, chooser });
|
2021-09-16 06:44:40 -07:00
|
|
|
}
|
2021-07-26 17:19:52 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
if !output.status.success() {
|
|
|
|
return Err(Error::ChooserStatus {
|
|
|
|
status: output.status,
|
|
|
|
chooser,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
let stdout = String::from_utf8_lossy(&output.stdout);
|
|
|
|
|
|
|
|
let recipes = stdout
|
|
|
|
.split_whitespace()
|
|
|
|
.map(str::to_owned)
|
|
|
|
.collect::<Vec<String>>();
|
|
|
|
|
|
|
|
justfile.run(config, search, overrides, &recipes)
|
|
|
|
}
|
|
|
|
|
2024-05-14 20:29:40 -07:00
|
|
|
fn completions(shell: clap_complete::Shell) -> RunResult<'static, ()> {
|
|
|
|
use clap_complete::Shell;
|
2020-10-05 17:58:30 -07:00
|
|
|
|
2021-07-26 01:26:06 -07:00
|
|
|
fn replace(haystack: &mut String, needle: &str, replacement: &str) -> RunResult<'static, ()> {
|
2020-03-16 17:20:14 -07:00
|
|
|
if let Some(index) = haystack.find(needle) {
|
|
|
|
haystack.replace_range(index..index + needle.len(), replacement);
|
|
|
|
Ok(())
|
|
|
|
} else {
|
2021-07-26 01:26:06 -07:00
|
|
|
Err(Error::internal(format!(
|
2023-01-26 18:49:03 -08:00
|
|
|
"Failed to find text:\n{needle}\n…in completion script:\n{haystack}"
|
2021-07-26 01:26:06 -07:00
|
|
|
)))
|
2020-03-16 17:20:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-14 20:29:40 -07:00
|
|
|
let mut script = {
|
|
|
|
let mut tempfile = tempfile().map_err(|io_error| Error::TempfileIo { io_error })?;
|
2020-03-16 17:20:14 -07:00
|
|
|
|
2024-05-14 20:29:40 -07:00
|
|
|
clap_complete::generate(
|
|
|
|
shell,
|
|
|
|
&mut crate::config::Config::app(),
|
|
|
|
env!("CARGO_PKG_NAME"),
|
|
|
|
&mut tempfile,
|
|
|
|
);
|
|
|
|
|
|
|
|
tempfile
|
|
|
|
.rewind()
|
|
|
|
.map_err(|io_error| Error::TempfileIo { io_error })?;
|
|
|
|
|
|
|
|
let mut buffer = String::new();
|
|
|
|
|
|
|
|
tempfile
|
|
|
|
.read_to_string(&mut buffer)
|
|
|
|
.map_err(|io_error| Error::TempfileIo { io_error })?;
|
|
|
|
|
|
|
|
buffer
|
|
|
|
};
|
2020-03-16 17:20:14 -07:00
|
|
|
|
2020-10-05 17:58:30 -07:00
|
|
|
match shell {
|
2021-09-16 06:44:40 -07:00
|
|
|
Shell::Bash => {
|
2021-07-26 17:19:52 -07:00
|
|
|
for (needle, replacement) in completions::BASH_COMPLETION_REPLACEMENTS {
|
2021-07-26 01:26:06 -07:00
|
|
|
replace(&mut script, needle, replacement)?;
|
2021-09-16 06:44:40 -07:00
|
|
|
}
|
|
|
|
}
|
2020-10-05 17:58:30 -07:00
|
|
|
Shell::Fish => {
|
2021-07-26 17:19:52 -07:00
|
|
|
script.insert_str(0, completions::FISH_RECIPE_COMPLETIONS);
|
2021-09-16 06:44:40 -07:00
|
|
|
}
|
|
|
|
Shell::PowerShell => {
|
2021-07-26 17:19:52 -07:00
|
|
|
for (needle, replacement) in completions::POWERSHELL_COMPLETION_REPLACEMENTS {
|
2021-07-26 01:26:06 -07:00
|
|
|
replace(&mut script, needle, replacement)?;
|
2021-09-16 06:44:40 -07:00
|
|
|
}
|
|
|
|
}
|
2020-10-05 19:12:48 -07:00
|
|
|
|
2021-09-16 06:44:40 -07:00
|
|
|
Shell::Zsh => {
|
2021-07-26 17:19:52 -07:00
|
|
|
for (needle, replacement) in completions::ZSH_COMPLETION_REPLACEMENTS {
|
2021-07-26 01:26:06 -07:00
|
|
|
replace(&mut script, needle, replacement)?;
|
2021-09-16 06:44:40 -07:00
|
|
|
}
|
|
|
|
}
|
2024-05-14 20:29:40 -07:00
|
|
|
_ => {}
|
2020-05-03 20:35:53 -07:00
|
|
|
}
|
|
|
|
|
2020-03-16 17:20:14 -07:00
|
|
|
println!("{}", script.trim());
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2021-07-26 17:19:52 -07:00
|
|
|
|
2023-11-21 11:28:59 -08:00
|
|
|
fn dump(config: &Config, ast: &Ast, justfile: &Justfile) -> Result<(), Error<'static>> {
|
2021-11-17 00:07:48 -08:00
|
|
|
match config.dump_format {
|
|
|
|
DumpFormat::Json => {
|
2023-11-21 11:28:59 -08:00
|
|
|
serde_json::to_writer(io::stdout(), justfile)
|
2021-11-17 00:07:48 -08:00
|
|
|
.map_err(|serde_json_error| Error::DumpJson { serde_json_error })?;
|
|
|
|
println!();
|
|
|
|
}
|
2022-12-15 16:53:21 -08:00
|
|
|
DumpFormat::Just => print!("{ast}"),
|
2021-11-17 00:07:48 -08:00
|
|
|
}
|
|
|
|
Ok(())
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn edit(search: &Search) -> Result<(), Error<'static>> {
|
|
|
|
let editor = env::var_os("VISUAL")
|
|
|
|
.or_else(|| env::var_os("EDITOR"))
|
|
|
|
.unwrap_or_else(|| "vim".into());
|
|
|
|
|
|
|
|
let error = Command::new(&editor)
|
|
|
|
.current_dir(&search.working_directory)
|
|
|
|
.arg(&search.justfile)
|
|
|
|
.status();
|
|
|
|
|
|
|
|
let status = match error {
|
|
|
|
Err(io_error) => return Err(Error::EditorInvoke { editor, io_error }),
|
|
|
|
Ok(status) => status,
|
|
|
|
};
|
|
|
|
|
|
|
|
if !status.success() {
|
|
|
|
return Err(Error::EditorStatus { editor, status });
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2023-11-21 11:28:59 -08:00
|
|
|
fn format(config: &Config, search: &Search, src: &str, ast: &Ast) -> Result<(), Error<'static>> {
|
2021-07-26 17:19:52 -07:00
|
|
|
config.require_unstable("The `--fmt` command is currently unstable.")?;
|
|
|
|
|
2021-10-31 23:18:11 -07:00
|
|
|
let formatted = ast.to_string();
|
|
|
|
|
2021-10-31 21:27:59 -07:00
|
|
|
if config.check {
|
2022-09-11 02:25:38 -07:00
|
|
|
return if formatted == src {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
2022-12-20 20:57:58 -08:00
|
|
|
if !config.verbosity.quiet() {
|
|
|
|
use similar::{ChangeTag, TextDiff};
|
|
|
|
|
|
|
|
let diff = TextDiff::configure()
|
|
|
|
.algorithm(similar::Algorithm::Patience)
|
|
|
|
.diff_lines(src, &formatted);
|
|
|
|
|
|
|
|
for op in diff.ops() {
|
|
|
|
for change in diff.iter_changes(op) {
|
|
|
|
let (symbol, color) = match change.tag() {
|
2023-01-13 10:30:27 -08:00
|
|
|
ChangeTag::Delete => ("-", config.color.stdout().diff_deleted()),
|
|
|
|
ChangeTag::Equal => (" ", config.color.stdout()),
|
|
|
|
ChangeTag::Insert => ("+", config.color.stdout().diff_added()),
|
2022-12-20 20:57:58 -08:00
|
|
|
};
|
|
|
|
|
2023-01-13 10:30:27 -08:00
|
|
|
print!("{}{symbol}{change}{}", color.prefix(), color.suffix());
|
2022-12-20 20:57:58 -08:00
|
|
|
}
|
2021-10-31 23:18:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-31 21:27:59 -07:00
|
|
|
Err(Error::FormatCheckFoundDiff)
|
2021-10-31 23:18:11 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fs::write(&search.justfile, formatted).map_err(|io_error| Error::WriteJustfile {
|
|
|
|
justfile: search.justfile.clone(),
|
|
|
|
io_error,
|
|
|
|
})?;
|
|
|
|
|
|
|
|
if config.verbosity.loud() {
|
|
|
|
eprintln!("Wrote justfile to `{}`", search.justfile.display());
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
2021-10-31 23:18:11 -07:00
|
|
|
|
|
|
|
Ok(())
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn init(config: &Config) -> Result<(), Error<'static>> {
|
|
|
|
let search = Search::init(&config.search_config, &config.invocation_directory)?;
|
|
|
|
|
|
|
|
if search.justfile.is_file() {
|
|
|
|
Err(Error::InitExists {
|
|
|
|
justfile: search.justfile,
|
|
|
|
})
|
|
|
|
} else if let Err(io_error) = fs::write(&search.justfile, INIT_JUSTFILE) {
|
|
|
|
Err(Error::WriteJustfile {
|
|
|
|
justfile: search.justfile,
|
|
|
|
io_error,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
if config.verbosity.loud() {
|
|
|
|
eprintln!("Wrote justfile to `{}`", search.justfile.display());
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-27 20:27:15 -08:00
|
|
|
fn list(config: &Config, level: usize, justfile: &Justfile) {
|
2024-05-14 19:37:00 -07:00
|
|
|
const MAX_WIDTH: usize = 50;
|
|
|
|
|
2021-07-26 17:19:52 -07:00
|
|
|
// Construct a target to alias map.
|
|
|
|
let mut recipe_aliases: BTreeMap<&str, Vec<&str>> = BTreeMap::new();
|
2024-03-26 12:20:46 -07:00
|
|
|
if !config.no_aliases {
|
|
|
|
for alias in justfile.aliases.values() {
|
|
|
|
if alias.is_private() {
|
|
|
|
continue;
|
|
|
|
}
|
2021-07-26 17:19:52 -07:00
|
|
|
|
2024-03-26 12:20:46 -07:00
|
|
|
if recipe_aliases.contains_key(alias.target.name.lexeme()) {
|
|
|
|
let aliases = recipe_aliases.get_mut(alias.target.name.lexeme()).unwrap();
|
|
|
|
aliases.push(alias.name.lexeme());
|
|
|
|
} else {
|
|
|
|
recipe_aliases.insert(alias.target.name.lexeme(), vec![alias.name.lexeme()]);
|
|
|
|
}
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut line_widths: BTreeMap<&str, usize> = BTreeMap::new();
|
|
|
|
|
|
|
|
for (name, recipe) in &justfile.recipes {
|
2024-01-09 00:07:43 -08:00
|
|
|
if !recipe.is_public() {
|
2021-07-26 17:19:52 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for name in iter::once(name).chain(recipe_aliases.get(name).unwrap_or(&Vec::new())) {
|
|
|
|
let mut line_width = UnicodeWidthStr::width(*name);
|
|
|
|
|
|
|
|
for parameter in &recipe.parameters {
|
2021-07-28 18:06:57 -07:00
|
|
|
line_width += UnicodeWidthStr::width(
|
|
|
|
format!(" {}", parameter.color_display(Color::never())).as_str(),
|
|
|
|
);
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
|
|
|
|
2024-05-14 19:37:00 -07:00
|
|
|
if line_width <= MAX_WIDTH {
|
2021-07-26 17:19:52 -07:00
|
|
|
line_widths.insert(name, line_width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-14 19:37:00 -07:00
|
|
|
let max_line_width = cmp::min(line_widths.values().copied().max().unwrap_or(0), MAX_WIDTH);
|
2021-07-26 17:19:52 -07:00
|
|
|
let doc_color = config.color.stdout().doc();
|
2023-12-27 20:27:15 -08:00
|
|
|
|
|
|
|
if level == 0 {
|
|
|
|
print!("{}", config.list_heading);
|
|
|
|
}
|
2021-07-26 17:19:52 -07:00
|
|
|
|
|
|
|
for recipe in justfile.public_recipes(config.unsorted) {
|
|
|
|
let name = recipe.name();
|
|
|
|
|
|
|
|
for (i, name) in iter::once(&name)
|
|
|
|
.chain(recipe_aliases.get(name).unwrap_or(&Vec::new()))
|
|
|
|
.enumerate()
|
|
|
|
{
|
2023-12-27 20:27:15 -08:00
|
|
|
print!("{}{name}", config.list_prefix.repeat(level + 1));
|
2021-07-26 17:19:52 -07:00
|
|
|
for parameter in &recipe.parameters {
|
2021-07-28 18:06:57 -07:00
|
|
|
print!(" {}", parameter.color_display(config.color.stdout()));
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Declaring this outside of the nested loops will probably be more efficient,
|
|
|
|
// but it creates all sorts of lifetime issues with variables inside the loops.
|
|
|
|
// If this is inlined like the docs say, it shouldn't make any difference.
|
|
|
|
let print_doc = |doc| {
|
|
|
|
print!(
|
|
|
|
" {:padding$}{} {}",
|
|
|
|
"",
|
|
|
|
doc_color.paint("#"),
|
|
|
|
doc_color.paint(doc),
|
|
|
|
padding = max_line_width
|
2022-01-30 12:16:10 -08:00
|
|
|
.saturating_sub(line_widths.get(name).copied().unwrap_or(max_line_width))
|
2021-07-26 17:19:52 -07:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
match (i, recipe.doc) {
|
|
|
|
(0, Some(doc)) => print_doc(doc),
|
|
|
|
(0, None) => (),
|
|
|
|
_ => {
|
|
|
|
let alias_doc = format!("alias for `{}`", recipe.name);
|
|
|
|
print_doc(&alias_doc);
|
2021-09-16 06:44:40 -07:00
|
|
|
}
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
|
|
|
println!();
|
|
|
|
}
|
|
|
|
}
|
2023-12-27 20:27:15 -08:00
|
|
|
|
|
|
|
for (name, module) in &justfile.modules {
|
|
|
|
println!(" {name}:");
|
|
|
|
Self::list(config, level + 1, module);
|
|
|
|
}
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
|
|
|
|
2023-11-21 11:28:59 -08:00
|
|
|
fn show<'src>(config: &Config, name: &str, justfile: &Justfile<'src>) -> Result<(), Error<'src>> {
|
2021-07-26 17:19:52 -07:00
|
|
|
if let Some(alias) = justfile.get_alias(name) {
|
|
|
|
let recipe = justfile.get_recipe(alias.target.name.lexeme()).unwrap();
|
2022-12-15 16:53:21 -08:00
|
|
|
println!("{alias}");
|
2021-07-28 18:06:57 -07:00
|
|
|
println!("{}", recipe.color_display(config.color.stdout()));
|
2021-07-26 17:19:52 -07:00
|
|
|
Ok(())
|
|
|
|
} else if let Some(recipe) = justfile.get_recipe(name) {
|
2021-07-28 18:06:57 -07:00
|
|
|
println!("{}", recipe.color_display(config.color.stdout()));
|
2021-07-26 17:19:52 -07:00
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(Error::UnknownRecipes {
|
2021-09-16 06:44:40 -07:00
|
|
|
recipes: vec![name.to_owned()],
|
2021-07-26 17:19:52 -07:00
|
|
|
suggestion: justfile.suggest_recipe(name),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-21 11:28:59 -08:00
|
|
|
fn summary(config: &Config, justfile: &Justfile) {
|
2023-12-28 19:06:48 -08:00
|
|
|
let mut printed = 0;
|
|
|
|
Self::summary_recursive(config, &mut Vec::new(), &mut printed, justfile);
|
|
|
|
println!();
|
|
|
|
|
|
|
|
if printed == 0 && config.verbosity.loud() {
|
|
|
|
eprintln!("Justfile contains no recipes.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn summary_recursive<'a>(
|
|
|
|
config: &Config,
|
|
|
|
components: &mut Vec<&'a str>,
|
|
|
|
printed: &mut usize,
|
|
|
|
justfile: &'a Justfile,
|
|
|
|
) {
|
|
|
|
let path = components.join("::");
|
|
|
|
|
|
|
|
for recipe in justfile.public_recipes(config.unsorted) {
|
|
|
|
if *printed > 0 {
|
|
|
|
print!(" ");
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
2023-12-28 19:06:48 -08:00
|
|
|
if path.is_empty() {
|
|
|
|
print!("{}", recipe.name());
|
|
|
|
} else {
|
|
|
|
print!("{}::{}", path, recipe.name());
|
|
|
|
}
|
|
|
|
*printed += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (name, module) in &justfile.modules {
|
|
|
|
components.push(name);
|
|
|
|
Self::summary_recursive(config, components, printed, module);
|
|
|
|
components.pop();
|
2021-07-26 17:19:52 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-21 11:28:59 -08:00
|
|
|
fn variables(justfile: &Justfile) {
|
2021-07-26 17:19:52 -07:00
|
|
|
for (i, (_, assignment)) in justfile.assignments.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
print!(" ");
|
|
|
|
}
|
|
|
|
print!("{}", assignment.name);
|
|
|
|
}
|
|
|
|
println!();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn init_justfile() {
|
|
|
|
testing::compile(INIT_JUSTFILE);
|
|
|
|
}
|
2020-03-16 17:20:14 -07:00
|
|
|
}
|