spdlog/example/bench.cpp

126 lines
3.7 KiB
C++
Raw Normal View History

2014-10-10 18:15:26 -04:00
//
2014-10-31 10:34:48 -04:00
// bench.cpp : spdlog benchmarks
//
#include <iostream>
#include <memory>
#include <string>
#include <thread>
#include <atomic>
#include "spdlog/spdlog.h"
#include "spdlog/sinks/file_sinks.h"
2014-10-31 20:12:12 -04:00
#include "spdlog/sinks/async_sink.h"
#include "spdlog/sinks/null_sink.h"
2014-10-10 18:15:26 -04:00
#include "utils.h"
using namespace std;
2014-10-10 18:15:26 -04:00
using namespace std::chrono;
using namespace spdlog;
2014-10-31 10:34:48 -04:00
using namespace spdlog::sinks;
2014-10-10 18:15:26 -04:00
using namespace utils;
2014-10-31 20:12:12 -04:00
void bench(int howmany, std::shared_ptr<spdlog::logger> log);
void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count);
int main(int argc, char* argv[])
2014-10-10 18:15:26 -04:00
{
2014-10-25 19:29:50 -04:00
2014-10-31 20:25:51 -04:00
int howmany = 250000;
2014-10-31 20:12:12 -04:00
int threads = 4;
int flush_interval = 1000;
int file_size = 30 * 1024 * 1024;
int rotating_files = 5;
2014-10-31 20:12:12 -04:00
try {
2014-10-31 20:12:12 -04:00
if(argc > 1)
howmany = atoi(argv[1]);
if (argc > 2)
threads = atoi(argv[2]);
2014-10-25 19:52:37 -04:00
2014-10-31 20:12:12 -04:00
cout << "*******************************************************************************\n";
cout << "Single thread, " << format(howmany) << " iterations, flush every " << flush_interval << " lines"<< endl;
cout << "*******************************************************************************\n";
2014-10-25 19:29:50 -04:00
2014-10-31 20:12:12 -04:00
auto rotating_st = spdlog::rotating_logger_st("rotating_st", "logs/rotating_st", file_size, rotating_files, flush_interval);
bench(howmany, rotating_st);
2014-10-25 19:29:50 -04:00
2014-10-31 20:12:12 -04:00
auto daily_st = spdlog::daily_logger_st("daily_st", "logs/daily_st", flush_interval);
bench(howmany, daily_st);
2014-10-31 20:25:51 -04:00
2014-10-31 20:12:12 -04:00
bench(howmany, spdlog::create<null_sink_st>("null_st"));
cout << "\n*******************************************************************************\n";
cout << threads << " threads sharing same logger, " << format(howmany) << " iterations, flush every " << flush_interval << " lines" << endl;
cout << "*******************************************************************************\n";
auto rotating_mt = spdlog::rotating_logger_mt("rotating_mt", "logs/rotating_mt", file_size, rotating_files, 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);
2014-10-25 19:29:50 -04:00
}
catch (std::exception &ex)
{
2014-10-31 10:34:48 -04:00
std::cerr << "Error: " << ex.what() << std::endl;
perror("Last error");
}
2014-10-10 18:15:26 -04:00
return 0;
}
2014-10-31 20:12:12 -04:00
void bench(int howmany, std::shared_ptr<spdlog::logger> log)
{
cout << log->name() << "...\t\t" << flush;
auto start = system_clock::now();
for (auto i = 0; i < howmany; ++i)
{
log->info("Hello logger: msg number ") << i << "**************************" << i + 1 << "," << 1 + 2;;
}
auto delta = system_clock::now() - start;
auto delta_d = duration_cast<duration<double>> (delta).count();
cout << format(int(howmany / delta_d)) << "/sec" << endl;
log->close();
}
void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count)
{
cout << log->name() << "...\t\t" << flush;
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 (true)
{
int counter = ++msg_counter;
if (counter > howmany) break;
log->info("Hello logger: msg number ") << counter;
}
}));
}
for(auto &t:threads)
{
t.join();
};
auto delta = system_clock::now() - start;
auto delta_d = duration_cast<duration<double>> (delta).count();
cout << format(int(howmany / delta_d)) << "/sec" << endl;
log->close();
}