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
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
|
#include <yql/essentials/public/udf/udf_helpers.h>
#include <library/cpp/histogram/adaptive/adaptive_histogram.h>
#include <library/cpp/histogram/adaptive/block_histogram.h>
#include <util/string/printf.h>
#include <util/stream/format.h>
#include <cmath>
using namespace NKikimr;
using namespace NUdf;
using namespace NKiwiAggr;
namespace {
#define REGISTER_METHOD_UDF(name) \
T##name,
#define HISTOGRAM_ONE_DOUBLE_ARG_METHODS_MAP(XX) \
XX(GetSumAboveBound) \
XX(GetSumBelowBound) \
XX(CalcUpperBound) \
XX(CalcLowerBound) \
XX(CalcUpperBoundSafe) \
XX(CalcLowerBoundSafe)
#define HISTOGRAM_TWO_DOUBLE_ARG_METHODS_MAP(XX) \
XX(GetSumInRange)
#define HISTOGRAM_ALGORITHMS_MAP(XX) \
XX(AdaptiveDistance) \
XX(AdaptiveWeight) \
XX(AdaptiveWard) \
XX(BlockWeight) \
XX(BlockWard)
#define HISTOGRAM_FUNCTION_MAP(XX, arg) \
XX(Create, arg) \
XX(AddValue, arg) \
XX(GetResult, arg) \
XX(Serialize, arg) \
XX(Deserialize, arg) \
XX(Merge, arg)
#define DECLARE_HISTOGRAM_RESOURCE_NAME(name) extern const char name##HistogramResourceName[] = "Histogram." #name;
HISTOGRAM_ALGORITHMS_MAP(DECLARE_HISTOGRAM_RESOURCE_NAME)
DECLARE_HISTOGRAM_RESOURCE_NAME(Linear)
DECLARE_HISTOGRAM_RESOURCE_NAME(Logarithmic)
class TLinearHistogram: public TAdaptiveWardHistogram {
public:
TLinearHistogram(double step, double begin, double end)
: TAdaptiveWardHistogram(1ULL << 24)
, Step(step)
, Begin(begin)
, End(end)
{
}
void Add(double value, double weight) override {
if (value < Begin) {
value = Begin;
} else if (value > End) {
value = End;
} else {
value = std::floor(value / Step + 0.5) * Step;
}
TAdaptiveWardHistogram::Add(value, weight);
}
void Add(const THistoRec&) override {
Y_ABORT("Not implemented");
}
protected:
double Step;
double Begin;
double End;
};
class TLogarithmicHistogram: public TLinearHistogram {
public:
TLogarithmicHistogram(double step, double begin, double end)
: TLinearHistogram(step, begin, end)
{
}
void Add(double value, double weight) override {
double base = std::log(value) / std::log(Step);
double prev = std::pow(Step, std::floor(base));
double next = std::pow(Step, std::ceil(base));
if (std::abs(value - next) > std::abs(value - prev)) {
value = prev;
} else {
value = next;
}
if (value < Begin) {
value = Begin;
} else if (value > End) {
value = End;
}
if (!std::isnan(value)) {
TAdaptiveWardHistogram::Add(value, weight);
}
}
void Add(const THistoRec&) override {
Y_ABORT("Not implemented");
}
};
template <typename THistogramType, const char* ResourceName>
class THistogram_Create: public TBoxedValue {
public:
THistogram_Create(TSourcePosition pos)
: Pos_(pos)
{}
typedef TBoxedResource<THistogramType, ResourceName> THistogramResource;
static const TStringRef& Name() {
static auto name = TString(ResourceName).substr(10) + "Histogram_Create";
static auto nameRef = TStringRef(name);
return nameRef;
}
private:
TUnboxedValue Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const override {
try {
Y_UNUSED(valueBuilder);
THolder<THistogramResource> histogram(new THistogramResource(args[2].Get<ui32>()));
histogram->Get()->Add(args[0].Get<double>(), args[1].Get<double>());
return TUnboxedValuePod(histogram.Release());
} catch (const std::exception& e) {
UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).data());
}
}
public:
static bool DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
builder.SimpleSignature<TResource<ResourceName>(double, double, ui32)>();
if (!typesOnly) {
builder.Implementation(new THistogram_Create<THistogramType, ResourceName>(builder.GetSourcePosition()));
}
return true;
} else {
return false;
}
}
private:
TSourcePosition Pos_;
};
template <typename THistogramType, const char* ResourceName>
class THistogram_AddValue: public TBoxedValue {
public:
THistogram_AddValue(TSourcePosition pos)
: Pos_(pos)
{}
typedef TBoxedResource<THistogramType, ResourceName> THistogramResource;
static const TStringRef& Name() {
static auto name = TString(ResourceName).substr(10) + "Histogram_AddValue";
static auto nameRef = TStringRef(name);
return nameRef;
}
private:
TUnboxedValue Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const override {
try {
Y_UNUSED(valueBuilder);
THistogramResource* resource = static_cast<THistogramResource*>(args[0].AsBoxed().Get());
resource->Get()->Add(args[1].Get<double>(), args[2].Get<double>());
return TUnboxedValuePod(args[0]);
} catch (const std::exception& e) {
UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).data());
}
}
public:
static bool DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
builder.SimpleSignature<TResource<ResourceName>(TResource<ResourceName>, double, double)>();
if (!typesOnly) {
builder.Implementation(new THistogram_AddValue<THistogramType, ResourceName>(builder.GetSourcePosition()));
}
return true;
} else {
return false;
}
}
private:
TSourcePosition Pos_;
};
template <typename THistogramType, const char* ResourceName>
class THistogram_Serialize: public TBoxedValue {
public:
THistogram_Serialize(TSourcePosition pos)
: Pos_(pos)
{}
typedef TBoxedResource<THistogramType, ResourceName> THistogramResource;
static const TStringRef& Name() {
static auto name = TString(ResourceName).substr(10) + "Histogram_Serialize";
static auto nameRef = TStringRef(name);
return nameRef;
}
private:
TUnboxedValue Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const override {
try {
THistogram proto;
TString result;
static_cast<THistogramResource*>(args[0].AsBoxed().Get())->Get()->ToProto(proto);
Y_PROTOBUF_SUPPRESS_NODISCARD proto.SerializeToString(&result);
return valueBuilder->NewString(result);
} catch (const std::exception& e) {
UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).data());
}
}
public:
static bool DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
builder.SimpleSignature<char*(TResource<ResourceName>)>();
if (!typesOnly) {
builder.Implementation(new THistogram_Serialize<THistogramType, ResourceName>(builder.GetSourcePosition()));
}
return true;
} else {
return false;
}
}
private:
TSourcePosition Pos_;
};
template <typename THistogramType, const char* ResourceName>
class THistogram_Deserialize: public TBoxedValue {
public:
THistogram_Deserialize(TSourcePosition pos)
: Pos_(pos)
{}
typedef TBoxedResource<THistogramType, ResourceName> THistogramResource;
static const TStringRef& Name() {
static auto name = TString(ResourceName).substr(10) + "Histogram_Deserialize";
static auto nameRef = TStringRef(name);
return nameRef;
}
private:
TUnboxedValue Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const override {
try {
Y_UNUSED(valueBuilder);
THistogram proto;
Y_PROTOBUF_SUPPRESS_NODISCARD proto.ParseFromString(TString(args[0].AsStringRef()));
THolder<THistogramResource> histogram(new THistogramResource(args[1].Get<ui32>()));
histogram->Get()->FromProto(proto);
return TUnboxedValuePod(histogram.Release());
} catch (const std::exception& e) {
UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).data());
}
}
public:
static bool DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
builder.SimpleSignature<TResource<ResourceName>(char*, ui32)>();
if (!typesOnly) {
builder.Implementation(new THistogram_Deserialize<THistogramType, ResourceName>(builder.GetSourcePosition()));
}
return true;
} else {
return false;
}
}
private:
TSourcePosition Pos_;
};
template <typename THistogramType, const char* ResourceName>
class THistogram_Merge: public TBoxedValue {
public:
THistogram_Merge(TSourcePosition pos)
: Pos_(pos)
{}
typedef TBoxedResource<THistogramType, ResourceName> THistogramResource;
static const TStringRef& Name() {
static auto name = TString(ResourceName).substr(10) + "Histogram_Merge";
static auto nameRef = TStringRef(name);
return nameRef;
}
private:
TUnboxedValue Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const override {
try {
Y_UNUSED(valueBuilder);
THistogram proto;
static_cast<THistogramResource*>(args[0].AsBoxed().Get())->Get()->ToProto(proto);
static_cast<THistogramResource*>(args[1].AsBoxed().Get())->Get()->Merge(proto, 1.0);
return TUnboxedValuePod(args[1]);
} catch (const std::exception& e) {
UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).data());
}
}
public:
static bool DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
builder.SimpleSignature<TResource<ResourceName>(TResource<ResourceName>, TResource<ResourceName>)>();
if (!typesOnly) {
builder.Implementation(new THistogram_Merge<THistogramType, ResourceName>(builder.GetSourcePosition()));
}
return true;
} else {
return false;
}
}
private:
TSourcePosition Pos_;
};
struct THistogramIndexes {
static constexpr ui32 BinFieldsCount = 2U;
static constexpr ui32 ResultFieldsCount = 5U;
THistogramIndexes(IFunctionTypeInfoBuilder& builder) {
const auto binStructType = builder.Struct(BinFieldsCount)->AddField<double>("Position", &Position).AddField<double>("Frequency", &Frequency).Build();
const auto binsList = builder.List()->Item(binStructType).Build();
ResultStructType = builder.Struct(ResultFieldsCount)->AddField<char*>("Kind", &Kind).AddField<double>("Min", &Min).AddField<double>("Max", &Max).AddField<double>("WeightsSum", &WeightsSum).AddField("Bins", binsList, &Bins).Build();
}
ui32 Kind;
ui32 Min;
ui32 Max;
ui32 WeightsSum;
ui32 Bins;
ui32 Position;
ui32 Frequency;
TType* ResultStructType;
};
template <typename THistogramType, const char* ResourceName>
class THistogram_GetResult: public TBoxedValue {
public:
typedef TBoxedResource<THistogramType, ResourceName> THistogramResource;
THistogram_GetResult(const THistogramIndexes& histogramIndexes, TSourcePosition pos)
: HistogramIndexes(histogramIndexes)
, Pos_(pos)
{
}
static const TStringRef& Name() {
static auto name = TString(ResourceName).substr(10) + "Histogram_GetResult";
static auto nameRef = TStringRef(name);
return nameRef;
}
private:
TUnboxedValue Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const override {
THistogram proto;
auto histogram = static_cast<THistogramResource*>(args[0].AsBoxed().Get())->Get();
histogram->ToProto(proto);
auto size = proto.FreqSize();
TUnboxedValue* fields = nullptr;
auto result = valueBuilder->NewArray(HistogramIndexes.ResultFieldsCount, fields);
fields[HistogramIndexes.Kind] = valueBuilder->NewString(TStringBuf(ResourceName).Skip(10));
if (size) {
TUnboxedValue* items = nullptr;
fields[HistogramIndexes.Bins] = valueBuilder->NewArray(size, items);
fields[HistogramIndexes.Min] = TUnboxedValuePod(static_cast<double>(histogram->GetMinValue()));
fields[HistogramIndexes.Max] = TUnboxedValuePod(static_cast<double>(histogram->GetMaxValue()));
fields[HistogramIndexes.WeightsSum] = TUnboxedValuePod(static_cast<double>(histogram->GetSum()));
for (ui64 i = 0; i < size; ++i) {
TUnboxedValue* binFields = nullptr;
*items++ = valueBuilder->NewArray(HistogramIndexes.BinFieldsCount, binFields);
binFields[HistogramIndexes.Frequency] = TUnboxedValuePod(static_cast<double>(proto.GetFreq(i)));
binFields[HistogramIndexes.Position] = TUnboxedValuePod(static_cast<double>(proto.GetPosition(i)));
}
} else {
fields[HistogramIndexes.Bins] = valueBuilder->NewEmptyList();
fields[HistogramIndexes.Min] = TUnboxedValuePod(0.0);
fields[HistogramIndexes.Max] = TUnboxedValuePod(0.0);
fields[HistogramIndexes.WeightsSum] = TUnboxedValuePod(0.0);
}
return result;
}
public:
static bool DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
auto resource = builder.Resource(TStringRef(ResourceName, std::strlen(ResourceName)));
THistogramIndexes histogramIndexes(builder);
builder.Args()->Add(resource).Done().Returns(histogramIndexes.ResultStructType);
if (!typesOnly) {
builder.Implementation(new THistogram_GetResult<THistogramType, ResourceName>(histogramIndexes, builder.GetSourcePosition()));
}
return true;
} else {
return false;
}
}
private:
const THistogramIndexes HistogramIndexes;
TSourcePosition Pos_;
};
template <>
TUnboxedValue THistogram_Create<TLinearHistogram, LinearHistogramResourceName>::Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const {
using THistogramResource = THistogram_Create<TLinearHistogram, LinearHistogramResourceName>::THistogramResource;
try {
Y_UNUSED(valueBuilder);
THolder<THistogramResource> histogram(new THistogramResource(
args[1].Get<double>(), args[2].Get<double>(), args[3].Get<double>()));
histogram->Get()->Add(args[0].Get<double>(), 1.0);
return TUnboxedValuePod(histogram.Release());
} catch (const std::exception& e) {
UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).data());
}
}
template <>
bool THistogram_Create<TLinearHistogram, LinearHistogramResourceName>::DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
builder.SimpleSignature<TResource<LinearHistogramResourceName>(double, double, double, double)>();
if (!typesOnly) {
builder.Implementation(new THistogram_Create<TLinearHistogram, LinearHistogramResourceName>(builder.GetSourcePosition()));
}
return true;
} else {
return false;
}
}
template <>
TUnboxedValue THistogram_Deserialize<TLinearHistogram, LinearHistogramResourceName>::Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const {
using THistogramResource = THistogram_Deserialize<TLinearHistogram, LinearHistogramResourceName>::THistogramResource;
try {
Y_UNUSED(valueBuilder);
THistogram proto;
Y_PROTOBUF_SUPPRESS_NODISCARD proto.ParseFromString(TString(args[0].AsStringRef()));
THolder<THistogramResource> histogram(
new THistogramResource(args[1].Get<double>(), args[2].Get<double>(), args[3].Get<double>()));
histogram->Get()->FromProto(proto);
return TUnboxedValuePod(histogram.Release());
} catch (const std::exception& e) {
UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).data());
}
}
template <>
bool THistogram_Deserialize<TLinearHistogram, LinearHistogramResourceName>::DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
builder.SimpleSignature<TResource<LinearHistogramResourceName>(char*, double, double, double)>();
if (!typesOnly) {
builder.Implementation(new THistogram_Deserialize<TLinearHistogram, LinearHistogramResourceName>(builder.GetSourcePosition()));
}
return true;
} else {
return false;
}
}
template <>
TUnboxedValue THistogram_Create<TLogarithmicHistogram, LogarithmicHistogramResourceName>::Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const {
using THistogramResource = THistogram_Create<TLogarithmicHistogram, LogarithmicHistogramResourceName>::THistogramResource;
try {
Y_UNUSED(valueBuilder);
THolder<THistogramResource> histogram(new THistogramResource(
args[1].Get<double>(), args[2].Get<double>(), args[3].Get<double>()));
histogram->Get()->Add(args[0].Get<double>(), 1.0);
return TUnboxedValuePod(histogram.Release());
} catch (const std::exception& e) {
UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).data());
}
}
template <>
bool THistogram_Create<TLogarithmicHistogram, LogarithmicHistogramResourceName>::DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
builder.SimpleSignature<TResource<LogarithmicHistogramResourceName>(double, double, double, double)>();
if (!typesOnly) {
builder.Implementation(new THistogram_Create<TLogarithmicHistogram, LogarithmicHistogramResourceName>(builder.GetSourcePosition()));
}
return true;
} else {
return false;
}
}
template <>
TUnboxedValue THistogram_Deserialize<TLogarithmicHistogram, LogarithmicHistogramResourceName>::Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const {
using THistogramResource = THistogram_Deserialize<TLogarithmicHistogram, LogarithmicHistogramResourceName>::THistogramResource;
try {
Y_UNUSED(valueBuilder);
THistogram proto;
Y_PROTOBUF_SUPPRESS_NODISCARD proto.ParseFromString(TString(args[0].AsStringRef()));
THolder<THistogramResource> histogram(
new THistogramResource(args[1].Get<double>(), args[2].Get<double>(), args[3].Get<double>()));
histogram->Get()->FromProto(proto);
return TUnboxedValuePod(histogram.Release());
} catch (const std::exception& e) {
UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).data());
}
}
template <>
bool THistogram_Deserialize<TLogarithmicHistogram, LogarithmicHistogramResourceName>::DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
builder.SimpleSignature<TResource<LogarithmicHistogramResourceName>(char*, double, double, double)>();
if (!typesOnly) {
builder.Implementation(new THistogram_Deserialize<TLogarithmicHistogram, LogarithmicHistogramResourceName>(builder.GetSourcePosition()));
}
return true;
} else {
return false;
}
}
class THistogramPrint: public TBoxedValue {
public:
THistogramPrint(const THistogramIndexes& histogramIndexes)
: HistogramIndexes(histogramIndexes)
{
}
static const TStringRef& Name() {
static auto name = TStringRef::Of("Print");
return name;
}
TUnboxedValue Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const override {
auto kind = args[0].GetElement(HistogramIndexes.Kind);
auto bins = args[0].GetElement(HistogramIndexes.Bins);
double min = args[0].GetElement(HistogramIndexes.Min).Get<double>();
double max = args[0].GetElement(HistogramIndexes.Max).Get<double>();
double weightsSum = args[0].GetElement(HistogramIndexes.WeightsSum).Get<double>();
auto binsIterator = bins.GetListIterator();
TStringBuilder result;
result << "Kind: " << (TStringBuf)kind.AsStringRef() << ' ';
result << Sprintf("Bins: %" PRIu64 " WeightsSum: %.3f Min: %.3f Max: %.3f",
bins.GetListLength(), weightsSum, min, max);
double maxFrequency = 0.0;
size_t maxPositionLength = 0;
size_t maxFrequencyLength = 0;
const ui8 bars = args[1].GetOrDefault<ui8>(25);
for (TUnboxedValue current; binsIterator.Next(current);) {
if (bars) {
double frequency = current.GetElement(HistogramIndexes.Frequency).Get<double>();
if (frequency > maxFrequency) {
maxFrequency = frequency;
}
}
size_t positionLength = Sprintf("%.3f", current.GetElement(HistogramIndexes.Position).Get<double>()).length();
size_t frequencyLength = Sprintf("%.3f", current.GetElement(HistogramIndexes.Frequency).Get<double>()).length();
if (positionLength > maxPositionLength) {
maxPositionLength = positionLength;
}
if (frequencyLength > maxFrequencyLength) {
maxFrequencyLength = frequencyLength;
}
}
binsIterator = bins.GetListIterator();
for (TUnboxedValue current; binsIterator.Next(current);) {
double position = current.GetElement(HistogramIndexes.Position).Get<double>();
double frequency = current.GetElement(HistogramIndexes.Frequency).Get<double>();
result << "\n";
if (bars && maxFrequency > 0) {
ui8 filledBars = static_cast<ui8>(bars * frequency / maxFrequency);
for (ui8 i = 0; i < bars; ++i) {
if (i < filledBars) {
result << "█";
} else {
result << "░";
}
}
}
result << " P: " << LeftPad(Sprintf("%.3f", position), maxPositionLength);
result << " F: " << LeftPad(Sprintf("%.3f", frequency), maxFrequencyLength);
}
return valueBuilder->NewString(result);
}
static bool DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
THistogramIndexes histogramIndexes(builder);
auto optionalUi8 = builder.Optional()->Item<ui8>().Build();
builder.Args()->Add(histogramIndexes.ResultStructType).Flags(ICallablePayload::TArgumentFlags::AutoMap).Add(optionalUi8).Done().OptionalArgs(1).Returns<char*>();
if (!typesOnly) {
builder.Implementation(new THistogramPrint(histogramIndexes));
}
builder.IsStrict();
return true;
} else {
return false;
}
}
private:
const THistogramIndexes HistogramIndexes;
};
class THistogramToCumulativeDistributionFunction: public TBoxedValue {
public:
THistogramToCumulativeDistributionFunction(const THistogramIndexes& histogramIndexes)
: HistogramIndexes(histogramIndexes)
{
}
static const TStringRef& Name() {
static auto name = TStringRef::Of("ToCumulativeDistributionFunction");
return name;
}
TUnboxedValue Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const override {
TUnboxedValue* fields = nullptr;
auto result = valueBuilder->NewArray(HistogramIndexes.ResultFieldsCount, fields);
auto bins = args[0].GetElement(HistogramIndexes.Bins);
double minValue = args[0].GetElement(HistogramIndexes.Min).Get<double>();
double maxValue = args[0].GetElement(HistogramIndexes.Max).Get<double>();
double sum = 0.0;
double weightsSum = 0.0;
std::vector<TUnboxedValue> resultBins;
if (bins.HasFastListLength())
resultBins.reserve(bins.GetListLength());
const auto binsIterator = bins.GetListIterator();
for (TUnboxedValue current; binsIterator.Next(current);) {
TUnboxedValue* binFields = nullptr;
auto resultCurrent = valueBuilder->NewArray(HistogramIndexes.BinFieldsCount, binFields);
const auto frequency = current.GetElement(HistogramIndexes.Frequency).Get<double>();
sum += frequency;
weightsSum += sum;
binFields[HistogramIndexes.Frequency] = TUnboxedValuePod(sum);
binFields[HistogramIndexes.Position] = current.GetElement(HistogramIndexes.Position);
resultBins.emplace_back(std::move(resultCurrent));
}
auto kind = args[0].GetElement(HistogramIndexes.Kind);
fields[HistogramIndexes.Kind] = valueBuilder->AppendString(kind, "Cdf");
fields[HistogramIndexes.Bins] = valueBuilder->NewList(resultBins.data(), resultBins.size());
fields[HistogramIndexes.Max] = TUnboxedValuePod(maxValue);
fields[HistogramIndexes.Min] = TUnboxedValuePod(minValue);
fields[HistogramIndexes.WeightsSum] = TUnboxedValuePod(weightsSum);
return result;
}
static bool DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
THistogramIndexes histogramIndexes(builder);
builder.Args()->Add(histogramIndexes.ResultStructType).Flags(ICallablePayload::TArgumentFlags::AutoMap).Done().Returns(histogramIndexes.ResultStructType);
if (!typesOnly) {
builder.Implementation(new THistogramToCumulativeDistributionFunction(histogramIndexes));
}
builder.IsStrict();
return true;
} else {
return false;
}
}
private:
const THistogramIndexes HistogramIndexes;
};
class THistogramNormalize: public TBoxedValue {
public:
THistogramNormalize(const THistogramIndexes& histogramIndexes)
: HistogramIndexes(histogramIndexes)
{
}
static const TStringRef& Name() {
static auto name = TStringRef::Of("Normalize");
return name;
}
TUnboxedValue Run(
const IValueBuilder* valueBuilder,
const TUnboxedValuePod* args) const override {
TUnboxedValue* fields = nullptr;
auto result = valueBuilder->NewArray(HistogramIndexes.ResultFieldsCount, fields);
auto bins = args[0].GetElement(HistogramIndexes.Bins);
double minValue = args[0].GetElement(HistogramIndexes.Min).Get<double>();
double maxValue = args[0].GetElement(HistogramIndexes.Max).Get<double>();
double area = args[1].GetOrDefault<double>(100.0);
bool cdfNormalization = args[2].GetOrDefault<bool>(false);
double sum = 0.0;
double weightsSum = 0.0;
double lastBinFrequency = 0.0;
std::vector<TUnboxedValue> resultBins;
if (bins.HasFastListLength())
resultBins.reserve(bins.GetListLength());
auto binsIterator = bins.GetListIterator();
for (TUnboxedValue current; binsIterator.Next(current);) {
sum += current.GetElement(HistogramIndexes.Frequency).Get<double>();
lastBinFrequency = current.GetElement(HistogramIndexes.Frequency).Get<double>();
}
binsIterator = bins.GetListIterator();
for (TUnboxedValue current; binsIterator.Next(current);) {
TUnboxedValue* binFields = nullptr;
auto resultCurrent = valueBuilder->NewArray(HistogramIndexes.BinFieldsCount, binFields);
double frequency = current.GetElement(HistogramIndexes.Frequency).Get<double>();
if (cdfNormalization) {
frequency = area * frequency / lastBinFrequency;
} else {
frequency = area * frequency / sum;
}
weightsSum += frequency;
binFields[HistogramIndexes.Frequency] = TUnboxedValuePod(frequency);
binFields[HistogramIndexes.Position] = current.GetElement(HistogramIndexes.Position);
resultBins.emplace_back(std::move(resultCurrent));
}
TUnboxedValue kind = args[0].GetElement(HistogramIndexes.Kind);
if (cdfNormalization) {
kind = valueBuilder->AppendString(kind, "Cdf");
}
fields[HistogramIndexes.Kind] = kind;
fields[HistogramIndexes.Bins] = valueBuilder->NewList(resultBins.data(), resultBins.size());
fields[HistogramIndexes.Max] = TUnboxedValuePod(maxValue);
fields[HistogramIndexes.Min] = TUnboxedValuePod(minValue);
fields[HistogramIndexes.WeightsSum] = TUnboxedValuePod(weightsSum);
return result;
}
static bool DeclareSignature(
const TStringRef& name,
TType* userType,
IFunctionTypeInfoBuilder& builder,
bool typesOnly) {
Y_UNUSED(userType);
if (Name() == name) {
THistogramIndexes histogramIndexes(builder);
auto optionalDouble = builder.Optional()->Item<double>().Build();
auto optionalCdfNormalization = builder.Optional()->Item<bool>().Build();
builder.Args()->Add(histogramIndexes.ResultStructType).Flags(ICallablePayload::TArgumentFlags::AutoMap).Add(optionalDouble).Add(optionalCdfNormalization).Done().Returns(histogramIndexes.ResultStructType);
builder.OptionalArgs(1);
builder.OptionalArgs(2);
if (!typesOnly) {
builder.Implementation(new THistogramNormalize(histogramIndexes));
}
builder.IsStrict();
return true;
} else {
return false;
}
}
private:
const THistogramIndexes HistogramIndexes;
};
template <bool twoArgs>
class THistogramMethodBase: public TBoxedValue {
public:
THistogramMethodBase(const THistogramIndexes& histogramIndexes, TSourcePosition pos)
: HistogramIndexes(histogramIndexes)
, Pos_(pos)
{
}
virtual TUnboxedValue GetResult(
const THistogram& input,
const TUnboxedValuePod* args) const = 0;
TUnboxedValue Run(
const IValueBuilder*,
const TUnboxedValuePod* args) const override {
try {
auto bins = args[0].GetElement(HistogramIndexes.Bins);
double min = args[0].GetElement(HistogramIndexes.Min).template Get<double>();
double max = args[0].GetElement(HistogramIndexes.Max).template Get<double>();
auto binsIterator = bins.GetListIterator();
THistogram histogram;
histogram.SetType(HT_ADAPTIVE_HISTOGRAM);
histogram.SetMinValue(min);
histogram.SetMaxValue(max);
for (TUnboxedValue current; binsIterator.Next(current);) {
double frequency = current.GetElement(HistogramIndexes.Frequency).template Get<double>();
double position = current.GetElement(HistogramIndexes.Position).template Get<double>();
histogram.AddFreq(frequency);
histogram.AddPosition(position);
}
return GetResult(histogram, args);
} catch (const std::exception& e) {
UdfTerminate((TStringBuilder() << Pos_ << " " << e.what()).data());
}
}
static THistogramIndexes DeclareSignatureBase(IFunctionTypeInfoBuilder& builder) {
THistogramIndexes histogramIndexes(builder);
if (twoArgs) {
builder.Args()->Add(histogramIndexes.ResultStructType).Flags(ICallablePayload::TArgumentFlags::AutoMap).Add<double>().Add<double>().Done().Returns<double>();
} else {
builder.Args()->Add(histogramIndexes.ResultStructType).Flags(ICallablePayload::TArgumentFlags::AutoMap).Add<double>().Done().Returns<double>();
}
return histogramIndexes;
}
protected:
const THistogramIndexes HistogramIndexes;
TSourcePosition Pos_;
};
#define DECLARE_ONE_DOUBLE_ARG_METHOD_UDF(name) \
class T##name: public THistogramMethodBase<false> { \
public: \
T##name(const THistogramIndexes& histogramIndexes, TSourcePosition pos) \
: THistogramMethodBase<false>(histogramIndexes, pos) { \
} \
static const TStringRef& Name() { \
static auto name = TStringRef::Of(#name); \
return name; \
} \
static bool DeclareSignature( \
const TStringRef& name, \
TType* userType, \
IFunctionTypeInfoBuilder& builder, \
bool typesOnly) { \
Y_UNUSED(userType); \
if (Name() == name) { \
const auto& histogramIndexes = DeclareSignatureBase(builder); \
if (!typesOnly) { \
builder.Implementation(new T##name(histogramIndexes, \
builder.GetSourcePosition())); \
} \
return true; \
} else { \
return false; \
} \
} \
TUnboxedValue GetResult( \
const THistogram& input, \
const TUnboxedValuePod* args) const override { \
TAdaptiveWardHistogram histo(input, input.FreqSize()); \
double result = histo.name(args[1].Get<double>()); \
return TUnboxedValuePod(result); \
} \
};
#define DECLARE_TWO_DOUBLE_ARG_METHOD_UDF(name) \
class T##name: public THistogramMethodBase<true> { \
public: \
T##name(const THistogramIndexes& histogramIndexes, TSourcePosition pos) \
: THistogramMethodBase<true>(histogramIndexes, pos) { \
} \
static const TStringRef& Name() { \
static auto name = TStringRef::Of(#name); \
return name; \
} \
static bool DeclareSignature( \
const TStringRef& name, \
TType* userType, \
IFunctionTypeInfoBuilder& builder, \
bool typesOnly) { \
Y_UNUSED(userType); \
if (Name() == name) { \
const auto& histogramIndexes = DeclareSignatureBase(builder); \
if (!typesOnly) { \
builder.Implementation(new T##name(histogramIndexes, \
builder.GetSourcePosition())); \
} \
return true; \
} else { \
return false; \
} \
} \
TUnboxedValue GetResult( \
const THistogram& input, \
const TUnboxedValuePod* args) const override { \
TAdaptiveWardHistogram histo(input, input.FreqSize()); \
double result = histo.name(args[1].Get<double>(), args[2].Get<double>()); \
return TUnboxedValuePod(result); \
} \
};
#define DECLARE_HISTOGRAM_UDF(functionName, histogramName) \
THistogram_##functionName<T##histogramName##Histogram, histogramName##HistogramResourceName>,
#define DECLARE_HISTOGRAM_UDFS(name) \
HISTOGRAM_FUNCTION_MAP(DECLARE_HISTOGRAM_UDF, name)
HISTOGRAM_ONE_DOUBLE_ARG_METHODS_MAP(DECLARE_ONE_DOUBLE_ARG_METHOD_UDF)
HISTOGRAM_TWO_DOUBLE_ARG_METHODS_MAP(DECLARE_TWO_DOUBLE_ARG_METHOD_UDF)
SIMPLE_MODULE(THistogramModule,
HISTOGRAM_ALGORITHMS_MAP(DECLARE_HISTOGRAM_UDFS)
HISTOGRAM_ONE_DOUBLE_ARG_METHODS_MAP(REGISTER_METHOD_UDF)
HISTOGRAM_TWO_DOUBLE_ARG_METHODS_MAP(REGISTER_METHOD_UDF)
DECLARE_HISTOGRAM_UDFS(Linear)
DECLARE_HISTOGRAM_UDFS(Logarithmic)
THistogramPrint,
THistogramNormalize,
THistogramToCumulativeDistributionFunction)
}
REGISTER_MODULES(THistogramModule)
|