blob: c47b8648b2546e9bd79c6291f3c17b71add3345d (
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
|
#include "mkql_buffer.h"
namespace NKikimr {
namespace NMiniKQL {
const size_t TBufferPage::PageCapacity = TBufferPage::PageAllocSize - sizeof(TBufferPage);
TBufferPage* TBufferPage::Allocate() {
static_assert(PageAllocSize <= std::numeric_limits<ui32>::max());
static_assert(sizeof(TBufferPage) < PageAllocSize, "Page allocation size is too small");
void* ptr = malloc(PageAllocSize);
if (!ptr) {
throw std::bad_alloc();
}
TBufferPage* result = ::new (ptr) TBufferPage();
return result;
}
void TBufferPage::Free(TBufferPage* page) {
free(page);
}
void TPagedBuffer::AppendPage() {
TBufferPage* page = nullptr;
if (Tail_) {
auto tailPage = TBufferPage::GetPage(Tail_);
auto next = tailPage->Next();
if (next) {
page = next;
page->Clear();
} else {
page = TBufferPage::Allocate();
tailPage->Next_ = page;
}
tailPage->Size_ = TailSize_;
ClosedPagesSize_ += TailSize_;
} else {
Y_DEBUG_ABORT_UNLESS(Head_ == nullptr);
page = TBufferPage::Allocate();
Head_ = page->Data();
}
TailSize_ = 0;
Tail_ = page->Data();
}
using NYql::TChunkedBuffer;
TChunkedBuffer TPagedBuffer::AsChunkedBuffer(const TConstPtr& buffer) {
TChunkedBuffer result;
buffer->ForEachPage([&](const char* data, size_t size) {
result.Append(TStringBuf(data, size), buffer);
});
return result;
}
} // NMiniKQL
} // NKikimr
|