support expand.color setting in cargo config

This commit is contained in:
Adam H. Leventhal 2020-03-29 12:07:12 -07:00
parent 93c24c275d
commit 2ad08111b2
4 changed files with 52 additions and 19 deletions

View file

@ -107,8 +107,9 @@ To expand a specific module or type or function only:
## Configuration ## Configuration
The cargo expand command reads the `[expand]` section of $CARGO_HOME/config if The cargo expand command reads the `[expand]` section of $CARGO_HOME/config if
there is one (usually ~/.cargo/config). Currently the only configuration option there is one (usually ~/.cargo/config).
is the syntax highlighting theme.
Set the default syntax highlighting theme with the `theme` setting:
```toml ```toml
[expand] [expand]
@ -118,6 +119,14 @@ theme = "TwoDark"
Run `cargo expand --themes` to print a list of available themes. Use `theme = Run `cargo expand --themes` to print a list of available themes. Use `theme =
"none"` to disable coloring. "none"` to disable coloring.
Change the default coloring disposition (normally `auto`) with the `color`
setting:
```toml
[expand]
color = "always"
```
## Disclaimer ## Disclaimer
Be aware that macro expansion to text is a lossy process. This is a debugging Be aware that macro expansion to text is a lossy process. This is a debugging

View file

@ -14,6 +14,7 @@ struct Sections {
#[derive(Deserialize, Default)] #[derive(Deserialize, Default)]
pub struct Config { pub struct Config {
pub theme: Option<String>, pub theme: Option<String>,
pub color: Option<String>,
} }
pub fn deserialize() -> Config { pub fn deserialize() -> Config {

View file

@ -11,6 +11,7 @@ use std::fs;
use std::io::{self, BufRead, Write}; use std::io::{self, BufRead, Write};
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use std::process::{self, Command, Stdio}; use std::process::{self, Command, Stdio};
use std::str::FromStr;
use atty::Stream::{Stderr, Stdout}; use atty::Stream::{Stderr, Stdout};
use prettyprint::{PagingMode, PrettyPrinter}; use prettyprint::{PagingMode, PrettyPrinter};
@ -19,6 +20,7 @@ use structopt::StructOpt;
use termcolor::{Color::Green, ColorChoice, ColorSpec, StandardStream, WriteColor}; use termcolor::{Color::Green, ColorChoice, ColorSpec, StandardStream, WriteColor};
use crate::cmd::Line; use crate::cmd::Line;
use crate::config::Config;
use crate::error::Result; use crate::error::Result;
use crate::opts::Coloring::*; use crate::opts::Coloring::*;
use crate::opts::{Args, Coloring, Opts}; use crate::opts::{Args, Coloring, Opts};
@ -140,10 +142,11 @@ fn cargo_expand() -> Result<i32> {
builder.prefix("cargo-expand"); builder.prefix("cargo-expand");
let outdir = builder.tempdir().expect("failed to create tmp file"); let outdir = builder.tempdir().expect("failed to create tmp file");
let outfile_path = outdir.path().join("expanded"); let outfile_path = outdir.path().join("expanded");
let color = get_color(&args, &config);
// Run cargo // Run cargo
let mut cmd = Command::new(cargo_binary()); let mut cmd = Command::new(cargo_binary());
apply_args(&mut cmd, &args, &outfile_path); apply_args(&mut cmd, &args, &color, &outfile_path);
let code = filter_err(&mut cmd, ignore_cargo_err)?; let code = filter_err(&mut cmd, ignore_cargo_err)?;
if !outfile_path.exists() { if !outfile_path.exists() {
@ -196,10 +199,10 @@ fn cargo_expand() -> Result<i32> {
// Run pretty printer // Run pretty printer
let theme = args.theme.or(config.theme); let theme = args.theme.or(config.theme);
let none_theme = theme.as_ref().map(String::as_str) == Some("none"); let none_theme = theme.as_ref().map(String::as_str) == Some("none");
let do_color = match args.color { let do_color = match color {
Some(Always) => true, Always => true,
Some(Never) => false, Never => false,
None | Some(Auto) => !none_theme && atty::is(Stdout), Auto => !none_theme && atty::is(Stdout),
}; };
let _ = writeln!(io::stderr()); let _ = writeln!(io::stderr());
if do_color { if do_color {
@ -244,7 +247,7 @@ fn which_rustfmt() -> Option<PathBuf> {
} }
// Based on https://github.com/rsolomo/cargo-check // Based on https://github.com/rsolomo/cargo-check
fn apply_args(cmd: &mut Command, args: &Args, outfile: &Path) { fn apply_args(cmd: &mut Command, args: &Args, color: &Coloring, outfile: &Path) {
let mut line = Line::new("cargo"); let mut line = Line::new("cargo");
line.arg("rustc"); line.arg("rustc");
@ -322,10 +325,9 @@ fn apply_args(cmd: &mut Command, args: &Args, outfile: &Path) {
} }
line.arg("--color"); line.arg("--color");
if let Some(color) = &args.color { match color {
line.arg(color.to_string()); Coloring::Auto => line.arg(if atty::is(Stderr) { "always" } else { "never" }),
} else { color => line.arg(color.to_string()),
line.arg(if atty::is(Stderr) { "always" } else { "never" });
} }
if args.frozen { if args.frozen {
@ -351,17 +353,17 @@ fn apply_args(cmd: &mut Command, args: &Args, outfile: &Path) {
if args.verbose { if args.verbose {
let mut display = line.clone(); let mut display = line.clone();
display.insert(0, "+nightly"); display.insert(0, "+nightly");
print_command(display, args); print_command(display, color);
} }
cmd.args(line); cmd.args(line);
} }
fn print_command(line: Line, args: &Args) { fn print_command(line: Line, color: &Coloring) {
let color_choice = match args.color { let color_choice = match color {
Some(Coloring::Auto) | None => ColorChoice::Auto, Coloring::Auto => ColorChoice::Auto,
Some(Coloring::Always) => ColorChoice::Always, Coloring::Always => ColorChoice::Always,
Some(Coloring::Never) => ColorChoice::Never, Coloring::Never => ColorChoice::Never,
}; };
let mut stream = StandardStream::stderr(color_choice); let mut stream = StandardStream::stderr(color_choice);
@ -411,3 +413,24 @@ fn ignore_cargo_err(line: &str) -> bool {
false false
} }
fn get_color(args: &Args, config: &Config) -> Coloring {
if let Some(value) = args.color {
return value;
}
if let Some(value) = config.color.as_ref() {
match Coloring::from_str(value.as_str()) {
Ok(color) => return color,
Err(err) => {
let _ = writeln!(
io::stderr(),
"WARNING: invalid color in cargo config: {}",
err
);
}
}
}
Coloring::Auto // default
}

View file

@ -115,7 +115,7 @@ pub struct Args {
pub item: Option<Selector>, pub item: Option<Selector>,
} }
#[derive(Debug)] #[derive(Debug, Clone, Copy)]
pub enum Coloring { pub enum Coloring {
Auto, Auto,
Always, Always,