1 // <experimental/any> -*- C++ -*-
3 // Copyright (C) 2014-2018 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file experimental/any
26 * This is a TS C++ Library header.
29 #ifndef _GLIBCXX_EXPERIMENTAL_ANY
30 #define _GLIBCXX_EXPERIMENTAL_ANY 1
32 #pragma GCC system_header
34 #if __cplusplus >= 201402L
39 #include <type_traits>
40 #include <experimental/bits/lfts_config.h>
42 namespace std _GLIBCXX_VISIBILITY(default)
44 _GLIBCXX_BEGIN_NAMESPACE_VERSION
46 namespace experimental
48 inline namespace fundamentals_v1
51 * @defgroup any Type-safe container of any type
52 * @ingroup experimental
54 * A type-safe container for single values of value types, as
55 * described in n3804 "Any Library Proposal (Revision 3)".
60 #define __cpp_lib_experimental_any 201411
63 * @brief Exception class thrown by a failed @c any_cast
66 class bad_any_cast : public bad_cast
69 virtual const char* what() const noexcept { return "bad any_cast"; }
72 [[gnu::noreturn]] inline void __throw_bad_any_cast()
82 * @brief A type-safe container of any type.
84 * An @c any object's state is either empty or it stores a contained object
85 * of CopyConstructible type.
89 // Holds either pointer to a heap object or the contained object itself.
92 // This constructor intentionally doesn't initialize anything.
95 // Prevent trivial copies of this type, buffer might hold a non-POD.
96 _Storage(const _Storage&) = delete;
97 _Storage& operator=(const _Storage&) = delete;
100 aligned_storage<sizeof(_M_ptr), alignof(void*)>::type _M_buffer;
103 template<typename _Tp, typename _Safe = is_nothrow_move_constructible<_Tp>,
104 bool _Fits = (sizeof(_Tp) <= sizeof(_Storage))
105 && (alignof(_Tp) <= alignof(_Storage))>
106 using _Internal = std::integral_constant<bool, _Safe::value && _Fits>;
108 template<typename _Tp>
109 struct _Manager_internal; // uses small-object optimization
111 template<typename _Tp>
112 struct _Manager_external; // creates contained object on the heap
114 template<typename _Tp>
115 using _Manager = conditional_t<_Internal<_Tp>::value,
116 _Manager_internal<_Tp>,
117 _Manager_external<_Tp>>;
119 template<typename _Tp, typename _Decayed = decay_t<_Tp>>
120 using _Decay = enable_if_t<!is_same<_Decayed, any>::value, _Decayed>;
123 // construct/destruct
125 /// Default constructor, creates an empty object.
126 any() noexcept : _M_manager(nullptr) { }
128 /// Copy constructor, copies the state of @p __other
129 any(const any& __other)
132 _M_manager = nullptr;
137 __other._M_manager(_Op_clone, &__other, &__arg);
142 * @brief Move constructor, transfer the state from @p __other
144 * @post @c __other.empty() (this postcondition is a GNU extension)
146 any(any&& __other) noexcept
149 _M_manager = nullptr;
154 __other._M_manager(_Op_xfer, &__other, &__arg);
158 /// Construct with a copy of @p __value as the contained object.
159 template <typename _ValueType, typename _Tp = _Decay<_ValueType>,
160 typename _Mgr = _Manager<_Tp>,
161 typename enable_if<is_constructible<_Tp, _ValueType&&>::value,
163 any(_ValueType&& __value)
164 : _M_manager(&_Mgr::_S_manage)
166 _Mgr::_S_create(_M_storage, std::forward<_ValueType>(__value));
167 static_assert(is_copy_constructible<_Tp>::value,
168 "The contained object must be CopyConstructible");
171 /// Construct with a copy of @p __value as the contained object.
172 template <typename _ValueType, typename _Tp = _Decay<_ValueType>,
173 typename _Mgr = _Manager<_Tp>,
174 typename enable_if<!is_constructible<_Tp, _ValueType&&>::value,
176 any(_ValueType&& __value)
177 : _M_manager(&_Mgr::_S_manage)
179 _Mgr::_S_create(_M_storage, __value);
180 static_assert(is_copy_constructible<_Tp>::value,
181 "The contained object must be CopyConstructible");
184 /// Destructor, calls @c clear()
189 /// Copy the state of another object.
190 any& operator=(const any& __rhs)
197 * @brief Move assignment operator
199 * @post @c __rhs.empty() (not guaranteed for other implementations)
201 any& operator=(any&& __rhs) noexcept
205 else if (this != &__rhs)
210 __rhs._M_manager(_Op_xfer, &__rhs, &__arg);
215 /// Store a copy of @p __rhs as the contained object.
216 template<typename _ValueType>
217 enable_if_t<!is_same<any, decay_t<_ValueType>>::value, any&>
218 operator=(_ValueType&& __rhs)
220 *this = any(std::forward<_ValueType>(__rhs));
226 /// If not empty, destroy the contained object.
227 void clear() noexcept
231 _M_manager(_Op_destroy, this, nullptr);
232 _M_manager = nullptr;
236 /// Exchange state with another object.
237 void swap(any& __rhs) noexcept
239 if (empty() && __rhs.empty())
242 if (!empty() && !__rhs.empty())
249 __arg._M_any = &__tmp;
250 __rhs._M_manager(_Op_xfer, &__rhs, &__arg);
251 __arg._M_any = &__rhs;
252 _M_manager(_Op_xfer, this, &__arg);
254 __tmp._M_manager(_Op_xfer, &__tmp, &__arg);
258 any* __empty = empty() ? this : &__rhs;
259 any* __full = empty() ? &__rhs : this;
261 __arg._M_any = __empty;
262 __full->_M_manager(_Op_xfer, __full, &__arg);
268 /// Reports whether there is a contained object or not.
269 bool empty() const noexcept { return _M_manager == nullptr; }
272 /// The @c typeid of the contained object, or @c typeid(void) if empty.
273 const type_info& type() const noexcept
278 _M_manager(_Op_get_type_info, this, &__arg);
279 return *__arg._M_typeinfo;
283 template<typename _Tp>
284 static constexpr bool __is_valid_cast()
285 { return __or_<is_reference<_Tp>, is_copy_constructible<_Tp>>::value; }
289 _Op_access, _Op_get_type_info, _Op_clone, _Op_destroy, _Op_xfer
295 const std::type_info* _M_typeinfo;
299 void (*_M_manager)(_Op, const any*, _Arg*);
302 template<typename _Tp>
303 friend enable_if_t<is_object<_Tp>::value, void*>
304 __any_caster(const any* __any);
306 // Manage in-place contained object.
307 template<typename _Tp>
308 struct _Manager_internal
311 _S_manage(_Op __which, const any* __anyp, _Arg* __arg);
313 template<typename _Up>
315 _S_create(_Storage& __storage, _Up&& __value)
317 void* __addr = &__storage._M_buffer;
318 ::new (__addr) _Tp(std::forward<_Up>(__value));
322 // Manage external contained object.
323 template<typename _Tp>
324 struct _Manager_external
327 _S_manage(_Op __which, const any* __anyp, _Arg* __arg);
329 template<typename _Up>
331 _S_create(_Storage& __storage, _Up&& __value)
333 __storage._M_ptr = new _Tp(std::forward<_Up>(__value));
338 /// Exchange the states of two @c any objects.
339 inline void swap(any& __x, any& __y) noexcept { __x.swap(__y); }
342 * @brief Access the contained object.
344 * @tparam _ValueType A const-reference or CopyConstructible type.
345 * @param __any The object to access.
346 * @return The contained object.
347 * @throw bad_any_cast If <code>
348 * __any.type() != typeid(remove_reference_t<_ValueType>)
351 template<typename _ValueType>
352 inline _ValueType any_cast(const any& __any)
354 static_assert(any::__is_valid_cast<_ValueType>(),
355 "Template argument must be a reference or CopyConstructible type");
356 auto __p = any_cast<add_const_t<remove_reference_t<_ValueType>>>(&__any);
359 __throw_bad_any_cast();
363 * @brief Access the contained object.
365 * @tparam _ValueType A reference or CopyConstructible type.
366 * @param __any The object to access.
367 * @return The contained object.
368 * @throw bad_any_cast If <code>
369 * __any.type() != typeid(remove_reference_t<_ValueType>)
374 template<typename _ValueType>
375 inline _ValueType any_cast(any& __any)
377 static_assert(any::__is_valid_cast<_ValueType>(),
378 "Template argument must be a reference or CopyConstructible type");
379 auto __p = any_cast<remove_reference_t<_ValueType>>(&__any);
382 __throw_bad_any_cast();
385 template<typename _ValueType,
386 typename enable_if<!is_move_constructible<_ValueType>::value
387 || is_lvalue_reference<_ValueType>::value,
389 inline _ValueType any_cast(any&& __any)
391 static_assert(any::__is_valid_cast<_ValueType>(),
392 "Template argument must be a reference or CopyConstructible type");
393 auto __p = any_cast<remove_reference_t<_ValueType>>(&__any);
396 __throw_bad_any_cast();
399 template<typename _ValueType,
400 typename enable_if<is_move_constructible<_ValueType>::value
401 && !is_lvalue_reference<_ValueType>::value,
403 inline _ValueType any_cast(any&& __any)
405 static_assert(any::__is_valid_cast<_ValueType>(),
406 "Template argument must be a reference or CopyConstructible type");
407 auto __p = any_cast<remove_reference_t<_ValueType>>(&__any);
409 return std::move(*__p);
410 __throw_bad_any_cast();
414 /// @cond undocumented
415 template<typename _Tp>
416 enable_if_t<is_object<_Tp>::value, void*>
417 __any_caster(const any* __any)
419 // any_cast<T> returns non-null if __any->type() == typeid(T) and
420 // typeid(T) ignores cv-qualifiers so remove them:
421 using _Up = remove_cv_t<_Tp>;
422 // The contained value has a decayed type, so if decay_t<U> is not U,
423 // then it's not possible to have a contained value of type U.
424 using __does_not_decay = is_same<decay_t<_Up>, _Up>;
425 // Only copy constructible types can be used for contained values.
426 using __is_copyable = is_copy_constructible<_Up>;
427 // If the type _Tp could never be stored in an any we don't want to
428 // instantiate _Manager<_Tp>, so use _Manager<any::_Op> instead, which
429 // is explicitly specialized and has a no-op _S_manage function.
430 using _Vp = conditional_t<__and_<__does_not_decay, __is_copyable>::value,
432 // First try comparing function addresses, which works without RTTI
433 if (__any->_M_manager == &any::_Manager<_Vp>::_S_manage
435 || __any->type() == typeid(_Tp)
440 __any->_M_manager(any::_Op_access, __any, &__arg);
446 // This overload exists so that std::any_cast<void(*)()>(a) is well-formed.
447 template<typename _Tp>
448 enable_if_t<!is_object<_Tp>::value, _Tp*>
449 __any_caster(const any*) noexcept
454 * @brief Access the contained object.
456 * @tparam _ValueType The type of the contained object.
457 * @param __any A pointer to the object to access.
458 * @return The address of the contained object if <code>
459 * __any != nullptr && __any.type() == typeid(_ValueType)
460 * </code>, otherwise a null pointer.
464 template<typename _ValueType>
465 inline const _ValueType* any_cast(const any* __any) noexcept
468 return static_cast<_ValueType*>(__any_caster<_ValueType>(__any));
472 template<typename _ValueType>
473 inline _ValueType* any_cast(any* __any) noexcept
476 return static_cast<_ValueType*>(__any_caster<_ValueType>(__any));
481 template<typename _Tp>
483 any::_Manager_internal<_Tp>::
484 _S_manage(_Op __which, const any* __any, _Arg* __arg)
486 // The contained object is in _M_storage._M_buffer
487 auto __ptr = reinterpret_cast<const _Tp*>(&__any->_M_storage._M_buffer);
491 __arg->_M_obj = const_cast<_Tp*>(__ptr);
493 case _Op_get_type_info:
495 __arg->_M_typeinfo = &typeid(_Tp);
499 ::new(&__arg->_M_any->_M_storage._M_buffer) _Tp(*__ptr);
500 __arg->_M_any->_M_manager = __any->_M_manager;
506 ::new(&__arg->_M_any->_M_storage._M_buffer) _Tp
507 (std::move(*const_cast<_Tp*>(__ptr)));
509 __arg->_M_any->_M_manager = __any->_M_manager;
510 const_cast<any*>(__any)->_M_manager = nullptr;
515 template<typename _Tp>
517 any::_Manager_external<_Tp>::
518 _S_manage(_Op __which, const any* __any, _Arg* __arg)
520 // The contained object is *_M_storage._M_ptr
521 auto __ptr = static_cast<const _Tp*>(__any->_M_storage._M_ptr);
525 __arg->_M_obj = const_cast<_Tp*>(__ptr);
527 case _Op_get_type_info:
529 __arg->_M_typeinfo = &typeid(_Tp);
533 __arg->_M_any->_M_storage._M_ptr = new _Tp(*__ptr);
534 __arg->_M_any->_M_manager = __any->_M_manager;
540 __arg->_M_any->_M_storage._M_ptr = __any->_M_storage._M_ptr;
541 __arg->_M_any->_M_manager = __any->_M_manager;
542 const_cast<any*>(__any)->_M_manager = nullptr;
547 // Dummy specialization used by __any_caster.
549 struct any::_Manager_internal<any::_Op>
552 _S_manage(_Op, const any*, _Arg*) { }
556 } // namespace fundamentals_v1
557 } // namespace experimental
559 _GLIBCXX_END_NAMESPACE_VERSION
564 #endif // _GLIBCXX_EXPERIMENTAL_ANY