很长一段时间以来,time
板条箱及其time::precise_time_ns
功能是在Rust中精确测量时间的标准方法。但是,time
条板箱现在已过时,std
库中有std::time::Instant
个用于测量经过时间的文件。
至少在设计上,我不确定它是否具有相同的精度。我知道这可能是一个模糊的问题,因为对于不同的操作系统,两者的实现方式不同,并且实现方式可能在不同的版本中有所变化,但是至少它们具有相同的目的吗?至少从其设计的角度来看,std::time::Duration
是time::precise_time_ns
的正确替代品吗?
在我的系统(Mac OS)上运行此脚本会输出很小的持续时间,因此它可能非常精确:
use std::time::Instant;
fn main() {
let mut t = Instant::now();
loop {
println!("{:?}", t.elapsed());
t = Instant::now();
}
}
40ns
42ns
41ns
45ns
40ns
41ns
40ns
40ns
41ns
41ns
41ns
40ns
40ns
40ns
答案 0 :(得分:2)
是的,std::time::Instant
可以肯定地代替time::precise_time_ns
,具有相同或更好的精度。
从Rust 1.33.0 time
0.1.41开始,time::precise_time_ns()
和std::time::Instant::now()
的大多数操作系统的实现都是相同的,只有少数例外。
clock_gettime(CLOCK_MONOTONIC, ...)
mach_absolute_time
QueryPerformanceCounter
time
没有实现,std
使用TimeSysCall::perform(TimeClock::Monotonic)
std
的实现方式更正确在未来的std::time::Instant::now
版本中,实现的可能性不大。
time
crate has all implementations in single file,带有cfg标志,标准库具有每个系统的目录,带有mod.rs where implementation is chosen at compile time(unix在time.rs
内部也有针对macOS的条件编译)。
两个实现都将clock_gettime (3)
与CLOCK_MONOTONIC
clock_id
结合使用。
#[cfg(all(not(target_os = "macos"), not(target_os = "ios")))]
let mut ts = libc::timespec { tv_sec: 0, tv_nsec: 0 };
unsafe {
libc::clock_gettime(libc::CLOCK_MONOTONIC, &mut ts);
}
(ts.tv_sec as u64) * 1000000000 + (ts.tv_nsec as u64)
#[cfg(unix)]
+ #[cfg(not(any(target_os = "macos", target_os = "ios")))]
Instant { t: now(libc::CLOCK_MONOTONIC) }
两个实现都使用mach_absolute_time
。
顺便说一句,标准clock_gettime(CLOCK_MONOTONIC, ...)
也可以在我的系统上(Mac OS 10.13.6)在我的系统上使用,但是我不确定它是否真的单调。
#[cfg(any(target_os = "macos", target_os = "ios"))]
unsafe {
let time = libc::mach_absolute_time();
let info = info();
time * info.numer as u64 / info.denom as u64
}
#[cfg(unix)]
+ #[cfg(any(target_os = "macos", target_os = "ios"))]
Instant { t: unsafe { libc::mach_absolute_time() } }
两个实现都使用QueryPerformanceCounter
#[cfg(windows)]
let mut ticks = i64_to_large_integer(0);
unsafe {
assert!(QueryPerformanceCounter(&mut ticks) == 1);
}
mul_div_i64(large_integer_to_i64(ticks), 1000000000, frequency()) as u64
#[cfg(windows)]
let mut t = Instant { t: 0 };
cvt(unsafe {
c::QueryPerformanceCounter(&mut t.t)
}).unwrap();
t
它可能用于非Web使用,并且与web-sys无关。 time
认为它没有实现。
#[cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))]
unimplemented!()
#[cfg(target_arch = "wasm32")]
Instant(TimeSysCall::perform(TimeClock::Monotonic))
两个实现都使用clock_gettime(CLOCK_MONOTONIC, ...)
,与unux相同。
#[cfg(target_os = "redox")]
let mut ts = syscall::TimeSpec { tv_sec: 0, tv_nsec: 0 };
syscall::clock_gettime(syscall::CLOCK_MONOTONIC, &mut ts).unwrap();
(ts.tv_sec as u64) * 1000000000 + (ts.tv_nsec as u64)
#[cfg(target_os = "redox")]
Instant { t: now(syscall::CLOCK_MONOTONIC) }
此处的实现有所不同。 time
的条板箱会退回到标准状态,并使用非单调时间(可能当时标准中没有单调时间)。由于它使用SGX特定的调用,因此可能不时迁移到std可以提高准确性。
#[cfg(target_env = "sgx")]
// This unwrap is safe because current time is well ahead of UNIX_EPOCH, unless system clock is adjusted backward.
let std_duration = SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).unwrap();
std_duration.as_secs() * NANOS_PER_SEC + std_duration.subsec_nanos() as u64
#[cfg(all(target_vendor = "fortanix", target_env = "sgx"))]
Instant(usercalls::insecure_time())