spdlog/example/bench.cpp

108 lines
3.3 KiB
C++
Raw Normal View History

2014-10-11 06:15:26 +08:00
//
2014-10-31 22:34:48 +08: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"
#include "spdlog/sinks/stdout_sinks.h"
#include "spdlog/sinks/null_sink.h"
2014-10-11 06:15:26 +08:00
#include "utils.h"
using namespace std;
2014-10-11 06:15:26 +08:00
using namespace std::chrono;
using namespace spdlog;
2014-10-31 22:34:48 +08:00
using namespace spdlog::sinks;
2014-10-11 06:15:26 +08:00
using namespace utils;
2014-10-31 22:34:48 +08:00
void bench(int howmany, std::shared_ptr<spdlog::logger> log)
2014-10-11 06:15:26 +08:00
{
2014-10-31 23:02:42 +08:00
cout << log->name() << "...\t\t" << flush;
2014-10-31 22:34:48 +08:00
auto start = system_clock::now();
for (auto i = 0; i < howmany; ++i)
{
log->info("Hello logger: msg number ") << i;
}
2014-10-31 22:34:48 +08:00
auto delta = system_clock::now() - start;
auto delta_d = duration_cast<duration<double>> (delta).count();
2014-10-31 23:02:42 +08:00
cout << format(int(howmany / delta_d)) << "/sec" << endl;
2014-10-31 22:34:48 +08:00
}
2014-10-26 07:29:50 +08:00
2014-10-31 22:34:48 +08:00
void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count)
{
2014-10-31 23:02:42 +08:00
cout << log->name() << "...\t\t" << flush;
2014-10-31 22:34:48 +08:00
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();
};
2014-10-26 07:29:50 +08:00
2014-10-31 22:34:48 +08:00
auto delta = system_clock::now() - start;
auto delta_d = duration_cast<duration<double>> (delta).count();
2014-10-31 23:02:42 +08:00
cout << format(int(howmany / delta_d)) << "/sec" << endl;
2014-10-31 22:34:48 +08:00
}
2014-10-26 07:52:37 +08:00
2014-10-26 07:29:50 +08:00
2014-10-31 22:34:48 +08:00
int main(int argc, char* argv[])
{
2014-10-26 07:29:50 +08:00
2014-10-31 22:34:48 +08:00
try {
2014-10-31 23:02:42 +08:00
int howmany = argc <= 1 ? 250000 : atoi(argv[1]);
2014-10-31 22:34:48 +08:00
int threads = argc <= 2 ? 4 : atoi(argv[2]);
int flush_interval = 100;
2014-10-26 07:29:50 +08:00
2014-10-31 22:34:48 +08:00
cout << "*******************************************************************************\n";
2014-10-31 23:02:42 +08:00
cout << "Single thread, " << format(howmany) << " iterations, flush every " << flush_interval << " lines"<< endl;
2014-10-31 22:34:48 +08:00
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"));
2014-10-31 23:02:42 +08:00
cout << "\n*******************************************************************************\n";
cout << threads << " threads, " << format(howmany) << " iterations, flush every " << flush_interval << " lines" << endl;
2014-10-31 22:34:48 +08:00
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);
2014-10-26 07:29:50 +08:00
}
catch (std::exception &ex)
{
2014-10-31 22:34:48 +08:00
std::cerr << "Error: " << ex.what() << std::endl;
perror("Last error");
}
2014-10-11 06:15:26 +08:00
return 0;
}