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
|
#include "sync_page_cache_file.h"
#include "record.h"
#include <util/generic/buffer.h>
#include <util/generic/yexception.h>
#include <util/system/align.h>
#include <util/system/event.h>
#include <util/system/file.h>
#include <util/system/info.h>
#include <util/system/mutex.h>
#include <util/system/thread.h>
class TSyncPageCacheFileLogBackend::TImpl: public TNonCopyable {
public:
TImpl(
const TString& path,
size_t maxBufferSize,
size_t maxPendingCacheSize,
TMaybe<TDuration> bufferFlushPeriod
)
: File_{OpenFile(path)}
, MaxBufferSize_{maxBufferSize}
, MaxPendingCacheSize_{maxPendingCacheSize}
, Buffer_{maxBufferSize}
, BufferFlushPeriod_{bufferFlushPeriod}
{
ResetPtrs();
if (BufferFlushPeriod_) {
BufferFlushThreadPtr_ = MakeHolder<TThread>([this] {RunBufferFlushThread();});
BufferFlushThreadPtr_->Start();
}
}
~TImpl() noexcept {
try {
if (BufferFlushThreadPtr_) {
BufferFlushThreadExitWaiter_.Signal();
}
Write();
FlushSync(GuaranteedWrittenPtr_, WrittenPtr_);
} catch (...) {
}
}
void WriteData(const TLogRecord& rec) {
TGuard guard{Lock_};
Buffer_.Append(rec.Data, rec.Len);
if (Buffer_.size() >= MaxBufferSize_) {
WriteAndFlush();
}
}
void ReopenLog() {
TGuard guard{Lock_};
Write();
FlushSync(GuaranteedWrittenPtr_, WrittenPtr_);
File_.LinkTo(OpenFile(File_.GetName()));
ResetPtrs();
}
private:
void ResetPtrs() {
WrittenPtr_ = File_.GetLength();
PageAlignedWrittenPtr_ = AlignDown(WrittenPtr_, GetPageSize());
GuaranteedWrittenPtr_ = WrittenPtr_;
}
static TFile OpenFile(const TString& path) {
return TFile{path, OpenAlways | WrOnly | ForAppend | Seq | NoReuse};
}
static i64 GetPageSize() {
static const i64 pageSize = NSystemInfo::GetPageSize();
Y_ASSUME(IsPowerOf2(pageSize));
return pageSize;
}
void Write() {
try {
File_.Write(Buffer_.Data(), Buffer_.Size());
WrittenPtr_ += Buffer_.Size();
PageAlignedWrittenPtr_ = AlignDown(WrittenPtr_, GetPageSize());
Buffer_.Clear();
} catch (TFileError&) {
Buffer_.Clear();
throw;
}
}
void FlushAsync(const i64 from, const i64 to) {
File_.FlushCache(from, to - from, /* wait = */ false);
}
void FlushSync(const i64 from, const i64 to) {
const i64 begin = AlignDown(from, GetPageSize());
const i64 end = AlignUp(to, GetPageSize());
const i64 length = end - begin;
File_.FlushCache(begin, length, /* wait = */ true);
File_.EvictCache(begin, length);
GuaranteedWrittenPtr_ = to;
}
void WriteAndFlush() {
const i64 prevAlignedEndPtr = PageAlignedWrittenPtr_;
Write();
if (prevAlignedEndPtr < PageAlignedWrittenPtr_) {
FlushAsync(prevAlignedEndPtr, PageAlignedWrittenPtr_);
}
const i64 minPendingCacheOffset = PageAlignedWrittenPtr_ - MaxPendingCacheSize_;
if (minPendingCacheOffset > GuaranteedWrittenPtr_) {
FlushSync(GuaranteedWrittenPtr_, minPendingCacheOffset);
}
}
void RunBufferFlushThread() {
Y_ENSURE(BufferFlushPeriod_);
TInstant deadline;
do {
deadline = TInstant::Now() + *BufferFlushPeriod_;
try {
TGuard guard{Lock_};
if (!Buffer_.Empty()) {
WriteAndFlush();
}
} catch (...) {
Cerr << "Failed to flush eventlog buffer: " << CurrentExceptionMessage() << Endl;
}
} while (!BufferFlushThreadExitWaiter_.WaitD(deadline));
}
private:
TMutex Lock_;
TFile File_;
const size_t MaxBufferSize_ = 0;
const size_t MaxPendingCacheSize_ = 0;
TBuffer Buffer_;
i64 WrittenPtr_ = 0;
i64 PageAlignedWrittenPtr_ = 0;
i64 GuaranteedWrittenPtr_ = 0;
const TMaybe<TDuration> BufferFlushPeriod_;
TManualEvent BufferFlushThreadExitWaiter_;
// thread should be declared last to be destroyed before other props
THolder<TThread> BufferFlushThreadPtr_;
};
TSyncPageCacheFileLogBackend::TSyncPageCacheFileLogBackend(
const TString& path,
size_t maxBufferSize,
size_t maxPengingCacheSize,
TMaybe<TDuration> bufferFlushPeriod
)
: Impl_(MakeHolder<TImpl>(
path,
maxBufferSize,
maxPengingCacheSize,
bufferFlushPeriod
))
{}
TSyncPageCacheFileLogBackend::~TSyncPageCacheFileLogBackend() {
}
void TSyncPageCacheFileLogBackend::WriteData(const TLogRecord& rec) {
Impl_->WriteData(rec);
}
void TSyncPageCacheFileLogBackend::ReopenLog() {
Impl_->ReopenLog();
}
|