2011-05-04 02:28:13 +00:00
|
|
|
//
|
|
|
|
|
// Copyright 2011 Ettus Research LLC
|
|
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
|
2011-05-04 19:18:11 +00:00
|
|
|
#include <uhd/utils/log.hpp>
|
2011-05-13 19:41:35 +00:00
|
|
|
#include <uhd/utils/msg.hpp>
|
2011-05-04 02:28:13 +00:00
|
|
|
#include <uhd/utils/static.hpp>
|
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
|
#include <boost/format.hpp>
|
|
|
|
|
#include <boost/thread/mutex.hpp>
|
|
|
|
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
|
|
|
|
#ifdef BOOST_MSVC
|
2011-05-05 00:01:41 +00:00
|
|
|
//whoops! https://svn.boost.org/trac/boost/ticket/5287
|
|
|
|
|
//enjoy this useless dummy class instead
|
|
|
|
|
namespace boost{ namespace interprocess{
|
|
|
|
|
struct file_lock{
|
|
|
|
|
file_lock(const char * = NULL){}
|
|
|
|
|
void lock(void){}
|
|
|
|
|
void unlock(void){}
|
|
|
|
|
};
|
|
|
|
|
}} //namespace
|
|
|
|
|
#else
|
|
|
|
|
#include <boost/interprocess/sync/file_lock.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef BOOST_MSVC
|
2011-05-04 02:28:13 +00:00
|
|
|
#define USE_GET_TEMP_PATH
|
|
|
|
|
#include <Windows.h> //GetTempPath
|
|
|
|
|
#endif
|
|
|
|
|
#include <stdio.h> //P_tmpdir
|
|
|
|
|
#include <cstdlib> //getenv
|
|
|
|
|
#include <fstream>
|
2011-05-13 19:41:35 +00:00
|
|
|
#include <sstream>
|
2011-05-04 18:49:02 +00:00
|
|
|
#include <cctype>
|
2011-05-04 02:28:13 +00:00
|
|
|
|
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
namespace pt = boost::posix_time;
|
2011-05-05 00:01:41 +00:00
|
|
|
namespace ip = boost::interprocess;
|
2011-05-04 02:28:13 +00:00
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* Helper function to get the system's temporary path
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
static fs::path get_temp_path(void){
|
|
|
|
|
const char *tmp_path = NULL;
|
|
|
|
|
|
|
|
|
|
//try the official uhd temp path environment variable
|
|
|
|
|
tmp_path = std::getenv("UHD_TEMP_PATH");
|
|
|
|
|
if (tmp_path != NULL) return tmp_path;
|
|
|
|
|
|
|
|
|
|
//try the windows function if available
|
|
|
|
|
#ifdef USE_GET_TEMP_PATH
|
2011-05-04 18:49:02 +00:00
|
|
|
char lpBuffer[2048];
|
|
|
|
|
if (GetTempPath(sizeof(lpBuffer), lpBuffer)) return lpBuffer;
|
2011-05-04 02:28:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
//try windows environment variables
|
|
|
|
|
tmp_path = std::getenv("TMP");
|
|
|
|
|
if (tmp_path != NULL) return tmp_path;
|
|
|
|
|
|
|
|
|
|
tmp_path = std::getenv("TEMP");
|
|
|
|
|
if (tmp_path != NULL) return tmp_path;
|
|
|
|
|
|
|
|
|
|
//try the stdio define if available
|
|
|
|
|
#ifdef P_tmpdir
|
|
|
|
|
return P_tmpdir;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
//try unix environment variables
|
|
|
|
|
tmp_path = std::getenv("TMPDIR");
|
|
|
|
|
if (tmp_path != NULL) return tmp_path;
|
|
|
|
|
|
|
|
|
|
//give up and use the unix default
|
|
|
|
|
return "/tmp";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2011-05-13 19:41:35 +00:00
|
|
|
* Global resources for the logger
|
2011-05-04 02:28:13 +00:00
|
|
|
**********************************************************************/
|
2011-05-13 19:41:35 +00:00
|
|
|
class log_resource_type{
|
2011-05-04 02:28:13 +00:00
|
|
|
public:
|
2011-06-01 20:57:25 +00:00
|
|
|
uhd::_log::verbosity_t level;
|
2011-05-04 18:49:02 +00:00
|
|
|
|
2011-05-13 19:41:35 +00:00
|
|
|
log_resource_type(void){
|
2011-05-13 19:48:36 +00:00
|
|
|
|
|
|
|
|
//file lock pointer must be null
|
|
|
|
|
_file_lock = NULL;
|
|
|
|
|
|
2011-05-04 18:49:02 +00:00
|
|
|
//set the default log level
|
2011-05-13 19:41:35 +00:00
|
|
|
level = uhd::_log::never;
|
2011-05-04 18:49:02 +00:00
|
|
|
|
|
|
|
|
//allow override from macro definition
|
|
|
|
|
#ifdef UHD_LOG_LEVEL
|
|
|
|
|
_set_log_level(BOOST_STRINGIZE(UHD_LOG_LEVEL));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
//allow override from environment variable
|
|
|
|
|
const char * log_level_env = std::getenv("UHD_LOG_LEVEL");
|
|
|
|
|
if (log_level_env != NULL) _set_log_level(log_level_env);
|
2011-05-04 02:28:13 +00:00
|
|
|
}
|
|
|
|
|
|
2011-05-13 19:41:35 +00:00
|
|
|
~log_resource_type(void){
|
2011-06-01 20:57:25 +00:00
|
|
|
boost::mutex::scoped_lock lock(_mutex);
|
2011-05-04 18:49:02 +00:00
|
|
|
_file_stream.close();
|
2011-05-13 19:41:35 +00:00
|
|
|
if (_file_lock != NULL) delete _file_lock;
|
2011-05-04 02:28:13 +00:00
|
|
|
}
|
|
|
|
|
|
2011-06-01 20:57:25 +00:00
|
|
|
void log_to_file(const std::string &log_msg){
|
|
|
|
|
boost::mutex::scoped_lock lock(_mutex);
|
2011-05-13 19:41:35 +00:00
|
|
|
if (_file_lock == NULL){
|
|
|
|
|
const std::string log_path = (get_temp_path() / "uhd.log").string();
|
|
|
|
|
_file_stream.open(log_path.c_str(), std::fstream::out | std::fstream::app);
|
|
|
|
|
_file_lock = new ip::file_lock(log_path.c_str());
|
2011-05-05 00:01:41 +00:00
|
|
|
}
|
2011-05-13 19:41:35 +00:00
|
|
|
_file_lock->lock();
|
2011-06-01 20:57:25 +00:00
|
|
|
_file_stream << log_msg << std::flush;
|
2011-05-13 19:41:35 +00:00
|
|
|
_file_lock->unlock();
|
2011-05-04 18:49:02 +00:00
|
|
|
}
|
|
|
|
|
|
2011-05-04 02:28:13 +00:00
|
|
|
private:
|
2011-05-04 18:49:02 +00:00
|
|
|
//! set the log level from a string that is either a digit or an enum name
|
|
|
|
|
void _set_log_level(const std::string &log_level_str){
|
2011-05-13 19:41:35 +00:00
|
|
|
const uhd::_log::verbosity_t log_level_num = uhd::_log::verbosity_t(log_level_str[0]-'0');
|
|
|
|
|
if (std::isdigit(log_level_str[0]) and log_level_num >= uhd::_log::always and log_level_num <= uhd::_log::never){
|
|
|
|
|
this->level = log_level_num;
|
|
|
|
|
return;
|
2011-05-04 18:49:02 +00:00
|
|
|
}
|
2011-05-13 19:41:35 +00:00
|
|
|
#define if_lls_equal(name) else if(log_level_str == #name) this->level = uhd::_log::name
|
2011-05-04 18:49:02 +00:00
|
|
|
if_lls_equal(always);
|
|
|
|
|
if_lls_equal(often);
|
|
|
|
|
if_lls_equal(regularly);
|
|
|
|
|
if_lls_equal(rarely);
|
|
|
|
|
if_lls_equal(very_rarely);
|
2011-05-05 02:53:01 +00:00
|
|
|
if_lls_equal(never);
|
2011-05-04 18:49:02 +00:00
|
|
|
}
|
|
|
|
|
|
2011-05-13 19:41:35 +00:00
|
|
|
//file stream and lock:
|
2011-05-04 18:49:02 +00:00
|
|
|
std::ofstream _file_stream;
|
2011-05-13 19:41:35 +00:00
|
|
|
ip::file_lock *_file_lock;
|
2011-06-01 20:57:25 +00:00
|
|
|
boost::mutex _mutex;
|
2011-05-04 02:28:13 +00:00
|
|
|
};
|
|
|
|
|
|
2011-05-13 19:41:35 +00:00
|
|
|
UHD_SINGLETON_FCN(log_resource_type, log_rs);
|
2011-05-04 02:28:13 +00:00
|
|
|
|
|
|
|
|
/***********************************************************************
|
2011-05-05 01:36:10 +00:00
|
|
|
* The logger object implementation
|
2011-05-04 02:28:13 +00:00
|
|
|
**********************************************************************/
|
2011-05-04 21:33:35 +00:00
|
|
|
//! get the relative file path from the host directory
|
|
|
|
|
static std::string get_rel_file_path(const fs::path &file){
|
|
|
|
|
fs::path abs_path = file.branch_path();
|
|
|
|
|
fs::path rel_path = file.leaf();
|
|
|
|
|
while (not abs_path.empty() and abs_path.leaf() != "host"){
|
|
|
|
|
rel_path = abs_path.leaf() / rel_path;
|
|
|
|
|
abs_path = abs_path.branch_path();
|
|
|
|
|
}
|
|
|
|
|
return rel_path.string();
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-01 20:57:25 +00:00
|
|
|
struct uhd::_log::log::impl{
|
|
|
|
|
std::ostringstream ss;
|
|
|
|
|
verbosity_t verbosity;
|
|
|
|
|
};
|
|
|
|
|
|
2011-05-04 02:28:13 +00:00
|
|
|
uhd::_log::log::log(
|
|
|
|
|
const verbosity_t verbosity,
|
|
|
|
|
const std::string &file,
|
|
|
|
|
const unsigned int line,
|
|
|
|
|
const std::string &function
|
|
|
|
|
){
|
2011-06-01 20:57:25 +00:00
|
|
|
_impl = UHD_PIMPL_MAKE(impl, ());
|
|
|
|
|
_impl->verbosity = verbosity;
|
2011-05-04 02:28:13 +00:00
|
|
|
const std::string time = pt::to_simple_string(pt::microsec_clock::local_time());
|
2011-05-04 21:33:35 +00:00
|
|
|
const std::string header1 = str(boost::format("-- %s - level %d") % time % int(verbosity));
|
|
|
|
|
const std::string header2 = str(boost::format("-- %s") % function).substr(0, 80);
|
|
|
|
|
const std::string header3 = str(boost::format("-- %s:%u") % get_rel_file_path(file) % line);
|
|
|
|
|
const std::string border = std::string(std::max(std::max(header1.size(), header2.size()), header3.size()), '-');
|
2011-06-01 20:57:25 +00:00
|
|
|
_impl->ss
|
2011-05-04 02:28:13 +00:00
|
|
|
<< std::endl
|
2011-05-04 21:33:35 +00:00
|
|
|
<< border << std::endl
|
|
|
|
|
<< header1 << std::endl
|
|
|
|
|
<< header2 << std::endl
|
|
|
|
|
<< header3 << std::endl
|
|
|
|
|
<< border << std::endl
|
2011-05-04 02:28:13 +00:00
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uhd::_log::log::~log(void){
|
2011-06-01 20:57:25 +00:00
|
|
|
if (_impl->verbosity < log_rs().level) return;
|
|
|
|
|
_impl->ss << std::endl;
|
2011-05-13 19:41:35 +00:00
|
|
|
try{
|
2011-06-01 20:57:25 +00:00
|
|
|
log_rs().log_to_file(_impl->ss.str());
|
2011-05-13 19:41:35 +00:00
|
|
|
}
|
|
|
|
|
catch(const std::exception &e){
|
|
|
|
|
/*!
|
|
|
|
|
* Critical behavior below.
|
|
|
|
|
* The following steps must happen in order to avoid a lock-up condition.
|
|
|
|
|
* This is because the message facility will call into the logging facility.
|
2011-06-01 20:57:25 +00:00
|
|
|
* Therefore we must disable the logger (level = never) before messaging.
|
2011-05-13 19:41:35 +00:00
|
|
|
*/
|
|
|
|
|
log_rs().level = never;
|
|
|
|
|
UHD_MSG(error)
|
|
|
|
|
<< "Logging failed: " << e.what() << std::endl
|
|
|
|
|
<< "Logging has been disabled for this process" << std::endl
|
|
|
|
|
;
|
|
|
|
|
}
|
2011-05-04 02:28:13 +00:00
|
|
|
}
|
|
|
|
|
|
2011-05-05 03:40:36 +00:00
|
|
|
std::ostream & uhd::_log::log::operator()(void){
|
2011-06-01 20:57:25 +00:00
|
|
|
return _impl->ss;
|
2011-05-04 02:28:13 +00:00
|
|
|
}
|