diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-01-05 18:42:28 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-01-08 17:46:00 -0800 |
commit | 20a4e2370a9eb682b4d80fba7a5386c6e0a629d4 (patch) | |
tree | c8554ec8a35906860de14f0c7453adb0a301f153 /host | |
parent | 33ddbbb25702cab0fb271367e4ffd9563a6c75f5 (diff) | |
download | uhd-20a4e2370a9eb682b4d80fba7a5386c6e0a629d4.tar.gz uhd-20a4e2370a9eb682b4d80fba7a5386c6e0a629d4.tar.bz2 uhd-20a4e2370a9eb682b4d80fba7a5386c6e0a629d4.zip |
mpmd: Factor out compat number check
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/mpmd/mpmd_impl.cpp | 85 |
1 files changed, 59 insertions, 26 deletions
diff --git a/host/lib/usrp/mpmd/mpmd_impl.cpp b/host/lib/usrp/mpmd/mpmd_impl.cpp index cb5dfa68d..85ce2ec9d 100644 --- a/host/lib/usrp/mpmd/mpmd_impl.cpp +++ b/host/lib/usrp/mpmd/mpmd_impl.cpp @@ -321,6 +321,60 @@ namespace { } } } + + /*! Throw an exception if compat numbers don't match. + * + * \param component Name of the component for which we're checking the + * compat number (for logging and exceptions strings). + * \param expected Tuple of 2 integers representing MAJOR.MINOR compat + * number. + * \param actual Tuple of 2 integers representing MAJOR.MINOR compat + * number. + */ + void assert_compat_number_throw( + const std::string &component, + const std::vector<size_t> &expected, + const std::vector<size_t> &actual + ) { + UHD_ASSERT_THROW(expected.size() == 2); + UHD_ASSERT_THROW(actual.size() == 2); + UHD_LOGGER_TRACE("MPMD") + << "Checking " << component << " compat number. Expected: " + << expected[0] << "." << expected[1] + << " Actual: " + << actual[0] << "." << actual[1] + ; + + if (actual[0] != expected[0]) { + const std::string err_msg = + str(boost::format("%s major compat number mismatch. " + "Expected: %i.%i Actual: %i.%i") + % component + % expected[0] % expected[1] + % actual[0] % actual[1]); + UHD_LOG_ERROR("MPMD", err_msg); + throw uhd::runtime_error(err_msg); + } + if (actual[1] < expected[1]) { + const std::string err_msg = + str(boost::format("%s minor compat number mismatch. " + "Expected: %i.%i Actual: %i.%i") + % component + % expected[0] % expected[1] + % actual[0] % actual[1]); + UHD_LOG_ERROR("MPMD", err_msg); + throw uhd::runtime_error(err_msg); + } + if (actual[1] > expected[1]) { + const std::string err_msg = + str(boost::format("%s minor compat number mismatch. " + "Expected: %i.%i Actual: %i.%i") + % component + % expected[0] % expected[1] + % actual[0] % actual[1]); + UHD_LOG_WARNING("MPMD", err_msg); + } + } } @@ -446,32 +500,11 @@ void mpmd_impl::setup_mb( const size_t mb_index, const size_t base_xport_addr ) { - - // Check the compatibility number - UHD_LOGGER_TRACE("MPMD") << boost::format( - "Checking MPM compat number against ours: %i.%i") - % MPM_COMPAT_NUM[0] % MPM_COMPAT_NUM[1]; - const auto compat_num = - mb->rpc->request<std::vector<size_t>>("get_mpm_compat_num"); - UHD_LOGGER_TRACE("MPMD") << boost::format( - "Compat number received: %d.%d") - % compat_num[0] % compat_num[1]; - - const size_t c_major = compat_num[0], c_minor = compat_num[1]; - if (c_major != MPM_COMPAT_NUM[0]) { - UHD_LOGGER_ERROR("MPMD") << boost::format( - "MPM major compat number mismatch." - "Expected %i.%i Actual %i.%i") - % MPM_COMPAT_NUM[0] % MPM_COMPAT_NUM[1] % c_major % c_minor; - throw uhd::runtime_error("MPM compatibility number mismatch."); - } - if (c_minor < MPM_COMPAT_NUM[1]) { - UHD_LOGGER_ERROR("MPMD") << boost::format( - "MPM minor compat number mismatch." - "Expected %d.%d Actual %d.%d") - % MPM_COMPAT_NUM[0] % MPM_COMPAT_NUM[1] % c_major % c_minor; - throw uhd::runtime_error("MPM compatibility number mismatch."); - } + assert_compat_number_throw( + "MPM", + MPM_COMPAT_NUM, + mb->rpc->request<std::vector<size_t>>("get_mpm_compat_num") + ); UHD_LOG_DEBUG("MPMD", "Initializing mboard " << mb_index); mb->init(); |