10#include <userver/storages/postgres/exceptions.hpp>
11#include <userver/storages/postgres/io/buffer_io.hpp>
12#include <userver/storages/postgres/io/buffer_io_base.hpp>
13#include <userver/storages/postgres/io/type_mapping.hpp>
15#include <userver/utils/flags.hpp>
17USERVER_NAMESPACE_BEGIN
23template <
typename BitContainer>
26template <
typename Enum>
29template <std::size_t N>
32template <std::size_t N>
38template <
typename BitContainer,
typename Enable =
void>
41template <
typename BitContainer>
43 static bool TestBit(
const BitContainer& bits, std::uint8_t i) {
return bits & (1ull << i); }
44 static void SetBit(BitContainer& bits, std::uint8_t i) { bits |= (1ull << i); }
45 static constexpr std::size_t BitCount()
noexcept {
return sizeof(BitContainer) * 8; }
46 static void Reset(BitContainer& bits)
noexcept { bits = 0; }
49template <std::size_t N>
51 static_assert(N > 0,
"Length for bit container must be at least 1");
52 using BitContainer = std::array<
bool, N>;
53 static bool TestBit(
const BitContainer& bits, std::uint8_t i) {
return bits[i]; }
54 static void SetBit(BitContainer& bits, std::uint8_t i) { bits[i] =
true; }
55 static constexpr std::size_t BitCount()
noexcept {
return N; }
56 static void Reset(BitContainer& bits)
noexcept { bits.fill(
false); }
59template <std::size_t N>
61 static_assert(N > 0,
"Length for bit container must be at least 1");
62 using BitContainer = std::bitset<N>;
63 static bool TestBit(
const BitContainer& bits, std::uint8_t i) {
return bits.test(i); }
64 static void SetBit(BitContainer& bits, std::uint8_t i) { bits.set(i); }
65 static constexpr std::size_t BitCount()
noexcept {
return N; }
66 static void Reset(BitContainer& bits)
noexcept { bits.reset(); }
71enum class BitStringType { kBit, kBitVarying };
75enum class BitContainerInterface { kCommon, kFlags };
77template <
typename BitContainerRef, BitContainerInterface, BitStringType>
78struct BitStringRefWrapper {
79 static_assert(std::is_reference<BitContainerRef>::value,
"The container must be passed by reference");
81 using BitContainer = std::remove_cvref_t<BitContainerRef>;
84 "This C++ type cannot be used with PostgreSQL 'bit' and 'bit "
93template <
typename BitContainer, BitStringType>
95 static_assert(!std::is_reference<BitContainer>::value,
"The container must not be passed by reference");
99 "This C++ type cannot be used with PostgreSQL 'bit' and 'bit "
106template <BitStringType kBitStringType,
typename BitContainer>
107constexpr detail::BitStringRefWrapper<
const BitContainer&, detail::BitContainerInterface::kCommon, kBitStringType>
108BitString(
const BitContainer& bits) {
112template <BitStringType kBitStringType,
typename BitContainer>
113constexpr detail::BitStringRefWrapper<BitContainer&, detail::BitContainerInterface::kCommon, kBitStringType> BitString(
119template <BitStringType kBitStringType,
typename Enum>
120constexpr detail::BitStringRefWrapper<
121 const USERVER_NAMESPACE::
utils::Flags<Enum>&,
122 detail::BitContainerInterface::kFlags,
124BitString(
const USERVER_NAMESPACE::
utils::Flags<Enum>& bits) {
128template <BitStringType kBitStringType,
typename Enum>
129constexpr detail::BitStringRefWrapper<
130 USERVER_NAMESPACE::
utils::Flags<Enum>&,
131 detail::BitContainerInterface::kFlags,
133BitString(USERVER_NAMESPACE::
utils::Flags<Enum>& bits) {
137template <
typename BitContainer>
138constexpr auto Varbit(BitContainer&& bits) {
139 return BitString<BitStringType::kBitVarying>(std::forward<BitContainer>(bits));
142template <
typename BitContainer>
143constexpr auto Bit(BitContainer&& bits) {
144 return BitString<BitStringType::kBit>(std::forward<BitContainer>(bits));
149template <
typename BitContainerRef, BitStringType kBitStringType>
150struct BufferParser<
postgres::detail::BitStringRefWrapper<
152 postgres::detail::BitContainerInterface::kCommon,
154 : detail::BufferParserBase<
postgres::detail::BitStringRefWrapper<
156 postgres::detail::BitContainerInterface::kCommon,
158 using BitContainer = std::remove_cvref_t<BitContainerRef>;
159 using BaseType = detail::BufferParserBase<
postgres::detail::BitStringRefWrapper<
161 postgres::detail::BitContainerInterface::kCommon,
163 using BaseType::BaseType;
166 Integer bit_count{0};
172 static_assert(
sizeof(bit_count) <
sizeof(std::size_t) || std::is_signed_v<
decltype(bit_count)>);
173 if ((
static_cast<std::size_t>(bit_count) + 7) / 8 > buffer.length) {
177 auto& bits =
this->value.bits;
179 target_bit_count < bit_count)
186 for (Integer i = 0; i < bit_count; ++i) {
187 const auto* byte_cptr = buffer.buffer + (i / 8);
188 if ((*byte_cptr) & (0x80 >> (i % 8))) {
195template <
typename BitContainerRef, BitStringType kBitStringType>
196struct BufferParser<
postgres::detail::BitStringRefWrapper<
198 postgres::detail::BitContainerInterface::kFlags,
200 : detail::BufferParserBase<
postgres::detail::BitStringRefWrapper<
202 postgres::detail::BitContainerInterface::kFlags,
204 using BitContainer = std::remove_cvref_t<BitContainerRef>;
205 using BaseType = detail::BufferParserBase<
postgres::detail::BitStringRefWrapper<
207 postgres::detail::BitContainerInterface::kFlags,
209 using BaseType::BaseType;
212 typename BitContainer::ValueType bits{0};
213 ReadBuffer(buffer, BitString<kBitStringType>(bits));
214 this->value.bits.SetValue(bits);
218template <
typename BitContainer, BitStringType kBitStringType>
222 using BaseType::BaseType;
224 void operator()(
const FieldBuffer& buffer) { ReadBuffer(buffer, BitString<kBitStringType>(
this->value.bits)); }
227template <std::size_t N>
228struct BufferParser<std::bitset<N>> : detail::BufferParserBase<std::bitset<N>> {
229 using BaseType = detail::BufferParserBase<std::bitset<N>>;
230 using BaseType::BaseType;
232 void operator()(
const FieldBuffer& buffer) { ReadBuffer(buffer, Varbit(
this->value)); }
235template <
typename BitContainerRef, BitStringType kBitStringType>
236struct BufferFormatter<
postgres::detail::BitStringRefWrapper<
238 postgres::detail::BitContainerInterface::kCommon,
240 : detail::BufferFormatterBase<
postgres::detail::BitStringRefWrapper<
242 postgres::detail::BitContainerInterface::kCommon,
244 using BitContainer = std::remove_cvref_t<BitContainerRef>;
245 using BaseType = detail::BufferFormatterBase<
postgres::detail::BitStringRefWrapper<
247 postgres::detail::BitContainerInterface::kCommon,
249 using BaseType::BaseType;
251 template <
typename Buffer>
252 void operator()(
const UserTypes& types, Buffer& buffer)
const {
255 const auto& bits =
this->value.bits;
258 std::array<std::uint8_t, (bit_count + 7) / 8> data{};
259 for (std::size_t i = 0; i < bit_count; ++i) {
266 buffer.reserve(buffer.size() +
sizeof(Integer) + data.size());
267 WriteBuffer(types, buffer,
static_cast<Integer>(bit_count));
268 buffer.insert(buffer.end(), data.begin(), data.end());
272template <
typename BitContainerRef, BitStringType kBitStringType>
273struct BufferFormatter<
postgres::detail::BitStringRefWrapper<
275 postgres::detail::BitContainerInterface::kFlags,
277 : detail::BufferFormatterBase<
postgres::detail::BitStringRefWrapper<
279 postgres::detail::BitContainerInterface::kFlags,
281 using BitContainer = std::remove_cvref_t<BitContainerRef>;
282 using BaseType = detail::BufferFormatterBase<
postgres::detail::BitStringRefWrapper<
284 postgres::detail::BitContainerInterface::kFlags,
286 using BaseType::BaseType;
288 template <
typename Buffer>
289 void operator()(
const UserTypes& types, Buffer& buffer)
const {
290 WriteBuffer(types, buffer, BitString<kBitStringType>(
this->value.bits.GetValue()));
294template <
typename BitContainer, BitStringType kBitStringType>
298 using BaseType::BaseType;
300 template <
typename Buffer>
301 void operator()(
const UserTypes& types, Buffer& buffer)
const {
302 WriteBuffer(types, buffer, BitString<kBitStringType>(
this->value.bits));
308template <std::size_t N>
310 using BitContainer = std::bitset<N>;
311 using BaseType = detail::BufferFormatterBase<std::bitset<N>>;
312 using BaseType::BaseType;
314 template <
typename Buffer>
315 void operator()(
const UserTypes& types, Buffer& buffer)
const {
316 WriteBuffer(types, buffer, Varbit(
this->value));
320template <
typename BitContainer,
postgres::detail::BitContainerInterface ContainerInterface>
322 postgres::detail::BitStringRefWrapper<BitContainer, ContainerInterface,
postgres::BitStringType::kBitVarying>>
324template <
typename BitContainer>
328template <
typename BitContainer,
postgres::detail::BitContainerInterface ContainerInterface>
330 postgres::detail::BitStringRefWrapper<BitContainer, ContainerInterface,
postgres::BitStringType::kBit>>
332template <
typename BitContainer>
336template <std::size_t N>