view.rs 13.1 KB
Newer Older
B
Benjamin Sago 已提交
1 2 3 4 5
use std::env::var_os;

use getopts;

use output::Colours;
6
use output::{Grid, Details, GridDetails};
B
Benjamin Sago 已提交
7
use output::column::{Columns, TimeTypes, SizeFormat};
8 9
use output::file_name::Classify;
use options::{FileFilter, DirAction, Misfire};
B
Benjamin Sago 已提交
10 11 12 13 14
use term::dimensions;
use fs::feature::xattr;


/// The **view** contains all information about how to format output.
B
Ben S 已提交
15
#[derive(PartialEq, Debug, Clone)]
16 17 18 19 20 21
pub struct View {
    pub mode: Mode,
    pub colours: Colours,
    pub classify: Classify,
}

22 23 24 25 26 27 28 29 30 31 32
impl View {

    /// Determine which view to use and all of that view’s arguments.
    pub fn deduce(matches: &getopts::Matches, filter: FileFilter, dir_action: DirAction) -> Result<View, Misfire> {
        let (mode, colours) = Mode::deduce(matches, filter, dir_action)?;
        let classify = Classify::deduce(matches);
        Ok(View { mode, colours, classify })
    }
}


33 34 35
/// The **mode** is the “type” of output.
#[derive(PartialEq, Debug, Clone)]
pub enum Mode {
B
Benjamin Sago 已提交
36 37 38
    Details(Details),
    Grid(Grid),
    GridDetails(GridDetails),
39
    Lines,
B
Benjamin Sago 已提交
40 41
}

42
impl Mode {
B
Benjamin Sago 已提交
43

44 45
    /// Determine both the mode and the colours at the same time.
    pub fn deduce(matches: &getopts::Matches, filter: FileFilter, dir_action: DirAction) -> Result<(Mode, Colours), Misfire> {
B
Benjamin Sago 已提交
46 47
        use options::misfire::Misfire::*;

B
Ben S 已提交
48 49 50 51
        let colour_scale = || {
            matches.opt_present("color-scale") || matches.opt_present("colour-scale")
        };

B
Benjamin Sago 已提交
52 53 54 55 56 57 58 59
        let long = || {
            if matches.opt_present("across") && !matches.opt_present("grid") {
                Err(Useless("across", true, "long"))
            }
            else if matches.opt_present("oneline") {
                Err(Useless("oneline", true, "long"))
            }
            else {
60
                let term_colours = TerminalColours::deduce(matches)?;
B
Benjamin Sago 已提交
61
                let colours = match term_colours {
B
Ben S 已提交
62
                    TerminalColours::Always    => Colours::colourful(colour_scale()),
B
Benjamin Sago 已提交
63 64 65
                    TerminalColours::Never     => Colours::plain(),
                    TerminalColours::Automatic => {
                        if dimensions().is_some() {
B
Ben S 已提交
66
                            Colours::colourful(colour_scale())
B
Benjamin Sago 已提交
67 68 69 70 71 72 73 74
                        }
                        else {
                            Colours::plain()
                        }
                    },
                };

                let details = Details {
75
                    columns: Some(Columns::deduce(matches)?),
B
Benjamin Sago 已提交
76 77
                    header: matches.opt_present("header"),
                    recurse: dir_action.recurse_options(),
B
Ben S 已提交
78
                    filter: filter.clone(),
B
Benjamin Sago 已提交
79 80 81
                    xattr: xattr::ENABLED && matches.opt_present("extended"),
                };

82
                Ok((Mode::Details(details), colours))
B
Benjamin Sago 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
            }
        };

        let long_options_scan = || {
            for option in &[ "binary", "bytes", "inode", "links", "header", "blocks", "time", "group" ] {
                if matches.opt_present(option) {
                    return Err(Useless(option, false, "long"));
                }
            }

            if cfg!(feature="git") && matches.opt_present("git") {
                Err(Useless("git", false, "long"))
            }
            else if matches.opt_present("level") && !matches.opt_present("recurse") && !matches.opt_present("tree") {
                Err(Useless2("level", "recurse", "tree"))
            }
            else if xattr::ENABLED && matches.opt_present("extended") {
                Err(Useless("extended", false, "long"))
            }
            else {
                Ok(())
            }
        };

        let other_options_scan = || {
108 109
            let term_colours = TerminalColours::deduce(matches)?;
            let term_width   = TerminalWidth::deduce()?;
B
Benjamin Sago 已提交
110 111 112

            if let Some(&width) = term_width.as_ref() {
                let colours = match term_colours {
113 114 115
                    TerminalColours::Always     |
                    TerminalColours::Automatic  => Colours::colourful(colour_scale()),
                    TerminalColours::Never      => Colours::plain(),
B
Benjamin Sago 已提交
116 117 118 119 120 121 122
                };

                if matches.opt_present("oneline") {
                    if matches.opt_present("across") {
                        Err(Useless("across", true, "oneline"))
                    }
                    else {
123
                        Ok((Mode::Lines, colours))
B
Benjamin Sago 已提交
124 125 126 127 128 129 130
                    }
                }
                else if matches.opt_present("tree") {
                    let details = Details {
                        columns: None,
                        header: false,
                        recurse: dir_action.recurse_options(),
B
Ben S 已提交
131
                        filter: filter.clone(),  // TODO: clone
B
Benjamin Sago 已提交
132 133 134
                        xattr: false,
                    };

135
                    Ok((Mode::Details(details), colours))
B
Benjamin Sago 已提交
136 137 138 139 140 141 142
                }
                else {
                    let grid = Grid {
                        across: matches.opt_present("across"),
                        console_width: width,
                    };

143
                    Ok((Mode::Grid(grid), colours))
B
Benjamin Sago 已提交
144 145 146 147 148 149 150 151
                }
            }
            else {
                // If the terminal width couldn’t be matched for some reason, such
                // as the program’s stdout being connected to a file, then
                // fallback to the lines view.

                let colours = match term_colours {
B
Ben S 已提交
152
                    TerminalColours::Always    => Colours::colourful(colour_scale()),
153
                    TerminalColours::Never | TerminalColours::Automatic => Colours::plain(),
B
Benjamin Sago 已提交
154 155 156 157 158 159 160
                };

                if matches.opt_present("tree") {
                    let details = Details {
                        columns: None,
                        header: false,
                        recurse: dir_action.recurse_options(),
B
Ben S 已提交
161
                        filter: filter.clone(),
B
Benjamin Sago 已提交
162 163 164
                        xattr: false,
                    };

165
                    Ok((Mode::Details(details), colours))
B
Benjamin Sago 已提交
166 167
                }
                else {
168
                    Ok((Mode::Lines, colours))
B
Benjamin Sago 已提交
169 170 171 172 173
                }
            }
        };

        if matches.opt_present("long") {
174
            let view = long()?;
B
Benjamin Sago 已提交
175
            if matches.opt_present("grid") {
176
                if let (Mode::Details(details), _) = view {
177
                    let others = other_options_scan()?;
178 179
                    match others.0 {
                        Mode::Grid(grid) => return Ok((Mode::GridDetails(GridDetails { grid, details }), others.1 )),
180 181 182 183 184 185
                        _                => return Ok(others),
                    };
                }
                else {
                    unreachable!()
                }
B
Benjamin Sago 已提交
186 187
            }
            else {
188
                return Ok(view);
B
Benjamin Sago 已提交
189 190 191
            }
        }

192
        long_options_scan()?;
B
Benjamin Sago 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217

        other_options_scan()
    }
}


