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 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
|
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <algorithm>
#include <initializer_list>
#include <type_traits>
#include <utility>
#include <variant>
// android::base::expected is a partial implementation of C++23's std::expected
// for Android.
//
// Usage:
// using android::base::expected;
// using android::base::unexpected;
//
// expected<double,std::string> safe_divide(double i, double j) {
// if (j == 0) return unexpected("divide by zero");
// else return i / j;
// }
//
// void test() {
// auto q = safe_divide(10, 0);
// if (q.ok()) { printf("%f\n", q.value()); }
// else { printf("%s\n", q.error().c_str()); }
// }
//
// Once the Android platform has moved to C++23, this will be removed and
// android::base::expected will be type aliased to std::expected.
//
namespace android {
namespace base {
// Synopsis
template <class T, class E>
class expected;
template <class E>
class unexpected;
template <class E>
unexpected(E) -> unexpected<E>;
template <class E>
class bad_expected_access;
template <>
class bad_expected_access<void>;
struct unexpect_t {
explicit unexpect_t() = default;
};
inline constexpr unexpect_t unexpect{};
// macros for SFINAE
#define _ENABLE_IF(...) \
, std::enable_if_t<(__VA_ARGS__)>* = nullptr
// Define NODISCARD_EXPECTED to prevent expected<T,E> from being
// ignored when used as a return value. This is off by default.
#ifdef NODISCARD_EXPECTED
#define _NODISCARD_ [[nodiscard]]
#else
#define _NODISCARD_
#endif
#define _EXPLICIT(cond) \
_Pragma("clang diagnostic push") \
_Pragma("clang diagnostic ignored \"-Wc++20-extensions\"") explicit(cond) \
_Pragma("clang diagnostic pop")
#define _COMMA ,
namespace expected_internal {
template <class T>
struct remove_cvref {
using type = std::remove_cv_t<std::remove_reference_t<T>>;
};
template <class T>
using remove_cvref_t = typename remove_cvref<T>::type;
// Can T be constructed from W (or W converted to T)? W can be lvalue or rvalue,
// const or not.
template <class T, class W>
inline constexpr bool converts_from_any_cvref =
std::disjunction_v<std::is_constructible<T, W&>, std::is_convertible<W&, T>,
std::is_constructible<T, W>, std::is_convertible<W, T>,
std::is_constructible<T, const W&>, std::is_convertible<const W&, T>,
std::is_constructible<T, const W>, std::is_convertible<const W, T>>;
template <class T>
struct is_expected : std::false_type {};
template <class T, class E>
struct is_expected<expected<T, E>> : std::true_type {};
template <class T>
inline constexpr bool is_expected_v = is_expected<T>::value;
template <class T>
struct is_unexpected : std::false_type {};
template <class E>
struct is_unexpected<unexpected<E>> : std::true_type {};
template <class T>
inline constexpr bool is_unexpected_v = is_unexpected<T>::value;
// Constraints on constructing an expected<T, ...> from an expected<U, G>
// related to T and U. UF is either "const U&" or "U".
template <class T, class U, class G, class UF>
inline constexpr bool convert_value_constraints =
std::is_constructible_v<T, UF> &&
(std::is_same_v<std::remove_cv_t<T>, bool> || !converts_from_any_cvref<T, expected<U, G>>);
// Constraints on constructing an expected<..., E> from an expected<U, G>
// related to E, G, and expected<U, G>. GF is either "const G&" or "G".
template <class E, class U, class G, class GF>
inline constexpr bool convert_error_constraints =
std::is_constructible_v<E, GF> &&
!std::is_constructible_v<unexpected<E>, expected<U, G>&> &&
!std::is_constructible_v<unexpected<E>, expected<U, G>> &&
!std::is_constructible_v<unexpected<E>, const expected<U, G>&> &&
!std::is_constructible_v<unexpected<E>, const expected<U, G>>;
// If an exception is thrown in expected::operator=, while changing the expected
// object between a value and an error, the expected object is supposed to
// retain its original value, which is only possible if certain constructors
// are noexcept. This implementation doesn't try to be exception-safe, but
// enforce these constraints anyway because std::expected also will enforce
// them, and we intend to switch to it eventually.
template <class T, class E, class Self, class Value>
inline constexpr bool eh_assign_constraints =
std::is_nothrow_constructible_v<Self, Value> ||
std::is_nothrow_move_constructible_v<T> ||
std::is_nothrow_move_constructible_v<E>;
// Implement expected<..., E>::expected([const] unexpected<G> [&/&&]).
#define _CONSTRUCT_EXPECTED_FROM_UNEXPECTED(GF, ParamType, forward_func) \
template <class G _ENABLE_IF(std::is_constructible_v<E, GF>)> \
constexpr _EXPLICIT((!std::is_convertible_v<GF, E>)) \
expected(ParamType e) noexcept(std::is_nothrow_constructible_v<E, GF>) \
: var_(std::in_place_index<1>, forward_func(e.error())) {}
// Implement expected<..., E>::operator=([const] unexpected<G> [&/&&]).
#define _ASSIGN_UNEXPECTED_TO_EXPECTED(GF, ParamType, forward_func, extra_constraints) \
template <class G _ENABLE_IF(std::is_constructible_v<E, GF> && \
std::is_assignable_v<E&, GF>) && \
extra_constraints> \
constexpr expected& operator=(ParamType e) noexcept(std::is_nothrow_constructible_v<E, GF> && \
std::is_nothrow_assignable_v<E&, GF>) { \
if (has_value()) { \
var_.template emplace<1>(forward_func(e.error())); \
} else { \
error() = forward_func(e.error()); \
} \
return *this; \
}
} // namespace expected_internal
// Class expected
template <class T, class E>
class _NODISCARD_ expected {
static_assert(std::is_object_v<T> && !std::is_array_v<T> &&
!std::is_same_v<std::remove_cv_t<T>, std::in_place_t> &&
!std::is_same_v<std::remove_cv_t<T>, unexpect_t> &&
!expected_internal::is_unexpected_v<std::remove_cv_t<T>>,
"expected value type cannot be a reference, a function, an array, in_place_t, "
"unexpect_t, or unexpected");
public:
using value_type = T;
using error_type = E;
using unexpected_type = unexpected<E>;
template <class U>
using rebind = expected<U, error_type>;
// Delegate simple operations to the underlying std::variant. std::variant
// doesn't set noexcept well, at least for copy ctor/assign, so set it
// explicitly. Technically the copy/move assignment operators should also be
// deleted if neither T nor E satisfies is_nothrow_move_constructible_v, but
// that would require making these operator= methods into template functions.
constexpr expected() = default;
constexpr expected(const expected& rhs) noexcept(
std::is_nothrow_copy_constructible_v<T> && std::is_nothrow_copy_constructible_v<E>) = default;
constexpr expected(expected&& rhs) noexcept(std::is_nothrow_move_constructible_v<T> &&
std::is_nothrow_move_constructible_v<E>) = default;
constexpr expected& operator=(const expected& rhs) noexcept(
std::is_nothrow_copy_constructible_v<T> && std::is_nothrow_copy_assignable_v<T> &&
std::is_nothrow_copy_constructible_v<E> && std::is_nothrow_copy_assignable_v<E>) = default;
constexpr expected& operator=(expected&& rhs) noexcept(
std::is_nothrow_move_constructible_v<T> && std::is_nothrow_move_assignable_v<T> &&
std::is_nothrow_move_constructible_v<E> && std::is_nothrow_move_assignable_v<E>) = default;
// Construct this expected<T, E> from a different expected<U, G> type.
#define _CONVERTING_CTOR(UF, GF, ParamType, forward_func) \
template <class U, \
class G _ENABLE_IF(expected_internal::convert_value_constraints<T, U, G, UF> && \
expected_internal::convert_error_constraints<E, U, G, GF>)> \
constexpr _EXPLICIT((!std::is_convertible_v<UF, T> || !std::is_convertible_v<GF, E>)) \
expected(ParamType rhs) noexcept(std::is_nothrow_constructible_v<T, UF> && \
std::is_nothrow_constructible_v<E, GF>) \
: var_(rhs.has_value() ? variant_type(std::in_place_index<0>, forward_func(rhs.value())) \
: variant_type(std::in_place_index<1>, forward_func(rhs.error()))) {}
// NOLINTNEXTLINE(google-explicit-constructor)
_CONVERTING_CTOR(const U&, const G&, const expected<U _COMMA G>&, )
// NOLINTNEXTLINE(google-explicit-constructor)
_CONVERTING_CTOR(U, G, expected<U _COMMA G>&&, std::move)
#undef _CONVERTING_CTOR
// Construct from (converted) success value, using a forwarding reference.
template <class U = T _ENABLE_IF(
!std::is_same_v<expected_internal::remove_cvref_t<U>, std::in_place_t> &&
!std::is_same_v<expected_internal::remove_cvref_t<U>, expected> &&
!expected_internal::is_unexpected_v<expected_internal::remove_cvref_t<U>> &&
std::is_constructible_v<T, U> &&
(!std::is_same_v<std::remove_cv_t<T>, bool> ||
!expected_internal::is_expected_v<expected_internal::remove_cvref_t<U>>))>
constexpr _EXPLICIT((!std::is_convertible_v<U, T>))
// NOLINTNEXTLINE(google-explicit-constructor)
expected(U&& v) noexcept(std::is_nothrow_constructible_v<T, U>)
: var_(std::in_place_index<0>, std::forward<U>(v)) {}
// NOLINTNEXTLINE(google-explicit-constructor)
_CONSTRUCT_EXPECTED_FROM_UNEXPECTED(const G&, const unexpected<G>&, )
// NOLINTNEXTLINE(google-explicit-constructor)
_CONSTRUCT_EXPECTED_FROM_UNEXPECTED(G, unexpected<G>&&, std::move)
// in_place_t construction
template <class... Args _ENABLE_IF(std::is_constructible_v<T, Args...>)>
constexpr explicit expected(std::in_place_t, Args&&... args)
noexcept(std::is_nothrow_constructible_v<T, Args...>)
: var_(std::in_place_index<0>, std::forward<Args>(args)...) {}
// in_place_t with initializer_list construction
template <class U, class... Args _ENABLE_IF(
std::is_constructible_v<T, std::initializer_list<U>&, Args...>)>
constexpr explicit expected(std::in_place_t, std::initializer_list<U> il, Args&&... args)
noexcept(std::is_nothrow_constructible_v<T, std::initializer_list<U>&, Args...>)
: var_(std::in_place_index<0>, il, std::forward<Args>(args)...) {}
// unexpect_t construction
template <class... Args _ENABLE_IF(std::is_constructible_v<E, Args...>)>
constexpr explicit expected(unexpect_t, Args&&... args)
noexcept(std::is_nothrow_constructible_v<E, Args...>)
: var_(std::in_place_index<1>, unexpected_type(std::forward<Args>(args)...)) {}
// unexpect_t with initializer_list construction
template <class U, class... Args _ENABLE_IF(
std::is_constructible_v<E, std::initializer_list<U>&, Args...>)>
constexpr explicit expected(unexpect_t, std::initializer_list<U> il, Args&&... args)
noexcept(std::is_nothrow_constructible_v<E, std::initializer_list<U>&, Args...>)
: var_(std::in_place_index<1>, unexpected_type(il, std::forward<Args>(args)...)) {}
// Assignment from (converted) success value, using a forwarding reference.
template <class U = T _ENABLE_IF(
!std::is_same_v<expected, expected_internal::remove_cvref_t<U>> &&
!expected_internal::is_unexpected_v<expected_internal::remove_cvref_t<U>> &&
std::is_constructible_v<T, U> && std::is_assignable_v<T&, U> &&
expected_internal::eh_assign_constraints<T, E, T, U>)>
constexpr expected& operator=(U&& v) noexcept(std::is_nothrow_constructible_v<T, U> &&
std::is_nothrow_assignable_v<T&, U>) {
if (has_value()) {
value() = std::forward<U>(v);
} else {
var_.template emplace<0>(std::forward<U>(v));
}
return *this;
}
_ASSIGN_UNEXPECTED_TO_EXPECTED(const G&, const unexpected<G>&, ,
(expected_internal::eh_assign_constraints<T, E, E, const G&>))
_ASSIGN_UNEXPECTED_TO_EXPECTED(G, unexpected<G>&&, std::move,
(expected_internal::eh_assign_constraints<T, E, E, G>))
// modifiers
template <class... Args _ENABLE_IF(std::is_nothrow_constructible_v<T, Args...>)>
constexpr T& emplace(Args&&... args) noexcept {
var_.template emplace<0>(std::forward<Args>(args)...);
return value();
}
template <class U, class... Args _ENABLE_IF(
std::is_nothrow_constructible_v<T, std::initializer_list<U>&, Args...>)>
constexpr T& emplace(std::initializer_list<U> il, Args&&... args) noexcept {
var_.template emplace<0>(il, std::forward<Args>(args)...);
return value();
}
// Swap. This function takes a template argument so that _ENABLE_IF works.
template <class U = T _ENABLE_IF(
std::is_same_v<U, T> &&
std::is_swappable_v<T> && std::is_swappable_v<E> &&
std::is_move_constructible_v<T> && std::is_move_constructible_v<E> &&
(std::is_nothrow_move_constructible_v<T> ||
std::is_nothrow_move_constructible_v<E>))>
constexpr void swap(expected& rhs) noexcept(std::is_nothrow_move_constructible_v<T> &&
std::is_nothrow_swappable_v<T> &&
std::is_nothrow_move_constructible_v<E> &&
std::is_nothrow_swappable_v<E>) {
var_.swap(rhs.var_);
}
// observers
constexpr const T* operator->() const { return std::addressof(value()); }
constexpr T* operator->() { return std::addressof(value()); }
constexpr const T& operator*() const& { return value(); }
constexpr T& operator*() & { return value(); }
constexpr const T&& operator*() const&& { return std::move(std::get<T>(var_)); }
constexpr T&& operator*() && { return std::move(std::get<T>(var_)); }
constexpr bool has_value() const noexcept { return var_.index() == 0; }
constexpr bool ok() const noexcept { return has_value(); }
constexpr explicit operator bool() const noexcept { return has_value(); }
constexpr const T& value() const& { return std::get<T>(var_); }
constexpr T& value() & { return std::get<T>(var_); }
constexpr const T&& value() const&& { return std::move(std::get<T>(var_)); }
constexpr T&& value() && { return std::move(std::get<T>(var_)); }
constexpr const E& error() const& { return std::get<unexpected_type>(var_).error(); }
constexpr E& error() & { return std::get<unexpected_type>(var_).error(); }
constexpr const E&& error() const&& { return std::move(std::get<unexpected_type>(var_)).error(); }
constexpr E&& error() && { return std::move(std::get<unexpected_type>(var_)).error(); }
template<class U _ENABLE_IF(
std::is_copy_constructible_v<T> &&
std::is_convertible_v<U, T>
)>
constexpr T value_or(U&& v) const& {
if (has_value()) return value();
else return static_cast<T>(std::forward<U>(v));
}
template<class U _ENABLE_IF(
std::is_move_constructible_v<T> &&
std::is_convertible_v<U, T>
)>
constexpr T value_or(U&& v) && {
if (has_value()) return std::move(value());
else return static_cast<T>(std::forward<U>(v));
}
// expected equality operators
template<class T1, class E1, class T2, class E2>
friend constexpr bool operator==(const expected<T1, E1>& x, const expected<T2, E2>& y);
template<class T1, class E1, class T2, class E2>
friend constexpr bool operator!=(const expected<T1, E1>& x, const expected<T2, E2>& y);
// Comparison with unexpected<E>
template<class T1, class E1, class E2>
friend constexpr bool operator==(const expected<T1, E1>&, const unexpected<E2>&);
template<class T1, class E1, class E2>
friend constexpr bool operator==(const unexpected<E2>&, const expected<T1, E1>&);
template<class T1, class E1, class E2>
friend constexpr bool operator!=(const expected<T1, E1>&, const unexpected<E2>&);
template<class T1, class E1, class E2>
friend constexpr bool operator!=(const unexpected<E2>&, const expected<T1, E1>&);
private:
using variant_type = std::variant<value_type, unexpected_type>;
variant_type var_;
};
template<class T1, class E1, class T2, class E2>
constexpr bool operator==(const expected<T1, E1>& x, const expected<T2, E2>& y) {
if (x.has_value() != y.has_value()) return false;
if (!x.has_value()) return x.error() == y.error();
return *x == *y;
}
template<class T1, class E1, class T2, class E2>
constexpr bool operator!=(const expected<T1, E1>& x, const expected<T2, E2>& y) {
return !(x == y);
}
// Comparison with unexpected<E>
template<class T1, class E1, class E2>
constexpr bool operator==(const expected<T1, E1>& x, const unexpected<E2>& y) {
return !x.has_value() && (x.error() == y.error());
}
template<class T1, class E1, class E2>
constexpr bool operator==(const unexpected<E2>& x, const expected<T1, E1>& y) {
return !y.has_value() && (x.error() == y.error());
}
template<class T1, class E1, class E2>
constexpr bool operator!=(const expected<T1, E1>& x, const unexpected<E2>& y) {
return x.has_value() || (x.error() != y.error());
}
template<class T1, class E1, class E2>
constexpr bool operator!=(const unexpected<E2>& x, const expected<T1, E1>& y) {
return y.has_value() || (x.error() != y.error());
}
template<class E>
class _NODISCARD_ expected<void, E> {
public:
using value_type = void;
using error_type = E;
using unexpected_type = unexpected<E>;
template <class U>
using rebind = expected<U, error_type>;
// Delegate simple operations to the underlying std::variant.
constexpr expected() = default;
constexpr expected(const expected& rhs) noexcept(std::is_nothrow_copy_constructible_v<E>) =
default;
constexpr expected(expected&& rhs) noexcept(std::is_nothrow_move_constructible_v<E>) = default;
constexpr expected& operator=(const expected& rhs) noexcept(
std::is_nothrow_copy_constructible_v<E> && std::is_nothrow_copy_assignable_v<E>) = default;
constexpr expected& operator=(expected&& rhs) noexcept(
std::is_nothrow_move_constructible_v<E> && std::is_nothrow_move_assignable_v<E>) = default;
// Construct this expected<void, E> from a different expected<U, G> type.
#define _CONVERTING_CTOR(GF, ParamType, forward_func) \
template <class U, class G _ENABLE_IF(std::is_void_v<U> && \
expected_internal::convert_error_constraints<E, U, G, GF>)> \
constexpr _EXPLICIT((!std::is_convertible_v<GF, E>)) \
expected(ParamType rhs) noexcept(std::is_nothrow_constructible_v<E, GF>) \
: var_(rhs.has_value() ? variant_type(std::in_place_index<0>, std::monostate()) \
: variant_type(std::in_place_index<1>, forward_func(rhs.error()))) {}
// NOLINTNEXTLINE(google-explicit-constructor)
_CONVERTING_CTOR(const G&, const expected<U _COMMA G>&, )
// NOLINTNEXTLINE(google-explicit-constructor)
_CONVERTING_CTOR(G, expected<U _COMMA G>&&, std::move)
#undef _CONVERTING_CTOR
// NOLINTNEXTLINE(google-explicit-constructor)
_CONSTRUCT_EXPECTED_FROM_UNEXPECTED(const G&, const unexpected<G>&, )
// NOLINTNEXTLINE(google-explicit-constructor)
_CONSTRUCT_EXPECTED_FROM_UNEXPECTED(G, unexpected<G>&&, std::move)
// in_place_t construction
constexpr explicit expected(std::in_place_t) noexcept {}
// unexpect_t construction
template <class... Args _ENABLE_IF(std::is_constructible_v<E, Args...>)>
constexpr explicit expected(unexpect_t, Args&&... args)
noexcept(std::is_nothrow_constructible_v<E, Args...>)
: var_(std::in_place_index<1>, unexpected_type(std::forward<Args>(args)...)) {}
// unexpect_t with initializer_list construction
template <class U, class... Args _ENABLE_IF(
std::is_constructible_v<E, std::initializer_list<U>&, Args...>)>
constexpr explicit expected(unexpect_t, std::initializer_list<U> il, Args&&... args)
noexcept(std::is_nothrow_constructible_v<E, std::initializer_list<U>&, Args...>)
: var_(std::in_place_index<1>, unexpected_type(il, std::forward<Args>(args)...)) {}
_ASSIGN_UNEXPECTED_TO_EXPECTED(const G&, const unexpected<G>&, , true)
_ASSIGN_UNEXPECTED_TO_EXPECTED(G, unexpected<G>&&, std::move, true)
// modifiers
constexpr void emplace() noexcept { var_.template emplace<0>(std::monostate()); }
// Swap. This function takes a template argument so that _ENABLE_IF works.
template <class G = E _ENABLE_IF(std::is_same_v<G, E> &&
std::is_swappable_v<E> && std::is_move_constructible_v<E>)>
constexpr void swap(expected& rhs) noexcept(std::is_nothrow_move_constructible_v<E> &&
std::is_nothrow_swappable_v<E>) {
var_.swap(rhs.var_);
}
// observers
constexpr bool has_value() const noexcept { return var_.index() == 0; }
constexpr bool ok() const noexcept { return has_value(); }
constexpr explicit operator bool() const noexcept { return has_value(); }
constexpr void value() const& { if (!has_value()) std::get<0>(var_); }
constexpr const E& error() const& { return std::get<1>(var_).error(); }
constexpr E& error() & { return std::get<1>(var_).error(); }
constexpr const E&& error() const&& { return std::move(std::get<1>(var_)).error(); }
constexpr E&& error() && { return std::move(std::get<1>(var_)).error(); }
// expected equality operators
template<class E1, class E2>
friend constexpr bool operator==(const expected<void, E1>& x, const expected<void, E2>& y);
private:
using variant_type = std::variant<std::monostate, unexpected_type>;
variant_type var_;
};
template<class E1, class E2>
constexpr bool operator==(const expected<void, E1>& x, const expected<void, E2>& y) {
if (x.has_value() != y.has_value()) return false;
if (!x.has_value()) return x.error() == y.error();
return true;
}
template<class T1, class E1, class E2>
constexpr bool operator==(const expected<T1, E1>& x, const expected<void, E2>& y) {
if (x.has_value() != y.has_value()) return false;
if (!x.has_value()) return x.error() == y.error();
return false;
}
template<class E1, class T2, class E2>
constexpr bool operator==(const expected<void, E1>& x, const expected<T2, E2>& y) {
if (x.has_value() != y.has_value()) return false;
if (!x.has_value()) return x.error() == y.error();
return false;
}
template <class T, class E, typename = decltype(
std::declval<expected<T, E>&>().swap(std::declval<expected<T, E>&>()))>
constexpr void swap(expected<T, E>& x, expected<T, E>& y) noexcept(noexcept(x.swap(y))) {
x.swap(y);
}
template<class E>
class unexpected {
static_assert(std::is_object_v<E> && !std::is_array_v<E> && !std::is_const_v<E> &&
!std::is_volatile_v<E> && !expected_internal::is_unexpected_v<E>,
"unexpected error type cannot be a reference, a function, an array, cv-qualified, "
"or unexpected");
public:
// constructors
constexpr unexpected(const unexpected&) = default;
constexpr unexpected(unexpected&&) = default;
template <class Err = E _ENABLE_IF(
!std::is_same_v<expected_internal::remove_cvref_t<Err>, unexpected> &&
!std::is_same_v<expected_internal::remove_cvref_t<Err>, std::in_place_t> &&
std::is_constructible_v<E, Err>)>
constexpr explicit unexpected(Err&& e) noexcept(std::is_nothrow_constructible_v<E, Err>)
: val_(std::forward<Err>(e)) {}
template <class... Args _ENABLE_IF(std::is_constructible_v<E, Args...>)>
constexpr explicit unexpected(std::in_place_t, Args&&... args)
noexcept(std::is_nothrow_constructible_v<E, Args...>)
: val_(std::forward<Args>(args)...) {}
template <class U, class... Args _ENABLE_IF(
std::is_constructible_v<E, std::initializer_list<U>&, Args...>)>
constexpr explicit unexpected(std::in_place_t, std::initializer_list<U> il, Args&&... args)
noexcept(std::is_nothrow_constructible_v<E, std::initializer_list<U>&, Args...>)
: val_(il, std::forward<Args>(args)...) {}
constexpr unexpected& operator=(const unexpected&) = default;
constexpr unexpected& operator=(unexpected&&) = default;
// observer
constexpr const E& error() const& noexcept { return val_; }
constexpr E& error() & noexcept { return val_; }
constexpr const E&& error() const&& noexcept { return std::move(val_); }
constexpr E&& error() && noexcept { return std::move(val_); }
// Swap. This function takes a template argument so that _ENABLE_IF works.
template <typename G = E _ENABLE_IF(std::is_same_v<G, E> && std::is_swappable_v<E>)>
void swap(unexpected& other) noexcept(std::is_nothrow_swappable_v<E>) {
// Make std::swap visible to provide swap for STL and builtin types, but use
// an unqualified swap to invoke argument-dependent lookup to find the swap
// functions for user-declared types.
using std::swap;
swap(val_, other.val_);
}
template<class E1, class E2>
friend constexpr bool
operator==(const unexpected<E1>& e1, const unexpected<E2>& e2);
template<class E1, class E2>
friend constexpr bool
operator!=(const unexpected<E1>& e1, const unexpected<E2>& e2);
private:
E val_;
};
template<class E1, class E2>
constexpr bool
operator==(const unexpected<E1>& e1, const unexpected<E2>& e2) {
return e1.error() == e2.error();
}
template<class E1, class E2>
constexpr bool
operator!=(const unexpected<E1>& e1, const unexpected<E2>& e2) {
return e1.error() != e2.error();
}
template <class E1 _ENABLE_IF(std::is_swappable_v<E1>)>
void swap(unexpected<E1>& x, unexpected<E1>& y) noexcept(noexcept(x.swap(y))) {
x.swap(y);
}
// TODO: bad_expected_access class
#undef _ENABLE_IF
#undef _NODISCARD_
#undef _EXPLICIT
#undef _COMMA
#undef _CONSTRUCT_EXPECTED_FROM_UNEXPECTED
#undef _ASSIGN_UNEXPECTED_TO_EXPECTED
} // namespace base
} // namespace android
|