1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/*
Copyright 2020 Equinor ASA.
This file is part of the Open Porous Media project (OPM).
OPM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OPM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OPM. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef OPM_ERROR_HPP
#define OPM_ERROR_HPP
#include <opm/common/OpmLog/KeywordLocation.hpp>
#include <stdexcept>
#include <string>
#include <utility>
#include <vector>
namespace Opm {
// The OpmInputError is a custom exception class which can be used to signal
// errors in input handling. The importance of the OpmInputError exception
// is *not* the tecnical functionality it provides, but rather the
// convention surrounding it, when and how it should be used.
//
// The OpmInputError should be used in situations which are "close to user
// input", the root cause can either be incorrect user input or a
// bug/limitation in opm. OpmInputError should only be used in situations
// where we have a good understanding of the underlying issue, and can
// provide a good error message.
//
// The local error handling should be complete when the OpmInputError is
// instantiated, it should not be caught and rethrown in order to e.g. add
// additional context or log messages. In order to avoid inadvertendly
// catching this exception in a catch all block.
class OpmInputError : public std::exception
{
public:
// The message string will be used as format string in the fmt::format()
// function as, and optional {} markers can be used to inject keyword,
// filename and line numbers into the final what() message. The
// placeholders may use one or more of the following named arguments
//
// {keyword} -> location.keyword
// {file} -> location.filename
// {line} -> location.lineno
//
// Furthermore, the message can contain any number of positional
// arguments to add further context to the message.
//
// KeywordLocation loc("KW", "file.inc", 100);
// OpmInputError("Error at line {line} in file {file} - keyword: {keyword} ignored", location);
// OpmInputError("Error at line {line} in file {file} - keyword: {keyword} has invalid argument {}", invalid_argument);
template <typename... Args>
OpmInputError(const std::string& reason,
const KeywordLocation& location,
Args&&... furtherLocations)
: locations { location, std::forward<Args>(furtherLocations)... }
, m_what {
(locations.size() == 1)
? formatSingle(reason, locations.front())
: formatMultiple(reason, locations)
}
{}
// Allows for the initialisation of an OpmInputError from another exception.
//
// Usage:
//
// try {
// .
// .
// .
// } catch (const Opm::OpmInputError&) {
// throw;
// } catch (const std::exception& e) {
// std::throw_with_nested(Opm::OpmInputError(e, location));
// }
OpmInputError(const std::exception& error, const KeywordLocation& location)
: locations { location }
, m_what { formatException(error, locations.front()) }
{}
const char* what() const noexcept override
{
return this->m_what.c_str();
}
static std::string format(const std::string& msg_format, const KeywordLocation& loc);
private:
// The location member is here for debugging; depending on the msg_fmt
// passed in the constructor we might not have captured all the
// information in the location argument passed to the constructor.
std::vector<KeywordLocation> locations;
std::string m_what;
static std::string formatException(const std::exception& e, const KeywordLocation& loc);
static std::string formatSingle(const std::string& reason, const KeywordLocation&);
static std::string formatMultiple(const std::string& reason, const std::vector<KeywordLocation>&);
};
} // namespace Opm
#endif // OPM_ERROR_HPP
|