/// The width of the terminal requested by the user.
#[derive(PartialEq, Debug)]
enum TerminalWidth {

    /// The user requested this specific number of columns.
    Set(usize),

    /// The terminal was found to have this number of columns.
    Terminal(usize),

    /// The user didn’t request any particular terminal width.
    Unset,
}

impl TerminalWidth {

    /// Determine a requested terminal width from the command-line arguments.
    ///
    /// Returns an error if a requested width doesn’t parse to an integer.
B
Benjamin Sago 已提交
218
    fn deduce() -> Result<TerminalWidth, Misfire> {
B
Benjamin Sago 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
        if let Some(columns) = var_os("COLUMNS").and_then(|s| s.into_string().ok()) {
            match columns.parse() {
                Ok(width)  => Ok(TerminalWidth::Set(width)),
                Err(e)     => Err(Misfire::FailedParse(e)),
            }
        }
        else if let Some((width, _)) = dimensions() {
            Ok(TerminalWidth::Terminal(width))
        }
        else {
            Ok(TerminalWidth::Unset)
        }
    }

    fn as_ref(&self) -> Option<&usize> {
        match *self {
235 236 237
            TerminalWidth::Set(ref width)
            | TerminalWidth::Terminal(ref width)    => Some(width),
            TerminalWidth::Unset                    => None,
B
Benjamin Sago 已提交
238 239 240 241 242 243 244 245
        }
    }
}


impl Columns {
    fn deduce(matches: &getopts::Matches) -> Result<Columns, Misfire> {
        Ok(Columns {
246 247
            size_format: SizeFormat::deduce(matches)?,
            time_types:  TimeTypes::deduce(matches)?,
B
Benjamin Sago 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
            inode:  matches.opt_present("inode"),
            links:  matches.opt_present("links"),
            blocks: matches.opt_present("blocks"),
            group:  matches.opt_present("group"),
            git:    cfg!(feature="git") && matches.opt_present("git"),
        })
    }
}


