userver: userver/formats/json/value_builder.hpp Source File
Loading...
Searching...
No Matches
value_builder.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/formats/json/value_builder.hpp
4/// @brief @copybrief formats::json::ValueBuilder
5
6#include <chrono>
7#include <string_view>
8#include <vector>
9
10#include <userver/formats/common/meta.hpp>
11#include <userver/formats/common/transfer_tag.hpp>
12#include <userver/formats/json/impl/mutable_value_wrapper.hpp>
13#include <userver/formats/json/value.hpp>
14#include <userver/utils/strong_typedef.hpp>
15
16USERVER_NAMESPACE_BEGIN
17
18namespace formats::json {
19
20// clang-format off
21
22/// @ingroup userver_universal userver_containers userver_formats
23///
24/// @brief Builder for JSON.
25///
26/// Class provides methods for building JSON. For read only access to the
27/// existing JSON values use formats::json::Value.
28///
29/// ## Example usage:
30///
31/// @snippet formats/json/value_builder_test.cpp Sample formats::json::ValueBuilder usage
32///
33/// ## Customization example:
34///
35/// @snippet formats/json/value_builder_test.cpp Sample Customization formats::json::ValueBuilder usage
36///
37/// @see @ref scripts/docs/en/userver/formats.md
38
39// clang-format on
40
41class ValueBuilder final {
42public:
43 struct IterTraits {
44 using ValueType = formats::json::ValueBuilder;
45 using Reference = formats::json::ValueBuilder&;
46 using Pointer = formats::json::ValueBuilder*;
47 using ContainerType = impl::MutableValueWrapper;
48 };
49
50 using iterator = Iterator<IterTraits>;
51
52 /// Constructs a ValueBuilder that holds kNull
53 ValueBuilder() = default;
54
55 /// Constructs a valueBuilder that holds default value for provided `type`.
56 ValueBuilder(formats::common::Type type);
57
58 /// @brief Transfers the `ValueBuilder` object
59 /// @see formats::common::TransferTag for the transfer semantics
60 ValueBuilder(common::TransferTag, ValueBuilder&&) noexcept;
61
62 ValueBuilder(const ValueBuilder& other);
63 // NOLINTNEXTLINE(performance-noexcept-move-constructor)
64 ValueBuilder(ValueBuilder&& other);
65 ValueBuilder& operator=(const ValueBuilder& other);
66 // NOLINTNEXTLINE(performance-noexcept-move-constructor)
67 ValueBuilder& operator=(ValueBuilder&& other);
68
69 ValueBuilder(const formats::json::Value& other);
70 ValueBuilder(formats::json::Value&& other);
71
72 /// @name Concrete type constructors
73 /// @{
74 ValueBuilder(std::nullptr_t) : ValueBuilder() {}
75 ValueBuilder(bool t);
76 ValueBuilder(const char* str);
77 ValueBuilder(char* str);
78 ValueBuilder(const std::string& str);
79 ValueBuilder(std::string_view str);
80 ValueBuilder(int t);
81 ValueBuilder(unsigned int t);
82 ValueBuilder(uint64_t t);
83 ValueBuilder(int64_t t);
84 ValueBuilder(float t);
85 ValueBuilder(double t);
86 /// @}
87
88 /// Universal constructor using Serialize
89 template <typename T>
90 ValueBuilder(const T& t) : ValueBuilder(DoSerialize(t)) {}
91
92 /// @brief Access member by key for modification.
93 /// @throw `TypeMismatchException` if not object or null value.
94 ValueBuilder operator[](std::string key);
95 /// @brief Access array member by index for modification.
96 /// @throw `TypeMismatchException` if not an array value.
97 /// @throw `OutOfBoundsException` if index is greater than size.
98 ValueBuilder operator[](std::size_t index);
99 /// @brief Access member by key for modification.
100 /// @throw `TypeMismatchException` if not object or null value.
101 template <
102 typename Tag,
103 utils::StrongTypedefOps Ops,
104 typename Enable = std::enable_if_t<utils::IsStrongTypedefLoggable(Ops)>>
105 ValueBuilder operator[](utils::StrongTypedef<Tag, std::string, Ops> key);
106
107 /// @brief Emplaces new member w/o a check whether the key already exists.
108 /// @warning May create invalid JSON with duplicate key.
109 /// @throw `TypeMismatchException` if not object or null value.
110 void EmplaceNocheck(std::string_view key, ValueBuilder value);
111
112 /// @brief Remove key from object. If key is missing nothing happens.
113 /// @throw `TypeMismatchException` if value is not an object.
114 void Remove(std::string_view key);
115
116 iterator begin();
117 iterator end();
118
119 /// @brief Returns whether the array or object is empty.
120 /// @throw `TypeMismatchException` if not an array or an object.
121 bool IsEmpty() const;
122
123 /// @brief Returns true if *this holds a Null (Type::kNull).
124 bool IsNull() const noexcept;
125
126 /// @brief Returns true if *this is convertible to bool.
127 bool IsBool() const noexcept;
128
129 /// @brief Returns true if *this is convertible to int.
130 bool IsInt() const noexcept;
131
132 /// @brief Returns true if *this is convertible to int64_t.
133 bool IsInt64() const noexcept;
134
135 /// @brief Returns true if *this is convertible to uint64_t.
136 bool IsUInt64() const noexcept;
137
138 /// @brief Returns true if *this is convertible to double.
139 bool IsDouble() const noexcept;
140
141 /// @brief Returns true if *this is convertible to std::string.
142 bool IsString() const noexcept;
143
144 /// @brief Returns true if *this is an array (Type::kArray).
145 bool IsArray() const noexcept;
146
147 /// @brief Returns true if *this holds a map (Type::kObject).
148 bool IsObject() const noexcept;
149
150 /// @brief Returns array size or object members count.
151 /// @throw `TypeMismatchException` if not an array or an object.
152 std::size_t GetSize() const;
153
154 /// @brief Returns true if value holds a `key`.
155 /// @throw `TypeMismatchException` if `*this` is not a map or null.
156 bool HasMember(std::string_view key) const;
157
158 /// @brief Returns full path to this value.
159 std::string GetPath() const;
160
161 /// @brief Resize the array value or convert null value
162 /// into an array of requested size.
163 /// @throw `TypeMismatchException` if not an array or null.
164 void Resize(std::size_t size);
165
166 /// @brief Add element into the last position of array.
167 /// @throw `TypeMismatchException` if not an array or null.
168 void PushBack(ValueBuilder&& bld);
169
170 /// @brief Take out the resulting `Value` object.
171 /// After calling this method the object is in unspecified
172 /// (but valid - possibly null) state.
173 /// @throw `JsonException` if called not from the root builder.
174 formats::json::Value ExtractValue();
175
176private:
177 class EmplaceEnabler {};
178
179public:
180 /// @cond
181 ValueBuilder(EmplaceEnabler, impl::MutableValueWrapper) noexcept;
182 /// @endcond
183
184private:
185 enum class CheckMemberExists { kYes, kNo };
186
187 explicit ValueBuilder(impl::MutableValueWrapper) noexcept;
188
189 static void Copy(impl::Value& to, const ValueBuilder& from);
190 static void Move(impl::Value& to, ValueBuilder&& from);
191
192 impl::Value& AddMember(std::string_view key, CheckMemberExists);
193
194 template <typename T>
195 static Value DoSerialize(const T& t);
196
197 impl::MutableValueWrapper value_;
198
199 friend class Iterator<IterTraits, common::IteratorDirection::kForward>;
200 friend class Iterator<IterTraits, common::IteratorDirection::kReverse>;
201};
202
203template <typename T>
204Value ValueBuilder::DoSerialize(const T& t) {
205 static_assert(
206 formats::common::impl::kHasSerialize<Value, T>,
207 "There is no `Serialize(const T&, formats::serialize::To<json::Value>)` "
208 "in namespace of `T` or `formats::serialize`. "
209 ""
210 "Probably you forgot to include the "
211 "<userver/formats/serialize/common_containers.hpp> header "
212 "or one of the <formats/json/serialize_*.hpp> headers or you "
213 "have not provided a `Serialize` function overload."
214 );
215
216 return Serialize(t, formats::serialize::To<Value>());
217}
218
219template <typename T>
220std::enable_if_t<std::is_integral<T>::value && sizeof(T) <= sizeof(int64_t), Value>
221Serialize(T value, formats::serialize::To<Value>) {
222 using Type = std::conditional_t<std::is_signed<T>::value, int64_t, uint64_t>;
223 return json::ValueBuilder(static_cast<Type>(value)).ExtractValue();
224}
225
226json::Value Serialize(std::chrono::system_clock::time_point tp, formats::serialize::To<Value>);
227
228template <typename Tag, utils::StrongTypedefOps Ops, typename Enable>
229ValueBuilder ValueBuilder::operator[](utils::StrongTypedef<Tag, std::string, Ops> key) {
230 return (*this)[std::move(key.GetUnderlying())];
231}
232
233/// Optimized maps of StrongTypedefs serialization for JSON
234template <typename T>
237 json::ValueBuilder builder(formats::common::Type::kObject);
238 for (const auto& [key, value] : value) {
239 builder.EmplaceNocheck(key.GetUnderlying(), value);
240 }
241 return builder.ExtractValue();
242}
243
244/// Optimized maps serialization for JSON
245template <typename T>
248 json::ValueBuilder builder(formats::common::Type::kObject);
249 for (const auto& [key, value] : value) {
250 builder.EmplaceNocheck(key, value);
251 }
252 return builder.ExtractValue();
253}
254
255} // namespace formats::json
256
257USERVER_NAMESPACE_END