1
0
mirror of synced 2024-12-14 16:52:53 +01:00
ImHex/plugins/libimhex/include/hex/pattern_language/log_console.hpp

49 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
#include <hex.hpp>
#include <optional>
#include <string>
#include <string_view>
#include <utility>
#include <vector>
namespace hex::pl {
class ASTNode;
class LogConsole {
public:
enum Level {
Debug,
Info,
Warning,
Error
};
[[nodiscard]]
const auto& getLog() const { return this->m_consoleLog; }
using EvaluateError = std::pair<u32, std::string>;
void log(Level level, const std::string &message);
[[noreturn]]
static void abortEvaluation(const std::string &message);
[[noreturn]]
static void abortEvaluation(const std::string &message, const ASTNode *node);
void clear();
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; };
private:
std::vector<std::pair<Level, std::string>> m_consoleLog;
2021-10-20 11:06:24 +02:00
std::optional<EvaluateError> m_lastHardError;
};
}