1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright 2020-2023 Andrew D. Straw.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT
// or http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

use serde::{Serialize, Deserialize};

#[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
pub struct RecordingPath {
    path: String,
    start_time: chrono::DateTime<chrono::Utc>,
    current_size_bytes: Option<usize>,
}

impl RecordingPath {
    pub fn new(path: String) -> Self {
        let start_time = chrono::Utc::now();
        RecordingPath::from_path_and_time(path, start_time)
    }
    pub fn from_path_and_time(path: String, start_time: chrono::DateTime<chrono::Utc>) -> Self {
        Self {
            path,
            start_time,
            current_size_bytes: None,
        }
    }
    pub fn path(&self) -> String {
        self.path.clone()
    }
    pub fn start_time(&self) -> chrono::DateTime<chrono::Utc> {
        self.start_time
    }
}

#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
pub struct ClockModel {
    pub gain: f64,
    pub offset: f64,
    pub residuals: f64,
    pub n_measurements: u64,
}