Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update offset calculation to convert timestamp subtraction to a signed integer #27

Merged
merged 3 commits into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 82 additions & 16 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -619,8 +619,8 @@ fn roundtrip_calculate(
}

fn offset_calculate(t1: u64, t2: u64, t3: u64, t4: u64, units: Units) -> i64 {
let theta = ((t2.wrapping_sub(t1) / 2) as i64)
.saturating_add((t3.wrapping_sub(t4) / 2) as i64);
let theta = (t2.wrapping_sub(t1) as i64 / 2)
.saturating_add(t3.wrapping_sub(t4) as i64 / 2);
let theta_sec = (theta.unsigned_abs() & SECONDS_MASK) >> 32;
let theta_sec_fraction = theta.unsigned_abs() & SECONDS_FRAC_MASK;

Expand All @@ -638,19 +638,6 @@ fn offset_calculate(t1: u64, t2: u64, t3: u64, t4: u64, units: Units) -> i64 {
}
}

#[test]
fn test_offset_calculate() {
let t1 = 9487534663484046772u64;
let t2 = 16882120099581835046u64;
let t3 = 16882120099583884144u64;
let t4 = 9487534663651464597u64;

assert_eq!(
offset_calculate(t1, t2, t3, t4, Units::Microseconds),
1721686086620926
);
}

#[cfg(feature = "log")]
fn debug_ntp_packet(packet: &NtpPacket, _recv_timestamp: u64) {
let mode = shifter(packet.li_vn_mode, MODE_MASK, MODE_SHIFT);
Expand Down Expand Up @@ -829,9 +816,42 @@ mod sntpc_ntp_result_tests {

#[cfg(all(test, feature = "std"))]
mod sntpc_tests {
use crate::{get_time, Error, NtpContext, StdTimestampGen, Units};
use crate::{
get_time, offset_calculate, Error, NtpContext, StdTimestampGen, Units,
};
use std::net::UdpSocket;

struct Timestamps(u64, u64, u64, u64);
struct OffsetCalcTestCase {
timestamp: Timestamps,
expected: i64,
}

impl OffsetCalcTestCase {
fn new(t1: u64, t2: u64, t3: u64, t4: u64, expected: i64) -> Self {
OffsetCalcTestCase {
timestamp: Timestamps(t1, t2, t3, t4),
expected,
}
}

fn t1(&self) -> u64 {
self.timestamp.0
}

fn t2(&self) -> u64 {
self.timestamp.1
}

fn t3(&self) -> u64 {
self.timestamp.2
}

fn t4(&self) -> u64 {
self.timestamp.3
}
}

#[test]
fn test_ntp_request_sntpv4_supported() {
let context = NtpContext::new(StdTimestampGen::default());
Expand Down Expand Up @@ -897,4 +917,50 @@ mod sntpc_tests {
assert_eq!(format!("{}", Units::Milliseconds), "ms");
assert_eq!(format!("{}", Units::Microseconds), "us");
}

#[test]
fn test_offset_calculate() {
let tests = [
OffsetCalcTestCase::new(
16893142954672769962,
16893142959053084959,
16893142959053112968,
16893142954793063406,
1005870,
),
OffsetCalcTestCase::new(
16893362966131575843,
16893362966715800791,
16893362966715869584,
16893362967084349913,
25115,
),
OffsetCalcTestCase::new(
16893399716399327198,
16893399716453045029,
16893399716453098083,
16893399716961924964,
-52981,
),
OffsetCalcTestCase::new(
9487534663484046772u64,
16882120099581835046u64,
16882120099583884144u64,
9487534663651464597u64,
1721686086620926,
),
];

for t in tests {
let offset = offset_calculate(
t.t1(),
t.t2(),
t.t3(),
t.t4(),
Units::Microseconds,
);
let expected = t.expected;
assert_eq!(offset, expected);
}
}
}
Loading