123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- // 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 <stdexcept> // std::runtime_error, std::exception_ptr, std::rethrow_exception
- #include <string> // std::string
- #ifndef CONFIGOR_ASSERT
- #include <cassert> // 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 <error_policy _Policy>
- class error_handler_with;
- template <>
- class error_handler_with<error_policy::strict> : public error_handler
- {
- public:
- virtual void handle(std::exception_ptr eptr) override
- {
- std::rethrow_exception(eptr);
- }
- };
- template <>
- class error_handler_with<error_policy::ignore> : public error_handler
- {
- public:
- virtual void handle(std::exception_ptr eptr) override
- {
- // DO NOTHING
- }
- };
- template <>
- class error_handler_with<error_policy::record> : 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
|