2015-11-28 11:24:20 -05:00
|
|
|
//
|
|
|
|
// Copyright(c) 2015 Gabi Melman.
|
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
//
|
2014-10-31 21:20:54 -04:00
|
|
|
|
2014-10-10 18:15:26 -04:00
|
|
|
//
|
2014-10-31 10:34:48 -04:00
|
|
|
// bench.cpp : spdlog benchmarks
|
|
|
|
//
|
2018-04-13 20:34:57 -04:00
|
|
|
#include "spdlog/async.h"
|
2018-04-28 18:26:10 -04:00
|
|
|
#include "spdlog/sinks/daily_file_sink.h"
|
2018-03-09 08:26:33 -05:00
|
|
|
#include "spdlog/sinks/null_sink.h"
|
2018-04-28 18:36:45 -04:00
|
|
|
#include "spdlog/sinks/rotating_file_sink.h"
|
|
|
|
#include "spdlog/sinks/simple_file_sink.h"
|
2018-03-09 08:26:33 -05:00
|
|
|
#include "spdlog/spdlog.h"
|
|
|
|
#include "utils.h"
|
2015-09-10 15:58:53 -04:00
|
|
|
#include <atomic>
|
|
|
|
#include <cstdlib> // EXIT_FAILURE
|
2014-10-31 10:34:48 -04:00
|
|
|
#include <iostream>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <thread>
|
2014-10-30 21:17:40 -04:00
|
|
|
|
|
|
|
using namespace std;
|
2014-10-10 18:15:26 -04:00
|
|
|
using namespace std::chrono;
|
2014-10-30 21:17:40 -04:00
|
|
|
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);
|
2014-12-07 11:49:34 -05:00
|
|
|
|
2018-03-09 08:26:33 -05:00
|
|
|
int main(int argc, char *argv[])
|
2014-10-10 18:15:26 -04:00
|
|
|
{
|
2014-10-25 19:29:50 -04:00
|
|
|
|
2015-03-12 15:31:37 -04:00
|
|
|
int queue_size = 1048576;
|
|
|
|
int howmany = 1000000;
|
2018-04-28 18:23:18 -04:00
|
|
|
int threads = 10;
|
2014-12-20 19:47:04 -05:00
|
|
|
int file_size = 30 * 1024 * 1024;
|
|
|
|
int rotating_files = 5;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
|
2018-03-09 08:26:33 -05:00
|
|
|
if (argc > 1)
|
2014-12-20 19:47:04 -05:00
|
|
|
howmany = atoi(argv[1]);
|
|
|
|
if (argc > 2)
|
2018-03-09 08:26:33 -05:00
|
|
|
threads = atoi(argv[2]);
|
2015-03-12 15:31:37 -04:00
|
|
|
if (argc > 3)
|
|
|
|
queue_size = atoi(argv[3]);
|
2018-04-28 18:36:45 -04:00
|
|
|
|
2014-12-20 19:47:04 -05:00
|
|
|
cout << "*******************************************************************************\n";
|
2018-03-09 08:26:33 -05:00
|
|
|
cout << "Single thread, " << format(howmany) << " iterations" << endl;
|
2014-12-20 19:47:04 -05:00
|
|
|
cout << "*******************************************************************************\n";
|
|
|
|
|
2018-03-09 05:08:56 -05:00
|
|
|
auto rotating_st = spdlog::rotating_logger_st("rotating_st", "logs/rotating_st.log", file_size, rotating_files);
|
2014-12-20 19:47:04 -05:00
|
|
|
bench(howmany, rotating_st);
|
2018-03-09 05:08:56 -05:00
|
|
|
auto daily_st = spdlog::daily_logger_st("daily_st", "logs/daily_st.log");
|
2014-12-20 19:47:04 -05:00
|
|
|
bench(howmany, daily_st);
|
|
|
|
bench(howmany, spdlog::create<null_sink_st>("null_st"));
|
|
|
|
|
|
|
|
cout << "\n*******************************************************************************\n";
|
2018-03-09 08:26:33 -05:00
|
|
|
cout << threads << " threads sharing same logger, " << format(howmany) << " iterations" << endl;
|
2014-12-20 19:47:04 -05:00
|
|
|
cout << "*******************************************************************************\n";
|
|
|
|
|
2018-03-09 05:08:56 -05:00
|
|
|
auto rotating_mt = spdlog::rotating_logger_mt("rotating_mt", "logs/rotating_mt.log", file_size, rotating_files);
|
2014-12-20 19:47:04 -05:00
|
|
|
bench_mt(howmany, rotating_mt, threads);
|
|
|
|
|
2018-03-09 05:08:56 -05:00
|
|
|
auto daily_mt = spdlog::daily_logger_mt("daily_mt", "logs/daily_mt.log");
|
2014-12-20 19:47:04 -05:00
|
|
|
bench_mt(howmany, daily_mt, threads);
|
|
|
|
bench(howmany, spdlog::create<null_sink_st>("null_mt"));
|
2018-04-28 18:23:18 -04:00
|
|
|
|
2014-12-20 19:47:04 -05:00
|
|
|
cout << "\n*******************************************************************************\n";
|
2016-09-02 10:16:02 -04:00
|
|
|
cout << "async logging.. " << threads << " threads sharing same logger, " << format(howmany) << " iterations " << endl;
|
2014-12-20 19:47:04 -05:00
|
|
|
cout << "*******************************************************************************\n";
|
2018-06-01 10:52:05 -04:00
|
|
|
|
2018-04-28 18:23:18 -04:00
|
|
|
for (int i = 0; i < 3; ++i)
|
2014-12-20 19:47:04 -05:00
|
|
|
{
|
2018-06-01 10:52:05 -04:00
|
|
|
spdlog::init_thread_pool(queue_size, 1);
|
2018-04-28 12:29:10 -04:00
|
|
|
auto as = spdlog::basic_logger_mt<spdlog::create_async>("as", "logs/basic_async.log", true);
|
2014-12-20 19:47:04 -05:00
|
|
|
bench_mt(howmany, as, threads);
|
|
|
|
spdlog::drop("as");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (std::exception &ex)
|
|
|
|
{
|
|
|
|
std::cerr << "Error: " << ex.what() << std::endl;
|
|
|
|
perror("Last error");
|
2015-09-10 15:58:53 -04:00
|
|
|
return EXIT_FAILURE;
|
2014-12-20 19:47:04 -05:00
|
|
|
}
|
2015-09-10 15:58:53 -04:00
|
|
|
return EXIT_SUCCESS;
|
2014-10-10 18:15:26 -04:00
|
|
|
}
|
|
|
|
|
2014-10-31 20:12:12 -04:00
|
|
|
void bench(int howmany, std::shared_ptr<spdlog::logger> log)
|
|
|
|
{
|
2014-12-20 19:47:04 -05:00
|
|
|
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);
|
|
|
|
}
|
2014-10-31 20:12:12 -04:00
|
|
|
|
2014-12-20 19:47:04 -05:00
|
|
|
auto delta = system_clock::now() - start;
|
2018-03-09 08:26:33 -05:00
|
|
|
auto delta_d = duration_cast<duration<double>>(delta).count();
|
2018-06-01 10:50:59 -04:00
|
|
|
cout << "Elapsed: " << delta_d << "\t" << format(int(howmany / delta_d)) << "/sec" << endl;
|
2014-10-31 20:12:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count)
|
|
|
|
{
|
|
|
|
|
2014-12-20 19:47:04 -05:00
|
|
|
cout << log->name() << "...\t\t" << flush;
|
2018-03-09 08:26:33 -05:00
|
|
|
std::atomic<int> msg_counter{0};
|
2014-12-20 19:47:04 -05:00
|
|
|
vector<thread> threads;
|
|
|
|
auto start = system_clock::now();
|
|
|
|
for (int t = 0; t < thread_count; ++t)
|
|
|
|
{
|
2018-03-09 08:26:33 -05:00
|
|
|
threads.push_back(std::thread([&]() {
|
|
|
|
for (;;)
|
2014-12-20 19:47:04 -05:00
|
|
|
{
|
|
|
|
int counter = ++msg_counter;
|
2018-03-09 08:26:33 -05:00
|
|
|
if (counter > howmany)
|
|
|
|
break;
|
2014-12-20 19:47:04 -05:00
|
|
|
log->info("Hello logger: msg number {}", counter);
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2018-03-09 08:26:33 -05:00
|
|
|
for (auto &t : threads)
|
2014-12-20 19:47:04 -05:00
|
|
|
{
|
|
|
|
t.join();
|
|
|
|
};
|
|
|
|
|
|
|
|
auto delta = system_clock::now() - start;
|
2018-03-09 08:26:33 -05:00
|
|
|
auto delta_d = duration_cast<duration<double>>(delta).count();
|
2018-06-01 10:50:59 -04:00
|
|
|
cout << "Elapsed: " << delta_d << "\t" << format(int(howmany / delta_d)) << "/sec" << endl;
|
2014-10-31 20:12:12 -04:00
|
|
|
}
|