Skip to content

Commit 0dda74e

Browse files
committed
[c++] Make agent name configurable name for runner after PR #509.
1 parent 8283ebf commit 0dda74e

File tree

2 files changed

+28
-6
lines changed

2 files changed

+28
-6
lines changed

aeron-client/src/main/cpp/Aeron.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ static const std::chrono::duration<long, std::milli> IDLE_SLEEP_MS_1(1);
2323
static const std::chrono::duration<long, std::milli> IDLE_SLEEP_MS_16(16);
2424
static const std::chrono::duration<long, std::milli> IDLE_SLEEP_MS_100(100);
2525

26+
static const char* AGENT_NAME = "client-conductor";
27+
2628
static long long currentTimeMillis()
2729
{
2830
using namespace std::chrono;
@@ -62,7 +64,7 @@ Aeron::Aeron(Context &context) :
6264
context.m_resourceLingerTimeout,
6365
CncFileDescriptor::clientLivenessTimeout(m_cncBuffer)),
6466
m_idleStrategy(IDLE_SLEEP_MS),
65-
m_conductorRunner(m_conductor, m_idleStrategy, m_context.m_exceptionHandler),
67+
m_conductorRunner(m_conductor, m_idleStrategy, m_context.m_exceptionHandler, AGENT_NAME),
6668
m_conductorInvoker(m_conductor, m_context.m_exceptionHandler)
6769
{
6870
if (m_context.m_useConductorAgentInvoker)

aeron-client/src/main/cpp/concurrent/AgentRunner.h

+25-5
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,31 @@ class AgentRunner
3737
m_agent(agent),
3838
m_idleStrategy(idleStrategy),
3939
m_exceptionHandler(exceptionHandler),
40-
m_running(true)
40+
m_running(true),
41+
m_name("aeron-agent")
42+
{
43+
}
44+
45+
AgentRunner(
46+
Agent& agent, IdleStrategy& idleStrategy, logbuffer::exception_handler_t& exceptionHandler, const std::string name) :
47+
m_agent(agent),
48+
m_idleStrategy(idleStrategy),
49+
m_exceptionHandler(exceptionHandler),
50+
m_running(true),
51+
m_name(name)
4152
{
4253
}
4354

55+
/**
56+
* Name given to the thread running the agent.
57+
*
58+
* @return the name given to the thread running the agent.
59+
*/
60+
inline const std::string& name() const
61+
{
62+
return m_name;
63+
}
64+
4465
/**
4566
* Start the Agent running
4667
*
@@ -50,12 +71,10 @@ class AgentRunner
5071
{
5172
m_thread = std::thread([&]()
5273
{
53-
std::string name("aeron-agent");
54-
5574
#ifdef __APPLE__
56-
pthread_setname_np(name.c_str());
75+
pthread_setname_np(m_name.c_str());
5776
#else
58-
pthread_setname_np(pthread_self(), name.c_str());
77+
pthread_setname_np(pthread_self(), m_name.c_str());
5978
#endif
6079

6180
run();
@@ -112,6 +131,7 @@ class AgentRunner
112131
logbuffer::exception_handler_t& m_exceptionHandler;
113132
std::atomic<bool> m_running;
114133
std::thread m_thread;
134+
std::string m_name;
115135
};
116136

117137
}}

0 commit comments

Comments
 (0)