2018-03-04 15:24:24 -05:00
|
|
|
// This file is part of Moonfire NVR, a security camera network video recorder.
|
|
|
|
// Copyright (C) 2018 Scott Lamb <slamb@slamb.org>
|
2016-12-06 21:41:44 -05:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// In addition, as a special exception, the copyright holders give
|
|
|
|
// permission to link the code of portions of this program with the
|
|
|
|
// OpenSSL library under certain conditions as described in each
|
|
|
|
// individual source file, and distribute linked combinations including
|
|
|
|
// the two.
|
|
|
|
//
|
|
|
|
// You must obey the GNU General Public License in all respects for all
|
|
|
|
// of the code used other than OpenSSL. If you modify file(s) with this
|
|
|
|
// exception, you may extend this exception to your version of the
|
|
|
|
// file(s), but you are not obligated to do so. If you do not wish to do
|
|
|
|
// so, delete this exception statement from your version. If you delete
|
|
|
|
// this exception statement from all source files in the program, then
|
|
|
|
// also delete it here.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
//! Clock interface and implementations for testability.
|
|
|
|
|
2018-03-04 15:24:24 -05:00
|
|
|
use failure::Error;
|
2016-12-30 00:05:57 -05:00
|
|
|
use libc;
|
2018-12-28 18:30:33 -05:00
|
|
|
use log::warn;
|
2018-03-04 15:24:24 -05:00
|
|
|
use parking_lot::Mutex;
|
2016-12-30 00:05:57 -05:00
|
|
|
use std::mem;
|
2018-03-23 18:16:43 -04:00
|
|
|
use std::sync::{Arc, mpsc};
|
2016-12-06 21:41:44 -05:00
|
|
|
use std::thread;
|
2018-03-23 18:16:43 -04:00
|
|
|
use std::time::Duration as StdDuration;
|
2016-12-30 00:05:57 -05:00
|
|
|
use time::{Duration, Timespec};
|
2016-12-06 21:41:44 -05:00
|
|
|
|
2016-12-30 00:05:57 -05:00
|
|
|
/// Abstract interface to the system clocks. This is for testability.
|
2018-03-09 20:41:53 -05:00
|
|
|
pub trait Clocks : Send + Sync + 'static {
|
2016-12-30 00:05:57 -05:00
|
|
|
/// Gets the current time from `CLOCK_REALTIME`.
|
|
|
|
fn realtime(&self) -> Timespec;
|
|
|
|
|
|
|
|
/// Gets the current time from `CLOCK_MONOTONIC`.
|
|
|
|
fn monotonic(&self) -> Timespec;
|
2016-12-06 21:41:44 -05:00
|
|
|
|
|
|
|
/// Causes the current thread to sleep for the specified time.
|
2016-12-30 00:05:57 -05:00
|
|
|
fn sleep(&self, how_long: Duration);
|
2018-03-23 18:16:43 -04:00
|
|
|
|
|
|
|
/// Calls `rcv.recv_timeout` or substitutes a test implementation.
|
|
|
|
fn recv_timeout<T>(&self, rcv: &mpsc::Receiver<T>,
|
|
|
|
timeout: StdDuration) -> Result<T, mpsc::RecvTimeoutError>;
|
2018-03-09 20:41:53 -05:00
|
|
|
}
|
2016-12-06 21:41:44 -05:00
|
|
|
|
2018-03-23 18:16:43 -04:00
|
|
|
pub fn retry_forever<C, T, E>(clocks: &C, f: &mut FnMut() -> Result<T, E>) -> T
|
|
|
|
where C: Clocks, E: Into<Error> {
|
2018-03-09 20:41:53 -05:00
|
|
|
loop {
|
|
|
|
let e = match f() {
|
|
|
|
Ok(t) => return t,
|
|
|
|
Err(e) => e.into(),
|
|
|
|
};
|
|
|
|
let sleep_time = Duration::seconds(1);
|
|
|
|
warn!("sleeping for {:?} after error: {:?}", sleep_time, e);
|
|
|
|
clocks.sleep(sleep_time);
|
2018-03-04 15:24:24 -05:00
|
|
|
}
|
|
|
|
}
|
2016-12-30 00:05:57 -05:00
|
|
|
|
2018-03-23 16:31:23 -04:00
|
|
|
#[derive(Copy, Clone)]
|
2016-12-30 00:05:57 -05:00
|
|
|
pub struct RealClocks {}
|
2016-12-06 21:41:44 -05:00
|
|
|
|
2016-12-30 00:05:57 -05:00
|
|
|
impl RealClocks {
|
|
|
|
fn get(&self, clock: libc::clockid_t) -> Timespec {
|
|
|
|
unsafe {
|
|
|
|
let mut ts = mem::uninitialized();
|
|
|
|
assert_eq!(0, libc::clock_gettime(clock, &mut ts));
|
2016-12-30 09:35:10 -05:00
|
|
|
Timespec::new(ts.tv_sec as i64, ts.tv_nsec as i32)
|
2016-12-30 00:05:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-06 21:41:44 -05:00
|
|
|
|
2016-12-30 00:05:57 -05:00
|
|
|
impl Clocks for RealClocks {
|
|
|
|
fn realtime(&self) -> Timespec { self.get(libc::CLOCK_REALTIME) }
|
|
|
|
fn monotonic(&self) -> Timespec { self.get(libc::CLOCK_MONOTONIC) }
|
2016-12-06 21:41:44 -05:00
|
|
|
|
2016-12-30 00:05:57 -05:00
|
|
|
fn sleep(&self, how_long: Duration) {
|
2016-12-06 21:41:44 -05:00
|
|
|
match how_long.to_std() {
|
|
|
|
Ok(d) => thread::sleep(d),
|
|
|
|
Err(e) => warn!("Invalid duration {:?}: {}", how_long, e),
|
|
|
|
};
|
|
|
|
}
|
2018-03-23 18:16:43 -04:00
|
|
|
|
|
|
|
fn recv_timeout<T>(&self, rcv: &mpsc::Receiver<T>,
|
|
|
|
timeout: StdDuration) -> Result<T, mpsc::RecvTimeoutError> {
|
|
|
|
rcv.recv_timeout(timeout)
|
|
|
|
}
|
2016-12-06 21:41:44 -05:00
|
|
|
}
|
|
|
|
|
2018-01-31 17:20:30 -05:00
|
|
|
/// Logs a warning if the TimerGuard lives "too long", using the label created by a supplied
|
|
|
|
/// function.
|
2018-03-09 20:41:53 -05:00
|
|
|
pub struct TimerGuard<'a, C: Clocks + ?Sized, S: AsRef<str>, F: FnOnce() -> S + 'a> {
|
2018-01-31 17:20:30 -05:00
|
|
|
clocks: &'a C,
|
|
|
|
label_f: Option<F>,
|
|
|
|
start: Timespec,
|
|
|
|
}
|
|
|
|
|
2018-03-09 20:41:53 -05:00
|
|
|
impl<'a, C: Clocks + ?Sized, S: AsRef<str>, F: FnOnce() -> S + 'a> TimerGuard<'a, C, S, F> {
|
2018-01-31 17:20:30 -05:00
|
|
|
pub fn new(clocks: &'a C, label_f: F) -> Self {
|
|
|
|
TimerGuard {
|
|
|
|
clocks,
|
|
|
|
label_f: Some(label_f),
|
|
|
|
start: clocks.monotonic(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-09 20:41:53 -05:00
|
|
|
impl<'a, C, S, F> Drop for TimerGuard<'a, C, S, F>
|
|
|
|
where C: Clocks + ?Sized, S: AsRef<str>, F: FnOnce() -> S + 'a {
|
2018-01-31 17:20:30 -05:00
|
|
|
fn drop(&mut self) {
|
|
|
|
let elapsed = self.clocks.monotonic() - self.start;
|
|
|
|
if elapsed.num_seconds() >= 1 {
|
|
|
|
let label_f = self.label_f.take().unwrap();
|
|
|
|
warn!("{} took {}!", label_f().as_ref(), elapsed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 21:41:44 -05:00
|
|
|
/// Simulated clock for testing.
|
2018-03-04 15:24:24 -05:00
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct SimulatedClocks(Arc<SimulatedClocksInner>);
|
|
|
|
|
|
|
|
struct SimulatedClocksInner {
|
2016-12-30 00:05:57 -05:00
|
|
|
boot: Timespec,
|
|
|
|
uptime: Mutex<Duration>,
|
|
|
|
}
|
2016-12-06 21:41:44 -05:00
|
|
|
|
2016-12-30 00:05:57 -05:00
|
|
|
impl SimulatedClocks {
|
2018-03-04 15:24:24 -05:00
|
|
|
pub fn new(boot: Timespec) -> Self {
|
|
|
|
SimulatedClocks(Arc::new(SimulatedClocksInner {
|
2016-12-30 00:05:57 -05:00
|
|
|
boot: boot,
|
|
|
|
uptime: Mutex::new(Duration::seconds(0)),
|
2018-03-04 15:24:24 -05:00
|
|
|
}))
|
2016-12-30 00:05:57 -05:00
|
|
|
}
|
2016-12-06 21:41:44 -05:00
|
|
|
}
|
|
|
|
|
2016-12-30 00:05:57 -05:00
|
|
|
impl Clocks for SimulatedClocks {
|
2018-03-04 15:24:24 -05:00
|
|
|
fn realtime(&self) -> Timespec { self.0.boot + *self.0.uptime.lock() }
|
|
|
|
fn monotonic(&self) -> Timespec { Timespec::new(0, 0) + *self.0.uptime.lock() }
|
2016-12-06 21:41:44 -05:00
|
|
|
|
|
|
|
/// Advances the clock by the specified amount without actually sleeping.
|
2016-12-30 00:05:57 -05:00
|
|
|
fn sleep(&self, how_long: Duration) {
|
2018-03-04 15:24:24 -05:00
|
|
|
let mut l = self.0.uptime.lock();
|
2016-12-06 21:41:44 -05:00
|
|
|
*l = *l + how_long;
|
|
|
|
}
|
2018-03-23 18:16:43 -04:00
|
|
|
|
|
|
|
/// Advances the clock by the specified amount if data is not immediately available.
|
|
|
|
fn recv_timeout<T>(&self, rcv: &mpsc::Receiver<T>,
|
|
|
|
timeout: StdDuration) -> Result<T, mpsc::RecvTimeoutError> {
|
|
|
|
let r = rcv.recv_timeout(StdDuration::new(0, 0));
|
|
|
|
if let Err(_) = r {
|
|
|
|
self.sleep(Duration::from_std(timeout).unwrap());
|
|
|
|
}
|
|
|
|
r
|
|
|
|
}
|
2016-12-06 21:41:44 -05:00
|
|
|
}
|