如何使用 boost.log 以 dec 格式打印进程 ID 和线程 ID

how to print ProcessID and ThreadID in dec-format with boost.log

本文关键字:ID 进程 式打印 线程 格式 dec 何使用 boost log      更新时间:2023-10-16

我在程序中使用 boost.log,默认格式化程序以十六进制格式输出 ProcessID 和 ThreadID,任何人都知道如何以 dec 格式打印它们,谢谢。

这是我代码的 GitHub:https://github.com/owenliang/boost_asio,谢谢。

  boost::log::formatter scope_formatter = boost::log::expressions::stream << "[" <<
      boost::log::expressions::format_date_time<boost::posix_time::ptime>("TimeStamp", "%Y-%m-%d %H:%M:%S") <<
      "] [" << boost::log::expressions::attr<boost::log::attributes::current_process_id::value_type>("ProcessID") << 
      "-" << boost::log::expressions::attr<boost::log::attributes::current_thread_id::value_type>("ThreadID") << "] [" <<
      boost::log::expressions::attr<boost::log::trivial::severity_level>("Severity") <<
      "] " << boost::log::expressions::format_named_scope("Scope", boost::log::keywords::format = "%c[%F:%l] ", 
        boost::log::keywords::depth = 1) << boost::log::expressions::smessage;

Boost Log 提供线程和进程 ID 作为类类型。如果要获取它们的整数值,则需要先获取它们的本机 ID,如下所示:

#include <boost/phoenix.hpp>
/* Define place holder attributes */
BOOST_LOG_ATTRIBUTE_KEYWORD(process_id, "ProcessID", attrs::current_process_id::value_type )
BOOST_LOG_ATTRIBUTE_KEYWORD(thread_id, "ThreadID", attrs::current_thread_id::value_type )
// Get Process native ID
attrs::current_process_id::value_type::native_type get_native_process_id(
        logging::value_ref<attrs::current_process_id::value_type,
        tag::process_id> const& pid)
{
    if (pid)
        return pid->native_id();
    return 0;
}
// Get Thread native ID
attrs::current_thread_id::value_type::native_type get_native_thread_id(
        logging::value_ref<attrs::current_thread_id::value_type,
        tag::thread_id> const& tid)
{
    if (tid)
        return tid->native_id();
    return 0;
}

然后在您的 set_formatter(( 中,例如:

   sink->set_formatter
        (
         expr::stream
         << boost::phoenix::bind(&get_native_process_id, process_id.or_none()) << ":"
         << boost::phoenix::bind(&get_native_thread_id, thread_id.or_none()) << ":"
         << "[" << expr::format_date_time< boost::posix_time::ptime >("TimeStamp", "%Y%m%d %H:%M:%S")
         << "]:*" << severity << "*:"
         << expr::smessage
        );

输出:

39157:140229314553664:[20170710 15:32:15]:*INF*:Log message