summaryrefslogtreecommitdiffstats
path: root/src/ClockTAI.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-03-05 23:44:31 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-03-05 23:44:31 +0100
commit743e66a3469af27819bcd0e3e1694d2a4c523c6b (patch)
treef6ae7e4122eb5ff249d699bc2c786e2d5a7e35b7 /src/ClockTAI.cpp
parent0957760c42cc04d9c295b649b039015186b25609 (diff)
downloaddabmux-743e66a3469af27819bcd0e3e1694d2a4c523c6b.tar.gz
dabmux-743e66a3469af27819bcd0e3e1694d2a4c523c6b.tar.bz2
dabmux-743e66a3469af27819bcd0e3e1694d2a4c523c6b.zip
Use std::chrono in ClockTAI
Diffstat (limited to 'src/ClockTAI.cpp')
-rw-r--r--src/ClockTAI.cpp23
1 files changed, 4 insertions, 19 deletions
diff --git a/src/ClockTAI.cpp b/src/ClockTAI.cpp
index c7b045b..5334bbd 100644
--- a/src/ClockTAI.cpp
+++ b/src/ClockTAI.cpp
@@ -52,22 +52,14 @@
ClockTAI::ClockTAI()
{
m_offset = 0;
- m_bulletin_download_time.tv_nsec = 0;
- m_bulletin_download_time.tv_sec = 0;
}
int ClockTAI::get_offset()
{
-#if ENABLE_OUTPUT_EDI
- struct timespec time_now;
+ auto time_now = std::chrono::system_clock::now();
- int err = clock_gettime(CLOCK_REALTIME, &time_now);
- if (err) {
- throw std::runtime_error("ClockTAI::get_offset() clock_gettime failed");
- }
-
- if (time_now.tv_sec - m_bulletin_download_time.tv_sec >
- 3600 * 24 * 31) {
+ if (time_now - m_bulletin_download_time >
+ std::chrono::seconds(3600 * 24 * 31)) {
// Refresh if it's older than one month. Leap seconds are
// announced several months in advance
@@ -84,7 +76,6 @@ int ClockTAI::get_offset()
etiLog.level(info) << "Updated TAI-UTC offset to " << m_offset << "s.";
}
-#endif // ENABLE_OUTPUT_EDI
return m_offset;
}
@@ -183,11 +174,7 @@ int ClockTAI::download_tai_utc_bulletin(const char* url)
}
else {
// Save the download time of the bulletin
- int err = clock_gettime(CLOCK_REALTIME, &m_bulletin_download_time);
- if (err) {
- perror("REALTIME clock_gettime failed");
- r = 1;
- }
+ m_bulletin_download_time = std::chrono::system_clock::now();
}
/* always cleanup */
@@ -230,5 +217,3 @@ void debug_tai_clk()
}
#endif
-
-