2017-04-21 22:11:18 -07:00
|
|
|
extern crate ansi_term;
|
|
|
|
extern crate atty;
|
2016-10-23 16:43:52 -07:00
|
|
|
extern crate clap;
|
2017-04-21 22:11:18 -07:00
|
|
|
extern crate libc;
|
2016-10-23 16:43:52 -07:00
|
|
|
|
2017-04-21 22:11:18 -07:00
|
|
|
use ::prelude::*;
|
|
|
|
use std::{convert, ffi};
|
2016-10-30 03:08:28 -07:00
|
|
|
use std::collections::BTreeMap;
|
2016-11-12 13:31:54 -08:00
|
|
|
use self::clap::{App, Arg, ArgGroup, AppSettings};
|
2017-04-23 14:21:21 -07:00
|
|
|
use super::{Slurp, RunOptions, compile, DEFAULT_SHELL};
|
2016-10-23 16:43:52 -07:00
|
|
|
|
|
|
|
macro_rules! warn {
|
|
|
|
($($arg:tt)*) => {{
|
|
|
|
extern crate std;
|
|
|
|
use std::io::prelude::*;
|
|
|
|
let _ = writeln!(&mut std::io::stderr(), $($arg)*);
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
macro_rules! die {
|
|
|
|
($($arg:tt)*) => {{
|
|
|
|
extern crate std;
|
|
|
|
warn!($($arg)*);
|
2017-04-21 22:11:18 -07:00
|
|
|
process::exit(EXIT_FAILURE)
|
2016-10-23 16:43:52 -07:00
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
2016-11-07 21:01:27 -08:00
|
|
|
#[derive(Copy, Clone)]
|
2016-11-16 21:06:51 -08:00
|
|
|
pub enum UseColor {
|
2016-11-07 21:01:27 -08:00
|
|
|
Auto,
|
|
|
|
Always,
|
|
|
|
Never,
|
|
|
|
}
|
|
|
|
|
2016-11-16 21:06:51 -08:00
|
|
|
impl Default for UseColor {
|
|
|
|
fn default() -> UseColor {
|
|
|
|
UseColor::Never
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-07 21:01:27 -08:00
|
|
|
impl UseColor {
|
2016-11-15 20:39:56 -08:00
|
|
|
fn from_argument(use_color: &str) -> Option<UseColor> {
|
2016-11-07 21:01:27 -08:00
|
|
|
match use_color {
|
2016-11-15 20:39:56 -08:00
|
|
|
"auto" => Some(UseColor::Auto),
|
|
|
|
"always" => Some(UseColor::Always),
|
|
|
|
"never" => Some(UseColor::Never),
|
|
|
|
_ => None,
|
2016-11-07 21:01:27 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn should_color_stream(self, stream: atty::Stream) -> bool {
|
|
|
|
match self {
|
|
|
|
UseColor::Auto => atty::is(stream),
|
|
|
|
UseColor::Always => true,
|
2016-11-11 18:46:04 -08:00
|
|
|
UseColor::Never => false,
|
2016-11-07 21:01:27 -08:00
|
|
|
}
|
|
|
|
}
|
2016-11-12 23:31:19 -08:00
|
|
|
|
2016-11-16 21:06:51 -08:00
|
|
|
pub fn should_color_stdout(self) -> bool {
|
|
|
|
self.should_color_stream(atty::Stream::Stdout)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn should_color_stderr(self) -> bool {
|
|
|
|
self.should_color_stream(atty::Stream::Stderr)
|
|
|
|
}
|
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
fn blue(self, stream: atty::Stream) -> ansi_term::Style {
|
|
|
|
if self.should_color_stream(stream) {
|
|
|
|
ansi_term::Style::new().fg(ansi_term::Color::Blue)
|
|
|
|
} else {
|
|
|
|
ansi_term::Style::default()
|
|
|
|
}
|
|
|
|
}
|
2016-11-07 21:01:27 -08:00
|
|
|
}
|
|
|
|
|
2016-11-12 14:02:15 -08:00
|
|
|
fn edit<P: convert::AsRef<ffi::OsStr>>(path: P) -> ! {
|
|
|
|
let editor = env::var_os("EDITOR")
|
|
|
|
.unwrap_or_else(|| die!("Error getting EDITOR environment variable"));
|
|
|
|
|
|
|
|
let error = process::Command::new(editor)
|
|
|
|
.arg(path)
|
|
|
|
.status();
|
|
|
|
|
|
|
|
match error {
|
2017-04-21 22:11:18 -07:00
|
|
|
Ok(status) => process::exit(status.code().unwrap_or(EXIT_FAILURE)),
|
2016-11-12 14:02:15 -08:00
|
|
|
Err(error) => die!("Failed to invoke editor: {}", error),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-23 16:43:52 -07:00
|
|
|
pub fn app() {
|
2016-10-30 18:12:59 -07:00
|
|
|
let matches = App::new("just")
|
2016-11-10 23:09:02 -08:00
|
|
|
.version(concat!("v", env!("CARGO_PKG_VERSION")))
|
2016-10-30 13:14:39 -07:00
|
|
|
.author("Casey Rodarmor <casey@rodarmor.com>")
|
2016-10-30 18:12:59 -07:00
|
|
|
.about("Just a command runner - https://github.com/casey/just")
|
2016-11-07 21:05:07 -08:00
|
|
|
.setting(AppSettings::ColoredHelp)
|
2017-04-20 23:24:23 -07:00
|
|
|
.arg(Arg::with_name("ARGUMENTS")
|
2017-04-20 22:49:51 -07:00
|
|
|
.multiple(true)
|
|
|
|
.help("The recipe(s) to run, defaults to the first recipe in the justfile"))
|
2017-04-20 23:24:23 -07:00
|
|
|
.arg(Arg::with_name("COLOR")
|
2017-04-20 22:49:51 -07:00
|
|
|
.long("color")
|
|
|
|
.takes_value(true)
|
|
|
|
.possible_values(&["auto", "always", "never"])
|
|
|
|
.default_value("auto")
|
|
|
|
.help("Prints colorful output"))
|
2017-04-20 23:24:23 -07:00
|
|
|
.arg(Arg::with_name("DRY-RUN")
|
2017-04-20 22:49:51 -07:00
|
|
|
.long("dry-run")
|
|
|
|
.help("Prints what just would do without doing it")
|
|
|
|
.conflicts_with("quiet"))
|
2017-04-20 23:24:23 -07:00
|
|
|
.arg(Arg::with_name("DUMP")
|
2016-11-11 20:25:37 -08:00
|
|
|
.long("dump")
|
2016-11-12 13:31:54 -08:00
|
|
|
.help("Prints entire justfile"))
|
2017-04-20 23:24:23 -07:00
|
|
|
.arg(Arg::with_name("EDIT")
|
2016-11-12 14:02:15 -08:00
|
|
|
.short("e")
|
|
|
|
.long("edit")
|
|
|
|
.help("Opens justfile with $EDITOR"))
|
2017-04-20 23:24:23 -07:00
|
|
|
.arg(Arg::with_name("EVALUATE")
|
2017-04-20 22:49:51 -07:00
|
|
|
.long("evaluate")
|
|
|
|
.help("Prints evaluated variables"))
|
2017-04-25 23:39:34 -07:00
|
|
|
.arg(Arg::with_name("HIGHLIGHT")
|
|
|
|
.long("highlight")
|
|
|
|
.help("Highlight echoed recipe lines in bold"))
|
2017-04-20 23:24:23 -07:00
|
|
|
.arg(Arg::with_name("JUSTFILE")
|
2017-04-20 22:49:51 -07:00
|
|
|
.long("justfile")
|
|
|
|
.takes_value(true)
|
2017-04-20 23:24:23 -07:00
|
|
|
.help("Uses <JUSTFILE> as justfile. --working-directory must also be set")
|
|
|
|
.requires("WORKING-DIRECTORY"))
|
|
|
|
.arg(Arg::with_name("LIST")
|
2017-04-20 22:49:51 -07:00
|
|
|
.short("l")
|
|
|
|
.long("list")
|
|
|
|
.help("Lists available recipes and their arguments"))
|
2017-04-20 23:24:23 -07:00
|
|
|
.arg(Arg::with_name("QUIET")
|
2016-11-05 01:01:43 -07:00
|
|
|
.short("q")
|
|
|
|
.long("quiet")
|
2016-11-12 09:52:52 -08:00
|
|
|
.help("Suppresses all output")
|
2017-04-20 23:24:23 -07:00
|
|
|
.conflicts_with("DRY-RUN"))
|
|
|
|
.arg(Arg::with_name("SET")
|
2016-10-30 03:08:28 -07:00
|
|
|
.long("set")
|
|
|
|
.takes_value(true)
|
|
|
|
.number_of_values(2)
|
2017-04-20 23:24:23 -07:00
|
|
|
.value_names(&["VARIABLE", "VALUE"])
|
2016-10-30 03:08:28 -07:00
|
|
|
.multiple(true)
|
2017-04-20 23:24:23 -07:00
|
|
|
.help("Sets <VARIABLE> to <VALUE>"))
|
|
|
|
.arg(Arg::with_name("SHELL")
|
2017-04-20 23:06:03 -07:00
|
|
|
.long("shell")
|
|
|
|
.takes_value(true)
|
|
|
|
.default_value(DEFAULT_SHELL)
|
2017-04-20 23:24:23 -07:00
|
|
|
.help("Invoke <SHELL> to run recipes"))
|
|
|
|
.arg(Arg::with_name("SHOW")
|
2017-04-20 22:49:51 -07:00
|
|
|
.short("s")
|
|
|
|
.long("show")
|
2016-10-23 19:56:30 -07:00
|
|
|
.takes_value(true)
|
2017-04-20 23:24:23 -07:00
|
|
|
.value_name("RECIPE")
|
|
|
|
.help("Shows information about <RECIPE>"))
|
|
|
|
.arg(Arg::with_name("SUMMARY")
|
2017-04-20 22:49:51 -07:00
|
|
|
.long("summary")
|
|
|
|
.help("Lists names of available recipes"))
|
2017-04-20 23:24:23 -07:00
|
|
|
.arg(Arg::with_name("VERBOSE")
|
|
|
|
.short("v")
|
|
|
|
.long("verbose")
|
2017-04-20 22:49:51 -07:00
|
|
|
.help("Use verbose output"))
|
2017-04-20 23:24:23 -07:00
|
|
|
.arg(Arg::with_name("WORKING-DIRECTORY")
|
2017-04-20 22:49:51 -07:00
|
|
|
.long("working-directory")
|
|
|
|
.takes_value(true)
|
2017-04-20 23:24:23 -07:00
|
|
|
.help("Uses <WORKING-DIRECTORY> as working directory. --justfile must also be set")
|
|
|
|
.requires("JUSTFILE"))
|
|
|
|
.group(ArgGroup::with_name("EARLY-EXIT")
|
|
|
|
.args(&["DUMP", "EDIT", "LIST", "SHOW", "SUMMARY", "ARGUMENTS", "EVALUATE"]))
|
2016-10-23 16:43:52 -07:00
|
|
|
.get_matches();
|
|
|
|
|
2017-04-20 23:24:23 -07:00
|
|
|
let use_color_argument = matches.value_of("COLOR").expect("--color had no value");
|
2016-11-15 20:39:56 -08:00
|
|
|
let use_color = match UseColor::from_argument(use_color_argument) {
|
|
|
|
Some(use_color) => use_color,
|
|
|
|
None => die!("Invalid argument to --color. This is a bug in just."),
|
|
|
|
};
|
2016-11-07 21:01:27 -08:00
|
|
|
|
2017-04-20 23:24:23 -07:00
|
|
|
let set_count = matches.occurrences_of("SET");
|
2016-12-30 00:09:35 -08:00
|
|
|
let mut overrides = BTreeMap::new();
|
|
|
|
if set_count > 0 {
|
2017-04-20 23:24:23 -07:00
|
|
|
let mut values = matches.values_of("SET").unwrap();
|
2016-12-30 00:09:35 -08:00
|
|
|
for _ in 0..set_count {
|
|
|
|
overrides.insert(values.next().unwrap(), values.next().unwrap());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-21 22:20:13 -07:00
|
|
|
let override_re = Regex::new("^([^=]+)=(.*)$").unwrap();
|
2016-12-30 00:09:35 -08:00
|
|
|
|
2017-04-20 23:24:23 -07:00
|
|
|
let raw_arguments = matches.values_of("ARGUMENTS").map(|values| values.collect::<Vec<_>>())
|
2016-12-30 00:09:35 -08:00
|
|
|
.unwrap_or_default();
|
|
|
|
|
|
|
|
for argument in raw_arguments.iter().take_while(|arg| override_re.is_match(arg)) {
|
|
|
|
let captures = override_re.captures(argument).unwrap();
|
|
|
|
overrides.insert(captures.at(1).unwrap(), captures.at(2).unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
let rest = raw_arguments.iter().skip_while(|arg| override_re.is_match(arg))
|
|
|
|
.enumerate()
|
|
|
|
.flat_map(|(i, argument)| {
|
|
|
|
if i == 0 {
|
2016-12-30 00:23:32 -08:00
|
|
|
if let Some(i) = argument.rfind('/') {
|
2017-04-20 23:24:23 -07:00
|
|
|
if matches.is_present("WORKING-DIRECTORY") {
|
2016-12-30 00:09:35 -08:00
|
|
|
die!("--working-directory and a path prefixed recipe may not be used together.");
|
|
|
|
}
|
|
|
|
|
|
|
|
let (dir, recipe) = argument.split_at(i + 1);
|
|
|
|
|
|
|
|
if let Err(error) = env::set_current_dir(dir) {
|
|
|
|
die!("Error changing directory: {}", error);
|
|
|
|
}
|
|
|
|
|
|
|
|
if recipe.is_empty() {
|
|
|
|
return None;
|
|
|
|
} else {
|
|
|
|
return Some(recipe);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(*argument)
|
|
|
|
})
|
|
|
|
.collect::<Vec<&str>>();
|
|
|
|
|
2017-04-20 23:24:23 -07:00
|
|
|
let justfile_option = matches.value_of("JUSTFILE");
|
|
|
|
let working_directory_option = matches.value_of("WORKING-DIRECTORY");
|
2016-10-23 19:56:30 -07:00
|
|
|
|
|
|
|
let text;
|
|
|
|
if let (Some(file), Some(directory)) = (justfile_option, working_directory_option) {
|
2017-04-20 23:24:23 -07:00
|
|
|
if matches.is_present("EDIT") {
|
2016-11-12 14:02:15 -08:00
|
|
|
edit(file);
|
|
|
|
}
|
|
|
|
|
2016-10-23 19:56:30 -07:00
|
|
|
text = fs::File::open(file)
|
|
|
|
.unwrap_or_else(|error| die!("Error opening justfile: {}", error))
|
|
|
|
.slurp()
|
|
|
|
.unwrap_or_else(|error| die!("Error reading justfile: {}", error));
|
|
|
|
|
|
|
|
if let Err(error) = env::set_current_dir(directory) {
|
|
|
|
die!("Error changing directory to {}: {}", directory, error);
|
|
|
|
}
|
|
|
|
} else {
|
2016-11-05 01:25:36 -07:00
|
|
|
let name;
|
|
|
|
'outer: loop {
|
|
|
|
for candidate in &["justfile", "Justfile"] {
|
|
|
|
match fs::metadata(candidate) {
|
|
|
|
Ok(metadata) => if metadata.is_file() {
|
|
|
|
name = *candidate;
|
|
|
|
break 'outer;
|
|
|
|
},
|
|
|
|
Err(error) => {
|
|
|
|
if error.kind() != io::ErrorKind::NotFound {
|
|
|
|
die!("Error fetching justfile metadata: {}", error)
|
|
|
|
}
|
2016-10-23 19:56:30 -07:00
|
|
|
}
|
2016-10-23 16:43:52 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-23 19:56:30 -07:00
|
|
|
match env::current_dir() {
|
|
|
|
Ok(pathbuf) => if pathbuf.as_os_str() == "/" { die!("No justfile found."); },
|
|
|
|
Err(error) => die!("Error getting current dir: {}", error),
|
|
|
|
}
|
2016-10-23 16:43:52 -07:00
|
|
|
|
2016-10-23 19:56:30 -07:00
|
|
|
if let Err(error) = env::set_current_dir("..") {
|
|
|
|
die!("Error changing directory: {}", error);
|
|
|
|
}
|
2016-10-23 16:43:52 -07:00
|
|
|
}
|
|
|
|
|
2017-04-20 23:24:23 -07:00
|
|
|
if matches.is_present("EDIT") {
|
2016-11-12 14:02:15 -08:00
|
|
|
edit(name);
|
|
|
|
}
|
|
|
|
|
2016-11-05 01:25:36 -07:00
|
|
|
text = fs::File::open(name)
|
2016-10-23 19:56:30 -07:00
|
|
|
.unwrap_or_else(|error| die!("Error opening justfile: {}", error))
|
|
|
|
.slurp()
|
|
|
|
.unwrap_or_else(|error| die!("Error reading justfile: {}", error));
|
|
|
|
}
|
2016-10-23 16:43:52 -07:00
|
|
|
|
2016-11-16 20:17:24 -08:00
|
|
|
let justfile = compile(&text).unwrap_or_else(|error|
|
2016-11-16 21:06:51 -08:00
|
|
|
if use_color.should_color_stderr() {
|
2016-11-07 21:01:27 -08:00
|
|
|
die!("{:#}", error);
|
|
|
|
} else {
|
|
|
|
die!("{}", error);
|
|
|
|
}
|
|
|
|
);
|
2016-10-23 16:43:52 -07:00
|
|
|
|
2017-04-20 23:24:23 -07:00
|
|
|
if matches.is_present("SUMMARY") {
|
2016-10-23 16:43:52 -07:00
|
|
|
if justfile.count() == 0 {
|
2016-11-12 11:40:52 -08:00
|
|
|
warn!("Justfile contains no recipes.");
|
2016-10-23 16:43:52 -07:00
|
|
|
} else {
|
2016-11-12 14:43:47 -08:00
|
|
|
println!("{}", justfile.recipes.keys().cloned().collect::<Vec<_>>().join(" "));
|
2016-10-23 16:43:52 -07:00
|
|
|
}
|
2017-04-21 22:11:18 -07:00
|
|
|
process::exit(EXIT_SUCCESS);
|
2016-10-23 16:43:52 -07:00
|
|
|
}
|
|
|
|
|
2017-04-20 23:24:23 -07:00
|
|
|
if matches.is_present("DUMP") {
|
2016-11-11 20:25:37 -08:00
|
|
|
println!("{}", justfile);
|
2017-04-21 22:11:18 -07:00
|
|
|
process::exit(EXIT_SUCCESS);
|
2016-11-11 20:25:37 -08:00
|
|
|
}
|
|
|
|
|
2017-04-20 23:24:23 -07:00
|
|
|
if matches.is_present("LIST") {
|
2016-11-12 23:31:19 -08:00
|
|
|
let blue = use_color.blue(atty::Stream::Stdout);
|
2016-11-12 11:40:52 -08:00
|
|
|
println!("Available recipes:");
|
|
|
|
for (name, recipe) in &justfile.recipes {
|
|
|
|
print!(" {}", name);
|
|
|
|
for parameter in &recipe.parameters {
|
2016-11-16 21:06:51 -08:00
|
|
|
if use_color.should_color_stdout() {
|
2016-11-12 23:31:19 -08:00
|
|
|
print!(" {:#}", parameter);
|
|
|
|
} else {
|
|
|
|
print!(" {}", parameter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(doc) = recipe.doc {
|
|
|
|
print!(" {} {}", blue.paint("#"), blue.paint(doc));
|
2016-11-12 11:40:52 -08:00
|
|
|
}
|
|
|
|
println!("");
|
|
|
|
}
|
2017-04-21 22:11:18 -07:00
|
|
|
process::exit(EXIT_SUCCESS);
|
2016-11-12 11:40:52 -08:00
|
|
|
}
|
|
|
|
|
2017-04-20 23:24:23 -07:00
|
|
|
if let Some(name) = matches.value_of("SHOW") {
|
2016-11-12 11:40:52 -08:00
|
|
|
match justfile.recipes.get(name) {
|
2016-10-23 16:43:52 -07:00
|
|
|
Some(recipe) => {
|
2016-10-28 16:32:13 -07:00
|
|
|
println!("{}", recipe);
|
2017-04-21 22:11:18 -07:00
|
|
|
process::exit(EXIT_SUCCESS);
|
2016-10-23 16:43:52 -07:00
|
|
|
}
|
2016-11-12 12:36:12 -08:00
|
|
|
None => {
|
|
|
|
warn!("Justfile does not contain recipe `{}`.", name);
|
|
|
|
if let Some(suggestion) = justfile.suggest(name) {
|
|
|
|
warn!("Did you mean `{}`?", suggestion);
|
|
|
|
}
|
2017-04-21 22:11:18 -07:00
|
|
|
process::exit(EXIT_FAILURE)
|
2016-11-12 12:36:12 -08:00
|
|
|
}
|
2016-10-23 16:43:52 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-13 21:26:28 -08:00
|
|
|
let arguments = if !rest.is_empty() {
|
2016-10-30 03:08:28 -07:00
|
|
|
rest
|
2016-10-29 00:14:41 -07:00
|
|
|
} else if let Some(recipe) = justfile.first() {
|
|
|
|
vec![recipe]
|
2016-10-23 16:43:52 -07:00
|
|
|
} else {
|
|
|
|
die!("Justfile contains no recipes");
|
|
|
|
};
|
|
|
|
|
2016-11-16 20:17:24 -08:00
|
|
|
let options = RunOptions {
|
2017-04-20 23:24:23 -07:00
|
|
|
dry_run: matches.is_present("DRY-RUN"),
|
|
|
|
evaluate: matches.is_present("EVALUATE"),
|
2017-04-25 23:39:34 -07:00
|
|
|
highlight: matches.is_present("HIGHLIGHT"),
|
2016-11-05 00:31:38 -07:00
|
|
|
overrides: overrides,
|
2017-04-20 23:24:23 -07:00
|
|
|
quiet: matches.is_present("QUIET"),
|
|
|
|
shell: matches.value_of("SHELL"),
|
2016-11-16 21:06:51 -08:00
|
|
|
use_color: use_color,
|
2017-04-20 23:24:23 -07:00
|
|
|
verbose: matches.is_present("VERBOSE"),
|
2016-11-05 00:31:38 -07:00
|
|
|
};
|
2016-10-30 13:14:39 -07:00
|
|
|
|
2016-11-05 00:31:38 -07:00
|
|
|
if let Err(run_error) = justfile.run(&arguments, &options) {
|
2016-11-05 01:01:43 -07:00
|
|
|
if !options.quiet {
|
2016-11-16 21:06:51 -08:00
|
|
|
if use_color.should_color_stderr() {
|
2016-11-07 21:01:27 -08:00
|
|
|
warn!("{:#}", run_error);
|
|
|
|
} else {
|
|
|
|
warn!("{}", run_error);
|
|
|
|
}
|
2016-11-05 01:01:43 -07:00
|
|
|
}
|
2017-04-23 14:21:21 -07:00
|
|
|
|
|
|
|
process::exit(run_error.code().unwrap_or(libc::EXIT_FAILURE));
|
2016-10-23 16:43:52 -07:00
|
|
|
}
|
|
|
|
}
|