blob: 5187a2ac6b075990c5f89872ea4231029941db97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#ifndef FORMAT_STRING_INL_H_
#error "Direct inclusion of this file is not allowed, include format_string.h"
// For the sake of sane code completion.
#include "format_string.h"
#endif
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
template <class... TArgs>
template <class T>
requires std::constructible_from<std::string_view, T>
consteval TBasicStaticFormat<TArgs...>::TBasicStaticFormat(const T& fmt)
: Format_(fmt)
{
CheckFormattability();
#if !defined(NDEBUG) && !defined(YT_DISABLE_FORMAT_STATIC_ANALYSIS)
NDetail::TFormatAnalyser::ValidateFormat<std::remove_cvref_t<TArgs>...>(Format_);
#endif
}
template <class... TArgs>
TStringBuf TBasicStaticFormat<TArgs...>::Get() const noexcept
{
return {Format_};
}
template <class... TArgs>
consteval void TBasicStaticFormat<TArgs...>::CheckFormattability()
{
#if !defined(NDEBUG) && !defined(YT_DISABLE_FORMAT_STATIC_ANALYSIS)
using TTuple = std::tuple<std::remove_cvref_t<TArgs>...>;
[] <size_t... Idx> (std::index_sequence<Idx...>) {
([] {
if constexpr (!CFormattable<std::tuple_element_t<Idx, TTuple>>) {
CrashCompilerClassIsNotFormattable<std::tuple_element_t<Idx, TTuple>>();
}
} (), ...);
} (std::index_sequence_for<TArgs...>());
#endif
}
inline TRuntimeFormat::TRuntimeFormat(TStringBuf fmt)
: Format_(fmt)
{ }
inline TStringBuf TRuntimeFormat::Get() const noexcept
{
return Format_;
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|