-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcppase.h
326 lines (299 loc) · 6.81 KB
/
cppase.h
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
#ifndef INC_CPPASE_H_
#define INC_CPPASE_H_
/*
USAGE:
Put '#define CPPASE_IMPLEMENTATION' before including this file to create the implementation.
*/
//#define CPPASE_IMPLEMENTATION(1)
#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdlib>
#include <immintrin.h>
#include <random>
using int64 = int64_t;
using uint8 = uint8_t;
using uint16 = uint16_t;
using uint32 = uint32_t;
using uint64 = uint64_t;
#if defined(__cplusplus) && 202002L <= __cplusplus && !defined(LIKELY_)
# define LIKELY_ [[likely]]
#else
# define LIKELY_
#endif
#if defined(__cplusplus) && 202002L <= __cplusplus && !defined(UNLIKELY_)
# define UNLIKELY_ [[unlikely]]
#else
# define UNLIKELY_
#endif
#if defined(__cplusplus) && 202002L <= __cplusplus
# include <bit>
template<typename To, typename From>
inline To bitcast(const From& x)
{
return std::bit_cast<To, From>(x);
}
#else
# include <intrin.h>
template<typename To, typename From>
inline To bitcast(const From& x)
{
To r;
::memcpy(&r, &x, sizeof(To));
return r;
}
#endif
#ifdef _MSC_VER
uint32 bitscan_lsb(uint32 mask)
{
unsigned long index = 0;
if(0 != _BitScanForward(&index, mask)) {
return index + 1;
}
return 0;
}
#else
uint32 bitscan_lsb(uint32 mask)
{
return 0 != mask ? __builtin_ctz(mask) + 1 : 0;
}
#endif
namespace cppase
{
class ASE
{
public:
inline static constexpr uint32 EncodeBits = 6;
inline static constexpr uint32 TableSize = 1 << EncodeBits;
class Stream
{
public:
Stream(uint8* data)
: pos_(0)
, r_(8)
, data_(data)
{
data_[0] = 0;
}
void put(uint32 bits, uint32 size);
uint32 pos_;
uint32 r_;
uint8* data_;
};
class IStream
{
public:
IStream(const uint8* data)
: pos_(0)
, r_(8)
, data_(data)
{
}
uint32 get(uint32 size);
uint32 pos_;
uint32 r_;
const uint8* data_;
};
inline static constexpr uint32 Invalid = 0xFFFF'FFFFUL;
ASE();
~ASE();
void clear();
bool empty() const;
bool full() const;
/**
* @brief
* @return 1 base index
*/
uint32 find(uint8 x) const;
void push_back(uint8 x);
void remove_at(uint32 index);
uint32 entropy() const;
static int64 encodeBound(int64 size);
int64 encode(int64 size, uint8* dst, const uint8* src);
int64 decode(int64 size, int64 original_size, uint8* dst, const uint8* src);
private:
ASE(const ASE&) = delete;
ASE& operator=(const ASE&) = delete;
uint32 size_;
uint8 symbols_[TableSize + 16];
};
}
#endif ////INC_CPPASE_H_
#ifdef CPPASE_IMPLEMENTATION
namespace cppase
{
void ASE::Stream::put(uint32 bits, uint32 size)
{
assert(size <= 32);
uint32 t = 0;
while(t < size) {
if(r_ <= 0) {
++pos_;
data_[pos_] = 0;
r_ = 8;
}
uint32 s = (size - t) < r_ ? (size - t) : r_;
data_[pos_] |= (bits & ((1UL << s) - 1)) << (8 - r_);
assert(s <= r_);
r_ -= s;
t += s;
bits >>= s;
}
}
uint32 ASE::IStream::get(uint32 size)
{
assert(size <= 32);
uint32 x = 0;
uint32 t = 0;
while(t < size) {
if(r_ <= 0) {
++pos_;
r_ = 8;
}
uint32 s = (size - t) < r_ ? (size - t) : r_;
x |= ((data_[pos_] >> (8 - r_)) & ((1UL << s) - 1)) << t;
assert(s <= r_);
t += s;
r_ -= s;
}
return x;
}
ASE::ASE()
: size_(0)
{
}
ASE::~ASE()
{
}
void ASE::clear()
{
size_ = 0;
}
bool ASE::empty() const
{
return size_ <= 0;
}
bool ASE::full() const
{
return TableSize <= size_;
}
uint32 ASE::find(uint8 x) const
{
if(size_ <= 0)
UNLIKELY_
{
return Invalid;
}
__m128i m = _mm_set1_epi8(bitcast<char, uint8>(x));
for(uint32 i = 0; i < size_; i += 16) {
__m128i m0 = _mm_loadu_si128((const __m128i*)&symbols_[i + 0]);
m0 = _mm_cmpeq_epi8(m0, m);
uint32 mask = (uint32)_mm_movemask_epi8(m0);
uint32 index = bitscan_lsb(mask);
if(index != 0) {
index += i;
return index < size_ ? index : Invalid;
}
}
return Invalid;
}
void ASE::push_back(uint8 x)
{
assert(!full());
symbols_[size_] = x;
++size_;
}
void ASE::remove_at(uint32 index)
{
assert(index < size_);
for(uint32 i = index + 1; i < size_; i += 16) {
__m128i m0 = _mm_loadu_si128((const __m128i*)&symbols_[i + 0]);
_mm_storeu_si128((__m128i*)&symbols_[i - 1], m0);
}
--size_;
}
uint32 ASE::entropy() const
{
assert(size_ <= TableSize);
uint32 e = 0;
uint32 x = 0;
uint32 size = size_;
while(x < size) {
++e;
x = 1UL << e;
}
return e;
}
int64 ASE::encodeBound(int64 size)
{
return (static_cast<int64>(std::ceil(size * (9.0 / 8.0))) + 0x04LL) & ~0x03LL;
}
int64 ASE::encode(int64 size, uint8* dst, const uint8* src)
{
clear();
Stream stream(dst);
uint32 bits = 0;
for(int64 i = 0; i < size; ++i) {
uint32 index = find(src[i]);
if(index != Invalid) {
assert(1 <= index && index <= size_);
uint32 out = size_ - index;
--index;
assert(src[i] == symbols_[index]);
remove_at(index);
push_back(src[i]);
uint32 c = (out << 1) | 0x01U;
stream.put(c, bits + 1);
} else {
if(TableSize <= size_) {
remove_at(0);
push_back(src[i]);
} else {
push_back(src[i]);
bits = entropy();
}
uint32 c = static_cast<uint32>(src[i]) << 1;
stream.put(c, 9);
}
}
return static_cast<int64>(stream.pos_);
}
int64 ASE::decode(int64 size, int64 original_size, uint8* dst, const uint8* src)
{
clear();
IStream stream(src);
uint32 s = static_cast<uint32>(size);
uint32 bits = 0;
int64 pos = 0;
while(stream.pos_ <= s && pos < original_size) {
uint32 cmark = stream.get(1);
if(cmark) {
uint32 index = stream.get(bits);
assert(index < size_);
index = size_ - index - 1;
assert(index < size_);
dst[pos] = symbols_[index];
remove_at(index);
push_back(dst[pos]);
++pos;
} else {
uint8 c = static_cast<uint8>(stream.get(8));
#if _DEBUG
uint32 index = find(c);
assert(Invalid == index);
#endif
if(TableSize <= size_) {
remove_at(0);
push_back(c);
} else {
push_back(c);
bits = entropy();
}
dst[pos] = c;
++pos;
}
}
return pos;
}
}
#endif