提交 c52625b1 编写于 作者: B Ben S

Display files on a single line if possible

上级 8b3602f2
......@@ -7,6 +7,8 @@ extern crate unicode;
use std::os;
use std::io::fs;
use std::io::FileType::TypeDirectory;
use std::iter::AdditiveIterator;
use std::str::StrVector;
use file::File;
use dir::Dir;
......@@ -111,9 +113,19 @@ fn lines_view(files: Vec<File>) {
}
fn grid_view(across: bool, console_width: uint, files: Vec<File>) {
// Check if all the files can be displayed on one line, and do
// that if possible.
let count = files.len();
let spacing = 2;
if files.iter().map(|ref f| f.name.len() + spacing).sum() + (count - 1) * spacing <= console_width {
let names: Vec<String> = files.iter().map(|ref f| f.file_name().to_string()).collect();
println!("{}", names.connect(" "));
return;
}
// Otherwise, contort them into a grid.
let max_column_length = files.iter().map(|f| f.file_name_width()).max().unwrap_or(0);
let num_columns = (console_width + 1) / (max_column_length + 1);
let count = files.len();
let mut num_rows = count / num_columns;
if count % num_columns != 0 {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册