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
|
#pragma once
#include <util/generic/ptr.h>
#include <util/generic/string.h>
#include <util/generic/hash_set.h>
#include <util/generic/scope.h>
#include <util/stream/str.h>
#include <util/system/sanitizers.h>
#include <util/system/valgrind.h>
#include <util/generic/array_ref.h>
#include "shared_data.h"
namespace NContiguousDataDetails {
template<typename TContainer>
struct TContainerTraits {
static char* UnsafeGetDataMut(const TContainer& backend) {
return const_cast<char*>(backend.data());
}
};
} // NContiguousDataDetails
class TContiguousSpan
{
private:
const char *Data = nullptr;
size_t Size = 0;
public:
TContiguousSpan() = default;
TContiguousSpan(const char *data, size_t size)
: Data(data)
, Size(size)
{}
TContiguousSpan(const TString& str)
: Data(str.data())
, Size(str.size())
{}
TContiguousSpan(const TStringBuf& str)
: Data(str.data())
, Size(str.size())
{}
TContiguousSpan(const TArrayRef<char>& ref)
: Data(ref.data())
, Size(ref.size())
{}
TContiguousSpan(const TArrayRef<const char>& ref)
: Data(ref.data())
, Size(ref.size())
{}
TContiguousSpan(const NActors::TSharedData& data)
: Data(data.data())
, Size(data.size())
{}
const char *data() const noexcept {
return Data;
}
size_t size() const noexcept {
return Size;
}
const char *GetData() const noexcept {
return Data;
}
size_t GetSize() const noexcept {
return Size;
}
TContiguousSpan SubSpan(size_t pos, size_t n) const noexcept {
pos = Min(pos, size());
n = Min(n, size() - pos);
return TContiguousSpan(data() + pos, n);
}
friend bool operator==(const TContiguousSpan& x, const TContiguousSpan& y) { return Compare(x, y) == 0; }
friend bool operator!=(const TContiguousSpan& x, const TContiguousSpan& y) { return Compare(x, y) != 0; }
friend bool operator< (const TContiguousSpan& x, const TContiguousSpan& y) { return Compare(x, y) < 0; }
friend bool operator<=(const TContiguousSpan& x, const TContiguousSpan& y) { return Compare(x, y) <= 0; }
friend bool operator> (const TContiguousSpan& x, const TContiguousSpan& y) { return Compare(x, y) > 0; }
friend bool operator>=(const TContiguousSpan& x, const TContiguousSpan& y) { return Compare(x, y) >= 0; }
private:
static int Compare(const TContiguousSpan& x, const TContiguousSpan& y) {
if(int res = std::memcmp(x.data(), y.data(), std::min(x.size(), y.size())); res) {
return res;
}
return x.size() - y.size();
}
};
template <
class TLeft,
class TRight,
typename std::enable_if<std::is_convertible<TLeft,TContiguousSpan>::value>::type* = nullptr,
typename std::enable_if<std::is_convertible<TRight,TContiguousSpan>::value>::type* = nullptr
>
bool operator==(const TLeft& lhs, const TRight& rhs) {
return TContiguousSpan(lhs) == TContiguousSpan(rhs);
}
template <
class TLeft,
class TRight,
typename std::enable_if<std::is_convertible<TLeft,TContiguousSpan>::value>::type* = nullptr,
typename std::enable_if<std::is_convertible<TRight,TContiguousSpan>::value>::type* = nullptr
>
bool operator!=(const TLeft& lhs, const TRight& rhs) {
return TContiguousSpan(lhs) != TContiguousSpan(rhs);
}
template <
class TLeft,
class TRight,
typename std::enable_if<std::is_convertible<TLeft,TContiguousSpan>::value>::type* = nullptr,
typename std::enable_if<std::is_convertible<TRight,TContiguousSpan>::value>::type* = nullptr
>
bool operator<(const TLeft& lhs, const TRight& rhs) {
return TContiguousSpan(lhs) < TContiguousSpan(rhs);
}
template <
class TLeft,
class TRight,
typename std::enable_if<std::is_convertible<TLeft,TContiguousSpan>::value>::type* = nullptr,
typename std::enable_if<std::is_convertible<TRight,TContiguousSpan>::value>::type* = nullptr
>
bool operator<=(const TLeft& lhs, const TRight& rhs) {
return TContiguousSpan(lhs) <= TContiguousSpan(rhs);
}
template <
class TLeft,
class TRight,
typename std::enable_if<std::is_convertible<TLeft,TContiguousSpan>::value>::type* = nullptr,
typename std::enable_if<std::is_convertible<TRight,TContiguousSpan>::value>::type* = nullptr
>
bool operator>(const TLeft& lhs, const TRight& rhs) {
return TContiguousSpan(lhs) > TContiguousSpan(rhs);
}
template <
class TLeft,
class TRight,
typename std::enable_if<std::is_convertible<TLeft,TContiguousSpan>::value>::type* = nullptr,
typename std::enable_if<std::is_convertible<TRight,TContiguousSpan>::value>::type* = nullptr
>
bool operator>=(const TLeft& lhs, const TRight& rhs) {
return TContiguousSpan(lhs) >= TContiguousSpan(rhs);
}
class TMutableContiguousSpan
{
private:
char *Data = nullptr;
size_t Size = 0;
public:
TMutableContiguousSpan() = default;
TMutableContiguousSpan(char *data, size_t size)
: Data(data)
, Size(size)
{}
char *data() noexcept {
return Data;
}
char *GetData() noexcept {
return Data;
}
TMutableContiguousSpan SubSpan(size_t pos, size_t n) noexcept {
pos = Min(pos, size());
n = Min(n, size() - pos);
return TMutableContiguousSpan(data() + pos, n);
}
const char *data() const noexcept {
return Data;
}
size_t size() const noexcept {
return Size;
}
const char *GetData() const noexcept {
return Data;
}
size_t GetSize() const noexcept {
return Size;
}
TContiguousSpan SubSpan(size_t pos, size_t n) const noexcept {
pos = Min(pos, size());
n = Min(n, size() - pos);
return TContiguousSpan(data() + pos, n);
}
operator TContiguousSpan() const noexcept {
return TContiguousSpan(Data, Size);
}
};
struct IContiguousChunk : TThrRefBase {
using TPtr = TIntrusivePtr<IContiguousChunk>;
virtual ~IContiguousChunk() = default;
/**
* Should give immutable access to data
*/
virtual TContiguousSpan GetData() const = 0;
/**
* Should give mutable access to underlying data
* If data is shared - data should be copied
* E.g. for TString str.Detach() should be used
* Possibly invalidates previous *GetData*() calls
*/
virtual TMutableContiguousSpan GetDataMut() = 0;
/**
* Should give mutable access to undelying data as fast as possible
* Even if data is shared this property should be ignored
* E.g. in TString const_cast<char *>(str.data()) should be used
* Possibly invalidates previous *GetData*() calls
*/
virtual TMutableContiguousSpan UnsafeGetDataMut() {
return GetDataMut();
}
virtual size_t GetCapacity() const = 0;
};
class TRope;
class TRopeArena;
class TContiguousData {
friend class TRope;
friend class TRopeArena;
class TBackend {
enum class EType : uintptr_t {
STRING,
SHARED_DATA,
ROPE_CHUNK_BACKEND,
};
struct TBackendHolder {
uintptr_t Data[2];
operator bool() const noexcept {
return Data[0] || Data[1];
}
};
constexpr static TBackendHolder Empty = {0, 0};
#ifndef TSTRING_IS_STD_STRING
static_assert(sizeof(TBackendHolder) >= sizeof(TString));
#endif
static_assert(sizeof(TBackendHolder) >= sizeof(NActors::TSharedData));
TBackendHolder Owner = TBackend::Empty; // lower bits contain type of the owner
public:
TBackend() = default;
TBackend(const TBackend& other)
: Owner(Clone(other.Owner))
{}
TBackend(TBackend&& other)
: Owner(std::exchange(other.Owner, TBackend::Empty))
{}
TBackend(TString s)
: Owner(Construct<TString>(EType::STRING, std::move(s)))
{}
TBackend(NActors::TSharedData s)
: Owner(Construct<NActors::TSharedData>(EType::SHARED_DATA, std::move(s)))
{}
TBackend(IContiguousChunk::TPtr backend)
: Owner(Construct<IContiguousChunk::TPtr>(EType::ROPE_CHUNK_BACKEND, std::move(backend)))
{}
~TBackend() {
if (Owner) {
Destroy(Owner);
}
}
TBackend& operator =(const TBackend& other) {
if (Y_UNLIKELY(this == &other)) {
return *this;
}
if (Owner) {
Destroy(Owner);
}
Owner = Clone(other.Owner);
return *this;
}
TBackend& operator =(TBackend&& other) {
if (Y_UNLIKELY(this == &other)) {
return *this;
}
if (Owner) {
Destroy(Owner);
}
Owner = std::exchange(other.Owner, TBackend::Empty);
return *this;
}
bool operator ==(const TBackend& other) const {
return Owner == other.Owner;
}
const void *UniqueId() const {
return reinterpret_cast<const void*>(Owner.Data[0]);
}
TContiguousSpan GetData() const {
return Visit(Owner, [](EType, auto& value) -> TContiguousSpan {
using T = std::decay_t<decltype(value)>;
if constexpr (std::is_same_v<T, TString>) {
return {value.data(), value.size()};
} else if constexpr (std::is_same_v<T, NActors::TSharedData>) {
return {value.data(), value.size()};
} else if constexpr (std::is_same_v<T, IContiguousChunk::TPtr>) {
return value->GetData();
} else {
return {};
}
});
}
TMutableContiguousSpan GetDataMut() {
return Visit(Owner, [](EType, auto& value) -> TMutableContiguousSpan {
using T = std::decay_t<decltype(value)>;
if constexpr (std::is_same_v<T, TString>) {
return {value.Detach(), value.size()};
} else if constexpr (std::is_same_v<T, NActors::TSharedData>) {
if(value.IsShared()) {
value = NActors::TSharedData::Copy(value.data(), value.size());
}
return {value.mutable_data(), value.size()};
} else if constexpr (std::is_same_v<T, IContiguousChunk::TPtr>) {
return value->GetDataMut();
} else {
return {};
}
});
}
TMutableContiguousSpan UnsafeGetDataMut() const {
return Visit(Owner, [](EType, auto& value) -> TMutableContiguousSpan {
using T = std::decay_t<decltype(value)>;
if constexpr (std::is_same_v<T, TString>) {
return {const_cast<char*>(value.data()), value.size()};
} else if constexpr (std::is_same_v<T, NActors::TSharedData>) {
return {const_cast<char*>(value.data()), value.size()};
} else if constexpr (std::is_same_v<T, IContiguousChunk::TPtr>) {
return value->UnsafeGetDataMut();
} else {
return {};
}
});
}
size_t GetCapacity() const {
return Visit(Owner, [](EType, auto& value) {
using T = std::decay_t<decltype(value)>;
if constexpr (std::is_same_v<T, TString>) {
return value.capacity();
} else if constexpr (std::is_same_v<T, NActors::TSharedData>) {
return value.size(); // There is no capacity
} else if constexpr (std::is_same_v<T, IContiguousChunk::TPtr>) {
return value->GetCapacity();
} else {
Y_FAIL();
}
});
}
template <class TType>
bool ContainsNativeType() const {
return Visit(Owner, [](EType, auto& value) {
using T = std::decay_t<decltype(value)>;
return std::is_same_v<T, TType>;
});
}
template <class TResult>
TResult GetRaw() const {
return Visit(Owner, [](EType, auto& value) {
using T = std::decay_t<decltype(value)>;
if constexpr (std::is_same_v<T, TResult>) {
return value;
} else {
Y_FAIL();
return TResult{}; // unreachable
}
});
}
explicit operator bool() const {
return Owner;
}
private:
static constexpr uintptr_t TypeMask = (1 << 3) - 1;
static constexpr uintptr_t ValueMask = ~TypeMask;
template<typename T>
struct TObjectHolder {
struct TWrappedObject : TThrRefBase {
T Value;
TWrappedObject(T&& value)
: Value(std::move(value))
{}
};
TIntrusivePtr<TWrappedObject> Object;
TObjectHolder(T&& object)
: Object(MakeIntrusive<TWrappedObject>(std::move(object)))
{}
};
template<typename TObject>
static TBackendHolder Construct(EType type, TObject object) {
if constexpr (sizeof(TObject) <= sizeof(TBackendHolder)) {
TBackendHolder res = TBackend::Empty;
new(&res) TObject(std::move(object));
Y_VERIFY_DEBUG((res.Data[0] & ValueMask) == res.Data[0]);
res.Data[0] = res.Data[0] | static_cast<uintptr_t>(type);
return res;
} else {
return Construct<TObjectHolder<TObject>>(type, TObjectHolder<TObject>(std::move(object)));
}
}
template<typename TOwner, typename TCallback, bool IsConst = std::is_const_v<TOwner>>
static std::invoke_result_t<TCallback, EType, std::conditional_t<IsConst, const TString&, TString&>> VisitRaw(TOwner& origValue, TCallback&& callback) {
Y_VERIFY_DEBUG(origValue);
const EType type = static_cast<EType>(origValue.Data[0] & TypeMask);
TBackendHolder value(origValue);
value.Data[0] = value.Data[0] & ValueMask;
// bring object type back
Y_SCOPE_EXIT(&value, &origValue, type){
if constexpr(!IsConst) {
value.Data[0] = value.Data[0] | static_cast<uintptr_t>(type);
origValue = value;
} else {
Y_UNUSED(value);
Y_UNUSED(origValue);
Y_UNUSED(type);
}
};
auto caller = [&](auto& value) { return std::invoke(std::forward<TCallback>(callback), type, value); };
auto wrapper = [&](auto& value) {
using T = std::decay_t<decltype(value)>;
if constexpr (sizeof(T) <= sizeof(TBackendHolder)) {
return caller(value);
} else {
return caller(reinterpret_cast<std::conditional_t<IsConst, const TObjectHolder<T>&, TObjectHolder<T>&>>(value));
}
};
switch (type) {
case EType::STRING: return wrapper(reinterpret_cast<std::conditional_t<IsConst, const TString&, TString&>>(value));
case EType::SHARED_DATA: return wrapper(reinterpret_cast<std::conditional_t<IsConst, const NActors::TSharedData&, NActors::TSharedData&>>(value));
case EType::ROPE_CHUNK_BACKEND: return wrapper(reinterpret_cast<std::conditional_t<IsConst, const IContiguousChunk::TPtr&, IContiguousChunk::TPtr&>>(value));
}
Y_FAIL("Unexpected type# %" PRIu64, static_cast<ui64>(type));
}
template<typename TOwner, typename TCallback, bool IsConst = std::is_const_v<TOwner>>
static std::invoke_result_t<TCallback, EType, std::conditional_t<IsConst, const TString&, TString&>> Visit(TOwner& value, TCallback&& callback) {
return VisitRaw(value, [&](EType type, auto& value) {
return std::invoke(std::forward<TCallback>(callback), type, Unwrap(value));
});
}
template<typename T> static T& Unwrap(T& object) { return object; }
template<typename T> static T& Unwrap(TObjectHolder<T>& holder) { return holder.Object->Value; }
template<typename T> static const T& Unwrap(const TObjectHolder<T>& holder) { return holder.Object->Value; }
template<typename TOwner>
static TBackendHolder Clone(TOwner& value) {
return VisitRaw(value, [](EType type, auto& value) { return Construct(type, value); });
}
template<typename TOwner>
static void Destroy(TOwner& value) {
VisitRaw(value, [](EType, auto& value) { CallDtor(value); });
}
template<typename T>
static void CallDtor(T& value) {
value.~T();
}
};
TBackend Backend; // who actually holds the data
const char *Begin; // data start
const char *End; // data end
public:
static constexpr struct TSlice {} Slice{};
TContiguousData()
: Begin(nullptr)
, End(nullptr)
{}
template<typename T>
TContiguousData(T&& backend, const TContiguousSpan& data)
: Backend(std::forward<T>(backend))
, Begin(data.data())
, End(Begin + data.size())
{
Y_VERIFY_DEBUG(Begin != End);
}
explicit TContiguousData(TString s)
: Backend(std::move(s))
{
auto span = Backend.GetData();
Begin = span.data();
End = Begin + span.size();
}
explicit TContiguousData(NActors::TSharedData s)
: Backend(std::move(s))
{
auto span = Backend.GetData();
Begin = span.data();
End = Begin + span.size();
}
TContiguousData(IContiguousChunk::TPtr backend)
: TContiguousData(backend, backend->GetData())
{}
TContiguousData(TSlice, const char *data, size_t size, const TContiguousData& from)
: TContiguousData(from.Backend, {data, size})
{}
TContiguousData(TSlice, const char *begin, const char *end, const TContiguousData& from)
: TContiguousData(Slice, begin, end - begin, from)
{}
TContiguousData(const TContiguousData& other)
: Backend(other.Backend)
, Begin(other.Begin)
, End(other.End)
{}
TContiguousData(TContiguousData&& other)
: Backend(std::move(other.Backend))
, Begin(other.Begin)
, End(other.End)
{}
TContiguousData& operator =(const TContiguousData&) = default;
TContiguousData& operator =(TContiguousData&&) = default;
template <class TType>
bool ContainsNativeType() const {
return Backend.ContainsNativeType<TType>();
}
template <class TResult>
TResult GetRaw() const {
return Backend.GetRaw<TResult>();
}
bool ReferencesWholeContainer() const {
return Backend.GetData().size() == GetSize();
}
size_t GetSize() const {
return End - Begin;
}
size_t GetCapacity() const {
return Backend.GetCapacity();
}
const char* GetData() const {
return Begin;
}
char* GetDataMut() {
const char* oldBegin = Backend.GetData().data();
ptrdiff_t offset = Begin - oldBegin;
size_t size = GetSize();
char* newBegin = Backend.GetDataMut().data();
Begin = newBegin + offset;
End = Begin + size;
return newBegin + offset;
}
char* UnsafeGetDataMut() {
const char* oldBegin = Backend.GetData().data();
ptrdiff_t offset = Begin - oldBegin;
size_t size = GetSize();
char* newBegin = Backend.UnsafeGetDataMut().data();
Begin = newBegin + offset;
End = Begin + size;
return newBegin + offset;
}
template <class TResult>
TResult ExtractUnderlyingContainerOrCopy() const {
if (ContainsNativeType<TResult>() && ReferencesWholeContainer()) {
return GetRaw<TResult>();
}
TResult res = TResult::Uninitialized(GetSize());
char* data = NContiguousDataDetails::TContainerTraits<TResult>::UnsafeGetDataMut(res);
std::memcpy(data, Begin, End - Begin);
return res;
}
TContiguousSpan GetContiguousSpan() const {
return {GetData(), GetSize()};
}
TMutableContiguousSpan GetContiguousSpanMut() {
return {GetDataMut(), GetSize()};
}
TMutableContiguousSpan UnsafeGetContiguousSpanMut() {
return {UnsafeGetDataMut(), GetSize()};
}
size_t size() const {
return GetSize();
}
size_t capacity() const {
return GetCapacity();
}
const char* data() const {
return GetData();
}
operator TContiguousSpan() const noexcept {
return TContiguousSpan(GetData(), GetSize());
}
explicit operator TMutableContiguousSpan() noexcept {
return TMutableContiguousSpan(GetDataMut(), GetSize());
}
};
|