2018-05-31 09:00:31 +00:00
|
|
|
/**
|
|
|
|
*
|
2018-12-07 07:50:18 +00:00
|
|
|
* version.cc
|
|
|
|
* An Tao
|
2018-05-31 09:00:31 +00:00
|
|
|
*
|
|
|
|
* Copyright 2018, An Tao. All rights reserved.
|
2018-12-07 07:50:18 +00:00
|
|
|
* https://github.com/an-tao/drogon
|
2018-05-31 09:00:31 +00:00
|
|
|
* Use of this source code is governed by a MIT license
|
|
|
|
* that can be found in the License file.
|
|
|
|
*
|
2018-11-16 05:26:14 +00:00
|
|
|
* Drogon
|
2018-05-31 09:00:31 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-05-28 09:08:12 +00:00
|
|
|
#include "version.h"
|
2018-06-14 06:25:57 +00:00
|
|
|
#include <drogon/config.h>
|
2019-07-26 14:22:12 +00:00
|
|
|
#include <drogon/version.h>
|
2020-05-21 13:14:40 +00:00
|
|
|
#include <trantor/net/Resolver.h>
|
2018-05-28 09:08:12 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace drogon_ctl;
|
2019-05-18 12:39:57 +00:00
|
|
|
static const char banner[] =
|
|
|
|
" _ \n"
|
|
|
|
" __| |_ __ ___ __ _ ___ _ __ \n"
|
|
|
|
" / _` | '__/ _ \\ / _` |/ _ \\| '_ \\ \n"
|
|
|
|
"| (_| | | | (_) | (_| | (_) | | | |\n"
|
|
|
|
" \\__,_|_| \\___/ \\__, |\\___/|_| |_|\n"
|
|
|
|
" |___/ \n";
|
2018-05-28 09:08:12 +00:00
|
|
|
|
2018-05-29 05:49:26 +00:00
|
|
|
void version::handleCommand(std::vector<std::string> ¶meters)
|
2018-05-28 09:08:12 +00:00
|
|
|
{
|
2018-10-14 07:56:54 +00:00
|
|
|
std::cout << banner << std::endl;
|
2019-06-05 01:28:39 +00:00
|
|
|
std::cout << "A utility for drogon" << std::endl;
|
2020-02-06 14:13:50 +00:00
|
|
|
std::cout << "Version: " << DROGON_VERSION << std::endl;
|
|
|
|
std::cout << "Git commit: " << DROGON_VERSION_SHA1 << std::endl;
|
2020-05-21 13:14:40 +00:00
|
|
|
std::cout << "Compilation: \n Compiler: " << COMPILER_COMMAND
|
|
|
|
<< "\n Compiler ID: " << COMPILER_ID
|
|
|
|
<< "\n Compilation flags: " << COMPILATION_FLAGS
|
2020-02-16 08:48:35 +00:00
|
|
|
<< INCLUDING_DIRS << std::endl;
|
2020-05-21 13:14:40 +00:00
|
|
|
std::cout << "Libraries: \n postgresql: "
|
|
|
|
<< (USE_POSTGRESQL ? "yes" : "no") << " (batch mode: "
|
|
|
|
<< (LIBPQ_SUPPORTS_BATCH_MODE ? "yes)\n" : "no)\n")
|
|
|
|
<< " mariadb: " << (USE_MYSQL ? "yes\n" : "no\n")
|
|
|
|
<< " sqlite3: " << (USE_SQLITE3 ? "yes\n" : "no\n");
|
|
|
|
#ifdef OpenSSL_FOUND
|
|
|
|
std::cout << " openssl: yes\n";
|
|
|
|
#else
|
|
|
|
std::cout << " openssl: no\n";
|
|
|
|
#endif
|
|
|
|
#ifdef USE_BROTLI
|
|
|
|
std::cout << " brotli: yes\n";
|
|
|
|
#else
|
|
|
|
std::cout << " brotli: no\n";
|
|
|
|
#endif
|
|
|
|
#ifdef Boost_FOUND
|
|
|
|
std::cout << " boost: yes\n";
|
|
|
|
#else
|
|
|
|
std::cout << " boost: no\n";
|
|
|
|
#endif
|
|
|
|
std::cout << " c-ares: "
|
|
|
|
<< (trantor::Resolver::isCAresUsed() ? "yes\n" : "no\n");
|
2018-11-16 05:26:14 +00:00
|
|
|
}
|