qxLib
format_string.inl
Go to the documentation of this file.
1 /**
2 
3  @file format_string.inl
4  @author Khrapov
5  @date 16.06.2023
6  @copyright © Nick Khrapov, 2023. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 template<class char_t, class... args_t>
14 template<class T>
15  requires std::convertible_to<const T&, qx::basic_string_view<char_t>>
17  : std::basic_format_string<char_t, args_t...>(parse_format_string(value))
18 {
19 }
20 
21 template<class char_t, class... args_t>
22 template<class T>
24 {
25  int nBracesBalance = 0;
26  size_t nNumBracesPairs = 0;
27  basic_string_view<char_t> svFormatString = value;
28 
29  for (size_t i = 0; i < svFormatString.size(); ++i)
30  {
31  if (svFormatString[i] == QX_CHAR_PREFIX(char_t, '{'))
32  {
33  if (i + 1 < svFormatString.size() && svFormatString[i + 1] == QX_CHAR_PREFIX(char_t, '{'))
34  {
35  ++i;
36  continue;
37  }
38 
39  ++nBracesBalance;
40  }
41  else if (svFormatString[i] == QX_CHAR_PREFIX(char_t, '}'))
42  {
43  if (i + 1 < svFormatString.size() && svFormatString[i + 1] == QX_CHAR_PREFIX(char_t, '}'))
44  {
45  ++i;
46  continue;
47  }
48 
49  ++nNumBracesPairs;
50  --nBracesBalance;
51 
52  if (nBracesBalance < 0)
53  {
54  throw std::format_error(
55  "Format string error: num of closing braces > num of opening braces at some point of the format "
56  "string");
57  }
58  }
59  }
60 
61  if (nBracesBalance > 0)
62  {
63  throw std::format_error(
64  "Format string error: num of opening braces > num of closing braces at the end of the format string");
65  }
66 
67  if (sizeof...(args_t) != nNumBracesPairs)
68  throw std::format_error("Format string error: num of args != num of braces pairs");
69 
70  return value;
71 }
72 
73 } // namespace qx
#define QX_CHAR_PREFIX(value_t, ch)
Chose witch of prefixes add to char : L or none.
Definition: string_utils.h:257
requires std::convertible_to< const T &, qx::basic_string_view< char_t > > consteval basic_format_string_strong_checks(const T &value)
basic_format_string object constructor
static consteval const T & parse_format_string(const T &value)
Check braces balance and args num.