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
|
// Copyright Epic Games, Inc. All Rights Reserved.
#include <zenutil/sessionsclient.h>
#include <zencore/blockingqueue.h>
#include <zencore/compactbinarybuilder.h>
#include <zencore/fmtutils.h>
#include <zencore/iobuffer.h>
#include <zencore/logging/logmsg.h>
#include <zencore/thread.h>
#include <zenhttp/httpclient.h>
#include <thread>
#include <vector>
ZEN_THIRD_PARTY_INCLUDES_START
#include <fmt/format.h>
ZEN_THIRD_PARTY_INCLUDES_END
namespace zen {
//////////////////////////////////////////////////////////////////////////
//
// SessionLogSink — batching log sink that forwards to /sessions/{id}/log
//
static const char*
LogLevelToString(logging::LogLevel Level)
{
switch (Level)
{
case logging::Trace:
return "trace";
case logging::Debug:
return "debug";
case logging::Info:
return "info";
case logging::Warn:
return "warn";
case logging::Err:
return "error";
case logging::Critical:
return "critical";
default:
return "info";
}
}
struct BufferedLogEntry
{
enum class Type : uint8_t
{
Log,
Flush,
Shutdown
};
Type Type = Type::Log;
std::string Level;
std::string Message;
};
class SessionLogSink final : public logging::Sink
{
public:
SessionLogSink(std::string TargetUrl, std::string LogPath) : m_LogPath(std::move(LogPath))
{
HttpClientSettings Settings;
Settings.ConnectTimeout = std::chrono::milliseconds(3000);
m_Http = std::make_unique<HttpClient>(std::move(TargetUrl), Settings);
SetLevel(logging::Info);
m_WorkerThread = std::thread([this]() {
zen::SetCurrentThreadName("SessionLog");
WorkerLoop();
});
}
~SessionLogSink() override
{
BufferedLogEntry ShutdownMsg;
ShutdownMsg.Type = BufferedLogEntry::Type::Shutdown;
m_Queue.Enqueue(std::move(ShutdownMsg));
if (m_WorkerThread.joinable())
{
m_WorkerThread.join();
}
}
void Log(const logging::LogMessage& Msg) override
{
BufferedLogEntry Entry;
Entry.Type = BufferedLogEntry::Type::Log;
Entry.Level = LogLevelToString(Msg.GetLevel());
Entry.Message = std::string(Msg.GetPayload());
m_Queue.Enqueue(std::move(Entry));
}
void Flush() override
{
// Best-effort: enqueue a flush marker so the worker sends any pending entries
BufferedLogEntry FlushMsg;
FlushMsg.Type = BufferedLogEntry::Type::Flush;
m_Queue.Enqueue(std::move(FlushMsg));
}
void SetFormatter(std::unique_ptr<logging::Formatter> /*InFormatter*/) override
{
// No formatting needed — we send raw message text
}
private:
static constexpr size_t BatchSize = 50;
void WorkerLoop()
{
std::vector<BufferedLogEntry> Batch;
Batch.reserve(BatchSize);
BufferedLogEntry Msg;
while (m_Queue.WaitAndDequeue(Msg))
{
if (Msg.Type == BufferedLogEntry::Type::Shutdown)
{
// Drain remaining log entries
BufferedLogEntry Remaining;
while (m_Queue.WaitAndDequeue(Remaining))
{
if (Remaining.Type == BufferedLogEntry::Type::Log)
{
Batch.push_back(std::move(Remaining));
}
}
if (!Batch.empty())
{
SendBatch(Batch);
}
return;
}
if (Msg.Type == BufferedLogEntry::Type::Flush)
{
if (!Batch.empty())
{
SendBatch(Batch);
Batch.clear();
}
continue;
}
// Log entry
Batch.push_back(std::move(Msg));
if (Batch.size() >= BatchSize)
{
SendBatch(Batch);
Batch.clear();
}
else
{
// Drain any additional queued entries without blocking
while (Batch.size() < BatchSize && m_Queue.Size() > 0)
{
BufferedLogEntry Extra;
if (m_Queue.WaitAndDequeue(Extra))
{
if (Extra.Type == BufferedLogEntry::Type::Shutdown)
{
if (!Batch.empty())
{
SendBatch(Batch);
}
// Drain remaining
while (m_Queue.WaitAndDequeue(Extra))
{
if (Extra.Type == BufferedLogEntry::Type::Log)
{
Batch.push_back(std::move(Extra));
}
}
if (!Batch.empty())
{
SendBatch(Batch);
}
return;
}
if (Extra.Type == BufferedLogEntry::Type::Log)
{
Batch.push_back(std::move(Extra));
}
else if (Extra.Type == BufferedLogEntry::Type::Flush)
{
break;
}
}
}
if (!Batch.empty())
{
SendBatch(Batch);
Batch.clear();
}
}
}
}
void SendBatch(const std::vector<BufferedLogEntry>& Batch)
{
try
{
CbObjectWriter Writer;
Writer.BeginArray("entries");
for (const BufferedLogEntry& Entry : Batch)
{
Writer.BeginObject();
Writer << "level" << Entry.Level;
Writer << "message" << Entry.Message;
Writer.EndObject();
}
Writer.EndArray();
HttpClient::Response Result = m_Http->Post(m_LogPath, Writer.Save());
(void)Result; // Best-effort
}
catch (const std::exception&)
{
// Best-effort — silently discard on failure
}
}
std::string m_LogPath;
std::unique_ptr<HttpClient> m_Http;
BlockingQueue<BufferedLogEntry> m_Queue;
std::thread m_WorkerThread;
};
SessionsServiceClient::SessionsServiceClient(Options Opts)
: m_Log(logging::Get("sessionsclient"))
, m_Options(std::move(Opts))
, m_SessionPath(fmt::format("sessions/{}", m_Options.SessionId))
{
HttpClientSettings Settings;
Settings.ConnectTimeout = std::chrono::milliseconds(3000);
m_Http = std::make_unique<HttpClient>(m_Options.TargetUrl, Settings);
}
SessionsServiceClient::~SessionsServiceClient() = default;
CbObject
SessionsServiceClient::BuildRequestBody(CbObjectView Metadata) const
{
CbObjectWriter Writer;
Writer << "appname" << m_Options.AppName;
if (!m_Options.Mode.empty())
{
Writer << "mode" << m_Options.Mode;
}
if (m_Options.JobId != Oid::Zero)
{
Writer << "jobid" << m_Options.JobId;
}
if (Metadata.GetSize() > 0)
{
Writer.AddObject("metadata", Metadata);
}
return Writer.Save();
}
bool
SessionsServiceClient::Announce(CbObjectView Metadata)
{
try
{
CbObject Body = BuildRequestBody(Metadata);
HttpClient::Response Result = m_Http->Post(m_SessionPath, std::move(Body));
if (Result.Error)
{
ZEN_WARN("sessions announce failed for '{}': HTTP error {} - {}",
m_Options.TargetUrl,
static_cast<int>(Result.Error->ErrorCode),
Result.Error->ErrorMessage);
return false;
}
if (!IsHttpOk(Result.StatusCode))
{
ZEN_WARN("sessions announce failed for '{}': HTTP status {}", m_Options.TargetUrl, static_cast<int>(Result.StatusCode));
return false;
}
ZEN_INFO("session announced to '{}'", m_Options.TargetUrl);
return true;
}
catch (const std::exception& Ex)
{
ZEN_WARN("sessions announce failed for '{}': {}", m_Options.TargetUrl, Ex.what());
return false;
}
}
bool
SessionsServiceClient::UpdateMetadata(CbObjectView Metadata)
{
try
{
CbObject Body = BuildRequestBody(Metadata);
MemoryView View = Body.GetView();
IoBuffer Payload = IoBufferBuilder::MakeCloneFromMemory(View, ZenContentType::kCbObject);
HttpClient::Response Result = m_Http->Put(m_SessionPath, Payload);
if (Result.Error)
{
ZEN_WARN("sessions update failed for '{}': HTTP error {} - {}",
m_Options.TargetUrl,
static_cast<int>(Result.Error->ErrorCode),
Result.Error->ErrorMessage);
return false;
}
if (!IsHttpOk(Result.StatusCode))
{
ZEN_WARN("sessions update failed for '{}': HTTP status {}", m_Options.TargetUrl, static_cast<int>(Result.StatusCode));
return false;
}
return true;
}
catch (const std::exception& Ex)
{
ZEN_WARN("sessions update failed for '{}': {}", m_Options.TargetUrl, Ex.what());
return false;
}
}
bool
SessionsServiceClient::Remove()
{
try
{
HttpClient::Response Result = m_Http->Delete(m_SessionPath);
if (Result.Error)
{
ZEN_WARN("sessions remove failed for '{}': HTTP error {} - {}",
m_Options.TargetUrl,
static_cast<int>(Result.Error->ErrorCode),
Result.Error->ErrorMessage);
return false;
}
if (!IsHttpOk(Result.StatusCode))
{
ZEN_WARN("sessions remove failed for '{}': HTTP status {}", m_Options.TargetUrl, static_cast<int>(Result.StatusCode));
return false;
}
ZEN_INFO("session removed from '{}'", m_Options.TargetUrl);
return true;
}
catch (const std::exception& Ex)
{
ZEN_WARN("sessions remove failed for '{}': {}", m_Options.TargetUrl, Ex.what());
return false;
}
}
logging::SinkPtr
SessionsServiceClient::CreateLogSink()
{
std::string LogPath = m_SessionPath + "/log";
return Ref(new SessionLogSink(m_Options.TargetUrl, std::move(LogPath)));
}
} // namespace zen
|