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
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
|
// Copyright Epic Games, Inc. All Rights Reserved.
#include <zenutil/consul.h>
#include <zencore/compactbinarybuilder.h>
#include <zencore/except_fmt.h>
#include <zencore/filesystem.h>
#include <zencore/fmtutils.h>
#include <zencore/logging.h>
#include <zencore/process.h>
#include <zencore/string.h>
#include <zencore/testing.h>
#include <zencore/testutils.h>
#include <zencore/thread.h>
#include <zencore/timer.h>
#include <zenhttp/httpserver.h>
#include <fmt/format.h>
namespace zen::consul {
//////////////////////////////////////////////////////////////////////////
struct ConsulProcess::Impl
{
Impl(std::string_view BaseUri, std::string_view Token = "") : m_Token(Token), m_HttpClient(BaseUri) {}
~Impl() = default;
void SpawnConsulAgent()
{
if (m_ProcessHandle.IsValid())
{
return;
}
CreateProcOptions Options;
Options.Flags |= CreateProcOptions::Flag_NewProcessGroup;
const std::filesystem::path ConsulExe = GetRunningExecutablePath().parent_path() / ("consul" ZEN_EXE_SUFFIX_LITERAL);
CreateProcResult Result = CreateProc(ConsulExe, "consul" ZEN_EXE_SUFFIX_LITERAL " agent -dev", Options);
if (Result)
{
m_ProcessHandle.Initialize(Result);
Stopwatch Timer;
// Poll to check when the agent is ready
HttpClient::KeyValueMap AdditionalHeaders;
if (!m_Token.empty())
{
AdditionalHeaders.Entries.emplace("X-Consul-Token", m_Token);
}
do
{
Sleep(100);
HttpClient::Response Resp = m_HttpClient.Get("v1/status/leader", AdditionalHeaders);
if (Resp)
{
ZEN_INFO("Consul agent started successfully (waited {})", NiceTimeSpanMs(Timer.GetElapsedTimeMs()));
return;
}
} while (Timer.GetElapsedTimeMs() < 10000);
}
// Report failure!
ZEN_WARN("Consul agent failed to start within timeout period");
}
void StopConsulAgent()
{
if (!m_ProcessHandle.IsValid())
{
return;
}
// This waits for the process to exit and also resets the handle
m_ProcessHandle.Kill();
}
private:
ProcessHandle m_ProcessHandle;
std::string m_Token;
HttpClient m_HttpClient;
};
ConsulProcess::ConsulProcess() : m_Impl(std::make_unique<Impl>("http://localhost:8500/"))
{
}
ConsulProcess::~ConsulProcess()
{
}
void
ConsulProcess::SpawnConsulAgent()
{
m_Impl->SpawnConsulAgent();
}
void
ConsulProcess::StopConsulAgent()
{
m_Impl->StopConsulAgent();
}
//////////////////////////////////////////////////////////////////////////
ConsulClient::ConsulClient(const Configuration& Config) : m_Config(Config), m_HttpClient(m_Config.BaseUri)
{
}
ConsulClient::~ConsulClient()
{
}
void
ConsulClient::SetKeyValue(std::string_view Key, std::string_view Value)
{
HttpClient::KeyValueMap AdditionalHeaders;
ApplyCommonHeaders(AdditionalHeaders);
AdditionalHeaders.Entries.emplace(HttpClient::Accept(HttpContentType::kJSON));
IoBuffer ValueBuffer = IoBufferBuilder::MakeFromMemory(MakeMemoryView(Value));
ValueBuffer.SetContentType(HttpContentType::kText);
HttpClient::Response Result = m_HttpClient.Put(fmt::format("v1/kv/{}", Key), ValueBuffer, AdditionalHeaders);
if (!Result)
{
throw runtime_error("ConsulClient::SetKeyValue() failed to set key '{}' ({})", Key, Result.ErrorMessage(""));
}
}
std::string
ConsulClient::GetKeyValue(std::string_view Key)
{
HttpClient::KeyValueMap AdditionalHeaders;
ApplyCommonHeaders(AdditionalHeaders);
HttpClient::Response Result = m_HttpClient.Get(fmt::format("v1/kv/{}?raw", Key), AdditionalHeaders);
if (!Result)
{
throw runtime_error("ConsulClient::GetKeyValue() failed to get key '{}' ({})", Key, Result.ErrorMessage(""));
}
return Result.ToText();
}
void
ConsulClient::DeleteKey(std::string_view Key)
{
HttpClient::KeyValueMap AdditionalHeaders;
ApplyCommonHeaders(AdditionalHeaders);
HttpClient::Response Result = m_HttpClient.Delete(fmt::format("v1/kv/{}", Key), AdditionalHeaders);
if (!Result)
{
throw runtime_error("ConsulClient::DeleteKey() failed to delete key '{}' ({})", Key, Result.ErrorMessage(""));
}
}
bool
ConsulClient::RegisterService(const ServiceRegistrationInfo& Info)
{
using namespace std::literals;
HttpClient::KeyValueMap AdditionalHeaders;
ApplyCommonHeaders(AdditionalHeaders);
AdditionalHeaders.Entries.emplace(HttpClient::Accept(HttpContentType::kJSON));
HttpClient::KeyValueMap AdditionalParameters(std::make_pair<std::string, std::string>("replace-existing-checks", "true"));
CbObjectWriter Writer;
{
Writer.AddString("ID"sv, Info.ServiceId);
Writer.AddString("Name"sv, Info.ServiceName);
if (!Info.Address.empty())
{
Writer.AddString("Address"sv, Info.Address);
}
Writer.AddInteger("Port"sv, Info.Port);
if (!Info.Tags.empty())
{
Writer.BeginArray("Tags"sv);
for (const std::pair<std::string, std::string>& Tag : Info.Tags)
{
Writer.AddString(fmt::format("{}:{}", Tag.first, Tag.second));
}
Writer.EndArray(); // Tags
}
if (Info.HealthIntervalSeconds != 0)
{
// Consul requires Interval whenever HTTP is specified; omit the Check block entirely
// when no interval is configured (e.g. during Provisioning).
Writer.BeginObject("Check"sv);
{
Writer.AddString(
"HTTP"sv,
fmt::format("http://{}:{}/{}", Info.Address.empty() ? "localhost" : Info.Address, Info.Port, Info.HealthEndpoint));
Writer.AddString("Interval"sv, fmt::format("{}s", Info.HealthIntervalSeconds));
if (Info.DeregisterAfterSeconds != 0)
{
Writer.AddString("DeregisterCriticalServiceAfter"sv, fmt::format("{}s", Info.DeregisterAfterSeconds));
}
}
Writer.EndObject(); // Check
}
}
ExtendableStringBuilder<512> SB;
CompactBinaryToJson(Writer.Save(), SB);
IoBuffer PayloadBuffer(IoBuffer::Wrap, SB.Data(), SB.Size());
PayloadBuffer.SetContentType(HttpContentType::kJSON);
HttpClient::Response Result = m_HttpClient.Put("v1/agent/service/register", PayloadBuffer, AdditionalHeaders, AdditionalParameters);
if (!Result)
{
ZEN_WARN("ConsulClient::RegisterService() failed to register service '{}' ({})", Info.ServiceId, Result.ErrorMessage(""));
return false;
}
return true;
}
bool
ConsulClient::DeregisterService(std::string_view ServiceId)
{
using namespace std::literals;
HttpClient::KeyValueMap AdditionalHeaders;
ApplyCommonHeaders(AdditionalHeaders);
AdditionalHeaders.Entries.emplace(HttpClient::Accept(HttpContentType::kJSON));
HttpClient::Response Result = m_HttpClient.Put(fmt::format("v1/agent/service/deregister/{}", ServiceId), IoBuffer{}, AdditionalHeaders);
if (Result)
{
return true;
}
// Agent deregister failed — fall back to catalog deregister.
// This handles cases where the service was registered via a different Consul agent
// (e.g. load-balanced endpoint routing to different agents).
std::string NodeName = GetNodeName();
if (!NodeName.empty())
{
CbObjectWriter Writer;
Writer.AddString("Node"sv, NodeName);
Writer.AddString("ServiceID"sv, ServiceId);
ExtendableStringBuilder<256> SB;
CompactBinaryToJson(Writer.Save(), SB);
IoBuffer PayloadBuffer(IoBuffer::Wrap, SB.Data(), SB.Size());
PayloadBuffer.SetContentType(HttpContentType::kJSON);
HttpClient::Response CatalogResult = m_HttpClient.Put("v1/catalog/deregister", PayloadBuffer, AdditionalHeaders);
if (CatalogResult)
{
ZEN_INFO("ConsulClient::DeregisterService() deregistered service '{}' via catalog fallback (agent error: {})",
ServiceId,
Result.ErrorMessage(""));
return true;
}
ZEN_WARN("ConsulClient::DeregisterService() failed to deregister service '{}' (agent: {}, catalog: {})",
ServiceId,
Result.ErrorMessage(""),
CatalogResult.ErrorMessage(""));
}
else
{
ZEN_WARN(
"ConsulClient::DeregisterService() failed to deregister service '{}' (agent: {}, could not determine node name for catalog "
"fallback)",
ServiceId,
Result.ErrorMessage(""));
}
return false;
}
std::string
ConsulClient::GetNodeName()
{
using namespace std::literals;
HttpClient::KeyValueMap AdditionalHeaders;
ApplyCommonHeaders(AdditionalHeaders);
HttpClient::Response Result = m_HttpClient.Get("v1/agent/self", AdditionalHeaders);
if (!Result)
{
return {};
}
std::string JsonError;
CbFieldIterator Root = LoadCompactBinaryFromJson(Result.AsText(), JsonError);
if (!Root || !JsonError.empty())
{
return {};
}
for (CbFieldView Field : Root)
{
if (Field.GetName() == "Config"sv)
{
CbObjectView Config = Field.AsObjectView();
if (Config)
{
return std::string(Config["NodeName"sv].AsString());
}
}
}
return {};
}
void
ConsulClient::ApplyCommonHeaders(HttpClient::KeyValueMap& InOutHeaderMap)
{
std::string Token;
if (!m_Config.StaticToken.empty())
{
Token = m_Config.StaticToken;
}
else if (!m_Config.TokenEnvName.empty())
{
Token = GetEnvVariable(m_Config.TokenEnvName);
}
if (!Token.empty())
{
InOutHeaderMap.Entries.emplace("X-Consul-Token", Token);
}
}
bool
ConsulClient::FindServiceInJson(std::string_view Json, std::string_view ServiceId)
{
using namespace std::literals;
std::string JsonError;
CbFieldIterator Root = LoadCompactBinaryFromJson(Json, JsonError);
if (Root && JsonError.empty())
{
for (CbFieldView RootIterator : Root)
{
CbObjectView ServiceObject = RootIterator.AsObjectView();
if (ServiceObject)
{
for (CbFieldView ServiceIterator : ServiceObject)
{
CbObjectView ObjectIterator = ServiceIterator.AsObjectView();
if (ObjectIterator["ID"sv].AsString() == ServiceId)
{
return true;
}
}
}
}
}
return false;
}
bool
ConsulClient::HasService(std::string_view ServiceId)
{
HttpClient::KeyValueMap AdditionalHeaders;
ApplyCommonHeaders(AdditionalHeaders);
HttpClient::Response Result = m_HttpClient.Get("v1/agent/services", AdditionalHeaders);
if (!Result)
{
return false;
}
return FindServiceInJson(Result.AsText(), ServiceId);
}
bool
ConsulClient::WatchService(std::string_view ServiceId, uint64_t& InOutIndex, int WaitSeconds)
{
HttpClient::KeyValueMap AdditionalHeaders;
ApplyCommonHeaders(AdditionalHeaders);
// Note: m_HttpClient uses unlimited HTTP timeout (Timeout{0}); the WaitSeconds parameter
// governs the server-side bound on the blocking query. Do not add a separate client timeout.
HttpClient::KeyValueMap Parameters({{"index", std::to_string(InOutIndex)}, {"wait", fmt::format("{}s", WaitSeconds)}});
HttpClient::Response Result = m_HttpClient.Get("v1/agent/services", AdditionalHeaders, Parameters);
if (!Result)
{
return false;
}
auto IndexIt = Result.Header->find("X-Consul-Index");
if (IndexIt != Result.Header->end())
{
std::optional<uint64_t> ParsedIndex = ParseInt<uint64_t>(IndexIt->second);
if (ParsedIndex.has_value())
{
InOutIndex = ParsedIndex.value();
}
}
return FindServiceInJson(Result.AsText(), ServiceId);
}
std::string
ConsulClient::GetAgentServicesJson()
{
HttpClient::KeyValueMap AdditionalHeaders;
ApplyCommonHeaders(AdditionalHeaders);
HttpClient::Response Result = m_HttpClient.Get("v1/agent/services", AdditionalHeaders);
if (!Result)
{
return "{}";
}
return Result.ToText();
}
std::string
ConsulClient::GetAgentChecksJson()
{
HttpClient::KeyValueMap AdditionalHeaders;
ApplyCommonHeaders(AdditionalHeaders);
HttpClient::Response Result = m_HttpClient.Get("v1/agent/checks", AdditionalHeaders);
if (!Result)
{
return "{}";
}
return Result.ToText();
}
//////////////////////////////////////////////////////////////////////////
ServiceRegistration::ServiceRegistration(ConsulClient* Client, const ServiceRegistrationInfo& Info) : m_Client(Client), m_Info(Info)
{
m_RegistrationThread = std::thread(&ServiceRegistration::RegistrationLoop, this);
}
ServiceRegistration::~ServiceRegistration()
{
try
{
m_StopEvent.Set();
if (m_RegistrationThread.joinable())
{
m_RegistrationThread.join();
}
if (m_IsRegistered.load())
{
if (!m_Client->DeregisterService(m_Info.ServiceId))
{
ZEN_WARN("ServiceRegistration: Failed to deregister service '{}' during cleanup", m_Info.ServiceId);
}
}
}
catch (const std::exception& Ex)
{
ZEN_ERROR(":~ServiceRegistration() threw exception: {}", Ex.what());
}
}
void
ServiceRegistration::WaitForReadyEvent(int MaxWaitMS)
{
if (m_IsRegistered.load())
{
return;
}
m_ReadyWakeupEvent.Wait(MaxWaitMS);
}
void
ServiceRegistration::RegistrationLoop()
{
try
{
SetCurrentThreadName("ConsulRegistration");
// Exponential backoff delays: 100ms, 200ms, 400ms
constexpr int BackoffDelaysMs[] = {100, 200, 400};
constexpr int MaxAttempts = 3;
constexpr int RetryIntervalMs = 5000;
while (true)
{
bool Succeeded = false;
// Try to register with exponential backoff
for (int Attempt = 0; Attempt < MaxAttempts; ++Attempt)
{
if (m_Client->RegisterService(m_Info))
{
Succeeded = true;
break;
}
if (m_StopEvent.Wait(BackoffDelaysMs[Attempt]))
{
return;
}
}
if (Succeeded || m_Client->RegisterService(m_Info))
{
break;
}
// All attempts failed, log warning and wait before retrying
ZEN_WARN("ServiceRegistration: Failed to register service '{}' after {} attempts, retrying in {}s",
m_Info.ServiceId,
MaxAttempts + 1,
RetryIntervalMs / 1000);
// Wait for 5 seconds before retrying; m_StopEvent.Set() in the destructor
// wakes this immediately so the thread exits without polling.
if (m_StopEvent.Wait(RetryIntervalMs))
{
return;
}
}
ZEN_INFO("ServiceRegistration: Successfully registered service '{}'", m_Info.ServiceId);
m_IsRegistered.store(true);
m_ReadyWakeupEvent.Set();
}
catch (const std::exception& Ex)
{
ZEN_ERROR("ServiceRegistration::RegistrationLoop failed with exception: {}", Ex.what());
}
}
//////////////////////////////////////////////////////////////////////////
// Tests
#if ZEN_WITH_TESTS
void
consul_forcelink()
{
}
struct MockHealthService : public HttpService
{
std::atomic<bool> FailHealth{false};
std::atomic<int> HealthCheckCount{0};
const char* BaseUri() const override { return "/"; }
void HandleRequest(HttpServerRequest& Request) override
{
std::string_view Uri = Request.RelativeUri();
if (Uri == "health/" || Uri == "health")
{
HealthCheckCount.fetch_add(1);
if (FailHealth.load())
{
Request.WriteResponse(HttpResponseCode::ServiceUnavailable);
}
else
{
Request.WriteResponse(HttpResponseCode::OK, HttpContentType::kText, "ok");
}
return;
}
Request.WriteResponse(HttpResponseCode::NotFound);
}
};
struct TestHealthServer
{
MockHealthService Mock;
void Start()
{
m_TmpDir.emplace();
m_Server = CreateHttpServer(HttpServerConfig{.ServerClass = "asio"});
m_Port = m_Server->Initialize(0, m_TmpDir->Path() / "http");
REQUIRE(m_Port != -1);
m_Server->RegisterService(Mock);
m_ServerThread = std::thread([this]() { m_Server->Run(false); });
}
int Port() const { return m_Port; }
~TestHealthServer()
{
if (m_Server)
{
m_Server->RequestExit();
}
if (m_ServerThread.joinable())
{
m_ServerThread.join();
}
if (m_Server)
{
m_Server->Close();
}
}
private:
std::optional<ScopedTemporaryDirectory> m_TmpDir;
Ref<HttpServer> m_Server;
std::thread m_ServerThread;
int m_Port = -1;
};
static bool
WaitForCondition(std::function<bool()> Predicate, int TimeoutMs, int PollIntervalMs = 200)
{
Stopwatch Timer;
while (Timer.GetElapsedTimeMs() < static_cast<uint64_t>(TimeoutMs))
{
if (Predicate())
{
return true;
}
Sleep(PollIntervalMs);
}
return Predicate();
}
static std::string
GetCheckStatus(ConsulClient& Client, std::string_view ServiceId)
{
using namespace std::literals;
std::string JsonError;
CbFieldIterator ChecksRoot = LoadCompactBinaryFromJson(Client.GetAgentChecksJson(), JsonError);
if (!ChecksRoot || !JsonError.empty())
{
return {};
}
for (CbFieldView F : ChecksRoot)
{
if (!F.IsObject())
{
continue;
}
for (CbFieldView C : F.AsObjectView())
{
CbObjectView Check = C.AsObjectView();
if (Check["ServiceID"sv].AsString() == ServiceId)
{
return std::string(Check["Status"sv].AsString());
}
}
}
return {};
}
TEST_SUITE_BEGIN("util.consul");
TEST_CASE("util.consul.service_lifecycle")
{
ConsulProcess ConsulProc;
ConsulProc.SpawnConsulAgent();
TestHealthServer HealthServer;
HealthServer.Start();
ConsulClient Client({.BaseUri = "http://localhost:8500/"});
const std::string ServiceId = "test-health-svc";
ServiceRegistrationInfo Info;
Info.ServiceId = ServiceId;
Info.ServiceName = "zen-test-health";
Info.Address = "127.0.0.1";
Info.Port = static_cast<uint16_t>(HealthServer.Port());
Info.HealthEndpoint = "health/";
Info.HealthIntervalSeconds = 1;
Info.DeregisterAfterSeconds = 60;
// Phase 1: Register and verify Consul sends health checks to our service
REQUIRE(Client.RegisterService(Info));
REQUIRE(Client.HasService(ServiceId));
REQUIRE(WaitForCondition([&]() { return HealthServer.Mock.HealthCheckCount.load() >= 1; }, 10000));
CHECK(HealthServer.Mock.HealthCheckCount.load() >= 1);
CHECK_EQ(GetCheckStatus(Client, ServiceId), "passing");
// Phase 2: Explicit deregister
REQUIRE(Client.DeregisterService(ServiceId));
CHECK_FALSE(Client.HasService(ServiceId));
// Phase 3: Register again, verify passing, then fail health and verify check goes critical
HealthServer.Mock.HealthCheckCount.store(0);
HealthServer.Mock.FailHealth.store(false);
REQUIRE(Client.RegisterService(Info));
REQUIRE(Client.HasService(ServiceId));
REQUIRE(WaitForCondition([&]() { return HealthServer.Mock.HealthCheckCount.load() >= 1; }, 10000));
CHECK_EQ(GetCheckStatus(Client, ServiceId), "passing");
HealthServer.Mock.FailHealth.store(true);
// Wait for Consul to observe the failing check
REQUIRE(WaitForCondition([&]() { return GetCheckStatus(Client, ServiceId) == "critical"; }, 10000));
CHECK_EQ(GetCheckStatus(Client, ServiceId), "critical");
// Phase 4: Explicit deregister while critical
REQUIRE(Client.DeregisterService(ServiceId));
CHECK_FALSE(Client.HasService(ServiceId));
// Phase 5: Deregister an already-deregistered service - should not crash
Client.DeregisterService(ServiceId);
CHECK_FALSE(Client.HasService(ServiceId));
ConsulProc.StopConsulAgent();
}
TEST_SUITE_END();
#endif
} // namespace zen::consul
|