libpqxx  7.4.1
util.hxx
1 /* Various utility definitions for libpqxx.
2  *
3  * DO NOT INCLUDE THIS FILE DIRECTLY; include pqxx/util instead.
4  *
5  * Copyright (c) 2000-2021, Jeroen T. Vermeulen.
6  *
7  * See COPYING for copyright license. If you did not receive a file called
8  * COPYING with this source code, please notify the distributor of this
9  * mistake, or contact the author.
10  */
11 #ifndef PQXX_H_UTIL
12 #define PQXX_H_UTIL
13 
14 #include "pqxx/compiler-public.hxx"
15 #include "pqxx/internal/compiler-internal-pre.hxx"
16 
17 #include <cctype>
18 #include <cstdio>
19 #include <functional>
20 #include <iterator>
21 #include <limits>
22 #include <memory>
23 #include <stdexcept>
24 #include <string>
25 #include <string_view>
26 #include <type_traits>
27 #include <typeinfo>
28 #include <vector>
29 
30 #if __has_include(<version>)
31 # include <version>
32 #endif
33 
34 #include "pqxx/except.hxx"
35 #include "pqxx/internal/encodings.hxx"
36 #include "pqxx/types.hxx"
37 #include "pqxx/version.hxx"
38 
39 
41 namespace pqxx
42 {}
43 
44 #include <pqxx/internal/libpq-forward.hxx>
45 
46 
48 namespace pqxx::internal
49 {
51 
54 [[nodiscard]] inline std::string cat2(std::string_view x, std::string_view y)
55 {
56  std::string buf;
57  auto const xs{std::size(x)}, ys{std::size(y)};
58  buf.resize(xs + ys);
59  x.copy(buf.data(), xs);
60  y.copy(buf.data() + xs, ys);
61  return buf;
62 }
63 } // namespace pqxx::internal
64 
65 
66 namespace pqxx
67 {
68 using namespace std::literals;
69 
71 template<typename... T> inline void ignore_unused(T &&...) {}
72 
73 
75 
78 template<typename TO, typename FROM>
79 inline TO check_cast(FROM value, std::string_view description)
80 {
81  static_assert(std::is_arithmetic_v<FROM>);
82  static_assert(std::is_arithmetic_v<TO>);
83  static_assert(std::is_integral_v<FROM> == std::is_integral_v<TO>);
84 
85  // The rest of this code won't quite work for bool, but bool is trivially
86  // convertible to other arithmetic types as far as I can see.
87  if constexpr (std::is_same_v<FROM, bool>)
88  return static_cast<TO>(value);
89 
90  // Depending on our "if constexpr" conditions, this parameter may not be
91  // needed. Some compilers will warn.
92  ignore_unused(description);
93 
94  using from_limits = std::numeric_limits<decltype(value)>;
95  using to_limits = std::numeric_limits<TO>;
96  if constexpr (std::is_signed_v<FROM>)
97  {
98  if constexpr (std::is_signed_v<TO>)
99  {
100  if (value < to_limits::lowest())
101  throw range_error{internal::cat2("Cast underflow: "sv, description)};
102  }
103  else
104  {
105  // FROM is signed, but TO is not. Treat this as a special case, because
106  // there may not be a good broader type in which the compiler can even
107  // perform our check.
108  if (value < 0)
109  {
111  "Casting negative value to unsigned type: "sv, description)};
112  }
113  }
114  }
115  else
116  {
117  // No need to check: the value is unsigned so can't fall below the range
118  // of the TO type.
119  }
120 
121  if constexpr (std::is_integral_v<FROM>)
122  {
123  using unsigned_from = std::make_unsigned_t<FROM>;
124  using unsigned_to = std::make_unsigned_t<TO>;
125  constexpr auto from_max{static_cast<unsigned_from>((from_limits::max)())};
126  constexpr auto to_max{static_cast<unsigned_to>((to_limits::max)())};
127  if constexpr (from_max > to_max)
128  {
129  if (static_cast<unsigned_from>(value) > to_max)
130  throw range_error{internal::cat2("Cast overflow: "sv, description)};
131  }
132  }
133  else if constexpr ((from_limits::max)() > (to_limits::max)())
134  {
135  if (value > (to_limits::max)())
136  throw range_error{internal::cat2("Cast overflow: ", description)};
137  }
138 
139  return static_cast<TO>(value);
140 }
141 
142 
144 
146 template<typename TYPE>
147 using strip_t = std::remove_cv_t<std::remove_reference_t<TYPE>>;
148 
149 
171 inline PQXX_PRIVATE void check_version()
172 {
173  // There is no particular reason to do this here in @c connection, except
174  // to ensure that every meaningful libpqxx client will execute it. The call
175  // must be in the execution path somewhere or the compiler won't try to link
176  // it. We can't use it to initialise a global or class-static variable,
177  // because a smart compiler might resolve it at compile time.
178  //
179  // On the other hand, we don't want to make a useless function call too
180  // often for performance reasons. A local static variable is initialised
181  // only on the definition's first execution. Compilers will be well
182  // optimised for this behaviour, so there's a minimal one-time cost.
183  static auto const version_ok{internal::PQXX_VERSION_CHECK()};
184  ignore_unused(version_ok);
185 }
186 
187 
189 
191 struct PQXX_LIBEXPORT thread_safety_model
192 {
194  bool safe_libpq = false;
195 
197 
203  bool safe_kerberos = false;
204 
206  std::string description;
207 };
208 
209 
211 [[nodiscard]] PQXX_LIBEXPORT thread_safety_model describe_thread_safety();
212 
213 
215 constexpr oid oid_none{0};
216 } // namespace pqxx
217 
218 
220 
229 namespace pqxx::internal
230 {
231 using namespace std::literals;
232 
233 
235 
237 [[nodiscard]] std::string
238 describe_object(std::string_view class_name, std::string_view name);
239 
240 
242 
254  void const *old_guest, std::string_view old_class, std::string_view old_name,
255  void const *new_guest, std::string_view new_class,
256  std::string_view new_name);
257 
258 
260 
264  void const *old_guest, std::string_view old_class, std::string_view old_name,
265  void const *new_guest, std::string_view new_class,
266  std::string_view new_name);
267 
268 
270 
273 constexpr std::size_t size_esc_bin(std::size_t binary_bytes) noexcept
274 {
275  return 2 + (2 * binary_bytes) + 1;
276 }
277 
278 
280 
282 constexpr std::size_t size_unesc_bin(std::size_t escaped_bytes) noexcept
283 {
284  return (escaped_bytes - 2) / 2;
285 }
286 
287 
289 
294 void PQXX_LIBEXPORT
295 esc_bin(std::string_view binary_data, char buffer[]) noexcept;
296 
297 
299 std::string PQXX_LIBEXPORT esc_bin(std::string_view binary_data);
300 
301 
303 void PQXX_LIBEXPORT
304 unesc_bin(std::string_view escaped_data, std::byte buffer[]);
305 
306 
308 std::string PQXX_LIBEXPORT unesc_bin(std::string_view escaped_data);
309 
310 
312 template<typename T> auto ssize(T const &c)
313 {
314 #if defined(__cpp_lib_ssize) && __cplusplus >= __cpp_lib_ssize
315  return std::ssize(c);
316 #else
317  using signed_t = std::make_signed_t<decltype(std::size(c))>;
318  return static_cast<signed_t>(std::size(c));
319 #endif // __cpp_lib_ssize
320 }
321 } // namespace pqxx::internal
322 
323 #include "pqxx/internal/compiler-internal-post.hxx"
324 #endif
constexpr oid oid_none
The "null" oid.
Definition: util.hxx:215
std::remove_cv_t< std::remove_reference_t< TYPE > > strip_t
Remove any constness, volatile, and reference-ness from a type.
Definition: util.hxx:147
The home of all libpqxx classes, functions, templates, etc.
Definition: array.hxx:25
void check_unique_register(void const *old_guest, std::string_view old_class, std::string_view old_name, void const *new_guest, std::string_view new_class, std::string_view new_name)
Check validity of registering a new "guest" in a "host.".
Definition: util.cxx:58
void check_version()
Definition: util.hxx:171
Something is out of range, similar to std::out_of_range.
Definition: except.hxx:192
void check_unique_unregister(void const *old_guest, std::string_view old_class, std::string_view old_name, void const *new_guest, std::string_view new_class, std::string_view new_name)
Like check_unique_register, but for un-registering a guest.
Definition: util.cxx:75
thread_safety_model describe_thread_safety()
Describe thread safety available in this build.
Definition: util.cxx:30
void esc_bin(std::string_view binary_data, char buffer[]) noexcept
Hex-escape binary data into a buffer.
Definition: util.cxx:122
Descriptor of library&#39;s thread-safety model.
Definition: util.hxx:191
std::string description
A human-readable description of any thread-safety issues.
Definition: util.hxx:206
auto ssize(T const &c)
Transitional: std::ssize(), or custom implementation if not available.
Definition: util.hxx:312
TO check_cast(FROM value, std::string_view description)
Cast a numeric value to another type, or throw if it underflows/overflows.
Definition: util.hxx:79
std::string cat2(std::string_view x, std::string_view y)
Efficiently concatenate two strings.
Definition: util.hxx:54
std::string describe_object(std::string_view class_name, std::string_view name)
Describe an object for humans, based on class name and optional name.
Definition: util.cxx:48
constexpr std::size_t size_esc_bin(std::size_t binary_bytes) noexcept
Compute buffer size needed to escape binary data for use as a BYTEA.
Definition: util.hxx:273
int PQXX_VERSION_CHECK() noexcept
Library version check stub.
Definition: version.cxx:18
void unesc_bin(std::string_view escaped_data, std::byte buffer[])
Reconstitute binary data from its escaped version.
Definition: util.cxx:152
void ignore_unused(T &&...)
Suppress compiler warning about an unused item.
Definition: util.hxx:71
constexpr std::size_t size_unesc_bin(std::size_t escaped_bytes) noexcept
Compute binary size from the size of its escaped version.
Definition: util.hxx:282
Internal items for libpqxx&#39; own use. Do not use these yourself.
Definition: composite.hxx:73