Hyprland/src/debug/Log.cpp

95 lines
2.2 KiB
C++
Raw Normal View History

2022-03-16 20:50:55 +01:00
#include "Log.hpp"
#include "../defines.hpp"
2022-06-03 17:48:07 +02:00
#include "../Compositor.hpp"
2022-03-16 20:50:55 +01:00
#include <fstream>
2022-03-17 15:53:45 +01:00
#include <iostream>
2022-03-16 20:50:55 +01:00
2022-06-03 17:48:07 +02:00
void Debug::init(std::string IS) {
if (ISDEBUG)
2022-06-03 17:48:07 +02:00
logFile = "/tmp/hypr/" + IS + "/hyprlandd.log";
else
2022-06-03 17:48:07 +02:00
logFile = "/tmp/hypr/" + IS + "/hyprland.log";
}
2022-03-16 20:50:55 +01:00
void Debug::log(LogLevel level, const char* fmt, ...) {
2022-07-01 15:57:56 +02:00
if (disableLogs && *disableLogs)
return;
2022-03-16 20:50:55 +01:00
// log to a file
std::ofstream ofs;
ofs.open(logFile, std::ios::out | std::ios::app);
2022-03-16 20:50:55 +01:00
switch (level) {
case LOG:
ofs << "[LOG] ";
break;
case WARN:
ofs << "[WARN] ";
break;
case ERR:
ofs << "[ERR] ";
break;
case CRIT:
ofs << "[CRITICAL] ";
break;
2022-06-25 20:50:29 +02:00
case INFO:
ofs << "[INFO] ";
break;
2022-03-16 20:50:55 +01:00
default:
break;
}
2022-07-18 11:46:42 +02:00
// print date and time to the ofs
if (disableTime && !*disableTime) {
auto timet = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
const auto MILLIS = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count() % 1000;
ofs << std::put_time(std::localtime(&timet), "[%H:%M:%S:");
if (MILLIS > 99)
ofs << MILLIS;
else if (MILLIS > 9)
ofs << "0" << MILLIS;
else
ofs << "00" << MILLIS;
ofs << "] ";
}
2022-03-16 20:50:55 +01:00
char buf[LOGMESSAGESIZE] = "";
2022-05-24 17:20:40 +02:00
char* outputStr;
int logLen;
va_list args;
va_start(args, fmt);
logLen = vsnprintf(buf, sizeof buf, fmt, args);
va_end(args);
if ((long unsigned int)logLen < sizeof buf) {
outputStr = strdup(buf);
} else {
outputStr = (char*)malloc(logLen + 1);
2022-03-16 20:50:55 +01:00
2022-05-24 17:20:40 +02:00
if (!outputStr) {
printf("CRITICAL: Cannot alloc size %d for log! (Out of memory?)", logLen + 1);
return;
}
2022-03-16 20:50:55 +01:00
2022-05-24 17:20:40 +02:00
va_start(args, fmt);
vsnprintf(outputStr, logLen + 1U, fmt, args);
va_end(args);
}
ofs << outputStr << "\n";
2022-03-16 20:50:55 +01:00
ofs.close();
2022-03-17 15:53:45 +01:00
// log it to the stdout too.
2022-05-24 17:20:40 +02:00
std::cout << outputStr << "\n";
2022-03-17 15:53:45 +01:00
2022-05-24 17:20:40 +02:00
// free the log
free(outputStr);
2022-03-16 20:50:55 +01:00
}