mirror of
https://github.com/boostorg/log.git
synced 2026-01-19 16:32:09 +00:00
This replaces boost::thread and most mutexes and condition variables with std equivalents. It also adds support for std lock types to the strictest_lock type trait. This significantly, although not completely, reduces the dependency on Boost.Thread. Refs https://github.com/boostorg/log/issues/232.
131 lines
4.0 KiB
C++
131 lines
4.0 KiB
C++
/*
|
|
* Copyright Andrey Semashev 2007 - 2015.
|
|
* Distributed under the Boost Software License, Version 1.0.
|
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
|
* http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
/*!
|
|
* \file record_emission.cpp
|
|
* \author Andrey Semashev
|
|
* \date 22.03.2009
|
|
*
|
|
* \brief This code measures performance of log record emission
|
|
*/
|
|
|
|
// #define BOOST_LOG_USE_CHAR
|
|
// #define BOOST_ALL_DYN_LINK 1
|
|
// #define BOOST_LOG_DYN_LINK 1
|
|
#define BOOST_NO_DYN_LINK 1
|
|
|
|
#include <vector>
|
|
#include <chrono>
|
|
#include <thread>
|
|
#include <iomanip>
|
|
#include <iostream>
|
|
#include <boost/smart_ptr/shared_ptr.hpp>
|
|
#include <boost/smart_ptr/make_shared_object.hpp>
|
|
|
|
#include <boost/log/core.hpp>
|
|
#include <boost/log/common.hpp>
|
|
#include <boost/log/attributes.hpp>
|
|
#include <boost/log/sinks.hpp>
|
|
#include <boost/log/sinks/basic_sink_backend.hpp>
|
|
#include <boost/log/sources/logger.hpp>
|
|
|
|
#include <boost/log/expressions.hpp>
|
|
|
|
#include <boost/log/attributes/scoped_attribute.hpp>
|
|
|
|
#include "test_barrier.hpp"
|
|
|
|
enum config
|
|
{
|
|
RECORD_COUNT = 20000000,
|
|
THREAD_COUNT = 8,
|
|
SINK_COUNT = 3
|
|
};
|
|
|
|
namespace logging = boost::log;
|
|
namespace expr = boost::log::expressions;
|
|
namespace sinks = boost::log::sinks;
|
|
namespace attrs = boost::log::attributes;
|
|
namespace src = boost::log::sources;
|
|
namespace keywords = boost::log::keywords;
|
|
|
|
enum severity_level
|
|
{
|
|
normal,
|
|
warning,
|
|
error
|
|
};
|
|
|
|
BOOST_LOG_ATTRIBUTE_KEYWORD(severity, "Severity", severity_level)
|
|
|
|
namespace {
|
|
|
|
//! A fake sink backend that receives log records
|
|
class fake_backend :
|
|
public sinks::basic_sink_backend< sinks::concurrent_feeding >
|
|
{
|
|
public:
|
|
void consume(logging::record_view const& rec)
|
|
{
|
|
}
|
|
};
|
|
|
|
} // namespace
|
|
|
|
void test(unsigned int record_count, test_barrier& bar)
|
|
{
|
|
BOOST_LOG_SCOPED_THREAD_TAG("ThreadID", boost::this_thread::get_id());
|
|
src::severity_logger< severity_level > slg;
|
|
// src::logger lg;
|
|
bar.arrive_and_wait();
|
|
|
|
for (unsigned int i = 0; i < record_count; ++i)
|
|
{
|
|
BOOST_LOG_SEV(slg, warning) << "Test record";
|
|
// BOOST_LOG(lg) << "Test record";
|
|
}
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
std::cout << "Test config: " << THREAD_COUNT << " threads, " << SINK_COUNT << " sinks, " << RECORD_COUNT << " records" << std::endl;
|
|
// typedef sinks::unlocked_sink< fake_backend > fake_sink;
|
|
// typedef sinks::synchronous_sink< fake_backend > fake_sink;
|
|
typedef sinks::asynchronous_sink< fake_backend > fake_sink;
|
|
for (unsigned int i = 0; i < SINK_COUNT; ++i)
|
|
logging::core::get()->add_sink(boost::make_shared< fake_sink >());
|
|
|
|
logging::core::get()->add_global_attribute("LineID", attrs::counter< unsigned int >(1));
|
|
logging::core::get()->add_global_attribute("TimeStamp", attrs::local_clock());
|
|
logging::core::get()->add_global_attribute("Scope", attrs::named_scope());
|
|
|
|
// logging::core::get()->set_filter(severity > normal); // all records pass the filter
|
|
// logging::core::get()->set_filter(severity > error); // all records don't pass the filter
|
|
|
|
// logging::core::get()->set_filter(severity > error); // all records don't pass the filter
|
|
|
|
const unsigned int record_count = RECORD_COUNT / THREAD_COUNT;
|
|
test_barrier bar(THREAD_COUNT);
|
|
std::vector< std::thread > threads(THREAD_COUNT - 1);
|
|
|
|
for (unsigned int i = 0; i < THREAD_COUNT - 1; ++i)
|
|
threads[i] = std::thread([&bar, record_count]() { test(record_count, bar); });
|
|
|
|
const auto start = std::chrono::steady_clock::now();
|
|
test(record_count, bar);
|
|
for (unsigned int i = 0; i < THREAD_COUNT - 1; ++i)
|
|
threads[i].join();
|
|
const auto finish = std::chrono::steady_clock::now();
|
|
|
|
unsigned long long duration_us = std::chrono::duration_cast< std::chrono::microseconds >(finish - start).count();
|
|
|
|
std::cout << "Test duration: " << duration << " us ("
|
|
<< std::fixed << std::setprecision(3) << static_cast< double >(RECORD_COUNT) / (static_cast< double >(duration) / 1000000.0)
|
|
<< " records per second)" << std::endl;
|
|
|
|
return 0;
|
|
}
|