2021-01-22 18:01:39 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2021-09-21 21:29:18 +02:00
|
|
|
#include <hex/pattern_language/ast_node_base.hpp>
|
|
|
|
|
2021-09-08 15:18:24 +02:00
|
|
|
namespace hex::pl {
|
2021-01-22 18:01:39 +01:00
|
|
|
|
2021-09-21 21:29:18 +02:00
|
|
|
class ASTNode;
|
|
|
|
|
2021-01-22 18:01:39 +01:00
|
|
|
class LogConsole {
|
|
|
|
public:
|
|
|
|
enum Level {
|
|
|
|
Debug,
|
|
|
|
Info,
|
|
|
|
Warning,
|
|
|
|
Error
|
|
|
|
};
|
|
|
|
|
2021-09-21 21:29:18 +02:00
|
|
|
[[nodiscard]]
|
|
|
|
const auto& getLog() const { return this->m_consoleLog; }
|
2021-01-22 18:01:39 +01:00
|
|
|
|
2021-09-21 21:29:18 +02:00
|
|
|
using EvaluateError = std::pair<u32, std::string>;
|
2021-01-22 18:01:39 +01:00
|
|
|
|
2021-09-08 15:18:24 +02:00
|
|
|
void log(Level level, const std::string &message) {
|
2021-01-22 18:01:39 +01:00
|
|
|
switch (level) {
|
|
|
|
default:
|
2021-09-08 15:18:24 +02:00
|
|
|
case Level::Debug: this->m_consoleLog.emplace_back(level, "[-] " + message); break;
|
|
|
|
case Level::Info: this->m_consoleLog.emplace_back(level, "[i] " + message); break;
|
|
|
|
case Level::Warning: this->m_consoleLog.emplace_back(level, "[*] " + message); break;
|
|
|
|
case Level::Error: this->m_consoleLog.emplace_back(level, "[!] " + message); break;
|
2021-01-22 18:01:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-21 21:29:18 +02:00
|
|
|
[[noreturn]]
|
|
|
|
static void abortEvaluation(const std::string &message) {
|
|
|
|
throw EvaluateError(0, message);
|
|
|
|
}
|
|
|
|
|
|
|
|
[[noreturn]]
|
|
|
|
static void abortEvaluation(const std::string &message, const auto *node) {
|
|
|
|
throw EvaluateError(static_cast<const ASTNode*>(node)->getLineNumber(), message);
|
2021-01-22 18:01:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void clear() {
|
|
|
|
this->m_consoleLog.clear();
|
2021-09-21 21:29:18 +02:00
|
|
|
this->m_lastHardError = { };
|
2021-01-22 18:01:39 +01:00
|
|
|
}
|
|
|
|
|
2021-09-21 21:29:18 +02:00
|
|
|
void setHardError(const EvaluateError &error) { this->m_lastHardError = error; }
|
|
|
|
|
|
|
|
[[nodiscard]]
|
2021-10-20 11:06:24 +02:00
|
|
|
const std::optional<EvaluateError>& getLastHardError() { return this->m_lastHardError; };
|
2021-09-21 21:29:18 +02:00
|
|
|
|
2021-01-22 18:01:39 +01:00
|
|
|
private:
|
|
|
|
std::vector<std::pair<Level, std::string>> m_consoleLog;
|
2021-10-20 11:06:24 +02:00
|
|
|
std::optional<EvaluateError> m_lastHardError;
|
2021-01-22 18:01:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|