diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-03-02 15:25:13 -0800 |
---|---|---|
committer | atrnati <54334261+atrnati@users.noreply.github.com> | 2020-03-03 08:51:32 -0600 |
commit | 876d4150aa3da531ddd687b48afada6e43f79146 (patch) | |
tree | fd72a71419f4cd800d4e500cfcaded4dfc8dc367 /host/lib/utils/load_modules.cpp | |
parent | 1393553d623bdf4ba40d5435c9719b6ce990d9ac (diff) | |
download | uhd-876d4150aa3da531ddd687b48afada6e43f79146.tar.gz uhd-876d4150aa3da531ddd687b48afada6e43f79146.tar.bz2 uhd-876d4150aa3da531ddd687b48afada6e43f79146.zip |
uhd: Apply clang-format against all .cpp and .hpp files in host/
Note: template_lvbitx.{cpp,hpp} need to be excluded from the list of
files that clang-format gets applied against.
Diffstat (limited to 'host/lib/utils/load_modules.cpp')
-rw-r--r-- | host/lib/utils/load_modules.cpp | 65 |
1 files changed, 32 insertions, 33 deletions
diff --git a/host/lib/utils/load_modules.cpp b/host/lib/utils/load_modules.cpp index c862a0abd..cac678975 100644 --- a/host/lib/utils/load_modules.cpp +++ b/host/lib/utils/load_modules.cpp @@ -5,11 +5,11 @@ // SPDX-License-Identifier: GPL-3.0-or-later // +#include <uhd/exception.hpp> #include <uhd/utils/paths.hpp> #include <uhd/utils/static.hpp> -#include <uhd/exception.hpp> -#include <boost/format.hpp> #include <boost/filesystem.hpp> +#include <boost/format.hpp> #include <iostream> #include <string> #include <vector> @@ -20,34 +20,34 @@ namespace fs = boost::filesystem; * Module Load Function **********************************************************************/ #ifdef HAVE_DLOPEN -#include <dlfcn.h> -static void load_module(const std::string &file_name){ - if (dlopen(file_name.c_str(), RTLD_LAZY) == NULL){ - throw uhd::os_error(str( - boost::format("dlopen failed to load \"%s\"") % file_name - )); +# include <dlfcn.h> +static void load_module(const std::string& file_name) +{ + if (dlopen(file_name.c_str(), RTLD_LAZY) == NULL) { + throw uhd::os_error( + str(boost::format("dlopen failed to load \"%s\"") % file_name)); } } #endif /* HAVE_DLOPEN */ #ifdef HAVE_LOAD_LIBRARY -#include <windows.h> -static void load_module(const std::string &file_name){ - if (LoadLibrary(file_name.c_str()) == NULL){ - throw uhd::os_error(str( - boost::format("LoadLibrary failed to load \"%s\"") % file_name - )); +# include <windows.h> +static void load_module(const std::string& file_name) +{ + if (LoadLibrary(file_name.c_str()) == NULL) { + throw uhd::os_error( + str(boost::format("LoadLibrary failed to load \"%s\"") % file_name)); } } #endif /* HAVE_LOAD_LIBRARY */ #ifdef HAVE_LOAD_MODULES_DUMMY -static void load_module(const std::string &file_name){ +static void load_module(const std::string& file_name) +{ throw uhd::not_implemented_error(str( - boost::format("Module loading not supported: Cannot load \"%s\"") % file_name - )); + boost::format("Module loading not supported: Cannot load \"%s\"") % file_name)); } #endif /* HAVE_LOAD_MODULES_DUMMY */ @@ -60,29 +60,27 @@ static void load_module(const std::string &file_name){ * Does not throw, prints to std error. * \param path the filesystem path */ -static void load_module_path(const fs::path &path){ - if (not fs::exists(path)){ - //std::cerr << boost::format("Module path \"%s\" not found.") % path.string() << std::endl; +static void load_module_path(const fs::path& path) +{ + if (not fs::exists(path)) { + // std::cerr << boost::format("Module path \"%s\" not found.") % path.string() << + // std::endl; return; } - //try to load the files in this path - if (fs::is_directory(path)){ - for( - fs::directory_iterator dir_itr(path); - dir_itr != fs::directory_iterator(); - ++dir_itr - ){ + // try to load the files in this path + if (fs::is_directory(path)) { + for (fs::directory_iterator dir_itr(path); dir_itr != fs::directory_iterator(); + ++dir_itr) { load_module_path(dir_itr->path()); } return; } - //its not a directory, try to load it - try{ + // its not a directory, try to load it + try { load_module(path.string()); - } - catch(const std::exception &err){ + } catch (const std::exception& err) { std::cerr << boost::format("Error: %s") % err.what() << std::endl; } } @@ -90,8 +88,9 @@ static void load_module_path(const fs::path &path){ /*! * Load all the modules given in the module paths. */ -UHD_STATIC_BLOCK(load_modules){ - for(const fs::path &path: uhd::get_module_paths()){ +UHD_STATIC_BLOCK(load_modules) +{ + for (const fs::path& path : uhd::get_module_paths()) { load_module_path(path); } } |