Merge pull request #169 from dtolnay/color

Parse color setting as ValueEnum
This commit is contained in:
David Tolnay 2022-11-20 22:21:48 -08:00 committed by GitHub
commit a7bc4bfab0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 34 deletions

View file

@ -29,7 +29,7 @@ use crate::opts::Coloring::*;
use crate::opts::{Args, Coloring, Opts};
use atty::Stream::{Stderr, Stdout};
use bat::{PagingMode, PrettyPrinter};
use clap::Parser;
use clap::{Parser, ValueEnum};
use quote::quote;
use std::env;
use std::ffi::OsString;
@ -39,7 +39,6 @@ use std::panic::{self, PanicInfo, UnwindSafe};
use std::path::{Path, PathBuf};
use std::process::{self, Command, Stdio};
use std::ptr;
use std::str::FromStr;
use std::thread::Result as ThreadResult;
use termcolor::{Color::Green, ColorChoice, ColorSpec, StandardStream, WriteColor};
@ -404,7 +403,7 @@ fn apply_args(cmd: &mut Command, args: &Args, color: &Coloring, outfile: &Path)
} else {
"never"
}),
color => line.arg(color.to_string()),
color => line.arg(color.to_possible_value().unwrap().get_name()),
}
if args.frozen {
@ -529,7 +528,8 @@ fn get_color(args: &Args, config: &Config) -> Coloring {
}
if let Some(value) = config.color.as_ref() {
match Coloring::from_str(value.as_str()) {
let ignore_case = false;
match Coloring::from_str(value.as_str(), ignore_case) {
Ok(color) => return color,
Err(err) => {
let _ = writeln!(

View file

@ -1,5 +1,4 @@
use clap::Parser;
use std::fmt::{self, Display};
use clap::{Parser, ValueEnum};
use std::path::PathBuf;
use std::str::FromStr;
use syn_select::Selector;
@ -121,40 +120,13 @@ pub struct Args {
pub item: Option<Selector>,
}
#[derive(Debug, Clone, Copy)]
#[derive(ValueEnum, Debug, Clone, Copy)]
pub enum Coloring {
Auto,
Always,
Never,
}
impl FromStr for Coloring {
type Err = String;
fn from_str(name: &str) -> Result<Self, Self::Err> {
match name {
"auto" => Ok(Coloring::Auto),
"always" => Ok(Coloring::Always),
"never" => Ok(Coloring::Never),
other => Err(format!(
"must be auto, always, or never, but found `{}`",
other,
)),
}
}
}
impl Display for Coloring {
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
let name = match self {
Coloring::Auto => "auto",
Coloring::Always => "always",
Coloring::Never => "never",
};
formatter.write_str(name)
}
}
fn parse_selector(s: &str) -> Result<Selector, <Selector as FromStr>::Err> {
if s.starts_with("::") {
s[2..].parse()