开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

Re: C++ preventing EReader reading when socket is closed


 

Hello David Armour,

I have been encountering a similar issue regarding the TWS application.
My goal is to simulate scenarios where the TWS application experiences a freeze or requires a restart due to memory-related issues, and to ensure a smooth failover to minimize disruptions.
To test this, I manually restart the TWS application after it has been successfully launched and logged in. Once both the TWS application and TWS API are up and running, I initiate a manual restart directly from within the TWS application itself to observe how the reconnection process behaves.
For handling reconnections after such restarts, I have been using the following pieces of code:

printf("Connection Closed\n");
void CBOEEngine::Connect() {
std::cout << "Connect to TWS called\n";

dbglogger_ << "Connect to TWS called\n";
dbglogger_ << "TRYING CONNECTING TO HOST_IP " << host_ip << " HOST_PORT " << host_port << " WITH CLIENT ID "
<< clientId << "\n";

//Disconnect is already connected
if (m_pClient && m_pClient->isConnected()) {
DBGLOG_CLASS_FUNC_LINE << "CLIENT ALREADY CONNECTED DISCONNECTING CLIENT & TRYING\n" << DBGLOG_ENDL_FLUSH;
m_pClient->eDisconnect();
}
//std::this_thread::sleep_for(std::chrono::seconds(1));

if (m_pReader) {
DBGLOG_CLASS_FUNC_LINE << "Deleting previous reader instance\n" << DBGLOG_ENDL_FLUSH;
m_pReader->stop();
m_pReader.reset();
}
//std::this_thread::sleep_for(std::chrono::seconds(1));

DBGLOG_CLASS_FUNC_LINE << "After disconnection request connection_result: " << m_pClient->isConnected() << DBGLOG_ENDL_FLUSH;

//! [connect]
bool bRes = m_pClient->eConnect((const char*)host_ip.c_str(), host_port, clientId, m_extraAuth);
//std::this_thread::sleep_for(std::chrono::seconds(1));

bool connection_result = m_pClient->isConnected();

DBGLOG_CLASS_FUNC_LINE << "bRes: " << bRes << " connection_result: " << connection_result << DBGLOG_ENDL_FLUSH;

if (bRes && connection_result) {
printf("Connected to %s:%d clientId:%d\n", m_pClient->host().c_str(), m_pClient->port(), clientId);
//! [ereader]

if(!m_pReader)
dbglogger_ << "Reader class instance is destroyed\n";

if (m_pClient && m_pClient->isConnected()) {
m_pReader = std::unique_ptr<EReader>(new EReader(m_pClient, &m_osSignal));
if (m_pReader) {
m_pReader->start();
} else {
dbglogger_ << "Failed to create EReader instance\n";
exit(1);
}
} else {
dbglogger_ << "Client is not connected. Cannot create EReader\n";
exit(1);
}

//! [ereader]
p_engine_listener_->OnConnect(true);
is_connected = true;

} else {
dbglogger_ << "CONNECTION FAILED " << host_ip << " HOST_PORT " << host_port << " @ CLIENT ID " << clientId << "\n";
dbglogger_ << "RETRY "
<< "\n";
printf("Cannot connect to %s:%d clientId:%d\n", m_pClient->host().c_str(), m_pClient->port(), clientId);

exit(1);
}

return;
// return bRes;
}

m_pClient->eDisconnect();
void EClientSocket::eDisconnect(bool resetState)
{
if ( m_fd >= 0 )
// close socket
SocketClose( m_fd);
m_fd = -1;

if (resetState) {
eDisconnectBase();
}
}
?
?
m_pReader->stop();
void EReader::stop() {
if (m_hReadThread) {
m_isAlive = false;
#if defined(IB_POSIX)
if (!pthread_equal(pthread_self(), m_hReadThread))
pthread_join(m_hReadThread, NULL);
#elif defined(IB_WIN32)
if (!(GetCurrentThreadId() == GetThreadId(m_hReadThread)))
WaitForSingleObject(m_hReadThread, INFINITE);
#endif
}
}

However, during the reconnection process, I frequently encounter the following errors
EReader::processMsgs (this=0x0) at IBUtilsCode/EReader.cpp (Segmentation Fault)

Connection Errors?
Msg Not connected
Socket is closed.

Interestingly, I do not experience these issues when I manually turn off the internet connection and then re-enable it after some time. In such cases, the reconnection process appears to handle the disconnection more gracefully without triggering segmentation faults or socket closure errors.

Current Setup:

  • Operating System: Linux
  • TWS Version: [Build 10.30.1k, Aug 5, 2024 4:19:58 PM]
  • TWS API Version: [API_Version=10.30.01]


    Looking forward to your guidance and suggestions.
?


Join [email protected] to automatically receive all group messages.