From 6d1d9f47edef8352c6f25d7736171ec2bbe5471a Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Tue, 29 Mar 2022 16:43:19 +0200 Subject: Common: log timestamps, socket changes and frame_timestamp_t --- lib/edi/common.hpp | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) (limited to 'lib/edi/common.hpp') diff --git a/lib/edi/common.hpp b/lib/edi/common.hpp index 5e31984..c3e6c40 100644 --- a/lib/edi/common.hpp +++ b/lib/edi/common.hpp @@ -35,7 +35,7 @@ namespace EdiDecoder { struct frame_timestamp_t { uint32_t seconds = 0; uint32_t utco = 0; - uint32_t tsta = 0; // According to EN 300 797 Annex B + uint32_t tsta = 0xFFFFFF; // According to EN 300 797 Annex B bool valid() const; std::string to_string() const; @@ -47,6 +47,33 @@ struct frame_timestamp_t { frame_timestamp_t& operator+=(const std::chrono::milliseconds& ms); static frame_timestamp_t from_unix_epoch(std::time_t time, uint32_t tai_utc_offset, uint32_t tsta); + + friend bool operator==(const frame_timestamp_t& l, const frame_timestamp_t& r) { + return (l.seconds - l.utco) == (r.seconds - r.utco) and l.tsta == r.tsta; + } + + friend bool operator!=(const frame_timestamp_t& l, const frame_timestamp_t& r) { + return not (l == r); + } + + friend bool operator< (const frame_timestamp_t& l, const frame_timestamp_t& r) { + if (l.seconds - l.utco == r.seconds - r.utco) { + return l.tsta < r.tsta; + } + return l.seconds - l.utco < r.seconds - r.utco; + } + + friend bool operator<= (const frame_timestamp_t& l, const frame_timestamp_t& r) { + return l < r or l == r; + } + + friend bool operator> (const frame_timestamp_t& l, const frame_timestamp_t& r) { + return r < l; + } + + friend bool operator>= (const frame_timestamp_t& l, const frame_timestamp_t& r) { + return l > r or l == r; + } }; using tag_name_t = std::array; -- cgit v1.2.3