2016-04-18 17:39:32 +00:00
|
|
|
use std::io::{Write, Result as IOResult};
|
2015-06-28 12:21:21 +00:00
|
|
|
|
Replace Cells with growable TextCells
A recent change to ansi-term [1] means that `ANSIString`s can now hold either
owned *or* borrowed data (Rust calls this the Cow type). This means that we
can delay formatting ANSIStrings into ANSI-control-code-formatted strings
until it's absolutely necessary. The process for doing this was:
1. Replace the `Cell` type with a `TextCell` type that holds a vector of
`ANSIString` values instead of a formatted string. It still does the
width tracking.
2. Rework the details module's `render` functions to emit values of this
type.
3. Similarly, rework the functions that produce cells containing filenames
to use a `File` value's `name` field, which is an owned `String` that
can now be re-used.
4. Update the printing, formatting, and width-calculating code in the
details and grid-details views to produce a table by adding vectors
together instead of adding strings together, delaying the formatting as
long as it can.
This results in fewer allocations (as fewer `String` values are produced), and
makes the API tidier (as fewer `String` values are being passed around without
having their contents specified).
This also paves the way to Windows support, or at least support for
non-ANSI terminals: by delaying the time until strings are formatted,
it'll now be easier to change *how* they are formatted.
Casualties include:
- Bump to ansi_term v0.7.1, which impls `PartialEq` and `Debug` on
`ANSIString`.
- The grid_details and lines views now need to take a vector of files, rather
than a borrowed slice, so the filename cells produced now own the filename
strings that get taken from files.
- Fixed the signature of `File#link_target` to specify that the
file produced refers to the same directory, rather than some phantom
directory with the same lifetime as the file. (This was wrong from the
start, but it broke nothing until now)
References:
[1]: ansi-term@f6a6579ba8174de1cae64d181ec04af32ba2a4f0
2015-12-17 00:25:20 +00:00
|
|
|
use ansi_term::ANSIStrings;
|
2015-06-28 12:21:21 +00:00
|
|
|
use term_grid as grid;
|
|
|
|
|
2016-04-16 17:59:25 +00:00
|
|
|
use fs::{Dir, File};
|
|
|
|
use fs::feature::xattr::FileAttributes;
|
2015-11-14 23:32:57 +00:00
|
|
|
|
2017-07-02 00:02:17 +00:00
|
|
|
use options::FileFilter;
|
Replace Cells with growable TextCells
A recent change to ansi-term [1] means that `ANSIString`s can now hold either
owned *or* borrowed data (Rust calls this the Cow type). This means that we
can delay formatting ANSIStrings into ANSI-control-code-formatted strings
until it's absolutely necessary. The process for doing this was:
1. Replace the `Cell` type with a `TextCell` type that holds a vector of
`ANSIString` values instead of a formatted string. It still does the
width tracking.
2. Rework the details module's `render` functions to emit values of this
type.
3. Similarly, rework the functions that produce cells containing filenames
to use a `File` value's `name` field, which is an owned `String` that
can now be re-used.
4. Update the printing, formatting, and width-calculating code in the
details and grid-details views to produce a table by adding vectors
together instead of adding strings together, delaying the formatting as
long as it can.
This results in fewer allocations (as fewer `String` values are produced), and
makes the API tidier (as fewer `String` values are being passed around without
having their contents specified).
This also paves the way to Windows support, or at least support for
non-ANSI terminals: by delaying the time until strings are formatted,
it'll now be easier to change *how* they are formatted.
Casualties include:
- Bump to ansi_term v0.7.1, which impls `PartialEq` and `Debug` on
`ANSIString`.
- The grid_details and lines views now need to take a vector of files, rather
than a borrowed slice, so the filename cells produced now own the filename
strings that get taken from files.
- Fixed the signature of `File#link_target` to specify that the
file produced refers to the same directory, rather than some phantom
directory with the same lifetime as the file. (This was wrong from the
start, but it broke nothing until now)
References:
[1]: ansi-term@f6a6579ba8174de1cae64d181ec04af32ba2a4f0
2015-12-17 00:25:20 +00:00
|
|
|
use output::cell::TextCell;
|
2017-06-24 21:39:15 +00:00
|
|
|
use output::colours::Colours;
|
2017-07-02 00:02:17 +00:00
|
|
|
use output::details::{Options as DetailsOptions, Row as DetailsRow, Render as DetailsRender};
|
2017-06-25 23:53:48 +00:00
|
|
|
use output::grid::Options as GridOptions;
|
2017-07-08 11:24:22 +00:00
|
|
|
use output::file_name::FileStyle;
|
2017-07-05 20:01:01 +00:00
|
|
|
use output::table::{Table, Row as TableRow, Options as TableOptions};
|
2017-07-03 21:46:40 +00:00
|
|
|
use output::tree::{TreeParams, TreeDepth};
|
2017-05-07 13:08:36 +00:00
|
|
|
|
2015-06-28 12:21:21 +00:00
|
|
|
|
2017-06-25 23:53:48 +00:00
|
|
|
pub struct Render<'a> {
|
|
|
|
pub dir: Option<&'a Dir>,
|
|
|
|
pub files: Vec<File<'a>>,
|
|
|
|
pub colours: &'a Colours,
|
2017-07-08 11:11:11 +00:00
|
|
|
pub style: &'a FileStyle,
|
2017-06-25 23:53:48 +00:00
|
|
|
pub grid: &'a GridOptions,
|
|
|
|
pub details: &'a DetailsOptions,
|
2017-07-02 00:02:17 +00:00
|
|
|
pub filter: &'a FileFilter,
|
2015-06-28 12:21:21 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 23:53:48 +00:00
|
|
|
impl<'a> Render<'a> {
|
2017-07-02 00:02:17 +00:00
|
|
|
pub fn details(&self) -> DetailsRender<'a> {
|
|
|
|
DetailsRender {
|
|
|
|
dir: self.dir.clone(),
|
|
|
|
files: Vec::new(),
|
|
|
|
colours: self.colours,
|
2017-07-08 11:11:11 +00:00
|
|
|
style: self.style,
|
2017-07-02 00:02:17 +00:00
|
|
|
opts: self.details,
|
|
|
|
recurse: None,
|
|
|
|
filter: self.filter,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-25 23:53:48 +00:00
|
|
|
pub fn render<W: Write>(&self, w: &mut W) -> IOResult<()> {
|
2015-08-26 11:00:31 +00:00
|
|
|
|
2017-07-05 20:01:01 +00:00
|
|
|
let options = self.details.table.as_ref().expect("Details table options not given!");
|
2015-06-28 18:57:13 +00:00
|
|
|
|
2017-07-02 00:02:17 +00:00
|
|
|
let drender = self.clone().details();
|
Use Mutex lock on only the users columns
This makes use of a change in the `users` crate to change which parts of exa's code are accessed under a `Mutex`. The change is that the methods on `Users` can now take just `&self`, instead of `&mut self`. This has a knock-on effect in exa, as many methods now don't need to take a mutable `&self`, meaning that the Mutex can be moved to only containing the users information instead of having to be queried for *every column*. This means that threading should now be a lot faster, as fewer parts have to be executed on a single thread.
The main change to facilitate this is that `Table`'s structure has changed: everything environmental that gets loaded at the beginning is now in an `Environment` struct, which can be mocked out if necessary, as one of `Table`'s fields. (They were kind of in a variety of places before.)
Casualties include having to make some of the test code more verbose, as it explicitly takes the columns and environment as references rather than values, and those both need to be put on the stack beforehand. Also, all the colours are now hidden behind an `opts` field, so a lot of the rendering code is more verbose too (but not greatly so).
2016-01-16 21:56:37 +00:00
|
|
|
|
2017-07-05 20:01:01 +00:00
|
|
|
let (first_table, _) = self.make_table(options, &drender);
|
Use Mutex lock on only the users columns
This makes use of a change in the `users` crate to change which parts of exa's code are accessed under a `Mutex`. The change is that the methods on `Users` can now take just `&self`, instead of `&mut self`. This has a knock-on effect in exa, as many methods now don't need to take a mutable `&self`, meaning that the Mutex can be moved to only containing the users information instead of having to be queried for *every column*. This means that threading should now be a lot faster, as fewer parts have to be executed on a single thread.
The main change to facilitate this is that `Table`'s structure has changed: everything environmental that gets loaded at the beginning is now in an `Environment` struct, which can be mocked out if necessary, as one of `Table`'s fields. (They were kind of in a variety of places before.)
Casualties include having to make some of the test code more verbose, as it explicitly takes the columns and environment as references rather than values, and those both need to be put on the stack beforehand. Also, all the colours are now hidden behind an `opts` field, so a lot of the rendering code is more verbose too (but not greatly so).
2016-01-16 21:56:37 +00:00
|
|
|
|
2017-07-02 00:02:17 +00:00
|
|
|
let rows = self.files.iter()
|
|
|
|
.map(|file| first_table.row_for_file(file, file_has_xattrs(file)))
|
|
|
|
.collect::<Vec<TableRow>>();
|
Replace Cells with growable TextCells
A recent change to ansi-term [1] means that `ANSIString`s can now hold either
owned *or* borrowed data (Rust calls this the Cow type). This means that we
can delay formatting ANSIStrings into ANSI-control-code-formatted strings
until it's absolutely necessary. The process for doing this was:
1. Replace the `Cell` type with a `TextCell` type that holds a vector of
`ANSIString` values instead of a formatted string. It still does the
width tracking.
2. Rework the details module's `render` functions to emit values of this
type.
3. Similarly, rework the functions that produce cells containing filenames
to use a `File` value's `name` field, which is an owned `String` that
can now be re-used.
4. Update the printing, formatting, and width-calculating code in the
details and grid-details views to produce a table by adding vectors
together instead of adding strings together, delaying the formatting as
long as it can.
This results in fewer allocations (as fewer `String` values are produced), and
makes the API tidier (as fewer `String` values are being passed around without
having their contents specified).
This also paves the way to Windows support, or at least support for
non-ANSI terminals: by delaying the time until strings are formatted,
it'll now be easier to change *how* they are formatted.
Casualties include:
- Bump to ansi_term v0.7.1, which impls `PartialEq` and `Debug` on
`ANSIString`.
- The grid_details and lines views now need to take a vector of files, rather
than a borrowed slice, so the filename cells produced now own the filename
strings that get taken from files.
- Fixed the signature of `File#link_target` to specify that the
file produced refers to the same directory, rather than some phantom
directory with the same lifetime as the file. (This was wrong from the
start, but it broke nothing until now)
References:
[1]: ansi-term@f6a6579ba8174de1cae64d181ec04af32ba2a4f0
2015-12-17 00:25:20 +00:00
|
|
|
|
2017-07-02 00:02:17 +00:00
|
|
|
let file_names = self.files.iter()
|
2017-07-08 11:24:22 +00:00
|
|
|
.map(|file| self.style.for_file(file, self.colours).paint().promote())
|
2017-07-02 00:02:17 +00:00
|
|
|
.collect::<Vec<TextCell>>();
|
Use Mutex lock on only the users columns
This makes use of a change in the `users` crate to change which parts of exa's code are accessed under a `Mutex`. The change is that the methods on `Users` can now take just `&self`, instead of `&mut self`. This has a knock-on effect in exa, as many methods now don't need to take a mutable `&self`, meaning that the Mutex can be moved to only containing the users information instead of having to be queried for *every column*. This means that threading should now be a lot faster, as fewer parts have to be executed on a single thread.
The main change to facilitate this is that `Table`'s structure has changed: everything environmental that gets loaded at the beginning is now in an `Environment` struct, which can be mocked out if necessary, as one of `Table`'s fields. (They were kind of in a variety of places before.)
Casualties include having to make some of the test code more verbose, as it explicitly takes the columns and environment as references rather than values, and those both need to be put on the stack beforehand. Also, all the colours are now hidden behind an `opts` field, so a lot of the rendering code is more verbose too (but not greatly so).
2016-01-16 21:56:37 +00:00
|
|
|
|
2017-07-05 20:01:01 +00:00
|
|
|
let mut last_working_table = self.make_grid(1, options, &file_names, rows.clone(), &drender);
|
2015-06-28 12:21:21 +00:00
|
|
|
|
2015-06-28 15:25:59 +00:00
|
|
|
for column_count in 2.. {
|
2017-07-05 20:01:01 +00:00
|
|
|
let grid = self.make_grid(column_count, options, &file_names, rows.clone(), &drender);
|
2015-06-28 12:21:21 +00:00
|
|
|
|
2015-06-28 20:27:18 +00:00
|
|
|
let the_grid_fits = {
|
|
|
|
let d = grid.fit_into_columns(column_count);
|
|
|
|
d.is_complete() && d.width() <= self.grid.console_width
|
|
|
|
};
|
|
|
|
|
|
|
|
if the_grid_fits {
|
2015-06-28 15:25:59 +00:00
|
|
|
last_working_table = grid;
|
|
|
|
}
|
|
|
|
else {
|
2016-04-18 17:39:32 +00:00
|
|
|
return write!(w, "{}", last_working_table.fit_into_columns(column_count - 1));
|
2015-06-28 15:25:59 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-18 17:39:32 +00:00
|
|
|
|
|
|
|
Ok(())
|
2015-06-28 15:25:59 +00:00
|
|
|
}
|
|
|
|
|
2017-07-05 20:01:01 +00:00
|
|
|
fn make_table<'t>(&'a self, options: &'a TableOptions, drender: &DetailsRender) -> (Table<'a>, Vec<DetailsRow>) {
|
|
|
|
let mut table = Table::new(options, self.dir, self.colours);
|
2017-07-02 00:02:17 +00:00
|
|
|
let mut rows = Vec::new();
|
Use Mutex lock on only the users columns
This makes use of a change in the `users` crate to change which parts of exa's code are accessed under a `Mutex`. The change is that the methods on `Users` can now take just `&self`, instead of `&mut self`. This has a knock-on effect in exa, as many methods now don't need to take a mutable `&self`, meaning that the Mutex can be moved to only containing the users information instead of having to be queried for *every column*. This means that threading should now be a lot faster, as fewer parts have to be executed on a single thread.
The main change to facilitate this is that `Table`'s structure has changed: everything environmental that gets loaded at the beginning is now in an `Environment` struct, which can be mocked out if necessary, as one of `Table`'s fields. (They were kind of in a variety of places before.)
Casualties include having to make some of the test code more verbose, as it explicitly takes the columns and environment as references rather than values, and those both need to be put on the stack beforehand. Also, all the colours are now hidden behind an `opts` field, so a lot of the rendering code is more verbose too (but not greatly so).
2016-01-16 21:56:37 +00:00
|
|
|
|
2017-07-02 00:02:17 +00:00
|
|
|
if self.details.header {
|
2017-07-03 16:40:05 +00:00
|
|
|
let row = table.header_row();
|
|
|
|
table.add_widths(&row);
|
|
|
|
rows.push(drender.render_header(row));
|
2017-07-02 00:02:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
(table, rows)
|
2015-06-29 13:47:07 +00:00
|
|
|
}
|
2015-06-28 12:21:21 +00:00
|
|
|
|
2017-07-05 20:01:01 +00:00
|
|
|
fn make_grid(&'a self, column_count: usize, options: &'a TableOptions, file_names: &[TextCell], rows: Vec<TableRow>, drender: &DetailsRender) -> grid::Grid {
|
2017-07-02 00:02:17 +00:00
|
|
|
|
Use Mutex lock on only the users columns
This makes use of a change in the `users` crate to change which parts of exa's code are accessed under a `Mutex`. The change is that the methods on `Users` can now take just `&self`, instead of `&mut self`. This has a knock-on effect in exa, as many methods now don't need to take a mutable `&self`, meaning that the Mutex can be moved to only containing the users information instead of having to be queried for *every column*. This means that threading should now be a lot faster, as fewer parts have to be executed on a single thread.
The main change to facilitate this is that `Table`'s structure has changed: everything environmental that gets loaded at the beginning is now in an `Environment` struct, which can be mocked out if necessary, as one of `Table`'s fields. (They were kind of in a variety of places before.)
Casualties include having to make some of the test code more verbose, as it explicitly takes the columns and environment as references rather than values, and those both need to be put on the stack beforehand. Also, all the colours are now hidden behind an `opts` field, so a lot of the rendering code is more verbose too (but not greatly so).
2016-01-16 21:56:37 +00:00
|
|
|
let mut tables = Vec::new();
|
|
|
|
for _ in 0 .. column_count {
|
2017-07-05 20:01:01 +00:00
|
|
|
tables.push(self.make_table(options, drender));
|
Use Mutex lock on only the users columns
This makes use of a change in the `users` crate to change which parts of exa's code are accessed under a `Mutex`. The change is that the methods on `Users` can now take just `&self`, instead of `&mut self`. This has a knock-on effect in exa, as many methods now don't need to take a mutable `&self`, meaning that the Mutex can be moved to only containing the users information instead of having to be queried for *every column*. This means that threading should now be a lot faster, as fewer parts have to be executed on a single thread.
The main change to facilitate this is that `Table`'s structure has changed: everything environmental that gets loaded at the beginning is now in an `Environment` struct, which can be mocked out if necessary, as one of `Table`'s fields. (They were kind of in a variety of places before.)
Casualties include having to make some of the test code more verbose, as it explicitly takes the columns and environment as references rather than values, and those both need to be put on the stack beforehand. Also, all the colours are now hidden behind an `opts` field, so a lot of the rendering code is more verbose too (but not greatly so).
2016-01-16 21:56:37 +00:00
|
|
|
}
|
2015-06-28 12:21:21 +00:00
|
|
|
|
2017-07-02 00:02:17 +00:00
|
|
|
let mut num_cells = rows.len();
|
2015-06-29 12:13:23 +00:00
|
|
|
if self.details.header {
|
|
|
|
num_cells += column_count;
|
|
|
|
}
|
|
|
|
|
2017-07-02 00:02:17 +00:00
|
|
|
let original_height = divide_rounding_up(rows.len(), column_count);
|
2015-06-29 13:47:07 +00:00
|
|
|
let height = divide_rounding_up(num_cells, column_count);
|
2015-06-28 18:11:39 +00:00
|
|
|
|
2017-07-02 00:02:17 +00:00
|
|
|
for (i, (file_name, row)) in file_names.iter().zip(rows.into_iter()).enumerate() {
|
2015-06-29 12:13:23 +00:00
|
|
|
let index = if self.grid.across {
|
|
|
|
i % column_count
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
i / original_height
|
|
|
|
};
|
|
|
|
|
2017-07-02 00:02:17 +00:00
|
|
|
let (ref mut table, ref mut rows) = tables[index];
|
|
|
|
table.add_widths(&row);
|
2017-07-03 22:25:56 +00:00
|
|
|
let details_row = drender.render_file(row, file_name.clone(), TreeParams::new(TreeDepth::root(), false));
|
2017-07-02 00:02:17 +00:00
|
|
|
rows.push(details_row);
|
2015-06-28 12:21:21 +00:00
|
|
|
}
|
|
|
|
|
2017-07-02 00:02:17 +00:00
|
|
|
let columns: Vec<_> = tables.into_iter().map(|(table, details_rows)| {
|
2017-07-03 19:12:32 +00:00
|
|
|
drender.iterate_with_table(table, details_rows).collect::<Vec<_>>()
|
2017-07-02 00:02:17 +00:00
|
|
|
}).collect();
|
2015-06-28 12:21:21 +00:00
|
|
|
|
2015-06-29 12:13:23 +00:00
|
|
|
let direction = if self.grid.across { grid::Direction::LeftToRight }
|
|
|
|
else { grid::Direction::TopToBottom };
|
|
|
|
|
2015-06-28 12:21:21 +00:00
|
|
|
let mut grid = grid::Grid::new(grid::GridOptions {
|
2015-07-15 19:53:16 +00:00
|
|
|
direction: direction,
|
|
|
|
filling: grid::Filling::Spaces(4),
|
2015-06-28 12:21:21 +00:00
|
|
|
});
|
|
|
|
|
2015-06-29 12:13:23 +00:00
|
|
|
if self.grid.across {
|
|
|
|
for row in 0 .. height {
|
2017-03-31 16:08:11 +00:00
|
|
|
for column in &columns {
|
2015-06-29 12:13:23 +00:00
|
|
|
if row < column.len() {
|
|
|
|
let cell = grid::Cell {
|
Replace Cells with growable TextCells
A recent change to ansi-term [1] means that `ANSIString`s can now hold either
owned *or* borrowed data (Rust calls this the Cow type). This means that we
can delay formatting ANSIStrings into ANSI-control-code-formatted strings
until it's absolutely necessary. The process for doing this was:
1. Replace the `Cell` type with a `TextCell` type that holds a vector of
`ANSIString` values instead of a formatted string. It still does the
width tracking.
2. Rework the details module's `render` functions to emit values of this
type.
3. Similarly, rework the functions that produce cells containing filenames
to use a `File` value's `name` field, which is an owned `String` that
can now be re-used.
4. Update the printing, formatting, and width-calculating code in the
details and grid-details views to produce a table by adding vectors
together instead of adding strings together, delaying the formatting as
long as it can.
This results in fewer allocations (as fewer `String` values are produced), and
makes the API tidier (as fewer `String` values are being passed around without
having their contents specified).
This also paves the way to Windows support, or at least support for
non-ANSI terminals: by delaying the time until strings are formatted,
it'll now be easier to change *how* they are formatted.
Casualties include:
- Bump to ansi_term v0.7.1, which impls `PartialEq` and `Debug` on
`ANSIString`.
- The grid_details and lines views now need to take a vector of files, rather
than a borrowed slice, so the filename cells produced now own the filename
strings that get taken from files.
- Fixed the signature of `File#link_target` to specify that the
file produced refers to the same directory, rather than some phantom
directory with the same lifetime as the file. (This was wrong from the
start, but it broke nothing until now)
References:
[1]: ansi-term@f6a6579ba8174de1cae64d181ec04af32ba2a4f0
2015-12-17 00:25:20 +00:00
|
|
|
contents: ANSIStrings(&column[row].contents).to_string(),
|
2015-12-17 02:34:11 +00:00
|
|
|
width: *column[row].width,
|
2015-06-29 12:13:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
grid.add(cell);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2017-03-31 16:08:11 +00:00
|
|
|
for column in &columns {
|
2015-06-29 12:13:23 +00:00
|
|
|
for cell in column.iter() {
|
|
|
|
let cell = grid::Cell {
|
Replace Cells with growable TextCells
A recent change to ansi-term [1] means that `ANSIString`s can now hold either
owned *or* borrowed data (Rust calls this the Cow type). This means that we
can delay formatting ANSIStrings into ANSI-control-code-formatted strings
until it's absolutely necessary. The process for doing this was:
1. Replace the `Cell` type with a `TextCell` type that holds a vector of
`ANSIString` values instead of a formatted string. It still does the
width tracking.
2. Rework the details module's `render` functions to emit values of this
type.
3. Similarly, rework the functions that produce cells containing filenames
to use a `File` value's `name` field, which is an owned `String` that
can now be re-used.
4. Update the printing, formatting, and width-calculating code in the
details and grid-details views to produce a table by adding vectors
together instead of adding strings together, delaying the formatting as
long as it can.
This results in fewer allocations (as fewer `String` values are produced), and
makes the API tidier (as fewer `String` values are being passed around without
having their contents specified).
This also paves the way to Windows support, or at least support for
non-ANSI terminals: by delaying the time until strings are formatted,
it'll now be easier to change *how* they are formatted.
Casualties include:
- Bump to ansi_term v0.7.1, which impls `PartialEq` and `Debug` on
`ANSIString`.
- The grid_details and lines views now need to take a vector of files, rather
than a borrowed slice, so the filename cells produced now own the filename
strings that get taken from files.
- Fixed the signature of `File#link_target` to specify that the
file produced refers to the same directory, rather than some phantom
directory with the same lifetime as the file. (This was wrong from the
start, but it broke nothing until now)
References:
[1]: ansi-term@f6a6579ba8174de1cae64d181ec04af32ba2a4f0
2015-12-17 00:25:20 +00:00
|
|
|
contents: ANSIStrings(&cell.contents).to_string(),
|
2015-12-17 02:34:11 +00:00
|
|
|
width: *cell.width,
|
2015-06-29 12:13:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
grid.add(cell);
|
|
|
|
}
|
2015-06-28 15:25:59 +00:00
|
|
|
}
|
2015-06-28 12:21:21 +00:00
|
|
|
}
|
2015-06-28 15:25:59 +00:00
|
|
|
|
|
|
|
grid
|
2015-06-28 12:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-29 13:47:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
fn divide_rounding_up(a: usize, b: usize) -> usize {
|
|
|
|
let mut result = a / b;
|
|
|
|
if a % b != 0 { result += 1; }
|
|
|
|
result
|
2017-05-10 08:26:50 +00:00
|
|
|
}
|
2017-06-25 23:53:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
fn file_has_xattrs(file: &File) -> bool {
|
|
|
|
match file.path.attributes() {
|
|
|
|
Ok(attrs) => !attrs.is_empty(),
|
|
|
|
Err(_) => false,
|
|
|
|
}
|
|
|
|
}
|