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-07-07 06:22:43 -04:00
|
|
|
#include "spdlog/sinks/basic_file_sink.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"
|
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
|
|
|
|
2018-09-24 18:03:57 -04:00
|
|
|
int howmany = 100000;
|
2018-07-09 14:06:59 -04:00
|
|
|
int queue_size = howmany + 2;
|
2018-04-28 18:23:18 -04:00
|
|
|
int threads = 10;
|
2018-08-16 17:32:13 -04:00
|
|
|
size_t file_size = 30 * 1024 * 1024;
|
|
|
|
size_t rotating_files = 5;
|
2014-12-20 19:47:04 -05:00
|
|
|
|
|
|
|
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
|
|
|
|
2018-07-21 16:48:07 -04:00
|
|
|
cout << "******************************************************************"
|
|
|
|
"*************\n";
|
2018-03-09 08:26:33 -05:00
|
|
|
cout << "Single thread, " << format(howmany) << " iterations" << endl;
|
2018-07-21 16:48:07 -04:00
|
|
|
cout << "******************************************************************"
|
|
|
|
"*************\n";
|
2014-12-20 19:47:04 -05:00
|
|
|
|
2018-09-24 18:11:36 -04:00
|
|
|
bench(howmany, spdlog::create<null_sink_st>("null_st"));
|
|
|
|
return 0;
|
2018-07-05 09:19:23 -04:00
|
|
|
|
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-07-05 09:19:23 -04:00
|
|
|
|
2018-09-24 18:11:36 -04:00
|
|
|
return 0;
|
2018-09-24 18:03:57 -04:00
|
|
|
auto basic_st = spdlog::basic_logger_st("basic_st", "logs/basic_st.log", true);
|
|
|
|
bench(howmany, basic_st);
|
|
|
|
|
2018-09-24 18:11:36 -04:00
|
|
|
// auto rotating_st = spdlog::rotating_logger_st("rotating_st", "logs/rotating_st.log", file_size, rotating_files);
|
|
|
|
// bench(howmany, rotating_st);
|
2018-09-24 18:03:57 -04:00
|
|
|
|
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);
|
2018-07-05 09:19:23 -04:00
|
|
|
|
2014-12-20 19:47:04 -05:00
|
|
|
bench(howmany, spdlog::create<null_sink_st>("null_st"));
|
|
|
|
|
2018-07-21 16:48:07 -04:00
|
|
|
cout << "\n****************************************************************"
|
|
|
|
"***************\n";
|
2018-03-09 08:26:33 -05:00
|
|
|
cout << threads << " threads sharing same logger, " << format(howmany) << " iterations" << endl;
|
2018-07-21 16:48:07 -04:00
|
|
|
cout << "******************************************************************"
|
|
|
|
"*************\n";
|
2014-12-20 19:47:04 -05:00
|
|
|
|
2018-07-05 09:19:23 -04:00
|
|
|
auto basic_mt = spdlog::basic_logger_mt("basic_mt", "logs/basic_mt.log", true);
|
|
|
|
bench_mt(howmany, basic_mt, threads);
|
|
|
|
|
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);
|
2018-07-10 16:53:00 -04:00
|
|
|
bench_mt(howmany, spdlog::create<null_sink_mt>("null_mt"), threads);
|
2018-04-28 18:23:18 -04:00
|
|
|
|
2018-07-21 16:48:07 -04:00
|
|
|
cout << "\n****************************************************************"
|
|
|
|
"***************\n";
|
2016-09-02 10:16:02 -04:00
|
|
|
cout << "async logging.. " << threads << " threads sharing same logger, " << format(howmany) << " iterations " << endl;
|
2018-07-21 16:48:07 -04: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-08-16 17:32:13 -04:00
|
|
|
spdlog::init_thread_pool(static_cast<size_t>(queue_size), 1);
|
2018-07-08 09:46:12 -04:00
|
|
|
auto as = spdlog::basic_logger_mt<spdlog::async_factory>("async", "logs/basic_async.log", true);
|
2014-12-20 19:47:04 -05:00
|
|
|
bench_mt(howmany, as, threads);
|
2018-07-08 09:46:12 -04:00
|
|
|
spdlog::drop("async");
|
2014-12-20 19:47:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
2018-09-24 18:03:57 -04:00
|
|
|
#include "spdlog/extra/to_hex.h"
|
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)
|
|
|
|
{
|
2018-07-05 09:19:23 -04:00
|
|
|
using std::chrono::high_resolution_clock;
|
2014-12-20 19:47:04 -05:00
|
|
|
cout << log->name() << "...\t\t" << flush;
|
2018-09-24 18:03:57 -04:00
|
|
|
char buf[1024];
|
2018-07-05 09:19:23 -04:00
|
|
|
auto start = high_resolution_clock::now();
|
2014-12-20 19:47:04 -05:00
|
|
|
for (auto i = 0; i < howmany; ++i)
|
|
|
|
{
|
2018-09-24 18:03:57 -04:00
|
|
|
log->info("Hello logger: msg number {}", spdlog::to_hex(buf));
|
2014-12-20 19:47:04 -05:00
|
|
|
}
|
2014-10-31 20:12:12 -04:00
|
|
|
|
2018-07-05 09:19:23 -04:00
|
|
|
auto delta = high_resolution_clock::now() - start;
|
2018-03-09 08:26:33 -05:00
|
|
|
auto delta_d = duration_cast<duration<double>>(delta).count();
|
2018-07-14 09:21:53 -04:00
|
|
|
|
2018-06-01 10:50:59 -04:00
|
|
|
cout << "Elapsed: " << delta_d << "\t" << format(int(howmany / delta_d)) << "/sec" << endl;
|
2018-07-10 16:53:00 -04:00
|
|
|
spdlog::drop(log->name());
|
2014-10-31 20:12:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count)
|
|
|
|
{
|
2018-07-05 09:19:23 -04:00
|
|
|
using std::chrono::high_resolution_clock;
|
2014-12-20 19:47:04 -05:00
|
|
|
cout << log->name() << "...\t\t" << flush;
|
|
|
|
vector<thread> threads;
|
2018-07-05 09:19:23 -04:00
|
|
|
auto start = high_resolution_clock::now();
|
2014-12-20 19:47:04 -05:00
|
|
|
for (int t = 0; t < thread_count; ++t)
|
|
|
|
{
|
2018-03-09 08:26:33 -05:00
|
|
|
threads.push_back(std::thread([&]() {
|
2018-07-07 06:22:43 -04:00
|
|
|
for (int j = 0; j < howmany / thread_count; j++)
|
2014-12-20 19:47:04 -05:00
|
|
|
{
|
2018-07-05 09:19:23 -04:00
|
|
|
log->info("Hello logger: msg number {}", j);
|
2014-12-20 19:47:04 -05:00
|
|
|
}
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2018-03-09 08:26:33 -05:00
|
|
|
for (auto &t : threads)
|
2014-12-20 19:47:04 -05:00
|
|
|
{
|
|
|
|
t.join();
|
|
|
|
};
|
|
|
|
|
2018-07-07 06:22:43 -04:00
|
|
|
auto delta = high_resolution_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
|
|
|
}
|