MalachScript/src/Diagnostics/Logger.hpp

38 lines
1.6 KiB
C++
Raw Normal View History

2021-01-01 22:31:30 +00:00
#ifndef MALACHSCRIPT_LOGGER_HPP
#define MALACHSCRIPT_LOGGER_HPP
2020-10-04 17:38:13 +00:00
#include <vector>
#include "Diagnostic.hpp"
2020-10-05 15:45:00 +00:00
namespace MalachScript::Diagnostics {
2021-01-01 22:31:30 +00:00
class Logger {
2020-10-04 17:38:13 +00:00
std::vector<Diagnostic> _messages;
public:
inline void Log(DiagnosticLevel level, DiagnosticType type, std::string_view scriptName, TextSpan span,
const std::vector<std::string>& formats = {}) {
_messages.emplace_back(level, type, scriptName, span, formats);
2020-10-05 10:18:05 +00:00
}
inline void LogTrace(DiagnosticType type, std::string_view scriptName, TextSpan span) {
2020-10-05 10:18:05 +00:00
Log(DiagnosticLevel::Trace, type, scriptName, span);
}
inline void LogInfo(DiagnosticType type, std::string_view scriptName, TextSpan span) {
2020-10-05 10:18:05 +00:00
Log(DiagnosticLevel::Information, type, scriptName, span);
}
inline void LogWarning(DiagnosticType type, std::string_view scriptName, TextSpan span) {
2020-10-05 10:18:05 +00:00
Log(DiagnosticLevel::Warning, type, scriptName, span);
}
inline void LogError(DiagnosticType type, std::string_view scriptName, TextSpan span,
const std::vector<std::string>& formats = {}) {
Log(DiagnosticLevel::Error, type, scriptName, span, formats);
2020-10-05 10:18:05 +00:00
}
inline void LogCritical(DiagnosticType type, std::string_view scriptName, TextSpan span) {
2020-10-05 10:18:05 +00:00
Log(DiagnosticLevel::Critical, type, scriptName, span);
2020-10-04 17:38:13 +00:00
}
[[nodiscard]] const std::vector<Diagnostic>& GetMessages() const noexcept { return _messages; }
};
}
2021-01-01 22:31:30 +00:00
#endif // MALACHSCRIPT_LOGGER_HPP