// Copyright (c) 2018-2020 configor - Nomango // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. #pragma once #include // std::runtime_error, std::exception_ptr, std::rethrow_exception #include // std::string #ifndef CONFIGOR_ASSERT #include // assert #define CONFIGOR_ASSERT(...) assert(__VA_ARGS__) #endif namespace configor { // // exceptions // class configor_exception : public std::runtime_error { public: explicit configor_exception(const char* message) : std::runtime_error(message) { } explicit configor_exception(const std::string& message) : std::runtime_error(message) { } }; class configor_type_error : public configor_exception { public: explicit configor_type_error(const std::string& message) : configor_exception("value type error: " + message) { } }; class configor_invalid_key : public configor_exception { public: explicit configor_invalid_key(const std::string& message) : configor_exception("invalid value key error: " + message) { } }; class configor_invalid_iterator : public configor_exception { public: explicit configor_invalid_iterator(const std::string& message) : configor_exception("invalid value iterator error: " + message) { } }; class configor_deserialization_error : public configor_exception { public: explicit configor_deserialization_error(const std::string& message) : configor_exception("value deserialization error: " + message) { } }; class configor_serialization_error : public configor_exception { public: explicit configor_serialization_error(const std::string& message) : configor_exception("value serialization error: " + message) { } }; // // error handler // enum class error_policy { strict = 1, // throw exceptions record = 2, // record error message ignore = 3, // ignore all errors }; class error_handler { public: virtual void handle(std::exception_ptr eptr) = 0; }; template class error_handler_with; template <> class error_handler_with : public error_handler { public: virtual void handle(std::exception_ptr eptr) override { std::rethrow_exception(eptr); } }; template <> class error_handler_with : public error_handler { public: virtual void handle(std::exception_ptr eptr) override { // DO NOTHING } }; template <> class error_handler_with : public error_handler { public: virtual void handle(std::exception_ptr eptr) override { try { if (eptr) { std::rethrow_exception(eptr); } } catch (const configor_exception& e) { this->error = e.what(); } } std::string error; }; } // namespace configor