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
|
#pragma once
#include "udf_value.h"
#include <yql/essentials/utils/method_index.h>
#include <util/generic/ymath.h>
#include <util/system/platform.h>
#include <util/generic/yexception.h>
#include <util/system/yassert.h>
#include <util/string/hex.h>
namespace NYql {
namespace NUdf {
template<bool HasLength = true>
class TLazyList: public NUdf::TBoxedValue {
struct TIterator: public NUdf::TBoxedValue {
TIterator(i32 from, i32 to)
: From(from), To(to), Curr(Max<i32>())
{
if (To >= From) {
To--; // exclude last
} else {
From--; // exclude first
}
}
private:
bool Skip() override {
if (Curr == Max<i32>()) {
Curr = From;
return true;
}
if (To >= From) {
if (Curr < To) {
++Curr;
return true;
}
} else {
if (Curr > To) {
--Curr;
return true;
}
}
return false;
}
bool Next(NUdf::TUnboxedValue& value) override {
if (!Skip())
return false;
value = NUdf::TUnboxedValuePod(Curr);
return true;
}
i32 From, To, Curr;
};
public:
TLazyList(i32 from, i32 to)
: From_(from), To_(to)
{
}
private:
bool HasFastListLength() const override {
return HasLength;
}
ui64 GetListLength() const override {
if (HasLength)
return Abs(To_ - From_);
Y_ABORT("No length!");
}
bool HasListItems() const override {
return To_ != From_;
}
NUdf::TUnboxedValue GetListIterator() const override {
return NUdf::TUnboxedValuePod(new TIterator(From_, To_));
}
NUdf::IBoxedValuePtr ReverseListImpl(const NUdf::IValueBuilder& builder) const override {
Y_UNUSED(builder);
return new TLazyList(To_, From_);
}
NUdf::IBoxedValuePtr SkipListImpl(const NUdf::IValueBuilder& builder, ui64 count) const override {
Y_UNUSED(builder);
count = std::min<ui64>(count, Abs(To_ - From_));
if (To_ >= From_) {
return new TLazyList(From_ + count, To_);
}
return new TLazyList(From_ - count, To_);
}
NUdf::IBoxedValuePtr TakeListImpl(const NUdf::IValueBuilder& builder, ui64 count) const override {
Y_UNUSED(builder);
count = std::min<ui64>(count, Abs(To_ - From_));
if (To_ >= From_) {
return new TLazyList(From_, From_ + count);
}
return new TLazyList(From_, From_ - count);
}
NUdf::IBoxedValuePtr ToIndexDictImpl(const NUdf::IValueBuilder& builder) const override {
Y_UNUSED(builder);
return nullptr;
}
i32 From_, To_;
};
}
}
|