aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/monlib/encode/legacy_protobuf/legacy_proto_decoder.cpp
blob: 4eba48619ce35094aa79d13732d7ea30bf0a9e53 (plain) (blame)
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
#include "legacy_protobuf.h" 
 
#include <library/cpp/monlib/encode/legacy_protobuf/protos/metric_meta.pb.h>
#include <library/cpp/monlib/metrics/metric_consumer.h>
#include <library/cpp/monlib/metrics/labels.h>
 
#include <util/generic/yexception.h> 
#include <util/generic/maybe.h> 
#include <util/datetime/base.h> 
#include <util/string/split.h>
 
#include <google/protobuf/reflection.h>
 
#include <algorithm> 
 
#ifdef LEGACY_PB_TRACE 
#define TRACE(msg) \ 
    Cerr << msg << Endl 
#else 
#define TRACE(...) ; 
#endif 
 
namespace NMonitoring { 
    namespace { 
        using TMaybeMeta = TMaybe<NMonProto::TMetricMeta>;
 
        TString ReadLabelValue(const NProtoBuf::Message& msg, const NProtoBuf::FieldDescriptor* d, const NProtoBuf::Reflection& r) { 
            using namespace NProtoBuf; 
 
            switch (d->type()) { 
                case FieldDescriptor::TYPE_UINT32: 
                    return ::ToString(r.GetUInt32(msg, d)); 
                case FieldDescriptor::TYPE_UINT64: 
                    return ::ToString(r.GetUInt64(msg, d)); 
                case FieldDescriptor::TYPE_STRING: 
                    return r.GetString(msg, d); 
                case FieldDescriptor::TYPE_ENUM: { 
                    auto val = r.GetEnumValue(msg, d); 
                    auto* valDesc = d->enum_type()->FindValueByNumber(val); 
                    return valDesc->name(); 
                } 
 
                default: 
                    ythrow yexception() << "type " << d->type_name() << " cannot be used as a field value"; 
            } 
 
            return {}; 
        } 
 
        double ReadFieldAsDouble(const NProtoBuf::Message& msg, const NProtoBuf::FieldDescriptor* d, const NProtoBuf::Reflection& r) { 
            using namespace NProtoBuf; 
 
            switch (d->type()) { 
                case FieldDescriptor::TYPE_DOUBLE: 
                    return r.GetDouble(msg, d); 
                case FieldDescriptor::TYPE_BOOL: 
                    return r.GetBool(msg, d) ? 1 : 0; 
                case FieldDescriptor::TYPE_INT32: 
                    return r.GetInt32(msg, d); 
                case FieldDescriptor::TYPE_INT64: 
                    return r.GetInt64(msg, d); 
                case FieldDescriptor::TYPE_UINT32: 
                    return r.GetUInt32(msg, d); 
                case FieldDescriptor::TYPE_UINT64: 
                    return r.GetUInt64(msg, d); 
                case FieldDescriptor::TYPE_SINT32: 
                    return r.GetInt32(msg, d); 
                case FieldDescriptor::TYPE_SINT64: 
                    return r.GetInt64(msg, d); 
                case FieldDescriptor::TYPE_FIXED32: 
                    return r.GetUInt32(msg, d); 
                case FieldDescriptor::TYPE_FIXED64: 
                    return r.GetUInt64(msg, d); 
                case FieldDescriptor::TYPE_SFIXED32: 
                    return r.GetInt32(msg, d); 
                case FieldDescriptor::TYPE_SFIXED64: 
                    return r.GetInt64(msg, d); 
                case FieldDescriptor::TYPE_FLOAT: 
                    return r.GetFloat(msg, d); 
                case FieldDescriptor::TYPE_ENUM: 
                    return r.GetEnumValue(msg, d); 
                default: 
                    ythrow yexception() << "type " << d->type_name() << " cannot be used as a field value"; 
            } 
 
            return std::numeric_limits<double>::quiet_NaN(); 
        } 
 
