12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262 |
- // Copyright (C) 2011 - 2012 Andrzej Krzemienski.
- //
- // Use, modification, and distribution is subject to the Boost Software
- // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
- // http://www.boost.org/LICENSE_1_0.txt)
- //
- // The idea and interface is based on Boost.Optional library
- // authored by Fernando Luis Cacciola Carballal
- //
- // From https://github.com/akrzemi1/Optional
- //
- // C10
- // - Move file to `c10` namespace.
- // - Remove macro use in line 478 because the nvcc device compiler cannot handle
- // it.
- // - Revise constructor logic so that it is 1) consistent with c++ 17 standard
- // documented here in (8):
- // https://en.cppreference.com/w/cpp/utility/optional/optional, and 2) able to
- // support initialization of optionals from convertible type U.
- // - Remove the constructors for `optional(const T&)` and `optional(T&&)`, as
- // they can be handled by the template<U=T> case with the default template
- // argument.
- // - Move `constexpr struct in_place_t {} in_place{}` to `c10/util/in_place.h`
- // so that it can also be used in `c10/util/variant.h`.
- // - Remove special cases for pre-c++14 compilers to make code simpler.
- #ifndef C10_UTIL_OPTIONAL_H_
- #define C10_UTIL_OPTIONAL_H_
- #include <c10/macros/Macros.h>
- #include <c10/util/ArrayRef.h>
- #include <c10/util/in_place.h>
- #include <cassert>
- #include <functional>
- #include <initializer_list>
- #include <stdexcept>
- #include <string>
- #include <type_traits>
- #include <utility>
- #include <c10/util/C++17.h>
- #include <c10/util/Metaprogramming.h>
- C10_CLANG_DIAGNOSTIC_PUSH()
- #if C10_CLANG_HAS_WARNING("-Wstring-conversion")
- C10_CLANG_DIAGNOSTIC_IGNORE("-Wstring-conversion")
- #endif
- #if C10_CLANG_HAS_WARNING("-Wshorten-64-to-32")
- C10_CLANG_DIAGNOSTIC_IGNORE("-Wshorten-64-to-32")
- #endif
- #if C10_CLANG_HAS_WARNING("-Wimplicit-float-conversion")
- C10_CLANG_DIAGNOSTIC_IGNORE("-Wimplicit-float-conversion")
- #endif
- #if C10_CLANG_HAS_WARNING("-Wimplicit-int-conversion")
- C10_CLANG_DIAGNOSTIC_IGNORE("-Wimplicit-int-conversion")
- #endif
- #define TR2_OPTIONAL_REQUIRES(...) \
- typename std::enable_if<__VA_ARGS__::value, bool>::type = false
- namespace c10 {
- // 20.5.4, optional for object types
- template <class T>
- class optional;
- // 20.5.5, optional for lvalue reference types
- template <class T>
- class optional<T&>;
- // workaround: std utility functions aren't constexpr yet
- template <class T>
- inline constexpr T&& constexpr_forward(
- typename std::remove_reference<T>::type& t) noexcept {
- return static_cast<T&&>(t);
- }
- template <class T>
- inline constexpr T&& constexpr_forward(
- typename std::remove_reference<T>::type&& t) noexcept {
- static_assert(!std::is_lvalue_reference<T>::value, "!!");
- return static_cast<T&&>(t);
- }
- template <class T>
- inline constexpr typename std::remove_reference<T>::type&& constexpr_move(
- T&& t) noexcept {
- return static_cast<typename std::remove_reference<T>::type&&>(t);
- }
- #if defined NDEBUG
- #define TR2_OPTIONAL_ASSERTED_EXPRESSION(CHECK, EXPR) (EXPR)
- #else
- #define TR2_OPTIONAL_ASSERTED_EXPRESSION(CHECK, EXPR) \
- ((CHECK) ? (EXPR) : ([] { assert(!#CHECK); }(), (EXPR)))
- #endif
- #if defined(__CUDA_ARCH__)
- #define TR2_OPTIONAL_HOST_CONSTEXPR
- #else
- #define TR2_OPTIONAL_HOST_CONSTEXPR constexpr
- #endif
- // Sphinx chokes on static_addressof, so exclude it from Doxygen
- // generation. See https://github.com/sphinx-doc/sphinx/issues/7944
- // \cond
- namespace detail_ {
- // VS doesn't handle constexpr well, so we need to skip these stuff.
- #if (defined _MSC_VER)
- template <typename T>
- T* static_addressof(T& ref) {
- return std::addressof(ref);
- }
- #else
- // static_addressof: a constexpr version of addressof
- template <typename T>
- struct has_overloaded_addressof {
- template <class X>
- constexpr static bool has_overload(...) {
- return false;
- }
- template <class X, size_t S = sizeof(std::declval<X&>().operator&())>
- constexpr static bool has_overload(bool) {
- return true;
- }
- constexpr static bool value = has_overload<T>(true);
- };
- template <typename T, TR2_OPTIONAL_REQUIRES(!has_overloaded_addressof<T>)>
- constexpr T* static_addressof(T& ref) {
- return &ref;
- }
- template <typename T, TR2_OPTIONAL_REQUIRES(has_overloaded_addressof<T>)>
- T* static_addressof(T& ref) {
- return std::addressof(ref);
- }
- #endif
- // the call to convert<A>(b) has return type A and converts b to type A iff b
- // decltype(b) is implicitly convertible to A
- template <class U>
- constexpr U convert(U v) {
- return v;
- }
- } // namespace detail_
- // \endcond
- constexpr struct trivial_init_t {
- } trivial_init{};
- // 20.5.7, Disengaged state indicator
- struct nullopt_t {
- constexpr explicit nullopt_t(int) {}
- };
- constexpr nullopt_t nullopt{0};
- // 20.5.8, class bad_optional_access
- class bad_optional_access : public std::logic_error {
- public:
- explicit bad_optional_access(const std::string& what_arg)
- : logic_error{what_arg} {}
- explicit bad_optional_access(const char* what_arg) : logic_error{what_arg} {}
- };
- template <class T>
- union storage_t {
- unsigned char dummy_{};
- T value_;
- #if __cplusplus >= 202002L
- constexpr
- #endif
- storage_t(trivial_init_t) noexcept {
- new (&dummy_) unsigned char;
- }
- template <class... Args>
- constexpr storage_t(Args&&... args)
- : value_(constexpr_forward<Args>(args)...) {}
- ~storage_t() {}
- };
- template <class T>
- union constexpr_storage_t {
- unsigned char dummy_;
- T value_;
- #if __cplusplus >= 202002L
- // C++20 lifted the requirement to initialize a union member in order to be
- // constexpr.
- constexpr constexpr_storage_t(trivial_init_t) noexcept {
- new (&dummy_) unsigned char;
- }
- #else
- constexpr constexpr_storage_t(trivial_init_t) noexcept : dummy_() {}
- #endif
- template <class... Args>
- constexpr constexpr_storage_t(Args&&... args)
- : value_(constexpr_forward<Args>(args)...) {}
- ~constexpr_storage_t() = default;
- };
- template <class T>
- struct optional_base {
- bool init_;
- storage_t<T> storage_;
- constexpr optional_base() noexcept : init_(false), storage_(trivial_init){};
- explicit constexpr optional_base(const optional_base<T>& v)
- : init_(v.init_), storage_(trivial_init) {
- if (init_) {
- ::new (dataptr()) T(v.storage_.value_);
- }
- }
- explicit constexpr optional_base(const T& v) : init_(true), storage_(v) {}
- explicit constexpr optional_base(optional_base<T>&& v) noexcept(
- std::is_nothrow_move_constructible<T>::value)
- : init_(v.init_), storage_(trivial_init) {
- if (init_) {
- ::new (dataptr()) T(std::move(v.storage_.value_));
- }
- }
- explicit constexpr optional_base(T&& v)
- : init_(true), storage_(constexpr_move(v)) {}
- template <class... Args>
- explicit optional_base(in_place_t, Args&&... args)
- : init_(true), storage_(constexpr_forward<Args>(args)...) {}
- template <
- class U,
- class... Args,
- TR2_OPTIONAL_REQUIRES(std::is_constructible<T, std::initializer_list<U>>)>
- explicit optional_base(
- in_place_t,
- std::initializer_list<U> il,
- Args&&... args)
- : init_(true), storage_(il, std::forward<Args>(args)...) {}
- optional_base& operator=(const optional_base& rhs) {
- if (init_ && !rhs.init_) {
- clear();
- } else if (!init_ && rhs.init_) {
- init_ = true;
- ::new (dataptr()) T(rhs.storage_.value_);
- } else if (init_ && rhs.init_) {
- storage_.value_ = rhs.storage_.value_;
- }
- return *this;
- }
- optional_base& operator=(optional_base&& rhs) noexcept(
- std::is_nothrow_move_assignable<T>::value&&
- std::is_nothrow_move_constructible<T>::value) {
- if (init_ && !rhs.init_) {
- clear();
- } else if (!init_ && rhs.init_) {
- init_ = true;
- ::new (dataptr()) T(std::move(rhs.storage_.value_));
- } else if (init_ && rhs.init_) {
- storage_.value_ = std::move(rhs.storage_.value_);
- }
- return *this;
- }
- ~optional_base() {
- if (init_)
- storage_.value_.T::~T();
- }
- constexpr bool initialized() const noexcept {
- return init_;
- }
- void setInitialized(bool init) noexcept {
- init_ = init;
- }
- private:
- typename std::remove_const<T>::type* dataptr() {
- return std::addressof(storage_.value_);
- }
- constexpr const T* dataptr() const {
- return detail_::static_addressof(storage_.value_);
- }
- void clear() noexcept {
- if (init_) {
- dataptr()->~T();
- }
- init_ = false;
- }
- };
- template <class T>
- struct constexpr_optional_base {
- bool init_;
- constexpr_storage_t<T> storage_;
- constexpr constexpr_optional_base() noexcept
- : init_(false), storage_(trivial_init){};
- explicit constexpr constexpr_optional_base(
- const constexpr_optional_base<T>& v)
- : init_(v.init_), storage_(trivial_init) {
- if (init_) {
- ::new (dataptr()) T(v.storage_.value_);
- }
- }
- explicit constexpr constexpr_optional_base(
- constexpr_optional_base<T>&&
- v) noexcept(std::is_nothrow_move_constructible<T>::value)
- : init_(v.init_), storage_(trivial_init) {
- if (init_) {
- ::new (dataptr()) T(std::move(v.storage_.value_));
- }
- }
- explicit constexpr constexpr_optional_base(const T& v)
- : init_(true), storage_(v) {}
- explicit constexpr constexpr_optional_base(T&& v)
- : init_(true), storage_(constexpr_move(v)) {}
- template <class... Args>
- explicit constexpr constexpr_optional_base(in_place_t, Args&&... args)
- : init_(true), storage_(constexpr_forward<Args>(args)...) {}
- template <
- class U,
- class... Args,
- TR2_OPTIONAL_REQUIRES(std::is_constructible<T, std::initializer_list<U>>)>
- constexpr explicit constexpr_optional_base(
- in_place_t,
- std::initializer_list<U> il,
- Args&&... args)
- : init_(true), storage_(il, std::forward<Args>(args)...) {}
- ~constexpr_optional_base() = default;
- constexpr_optional_base& operator=(const constexpr_optional_base& rhs) {
- if (init_ && !rhs.init_) {
- clear();
- } else if (!init_ && rhs.init_) {
- init_ = true;
- ::new (dataptr()) T(rhs.storage_.value_);
- } else if (init_ && rhs.init_) {
- storage_.value_ = rhs.storage_.value_;
- }
- return *this;
- }
- constexpr_optional_base& operator=(constexpr_optional_base&& rhs) noexcept(
- std::is_nothrow_move_assignable<T>::value&&
- std::is_nothrow_move_constructible<T>::value) {
- if (init_ && !rhs.init_) {
- clear();
- } else if (!init_ && rhs.init_) {
- init_ = true;
- ::new (dataptr()) T(std::move(rhs.storage_.value_));
- } else if (init_ && rhs.init_) {
- storage_.value_ = std::move(rhs.storage_.value_);
- }
- return *this;
- }
- constexpr bool initialized() const noexcept {
- return init_;
- }
- void setInitialized(bool init) noexcept {
- init_ = init;
- }
- private:
- typename std::remove_const<T>::type* dataptr() {
- return std::addressof(storage_.value_);
- }
- constexpr const T* dataptr() const {
- return detail_::static_addressof(storage_.value_);
- }
- void clear() noexcept {
- init_ = false;
- }
- };
- // HACK: Optimization for trivially copyable types. The mainline
- // implementation fails to have trivial copy/move operations in these
- // cases, and we care about them, so just implement that directly.
- template <class T>
- struct trivially_copyable_optimization_optional_base {
- bool init_;
- constexpr_storage_t<T> storage_;
- constexpr trivially_copyable_optimization_optional_base() noexcept
- : init_(false), storage_(trivial_init) {}
- explicit constexpr trivially_copyable_optimization_optional_base(const T& v)
- : init_(true), storage_(v) {}
- explicit constexpr trivially_copyable_optimization_optional_base(T&& v)
- : init_(true), storage_(constexpr_move(v)) {}
- template <class... Args>
- explicit constexpr trivially_copyable_optimization_optional_base(
- in_place_t,
- Args&&... args)
- : init_(true), storage_(constexpr_forward<Args>(args)...) {}
- template <
- class U,
- class... Args,
- TR2_OPTIONAL_REQUIRES(std::is_constructible<T, std::initializer_list<U>>)>
- constexpr explicit trivially_copyable_optimization_optional_base(
- in_place_t,
- std::initializer_list<U> il,
- Args&&... args)
- : init_(true), storage_(il, std::forward<Args>(args)...) {}
- ~trivially_copyable_optimization_optional_base() = default;
- constexpr bool initialized() const noexcept {
- return init_;
- }
- void setInitialized(bool init) noexcept {
- init_ = init;
- }
- };
- // HACK: Optimization for ArrayRef<T>. We take advantage of an unused
- // bit pattern in ArrayRef (inspired by Arthur O'Dwyer's
- // tombstone_traits -- see https://youtu.be/MWBfmmg8-Yo?t=2466) to
- // keep the size of c10::optional::ArrayRef<T> down to 16 bytes, which
- // allows it to be passed to functions in registers instead of getting
- // passed in memory per item 5c of the classification algorithm in
- // section 3.2.3 of the System V ABI document
- // (https://www.uclibc.org/docs/psABI-x86_64.pdf).
- template <class ArrayRefT>
- class arrayref_optional_base {
- public:
- union storage {
- struct raw {
- // ArrayRef has the invariant that if Data is nullptr then
- // Length must be zero, so this is an unused bit pattern.
- const void* p = nullptr;
- size_t sz = 1;
- } uninitialized_{};
- ArrayRefT value_;
- constexpr storage() noexcept : uninitialized_() {
- setUninitialized();
- }
- constexpr void setUninitialized() noexcept {
- uninitialized_.p = nullptr;
- uninitialized_.sz = 1;
- }
- explicit constexpr storage(ArrayRefT& v) : value_(v) {}
- template <typename T>
- explicit constexpr storage(const std::initializer_list<T>& v) : value_(v) {}
- template <class... Args>
- explicit constexpr storage(Args&&... args)
- : value_(constexpr_forward<Args>(args)...) {}
- };
- storage storage_;
- constexpr arrayref_optional_base() noexcept = default;
- explicit constexpr arrayref_optional_base(const ArrayRefT& v) : storage_(v) {}
- template <class... Args>
- explicit constexpr arrayref_optional_base(in_place_t, Args&&... args)
- : storage_(constexpr_forward<Args>(args)...) {}
- template <typename T>
- explicit constexpr arrayref_optional_base(
- in_place_t,
- const std::initializer_list<T>& v)
- : storage_(v) {}
- constexpr bool initialized() const noexcept {
- return storage_.uninitialized_.p != nullptr ||
- storage_.uninitialized_.sz == 0;
- }
- void setInitialized(bool init) noexcept {
- if (!init) {
- storage_.setUninitialized();
- } else {
- assert(initialized());
- }
- }
- };
- namespace detail_ {
- template <typename T>
- struct is_arrayref : std::false_type {};
- template <typename T>
- struct is_arrayref<c10::ArrayRef<T>> : std::true_type {};
- } // namespace detail_
- template <class T>
- using OptionalBase = std::conditional_t<
- detail_::is_arrayref<T>::value,
- arrayref_optional_base<T>,
- std::conditional_t<
- std::is_trivially_destructible<T>::value &&
- C10_IS_TRIVIALLY_COPYABLE(T) &&
- // Avoid using is_trivially_copy_{constructible,assignable}
- // because old GCC versions don't support them. Also,
- // is_trivially_copyable seems not to do what I expect, so check
- // trivially_copyable_optimization_optional_base directly.
- std::is_copy_constructible<
- trivially_copyable_optimization_optional_base<T>>::value &&
- std::is_copy_assignable<
- trivially_copyable_optimization_optional_base<T>>::value,
- trivially_copyable_optimization_optional_base<T>,
- std::conditional_t<
- std::is_trivially_destructible<T>::value, // if possible
- constexpr_optional_base<std::remove_const_t<T>>, // use base with
- // trivial
- // destructor
- optional_base<std::remove_const_t<T>>>>>;
- template <class T>
- class optional : private OptionalBase<T> {
- template <class U> // re-declaration for nvcc on Windows.
- using OptionalBase = std::conditional_t<
- detail_::is_arrayref<U>::value,
- arrayref_optional_base<U>,
- std::conditional_t<
- std::is_trivially_destructible<U>::value &&
- C10_IS_TRIVIALLY_COPYABLE(U) &&
- // Avoid using is_trivially_copy_{constructible,assignable}
- // because old GCC versions don't support them. Also,
- // is_trivially_copyable seems not to do what I expect, so
- // check trivially_copyable_optimization_optional_base
- // directly.
- std::is_copy_constructible<
- trivially_copyable_optimization_optional_base<U>>::value &&
- std::is_copy_assignable<
- trivially_copyable_optimization_optional_base<U>>::value,
- trivially_copyable_optimization_optional_base<U>,
- std::conditional_t<
- std::is_trivially_destructible<U>::value, // if possible
- constexpr_optional_base<std::remove_const_t<U>>, // use base
- // with
- // trivial
- // destructor
- optional_base<std::remove_const_t<U>>>>>;
- static_assert(
- !std::is_same<typename std::decay<T>::type, nullopt_t>::value,
- "bad T");
- static_assert(
- !std::is_same<typename std::decay<T>::type, in_place_t>::value,
- "bad T");
- constexpr bool initialized() const noexcept {
- return OptionalBase<T>::initialized();
- }
- typename std::remove_const<T>::type* dataptr() {
- return std::addressof(OptionalBase<T>::storage_.value_);
- }
- constexpr const T* dataptr() const {
- return detail_::static_addressof(OptionalBase<T>::storage_.value_);
- }
- constexpr const T& contained_val() const& {
- return OptionalBase<T>::storage_.value_;
- }
- constexpr T&& contained_val() && {
- return std::move(OptionalBase<T>::storage_.value_);
- }
- constexpr T& contained_val() & {
- return OptionalBase<T>::storage_.value_;
- }
- void clear() noexcept {
- if (initialized())
- dataptr()->~T();
- OptionalBase<T>::setInitialized(false);
- }
- template <class... Args>
- void initialize(Args&&... args) noexcept(
- noexcept(T(std::forward<Args>(args)...))) {
- assert(!initialized());
- ::new (static_cast<void*>(dataptr())) T(std::forward<Args>(args)...);
- OptionalBase<T>::setInitialized(true);
- }
- template <class U, class... Args>
- void initialize(std::initializer_list<U> il, Args&&... args) noexcept(
- noexcept(T(il, std::forward<Args>(args)...))) {
- assert(!initialized());
- ::new (static_cast<void*>(dataptr())) T(il, std::forward<Args>(args)...);
- OptionalBase<T>::setInitialized(true);
- }
- public:
- typedef T value_type;
- // 20.5.5.1, constructors
- constexpr optional() noexcept = default;
- constexpr optional(nullopt_t) noexcept : OptionalBase<T>(){};
- optional(const optional& rhs) = default;
- optional(optional&& rhs) = default;
- // see https://github.com/akrzemi1/Optional/issues/16
- // and https://en.cppreference.com/w/cpp/utility/optional/optional,
- // in constructor 8, the std::optional spec can allow initialization
- // of optionals from convertible type U
- //
- // 8 - implicit move construct from value
- template <
- typename U = T,
- TR2_OPTIONAL_REQUIRES(
- std::is_constructible<T, U&&>::value &&
- !std::is_same<typename std::decay<U>::type, in_place_t>::value &&
- !std::is_same<typename std::decay<U>::type, optional<T>>::value &&
- std::is_convertible<U&&, T>)>
- constexpr optional(U&& u) : OptionalBase<T>(std::forward<U>(u)) {}
- // 8 - explicit move construct from value
- template <
- typename U = T,
- TR2_OPTIONAL_REQUIRES(
- std::is_constructible<T, U&&>::value &&
- !std::is_same<typename std::decay<U>::type, in_place_t>::value &&
- !std::is_same<typename std::decay<U>::type, optional<T>>::value &&
- !std::is_convertible<U&&, T>)>
- explicit constexpr optional(U&& u) : OptionalBase<T>(std::forward<U>(u)) {}
- template <class... Args>
- explicit constexpr optional(in_place_t, Args&&... args)
- : OptionalBase<T>(in_place_t{}, constexpr_forward<Args>(args)...) {}
- template <
- class U,
- class... Args,
- TR2_OPTIONAL_REQUIRES(std::is_constructible<T, std::initializer_list<U>>)>
- constexpr explicit optional(
- in_place_t,
- std::initializer_list<U> il,
- Args&&... args)
- : OptionalBase<T>(in_place_t{}, il, constexpr_forward<Args>(args)...) {}
- // 20.5.4.2, Destructor
- ~optional() = default;
- // 20.5.4.3, assignment
- optional& operator=(nullopt_t) noexcept {
- clear();
- return *this;
- }
- optional& operator=(const optional& rhs) = default;
- optional& operator=(optional&& rhs) = default;
- template <class U = T>
- auto operator=(U&& v) -> typename std::enable_if<
- std::is_constructible<T, U>::value &&
- !std::is_same<typename std::decay<U>::type, optional<T>>::value &&
- (std::is_scalar<T>::value ||
- std::is_same<typename std::decay<U>::type, T>::value) &&
- std::is_assignable<T&, U>::value,
- optional&>::type {
- if (initialized()) {
- contained_val() = std::forward<U>(v);
- } else {
- initialize(std::forward<U>(v));
- }
- return *this;
- }
- template <class... Args>
- void emplace(Args&&... args) {
- clear();
- initialize(std::forward<Args>(args)...);
- }
- template <class U, class... Args>
- void emplace(std::initializer_list<U> il, Args&&... args) {
- clear();
- initialize<U, Args...>(il, std::forward<Args>(args)...);
- }
- // 20.5.4.4, Swap
- void swap(optional<T>& rhs) noexcept(
- std::is_nothrow_move_constructible<T>::value&& noexcept(
- std::swap(std::declval<T&>(), std::declval<T&>()))) {
- if (initialized() == true && rhs.initialized() == false) {
- rhs.initialize(std::move(**this));
- clear();
- } else if (initialized() == false && rhs.initialized() == true) {
- initialize(std::move(*rhs));
- rhs.clear();
- } else if (initialized() == true && rhs.initialized() == true) {
- using std::swap;
- swap(**this, *rhs);
- }
- }
- // 20.5.4.5, Observers
- explicit constexpr operator bool() const noexcept {
- return initialized();
- }
- constexpr bool has_value() const noexcept {
- return initialized();
- }
- TR2_OPTIONAL_HOST_CONSTEXPR T const* operator->() const {
- return TR2_OPTIONAL_ASSERTED_EXPRESSION(initialized(), dataptr());
- }
- TR2_OPTIONAL_HOST_CONSTEXPR T* operator->() {
- assert(initialized());
- return dataptr();
- }
- TR2_OPTIONAL_HOST_CONSTEXPR T const& operator*() const& {
- return TR2_OPTIONAL_ASSERTED_EXPRESSION(initialized(), contained_val());
- }
- TR2_OPTIONAL_HOST_CONSTEXPR T& operator*() & {
- assert(initialized());
- return contained_val();
- }
- TR2_OPTIONAL_HOST_CONSTEXPR T&& operator*() && {
- assert(initialized());
- return constexpr_move(contained_val());
- }
- TR2_OPTIONAL_HOST_CONSTEXPR T const& value() const& {
- return initialized()
- ? contained_val()
- : (throw bad_optional_access("bad optional access"), contained_val());
- }
- TR2_OPTIONAL_HOST_CONSTEXPR T& value() & {
- return initialized()
- ? contained_val()
- : (throw bad_optional_access("bad optional access"), contained_val());
- }
- TR2_OPTIONAL_HOST_CONSTEXPR T&& value() && {
- if (!initialized())
- throw bad_optional_access("bad optional access");
- return std::move(contained_val());
- }
- template <class V>
- constexpr T value_or(V&& v) const& {
- return *this ? **this : detail_::convert<T>(constexpr_forward<V>(v));
- }
- template <class V>
- constexpr T value_or(V&& v) && {
- return *this
- ? constexpr_move(const_cast<optional<T>&>(*this).contained_val())
- : detail_::convert<T>(constexpr_forward<V>(v));
- }
- // 20.6.3.6, modifiers
- void reset() noexcept {
- clear();
- }
- };
- template <class T, class F>
- constexpr T value_or_else(const optional<T>& v, F&& func) {
- static_assert(
- std::is_convertible<
- typename guts::infer_function_traits_t<F>::return_type,
- T>::value,
- "func parameters must be a callable that returns a type convertible to the value stored in the optional");
- return v.has_value() ? *v : detail_::convert<T>(std::forward<F>(func)());
- }
- template <class T, class F>
- constexpr T value_or_else(optional<T>&& v, F&& func) {
- static_assert(
- std::is_convertible<
- typename guts::infer_function_traits_t<F>::return_type,
- T>::value,
- "func parameters must be a callable that returns a type convertible to the value stored in the optional");
- return v.has_value() ? constexpr_move(std::move(v).contained_val())
- : detail_::convert<T>(std::forward<F>(func)());
- }
- // XXX: please refrain from using optional<T&>, since it is being against with
- // the optional standard in c++ 17, see the debate and the details here:
- // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3406#rationale.refs
- // if you need it, consider using optional<std::reference_wrapper<T>> or *
- // pointer
- //
- // we leave the implementation here in case we want to reconsider using it in
- // the future if it becomes a definitely necessary case.
- template <class T>
- class optional<T&> {
- // add this assert to prevent user from using optional reference as indicated
- // above
- static_assert(
- sizeof(T) == 0,
- "optional references is ill-formed, \
- consider use optional of a std::reference_wrapper of type T to \
- hold a reference if you really need to");
- static_assert(!std::is_same<T, nullopt_t>::value, "bad T");
- static_assert(!std::is_same<T, in_place_t>::value, "bad T");
- T* ref;
- public:
- // 20.5.5.1, construction/destruction
- constexpr optional() noexcept : ref(nullptr) {}
- constexpr optional(nullopt_t) noexcept : ref(nullptr) {}
- template <typename U = T>
- constexpr optional(U& u) noexcept : ref(detail_::static_addressof(u)) {}
- template <typename U = T>
- optional(U&&) = delete;
- constexpr optional(const optional& rhs) noexcept : ref(rhs.ref) {}
- explicit constexpr optional(in_place_t, T& v) noexcept
- : ref(detail_::static_addressof(v)) {}
- explicit optional(in_place_t, T&&) = delete;
- ~optional() = default;
- // 20.5.5.2, mutation
- optional& operator=(nullopt_t) noexcept {
- ref = nullptr;
- return *this;
- }
- // optional& operator=(const optional& rhs) noexcept {
- // ref = rhs.ref;
- // return *this;
- // }
- // optional& operator=(optional&& rhs) noexcept {
- // ref = rhs.ref;
- // return *this;
- // }
- template <typename U>
- auto operator=(U&& rhs) noexcept -> typename std::enable_if<
- std::is_same<typename std::decay<U>::type, optional<T&>>::value,
- optional&>::type {
- ref = rhs.ref;
- return *this;
- }
- template <typename U>
- auto operator=(U&& rhs) noexcept -> typename std::enable_if<
- !std::is_same<typename std::decay<U>::type, optional<T&>>::value,
- optional&>::type = delete;
- void emplace(T& v) noexcept {
- ref = detail_::static_addressof(v);
- }
- void emplace(T&&) = delete;
- void swap(optional<T&>& rhs) noexcept {
- std::swap(ref, rhs.ref);
- }
- // 20.5.5.3, observers
- TR2_OPTIONAL_HOST_CONSTEXPR T* operator->() const {
- return TR2_OPTIONAL_ASSERTED_EXPRESSION(ref, ref);
- }
- TR2_OPTIONAL_HOST_CONSTEXPR T& operator*() const {
- return TR2_OPTIONAL_ASSERTED_EXPRESSION(ref, *ref);
- }
- constexpr T& value() const {
- return ref ? *ref
- : (throw bad_optional_access("bad optional access"), *ref);
- }
- explicit constexpr operator bool() const noexcept {
- return ref != nullptr;
- }
- constexpr bool has_value() const noexcept {
- return ref != nullptr;
- }
- template <class V>
- constexpr typename std::decay<T>::type value_or(V&& v) const {
- return *this ? **this
- : detail_::convert<typename std::decay<T>::type>(
- constexpr_forward<V>(v));
- }
- // x.x.x.x, modifiers
- void reset() noexcept {
- ref = nullptr;
- }
- };
- template <class T>
- class optional<T&&> {
- static_assert(sizeof(T) == 0, "optional rvalue references disallowed");
- };
- // 20.5.8, Relational operators
- template <class T>
- constexpr bool operator==(const optional<T>& x, const optional<T>& y) {
- return bool(x) != bool(y) ? false : bool(x) == false ? true : *x == *y;
- }
- template <class T>
- constexpr bool operator!=(const optional<T>& x, const optional<T>& y) {
- return !(x == y);
- }
- template <class T>
- constexpr bool operator<(const optional<T>& x, const optional<T>& y) {
- return (!y) ? false : (!x) ? true : *x < *y;
- }
- template <class T>
- constexpr bool operator>(const optional<T>& x, const optional<T>& y) {
- return (y < x);
- }
- template <class T>
- constexpr bool operator<=(const optional<T>& x, const optional<T>& y) {
- return !(y < x);
- }
- template <class T>
- constexpr bool operator>=(const optional<T>& x, const optional<T>& y) {
- return !(x < y);
- }
- // 20.5.9, Comparison with nullopt
- template <class T>
- constexpr bool operator==(const optional<T>& x, nullopt_t) noexcept {
- return (!x);
- }
- template <class T>
- constexpr bool operator==(nullopt_t, const optional<T>& x) noexcept {
- return (!x);
- }
- template <class T>
- constexpr bool operator!=(const optional<T>& x, nullopt_t) noexcept {
- return bool(x);
- }
- template <class T>
- constexpr bool operator!=(nullopt_t, const optional<T>& x) noexcept {
- return bool(x);
- }
- template <class T>
- constexpr bool operator<(const optional<T>&, nullopt_t) noexcept {
- return false;
- }
- template <class T>
- constexpr bool operator<(nullopt_t, const optional<T>& x) noexcept {
- return bool(x);
- }
- template <class T>
- constexpr bool operator<=(const optional<T>& x, nullopt_t) noexcept {
- return (!x);
- }
- template <class T>
- constexpr bool operator<=(nullopt_t, const optional<T>&) noexcept {
- return true;
- }
- template <class T>
- constexpr bool operator>(const optional<T>& x, nullopt_t) noexcept {
- return bool(x);
- }
- template <class T>
- constexpr bool operator>(nullopt_t, const optional<T>&) noexcept {
- return false;
- }
- template <class T>
- constexpr bool operator>=(const optional<T>&, nullopt_t) noexcept {
- return true;
- }
- template <class T>
- constexpr bool operator>=(nullopt_t, const optional<T>& x) noexcept {
- return (!x);
- }
- // 20.5.10, Comparison with T
- template <class T, class U>
- constexpr bool operator==(const optional<T>& x, const U& v) {
- return bool(x) ? *x == v : false;
- }
- template <class T, class U>
- constexpr bool operator==(const U& v, const optional<T>& x) {
- return bool(x) ? v == *x : false;
- }
- template <class T, class U>
- constexpr bool operator!=(const optional<T>& x, const U& v) {
- return bool(x) ? *x != v : true;
- }
- template <class T, class U>
- constexpr bool operator!=(const U& v, const optional<T>& x) {
- return bool(x) ? v != *x : true;
- }
- template <class T, class U>
- constexpr bool operator<(const optional<T>& x, const U& v) {
- return bool(x) ? *x < v : true;
- }
- template <class T, class U>
- constexpr bool operator>(const U& v, const optional<T>& x) {
- return bool(x) ? v > *x : true;
- }
- template <class T, class U>
- constexpr bool operator>(const optional<T>& x, const U& v) {
- return bool(x) ? *x > v : false;
- }
- template <class T, class U>
- constexpr bool operator<(const U& v, const optional<T>& x) {
- return bool(x) ? v < *x : false;
- }
- template <class T, class U>
- constexpr bool operator>=(const optional<T>& x, const U& v) {
- return bool(x) ? *x >= v : false;
- }
- template <class T, class U>
- constexpr bool operator<=(const U& v, const optional<T>& x) {
- return bool(x) ? v <= *x : false;
- }
- template <class T, class U>
- constexpr bool operator<=(const optional<T>& x, const U& v) {
- return bool(x) ? *x <= v : true;
- }
- template <class T, class U>
- constexpr bool operator>=(const U& v, const optional<T>& x) {
- return bool(x) ? v >= *x : true;
- }
- // Comparison of optional<T&> with T
- template <class T>
- constexpr bool operator==(const optional<T&>& x, const T& v) {
- return bool(x) ? *x == v : false;
- }
- template <class T>
- constexpr bool operator==(const T& v, const optional<T&>& x) {
- return bool(x) ? v == *x : false;
- }
- template <class T>
- constexpr bool operator!=(const optional<T&>& x, const T& v) {
- return bool(x) ? *x != v : true;
- }
- template <class T>
- constexpr bool operator!=(const T& v, const optional<T&>& x) {
- return bool(x) ? v != *x : true;
- }
- template <class T>
- constexpr bool operator<(const optional<T&>& x, const T& v) {
- return bool(x) ? *x < v : true;
- }
- template <class T>
- constexpr bool operator>(const T& v, const optional<T&>& x) {
- return bool(x) ? v > *x : true;
- }
- template <class T>
- constexpr bool operator>(const optional<T&>& x, const T& v) {
- return bool(x) ? *x > v : false;
- }
- template <class T>
- constexpr bool operator<(const T& v, const optional<T&>& x) {
- return bool(x) ? v < *x : false;
- }
- template <class T>
- constexpr bool operator>=(const optional<T&>& x, const T& v) {
- return bool(x) ? *x >= v : false;
- }
- template <class T>
- constexpr bool operator<=(const T& v, const optional<T&>& x) {
- return bool(x) ? v <= *x : false;
- }
- template <class T>
- constexpr bool operator<=(const optional<T&>& x, const T& v) {
- return bool(x) ? *x <= v : true;
- }
- template <class T>
- constexpr bool operator>=(const T& v, const optional<T&>& x) {
- return bool(x) ? v >= *x : true;
- }
- // Comparison of optional<T const&> with T
- template <class T>
- constexpr bool operator==(const optional<const T&>& x, const T& v) {
- return bool(x) ? *x == v : false;
- }
- template <class T>
- constexpr bool operator==(const T& v, const optional<const T&>& x) {
- return bool(x) ? v == *x : false;
- }
- template <class T>
- constexpr bool operator!=(const optional<const T&>& x, const T& v) {
- return bool(x) ? *x != v : true;
- }
- template <class T>
- constexpr bool operator!=(const T& v, const optional<const T&>& x) {
- return bool(x) ? v != *x : true;
- }
- template <class T>
- constexpr bool operator<(const optional<const T&>& x, const T& v) {
- return bool(x) ? *x < v : true;
- }
- template <class T>
- constexpr bool operator>(const T& v, const optional<const T&>& x) {
- return bool(x) ? v > *x : true;
- }
- template <class T>
- constexpr bool operator>(const optional<const T&>& x, const T& v) {
- return bool(x) ? *x > v : false;
- }
- template <class T>
- constexpr bool operator<(const T& v, const optional<const T&>& x) {
- return bool(x) ? v < *x : false;
- }
- template <class T>
- constexpr bool operator>=(const optional<const T&>& x, const T& v) {
- return bool(x) ? *x >= v : false;
- }
- template <class T>
- constexpr bool operator<=(const T& v, const optional<const T&>& x) {
- return bool(x) ? v <= *x : false;
- }
- template <class T>
- constexpr bool operator<=(const optional<const T&>& x, const T& v) {
- return bool(x) ? *x <= v : true;
- }
- template <class T>
- constexpr bool operator>=(const T& v, const optional<const T&>& x) {
- return bool(x) ? v >= *x : true;
- }
- // 20.5.12, Specialized algorithms
- template <class T>
- void swap(optional<T>& x, optional<T>& y) noexcept(noexcept(x.swap(y))) {
- x.swap(y);
- }
- template <class T>
- constexpr optional<typename std::decay<T>::type> make_optional(T&& v) {
- return optional<typename std::decay<T>::type>(constexpr_forward<T>(v));
- }
- template <class X>
- constexpr optional<X&> make_optional(std::reference_wrapper<X> v) {
- return optional<X&>(v.get());
- }
- } // namespace c10
- namespace std {
- template <typename T>
- struct hash<c10::optional<T>> {
- typedef c10::invoke_result_t<std::hash<T>, T> result_type;
- typedef c10::optional<T> argument_type;
- constexpr result_type operator()(argument_type const& arg) const {
- return arg ? std::hash<T>{}(*arg) : result_type{};
- }
- };
- template <typename T>
- struct hash<c10::optional<T&>> {
- typedef typename hash<T>::result_type result_type;
- typedef c10::optional<T&> argument_type;
- constexpr result_type operator()(argument_type const& arg) const {
- return arg ? std::hash<T>{}(*arg) : result_type{};
- }
- };
- } // namespace std
- #undef TR2_OPTIONAL_REQUIRES
- #undef TR2_OPTIONAL_ASSERTED_EXPRESSION
- #undef TR2_OPTIONAL_HOST_CONSTEXPR
- C10_CLANG_DIAGNOSTIC_POP()
- #endif // C10_UTIL_OPTIONAL_H_
|