Fix linkage errors
This commit is contained in:
		
							parent
							
								
									b1a495dbb0
								
							
						
					
					
						commit
						c87c6b64b9
					
				@ -46,27 +46,48 @@ using namespace utils;
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
void bench(int howmany, std::shared_ptr<spdlog::logger> log);
 | 
					void bench(int howmany, std::shared_ptr<spdlog::logger> log);
 | 
				
			||||||
void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count);
 | 
					void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count);
 | 
				
			||||||
 | 
					void f();
 | 
				
			||||||
int main(int argc, char* argv[])
 | 
					int main(int argc, char* argv[])
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int howmany = 1048576;
 | 
					    int howmany = 1048576;
 | 
				
			||||||
    int threads = 10;
 | 
					    int threads = 10;
 | 
				
			||||||
    bool auto_flush = false;
 | 
					    bool auto_flush = false;
 | 
				
			||||||
    int file_size = 30 * 1024 * 1024;
 | 
					    int file_size = 30 * 1024 * 1024;
 | 
				
			||||||
    int rotating_files = 5;
 | 
					    int rotating_files = 5;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    //spdlog::set_pattern("%x %X.%e %v");
 | 
				
			||||||
 | 
					    auto console = spdlog::stdout_logger_mt("console");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    f();
 | 
				
			||||||
 | 
					    console->info("Welcome to spdlog!");
 | 
				
			||||||
 | 
					    console->info("An info message example {}..", 1);
 | 
				
			||||||
 | 
					    console->info() << "Streams are supported too  " << 1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    console->info("Easy padding in numbers like {:08d}", 12);
 | 
				
			||||||
 | 
					    console->info("Support for int: {0:d};  hex: {0:08x};  oct: {0:o}; bin: {0:b}", 42);
 | 
				
			||||||
 | 
					    console->info("Support for floats {:03.2f}", 1.23456);
 | 
				
			||||||
 | 
					    console->info("Positional args are {1} {0}..", "too", "supported");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    console->info("{:<30}", "left aligned");
 | 
				
			||||||
 | 
					    console->info("{:>30}", "right aligned");
 | 
				
			||||||
 | 
					    console->info("{:^30}", "centered");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    //return 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    try
 | 
					    try
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
					 | 
				
			||||||
        if(argc > 1)
 | 
					        if(argc > 1)
 | 
				
			||||||
            howmany = atoi(argv[1]);
 | 
					            howmany = atoi(argv[1]);
 | 
				
			||||||
        if (argc > 2)
 | 
					        if (argc > 2)
 | 
				
			||||||
            threads =   atoi(argv[2]);
 | 
					            threads =   atoi(argv[2]);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        /* cout << "*******************************************************************************\n";
 | 
				
			||||||
        cout << "*******************************************************************************\n";
 | 
					         cout << "Single thread, " << format(howmany)  << " iterations, flush every " << auto_flush << " lines"<< endl;
 | 
				
			||||||
        cout << "Single thread, " << format(howmany)  << " iterations, auto flush=" << auto_flush << endl;
 | 
					 | 
				
			||||||
         cout << "*******************************************************************************\n";
 | 
					         cout << "*******************************************************************************\n";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
         auto rotating_st = spdlog::rotating_logger_st("rotating_st", "logs/rotating_st", file_size, rotating_files, auto_flush);
 | 
					         auto rotating_st = spdlog::rotating_logger_st("rotating_st", "logs/rotating_st", file_size, rotating_files, auto_flush);
 | 
				
			||||||
@ -76,30 +97,39 @@ int main(int argc, char* argv[])
 | 
				
			|||||||
         bench(howmany, spdlog::create<null_sink_st>("null_st"));
 | 
					         bench(howmany, spdlog::create<null_sink_st>("null_st"));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
         cout << "\n*******************************************************************************\n";
 | 
					         cout << "\n*******************************************************************************\n";
 | 
				
			||||||
        cout << threads << " threads sharing same logger, " << format(howmany)  << " iterations, auto_flush=" << auto_flush << endl;
 | 
					         cout << threads << " threads sharing same logger, " << format(howmany)  << " iterations, flush every " << auto_flush << " lines" << endl;
 | 
				
			||||||
         cout << "*******************************************************************************\n";
 | 
					         cout << "*******************************************************************************\n";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
         auto rotating_mt = spdlog::rotating_logger_mt("rotating_mt", "logs/rotating_mt", file_size, rotating_files, auto_flush);
 | 
					         auto rotating_mt = spdlog::rotating_logger_mt("rotating_mt", "logs/rotating_mt", file_size, rotating_files, auto_flush);
 | 
				
			||||||
         bench_mt(howmany, rotating_mt, threads);
 | 
					         bench_mt(howmany, rotating_mt, threads);
 | 
				
			||||||
 | 
					        */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //auto daily_mt = spdlog::daily_logger_mt("daily_mt", "logs/daily_mt", auto_flush);
 | 
				
			||||||
 | 
					        //bench_mt(howmany, daily_mt, threads);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        auto daily_mt = spdlog::daily_logger_mt("daily_mt", "logs/daily_mt", auto_flush);
 | 
					        //spdlog::set_pattern("%T %z");
 | 
				
			||||||
        bench_mt(howmany, daily_mt, threads);
 | 
					        //while (true)
 | 
				
			||||||
        bench(howmany, spdlog::create<null_sink_st>("null_mt"));
 | 
					        //    bench_mt(howmany, spdlog::create<null_sink_st>("null_st"), 8);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        cout << "\n*******************************************************************************\n";
 | 
					        cout << "\n*******************************************************************************\n";
 | 
				
			||||||
        cout << "async logging.. " << threads << " threads sharing same logger, " << format(howmany) << " iterations, auto_flush=" << auto_flush << endl;
 | 
					        cout << "async logging.. " << threads << " threads sharing same logger, " << format(howmany) << " iterations, flush every " << auto_flush << " lines" << endl;
 | 
				
			||||||
        cout << "*******************************************************************************\n";
 | 
					        cout << "*******************************************************************************\n";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //spdlog::set_async_mode(howmany);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        spdlog::set_async_mode(howmany);
 | 
					        //auto as = spdlog::rotating_logger_st("as", "logs/rotating_async", file_size, rotating_files, auto_flush);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        for(int i = 0; i < 5; ++i)
 | 
					        while (true)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            auto as = spdlog::daily_logger_st("as", "logs/daily_async", auto_flush);
 | 
					            auto as = std::make_shared<spdlog::async_logger>("as", std::make_shared<sinks::null_sink_st>(), howmany);
 | 
				
			||||||
            bench_mt(howmany, as, threads);
 | 
					            bench_mt(howmany, as, threads);
 | 
				
			||||||
            spdlog::drop("as");
 | 
					 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //cin.ignore();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    catch (std::exception &ex)
 | 
					    catch (std::exception &ex)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