        double ReadRepeatedAsDouble(const NProtoBuf::Message& msg, const NProtoBuf::FieldDescriptor* d, const NProtoBuf::Reflection& r, size_t i) { 
            using namespace NProtoBuf; 
 
            switch (d->type()) { 
                case FieldDescriptor::TYPE_DOUBLE: 
                    return r.GetRepeatedDouble(msg, d, i); 
                case FieldDescriptor::TYPE_BOOL: 
                    return r.GetRepeatedBool(msg, d, i) ? 1 : 0; 
                case FieldDescriptor::TYPE_INT32: 
                    return r.GetRepeatedInt32(msg, d, i); 
                case FieldDescriptor::TYPE_INT64: 
                    return r.GetRepeatedInt64(msg, d, i); 
                case FieldDescriptor::TYPE_UINT32: 
                    return r.GetRepeatedUInt32(msg, d, i); 
                case FieldDescriptor::TYPE_UINT64: 
                    return r.GetRepeatedUInt64(msg, d, i); 
                case FieldDescriptor::TYPE_SINT32: 
                    return r.GetRepeatedInt32(msg, d, i); 
                case FieldDescriptor::TYPE_SINT64: 
                    return r.GetRepeatedInt64(msg, d, i); 
                case FieldDescriptor::TYPE_FIXED32: 
                    return r.GetRepeatedUInt32(msg, d, i); 
                case FieldDescriptor::TYPE_FIXED64: 
                    return r.GetRepeatedUInt64(msg, d, i); 
                case FieldDescriptor::TYPE_SFIXED32: 
                    return r.GetRepeatedInt32(msg, d, i); 
                case FieldDescriptor::TYPE_SFIXED64: 
                    return r.GetRepeatedInt64(msg, d, i); 
                case FieldDescriptor::TYPE_FLOAT: 
                    return r.GetRepeatedFloat(msg, d, i); 
                case FieldDescriptor::TYPE_ENUM: 
                    return r.GetRepeatedEnumValue(msg, d, i); 
                default: 
                    ythrow yexception() << "type " << d->type_name() << " cannot be used as a field value"; 
            } 
 
            return std::numeric_limits<double>::quiet_NaN(); 
        } 
 
        TString LabelFromField(const NProtoBuf::Message& msg, const TString& name) { 
            const auto* fieldDesc = msg.GetDescriptor()->FindFieldByName(name); 
            const auto* reflection = msg.GetReflection(); 
            Y_ENSURE(fieldDesc && reflection, "Unable to get meta for field " << name); 
 
            auto s = ReadLabelValue(msg, fieldDesc, *reflection); 
            std::replace(std::begin(s), s.vend(), ' ', '_'); 
 
            return s; 
        } 
 
        TMaybeMeta MaybeGetMeta(const NProtoBuf::FieldOptions& opts) { 
            if (opts.HasExtension(NMonProto::Metric)) {
                return opts.GetExtension(NMonProto::Metric);
            } 
 
            return Nothing(); 
        } 
 
        class ILabelGetter: public TThrRefBase { 
        public: 
            enum class EType { 
                Fixed = 1, 
                Lazy = 2, 
            }; 
 
            virtual TLabel Get(const NProtoBuf::Message&) = 0; 
            virtual EType Type() const = 0; 
        }; 
 
        class TFixedLabel: public ILabelGetter { 
        public: 
            explicit TFixedLabel(TLabel&& l) 
                : Label_{std::move(l)} 
            { 
                TRACE("found fixed label " << l); 
            } 
 
            EType Type() const override {
                return EType::Fixed; 
            } 
            TLabel Get(const NProtoBuf::Message&) override {
                return Label_; 
            } 
 
        private: 
            TLabel Label_; 
        }; 
 
        using TFunction = std::function<TLabel(const NProtoBuf::Message&)>; 
 
        class TLazyLabel: public ILabelGetter { 
        public: 
            TLazyLabel(TFunction&& fn) 
                : Fn_{std::move(fn)} 
            { 
                TRACE("found lazy label"); 
            } 
 
            EType Type() const override {
                return EType::Lazy; 
            } 
            TLabel Get(const NProtoBuf::Message& msg) override {
                return Fn_(msg); 
            } 
 
        private: 
            TFunction Fn_; 
        }; 
 
