summaryrefslogtreecommitdiffstats
path: root/src/ClockTAI.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2018-01-31 04:39:16 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2018-01-31 04:39:16 +0100
commit21d54ff7296ff33c11b9f7b788417a11e702f0d0 (patch)
treec29bb1e37fe17588574df5c904936dbc71ae146f /src/ClockTAI.cpp
parentb4f166c1221bb1bb6dd14878dffff74d1c6cd21d (diff)
downloaddabmux-21d54ff7296ff33c11b9f7b788417a11e702f0d0.tar.gz
dabmux-21d54ff7296ff33c11b9f7b788417a11e702f0d0.tar.bz2
dabmux-21d54ff7296ff33c11b9f7b788417a11e702f0d0.zip
Add TAI bulletin expiry to RC and to munin
Diffstat (limited to 'src/ClockTAI.cpp')
-rw-r--r--src/ClockTAI.cpp49
1 files changed, 47 insertions, 2 deletions
diff --git a/src/ClockTAI.cpp b/src/ClockTAI.cpp
index 8c01127..c481841 100644
--- a/src/ClockTAI.cpp
+++ b/src/ClockTAI.cpp
@@ -76,6 +76,12 @@ static const char* tai_tz_url =
static const char* tai_ietf_cache_file = "/tmp/odr-dabmux-leap-seconds.cache";
+ClockTAI::ClockTAI() :
+ RemoteControllable("clocktai")
+{
+ RC_ADD_PARAMETER(expiry, "Number of seconds until TAI Bulletin expires");
+}
+
int ClockTAI::get_valid_offset()
{
int offset = 0;
@@ -152,6 +158,8 @@ int ClockTAI::get_offset()
using namespace std::chrono;
auto time_now = system_clock::now();
+ std::unique_lock<std::mutex> lock(m_data_mutex);
+
if (not m_offset_valid) {
#ifdef TEST
m_offset = 37; // Valid in early 2017
@@ -353,6 +361,11 @@ void ClockTAI::update_cache(const char* cache_filename)
bool ClockTAI::bulletin_is_valid()
{
+ return bulletin_expiry_delay() > 0;
+}
+
+int64_t ClockTAI::bulletin_expiry_delay() const
+{
// The bulletin contains one line that specifies an expiration date
// in NTP time. If that point in time is in the future, we consider
// the bulletin valid.
@@ -380,10 +393,12 @@ bool ClockTAI::bulletin_is_valid()
const int64_t expiry_unix =
std::atol(expiry_data_str.c_str()) - ntp_unix_offset;
- return expiry_unix > now;
+ if (expiry_unix > now) {
+ return expiry_unix - now;
+ }
}
}
- return false;
+ return -1;
}
void ClockTAI::download_tai_utc_bulletin(const char* url)
@@ -418,6 +433,36 @@ void ClockTAI::download_tai_utc_bulletin(const char* url)
#endif // HAVE_CURL
}
+void ClockTAI::set_parameter(const string& parameter, const string& value)
+{
+ if (parameter == "expiry") {
+ throw ParameterError("Parameter '" + parameter +
+ "' is not read-only in controllable " + get_rc_name());
+ }
+ else {
+ throw ParameterError("Parameter '" + parameter +
+ "' is not exported by controllable " + get_rc_name());
+ }
+}
+
+const string ClockTAI::get_parameter(const string& parameter) const
+{
+ if (parameter == "expiry") {
+ std::unique_lock<std::mutex> lock(m_data_mutex);
+ int64_t expiry = bulletin_expiry_delay();
+ if (expiry > 0) {
+ return to_string(expiry);
+ }
+ else {
+ return "Bulletin expired or invalid!";
+ }
+ }
+ else {
+ throw ParameterError("Parameter '" + parameter +
+ "' is not exported by controllable " + get_rc_name());
+ }
+}
+
#if 0
// Example testing code
void debug_tai_clk()