gpt4 book ai didi

c++ - 如何在 boost log 2.0 中设置 std::ios_base 标志,如 std::left?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:19:04 24 4
gpt4 key购买 nike

我有一个广泛使用 boost log 2.0 的应用程序。现在我想为该应用程序设置一些默认标志,如 std::setprecision(std::numeric_limits<double>::digits10 + 1)std::scientificstd::left 。但是我该怎么做呢?一种方法是在我的主要功能的最开始创建一个记录器并创建一个虚拟日志消息。这将永久设置所需的标志。但是没有更好的方法来做到这一点吗?

编辑回复:“OP should show actual code.”

我有一个全局日志记录单例,称为 L:

class L{
public:
enum severity_level
{
dddebug,
ddebug,
debug,
control,
iiinfo,
iinfo,
info,
result,
warning,
error,
critical
};

typedef boost::log::sources::severity_channel_logger<
severity_level, // the type of the severity level
std::string // the type of the channel name
> logger_t;
typedef boost::log::sinks::synchronous_sink< boost::log::sinks::text_ostream_backend > text_sink;
boost::shared_ptr< text_sink > sink_;

static L& get();
static boost::shared_ptr<text_sink> sink();
static double t0();
static double tElapsed();
private:
L();
double t0_p;
static std::string tElapsedFormat();

L(const L&) = delete;
void operator=(const L&) = delete;
};

它提供了一个日志接收器、严重级别并利用 MPI 方法在 MPI 节点之间进行同步计时。类成员的实现如下:

#include "log.h"

#include <iomanip>
#include <limits>
#include <fstream>
#include <boost/log/attributes/function.hpp>
#include <boost/smart_ptr/shared_ptr.hpp>
#include <boost/smart_ptr/make_shared_object.hpp>
#include <boost/log/core.hpp>
#include <boost/log/expressions.hpp>
#include <boost/log/sources/severity_channel_logger.hpp>
#include <boost/log/sinks/sync_frontend.hpp>
#include <boost/log/sinks/text_ostream_backend.hpp>
#include <boost/log/utility/setup/common_attributes.hpp>


namespace logging = boost::log;
namespace src = boost::log::sources;
namespace expr = boost::log::expressions;
namespace sinks = boost::log::sinks;
namespace attrs = boost::log::attributes;
namespace keywords = boost::log::keywords;

#include "mpiwrap.h"
#include <mpi.h>

BOOST_LOG_ATTRIBUTE_KEYWORD(t, "Time", std::string)
BOOST_LOG_ATTRIBUTE_KEYWORD(rank, "Rank", int)
BOOST_LOG_ATTRIBUTE_KEYWORD(channel, "Channel", std::string)
BOOST_LOG_ATTRIBUTE_KEYWORD(severity, "Severity", L::severity_level)

L::L():
sink_(boost::make_shared< text_sink >()),
t0_p(MPI_Wtime())
{

sink_->locked_backend()->add_stream(
boost::make_shared< std::ofstream >("log." + std::to_string(MpiWrap::getRank())));

sink_->set_formatter
(
expr::stream
<< "< "
<< t << " "
<< "[p:" << rank << "] "
<< "[c:" << channel << "] "
<< "[s:" << severity << "] "
<< expr::smessage
);

logging::core::get()->add_sink(sink_);

logging::core::get()->set_filter(

(channel == "ChannelName1" && severity >= dddebug)
|| (channel == "ChannelName2" && severity >= info)
|| (channel == "ChannelName3" && severity >= result)

);

// Add attributes
logging::core::get()->add_global_attribute("Time", attrs::make_function(&tElapsedFormat));
logging::core::get()->add_global_attribute("Rank", attrs::constant<int>(MpiWrap::getRank()));
}

L& L::get(){
static L instance;
return instance;
}

boost::shared_ptr<L::text_sink> L::sink(){
return get().sink_;
}

double L::t0(){
return get().t0_p;
}

double L::tElapsed(){
return MPI_Wtime() - t0();
}

std::string L::tElapsedFormat(){
std::stringstream ss;
const int prec = std::numeric_limits<double>::digits10;
ss << std::setw(prec + 2 + 6) << std::left << std::setprecision(prec) << tElapsed();
return ss.str();
}

std::ostream& operator<< (std::ostream& strm, L::severity_level level)
{
static const char* strings[] =
{
"DBG3",
"DBG2",
"DBG1",
"CTRL",
"INF3",
"INF2",
"INF1",
"RSLT",
"WARN",
"ERRR",
"CRIT"
};

if (static_cast< std::size_t >(level) < sizeof(strings) / sizeof(*strings))
strm << strings[level];
else
strm << static_cast< int >(level);

return strm;
}

现在开始使用:我的类通常有一个静态 logger_t(boost::log::sources::severity_channel_logger<severity_level, std::string> 的类型定义)成员

class A {
public:
logger_t logger;
//other stuff here
void function_which_does_logging();
};

L::logger_t A::logger(boost::log::keywords::channel = "ClassA");

void A::function_which_does_logging(){
//do non logging related stuff
BOOST_LOG_SEV(logger, L::result) << "the error is: " << 0.1234567890;
//do non logging related stuff
}

我目前对这个问题的解决方案是在我的程序开头放置一个日志语句

int main(){
L::logger_t logger(boost::log::keywords::channel = "init");
BOOST_LOG_SEV(logger, L::critical) << "setting up logger" << std::scientific << std::setprecision(std::numeric_limits<double>::digits10 + 1);

//do stuff
}

最佳答案

@rhashimoto 很好地说明了您当前的解决方案将如何因多线程/并发日志记录操作而崩溃。我觉得最好的解决方案是定义您自己的日志记录宏来替换包含流修饰符的 BOOST_LOG_SEV,如下所示:

#define LOG_SCIENTIFIC(logger, sev) (BOOST_LOG_SEV(logger, sev) << std::scientific)

它可以用作 BOOST_LOG_SEV 的替代品,后者将数字格式化为科学数据。但是,检查您的代码并用新的自定义宏替换每个日志记录操作可能会很痛苦。除了定义自己的宏之外,您还可以重新定义 BOOST_LOG_SEV 以按照您的意愿运行。 boost/log/sources/severity_feature.hpp 定义 BOOST_LOG_SEV 如下:

//! An equivalent to BOOST_LOG_STREAM_SEV(logger, lvl)
#define BOOST_LOG_SEV(logger, lvl) BOOST_LOG_STREAM_SEV(logger, lvl)

因为 BOOST_LOG_STREAM_SEV 仍然是公共(public) boost API 的一部分,您应该能够像这样安全地重新定义 BOOST_LOG_SEV:

#define BOOST_LOG_SEV(logger, lvl) (BOOST_LOG_STREAM_SEV(logger, lvl) << std::scientific)

只要它是在包含 boost 日志 header 之后定义的,它就应该执行您想要的操作。但是,我建议使用具有自定义名称的宏,这样其他人就可以清楚地知道您的代码在做什么。

关于c++ - 如何在 boost log 2.0 中设置 std::ios_base 标志,如 std::left?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23087376/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com