        class TDecoderContext { 
        public: 
            void Init(const NProtoBuf::Message* msg) { 
                Message_ = msg; 
                Y_ENSURE(Message_); 
                Reflection_ = msg->GetReflection(); 
                Y_ENSURE(Reflection_); 
 
                for (auto it = Labels_.begin(); it != Labels_.end(); ++it) { 
                    if ((*it)->Type() == ILabelGetter::EType::Lazy) { 
                        auto l = (*it)->Get(Message()); 
                        *it = ::MakeIntrusive<TFixedLabel>(std::move(l)); 
                    } else { 
                        auto l = (*it)->Get(Message()); 
                    } 
                } 
            } 
 
            void Clear() noexcept { 
                Message_ = nullptr; 
                Reflection_ = nullptr; 
            } 
 
            TDecoderContext CreateChildFromMeta(const NMonProto::TMetricMeta& metricMeta, const TString& name, i64 repeatedIdx = -1) {
                TDecoderContext child{*this}; 
                child.Clear(); 
 
                if (metricMeta.HasCustomPath()) {
                    if (const auto& nodePath = metricMeta.GetCustomPath()) {
                        child.AppendPath(nodePath);
                    }
                } else if (metricMeta.GetPath()) {
                    child.AppendPath(name); 
                } 
 
                if (metricMeta.HasKeys()) {
                    child.ParseKeys(metricMeta.GetKeys(), repeatedIdx);
                } 
 
                return child; 
            } 
 
            TDecoderContext CreateChildFromRepeatedScalar(const NMonProto::TMetricMeta& metricMeta, i64 repeatedIdx = -1) {
                TDecoderContext child{*this}; 
                child.Clear(); 
 
                if (metricMeta.HasKeys()) {
                    child.ParseKeys(metricMeta.GetKeys(), repeatedIdx);
                } 
 
                return child; 
            } 
 
            TDecoderContext CreateChildFromEls(const TString& name, const NMonProto::TExtraLabelMetrics& metrics, size_t idx, TMaybeMeta maybeMeta) {
                TDecoderContext child{*this}; 
                child.Clear(); 
 
                auto usePath = [&maybeMeta] { 
                    return !maybeMeta->HasPath() || maybeMeta->GetPath(); 
                }; 
 
                if (!name.empty() && (!maybeMeta || usePath())) {
                    child.AppendPath(name); 
                } 
 
                child.Labels_.push_back(::MakeIntrusive<TLazyLabel>( 
                    [ labelName = metrics.GetlabelName(), idx, &metrics ](const auto&) {
                        const auto& val = metrics.Getvalues(idx);
                        TString labelVal; 
                        const auto uintLabel = val.GetlabelValueUint(); 
 
                        if (uintLabel) { 
                            labelVal = ::ToString(uintLabel); 
                        } else { 
                            labelVal = val.GetlabelValue(); 
                        } 
 
                        return TLabel{labelName, labelVal}; 
                    })); 
 
                return child; 
            } 
 
            void ParseKeys(TStringBuf keys, i64 repeatedIdx = -1) { 
                auto parts = StringSplitter(keys) 
                                 .Split(' ') 
                                 .SkipEmpty(); 
 
                for (auto part : parts) { 
                    auto str = part.Token(); 
 
                    TStringBuf lhs, rhs; 
 
                    const bool isDynamic = str.TrySplit(':', lhs, rhs); 
                    const bool isIndexing = isDynamic && rhs == TStringBuf("#");
 
                    if (isIndexing) { 
                        TRACE("parsed index labels"); 
 
                        // <label_name>:# means that we should use index of the repeated 
                        // field as label value 
                        Y_ENSURE(repeatedIdx != -1); 
                        Labels_.push_back(::MakeIntrusive<TLazyLabel>([=](const auto&) { 
                            return TLabel{lhs, ::ToString(repeatedIdx)}; 
                        })); 
                    } else if (isDynamic) { 
                        TRACE("parsed dynamic labels"); 
 
                        // <label_name>:<field_name> means that we need to take label value 
                        // later from message's field 
                        Labels_.push_back(::MakeIntrusive<TLazyLabel>([=](const auto& msg) { 
                            return TLabel{lhs, LabelFromField(msg, TString{rhs})}; 
                        })); 
                    } else if (str.TrySplit('=', lhs, rhs)) { 
                        TRACE("parsed static labels"); 
 
                        // <label_name>=<label_value> stands for constant label 
                        Labels_.push_back(::MakeIntrusive<TFixedLabel>(TLabel{lhs, rhs})); 
                    } else { 
                        ythrow yexception() << "Incorrect Keys format"; 
                    } 
                } 
            } 
 
