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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
|
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
* | |___ / ___ \| _| Framework *
* \____/_/ \_|_| *
* *
* Copyright 2011-2018 Dominik Charousset *
* *
* Distributed under the terms and conditions of the BSD 3-Clause License or *
* (at your option) under the terms and conditions of the Boost Software *
* License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE. *
* *
* If you did not receive a copy of the license files, see *
* http://opensource.org/licenses/BSD-3-Clause and *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#pragma once
#include <cstdint>
#include <functional>
#include <utility>
#include "caf/atom.hpp"
#include "caf/config.hpp"
#include "caf/detail/comparable.hpp"
#include "caf/detail/pp.hpp"
#include "caf/fwd.hpp"
#include "caf/meta/omittable_if_empty.hpp"
#include "caf/meta/type_name.hpp"
#include "caf/none.hpp"
namespace caf {
class error;
/// Evaluates to true if `T` is an enum with a free function
/// `make_error` for converting it to an `error`.
template <class T>
struct has_make_error {
private:
template <class U>
static auto test_make_error(U* x) -> decltype(make_error(*x));
template <class U>
static auto test_make_error(...) -> void;
using type = decltype(test_make_error<T>(nullptr));
public:
static constexpr bool value = std::is_enum<T>::value
&& std::is_same<error, type>::value;
};
namespace detail {
// Enables `CAF_ERROR_CODE_ENUM` for forward compatibility with CAF 0.18.
template <class T>
struct error_factory {
static constexpr bool specialized = false;
};
} // namespace detail
/// Convenience alias to detect enums that provide `make_error` overloads.
template <class T, class U = void>
using enable_if_has_make_error_t = typename std::enable_if<
!detail::error_factory<T>::specialized && has_make_error<T>::value, U>::type;
/// @private
template <class T, class U = void>
using enable_if_has_error_factory_t =
typename std::enable_if<detail::error_factory<T>::specialized, U>::type;
/// @private
template <class T, class U = void>
using enable_if_can_construct_error_t = typename std::enable_if<
detail::error_factory<T>::specialized || has_make_error<T>::value, U>::type;
/// A serializable type for storing error codes with category and optional,
/// human-readable context information. Unlike error handling classes from
/// the C++ standard library, this type is serializable. It consists of an
/// 8-bit code, a 64-bit atom constant, plus optionally a ::message to store
/// additional information.
///
/// # Why not `std::error_code` or `std::error_condition`?
///
/// First, the standard does *not* define the values for `std::errc`.
/// This means serializing error conditions (which are meant to be portable)
/// is not safe in a distributed setting unless all machines are running the
/// same operating system and version of the C++ standard library.
///
/// Second, the standard library primitives, unlike exceptions, do not offer
/// an API for attaching additional context to an error. The error handling API
/// offered by the standard is meant to wrap C system calls in a (source code)
/// portable way. In a distributed setting, an error may not occur locally.
/// In this case, an error code and category alone is often not satisfactory
/// information when signalling errors back to end users. The additional
/// context also enables *composition* of errors by modifying the message
/// details as needed.
///
/// # Why is there no `string()` member function?
///
/// The C++ standard library uses category singletons and virtual dispatching
/// to correlate error codes to descriptive strings. However, singletons are
/// a poor choice when it comes to serialization. CAF uses atoms for
/// categories instead and requires users to register custom error categories
/// to the actor system. This makes the actor system the natural instance for
/// rendering error messages via `actor_system::render(const error&)`.
class error : detail::comparable<error> {
public:
// -- member types -----------------------------------------------------------
using inspect_fun
= std::function<error(meta::type_name_t, uint8_t&, atom_value&,
meta::omittable_if_empty_t, message&)>;
// -- constructors, destructors, and assignment operators --------------------
error() noexcept;
error(none_t) noexcept;
error(error&&) noexcept;
error& operator=(error&&) noexcept;
error(const error&);
error& operator=(const error&);
error(uint8_t x, atom_value y);
error(uint8_t x, atom_value y, message z);
template <class E, class = enable_if_has_make_error_t<E>>
error(E error_value) : error(make_error(error_value)) {
// nop
}
template <class E>
enable_if_has_make_error_t<E, error&> operator=(E error_value) {
auto tmp = make_error(error_value);
std::swap(data_, tmp.data_);
return *this;
}
template <class E, class = enable_if_has_error_factory_t<E>, class... Ts>
error(E error_value, Ts&&... xs)
: error(static_cast<uint8_t>(error_value),
detail::error_factory<E>::category,
detail::error_factory<E>::context(std::forward<Ts>(xs)...)) {
// nop
}
template <class E>
enable_if_has_error_factory_t<E, error&> operator=(E error_value) {
auto tmp = error{error_value};
std::swap(data_, tmp.data_);
return *this;
}
~error();
// -- observers --------------------------------------------------------------
/// Returns the category-specific error code, whereas `0` means "no error".
/// @pre `*this != none`
uint8_t code() const noexcept;
/// Returns the category of this error.
/// @pre `*this != none`
atom_value category() const noexcept;
/// Returns context information to this error.
/// @pre `*this != none`
const message& context() const noexcept;
/// Returns `*this != none`.
inline explicit operator bool() const noexcept {
return data_ != nullptr;
}
/// Returns `*this == none`.
inline bool operator!() const noexcept {
return data_ == nullptr;
}
int compare(const error&) const noexcept;
int compare(uint8_t x, atom_value y) const noexcept;
// -- modifiers --------------------------------------------------------------
/// Returns context information to this error.
/// @pre `*this != none`
message& context() noexcept;
/// Sets the error code to 0.
void clear() noexcept;
// -- static convenience functions -------------------------------------------
/// @cond PRIVATE
static inline error eval() {
return none;
}
template <class F, class... Fs>
static error eval(F&& f, Fs&&... fs) {
auto x = f();
return x ? x : eval(std::forward<Fs>(fs)...);
}
/// @endcond
// -- friend functions -------------------------------------------------------
template <class Inspector>
friend typename Inspector::result_type inspect(Inspector& f, error& x) {
auto fun = [&](meta::type_name_t x0, uint8_t& x1, atom_value& x2,
meta::omittable_if_empty_t x3,
message& x4) -> error { return f(x0, x1, x2, x3, x4); };
return x.apply(fun);
}
private:
// -- inspection support -----------------------------------------------------
error apply(const inspect_fun& f);
// -- nested classes ---------------------------------------------------------
struct data;
// -- member variables -------------------------------------------------------
data* data_;
};
/// @relates error
std::string to_string(const error& x);
/// @relates error
inline bool operator==(const error& x, none_t) {
return !x;
}
/// @relates error
inline bool operator==(none_t, const error& x) {
return !x;
}
/// @relates error
template <class E, class = enable_if_has_make_error_t<E>>
bool operator==(const error& x, E y) {
return x == make_error(y);
}
/// @relates error
template <class E, class = enable_if_has_make_error_t<E>>
bool operator==(E x, const error& y) {
return make_error(x) == y;
}
/// @relates error
inline bool operator!=(const error& x, none_t) {
return static_cast<bool>(x);
}
/// @relates error
inline bool operator!=(none_t, const error& x) {
return static_cast<bool>(x);
}
/// @relates error
template <class E, class = enable_if_has_make_error_t<E>>
bool operator!=(const error& x, E y) {
return !(x == y);
}
/// @relates error
template <class E, class = enable_if_has_make_error_t<E>>
bool operator!=(E x, const error& y) {
return !(x == y);
}
/// @relates error
template <class Code, class... Ts>
enable_if_has_error_factory_t<Code, error> make_error(Code code, Ts&&... xs) {
return error{code, std::forward<Ts>(xs)...};
}
} // namespace caf
#define CAF_ERROR_CODE_ENUM_2(enum_type, category_name) \
namespace caf { \
namespace detail { \
template <> \
struct error_factory<enum_type> { \
static constexpr bool specialized = true; \
static constexpr atom_value category = atom(category_name); \
template <class... Ts> \
static message context(Ts&&... xs) { \
return make_message(std::forward<Ts>(xs)...); \
} \
}; \
} \
}
#define CAF_ERROR_CODE_ENUM_1(type_name) \
CAF_ERROR_CODE_ENUM_2(type_name, #type_name)
#ifdef CAF_MSVC
# define CAF_ERROR_CODE_ENUM(...) \
CAF_PP_CAT(CAF_PP_OVERLOAD(CAF_ERROR_CODE_ENUM_, \
__VA_ARGS__)(__VA_ARGS__), \
CAF_PP_EMPTY())
#else
# define CAF_ERROR_CODE_ENUM(...) \
CAF_PP_OVERLOAD(CAF_ERROR_CODE_ENUM_, __VA_ARGS__)(__VA_ARGS__)
#endif
|