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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
|
#ifndef PROTOBUF_HELPERS_INL_H_
#error "Direct inclusion of this file is not allowed, include protobuf_helpers.h"
// For the sake of sane code completion.
#include "protobuf_helpers.h"
#endif
#include "error.h"
#include <library/cpp/yt/assert/assert.h>
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
#define DEFINE_TRIVIAL_PROTO_CONVERSIONS(type) \
inline void ToProto(type* serialized, type original) \
{ \
*serialized = original; \
} \
\
inline void FromProto(type* original, type serialized) \
{ \
*original = serialized; \
}
DEFINE_TRIVIAL_PROTO_CONVERSIONS(i8)
DEFINE_TRIVIAL_PROTO_CONVERSIONS(ui8)
DEFINE_TRIVIAL_PROTO_CONVERSIONS(i16)
DEFINE_TRIVIAL_PROTO_CONVERSIONS(ui16)
DEFINE_TRIVIAL_PROTO_CONVERSIONS(i32)
DEFINE_TRIVIAL_PROTO_CONVERSIONS(ui32)
DEFINE_TRIVIAL_PROTO_CONVERSIONS(i64)
DEFINE_TRIVIAL_PROTO_CONVERSIONS(ui64)
DEFINE_TRIVIAL_PROTO_CONVERSIONS(bool)
#undef DEFINE_TRIVIAL_PROTO_CONVERSIONS
////////////////////////////////////////////////////////////////////////////////
// These conversions work in case if the patched protobuf that uses
// TString is used.
inline void ToProto(TString* serialized, TString original)
{
*serialized = std::move(original);
}
inline void ToProto(TString* serialized, std::string original)
{
*serialized = std::move(original);
}
inline void FromProto(TString* original, TString serialized)
{
*original = std::move(serialized);
}
// NB: ToProto works in O(1) time if TSTRING_IS_STD_STRING is used and
// may work in O(n) time otherwise due to CoW.
inline void FromProto(std::string* original, TString serialized)
{
*original = std::move(serialized.MutRef());
}
// These conversions work in case if the original protobuf that uses
// std::string is used.
// NB: ToProto works in O(1) time if TSTRING_IS_STD_STRING is used and
// may work in O(n) time otherwise due to CoW.
inline void ToProto(std::string* serialized, TString original)
{
*serialized = std::move(original.MutRef());
}
inline void ToProto(std::string* serialized, std::string original)
{
*serialized = std::move(original);
}
inline void FromProto(TString* original, std::string serialized)
{
*original = std::move(serialized);
}
inline void FromProto(std::string* original, std::string serialized)
{
*original = std::move(serialized);
}
////////////////////////////////////////////////////////////////////////////////
// These conversions work in case if the patched protobuf that uses
// TString is used.
inline void ToProto(TString* serialized, TStringBuf original)
{
*serialized = original;
}
inline void FromProto(TStringBuf* original, const TString& serialized)
{
*original = serialized;
}
// These conversions work in case if the original protobuf that uses
// std::string is used.
inline void ToProto(std::string* serialized, TStringBuf original)
{
serialized->resize(original.size());
memcpy(serialized->data(), original.data(), original.size());
}
inline void FromProto(TStringBuf* original, const std::string& serialized)
{
*original = serialized;
}
////////////////////////////////////////////////////////////////////////////////
inline void ToProto(::google::protobuf::int64* serialized, TDuration original)
{
*serialized = original.MicroSeconds();
}
inline void FromProto(TDuration* original, ::google::protobuf::int64 serialized)
{
*original = TDuration::MicroSeconds(serialized);
}
////////////////////////////////////////////////////////////////////////////////
inline void ToProto(::google::protobuf::int64* serialized, TInstant original)
{
*serialized = original.MicroSeconds();
}
inline void FromProto(TInstant* original, ::google::protobuf::int64 serialized)
{
*original = TInstant::MicroSeconds(serialized);
}
////////////////////////////////////////////////////////////////////////////////
inline void ToProto(::google::protobuf::uint64* serialized, TInstant original)
{
*serialized = original.MicroSeconds();
}
inline void FromProto(TInstant* original, ::google::protobuf::uint64 serialized)
{
*original = TInstant::MicroSeconds(serialized);
}
////////////////////////////////////////////////////////////////////////////////
template <class T>
typename std::enable_if_t<std::is_convertible_v<T*, ::google::protobuf::MessageLite*>> ToProto(
T* serialized,
const T& original)
{
*serialized = original;
}
template <class T>
typename std::enable_if_t<std::is_convertible_v<T*, ::google::protobuf::MessageLite*>> FromProto(
T* original,
const T& serialized)
{
*original = serialized;
}
template <class T>
requires TEnumTraits<T>::IsEnum && (!TEnumTraits<T>::IsBitEnum)
void ToProto(int* serialized, T original)
{
*serialized = static_cast<int>(original);
}
template <class T>
requires TEnumTraits<T>::IsEnum && (!TEnumTraits<T>::IsBitEnum)
void FromProto(T* original, int serialized)
{
*original = static_cast<T>(serialized);
}
template <class T>
requires TEnumTraits<T>::IsBitEnum
void ToProto(ui64* serialized, T original)
{
*serialized = static_cast<ui64>(original);
}
template <class T>
requires TEnumTraits<T>::IsBitEnum
void FromProto(T* original, ui64 serialized)
{
*original = static_cast<T>(serialized);
}
////////////////////////////////////////////////////////////////////////////////
template <class T>
T GetProtoExtension(const NProto::TExtensionSet& extensions)
{
// Intentionally complex to take benefit of RVO.
T result;
i32 tag = TProtoExtensionTag<T>::Value;
bool found = false;
for (const auto& extension : extensions.extensions()) {
if (extension.tag() == tag) {
const auto& data = extension.data();
DeserializeProto(&result, TRef::FromString(data));
found = true;
break;
}
}
YT_VERIFY(found);
return result;
}
template <class T>
bool HasProtoExtension(const NProto::TExtensionSet& extensions)
{
i32 tag = TProtoExtensionTag<T>::Value;
for (const auto& extension : extensions.extensions()) {
if (extension.tag() == tag) {
return true;
}
}
return false;
}
template <class T>
std::optional<T> FindProtoExtension(const NProto::TExtensionSet& extensions)
{
std::optional<T> result;
i32 tag = TProtoExtensionTag<T>::Value;
for (const auto& extension : extensions.extensions()) {
if (extension.tag() == tag) {
const auto& data = extension.data();
result.emplace();
DeserializeProto(&*result, TRef::FromString(data));
break;
}
}
return result;
}
template <class T>
void SetProtoExtension(NProto::TExtensionSet* extensions, const T& value)
{
i32 tag = TProtoExtensionTag<T>::Value;
NYT::NProto::TExtension* extension = nullptr;
for (auto& currentExtension : *extensions->mutable_extensions()) {
if (currentExtension.tag() == tag) {
extension = ¤tExtension;
break;
}
}
if (!extension) {
extension = extensions->add_extensions();
}
ui64 longSize = value.ByteSizeLong();
YT_VERIFY(longSize <= std::numeric_limits<ui32>::max());
ui32 size = static_cast<ui32>(longSize);
TString str;
str.resize(size);
YT_VERIFY(value.SerializeToArray(str.begin(), size));
extension->set_data(str);
extension->set_tag(tag);
}
template <class TProto, class TValue>
std::enable_if_t<!std::is_same_v<TProto, TValue>, void>
SetProtoExtension(NProto::TExtensionSet* extensions, const TValue& value)
{
TProto proto;
ToProto(&proto, value);
SetProtoExtension(extensions, proto);
}
template <class T>
bool RemoveProtoExtension(NProto::TExtensionSet* extensions)
{
i32 tag = TProtoExtensionTag<T>::Value;
for (int index = 0; index < extensions->extensions_size(); ++index) {
const auto& currentExtension = extensions->extensions(index);
if (currentExtension.tag() == tag) {
// Make it the last one.
extensions->mutable_extensions()->SwapElements(index, extensions->extensions_size() - 1);
// And then drop.
extensions->mutable_extensions()->RemoveLast();
return true;
}
}
return false;
}
////////////////////////////////////////////////////////////////////////////////
namespace NDetail {
template <class TSerializedArray, class TOriginalArray>
void ToProtoArrayImpl(
TSerializedArray* serializedArray,
const TOriginalArray& originalArray)
{
serializedArray->Clear();
serializedArray->Reserve(originalArray.size());
for (const auto& item : originalArray) {
ToProto(serializedArray->Add(), item);
}
}
template <class TOriginalArray, class TSerializedArray>
void FromProtoArrayImpl(
TOriginalArray* originalArray,
const TSerializedArray& serializedArray)
{
originalArray->clear();
originalArray->resize(serializedArray.size());
for (int i = 0; i < serializedArray.size(); ++i) {
FromProto(&(*originalArray)[i], serializedArray.Get(i));
}
}
template <class TProtoPair, class TValue>
typename std::enable_if_t<!std::is_trivial_v<TValue>> SetPairValueImpl(TProtoPair& pair, const TValue& value)
{
ToProto(pair->mutable_value(), value);
}
template <class TProtoPair, class TValue>
typename std::enable_if_t<std::is_trivial_v<TValue>> SetPairValueImpl(TProtoPair& pair, const TValue& value)
{
pair->set_value(value);
}
template <class TSerializedArray, class T, class E, E Min, E Max>
void ToProtoArrayImpl(
TSerializedArray* serializedArray,
const TEnumIndexedVector<E, T, Min, Max>& originalArray)
{
serializedArray->Clear();
for (auto key : TEnumTraits<E>::GetDomainValues()) {
if (originalArray.IsDomainValue(key)) {
const auto& value = originalArray[key];
auto* pair = serializedArray->Add();
pair->set_key(static_cast<i32>(key));
SetPairValueImpl(pair, value);
}
}
}
template <class T, class E, E Min, E Max, class TSerializedArray>
void FromProtoArrayImpl(
TEnumIndexedVector<E, T, Min, Max>* originalArray,
const TSerializedArray& serializedArray)
{
for (auto key : TEnumTraits<E>::GetDomainValues()) {
if (originalArray->IsDomainValue(key)) {
(*originalArray)[key] = T{};
}
}
for (const auto& pair : serializedArray) {
const auto& key = static_cast<E>(pair.key());
if (originalArray->IsDomainValue(key)) {
FromProto(&(*originalArray)[key], pair.value());
}
}
}
// Does not check for duplicates.
template <class TOriginal, class TSerializedArray>
void FromProtoArrayImpl(
THashSet<TOriginal>* originalArray,
const TSerializedArray& serializedArray)
{
originalArray->clear();
originalArray->reserve(serializedArray.size());
for (int i = 0; i < serializedArray.size(); ++i) {
originalArray->emplace(
FromProto<TOriginal>(serializedArray.Get(i)));
}
}
template <class TOriginalKey, class TOriginalValue, class TSerializedArray>
void FromProtoArrayImpl(
THashMap<TOriginalKey, TOriginalValue>* originalArray,
const TSerializedArray& serializedArray)
{
originalArray->clear();
originalArray->reserve(serializedArray.size());
for (int i = 0; i < serializedArray.size(); ++i) {
originalArray->emplace(
FromProto<std::pair<TOriginalKey, TOriginalValue>>(serializedArray.Get(i)));
}
}
template <class TOriginal, class TSerializedArray>
void CheckedFromProtoArrayImpl(
THashSet<TOriginal>* originalArray,
const TSerializedArray& serializedArray)
{
FromProtoArrayImpl(originalArray, serializedArray);
if (std::ssize(*originalArray) != serializedArray.size()) {
THROW_ERROR_EXCEPTION("Duplicate elements in a serialized hash set")
<< TErrorAttribute("unique_element_count", originalArray->size())
<< TErrorAttribute("total_element_count", serializedArray.size());
}
}
template <class TOriginal, class TSerializedArray>
void FromProtoArrayImpl(
TMutableRange<TOriginal>* originalArray,
const TSerializedArray& serializedArray)
{
std::fill(originalArray->begin(), originalArray->end(), TOriginal());
// NB: Only takes items with known indexes. Be careful when protocol is changed.
for (int i = 0; i < std::ssize(serializedArray) && i < std::ssize(*originalArray); ++i) {
FromProto(&(*originalArray)[i], serializedArray.Get(i));
}
}
template <class TOriginal, class TSerializedArray, size_t N>
void FromProtoArrayImpl(
std::array<TOriginal, N>* originalArray,
const TSerializedArray& serializedArray)
{
for (int i = 0; i < std::ssize(serializedArray) && i < std::ssize(*originalArray); ++i) {
FromProto(&(*originalArray)[i], serializedArray.Get(i));
}
}
} // namespace NDetail
template <class TSerialized, class TOriginalArray>
void ToProto(
::google::protobuf::RepeatedPtrField<TSerialized>* serializedArray,
const TOriginalArray& originalArray)
{
NYT::NDetail::ToProtoArrayImpl(serializedArray, originalArray);
}
template <class TSerialized, class TOriginalArray>
void ToProto(
::google::protobuf::RepeatedField<TSerialized>* serializedArray,
const TOriginalArray& originalArray)
{
NYT::NDetail::ToProtoArrayImpl(serializedArray, originalArray);
}
template <class TOriginalArray, class TSerialized>
void FromProto(
TOriginalArray* originalArray,
const ::google::protobuf::RepeatedPtrField<TSerialized>& serializedArray)
{
NYT::NDetail::FromProtoArrayImpl(originalArray, serializedArray);
}
template <class TOriginalArray, class TSerialized>
void FromProto(
TOriginalArray* originalArray,
const ::google::protobuf::RepeatedField<TSerialized>& serializedArray)
{
NYT::NDetail::FromProtoArrayImpl(originalArray, serializedArray);
}
// Throws if duplicate elements are found.
template <class TOriginal, class TSerialized>
void CheckedHashSetFromProto(
THashSet<TOriginal>* originalHashSet,
const ::google::protobuf::RepeatedPtrField<TSerialized>& serializedHashSet)
{
NYT::NDetail::CheckedFromProtoArrayImpl(originalHashSet, serializedHashSet);
}
template <class TOriginal, class TSerialized>
void CheckedHashSetFromProto(
THashSet<TOriginal>* originalHashSet,
const ::google::protobuf::RepeatedField<TSerialized>& serializedHashSet)
{
NYT::NDetail::CheckedFromProtoArrayImpl(originalHashSet, serializedHashSet);
}
////////////////////////////////////////////////////////////////////////////////
template <class TSerialized, class TOriginal, class... TArgs>
TSerialized ToProto(const TOriginal& original, TArgs&&... args)
{
TSerialized serialized;
ToProto(&serialized, original, std::forward<TArgs>(args)...);
return serialized;
}
template <class TOriginal, class TSerialized, class... TArgs>
TOriginal FromProto(const TSerialized& serialized, TArgs&&... args)
{
TOriginal original;
FromProto(&original, serialized, std::forward<TArgs>(args)...);
return original;
}
////////////////////////////////////////////////////////////////////////////////
template <class TProto>
TRefCountedProto<TProto>::TRefCountedProto(const TRefCountedProto<TProto>& other)
{
TProto::CopyFrom(other);
RegisterExtraSpace();
}
template <class TProto>
TRefCountedProto<TProto>::TRefCountedProto(TRefCountedProto<TProto>&& other)
{
TProto::Swap(&other);
RegisterExtraSpace();
}
template <class TProto>
TRefCountedProto<TProto>::TRefCountedProto(const TProto& other)
{
TProto::CopyFrom(other);
RegisterExtraSpace();
}
template <class TProto>
TRefCountedProto<TProto>::TRefCountedProto(TProto&& other)
{
TProto::Swap(&other);
RegisterExtraSpace();
}
template <class TProto>
TRefCountedProto<TProto>::~TRefCountedProto()
{
UnregisterExtraSpace();
}
template <class TProto>
void TRefCountedProto<TProto>::RegisterExtraSpace()
{
auto spaceUsed = TProto::SpaceUsed();
YT_ASSERT(static_cast<size_t>(spaceUsed) >= sizeof(TProto));
YT_ASSERT(ExtraSpace_ == 0);
ExtraSpace_ = TProto::SpaceUsed() - sizeof (TProto);
auto cookie = GetRefCountedTypeCookie<TRefCountedProto<TProto>>();
TRefCountedTrackerFacade::AllocateSpace(cookie, ExtraSpace_);
}
template <class TProto>
void TRefCountedProto<TProto>::UnregisterExtraSpace()
{
if (ExtraSpace_ != 0) {
auto cookie = GetRefCountedTypeCookie<TRefCountedProto<TProto>>();
TRefCountedTrackerFacade::FreeSpace(cookie, ExtraSpace_);
}
}
template <class TProto>
i64 TRefCountedProto<TProto>::GetSize() const
{
return sizeof(*this) + ExtraSpace_;
}
////////////////////////////////////////////////////////////////////////////////
// RepeatedField formatter
template <class T>
struct TValueFormatter<::google::protobuf::RepeatedField<T>>
{
static void Do(TStringBuilderBase* builder, const ::google::protobuf::RepeatedField<T>& collection, TStringBuf /*format*/)
{
FormatRange(builder, collection, TDefaultFormatter());
}
};
// RepeatedPtrField formatter
template <class T>
struct TValueFormatter<::google::protobuf::RepeatedPtrField<T>>
{
static void Do(TStringBuilderBase* builder, const ::google::protobuf::RepeatedPtrField<T>& collection, TStringBuf /*format*/)
{
FormatRange(builder, collection, TDefaultFormatter());
}
};
////////////////////////////////////////////////////////////////////////////////
template <class TSerialized, class T, class TTag>
void FromProto(TStrongTypedef<T, TTag>* original, const TSerialized& serialized)
{
FromProto(&original->Underlying(), serialized);
}
template <class TSerialized, class T, class TTag>
void ToProto(TSerialized* serialized, const TStrongTypedef<T, TTag>& original)
{
ToProto(serialized, original.Underlying());
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|