mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Merge branch 'threadsafe_logging'
This commit is contained in:
commit
b897b8a15d
|
@ -9,8 +9,37 @@
|
||||||
#include "Log.h"
|
#include "Log.h"
|
||||||
#include "utils/StringUtil.h"
|
#include "utils/StringUtil.h"
|
||||||
|
|
||||||
|
LogLevel Log::getReportingLevel()
|
||||||
|
{
|
||||||
|
// Static Log functions need to grab the lock.
|
||||||
|
std::unique_lock<std::mutex> lock {sLogMutex};
|
||||||
|
return sReportingLevel;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Log::setReportingLevel(LogLevel level)
|
||||||
|
{
|
||||||
|
// Static Log functions need to grab the lock.
|
||||||
|
std::unique_lock<std::mutex> lock {sLogMutex};
|
||||||
|
sReportingLevel = level;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string Log::getLogPath()
|
||||||
|
{
|
||||||
|
// No attempt is made to make this thread-safe.
|
||||||
|
// Currently getLogPath is public, and called in contexts with
|
||||||
|
// and without sLogMutex locked.
|
||||||
|
|
||||||
|
// getHomePath() currently does not generate any Log messages.
|
||||||
|
return Utils::FileSystem::getHomePath() + "/.emulationstation/es_log.txt";
|
||||||
|
}
|
||||||
|
|
||||||
void Log::init()
|
void Log::init()
|
||||||
{
|
{
|
||||||
|
// No attempt is made to make this thread-safe.
|
||||||
|
// It is unlikely to be called across multiple threads.
|
||||||
|
// Both removeFile and renameFile might generate log messages,
|
||||||
|
// so they might try to grab the lock.
|
||||||
|
|
||||||
Utils::FileSystem::removeFile(getLogPath() + ".bak");
|
Utils::FileSystem::removeFile(getLogPath() + ".bak");
|
||||||
// Rename the previous log file.
|
// Rename the previous log file.
|
||||||
Utils::FileSystem::renameFile(getLogPath(), getLogPath() + ".bak", true);
|
Utils::FileSystem::renameFile(getLogPath(), getLogPath() + ".bak", true);
|
||||||
|
@ -19,6 +48,8 @@ void Log::init()
|
||||||
|
|
||||||
void Log::open()
|
void Log::open()
|
||||||
{
|
{
|
||||||
|
// Static Log functions need to grab the lock.
|
||||||
|
std::unique_lock<std::mutex> lock {sLogMutex};
|
||||||
#if defined(_WIN64)
|
#if defined(_WIN64)
|
||||||
sFile.open(Utils::String::stringToWideString(getLogPath()).c_str());
|
sFile.open(Utils::String::stringToWideString(getLogPath()).c_str());
|
||||||
#else
|
#else
|
||||||
|
@ -26,8 +57,25 @@ void Log::open()
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Log::flush()
|
||||||
|
{
|
||||||
|
// Flush file. Static Log functions need to grab the lock.
|
||||||
|
std::unique_lock<std::mutex> lock {sLogMutex};
|
||||||
|
sFile.flush();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Log::close()
|
||||||
|
{
|
||||||
|
// Static Log functions need to grab the lock.
|
||||||
|
std::unique_lock<std::mutex> lock {sLogMutex};
|
||||||
|
if (sFile.is_open())
|
||||||
|
sFile.close();
|
||||||
|
}
|
||||||
|
|
||||||
std::ostringstream& Log::get(LogLevel level)
|
std::ostringstream& Log::get(LogLevel level)
|
||||||
{
|
{
|
||||||
|
// This function is not-static, but only touches instance member variables.
|
||||||
|
// The lock is not needed.
|
||||||
time_t t {time(nullptr)};
|
time_t t {time(nullptr)};
|
||||||
struct tm tm;
|
struct tm tm;
|
||||||
#if defined(_WIN64)
|
#if defined(_WIN64)
|
||||||
|
@ -43,22 +91,19 @@ std::ostringstream& Log::get(LogLevel level)
|
||||||
return mOutStringStream;
|
return mOutStringStream;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Log::flush()
|
|
||||||
{
|
|
||||||
// Flush file.
|
|
||||||
sFile.flush();
|
|
||||||
}
|
|
||||||
|
|
||||||
void Log::close()
|
|
||||||
{
|
|
||||||
if (sFile.is_open())
|
|
||||||
sFile.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
Log::~Log()
|
Log::~Log()
|
||||||
{
|
{
|
||||||
mOutStringStream << std::endl;
|
mOutStringStream << std::endl;
|
||||||
|
|
||||||
|
// Log() constructor does not need the lock.
|
||||||
|
// Log::get() does not need the lock.
|
||||||
|
// get(..) << msg << msg also does not need the lock,
|
||||||
|
// since get() returns the instance member mOutStringStream.
|
||||||
|
|
||||||
|
// It is only now that we need the lock, to guard access to
|
||||||
|
// both std::cerr and sFile.
|
||||||
|
std::unique_lock<std::mutex> lock {sLogMutex};
|
||||||
|
|
||||||
if (!sFile.is_open()) {
|
if (!sFile.is_open()) {
|
||||||
// Not open yet, print to stdout.
|
// Not open yet, print to stdout.
|
||||||
std::cerr << "Error: Tried to write to log file before it was open, "
|
std::cerr << "Error: Tried to write to log file before it was open, "
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <mutex>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
#define LOG(level) \
|
#define LOG(level) \
|
||||||
|
@ -33,19 +34,26 @@ enum LogLevel {
|
||||||
class Log
|
class Log
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
// Deconstructor grabs the lock.
|
||||||
~Log();
|
~Log();
|
||||||
|
|
||||||
|
// No lock needed for get() as it operates on and returns non-static members.
|
||||||
std::ostringstream& get(LogLevel level = LogInfo);
|
std::ostringstream& get(LogLevel level = LogInfo);
|
||||||
|
|
||||||
static LogLevel getReportingLevel() { return sReportingLevel; }
|
// Lock is grabbed for sReportingLevel.
|
||||||
static void setReportingLevel(LogLevel level) { sReportingLevel = level; }
|
// This means level > Log::getReportingLevel() still requires the lock.
|
||||||
static std::string getLogPath()
|
static LogLevel getReportingLevel();
|
||||||
{
|
static void setReportingLevel(LogLevel level);
|
||||||
return Utils::FileSystem::getHomePath() + "/.emulationstation/es_log.txt";
|
|
||||||
}
|
|
||||||
|
|
||||||
static void flush();
|
// getLogPath() is not thread-safe.
|
||||||
|
static std::string getLogPath();
|
||||||
|
// init() is not thread-safe.
|
||||||
static void init();
|
static void init();
|
||||||
|
// open() is not fully thread-safe, as it uses getLogPath().
|
||||||
static void open();
|
static void open();
|
||||||
|
|
||||||
|
// The following static functions are thread-safe.
|
||||||
|
static void flush();
|
||||||
static void close();
|
static void close();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
@ -59,6 +67,7 @@ private:
|
||||||
{LogDebug, "Debug"}};
|
{LogDebug, "Debug"}};
|
||||||
static inline std::ofstream sFile;
|
static inline std::ofstream sFile;
|
||||||
static inline LogLevel sReportingLevel = LogInfo;
|
static inline LogLevel sReportingLevel = LogInfo;
|
||||||
|
static inline std::mutex sLogMutex;
|
||||||
LogLevel mMessageLevel;
|
LogLevel mMessageLevel;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue