mirror of
https://github.com/Llewellynvdm/exa.git
synced 2025-04-05 06:51:51 +00:00
Handle locales with 4-character-width months
This commit is contained in:
parent
5bec218878
commit
ce8a2e7ce9
@ -90,6 +90,7 @@ use datetime::{LocalDateTime, DatePiece};
|
|||||||
use datetime::TimeZone;
|
use datetime::TimeZone;
|
||||||
use zoneinfo_compiled::{CompiledData, Result as TZResult};
|
use zoneinfo_compiled::{CompiledData, Result as TZResult};
|
||||||
|
|
||||||
|
use unicode_width::UnicodeWidthStr;
|
||||||
use locale;
|
use locale;
|
||||||
|
|
||||||
use users::{Users, Groups, UsersCache};
|
use users::{Users, Groups, UsersCache};
|
||||||
@ -161,6 +162,12 @@ pub struct Environment<U: Users+Groups> {
|
|||||||
/// Localisation rules for formatting timestamps.
|
/// Localisation rules for formatting timestamps.
|
||||||
time: locale::Time,
|
time: locale::Time,
|
||||||
|
|
||||||
|
/// Date format for printing out timestamps that are in the current year.
|
||||||
|
date_and_time: DateFormat<'static>,
|
||||||
|
|
||||||
|
/// Date format for printing out timestamps that *aren’t*.
|
||||||
|
date_and_year: DateFormat<'static>,
|
||||||
|
|
||||||
/// The computer's current time zone. This gets used to determine how to
|
/// The computer's current time zone. This gets used to determine how to
|
||||||
/// offset files' timestamps.
|
/// offset files' timestamps.
|
||||||
tz: Option<TimeZone>,
|
tz: Option<TimeZone>,
|
||||||
@ -177,12 +184,34 @@ impl Default for Environment<UsersCache> {
|
|||||||
println!("Unable to determine time zone: {}", e);
|
println!("Unable to determine time zone: {}", e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let numeric = locale::Numeric::load_user_locale()
|
||||||
|
.unwrap_or_else(|_| locale::Numeric::english());
|
||||||
|
|
||||||
|
let time = locale::Time::load_user_locale()
|
||||||
|
.unwrap_or_else(|_| locale::Time::english());
|
||||||
|
|
||||||
|
// Some locales use a three-character wide month name (Jan to Dec);
|
||||||
|
// others vary between three and four (1月 to 12月). We assume that
|
||||||
|
// December is the month with the maximum width, and use the width of
|
||||||
|
let december_width = UnicodeWidthStr::width(&*time.short_month_name(11));
|
||||||
|
let date_and_time = match december_width {
|
||||||
|
4 => DateFormat::parse("{2>:D} {4>:M} {2>:h}:{02>:m}").unwrap(),
|
||||||
|
_ => DateFormat::parse("{2>:D} {:M} {2>:h}:{02>:m}").unwrap(),
|
||||||
|
};
|
||||||
|
|
||||||
|
let date_and_year = match december_width {
|
||||||
|
4 => DateFormat::parse("{2>:D} {4>:M} {5>:Y}").unwrap(),
|
||||||
|
_ => DateFormat::parse("{2>:D} {:M} {5>:Y}").unwrap()
|
||||||
|
};
|
||||||
|
|
||||||
Environment {
|
Environment {
|
||||||
current_year: LocalDateTime::now().year(),
|
current_year: LocalDateTime::now().year(),
|
||||||
numeric: locale::Numeric::load_user_locale().unwrap_or_else(|_| locale::Numeric::english()),
|
numeric: numeric,
|
||||||
time: locale::Time::load_user_locale().unwrap_or_else(|_| locale::Time::english()),
|
date_and_time: date_and_time,
|
||||||
tz: tz.ok(),
|
date_and_year: date_and_year,
|
||||||
users: Mutex::new(UsersCache::new()),
|
time: time,
|
||||||
|
tz: tz.ok(),
|
||||||
|
users: Mutex::new(UsersCache::new()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -602,10 +631,10 @@ impl<'a, U: Users+Groups+'a> Table<'a, U> {
|
|||||||
let date = tz.to_zoned(LocalDateTime::at(timestamp.0 as i64));
|
let date = tz.to_zoned(LocalDateTime::at(timestamp.0 as i64));
|
||||||
|
|
||||||
let datestamp = if date.year() == self.env.current_year {
|
let datestamp = if date.year() == self.env.current_year {
|
||||||
DATE_AND_TIME.format(&date, &self.env.time)
|
self.env.date_and_time.format(&date, &self.env.time)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
DATE_AND_YEAR.format(&date, &self.env.time)
|
self.env.date_and_year.format(&date, &self.env.time)
|
||||||
};
|
};
|
||||||
|
|
||||||
TextCell::paint(self.opts.colours.date, datestamp)
|
TextCell::paint(self.opts.colours.date, datestamp)
|
||||||
@ -614,10 +643,10 @@ impl<'a, U: Users+Groups+'a> Table<'a, U> {
|
|||||||
let date = LocalDateTime::at(timestamp.0 as i64);
|
let date = LocalDateTime::at(timestamp.0 as i64);
|
||||||
|
|
||||||
let datestamp = if date.year() == self.env.current_year {
|
let datestamp = if date.year() == self.env.current_year {
|
||||||
DATE_AND_TIME.format(&date, &self.env.time)
|
self.env.date_and_time.format(&date, &self.env.time)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
DATE_AND_YEAR.format(&date, &self.env.time)
|
self.env.date_and_year.format(&date, &self.env.time)
|
||||||
};
|
};
|
||||||
|
|
||||||
TextCell::paint(self.opts.colours.date, datestamp)
|
TextCell::paint(self.opts.colours.date, datestamp)
|
||||||
@ -736,15 +765,6 @@ impl<'a, U: Users+Groups+'a> Table<'a, U> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
lazy_static! {
|
|
||||||
static ref DATE_AND_TIME: DateFormat<'static> =
|
|
||||||
DateFormat::parse("{2>:D} {:M} {2>:h}:{02>:m}").unwrap();
|
|
||||||
|
|
||||||
static ref DATE_AND_YEAR: DateFormat<'static> =
|
|
||||||
DateFormat::parse("{2>:D} {:M} {5>:Y}").unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub mod test {
|
pub mod test {
|
||||||
pub use super::{Table, Environment, Details};
|
pub use super::{Table, Environment, Details};
|
||||||
@ -757,7 +777,7 @@ pub mod test {
|
|||||||
pub use users::{User, Group, uid_t, gid_t};
|
pub use users::{User, Group, uid_t, gid_t};
|
||||||
pub use users::mock::MockUsers;
|
pub use users::mock::MockUsers;
|
||||||
pub use users::os::unix::{UserExt, GroupExt};
|
pub use users::os::unix::{UserExt, GroupExt};
|
||||||
|
pub use datetime::fmt::DateFormat;
|
||||||
pub use ansi_term::Style;
|
pub use ansi_term::Style;
|
||||||
pub use ansi_term::Colour::*;
|
pub use ansi_term::Colour::*;
|
||||||
|
|
||||||
@ -768,11 +788,13 @@ pub mod test {
|
|||||||
use std::sync::Mutex;
|
use std::sync::Mutex;
|
||||||
|
|
||||||
Environment {
|
Environment {
|
||||||
current_year: 1234,
|
current_year: 1234,
|
||||||
numeric: locale::Numeric::english(),
|
numeric: locale::Numeric::english(),
|
||||||
time: locale::Time::english(),
|
time: locale::Time::english(),
|
||||||
tz: None,
|
date_and_time: DateFormat::parse("{2>:D} {4>:M} {2>:h}:{02>:m}").unwrap(),
|
||||||
users: Mutex::new(MockUsers::with_current_uid(0)),
|
date_and_year: DateFormat::parse("{2>:D} {:M} {5>:Y}").unwrap(),
|
||||||
|
tz: None,
|
||||||
|
users: Mutex::new(MockUsers::with_current_uid(0)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user