1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef _LIBCPP___FORMAT_FORMAT_ARG_STORE_H
11 #define _LIBCPP___FORMAT_FORMAT_ARG_STORE_H
12
13 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
14 # pragma GCC system_header
15 #endif
16
17 #include <__concepts/same_as.h>
18 #include <__config>
19 #include <__cstddef/size_t.h>
20 #include <__format/concepts.h>
21 #include <__format/format_arg.h>
22 #include <__type_traits/conditional.h>
23 #include <__type_traits/extent.h>
24 #include <__type_traits/integer_traits.h>
25 #include <__type_traits/remove_const.h>
26 #include <cstdint>
27 #include <string>
28 #include <string_view>
29
30 _LIBCPP_BEGIN_NAMESPACE_STD
31
32 #if _LIBCPP_STD_VER >= 20
33
34 namespace __format {
35
36 template <class _Arr, class _Elem>
37 inline constexpr bool __is_bounded_array_of = false;
38
39 template <class _Elem, size_t _Len>
40 inline constexpr bool __is_bounded_array_of<_Elem[_Len], _Elem> = true;
41
42 /// \returns The @c __arg_t based on the type of the formatting argument.
43 ///
44 /// \pre \c __formattable<_Tp, typename _Context::char_type>
45 template <class _Context, class _Tp>
46 consteval __arg_t __determine_arg_t();
47
48 // Boolean
49 template <class, same_as<bool> _Tp>
__determine_arg_t()50 consteval __arg_t __determine_arg_t() {
51 return __arg_t::__boolean;
52 }
53
54 // Char
55 template <class _Context, same_as<typename _Context::char_type> _Tp>
__determine_arg_t()56 consteval __arg_t __determine_arg_t() {
57 return __arg_t::__char_type;
58 }
59 # if _LIBCPP_HAS_WIDE_CHARACTERS
60 template <class _Context, class _CharT>
requires(same_as<typename _Context::char_type,wchar_t> && same_as<_CharT,char>)61 requires(same_as<typename _Context::char_type, wchar_t> && same_as<_CharT, char>)
62 consteval __arg_t __determine_arg_t() {
63 return __arg_t::__char_type;
64 }
65 # endif
66
67 // Signed integers
68 template <class, __signed_integer _Tp>
__determine_arg_t()69 consteval __arg_t __determine_arg_t() {
70 if constexpr (sizeof(_Tp) <= sizeof(int))
71 return __arg_t::__int;
72 else if constexpr (sizeof(_Tp) <= sizeof(long long))
73 return __arg_t::__long_long;
74 # if _LIBCPP_HAS_INT128
75 else if constexpr (sizeof(_Tp) == sizeof(__int128_t))
76 return __arg_t::__i128;
77 # endif
78 else
79 static_assert(sizeof(_Tp) == 0, "an unsupported signed integer was used");
80 }
81
82 // Unsigned integers
83 template <class, __unsigned_integer _Tp>
__determine_arg_t()84 consteval __arg_t __determine_arg_t() {
85 if constexpr (sizeof(_Tp) <= sizeof(unsigned))
86 return __arg_t::__unsigned;
87 else if constexpr (sizeof(_Tp) <= sizeof(unsigned long long))
88 return __arg_t::__unsigned_long_long;
89 # if _LIBCPP_HAS_INT128
90 else if constexpr (sizeof(_Tp) == sizeof(__uint128_t))
91 return __arg_t::__u128;
92 # endif
93 else
94 static_assert(sizeof(_Tp) == 0, "an unsupported unsigned integer was used");
95 }
96
97 // Floating-point
98 template <class, same_as<float> _Tp>
__determine_arg_t()99 consteval __arg_t __determine_arg_t() {
100 return __arg_t::__float;
101 }
102 template <class, same_as<double> _Tp>
__determine_arg_t()103 consteval __arg_t __determine_arg_t() {
104 return __arg_t::__double;
105 }
106 template <class, same_as<long double> _Tp>
__determine_arg_t()107 consteval __arg_t __determine_arg_t() {
108 return __arg_t::__long_double;
109 }
110
111 // Char pointer
112 template <class _Context, class _Tp>
113 requires(same_as<typename _Context::char_type*, _Tp> || same_as<const typename _Context::char_type*, _Tp>)
__determine_arg_t()114 consteval __arg_t __determine_arg_t() {
115 return __arg_t::__const_char_type_ptr;
116 }
117
118 // Char array
119 template <class _Context, class _Tp>
120 requires __is_bounded_array_of<_Tp, typename _Context::char_type>
__determine_arg_t()121 consteval __arg_t __determine_arg_t() {
122 return __arg_t::__string_view;
123 }
124
125 // String view
126 template <class _Context, class _Tp>
requires(same_as<typename _Context::char_type,typename _Tp::value_type> && same_as<_Tp,basic_string_view<typename _Tp::value_type,typename _Tp::traits_type>>)127 requires(same_as<typename _Context::char_type, typename _Tp::value_type> &&
128 same_as<_Tp, basic_string_view<typename _Tp::value_type, typename _Tp::traits_type>>)
129 consteval __arg_t __determine_arg_t() {
130 return __arg_t::__string_view;
131 }
132
133 // String
134 template <class _Context, class _Tp>
requires(same_as<typename _Context::char_type,typename _Tp::value_type> && same_as<_Tp,basic_string<typename _Tp::value_type,typename _Tp::traits_type,typename _Tp::allocator_type>>)135 requires(
136 same_as<typename _Context::char_type, typename _Tp::value_type> &&
137 same_as<_Tp, basic_string<typename _Tp::value_type, typename _Tp::traits_type, typename _Tp::allocator_type>>)
138 consteval __arg_t __determine_arg_t() {
139 return __arg_t::__string_view;
140 }
141
142 // Pointers
143 template <class, class _Ptr>
144 requires(same_as<_Ptr, void*> || same_as<_Ptr, const void*> || same_as<_Ptr, nullptr_t>)
__determine_arg_t()145 consteval __arg_t __determine_arg_t() {
146 return __arg_t::__ptr;
147 }
148
149 // Handle
150 //
151 // Note this version can't be constrained avoiding ambiguous overloads.
152 // That means it can be instantiated by disabled formatters. To solve this, a
153 // constrained version for not formattable formatters is added.
154 template <class _Context, class _Tp>
__determine_arg_t()155 consteval __arg_t __determine_arg_t() {
156 return __arg_t::__handle;
157 }
158
159 // The overload for not formattable types allows triggering the static
160 // assertion below.
161 template <class _Context, class _Tp>
162 requires(!__formattable_with<_Tp, _Context>)
__determine_arg_t()163 consteval __arg_t __determine_arg_t() {
164 return __arg_t::__none;
165 }
166
167 // Pseudo constuctor for basic_format_arg
168 //
169 // Modeled after template<class T> explicit basic_format_arg(T& v) noexcept;
170 // [format.arg]/4-6
171 template <class _Context, class _Tp>
__create_format_arg(_Tp & __value)172 _LIBCPP_HIDE_FROM_ABI basic_format_arg<_Context> __create_format_arg(_Tp& __value) noexcept {
173 using _Dp = remove_const_t<_Tp>;
174 constexpr __arg_t __arg = __format::__determine_arg_t<_Context, _Dp>();
175 static_assert(__arg != __arg_t::__none, "the supplied type is not formattable");
176 static_assert(__formattable_with<_Tp, _Context>);
177
178 using __context_char_type = _Context::char_type;
179 // Not all types can be used to directly initialize the
180 // __basic_format_arg_value. First handle all types needing adjustment, the
181 // final else requires no adjustment.
182 if constexpr (__arg == __arg_t::__char_type)
183
184 # if _LIBCPP_HAS_WIDE_CHARACTERS
185 if constexpr (same_as<__context_char_type, wchar_t> && same_as<_Dp, char>)
186 return basic_format_arg<_Context>{__arg, static_cast<wchar_t>(static_cast<unsigned char>(__value))};
187 else
188 # endif
189 return basic_format_arg<_Context>{__arg, __value};
190 else if constexpr (__arg == __arg_t::__int)
191 return basic_format_arg<_Context>{__arg, static_cast<int>(__value)};
192 else if constexpr (__arg == __arg_t::__long_long)
193 return basic_format_arg<_Context>{__arg, static_cast<long long>(__value)};
194 else if constexpr (__arg == __arg_t::__unsigned)
195 return basic_format_arg<_Context>{__arg, static_cast<unsigned>(__value)};
196 else if constexpr (__arg == __arg_t::__unsigned_long_long)
197 return basic_format_arg<_Context>{__arg, static_cast<unsigned long long>(__value)};
198 else if constexpr (__arg == __arg_t::__string_view)
199 // Using std::size on a character array will add the NUL-terminator to the size.
200 if constexpr (__is_bounded_array_of<_Dp, __context_char_type>) {
201 const __context_char_type* const __pbegin = std::begin(__value);
202 const __context_char_type* const __pzero =
203 char_traits<__context_char_type>::find(__pbegin, extent_v<_Dp>, __context_char_type{});
204 _LIBCPP_ASSERT_VALID_INPUT_RANGE(__pzero != nullptr, "formatting a non-null-terminated array");
205 return basic_format_arg<_Context>{
206 __arg, basic_string_view<__context_char_type>{__pbegin, static_cast<size_t>(__pzero - __pbegin)}};
207 } else
208 // When the _Traits or _Allocator are different an implicit conversion will fail.
209 return basic_format_arg<_Context>{__arg, basic_string_view<__context_char_type>{__value.data(), __value.size()}};
210 else if constexpr (__arg == __arg_t::__ptr)
211 return basic_format_arg<_Context>{__arg, static_cast<const void*>(__value)};
212 else if constexpr (__arg == __arg_t::__handle)
213 return basic_format_arg<_Context>{__arg, typename __basic_format_arg_value<_Context>::__handle{__value}};
214 else
215 return basic_format_arg<_Context>{__arg, __value};
216 }
217
218 template <class _Context, class... _Args>
219 _LIBCPP_HIDE_FROM_ABI void
__create_packed_storage(uint64_t & __types,__basic_format_arg_value<_Context> * __values,_Args &...__args)220 __create_packed_storage(uint64_t& __types, __basic_format_arg_value<_Context>* __values, _Args&... __args) noexcept {
221 int __shift = 0;
222 (
223 [&] {
224 basic_format_arg<_Context> __arg = __format::__create_format_arg<_Context>(__args);
225 if (__shift != 0)
226 __types |= static_cast<uint64_t>(__arg.__type_) << __shift;
227 else
228 // Assigns the initial value.
229 __types = static_cast<uint64_t>(__arg.__type_);
230 __shift += __packed_arg_t_bits;
231 *__values++ = __arg.__value_;
232 }(),
233 ...);
234 }
235
236 template <class _Context, class... _Args>
__store_basic_format_arg(basic_format_arg<_Context> * __data,_Args &...__args)237 _LIBCPP_HIDE_FROM_ABI void __store_basic_format_arg(basic_format_arg<_Context>* __data, _Args&... __args) noexcept {
238 ([&] { *__data++ = __format::__create_format_arg<_Context>(__args); }(), ...);
239 }
240
241 template <class _Context, size_t _Np>
242 struct __packed_format_arg_store {
243 __basic_format_arg_value<_Context> __values_[_Np];
244 uint64_t __types_ = 0;
245 };
246
247 template <class _Context>
248 struct __packed_format_arg_store<_Context, 0> {
249 uint64_t __types_ = 0;
250 };
251
252 template <class _Context, size_t _Np>
253 struct __unpacked_format_arg_store {
254 basic_format_arg<_Context> __args_[_Np];
255 };
256
257 } // namespace __format
258
259 template <class _Context, class... _Args>
260 struct __format_arg_store {
261 _LIBCPP_HIDE_FROM_ABI __format_arg_store(_Args&... __args) noexcept {
262 if constexpr (sizeof...(_Args) != 0) {
263 if constexpr (__format::__use_packed_format_arg_store(sizeof...(_Args)))
264 __format::__create_packed_storage(__storage.__types_, __storage.__values_, __args...);
265 else
266 __format::__store_basic_format_arg<_Context>(__storage.__args_, __args...);
267 }
268 }
269
270 using _Storage _LIBCPP_NODEBUG =
271 conditional_t<__format::__use_packed_format_arg_store(sizeof...(_Args)),
272 __format::__packed_format_arg_store<_Context, sizeof...(_Args)>,
273 __format::__unpacked_format_arg_store<_Context, sizeof...(_Args)>>;
274
275 _Storage __storage;
276 };
277
278 #endif // _LIBCPP_STD_VER >= 20
279
280 _LIBCPP_END_NAMESPACE_STD
281
282 #endif // _LIBCPP___FORMAT_FORMAT_ARG_STORE_H
283