NcEngine
FileLogger.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "Log.h"
8
9#include "ncengine/type/StableAddress.h"
10
11#include <mutex>
12#include <string>
13#include <vector>
14
15namespace nc
16{
19{
20 public:
21 static constexpr auto DefaultMaxLogSize = 1000000ull;
22 static constexpr auto DefaultMessageFlushCount = 20ull;
23
24 FileLogger(std::string_view logFilePath,
25 size_t logMaxFileSize = DefaultMaxLogSize,
26 size_t messageFlushCount = DefaultMessageFlushCount);
27
28 ~FileLogger() noexcept;
29
30 private:
31 static inline FileLogger* s_instance = nullptr;
32 std::mutex m_mutex;
33 std::vector<std::string> m_messages;
34 std::string m_logPath;
35 size_t m_maxSize;
36 size_t m_messageFlushCount;
37
38 static void Log(LogCategory category,
39 std::string_view subsystem,
40 std::string_view file,
41 int line,
42 std::string_view message);
43
44 void BufferMessage(std::string&& message);
45 void Flush() noexcept;
46};
47} // namespace nc
LogCategory
Type of a log message.
Definition: Log.h:15
Basic file logging implementation. Construct this on the stack in main() to reroute logging to a file...
Definition: FileLogger.h:19
Base class for non-copyable non-movable types.
Definition: StableAddress.h:7