1 // <experimental/any> -*- C++ -*-
3 // Copyright (C) 2014-2015 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 <= 201103L
35 # include <bits/c++14_warning.h>
41 #include <type_traits>
43 namespace std _GLIBCXX_VISIBILITY(default)
45 namespace experimental
47 inline namespace fundamentals_v1
49 _GLIBCXX_BEGIN_NAMESPACE_VERSION
52 * @defgroup any Type-safe container of any type
53 * @ingroup experimental
55 * A type-safe container for single values of value types, as
56 * described in n3804 "Any Library Proposal (Revision 3)".
61 #define __cpp_lib_experimental_any 201411
64 * @brief Exception class thrown by a failed @c any_cast
67 class bad_any_cast : public bad_cast
70 virtual const char* what() const noexcept { return "bad any_cast"; }
73 [[gnu::noreturn]] inline void __throw_bad_any_cast()
83 * @brief A type-safe container of any type.
85 * An @c any object's state is either empty or it stores a contained object
86 * of CopyConstructible type.
90 // Holds either pointer to a heap object or the contained object itself.
94 std::aligned_storage<sizeof(_M_ptr), sizeof(_M_ptr)>::type _M_buffer;
97 template<typename _Tp, typename _Safe = is_trivially_copyable<_Tp>,
98 bool _Fits = (sizeof(_Tp) <= sizeof(_Storage))>
99 using _Internal = std::integral_constant<bool, _Safe::value && _Fits>;
101 template<typename _Tp>
102 struct _Manager_internal; // uses small-object optimization
104 template<typename _Tp>
105 struct _Manager_external; // creates contained object on the heap
107 template<typename _Tp>
108 using _Manager = conditional_t<_Internal<_Tp>::value,
109 _Manager_internal<_Tp>,
110 _Manager_external<_Tp>>;
112 template<typename _Tp, typename _Decayed = decay_t<_Tp>>
113 using _Decay = enable_if_t<!is_same<_Decayed, any>::value, _Decayed>;
116 // construct/destruct
118 /// Default constructor, creates an empty object.
119 any() noexcept : _M_manager(nullptr) { }
121 /// Copy constructor, copies the state of @p __other
122 any(const any& __other) : _M_manager(__other._M_manager)
124 if (!__other.empty())
128 _M_manager(_Op_clone, &__other, &__arg);
133 * @brief Move constructor, transfer the state from @p __other
135 * @post @c __other.empty() (not guaranteed for other implementations)
137 any(any&& __other) noexcept
138 : _M_manager(__other._M_manager),
139 _M_storage(__other._M_storage)
140 { __other._M_manager = nullptr; }
142 /// Construct with a copy of @p __value as the contained object.
143 template <typename _ValueType, typename _Tp = _Decay<_ValueType>,
144 typename _Mgr = _Manager<_Tp>>
145 any(_ValueType&& __value)
146 : _M_manager(&_Mgr::_S_manage),
147 _M_storage(_Mgr::_S_create(std::forward<_ValueType>(__value)))
149 static_assert(is_copy_constructible<_Tp>::value,
150 "The contained object must be CopyConstructible");
153 /// Destructor, calls @c clear()
158 /// Copy the state of
159 any& operator=(const any& __rhs)
161 any(__rhs).swap(*this);
166 * @brief Move assignment operator
168 * @post @c __rhs.empty() (not guaranteed for other implementations)
170 any& operator=(any&& __rhs) noexcept
172 any(std::move(__rhs)).swap(*this);
176 /// Store a copy of @p __rhs as the contained object.
177 template<typename _ValueType>
178 any& operator=(_ValueType&& __rhs)
180 any(std::forward<_ValueType>(__rhs)).swap(*this);
186 /// If not empty, destroy the contained object.
187 void clear() noexcept
191 _M_manager(_Op_destroy, this, nullptr);
192 _M_manager = nullptr;
196 /// Exchange state with another object.
197 void swap(any& __rhs) noexcept
199 std::swap(_M_manager, __rhs._M_manager);
200 std::swap(_M_storage, __rhs._M_storage);
205 /// Reports whether there is a contained object or not.
206 bool empty() const noexcept { return _M_manager == nullptr; }
209 /// The @c typeid of the contained object, or @c typeid(void) if empty.
210 const type_info& type() const noexcept
215 _M_manager(_Op_get_type_info, this, &__arg);
216 return *__arg._M_typeinfo;
220 template<typename _Tp>
221 static constexpr bool __is_valid_cast()
222 { return __or_<is_reference<_Tp>, is_copy_constructible<_Tp>>::value; }
225 enum _Op { _Op_access, _Op_get_type_info, _Op_clone, _Op_destroy };
230 const std::type_info* _M_typeinfo;
234 void (*_M_manager)(_Op, const any*, _Arg*);
237 template<typename _Tp>
238 friend void* __any_caster(const any* __any)
240 if (__any->_M_manager != &_Manager<decay_t<_Tp>>::_S_manage)
243 __any->_M_manager(_Op_access, __any, &__arg);
247 // Manage in-place contained object.
248 template<typename _Tp>
249 struct _Manager_internal
252 _S_manage(_Op __which, const any* __anyp, _Arg* __arg);
254 template<typename _Up>
256 _S_create(_Up&& __value)
259 void* __addr = &__storage._M_buffer;
260 ::new (__addr) _Tp(std::forward<_Up>(__value));
264 template<typename _Alloc, typename _Up>
266 _S_alloc(const _Alloc&, _Up&& __value)
268 return _S_create(std::forward<_Up>(__value));
272 // Manage external contained object.
273 template<typename _Tp>
274 struct _Manager_external
277 _S_manage(_Op __which, const any* __anyp, _Arg* __arg);
279 template<typename _Up>
281 _S_create(_Up&& __value)
284 __storage._M_ptr = new _Tp(std::forward<_Up>(__value));
290 /// Exchange the states of two @c any objects.
291 inline void swap(any& __x, any& __y) noexcept { __x.swap(__y); }
294 * @brief Access the contained object.
296 * @tparam _ValueType A const-reference or CopyConstructible type.
297 * @param __any The object to access.
298 * @return The contained object.
299 * @throw bad_any_cast If <code>
300 * __any.type() != typeid(remove_reference_t<_ValueType>)
303 template<typename _ValueType>
304 inline _ValueType any_cast(const any& __any)
306 static_assert(any::__is_valid_cast<_ValueType>(),
307 "Template argument must be a reference or CopyConstructible type");
308 auto __p = any_cast<add_const_t<remove_reference_t<_ValueType>>>(&__any);
311 __throw_bad_any_cast();
315 * @brief Access the contained object.
317 * @tparam _ValueType A reference or CopyConstructible type.
318 * @param __any The object to access.
319 * @return The contained object.
320 * @throw bad_any_cast If <code>
321 * __any.type() != typeid(remove_reference_t<_ValueType>)
326 template<typename _ValueType>
327 inline _ValueType any_cast(any& __any)
329 static_assert(any::__is_valid_cast<_ValueType>(),
330 "Template argument must be a reference or CopyConstructible type");
331 auto __p = any_cast<remove_reference_t<_ValueType>>(&__any);
334 __throw_bad_any_cast();
337 template<typename _ValueType>
338 inline _ValueType any_cast(any&& __any)
340 static_assert(any::__is_valid_cast<_ValueType>(),
341 "Template argument must be a reference or CopyConstructible type");
342 auto __p = any_cast<remove_reference_t<_ValueType>>(&__any);
345 __throw_bad_any_cast();
350 * @brief Access the contained object.
352 * @tparam _ValueType The type of the contained object.
353 * @param __any A pointer to the object to access.
354 * @return The address of the contained object if <code>
355 * __any != nullptr && __any.type() == typeid(_ValueType)
356 * </code>, otherwise a null pointer.
360 template<typename _ValueType>
361 inline const _ValueType* any_cast(const any* __any) noexcept
364 return static_cast<_ValueType*>(__any_caster<_ValueType>(__any));
368 template<typename _ValueType>
369 inline _ValueType* any_cast(any* __any) noexcept
372 return static_cast<_ValueType*>(__any_caster<_ValueType>(__any));
377 template<typename _Tp>
379 any::_Manager_internal<_Tp>::
380 _S_manage(_Op __which, const any* __any, _Arg* __arg)
382 // The contained object is in _M_storage._M_buffer
383 auto __ptr = reinterpret_cast<const _Tp*>(&__any->_M_storage._M_buffer);
387 __arg->_M_obj = const_cast<_Tp*>(__ptr);
389 case _Op_get_type_info:
391 __arg->_M_typeinfo = &typeid(_Tp);
395 ::new(&__arg->_M_any->_M_storage._M_buffer) _Tp(*__ptr);
403 template<typename _Tp>
405 any::_Manager_external<_Tp>::
406 _S_manage(_Op __which, const any* __any, _Arg* __arg)
408 // The contained object is *_M_storage._M_ptr
409 auto __ptr = static_cast<const _Tp*>(__any->_M_storage._M_ptr);
413 __arg->_M_obj = const_cast<_Tp*>(__ptr);
415 case _Op_get_type_info:
417 __arg->_M_typeinfo = &typeid(_Tp);
421 __arg->_M_any->_M_storage._M_ptr = new _Tp(*__ptr);
430 _GLIBCXX_END_NAMESPACE_VERSION
431 } // namespace fundamentals_v1
432 } // namespace experimental
437 #endif // _GLIBCXX_EXPERIMENTAL_ANY