            void AppendPath(TStringBuf fieldName) { 
                Path_ += '/'; 
                Path_ += fieldName; 
            } 
 
            const TString& Path() const { 
                return Path_; 
            } 
 
            TLabels Labels() const { 
                TLabels result; 
                for (auto&& l : Labels_) { 
                    result.Add(l->Get(Message())); 
                } 
 
                return result; 
            } 
 
            const NProtoBuf::Message& Message() const { 
                Y_VERIFY_DEBUG(Message_); 
                return *Message_; 
            } 
 
            const NProtoBuf::Reflection& Reflection() const { 
                return *Reflection_; 
            } 
 
        private: 
            const NProtoBuf::Message* Message_{nullptr}; 
            const NProtoBuf::Reflection* Reflection_{nullptr}; 
 
            TString Path_; 
            TVector<TIntrusivePtr<ILabelGetter>> Labels_; 
        }; 
 
        class TDecoder { 
        public: 
            TDecoder(IMetricConsumer* consumer, const NProtoBuf::Message& message, TInstant timestamp)
                : Consumer_{consumer} 
                , Message_{message} 
                , Timestamp_{timestamp} 
            { 
            } 
 
            void Decode() const { 
                Consumer_->OnStreamBegin(); 
                DecodeToStream(); 
                Consumer_->OnStreamEnd(); 
            } 
 
            void DecodeToStream() const { 
                DecodeImpl(Message_, {}); 
            } 
 
        private: 
            static const NMonProto::TExtraLabelMetrics& ExtractExtraMetrics(TDecoderContext& ctx, const NProtoBuf::FieldDescriptor& f) {
                const auto& parent = ctx.Message(); 
                const auto& reflection = ctx.Reflection(); 
                auto& subMessage = reflection.GetMessage(parent, &f); 
 
                return dynamic_cast<const NMonProto::TExtraLabelMetrics&>(subMessage);
            } 
 
            void DecodeImpl(const NProtoBuf::Message& msg, TDecoderContext ctx) const { 
                std::vector<const NProtoBuf::FieldDescriptor*> fields; 
 
                ctx.Init(&msg); 
 
                ctx.Reflection().ListFields(msg, &fields); 
 
                for (const auto* f : fields) { 
                    Y_ENSURE(f); 
 
                    const auto& opts = f->options(); 
                    const auto isMessage = f->type() == NProtoBuf::FieldDescriptor::TYPE_MESSAGE; 
                    const auto isExtraLabelMetrics = isMessage && f->message_type()->full_name() == "NMonProto.TExtraLabelMetrics";
                    const auto maybeMeta = MaybeGetMeta(opts); 
 
                    if (!(maybeMeta || isExtraLabelMetrics)) {
                        continue; 
                    } 
 
                    if (isExtraLabelMetrics) {
                        const auto& extra = ExtractExtraMetrics(ctx, *f);
                        RecurseExtraLabelMetrics(ctx, extra, f->name(), maybeMeta);
                    } else if (isMessage) { 
                        RecurseMessage(ctx, *maybeMeta, *f); 
                    } else if (f->is_repeated()) { 
                        RecurseRepeatedScalar(ctx, *maybeMeta, *f); 
                    } else if (maybeMeta->HasType()) {
                        const auto val = ReadFieldAsDouble(msg, f, ctx.Reflection()); 
                        const bool isRate = maybeMeta->GetType() == NMonProto::EMetricType::RATE;
                        WriteMetric(val, ctx, f->name(), isRate);
                    } 
                } 
            } 
 
            void RecurseRepeatedScalar(TDecoderContext ctx, const NMonProto::TMetricMeta& meta, const NProtoBuf::FieldDescriptor& f) const {
                auto&& msg = ctx.Message(); 
                auto&& reflection = ctx.Reflection(); 
                const bool isRate = meta.GetType() == NMonProto::EMetricType::RATE;
 
                // this is a repeated scalar field, which makes metric only if it's indexing
                for (auto i = 0; i < reflection.FieldSize(msg, &f); ++i) { 
                    auto subCtx = ctx.CreateChildFromRepeatedScalar(meta, i); 
                    subCtx.Init(&msg); 
                    auto val = ReadRepeatedAsDouble(msg, &f, reflection, i); 
                    WriteMetric(val, subCtx, f.name(), isRate);
                } 
            } 
 
