fix: relayd: unaligned access in trace_chunk_registry_ht_key_hash
[lttng-tools.git] / src / vendor / fmt / xchar.h
CommitLineData
05aa7e19
JG
1// Formatting library for C++ - optional wchar_t and exotic character support
2//
3// Copyright (c) 2012 - present, Victor Zverovich
4// All rights reserved.
5//
6// For the license information refer to format.h.
7
8#ifndef FMT_XCHAR_H_
9#define FMT_XCHAR_H_
10
11#include <cwchar>
05aa7e19
JG
12
13#include "format.h"
14
15FMT_BEGIN_NAMESPACE
16namespace detail {
17template <typename T>
18using is_exotic_char = bool_constant<!std::is_same<T, char>::value>;
19}
20
21FMT_MODULE_EXPORT_BEGIN
22
23using wstring_view = basic_string_view<wchar_t>;
24using wformat_parse_context = basic_format_parse_context<wchar_t>;
25using wformat_context = buffer_context<wchar_t>;
26using wformat_args = basic_format_args<wformat_context>;
27using wmemory_buffer = basic_memory_buffer<wchar_t>;
28
29#if FMT_GCC_VERSION && FMT_GCC_VERSION < 409
30// Workaround broken conversion on older gcc.
31template <typename... Args> using wformat_string = wstring_view;
8b75cd77 32inline auto runtime(wstring_view s) -> wstring_view { return s; }
05aa7e19
JG
33#else
34template <typename... Args>
35using wformat_string = basic_format_string<wchar_t, type_identity_t<Args>...>;
8b75cd77 36inline auto runtime(wstring_view s) -> basic_runtime<wchar_t> { return {{s}}; }
05aa7e19
JG
37#endif
38
39template <> struct is_char<wchar_t> : std::true_type {};
40template <> struct is_char<detail::char8_type> : std::true_type {};
41template <> struct is_char<char16_t> : std::true_type {};
42template <> struct is_char<char32_t> : std::true_type {};
43
44template <typename... Args>
45constexpr format_arg_store<wformat_context, Args...> make_wformat_args(
46 const Args&... args) {
47 return {args...};
48}
49
50inline namespace literals {
8b75cd77 51#if FMT_USE_USER_DEFINED_LITERALS && !FMT_USE_NONTYPE_TEMPLATE_ARGS
05aa7e19
JG
52constexpr detail::udl_arg<wchar_t> operator"" _a(const wchar_t* s, size_t) {
53 return {s};
54}
55#endif
56} // namespace literals
57
58template <typename It, typename Sentinel>
59auto join(It begin, Sentinel end, wstring_view sep)
60 -> join_view<It, Sentinel, wchar_t> {
61 return {begin, end, sep};
62}
63
64template <typename Range>
65auto join(Range&& range, wstring_view sep)
66 -> join_view<detail::iterator_t<Range>, detail::sentinel_t<Range>,
67 wchar_t> {
68 return join(std::begin(range), std::end(range), sep);
69}
70
71template <typename T>
72auto join(std::initializer_list<T> list, wstring_view sep)
73 -> join_view<const T*, const T*, wchar_t> {
74 return join(std::begin(list), std::end(list), sep);
75}
76
77template <typename Char, FMT_ENABLE_IF(!std::is_same<Char, char>::value)>
78auto vformat(basic_string_view<Char> format_str,
79 basic_format_args<buffer_context<type_identity_t<Char>>> args)
80 -> std::basic_string<Char> {
81 basic_memory_buffer<Char> buffer;
82 detail::vformat_to(buffer, format_str, args);
83 return to_string(buffer);
84}
85
8b75cd77
JG
86template <typename... T>
87auto format(wformat_string<T...> fmt, T&&... args) -> std::wstring {
88 return vformat(fmt::wstring_view(fmt), fmt::make_wformat_args(args...));
89}
90
05aa7e19
JG
91// Pass char_t as a default template parameter instead of using
92// std::basic_string<char_t<S>> to reduce the symbol size.
93template <typename S, typename... Args, typename Char = char_t<S>,
8b75cd77
JG
94 FMT_ENABLE_IF(!std::is_same<Char, char>::value &&
95 !std::is_same<Char, wchar_t>::value)>
05aa7e19 96auto format(const S& format_str, Args&&... args) -> std::basic_string<Char> {
8b75cd77
JG
97 return vformat(detail::to_string_view(format_str),
98 fmt::make_format_args<buffer_context<Char>>(args...));
05aa7e19
JG
99}
100
101template <typename Locale, typename S, typename Char = char_t<S>,
102 FMT_ENABLE_IF(detail::is_locale<Locale>::value&&
103 detail::is_exotic_char<Char>::value)>
104inline auto vformat(
105 const Locale& loc, const S& format_str,
106 basic_format_args<buffer_context<type_identity_t<Char>>> args)
107 -> std::basic_string<Char> {
8b75cd77 108 return detail::vformat(loc, detail::to_string_view(format_str), args);
05aa7e19
JG
109}
110
111template <typename Locale, typename S, typename... Args,
112 typename Char = char_t<S>,
113 FMT_ENABLE_IF(detail::is_locale<Locale>::value&&
114 detail::is_exotic_char<Char>::value)>
115inline auto format(const Locale& loc, const S& format_str, Args&&... args)
116 -> std::basic_string<Char> {
8b75cd77
JG
117 return detail::vformat(loc, detail::to_string_view(format_str),
118 fmt::make_format_args<buffer_context<Char>>(args...));
05aa7e19
JG
119}
120
121template <typename OutputIt, typename S, typename Char = char_t<S>,
122 FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, Char>::value&&
123 detail::is_exotic_char<Char>::value)>
124auto vformat_to(OutputIt out, const S& format_str,
125 basic_format_args<buffer_context<type_identity_t<Char>>> args)
126 -> OutputIt {
127 auto&& buf = detail::get_buffer<Char>(out);
8b75cd77 128 detail::vformat_to(buf, detail::to_string_view(format_str), args);
05aa7e19
JG
129 return detail::get_iterator(buf);
130}
131
132template <typename OutputIt, typename S, typename... Args,
133 typename Char = char_t<S>,
134 FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, Char>::value&&
135 detail::is_exotic_char<Char>::value)>
136inline auto format_to(OutputIt out, const S& fmt, Args&&... args) -> OutputIt {
8b75cd77
JG
137 return vformat_to(out, detail::to_string_view(fmt),
138 fmt::make_format_args<buffer_context<Char>>(args...));
05aa7e19
JG
139}
140
141template <typename Locale, typename S, typename OutputIt, typename... Args,
142 typename Char = char_t<S>,
143 FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, Char>::value&&
144 detail::is_locale<Locale>::value&&
145 detail::is_exotic_char<Char>::value)>
146inline auto vformat_to(
147 OutputIt out, const Locale& loc, const S& format_str,
148 basic_format_args<buffer_context<type_identity_t<Char>>> args) -> OutputIt {
149 auto&& buf = detail::get_buffer<Char>(out);
8b75cd77
JG
150 vformat_to(buf, detail::to_string_view(format_str), args,
151 detail::locale_ref(loc));
05aa7e19
JG
152 return detail::get_iterator(buf);
153}
154
155template <
156 typename OutputIt, typename Locale, typename S, typename... Args,
157 typename Char = char_t<S>,
158 bool enable = detail::is_output_iterator<OutputIt, Char>::value&&
159 detail::is_locale<Locale>::value&& detail::is_exotic_char<Char>::value>
160inline auto format_to(OutputIt out, const Locale& loc, const S& format_str,
161 Args&&... args) ->
162 typename std::enable_if<enable, OutputIt>::type {
8b75cd77
JG
163 return vformat_to(out, loc, to_string_view(format_str),
164 fmt::make_format_args<buffer_context<Char>>(args...));
05aa7e19
JG
165}
166
167template <typename OutputIt, typename Char, typename... Args,
168 FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, Char>::value&&
169 detail::is_exotic_char<Char>::value)>
170inline auto vformat_to_n(
171 OutputIt out, size_t n, basic_string_view<Char> format_str,
172 basic_format_args<buffer_context<type_identity_t<Char>>> args)
173 -> format_to_n_result<OutputIt> {
174 detail::iterator_buffer<OutputIt, Char, detail::fixed_buffer_traits> buf(out,
175 n);
176 detail::vformat_to(buf, format_str, args);
177 return {buf.out(), buf.count()};
178}
179
180template <typename OutputIt, typename S, typename... Args,
181 typename Char = char_t<S>,
182 FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, Char>::value&&
183 detail::is_exotic_char<Char>::value)>
184inline auto format_to_n(OutputIt out, size_t n, const S& fmt,
185 const Args&... args) -> format_to_n_result<OutputIt> {
8b75cd77
JG
186 return vformat_to_n(out, n, detail::to_string_view(fmt),
187 fmt::make_format_args<buffer_context<Char>>(args...));
05aa7e19
JG
188}
189
190template <typename S, typename... Args, typename Char = char_t<S>,
191 FMT_ENABLE_IF(detail::is_exotic_char<Char>::value)>
192inline auto formatted_size(const S& fmt, Args&&... args) -> size_t {
193 detail::counting_buffer<Char> buf;
8b75cd77
JG
194 detail::vformat_to(buf, detail::to_string_view(fmt),
195 fmt::make_format_args<buffer_context<Char>>(args...));
05aa7e19
JG
196 return buf.count();
197}
198
199inline void vprint(std::FILE* f, wstring_view fmt, wformat_args args) {
200 wmemory_buffer buffer;
201 detail::vformat_to(buffer, fmt, args);
202 buffer.push_back(L'\0');
203 if (std::fputws(buffer.data(), f) == -1)
204 FMT_THROW(system_error(errno, FMT_STRING("cannot write to file")));
205}
206
207inline void vprint(wstring_view fmt, wformat_args args) {
208 vprint(stdout, fmt, args);
209}
210
211template <typename... T>
212void print(std::FILE* f, wformat_string<T...> fmt, T&&... args) {
213 return vprint(f, wstring_view(fmt), fmt::make_wformat_args(args...));
214}
215
216template <typename... T> void print(wformat_string<T...> fmt, T&&... args) {
217 return vprint(wstring_view(fmt), fmt::make_wformat_args(args...));
218}
219
220/**
221 Converts *value* to ``std::wstring`` using the default format for type *T*.
222 */
223template <typename T> inline auto to_wstring(const T& value) -> std::wstring {
224 return format(FMT_STRING(L"{}"), value);
225}
226FMT_MODULE_EXPORT_END
227FMT_END_NAMESPACE
228
229#endif // FMT_XCHAR_H_
This page took 0.042733 seconds and 4 git commands to generate.