CompilerSysY/include/common.h
2023-05-06 18:54:00 +08:00

43 lines
1.6 KiB
C++

#pragma once
#include "3rdparty/easylogging++.h"
#include <any>
#include <exception>
#include <optional>
#include <sstream>
#include <string>
#define panic(message) \
do { \
throw GrammarException(__FILE__, __LINE__, (message)); \
} while (0)
#define sysy_assert(cond) \
do { \
if (!(cond)) \
throw GrammarException(__FILE__, __LINE__, #cond); \
} while (0)
namespace antlrSysY {
class GrammarException : public std::exception {
public:
GrammarException() : message("Unknown Grammar Exception") {}
GrammarException(const std::string &what_arg) : message(what_arg){};
GrammarException(const char *what_arg) : message(what_arg){};
GrammarException(const char *filename, int line, const char *what_arg) {
std::ostringstream ss;
ss << filename << ":" << line << ": "
<< "\x1b[031m" << what_arg << "\x1b[0m";
message = ss.str();
};
virtual const char *what() const noexcept {
return message.c_str();
}
private:
std::string message;
};
} // namespace antlrSysY