2016-04-20 04:57:49 -04:00
|
|
|
#include "includes.h"
|
|
|
|
|
|
|
|
void prepare_logdir()
|
|
|
|
{
|
2017-03-27 19:08:18 -04:00
|
|
|
spdlog::drop_all();
|
2016-04-20 04:57:49 -04:00
|
|
|
#ifdef _WIN32
|
2017-03-27 19:08:18 -04:00
|
|
|
system("if not exist logs mkdir logs");
|
2017-03-27 18:54:33 -04:00
|
|
|
system("del /F /Q logs\\*");
|
2016-04-20 04:57:49 -04:00
|
|
|
#else
|
2017-03-27 19:08:18 -04:00
|
|
|
auto rv = system("mkdir -p logs");
|
2018-10-05 08:21:05 -04:00
|
|
|
if (rv != 0)
|
2018-10-05 08:20:14 -04:00
|
|
|
{
|
|
|
|
throw std::runtime_error("Failed to mkdir -p logs");
|
|
|
|
}
|
2017-03-27 19:05:59 -04:00
|
|
|
rv = system("rm -f logs/*");
|
2018-10-05 08:21:05 -04:00
|
|
|
if (rv != 0)
|
2018-10-05 08:20:14 -04:00
|
|
|
{
|
|
|
|
throw std::runtime_error("Failed to rm -f logs/*");
|
|
|
|
}
|
2017-03-27 19:08:18 -04:00
|
|
|
#endif
|
2016-04-20 04:57:49 -04:00
|
|
|
}
|
|
|
|
|
2018-03-09 08:26:33 -05:00
|
|
|
std::string file_contents(const std::string &filename)
|
2016-04-20 04:57:49 -04:00
|
|
|
{
|
|
|
|
std::ifstream ifs(filename);
|
|
|
|
if (!ifs)
|
2018-10-05 08:20:14 -04:00
|
|
|
{
|
2016-04-20 04:57:49 -04:00
|
|
|
throw std::runtime_error("Failed open file ");
|
2018-10-05 08:20:14 -04:00
|
|
|
}
|
2018-03-09 08:26:33 -05:00
|
|
|
return std::string((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
|
2016-04-20 04:57:49 -04:00
|
|
|
}
|
|
|
|
|
2018-03-09 08:26:33 -05:00
|
|
|
std::size_t count_lines(const std::string &filename)
|
2016-04-20 04:57:49 -04:00
|
|
|
{
|
|
|
|
std::ifstream ifs(filename);
|
|
|
|
if (!ifs)
|
2018-10-05 08:20:14 -04:00
|
|
|
{
|
2016-04-20 04:57:49 -04:00
|
|
|
throw std::runtime_error("Failed open file ");
|
2018-10-05 08:20:14 -04:00
|
|
|
}
|
2016-04-20 04:57:49 -04:00
|
|
|
|
|
|
|
std::string line;
|
|
|
|
size_t counter = 0;
|
2018-03-09 08:26:33 -05:00
|
|
|
while (std::getline(ifs, line))
|
2016-04-20 04:57:49 -04:00
|
|
|
counter++;
|
|
|
|
return counter;
|
|
|
|
}
|
|
|
|
|
2018-03-09 08:26:33 -05:00
|
|
|
std::size_t get_filesize(const std::string &filename)
|
2016-04-20 04:57:49 -04:00
|
|
|
{
|
|
|
|
std::ifstream ifs(filename, std::ifstream::ate | std::ifstream::binary);
|
|
|
|
if (!ifs)
|
2018-10-05 08:20:14 -04:00
|
|
|
{
|
2016-04-20 04:57:49 -04:00
|
|
|
throw std::runtime_error("Failed open file ");
|
2018-10-05 08:20:14 -04:00
|
|
|
}
|
2016-04-20 04:57:49 -04:00
|
|
|
|
2016-07-11 11:58:00 -04:00
|
|
|
return static_cast<std::size_t>(ifs.tellg());
|
2016-04-20 04:57:49 -04:00
|
|
|
}
|
2017-10-12 19:04:31 -04:00
|
|
|
|
|
|
|
// source: https://stackoverflow.com/a/2072890/192001
|
2018-03-09 08:26:33 -05:00
|
|
|
bool ends_with(std::string const &value, std::string const &ending)
|
2017-11-06 05:39:04 -05:00
|
|
|
{
|
2018-03-09 08:26:33 -05:00
|
|
|
if (ending.size() > value.size())
|
2018-10-05 08:20:14 -04:00
|
|
|
{
|
2018-03-09 08:26:33 -05:00
|
|
|
return false;
|
2018-10-05 08:20:14 -04:00
|
|
|
}
|
2017-11-06 05:39:04 -05:00
|
|
|
return std::equal(ending.rbegin(), ending.rend(), value.rbegin());
|
2017-10-12 19:04:31 -04:00
|
|
|
}
|