@ -116,7 +146,7 @@ void bench(int howmany, std::shared_ptr<spdlog::logger> log)
 | 
				
			|||||||
    auto start = system_clock::now();
 | 
					    auto start = system_clock::now();
 | 
				
			||||||
    for (auto i = 0; i < howmany; ++i)
 | 
					    for (auto i = 0; i < howmany; ++i)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        log->info("Hello logger: msg number {}", i);
 | 
					        log->info("Hello logger: msg number ", i);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -129,10 +159,12 @@ void bench(int howmany, std::shared_ptr<spdlog::logger> log)
 | 
				
			|||||||
void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count)
 | 
					void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cout << log->name() << "...\t\t" << flush;
 | 
					    cout << log->name() << "...\t\t" << flush;
 | 
				
			||||||
    std::atomic<int > msg_counter {0};
 | 
					    std::atomic<int > msg_counter {0};
 | 
				
			||||||
    vector<thread> threads;
 | 
					    vector<thread> threads;
 | 
				
			||||||
    auto start = system_clock::now();
 | 
					    auto start = system_clock::now();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    for (int t = 0; t < thread_count; ++t)
 | 
					    for (int t = 0; t < thread_count; ++t)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        threads.push_back(std::thread([&]()
 | 
					        threads.push_back(std::thread([&]()
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user