mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-30 02:19:35 +08:00
bench
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
// example.cpp : Simple logger example
|
||||
//
|
||||
// bench.cpp : spdlog benchmarks
|
||||
//
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
#include <atomic>
|
||||
#include "spdlog/spdlog.h"
|
||||
#include "spdlog/sinks/file_sinks.h"
|
||||
#include "spdlog/sinks/stdout_sinks.h"
|
||||
@@ -10,47 +16,93 @@
|
||||
using namespace std;
|
||||
using namespace std::chrono;
|
||||
using namespace spdlog;
|
||||
using namespace spdlog::sinks;
|
||||
using namespace utils;
|
||||
|
||||
|
||||
int main_(int argc, char* argv[])
|
||||
void bench(int howmany, std::shared_ptr<spdlog::logger> log)
|
||||
{
|
||||
try {
|
||||
|
||||
using namespace spdlog::sinks;
|
||||
spdlog::create<daily_file_sink_st>("mylog", "dailylog", "txt");
|
||||
const unsigned int howmany = argc <= 1 ? 1500000 : atoi(argv[1]);
|
||||
|
||||
spdlog::set_pattern("%Y-%m-%d %H:%M:%S.%e %l : %t");
|
||||
|
||||
|
||||
auto console = spdlog::create<sinks::stdout_sink_st>("reporter");
|
||||
console->info("Starting bench with", howmany, "iterations..");
|
||||
console->log() << "Streams are also supprted: " << std::hex << 255;
|
||||
spdlog::stop();
|
||||
|
||||
//return 0;
|
||||
auto bench = spdlog::create<sinks::rotating_file_sink_st>("bench", "myrotating", "txt", 1024 * 1024 * 1, 10, 0);
|
||||
|
||||
//auto bench = spdlog::create<sinks::simple_file_sink_st>("bench", "simplelog.txt", 1);
|
||||
//auto bench = spdlog::create<sinks::null_sink_st>("bench");
|
||||
cout << log->name() << ", " << format(howmany) << " iterations.." << endl;
|
||||
|
||||
auto start = system_clock::now();
|
||||
for (unsigned int i = 0; i < howmany; ++i)
|
||||
for (auto i = 0; i < howmany; ++i)
|
||||
{
|
||||
bench->info("Hello logger: msg number") << i;
|
||||
log->info("Hello logger: msg number ") << i;
|
||||
}
|
||||
|
||||
auto delta = system_clock::now() - start;
|
||||
auto delta_d = duration_cast<duration<double>> (delta).count();
|
||||
auto delta_d = duration_cast<duration<double>> (delta).count();
|
||||
cout << "Delta:" << format(delta_d) << " seconds" << endl;
|
||||
cout << "Rate:" << format(howmany / delta_d) << "/sec" << endl << endl;
|
||||
}
|
||||
|
||||
cout << "Total:" << format(howmany) << endl;
|
||||
cout << "Delta:" << format(delta_d) << endl;
|
||||
cout << "Rate:" << format(howmany / delta_d) << "/sec\n";
|
||||
|
||||
void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count)
|
||||
{
|
||||
|
||||
cout << log->name() << ", " << format(howmany) << " iterations.." << endl;
|
||||
std::atomic<int > msg_counter{0};
|
||||
vector<thread> threads;
|
||||
auto start = system_clock::now();
|
||||
for (int t = 0; t < thread_count; ++t)
|
||||
{
|
||||
threads.push_back(std::thread([&]() {
|
||||
while(msg_counter++ < howmany)
|
||||
log->info("Hello logger: msg number ") << msg_counter;
|
||||
|
||||
}));
|
||||
}
|
||||
|
||||
for(auto &t:threads)
|
||||
{
|
||||
t.join();
|
||||
};
|
||||
|
||||
auto delta = system_clock::now() - start;
|
||||
auto delta_d = duration_cast<duration<double>> (delta).count();
|
||||
cout << "Delta:" << format(delta_d) << " seconds" << endl;
|
||||
cout << "Rate:" << format(howmany / delta_d) << "/sec" << endl << endl;
|
||||
}
|
||||
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
|
||||
|
||||
try {
|
||||
|
||||
int howmany = argc <= 1 ? 100000 : atoi(argv[1]);
|
||||
int threads = argc <= 2 ? 4 : atoi(argv[2]);
|
||||
int flush_interval = 100;
|
||||
|
||||
|
||||
cout << "*******************************************************************************\n";
|
||||
cout << "Single threaded benchmarks. flush_interval = " << flush_interval << endl;
|
||||
cout << "*******************************************************************************\n";
|
||||
|
||||
auto rotating_st = spdlog::rotating_logger_st("rotating_st", "logs/rotating_st", 1024 * 1024 * 5, 5, flush_interval);
|
||||
bench(howmany, rotating_st);
|
||||
|
||||
auto daily_st = spdlog::daily_logger_st("daily_st", "logs/daily_st", flush_interval);
|
||||
bench(howmany, daily_st);
|
||||
|
||||
bench(howmany, spdlog::create<null_sink_st>("null_st"));
|
||||
|
||||
cout << "*******************************************************************************\n";
|
||||
cout << "Multi threaded benchmarks (" << threads << " threads), flush_interval = " << flush_interval << endl;
|
||||
cout << "*******************************************************************************\n";
|
||||
|
||||
auto rotating_mt = spdlog::rotating_logger_mt("rotating_mt", "logs/rotating_mt", 1024 * 1024 * 5, 5, flush_interval);
|
||||
bench_mt(howmany, rotating_mt, threads);
|
||||
|
||||
auto daily_mt = spdlog::daily_logger_mt("daily_mt", "logs/daily_mt", flush_interval);
|
||||
bench_mt(howmany, daily_mt, threads);
|
||||
|
||||
bench_mt(howmany, spdlog::create<null_sink_mt>("null_mt"), threads);
|
||||
}
|
||||
catch (std::exception &ex)
|
||||
{
|
||||
std::cerr << "Exception: " << ex.what() << std::endl;
|
||||
std::cerr << "Error: " << ex.what() << std::endl;
|
||||
perror("Last error");
|
||||
}
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user