1
0
mirror of synced 2024-12-04 12:07:57 +01:00
ImHex/lib/libimhex/source/helpers/logger.cpp

72 lines
2.0 KiB
C++
Raw Normal View History

#include <hex/helpers/logger.hpp>
#include <hex/helpers/fs.hpp>
#include <hex/helpers/fmt.hpp>
#include <wolv/io/file.hpp>
#if defined(OS_WINDOWS)
#include <Windows.h>
#endif
2023-06-18 22:32:55 +02:00
namespace hex::log::impl {
2023-06-18 22:32:55 +02:00
static wolv::io::File s_loggerFile;
2023-07-23 23:37:47 +02:00
std::mutex g_loggerMutex;
FILE *getDestination() {
2023-06-18 22:32:55 +02:00
if (s_loggerFile.isValid())
return s_loggerFile.getHandle();
else
return stdout;
}
wolv::io::File& getFile() {
2023-06-18 22:32:55 +02:00
return s_loggerFile;
}
bool isRedirected() {
2023-06-18 22:32:55 +02:00
return s_loggerFile.isValid();
}
void redirectToFile() {
2023-06-18 22:32:55 +02:00
if (s_loggerFile.isValid()) return;
for (const auto &path : fs::getDefaultPaths(fs::ImHexPath::Logs, true)) {
wolv::io::fs::createDirectories(path);
2023-06-18 22:32:55 +02:00
s_loggerFile = wolv::io::File(path / hex::format("{0:%Y%m%d_%H%M%S}.log", fmt::localtime(std::chrono::system_clock::to_time_t(std::chrono::system_clock::now()))), wolv::io::File::Mode::Create);
s_loggerFile.disableBuffering();
2023-06-18 22:32:55 +02:00
if (s_loggerFile.isValid()) break;
}
}
void enableColorPrinting() {
#if defined(OS_WINDOWS)
auto hConsole = ::GetStdHandle(STD_OUTPUT_HANDLE);
if (hConsole != INVALID_HANDLE_VALUE) {
DWORD mode = 0;
if (::GetConsoleMode(hConsole, &mode) == TRUE) {
mode |= ENABLE_VIRTUAL_TERMINAL_PROCESSING | ENABLE_PROCESSED_OUTPUT;
::SetConsoleMode(hConsole, mode);
}
}
#endif
}
2023-07-23 23:37:47 +02:00
std::vector<LogEntry>& getLogEntries() {
static std::vector<LogEntry> logEntries;
return logEntries;
}
2023-11-10 20:47:08 +01:00
void assertionHandler(bool expr, const char* exprString, const char* file, int line) {
2023-07-23 23:39:00 +02:00
if (!expr) {
2023-11-10 20:47:08 +01:00
log::error("Assertion failed: {} at {}:{}", exprString, file, line);
2023-07-23 23:39:00 +02:00
#if defined (DEBUG)
std::abort();
#endif
}
}
}