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
|
#include "formatter.h"
#include <library/cpp/yt/cpu_clock/clock.h>
#include <library/cpp/yt/misc/port.h>
#ifdef YT_USE_SSE42
#include <emmintrin.h>
#include <pmmintrin.h>
#endif
namespace NYT::NLogging {
constexpr int MessageBufferWatermarkSize = 256;
////////////////////////////////////////////////////////////////////////////////
namespace {
// Ultra-fast specialized versions of AppendNumber.
void AppendDigit(TBaseFormatter* out, ui32 value)
{
out->AppendChar('0' + value);
}
void AppendNumber2(TBaseFormatter* out, ui32 value)
{
AppendDigit(out, value / 10);
AppendDigit(out, value % 10);
}
void AppendNumber3(TBaseFormatter* out, ui32 value)
{
AppendDigit(out, value / 100);
AppendDigit(out, (value / 10) % 10);
AppendDigit(out, value % 10);
}
void AppendNumber4(TBaseFormatter* out, ui32 value)
{
AppendDigit(out, value / 1000);
AppendDigit(out, (value / 100) % 10);
AppendDigit(out, (value / 10) % 10);
AppendDigit(out, value % 10);
}
void AppendNumber6(TBaseFormatter* out, ui32 value)
{
AppendDigit(out, value / 100000);
AppendDigit(out, (value / 10000) % 10);
AppendDigit(out, (value / 1000) % 10);
AppendDigit(out, (value / 100) % 10);
AppendDigit(out, (value / 10) % 10);
AppendDigit(out, value % 10);
}
} // namespace
void FormatDateTime(TBaseFormatter* out, TInstant dateTime)
{
tm localTime;
dateTime.LocalTime(&localTime);
AppendNumber4(out, localTime.tm_year + 1900);
out->AppendChar('-');
AppendNumber2(out, localTime.tm_mon + 1);
out->AppendChar('-');
AppendNumber2(out, localTime.tm_mday);
out->AppendChar(' ');
AppendNumber2(out, localTime.tm_hour);
out->AppendChar(':');
AppendNumber2(out, localTime.tm_min);
out->AppendChar(':');
AppendNumber2(out, localTime.tm_sec);
}
void FormatMilliseconds(TBaseFormatter* out, TInstant dateTime)
{
AppendNumber3(out, dateTime.MilliSecondsOfSecond());
}
void FormatMicroseconds(TBaseFormatter* out, TInstant dateTime)
{
AppendNumber6(out, dateTime.MicroSecondsOfSecond());
}
void FormatLevel(TBaseFormatter* out, ELogLevel level)
{
static char chars[] = "?TDIWEAF?";
out->AppendChar(chars[static_cast<int>(level)]);
}
void FormatMessage(TBaseFormatter* out, TStringBuf message)
{
auto current = message.begin();
#ifdef YT_USE_SSE42
auto vectorLow = _mm_set1_epi8(PrintableASCIILow);
auto vectorHigh = _mm_set1_epi8(PrintableASCIIHigh);
#endif
auto appendChar = [&] {
char ch = *current;
if (ch == '\n') {
out->AppendString("\\n");
} else if (ch == '\t') {
out->AppendString("\\t");
} else if (ch < PrintableASCIILow || ch > PrintableASCIIHigh) {
unsigned char unsignedCh = ch;
out->AppendString("\\x");
out->AppendChar(IntToHexLowercase[unsignedCh >> 4]);
out->AppendChar(IntToHexLowercase[unsignedCh & 15]);
} else {
out->AppendChar(ch);
}
++current;
};
while (current < message.end()) {
if (out->GetBytesRemaining() < MessageBufferWatermarkSize) {
out->AppendString(TStringBuf("...<message truncated>"));
break;
}
#ifdef YT_USE_SSE42
// Use SSE for optimization.
if (current + 16 > message.end()) {
appendChar();
} else {
const void* inPtr = &(*current);
void* outPtr = out->GetCursor();
auto value = _mm_lddqu_si128(static_cast<const __m128i*>(inPtr));
if (_mm_movemask_epi8(_mm_cmplt_epi8(value, vectorLow)) ||
_mm_movemask_epi8(_mm_cmpgt_epi8(value, vectorHigh))) {
for (int index = 0; index < 16; ++index) {
appendChar();
}
} else {
_mm_storeu_si128(static_cast<__m128i*>(outPtr), value);
out->Advance(16);
current += 16;
}
}
#else
// Unoptimized version.
appendChar();
#endif
}
}
////////////////////////////////////////////////////////////////////////////////
void TCachingDateFormatter::Format(TBaseFormatter* buffer, TInstant dateTime, bool printMicroseconds)
{
auto currentSecond = dateTime.Seconds();
if (CachedSecond_ != currentSecond) {
Cached_.Reset();
FormatDateTime(&Cached_, dateTime);
CachedSecond_ = currentSecond;
}
buffer->AppendString(Cached_.GetBuffer());
buffer->AppendChar(',');
if (printMicroseconds) {
FormatMicroseconds(buffer, dateTime);
} else {
FormatMilliseconds(buffer, dateTime);
}
}
////////////////////////////////////////////////////////////////////////////////
TPlainTextEventFormatter::TPlainTextEventFormatter(bool enableSourceLocation)
: EnableSourceLocation_(enableSourceLocation)
{ }
void TPlainTextEventFormatter::Format(TBaseFormatter* buffer, const TLogEvent& event)
{
CachingDateFormatter_.Format(buffer, CpuInstantToInstant(event.Instant), true);
buffer->AppendChar('\t');
FormatLevel(buffer, event.Level);
buffer->AppendChar('\t');
buffer->AppendString(event.Category->Name);
buffer->AppendChar('\t');
FormatMessage(buffer, event.MessageRef.ToStringBuf());
buffer->AppendChar('\t');
if (event.ThreadName.Length > 0) {
buffer->AppendString(TStringBuf(event.ThreadName.Buffer.data(), event.ThreadName.Length));
} else if (event.ThreadId != TThreadId()) {
buffer->AppendNumber(event.ThreadId, 16);
}
buffer->AppendChar('\t');
if (event.FiberId != TFiberId()) {
buffer->AppendNumber(event.FiberId, 16);
}
buffer->AppendChar('\t');
if (event.TraceId != TTraceId()) {
buffer->AppendGuid(event.TraceId);
}
if (EnableSourceLocation_) {
buffer->AppendChar('\t');
if (event.SourceFile) {
auto sourceFile = event.SourceFile;
buffer->AppendString(sourceFile.RNextTok(LOCSLASH_C));
buffer->AppendChar(':');
buffer->AppendNumber(event.SourceLine);
}
}
buffer->AppendChar('\n');
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NLogging
|