123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- #ifndef CXXUTIL_EXCEPTION_H_
- #define CXXUTIL_EXCEPTION_H_
- #include <stdexcept>
- #include <string>
- namespace edk {
- class Exception : public std::exception {
- public:
-
- enum Code {
- INTERNAL = 0,
- UNSUPPORTED = 1,
- INVALID_ARG = 2,
- MEMORY = 3,
- TIMEOUT = 4,
- INIT_FAILED = 5,
- UNAVAILABLE = 6,
- };
-
- std::string CodeString() const noexcept {
- #define RETURN_CODE_STRING(code) \
- case code: \
- return #code
- switch (code_) {
- RETURN_CODE_STRING(INTERNAL);
- RETURN_CODE_STRING(UNSUPPORTED);
- RETURN_CODE_STRING(INVALID_ARG);
- RETURN_CODE_STRING(MEMORY);
- RETURN_CODE_STRING(TIMEOUT);
- default:
- return "UNKNOWN";
- }
- #undef RETURN_CODE_STRING
- }
-
- explicit Exception(Code code, const std::string& file, int line, const std::string& func, const std::string& msg)
- : code_(code) {
- msg_ = file.substr(file.find_last_of('/') + 1) + ":" + std::to_string(line) + " (" + func + ") " + CodeString() +
- "] " + msg;
- }
-
- Code ErrorCode() const noexcept { return code_; }
-
- const char* what() const noexcept override { return msg_.c_str(); }
- private:
- Code code_;
- std::string msg_;
- };
- }
- #define THROW_EXCEPTION(code, msg) \
- do { \
- throw edk::Exception(code, __FILE__, __LINE__, __func__, msg); \
- } while (0)
- #endif
|