提交 a1869f20 编写于 作者: B Benjamin Sago

Move common icons option to file style struct

All four of the view mode command-line argument parsers tested for the --icons option. Because it was common, the behaviour has been moved to the struct that handles file styles, meaning it can be parsed in one place.

This is a better place for it, as the icons are to do with the file name, not the view. It also means that the lines view has no options left for it, which is fitting.
上级 800c73ff
...@@ -268,14 +268,9 @@ impl<'args> Exa<'args> { ...@@ -268,14 +268,9 @@ impl<'args> Exa<'args> {
r.render(&mut self.writer) r.render(&mut self.writer)
} }
(Mode::Grid(ref opts), None) => { (Mode::Grid(_), None) |
let opts = &opts.to_lines_options(); (Mode::Lines, _) => {
let r = lines::Render { files, theme, file_style, opts }; let r = lines::Render { files, theme, file_style };
r.render(&mut self.writer)
}
(Mode::Lines(ref opts), _) => {
let r = lines::Render { files, theme, file_style, opts };
r.render(&mut self.writer) r.render(&mut self.writer)
} }
......
...@@ -6,8 +6,10 @@ use crate::output::file_name::{Options, Classify}; ...@@ -6,8 +6,10 @@ use crate::output::file_name::{Options, Classify};
impl Options { impl Options {
pub fn deduce(matches: &MatchedFlags<'_>) -> Result<Self, OptionsError> { pub fn deduce(matches: &MatchedFlags<'_>) -> Result<Self, OptionsError> {
Classify::deduce(matches) let classify = Classify::deduce(matches)?;
.map(|classify| Self { classify }) let icons = matches.has(&flags::ICONS)?;
Ok(Self { classify, icons })
} }
} }
......
use crate::fs::feature::xattr; use crate::fs::feature::xattr;
use crate::options::{flags, OptionsError, Vars}; use crate::options::{flags, OptionsError, Vars};
use crate::options::parser::MatchedFlags; use crate::options::parser::MatchedFlags;
use crate::output::{View, Mode, TerminalWidth, grid, details, lines}; use crate::output::{View, Mode, TerminalWidth, grid, details};
use crate::output::grid_details::{self, RowThreshold}; use crate::output::grid_details::{self, RowThreshold};
use crate::output::file_name::Options as FileStyle; use crate::output::file_name::Options as FileStyle;
use crate::output::table::{TimeTypes, SizeFormat, Columns, Options as TableOptions}; use crate::output::table::{TimeTypes, SizeFormat, Columns, Options as TableOptions};
...@@ -73,8 +73,7 @@ impl Mode { ...@@ -73,8 +73,7 @@ impl Mode {
if flag.matches(&flags::ONE_LINE) { if flag.matches(&flags::ONE_LINE) {
let _ = matches.has(&flags::ONE_LINE)?; let _ = matches.has(&flags::ONE_LINE)?;
let lines = lines::Options::deduce(matches)?; return Ok(Self::Lines);
return Ok(Self::Lines(lines));
} }
let grid = grid::Options::deduce(matches)?; let grid = grid::Options::deduce(matches)?;
...@@ -105,19 +104,10 @@ impl Mode { ...@@ -105,19 +104,10 @@ impl Mode {
} }
impl lines::Options {
fn deduce(matches: &MatchedFlags<'_>) -> Result<Self, OptionsError> {
let lines = lines::Options { icons: matches.has(&flags::ICONS)? };
Ok(lines)
}
}
impl grid::Options { impl grid::Options {
fn deduce(matches: &MatchedFlags<'_>) -> Result<Self, OptionsError> { fn deduce(matches: &MatchedFlags<'_>) -> Result<Self, OptionsError> {
let grid = grid::Options { let grid = grid::Options {
across: matches.has(&flags::ACROSS)?, across: matches.has(&flags::ACROSS)?,
icons: matches.has(&flags::ICONS)?,
}; };
Ok(grid) Ok(grid)
...@@ -131,7 +121,6 @@ impl details::Options { ...@@ -131,7 +121,6 @@ impl details::Options {
table: None, table: None,
header: false, header: false,
xattr: xattr::ENABLED && matches.has(&flags::EXTENDED)?, xattr: xattr::ENABLED && matches.has(&flags::EXTENDED)?,
icons: matches.has(&flags::ICONS)?,
}; };
Ok(details) Ok(details)
...@@ -151,7 +140,6 @@ impl details::Options { ...@@ -151,7 +140,6 @@ impl details::Options {
table: Some(TableOptions::deduce(matches, vars)?), table: Some(TableOptions::deduce(matches, vars)?),
header: matches.has(&flags::HEADER)?, header: matches.has(&flags::HEADER)?,
xattr: xattr::ENABLED && matches.has(&flags::EXTENDED)?, xattr: xattr::ENABLED && matches.has(&flags::EXTENDED)?,
icons: matches.has(&flags::ICONS)?,
}) })
} }
} }
...@@ -354,7 +342,7 @@ mod test { ...@@ -354,7 +342,7 @@ mod test {
static TEST_ARGS: &[&Arg] = &[ &flags::BINARY, &flags::BYTES, &flags::TIME_STYLE, static TEST_ARGS: &[&Arg] = &[ &flags::BINARY, &flags::BYTES, &flags::TIME_STYLE,
&flags::TIME, &flags::MODIFIED, &flags::CHANGED, &flags::TIME, &flags::MODIFIED, &flags::CHANGED,
&flags::CREATED, &flags::ACCESSED, &flags::ICONS, &flags::CREATED, &flags::ACCESSED,
&flags::HEADER, &flags::GROUP, &flags::INODE, &flags::GIT, &flags::HEADER, &flags::GROUP, &flags::INODE, &flags::GIT,
&flags::LINKS, &flags::BLOCKS, &flags::LONG, &flags::LEVEL, &flags::LINKS, &flags::BLOCKS, &flags::LONG, &flags::LEVEL,
&flags::GRID, &flags::ACROSS, &flags::ONE_LINE, &flags::TREE ]; &flags::GRID, &flags::ACROSS, &flags::ONE_LINE, &flags::TREE ];
...@@ -532,7 +520,6 @@ mod test { ...@@ -532,7 +520,6 @@ mod test {
use super::*; use super::*;
use crate::output::grid::Options as GridOptions; use crate::output::grid::Options as GridOptions;
use crate::output::lines::Options as LineOptions;
// Default // Default
...@@ -543,12 +530,10 @@ mod test { ...@@ -543,12 +530,10 @@ mod test {
test!(grid: Mode <- ["--grid"], None; Both => like Ok(Mode::Grid(GridOptions { across: false, .. }))); test!(grid: Mode <- ["--grid"], None; Both => like Ok(Mode::Grid(GridOptions { across: false, .. })));
test!(across: Mode <- ["--across"], None; Both => like Ok(Mode::Grid(GridOptions { across: true, .. }))); test!(across: Mode <- ["--across"], None; Both => like Ok(Mode::Grid(GridOptions { across: true, .. })));
test!(gracross: Mode <- ["-xG"], None; Both => like Ok(Mode::Grid(GridOptions { across: true, .. }))); test!(gracross: Mode <- ["-xG"], None; Both => like Ok(Mode::Grid(GridOptions { across: true, .. })));
test!(icons: Mode <- ["--icons"], None; Both => like Ok(Mode::Grid(GridOptions { icons: true, .. })));
// Lines views // Lines views
test!(lines: Mode <- ["--oneline"], None; Both => like Ok(Mode::Lines(LineOptions { .. }))); test!(lines: Mode <- ["--oneline"], None; Both => like Ok(Mode::Lines));
test!(prima: Mode <- ["-1"], None; Both => like Ok(Mode::Lines(LineOptions { .. }))); test!(prima: Mode <- ["-1"], None; Both => like Ok(Mode::Lines));
test!(line_icon: Mode <- ["-1", "--icons"], None; Both => like Ok(Mode::Lines(LineOptions { icons: true })));
// Details views // Details views
test!(long: Mode <- ["--long"], None; Both => like Ok(Mode::Details(_))); test!(long: Mode <- ["--long"], None; Both => like Ok(Mode::Details(_)));
...@@ -585,7 +570,7 @@ mod test { ...@@ -585,7 +570,7 @@ mod test {
test!(just_git_2: Mode <- ["--git"], None; Complain => err OptionsError::Useless(&flags::GIT, false, &flags::LONG)); test!(just_git_2: Mode <- ["--git"], None; Complain => err OptionsError::Useless(&flags::GIT, false, &flags::LONG));
// Contradictions and combinations // Contradictions and combinations
test!(lgo: Mode <- ["--long", "--grid", "--oneline"], None; Both => like Ok(Mode::Lines(_))); test!(lgo: Mode <- ["--long", "--grid", "--oneline"], None; Both => like Ok(Mode::Lines));
test!(lgt: Mode <- ["--long", "--grid", "--tree"], None; Both => like Ok(Mode::Details(_))); test!(lgt: Mode <- ["--long", "--grid", "--tree"], None; Both => like Ok(Mode::Details(_)));
test!(tgl: Mode <- ["--tree", "--grid", "--long"], None; Both => like Ok(Mode::GridDetails(_))); test!(tgl: Mode <- ["--tree", "--grid", "--long"], None; Both => like Ok(Mode::GridDetails(_)));
test!(tlg: Mode <- ["--tree", "--long", "--grid"], None; Both => like Ok(Mode::GridDetails(_))); test!(tlg: Mode <- ["--tree", "--long", "--grid"], None; Both => like Ok(Mode::GridDetails(_)));
......
...@@ -106,9 +106,6 @@ pub struct Options { ...@@ -106,9 +106,6 @@ pub struct Options {
/// Whether to show each file’s extended attributes. /// Whether to show each file’s extended attributes.
pub xattr: bool, pub xattr: bool,
/// Whether icons mode is enabled.
pub icons: bool,
} }
...@@ -269,8 +266,8 @@ impl<'a> Render<'a> { ...@@ -269,8 +266,8 @@ impl<'a> Render<'a> {
} }
}; };
let icon = if self.opts.icons { Some(painted_icon(file, self.theme)) } let icon = if self.file_style.icons { Some(painted_icon(file, self.theme)) }
else { None }; else { None };
let egg = Egg { table_row, xattrs, errors, dir, file, icon }; let egg = Egg { table_row, xattrs, errors, dir, file, icon };
unsafe { std::ptr::write(file_eggs.lock().unwrap()[idx].as_mut_ptr(), egg) } unsafe { std::ptr::write(file_eggs.lock().unwrap()[idx].as_mut_ptr(), egg) }
......
...@@ -16,7 +16,8 @@ pub struct Options { ...@@ -16,7 +16,8 @@ pub struct Options {
/// Whether to append file class characters to file names. /// Whether to append file class characters to file names.
pub classify: Classify, pub classify: Classify,
// todo: put icons here /// Whether to prepend icon characters before file names.
pub icons: bool,
} }
impl Options { impl Options {
...@@ -142,6 +143,7 @@ impl<'a, 'dir, C: Colours> FileName<'a, 'dir, C> { ...@@ -142,6 +143,7 @@ impl<'a, 'dir, C: Colours> FileName<'a, 'dir, C> {
if ! target.name.is_empty() { if ! target.name.is_empty() {
let target_options = Options { let target_options = Options {
classify: Classify::JustFilenames, classify: Classify::JustFilenames,
icons: false,
}; };
let target = FileName { let target = FileName {
......
...@@ -6,14 +6,12 @@ use crate::fs::File; ...@@ -6,14 +6,12 @@ use crate::fs::File;
use crate::output::cell::DisplayWidth; use crate::output::cell::DisplayWidth;
use crate::output::file_name::Options as FileStyle; use crate::output::file_name::Options as FileStyle;
use crate::output::icons::painted_icon; use crate::output::icons::painted_icon;
use crate::output::lines;
use crate::theme::Theme; use crate::theme::Theme;
#[derive(PartialEq, Debug, Copy, Clone)] #[derive(PartialEq, Debug, Copy, Clone)]
pub struct Options { pub struct Options {
pub across: bool, pub across: bool,
pub icons: bool,
} }
impl Options { impl Options {
...@@ -21,12 +19,6 @@ impl Options { ...@@ -21,12 +19,6 @@ impl Options {
if self.across { tg::Direction::LeftToRight } if self.across { tg::Direction::LeftToRight }
else { tg::Direction::TopToBottom } else { tg::Direction::TopToBottom }
} }
pub fn to_lines_options(self) -> lines::Options {
lines::Options {
icons: self.icons
}
}
} }
...@@ -48,13 +40,13 @@ impl<'a> Render<'a> { ...@@ -48,13 +40,13 @@ impl<'a> Render<'a> {
grid.reserve(self.files.len()); grid.reserve(self.files.len());
for file in &self.files { for file in &self.files {
let icon = if self.opts.icons { Some(painted_icon(file, self.theme)) } let icon = if self.file_style.icons { Some(painted_icon(file, self.theme)) }
else { None }; else { None };
let filename = self.file_style.for_file(file, self.theme).paint(); let filename = self.file_style.for_file(file, self.theme).paint();
let width = if self.opts.icons { DisplayWidth::from(2) + filename.width() } let width = if self.file_style.icons { DisplayWidth::from(2) + filename.width() }
else { filename.width() }; else { filename.width() };
grid.add(tg::Cell { grid.add(tg::Cell {
contents: format!("{}{}", &icon.unwrap_or_default(), filename.strings()), contents: format!("{}{}", &icon.unwrap_or_default(), filename.strings()),
...@@ -70,7 +62,7 @@ impl<'a> Render<'a> { ...@@ -70,7 +62,7 @@ impl<'a> Render<'a> {
// This isn’t *quite* the same as the lines view, which also // This isn’t *quite* the same as the lines view, which also
// displays full link paths. // displays full link paths.
for file in &self.files { for file in &self.files {
if self.opts.icons { if self.file_style.icons {
write!(w, "{}", painted_icon(file, self.theme))?; write!(w, "{}", painted_icon(file, self.theme))?;
} }
......
...@@ -156,7 +156,7 @@ impl<'a> Render<'a> { ...@@ -156,7 +156,7 @@ impl<'a> Render<'a> {
let file_names = self.files.iter() let file_names = self.files.iter()
.map(|file| { .map(|file| {
if self.details.icons { if self.file_style.icons {
let mut icon_cell = TextCell::default(); let mut icon_cell = TextCell::default();
icon_cell.push(ANSIGenericString::from(painted_icon(file, self.theme)), 2); icon_cell.push(ANSIGenericString::from(painted_icon(file, self.theme)), 2);
let file_cell = self.file_style.for_file(file, self.theme).paint().promote(); let file_cell = self.file_style.for_file(file, self.theme).paint().promote();
......
...@@ -9,24 +9,18 @@ use crate::output::icons::painted_icon; ...@@ -9,24 +9,18 @@ use crate::output::icons::painted_icon;
use crate::theme::Theme; use crate::theme::Theme;
#[derive(PartialEq, Debug, Copy, Clone)]
pub struct Options {
pub icons: bool,
}
/// The lines view literally just displays each file, line-by-line. /// The lines view literally just displays each file, line-by-line.
pub struct Render<'a> { pub struct Render<'a> {
pub files: Vec<File<'a>>, pub files: Vec<File<'a>>,
pub theme: &'a Theme, pub theme: &'a Theme,
pub file_style: &'a FileStyle, pub file_style: &'a FileStyle,
pub opts: &'a Options,
} }
impl<'a> Render<'a> { impl<'a> Render<'a> {
pub fn render<W: Write>(&self, w: &mut W) -> io::Result<()> { pub fn render<W: Write>(&self, w: &mut W) -> io::Result<()> {
for file in &self.files { for file in &self.files {
let name_cell = self.render_file(file); let name_cell = self.render_file(file);
if self.opts.icons { if self.file_style.icons {
// Create a TextCell for the icon then append the text to it // Create a TextCell for the icon then append the text to it
let mut cell = TextCell::default(); let mut cell = TextCell::default();
let icon = painted_icon(file, self.theme); let icon = painted_icon(file, self.theme);
......
...@@ -32,7 +32,7 @@ pub enum Mode { ...@@ -32,7 +32,7 @@ pub enum Mode {
Grid(grid::Options), Grid(grid::Options),
Details(details::Options), Details(details::Options),
GridDetails(grid_details::Options), GridDetails(grid_details::Options),
Lines(lines::Options), Lines,
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册