impl SizeFormat {

    /// Determine which file size to use in the file size column based on
    /// the user’s options.
    ///
    /// The default mode is to use the decimal prefixes, as they are the
    /// most commonly-understood, and don’t involve trying to parse large
    /// strings of digits in your head. Changing the format to anything else
    /// involves the `--binary` or `--bytes` flags, and these conflict with
    /// each other.
    fn deduce(matches: &getopts::Matches) -> Result<SizeFormat, Misfire> {
        let binary = matches.opt_present("binary");
        let bytes  = matches.opt_present("bytes");

        match (binary, bytes) {
            (true,  true )  => Err(Misfire::Conflict("binary", "bytes")),
            (true,  false)  => Ok(SizeFormat::BinaryBytes),
            (false, true )  => Ok(SizeFormat::JustBytes),
            (false, false)  => Ok(SizeFormat::DecimalBytes),
        }
    }
}


impl TimeTypes {

    /// Determine which of a file’s time fields should be displayed for it
    /// based on the user’s options.
    ///
    /// There are two separate ways to pick which fields to show: with a
    /// flag (such as `--modified`) or with a parameter (such as
    /// `--time=modified`). An error is signaled if both ways are used.
    ///
    /// It’s valid to show more than one column by passing in more than one
    /// option, but passing *no* options means that the user just wants to
    /// see the default set.
    fn deduce(matches: &getopts::Matches) -> Result<TimeTypes, Misfire> {
        let possible_word = matches.opt_str("time");
        let modified = matches.opt_present("modified");
        let created  = matches.opt_present("created");
        let accessed = matches.opt_present("accessed");

        if let Some(word) = possible_word {
            if modified {
                return Err(Misfire::Useless("modified", true, "time"));
            }
            else if created {
                return Err(Misfire::Useless("created", true, "time"));
            }
            else if accessed {
                return Err(Misfire::Useless("accessed", true, "time"));
            }

311
            static TIMES: &[& str] = &["modified", "accessed", "created"];
B
Benjamin Sago 已提交
312 313 314 315
            match &*word {
                "mod" | "modified"  => Ok(TimeTypes { accessed: false, modified: true,  created: false }),
                "acc" | "accessed"  => Ok(TimeTypes { accessed: true,  modified: false, created: false }),
                "cr"  | "created"   => Ok(TimeTypes { accessed: false, modified: false, created: true  }),
316
                otherwise           => Err(Misfire::bad_argument("time", otherwise, TIMES))
B
Benjamin Sago 已提交
317 318 319
            }
        }
        else if modified || created || accessed {
320
            Ok(TimeTypes { accessed, modified, created })
B
Benjamin Sago 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
        }
        else {
            Ok(TimeTypes::default())
        }
    }
}


/// Under what circumstances we should display coloured, rather than plain,
/// output to the terminal.
///
/// By default, we want to display the colours when stdout can display them.
/// Turning them on when output is going to, say, a pipe, would make programs
/// such as `grep` or `more` not work properly. So the `Automatic` mode does
/// this check and only displays colours when they can be truly appreciated.
#[derive(PartialEq, Debug)]
enum TerminalColours {

    /// Display them even when output isn’t going to a terminal.
    Always,

    /// Display them when output is going to a terminal, but not otherwise.
    Automatic,

    /// Never display them, even when output is going to a terminal.
    Never,
}

impl Default for TerminalColours {
    fn default() -> TerminalColours {
        TerminalColours::Automatic
    }
}

impl TerminalColours {

    /// Determine which terminal colour conditions to use.
    fn deduce(matches: &getopts::Matches) -> Result<TerminalColours, Misfire> {
359 360
        const COLOURS: &[&str] = &["always", "auto", "never"];

361
        if let Some(word) = matches.opt_str("color").or_else(|| matches.opt_str("colour")) {
B
Benjamin Sago 已提交
362 363 364 365
            match &*word {
                "always"              => Ok(TerminalColours::Always),
                "auto" | "automatic"  => Ok(TerminalColours::Automatic),
                "never"               => Ok(TerminalColours::Never),
366
                otherwise             => Err(Misfire::bad_argument("color", otherwise, COLOURS))
B
Benjamin Sago 已提交
367 368 369 370 371 372 373
            }
        }
        else {
            Ok(TerminalColours::default())
        }
    }
}
374 375 376 377 378 379 380 381 382



impl Classify {
    fn deduce(matches: &getopts::Matches) -> Classify {
        if matches.opt_present("classify") { Classify::AddFileIndicators }
                                      else { Classify::JustFilenames }
    }
}