qpcpp/ports/win32-qutest/qutest_port.cpp

299 lines
9.5 KiB
C++
Raw Normal View History

2017-05-17 13:15:09 -04:00
/// @file
2018-11-22 11:34:13 -05:00
/// @brief QUTEST port for Win32
/// @ingroup ports
2017-05-17 13:15:09 -04:00
/// @cond
///***************************************************************************
/// Last updated for version 6.9.3
/// Last updated on 2021-03-16
2017-05-17 13:15:09 -04:00
///
2018-10-25 11:13:01 -04:00
/// Q u a n t u m L e a P s
/// ------------------------
/// Modern Embedded Software
2017-05-17 13:15:09 -04:00
///
2021-01-14 13:10:48 -05:00
/// Copyright (C) 2005-2021 Quantum Leaps. All rights reserved.
2017-05-17 13:15:09 -04:00
///
/// This program is open source software: you can redistribute it and/or
/// modify it under the terms of the GNU General Public License as published
/// by the Free Software Foundation, either version 3 of the License, or
/// (at your option) any later version.
///
/// Alternatively, this program may be distributed and modified under the
/// terms of Quantum Leaps commercial licenses, which expressly supersede
/// the GNU General Public License and are specifically designed for
/// licensees interested in retaining the proprietary status of their code.
///
/// This program is distributed in the hope that it will be useful,
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
/// GNU General Public License for more details.
///
/// You should have received a copy of the GNU General Public License
2019-10-27 12:26:31 -04:00
/// along with this program. If not, see <www.gnu.org/licenses>.
2017-05-17 13:15:09 -04:00
///
/// Contact information:
2019-12-31 15:56:23 -05:00
/// <www.state-machine.com/licensing>
2019-10-27 12:26:31 -04:00
/// <info@state-machine.com>
2017-05-17 13:15:09 -04:00
///***************************************************************************
/// @endcond
///
#ifndef Q_SPY
2019-06-19 11:20:12 -04:00
#error "Q_SPY must be defined for QUTest application"
2017-05-17 13:15:09 -04:00
#endif // Q_SPY
2019-10-27 12:26:31 -04:00
#define QP_IMPL // this is QP implementation
#include "qf_port.hpp" // QF port
#include "qassert.h" // QP embedded systems-friendly assertions
#include "qs_port.hpp" // include QS port
2017-05-17 13:15:09 -04:00
2020-04-02 21:21:53 -04:00
#include "safe_std.h" // portable "safe" <stdio.h>/<string.h> facilities
2017-05-17 13:15:09 -04:00
#include <stdlib.h>
#include <time.h>
#include <conio.h>
2018-11-22 11:34:13 -05:00
// Minimum required Windows version is Windows-XP or newer (0x0501)
#ifdef WINVER
#undef WINVER
#endif
#ifdef _WIN32_WINNT
#undef _WIN32_WINNT
#endif
#define WINVER _WIN32_WINNT_WINXP
#define _WIN32_WINNT _WIN32_WINNT_WINXP
#include <ws2tcpip.h>
#define QS_TX_SIZE (8*1024)
#define QS_RX_SIZE (2*1024)
#define QS_TX_CHUNK QS_TX_SIZE
2019-06-19 11:20:12 -04:00
#define QS_TIMEOUT_MS 10
2017-05-17 13:15:09 -04:00
namespace QP {
2018-10-25 11:13:01 -04:00
//Q_DEFINE_THIS_MODULE("qutest_port")
2017-05-17 13:15:09 -04:00
// local variables ...........................................................
static SOCKET l_sock = INVALID_SOCKET;
//............................................................................
bool QS::onStartup(void const *arg) {
static uint8_t qsBuf[QS_TX_SIZE]; // buffer for QS-TX channel
static uint8_t qsRxBuf[QS_RX_SIZE]; // buffer for QS-RX channel
2018-03-19 14:51:26 -04:00
char hostName[128];
2019-06-19 11:20:12 -04:00
char const *serviceName = "6601"; // default QSPY server port
2017-05-17 13:15:09 -04:00
char const *src;
char *dst;
2018-11-22 11:34:13 -05:00
int status;
2017-05-17 13:15:09 -04:00
2018-11-22 11:34:13 -05:00
struct addrinfo *result = NULL;
struct addrinfo *rp = NULL;
struct addrinfo hints;
2017-05-17 13:15:09 -04:00
BOOL sockopt_bool;
2018-11-22 11:34:13 -05:00
ULONG ioctl_opt;
WSADATA wsaData;
2017-05-17 13:15:09 -04:00
2018-11-22 11:34:13 -05:00
// initialize the QS transmit and receive buffers
2017-05-17 13:15:09 -04:00
initBuf(qsBuf, sizeof(qsBuf));
rxInitBuf(qsRxBuf, sizeof(qsRxBuf));
2018-11-22 11:34:13 -05:00
// initialize Windows sockets version 2.2
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != NO_ERROR) {
2018-10-25 11:13:01 -04:00
fprintf(stderr,
"<TARGET> ERROR Windows Sockets cannot be initialized\n");
2017-05-17 13:15:09 -04:00
goto error;
}
2018-11-22 11:34:13 -05:00
// extract hostName from 'arg' (hostName:port_remote)...
2017-05-17 13:15:09 -04:00
src = (arg != (void const *)0)
? (char const *)arg
2018-11-22 11:34:13 -05:00
: "localhost"; // default QSPY host
2017-05-17 13:15:09 -04:00
dst = hostName;
while ((*src != '\0')
&& (*src != ':')
2018-11-22 11:34:13 -05:00
&& (dst < &hostName[sizeof(hostName) - 1]))
2017-05-17 13:15:09 -04:00
{
*dst++ = *src++;
}
2018-11-22 11:34:13 -05:00
*dst = '\0'; // zero-terminate hostName
// extract serviceName from 'arg' (hostName:serviceName)...
2017-05-17 13:15:09 -04:00
if (*src == ':') {
2018-11-22 11:34:13 -05:00
serviceName = src + 1;
2017-05-17 13:15:09 -04:00
}
2018-11-22 11:34:13 -05:00
//printf("<TARGET> Connecting to QSPY on Host=%s:%s...\n",
// hostName, serviceName);
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;
hints.ai_protocol = IPPROTO_TCP;
status = getaddrinfo(hostName, serviceName, &hints, &result);
if (status != 0) {
2018-10-25 11:13:01 -04:00
fprintf(stderr,
2018-11-22 11:34:13 -05:00
"<TARGET> ERROR cannot resolve host Name=%s:%s,Err=%d\n",
hostName, serviceName, status);
2017-05-17 13:15:09 -04:00
goto error;
}
2018-11-22 11:34:13 -05:00
for (rp = result; rp != NULL; rp = rp->ai_next) {
l_sock = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
if (l_sock != INVALID_SOCKET) {
if (connect(l_sock, rp->ai_addr,
static_cast<int>(rp->ai_addrlen)) == SOCKET_ERROR)
2018-11-22 11:34:13 -05:00
{
closesocket(l_sock);
l_sock = INVALID_SOCKET;
}
break;
}
2017-05-17 13:15:09 -04:00
}
2018-11-22 11:34:13 -05:00
freeaddrinfo(result);
2017-05-17 13:15:09 -04:00
2018-11-22 11:34:13 -05:00
// socket could not be opened & connected?
if (l_sock == INVALID_SOCKET) {
fprintf(stderr, "<TARGET> ERROR cannot connect to QSPY at "
"host=%s:%s\n",
hostName, serviceName);
2017-05-17 13:15:09 -04:00
goto error;
}
2018-11-22 11:34:13 -05:00
// set the socket to non-blocking mode
ioctl_opt = 1;
if (ioctlsocket(l_sock, FIONBIO, &ioctl_opt) != NO_ERROR) {
fprintf(stderr, "<TARGET> ERROR Failed to set non-blocking socket "
"WASErr=%d\n", WSAGetLastError());
2017-05-17 13:15:09 -04:00
goto error;
}
2018-11-22 11:34:13 -05:00
// configure the socket to reuse the address and not to linger
sockopt_bool = TRUE;
setsockopt(l_sock, SOL_SOCKET, SO_REUSEADDR,
(const char *)&sockopt_bool, sizeof(sockopt_bool));
sockopt_bool = TRUE;
setsockopt(l_sock, SOL_SOCKET, SO_DONTLINGER,
(const char *)&sockopt_bool, sizeof(sockopt_bool));
2018-03-19 14:51:26 -04:00
//printf("<TARGET> Connected to QSPY at Host=%s:%d\n",
// hostName, port_remote);
2017-05-17 13:15:09 -04:00
onFlush();
return true; // success
error:
return false; // failure
}
//............................................................................
void QS::onCleanup(void) {
if (l_sock != INVALID_SOCKET) {
closesocket(l_sock);
l_sock = INVALID_SOCKET;
}
WSACleanup();
2018-03-19 14:51:26 -04:00
//printf("<TARGET> Disconnected from QSPY\n");
2017-05-17 13:15:09 -04:00
}
//............................................................................
void QS::onReset(void) {
onCleanup();
exit(0);
}
2018-11-22 11:34:13 -05:00
//............................................................................
void QS::onFlush(void) {
uint16_t nBytes;
uint8_t const *data;
2017-05-17 13:15:09 -04:00
2018-11-29 13:16:29 -05:00
if (l_sock == INVALID_SOCKET) { // socket NOT initialized?
fprintf(stderr, "<TARGET> ERROR invalid TCP socket\n");
2018-11-22 11:34:13 -05:00
return;
}
nBytes = QS_TX_CHUNK;
2018-11-29 13:16:29 -05:00
while ((data = getBlock(&nBytes)) != (uint8_t *)0) {
for (;;) { // for-ever until break or return
int nSent = send(l_sock, (char const *)data, (int)nBytes, 0);
if (nSent == SOCKET_ERROR) { // sending failed?
int err = WSAGetLastError();
if (err == WSAEWOULDBLOCK) {
2019-06-19 11:20:12 -04:00
// sleep for the timeout and then loop back
2018-11-29 13:16:29 -05:00
// to send() the SAME data again
//
2019-06-19 11:20:12 -04:00
Sleep(QS_TIMEOUT_MS);
2018-11-29 13:16:29 -05:00
}
else { // some other socket error...
fprintf(stderr, "<TARGET> ERROR sending data over TCP,"
"WASErr=%d\n", err);
return;
}
}
else if (nSent < (int)nBytes) { // sent fewer than requested?
2019-06-19 11:20:12 -04:00
Sleep(QS_TIMEOUT_MS); // sleep for the timeout
2020-10-01 12:50:17 -04:00
2018-11-29 13:16:29 -05:00
// adjust the data and loop back to send() the rest
data += nSent;
nBytes -= (uint16_t)nSent;
}
else {
2020-10-01 12:50:17 -04:00
break; // break out of the for-ever loop
2018-11-29 13:16:29 -05:00
}
2018-11-22 11:34:13 -05:00
}
2018-11-29 13:16:29 -05:00
// set nBytes for the next call to QS::getBlock()
2018-11-22 11:34:13 -05:00
nBytes = QS_TX_CHUNK;
}
}
2017-05-17 13:15:09 -04:00
//............................................................................
void QS::onTestLoop() {
fd_set readSet;
FD_ZERO(&readSet);
rxPriv_.inTestLoop = true;
while (rxPriv_.inTestLoop) {
FD_SET(l_sock, &readSet);
// selective, timed blocking on the TCP/IP socket...
2019-06-19 11:20:12 -04:00
struct timeval timeout = {
(long)0, (long)(QS_TIMEOUT_MS * 1000)
};
int status = select(0, &readSet, (fd_set *)0, (fd_set *)0, &timeout);
2017-05-17 13:15:09 -04:00
if (status == SOCKET_ERROR) {
2018-10-25 11:13:01 -04:00
fprintf(stderr,
"<TARGET> ERROR socket select,WSAErr=%d",
WSAGetLastError());
2017-05-17 13:15:09 -04:00
onCleanup();
exit(-2);
}
2019-06-19 11:20:12 -04:00
else if (FD_ISSET(l_sock, &readSet)) { // socket ready?
2021-01-14 13:10:48 -05:00
status = recv(l_sock,
(char *)QS::rxPriv_.buf, (int)QS::rxPriv_.end, 0);
if (status > 0) { // any data received?
QS::rxPriv_.tail = 0U;
QS::rxPriv_.head = status; // # bytes received
QS::rxParse(); // parse all received bytes
2017-05-17 13:15:09 -04:00
}
}
2018-11-29 13:16:29 -05:00
// flush the QS TX buffer
onFlush();
2017-05-17 13:15:09 -04:00
2019-06-19 11:20:12 -04:00
int ch = 0;
2017-05-17 13:15:09 -04:00
while (_kbhit()) { // any key pressed?
ch = _getch();
}
switch (ch) {
case 'x': // 'x' pressed?
case 'X': // 'X' pressed?
case '\033': { // ESC pressed?
onCleanup();
2018-03-19 14:51:26 -04:00
exit(1);
2017-05-17 13:15:09 -04:00
break;
}
}
}
// set inTestLoop to true in case calls to QS_onTestLoop() nest,
// which can happen through the calls to QS_TEST_PAUSE().
rxPriv_.inTestLoop = true;
}
} // namespace QP
2018-03-19 14:51:26 -04:00