use std::ffi::OsStr;
use std::path::Path;
extern crate libc;
#[cfg(target_os = "redox")]
extern crate syscall as redox_syscall;
#[cfg(any(target_os = "macos", target_os = "ios"))]
extern {
fn gettimeofday(tp: *mut libc::timeval, tzp: *mut libc::timezone) -> libc::c_int;
}
#[cfg(all(unix, not(target_os = "macos"), not(target_os = "ios"), not(target_os = "redox")))]
use libc::clock_gettime;
#[cfg(any(target_os = "macos", target_os = "ios"))]
pub(crate) unsafe fn sys_time() -> (i64, i16) {
use std::ptr::null_mut;
let mut tv = libc::timeval { tv_sec: 0, tv_usec: 0 };
let _ = gettimeofday(&mut tv, null_mut());
(tv.tv_sec, (tv.tv_usec / 1000) as i16)
}
#[cfg(windows)] use winapi::shared::minwindef::FILETIME;
#[cfg(windows)] const HECTONANOSECS_IN_SEC: i64 = 10_000_000;
#[cfg(windows)] const HECTONANOSEC_TO_UNIX_EPOCH: i64 = 11_644_473_600 * HECTONANOSECS_IN_SEC;
#[cfg(any(target_os = "windows"))]
pub(crate) unsafe fn sys_time() -> (i64, i16) {
use std::mem;
use winapi::um::sysinfoapi::GetSystemTimeAsFileTime;
let mut ft = mem::zeroed();
GetSystemTimeAsFileTime(&mut ft);
(file_time_to_unix_seconds(&ft), (file_time_to_nsec(&ft) / 1000000) as i16)
}
#[cfg(any(target_os = "windows"))]
fn file_time_to_nsec(ft: &FILETIME) -> i32 {
let t = file_time_as_u64(ft) as i64;
((t % HECTONANOSECS_IN_SEC) * 100) as i32
}
#[cfg(any(target_os = "windows"))]
fn file_time_to_unix_seconds(ft: &FILETIME) -> i64 {
let t = file_time_as_u64(ft) as i64;
((t - HECTONANOSEC_TO_UNIX_EPOCH) / HECTONANOSECS_IN_SEC)
}
#[cfg(any(target_os = "windows"))]
fn file_time_as_u64(ft: &FILETIME) -> u64 {
((ft.dwHighDateTime as u64) << 32) | (ft.dwLowDateTime as u64)
}
#[cfg(not(any(target_os = "macos", target_os = "ios", target_os = "redox", windows)))]
pub unsafe fn sys_time() -> (i64, i16) {
let mut tv = libc::timespec { tv_sec: 0, tv_nsec: 0 };
let _ = clock_gettime(libc::CLOCK_REALTIME, &mut tv);
(tv.tv_sec as i64, (tv.tv_nsec / 1000) as i16)
}
#[cfg(target_os = "redox")]
pub fn sys_time() -> (i64, i16) {
let mut ts = redox_syscall::TimeSpec::default();
let realtime_clock = redox_syscall::CLOCK_REALTIME;
let _ = redox_syscall::clock_gettime(realtime_clock, &mut ts);
(ts.tv_sec, (ts.tv_nsec / 1000) as i16)
}
pub fn sys_timezone() -> Option<String> {
use std::fs::read_link;
let link = match read_link("/etc/localtime") {
Ok(link) => link,
Err(_) => return None,
};
if let Some(tz) = extract_timezone(&*link) {
if !tz.is_empty() {
return Some(tz);
}
}
None
}
fn extract_timezone(path: &Path) -> Option<String> {
let mut bits = Vec::new();
for pathlet in path.iter().rev().take_while(|c| is_tz_component(c)) {
match pathlet.to_str() {
Some(s) => bits.insert(0, s),
None => return None,
}
}
Some(bits.join("/"))
}
fn is_tz_component(component: &OsStr) -> bool {
if let Some(component_str) = component.to_str() {
let first_char = component_str.chars().next().unwrap();
first_char.is_uppercase()
}
else {
false
}
}
#[cfg(test)]
mod test {
use super::{sys_time, extract_timezone};
use std::path::Path;
#[test]
fn sanity_check() {
assert!((0, 0) != unsafe { sys_time() })
}
#[test]
fn two() {
let timezone = extract_timezone(Path::new("/usr/share/zoneinfo/Europe/London"));
assert_eq!(timezone, Some("Europe/London".to_string()));
}
#[test]
fn one() {
let timezone = extract_timezone(Path::new("/usr/share/zoneinfo/CST6CDT"));
assert_eq!(timezone, Some("CST6CDT".to_string()));
}
}