aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/codecs/pfor_codec.h
blob: d7d4bb8bf4826d6749459b2c679653c43d8fb065 (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
#pragma once

#include "codecs.h"

#include "delta_codec.h"
#include "tls_cache.h"

#include <library/cpp/bit_io/bitinput.h>
#include <library/cpp/bit_io/bitoutput.h>
#include <util/string/cast.h>

namespace NCodecs {
    template <typename T, bool WithDelta = false>
    class TPForCodec: public ICodec {
        using TUnsigned = std::make_unsigned_t<T>;
        typedef TDeltaCodec<TUnsigned> TDCodec;

        typedef std::conditional_t<WithDelta, typename TDCodec::TDelta, T> TValue;
        static_assert(std::is_unsigned<TValue>::value, "expect std:is_unsigned<TValue>::value");

        static const ui64 BitsInT = sizeof(TUnsigned) * 8;

        TDCodec DeltaCodec;

    public:
        static TStringBuf MyName();

        TPForCodec() {
            MyTraits.AssumesStructuredInput = true;
            MyTraits.SizeOfInputElement = sizeof(T);
            MyTraits.SizeOnDecodeMultiplier = sizeof(T);
        }

        TString GetName() const override {
            return ToString(MyName());
        }

        ui8 Encode(TStringBuf s, TBuffer& b) const override {
            b.Clear();
            if (s.empty()) {
                return 0;
            }

            b.Reserve(2 * s.size() + b.Size());

            if (WithDelta) {
                auto buffer = TBufferTlsCache::TlsInstance().Item();
                TBuffer& db = buffer.Get();
                db.Clear();
                db.Reserve(2 * s.size());
                DeltaCodec.Encode(s, db);
                s = TStringBuf{db.data(), db.size()};
            }

            TArrayRef<const TValue> tin{(const TValue*)s.data(), s.size() / sizeof(TValue)};

            const ui64 sz = tin.size();
            ui64 bitcounts[BitsInT + 1];
            Zero(bitcounts);

            ui32 zeros = 0;

            for (const TValue* it = tin.begin(); it != tin.end(); ++it) {
                TUnsigned v = 1 + (TUnsigned)*it;
                ui64 l = MostSignificantBit(v) + 1;
                ++bitcounts[l];

                if (!v) {
                    ++zeros;
                }
            }

            // cumulative bit counts
            for (ui64 i = 0; i < BitsInT; ++i) {
                bitcounts[i + 1] += bitcounts[i];
            }

            bool hasexceptions = zeros;
            ui64 optimalbits = BitsInT;

            {
                ui64 excsize = 0;
                ui64 minsize = sz * BitsInT;

                for (ui64 current = BitsInT; current; --current) {
                    ui64 size = bitcounts[current] * current + (sz - bitcounts[current]) * (current + 6 + excsize) + zeros * (current + 6);

                    excsize += current * bitcounts[current];

                    if (size < minsize) {
                        minsize = size;
                        optimalbits = current;
                        hasexceptions = zeros || sz - bitcounts[current];
                    }
                }
            }

            if (!optimalbits || BitsInT == optimalbits) {
                b.Append((ui8)-1);
                b.Append(s.data(), s.size());
                return 0;
            } else {
                NBitIO::TBitOutputVector<TBuffer> bout(&b);
                bout.Write(0, 1);
                bout.Write(hasexceptions, 1);
                bout.Write(optimalbits, 6);

                for (const TValue* it = tin.begin(); it != tin.end(); ++it) {
                    TUnsigned word = 1 + (TUnsigned)*it;
                    ui64 len = MostSignificantBit(word) + 1;
                    if (len > optimalbits || !word) {
                        Y_ENSURE(hasexceptions, " ");
                        bout.Write(0, optimalbits);
                        bout.Write(len, 6);
                        bout.Write(word, len);
                    } else {
                        bout.Write(word, optimalbits);
                    }
                }

                return bout.GetByteReminder();
            } // the rest of the last byte is zero padded. BitsInT is always > 7.
        }

        void Decode(TStringBuf s, TBuffer& b) const override {
            b.Clear();
            if (s.empty()) {
                return;
            }

            b.Reserve(s.size() * sizeof(T) + b.Size());

            ui64 isplain = 0;
            ui64 hasexceptions = 0;
            ui64 bits = 0;

            NBitIO::TBitInput bin(s);
            bin.ReadK<1>(isplain);
            bin.ReadK<1>(hasexceptions);
            bin.ReadK<6>(bits);

            if (Y_UNLIKELY(isplain)) {
                s.Skip(1);

                if (WithDelta) {
                    DeltaCodec.Decode(s, b);
                } else {
                    b.Append(s.data(), s.size());
                }
            } else {
                typename TDCodec::TDecoder decoder;

                if (hasexceptions) {
                    ui64 word = 0;
                    while (bin.Read(word, bits)) {
                        if (word || (bin.ReadK<6>(word) && bin.Read(word, word))) {
                            --word;

                            TValue t = word;

                            if (WithDelta) {
                                if (decoder.Decode(t)) {
                                    TStringBuf r{(char*)&decoder.Result, sizeof(decoder.Result)};
                                    b.Append(r.data(), r.size());
                                }
                            } else {
                                TStringBuf r{(char*)&t, sizeof(t)};
                                b.Append(r.data(), r.size());
                            }
                        }
                    }
                } else {
                    ui64 word = 0;
                    T outarr[256 / sizeof(T)];
                    ui32 cnt = 0;
                    while (true) {
                        ui64 v = bin.Read(word, bits);

                        if ((!v) | (!word))
                            break;

                        --word;
                        TValue t = word;

                        if (WithDelta) {
                            if (decoder.Decode(t)) {
                                outarr[cnt++] = decoder.Result;
                            }
                        } else {
                            outarr[cnt++] = t;
                        }

                        if (cnt == Y_ARRAY_SIZE(outarr)) {
                            b.Append((const char*)outarr, sizeof(outarr));
                            cnt = 0;
                        }
                    }

                    if (cnt) {
                        b.Append((const char*)outarr, cnt * sizeof(T));
                    }
                }
            }
        }

    protected:
        void DoLearn(ISequenceReader&) override {
        }
    };

}