Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit da3e366

Browse files
committedJan 28, 2025·
chore: address review comments
1 parent 104d62a commit da3e366

6 files changed

+16
-28
lines changed
 

‎driver/custom_endpoint_monitor.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ bool CUSTOM_ENDPOINT_MONITOR::has_custom_endpoint_info() const {
9393
}
9494

9595
void CUSTOM_ENDPOINT_MONITOR::run() {
96-
MYLOG_TRACE(this->logger, 0, "Starting custom endpoint monitor for '%s'", this->custom_endpoint_host.c_str());
9796
if (thread_pool.size() == 1) {
9897
// Each monitor should only have 1 thread.
9998
return;
10099
}
100+
MYLOG_TRACE(this->logger, 0, "Starting custom endpoint monitor for '%s'", this->custom_endpoint_host.c_str());
101101
thread_pool.resize(1);
102102
thread_pool.push([=](int id) {
103103
++SDK_HELPER;

‎driver/failover_handler.cc

+4-4
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ bool FAILOVER_HANDLER::failover_to_reader(const char*& new_error_code, const cha
511511
if (result->connected) {
512512
current_host = result->new_host;
513513
connection_handler->update_connection(result->new_connection, current_host->get_host());
514-
new_error_code = "08S02";
514+
new_error_code = "08S02"; // Failover succeeded error code.
515515
error_msg = "The active SQL connection has changed.";
516516
MYLOG_DBC_TRACE(dbc,
517517
"[FAILOVER_HANDLER] The active SQL connection has changed "
@@ -520,7 +520,7 @@ bool FAILOVER_HANDLER::failover_to_reader(const char*& new_error_code, const cha
520520
return true;
521521
} else {
522522
MYLOG_DBC_TRACE(dbc, "[FAILOVER_HANDLER] Unable to establish SQL connection to reader node.");
523-
new_error_code = "08S01";
523+
new_error_code = "08S01"; // Failover failed error code.
524524
error_msg = "The active SQL connection was lost.";
525525
return false;
526526
}
@@ -549,7 +549,7 @@ bool FAILOVER_HANDLER::failover_to_writer(const char*& new_error_code, const cha
549549
const auto filtered_topology = this->topology_service->get_filtered_topology(new_topology);
550550
const auto allowed_hosts = filtered_topology->get_instances();
551551
if (std::find(allowed_hosts.begin(), allowed_hosts.end(), new_host) == allowed_hosts.end()) {
552-
new_error_code = "08S01";
552+
new_error_code = "08S01"; // Failover failed error code.
553553
error_msg = "The active SQL connection was lost.";
554554
MYLOG_DBC_TRACE(
555555
dbc,
@@ -562,7 +562,7 @@ bool FAILOVER_HANDLER::failover_to_writer(const char*& new_error_code, const cha
562562

563563
connection_handler->update_connection(result->new_connection, new_host->get_host());
564564

565-
new_error_code = "08S02";
565+
new_error_code = "08S02"; // Failover succeeded error code.
566566
error_msg = "The active SQL connection has changed.";
567567
MYLOG_DBC_TRACE(
568568
dbc,

‎driver/host_info.cc

-8
Original file line numberDiff line numberDiff line change
@@ -56,33 +56,25 @@ HOST_INFO::HOST_INFO(const char* host, int port, HOST_STATE state, bool is_write
5656
HOST_INFO::~HOST_INFO() {}
5757

5858
/**
59-
* Returns the host endpoint.
60-
*
6159
* @return the host endpoint
6260
*/
6361
std::string HOST_INFO::get_host() {
6462
return host;
6563
}
6664

6765
/**
68-
* Returns the host name.
69-
*
7066
* @return the host name
7167
*/
7268
std::string HOST_INFO::get_host_id() { return host_id; }
7369

7470
/**
75-
* Returns the port.
76-
*
7771
* @return the port
7872
*/
7973
int HOST_INFO::get_port() {
8074
return port;
8175
}
8276

8377
/**
84-
* Returns a host:port representation of this host.
85-
*
8678
* @return the host:port representation of this host
8779
*/
8880
std::string HOST_INFO::get_host_port_pair() {

‎driver/topology_service.cc

+4-12
Original file line numberDiff line numberDiff line change
@@ -191,21 +191,13 @@ std::shared_ptr<CLUSTER_TOPOLOGY_INFO> TOPOLOGY_SERVICE::get_filtered_topology(s
191191
std::set<std::string> blocked_list = this->allowed_and_blocked_hosts->get_blocked_host_ids();
192192

193193
const std::shared_ptr<CLUSTER_TOPOLOGY_INFO> filtered_topology = std::make_shared<CLUSTER_TOPOLOGY_INFO>();
194-
if (allowed_list.size() > 0) {
195-
for (const auto& host : topology->get_instances()) {
196-
if (allowed_list.find(host->get_host_id()) != allowed_list.end()) {
197-
filtered_topology->add_host(host);
198-
}
194+
for (const auto& host : topology->get_instances()) {
195+
if (allowed_list.find(host->get_host_id()) != allowed_list.end()
196+
|| blocked_list.find(host->get_host_id()) == blocked_list.end()) {
197+
filtered_topology->add_host(host);
199198
}
200199
}
201200

202-
if (blocked_list.size() > 0) {
203-
for (const auto& host : topology->get_instances()) {
204-
if (blocked_list.find(host->get_host_id()) == blocked_list.end()) {
205-
filtered_topology->add_host(host);
206-
}
207-
}
208-
}
209201
return filtered_topology;
210202
}
211203

‎integration/connection_string_builder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,4 +205,4 @@ class ConnectionStringBuilder {
205205
int length = 0;
206206
};
207207

208-
#endif /* __CONNECTIONSTRINGBUILDER_H__ */
208+
#endif /* __CONNECTIONSTRINGBUILDER_H__ */

‎integration/custom_endpoint_integration_test.cc

+6-2
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,13 @@ class CustomEndpointIntegrationTest : public BaseFailoverIntegrationTest {
5252

5353
static void TearDownTestSuite() { Aws::ShutdownAPI(options); }
5454
void SetUp() override {
55-
SQLAllocHandle(SQL_HANDLE_ENV, nullptr, &env);
55+
if (SQLAllocHandle(SQL_HANDLE_ENV, nullptr, &env) != SQL_SUCCESS) {
56+
throw std::runtime_error("Failed to allocate handles for integration tests.");
57+
}
5658
SQLSetEnvAttr(env, SQL_ATTR_ODBC_VERSION, reinterpret_cast<SQLPOINTER>(SQL_OV_ODBC3), 0);
57-
SQLAllocHandle(SQL_HANDLE_DBC, env, &dbc);
59+
if (SQLAllocHandle(SQL_HANDLE_DBC, env, &dbc) != SQL_SUCCESS) {
60+
throw std::runtime_error("Failed to allocate handles for integration tests.");
61+
}
5862

5963
Aws::Auth::AWSCredentials credentials =
6064
SESSION_TOKEN.empty() ? Aws::Auth::AWSCredentials(Aws::String(ACCESS_KEY), Aws::String(SECRET_ACCESS_KEY))

0 commit comments

Comments
 (0)
Please sign in to comment.