            void RecurseExtraLabelMetrics(TDecoderContext ctx, const NMonProto::TExtraLabelMetrics& msg, const TString& name, const TMaybeMeta& meta) const {
                auto i = 0; 
                for (const auto& val : msg.Getvalues()) { 
                    auto subCtx = ctx.CreateChildFromEls(name, msg, i++, meta); 
                    subCtx.Init(&val); 
 
                    const bool isRate = val.Hastype()
                             ? val.Gettype() == NMonProto::EMetricType::RATE
                             : meta->GetType() == NMonProto::EMetricType::RATE;
 
                    double metricVal{0};
                    if (isRate) {
                        metricVal = val.GetlongValue();
                    } else { 
                        metricVal = val.GetdoubleValue();
                    } 
 
                    WriteMetric(metricVal, subCtx, "", isRate);
 
                    for (const auto& child : val.Getchildren()) { 
                        RecurseExtraLabelMetrics(subCtx, child, "", meta);
                    } 
                } 
            } 
 
            void RecurseMessage(TDecoderContext ctx, const NMonProto::TMetricMeta& metricMeta, const NProtoBuf::FieldDescriptor& f) const {
                const auto& msg = ctx.Message(); 
                const auto& reflection = ctx.Reflection(); 
 
                if (f.is_repeated()) { 
                    TRACE("recurse into repeated message " << f.name()); 
                    for (auto i = 0; i < reflection.FieldSize(msg, &f); ++i) { 
                        auto& subMessage = reflection.GetRepeatedMessage(msg, &f, i); 
                        DecodeImpl(subMessage, ctx.CreateChildFromMeta(metricMeta, f.name(), i));
                    } 
                } else { 
                    TRACE("recurse into message " << f.name()); 
                    auto& subMessage = reflection.GetMessage(msg, &f); 
                    DecodeImpl(subMessage, ctx.CreateChildFromMeta(metricMeta, f.name()));
                } 
            } 
 
            inline void WriteValue(ui64 value) const { 
                Consumer_->OnUint64(Timestamp_, value); 
            } 
 
            inline void WriteValue(double value) const { 
                Consumer_->OnDouble(Timestamp_, value); 
            } 
 
            void WriteMetric(double value, const TDecoderContext& ctx, const TString& name, bool isRate) const {
                if (isRate) {
                    Consumer_->OnMetricBegin(EMetricType::RATE);
                    WriteValue(static_cast<ui64>(value)); 
                } else { 
                    Consumer_->OnMetricBegin(EMetricType::GAUGE);
                    WriteValue(static_cast<double>(value)); 
                } 
 
                Consumer_->OnLabelsBegin(); 
 
                for (const auto& label : ctx.Labels()) { 
                    Consumer_->OnLabel(label.Name(), label.Value()); 
                } 
 
                const auto fullPath = name.empty()
                                          ? ctx.Path() 
                                          : ctx.Path() + '/' + name; 
 
                if (fullPath) { 
                    Consumer_->OnLabel("path", fullPath); 
                } 
 
                Consumer_->OnLabelsEnd(); 
                Consumer_->OnMetricEnd();
            } 
 
        private: 
            IMetricConsumer* Consumer_{nullptr};
            const NProtoBuf::Message& Message_; 
            TInstant Timestamp_; 
        }; 
 
    } 
 
    void DecodeLegacyProto(const NProtoBuf::Message& data, IMetricConsumer* consumer, TInstant ts) {
        Y_ENSURE(consumer); 
        TDecoder(consumer, data, ts).Decode(); 
    } 
 
    void DecodeLegacyProtoToStream(const NProtoBuf::Message& data, IMetricConsumer* consumer, TInstant ts) {
        Y_ENSURE(consumer); 
        TDecoder(consumer, data, ts).DecodeToStream(); 
    } 
}