2018-09-23 17:54:20 +02:00
|
|
|
#include "headers/baseconn.h"
|
|
|
|
|
|
|
|
BaseConn::BaseConn(QObject *parent) : QObject(parent)
|
|
|
|
{
|
|
|
|
socket = new QTcpSocket();
|
|
|
|
this->setState("disconnected");
|
2019-03-02 20:20:13 +01:00
|
|
|
|
|
|
|
connect(this->socket, SIGNAL(error(QAbstractSocket::SocketError)),
|
|
|
|
this, SLOT(gotError(QAbstractSocket::SocketError)));
|
2018-10-14 18:39:39 +02:00
|
|
|
|
|
|
|
this->nextConnectionId = 1;
|
2018-10-04 18:35:29 +02:00
|
|
|
|
|
|
|
this->speedTimers.append(pGlobalSpeedTimer);
|
|
|
|
|
|
|
|
this->refreshTimer = new QTimer();
|
|
|
|
refreshTimer->setInterval(1);
|
|
|
|
refreshTimer->setSingleShot(true);
|
|
|
|
refreshTimer->connect(this->refreshTimer, &QTimer::timeout, this, &BaseConn::refreshTimers);
|
2018-10-14 18:39:39 +02:00
|
|
|
refreshTimer->start();
|
2018-09-23 17:54:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool BaseConn::connectToHost() {
|
2018-10-04 18:35:29 +02:00
|
|
|
qDebug() << "connecting";
|
2018-09-23 17:54:20 +02:00
|
|
|
setState("connecting");
|
|
|
|
this->connection_progress = 0;
|
|
|
|
QEventLoop loop;
|
|
|
|
QTimer timer;
|
|
|
|
|
|
|
|
timer.setSingleShot(true);
|
|
|
|
// quit the loop when the timer times out
|
|
|
|
loop.connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
|
|
|
|
//quit the loop when the connection was established
|
|
|
|
loop.connect(this->socket, SIGNAL(connected()), &loop, SLOT(quit()));
|
|
|
|
// start the timer before starting to connect
|
|
|
|
timer.start(3000);
|
|
|
|
//connect
|
|
|
|
this->socket->connectToHost(this->ip, this->port);
|
|
|
|
|
|
|
|
//wait for the connection to finish (programm gets stuck in here)
|
|
|
|
loop.exec();
|
|
|
|
|
2018-10-04 18:35:29 +02:00
|
|
|
//loop finish
|
2018-09-23 17:54:20 +02:00
|
|
|
|
|
|
|
if(timer.remainingTime() == -1){
|
|
|
|
//the time has been triggered -> timeout
|
|
|
|
this->socket->abort();
|
|
|
|
setState("disconnected");
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// stop the timer as the connection has been established
|
|
|
|
timer.stop();
|
|
|
|
connect(this->socket, &QTcpSocket::readyRead, this, &BaseConn::readyRead);
|
|
|
|
this->connection_progress = 100;
|
|
|
|
setState("connected");
|
2018-10-14 18:39:39 +02:00
|
|
|
this->speedTimers[0]->remoteControlled = true;
|
2018-09-23 17:54:20 +02:00
|
|
|
return(true);
|
|
|
|
}
|
|
|
|
|
2019-03-02 20:20:13 +01:00
|
|
|
void BaseConn::closeConnection()
|
|
|
|
{
|
|
|
|
qDebug() << "closing connection";
|
|
|
|
switch (socket->state())
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
socket->disconnectFromHost();
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
socket->abort();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
socket->abort();
|
|
|
|
}
|
|
|
|
setState("disconnected");
|
|
|
|
// for(int i = 0; i < this->waitingRequests.length(); i++){
|
|
|
|
// this->waitingRequests[i].reply = "ERR_NOT_CONNECTED";
|
|
|
|
// this->waitingRequests[i].loop->quit();
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseConn::gotError(QAbstractSocket::SocketError err)
|
|
|
|
{
|
|
|
|
//qDebug() << "got error";
|
|
|
|
QString strError = "unknown";
|
|
|
|
switch (err)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
strError = "Connection was refused";
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
strError = "Remote host closed the connection";
|
|
|
|
this->closeConnection();
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
strError = "Host address was not found";
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
strError = "Connection timed out";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
strError = "Unknown error";
|
|
|
|
}
|
|
|
|
|
|
|
|
emit gotError(strError);
|
|
|
|
qDebug() << "got socket error: " << strError;
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariantMap BaseConn::sendCommand(int header, QJsonValue data = ""){
|
2018-10-04 18:35:29 +02:00
|
|
|
if(this->state != "connected"){
|
2019-03-02 20:20:13 +01:00
|
|
|
return {{"status", 910}, {"data", "not connected"}};
|
2018-10-04 18:35:29 +02:00
|
|
|
}
|
2018-09-23 17:54:20 +02:00
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
// generate id and witing requests entry
|
|
|
|
int thisId = nextConnectionId;
|
|
|
|
nextConnectionId ++;
|
2019-03-02 20:20:13 +01:00
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
QEventLoop loop;
|
2019-03-02 20:20:13 +01:00
|
|
|
QJsonObject reply;
|
|
|
|
|
|
|
|
this->waitingRequests.append({thisId, &loop, reply});
|
|
|
|
|
|
|
|
QJsonObject requestObj;
|
|
|
|
requestObj.insert("id", thisId);
|
|
|
|
requestObj.insert("header", header);
|
|
|
|
requestObj.insert("data", data);
|
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
|
2019-03-02 20:20:13 +01:00
|
|
|
QString jsonRequest = QJsonDocument(requestObj).toJson();
|
2018-10-14 18:39:39 +02:00
|
|
|
|
|
|
|
QByteArray arrBlock;
|
|
|
|
QDataStream out(&arrBlock, QIODevice::WriteOnly);
|
|
|
|
//out.setVersion(QDataStream::Qt_5_10);
|
2019-03-02 20:20:13 +01:00
|
|
|
out << quint16(0) << jsonRequest;
|
2018-10-14 18:39:39 +02:00
|
|
|
|
|
|
|
out.device()->seek(0);
|
2019-03-02 20:20:13 +01:00
|
|
|
out << quint16(ulong(arrBlock.size()) - sizeof(quint16));
|
2018-10-14 18:39:39 +02:00
|
|
|
|
|
|
|
QTimer timer;
|
|
|
|
|
|
|
|
timer.setSingleShot(true);
|
|
|
|
// quit the loop when the timer times out
|
|
|
|
loop.connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
|
2019-03-02 20:20:13 +01:00
|
|
|
// quit the loop when the connection was established
|
2018-10-14 18:39:39 +02:00
|
|
|
// loop.connect(this, &BaseConn::gotReply, &loop, &QEventLoop::quit);
|
|
|
|
// start the timer before starting to connect
|
|
|
|
timer.start(3000);
|
|
|
|
|
|
|
|
//write data
|
2018-09-23 17:54:20 +02:00
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
socket->write(arrBlock);
|
2018-09-23 17:54:20 +02:00
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
//wait for an answer to finish (programm gets stuck in here)
|
|
|
|
loop.exec();
|
2018-09-23 17:54:20 +02:00
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
//loop finished
|
|
|
|
if(timer.remainingTime() == -1){
|
|
|
|
//the time has been triggered -> timeout
|
2018-09-23 17:54:20 +02:00
|
|
|
|
2019-03-02 20:20:13 +01:00
|
|
|
return {{"status", 911}, {"data", ""}};
|
2018-10-14 18:39:39 +02:00
|
|
|
}
|
2018-09-23 17:54:20 +02:00
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
for(int i = 0; i<this->waitingRequests.length(); i++){
|
|
|
|
if(this->waitingRequests[i].id == thisId){
|
|
|
|
reply = this->waitingRequests[i].reply;
|
2018-09-23 17:54:20 +02:00
|
|
|
}
|
2018-10-14 18:39:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// stop the timer as the connection has been established
|
|
|
|
timer.stop();
|
2018-09-23 17:54:20 +02:00
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
timer.deleteLater();
|
2018-09-23 17:54:20 +02:00
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
//remoteSessions.release(1);
|
2019-03-02 20:20:13 +01:00
|
|
|
return {{"status", reply.value("header").toInt()}, {"data", reply.value("data").toVariant()}};
|
|
|
|
|
2018-09-23 17:54:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void BaseConn::readyRead() {
|
|
|
|
QDataStream in(socket);
|
|
|
|
//in.setVersion(QDataStream::Qt_5_10);
|
|
|
|
qint16 nextBlockSize = 0;
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
if (!nextBlockSize)
|
|
|
|
{
|
2019-03-02 20:20:13 +01:00
|
|
|
if (ulong(socket->bytesAvailable()) < sizeof(quint16)) { break; }
|
2018-09-23 17:54:20 +02:00
|
|
|
in >> nextBlockSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (socket->bytesAvailable() < nextBlockSize) { break; }
|
|
|
|
|
|
|
|
QString str; in >> str;
|
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
// if (str == "0")
|
|
|
|
// {
|
|
|
|
// str = "Connection closed";
|
|
|
|
// closeConnection();
|
|
|
|
// }
|
|
|
|
|
2018-09-23 17:54:20 +02:00
|
|
|
nextBlockSize = 0;
|
2018-10-14 18:39:39 +02:00
|
|
|
QString reply = str;
|
|
|
|
int id = 0;
|
|
|
|
|
2019-03-02 20:20:13 +01:00
|
|
|
QJsonDocument jsonReply = QJsonDocument::fromJson(reply.toUtf8());
|
|
|
|
QJsonObject replyObj = jsonReply.object();
|
|
|
|
|
|
|
|
if(!replyObj.isEmpty()){
|
|
|
|
id = replyObj.value("id").toInt();
|
|
|
|
|
|
|
|
for(int i = 0; i < this->waitingRequests.length(); i++){
|
2018-10-14 18:39:39 +02:00
|
|
|
if(this->waitingRequests[i].id == id){
|
2019-03-02 20:20:13 +01:00
|
|
|
this->waitingRequests[i].reply = replyObj;
|
2018-10-14 18:39:39 +02:00
|
|
|
this->waitingRequests[i].loop->quit();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-23 17:54:20 +02:00
|
|
|
latestReadReply = str;
|
2018-10-14 18:39:39 +02:00
|
|
|
emit gotUnexpectedReply(str);
|
2018-09-23 17:54:20 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-04 18:35:29 +02:00
|
|
|
/*-----Functions to control the local stopwatch-----*/
|
|
|
|
|
|
|
|
void BaseConn::refreshTimers(){
|
|
|
|
if(this->state != "connected"){
|
2018-10-14 18:39:39 +02:00
|
|
|
this->refreshTimer->start();
|
2018-10-04 18:35:29 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString remoteState;
|
2018-10-14 18:39:39 +02:00
|
|
|
QString remoteTime;
|
|
|
|
QString tmpNextRemoteAction;
|
|
|
|
QString tmpNextRemoteActionDelayProg;
|
|
|
|
|
2019-03-02 20:20:13 +01:00
|
|
|
remoteState = sendCommand(2000)["data"].toString();
|
2018-10-04 18:35:29 +02:00
|
|
|
|
|
|
|
switch (speedTimers[0]->state) {
|
|
|
|
case SpeedTimer::IDLE:
|
|
|
|
break;
|
|
|
|
case SpeedTimer::STARTING:
|
2019-03-02 20:20:13 +01:00
|
|
|
if(remoteState == "2"){
|
2018-10-04 18:35:29 +02:00
|
|
|
speedTimers[0]->start();
|
|
|
|
}
|
2019-03-02 20:20:13 +01:00
|
|
|
else if (remoteState == "3") {
|
2018-10-04 18:35:29 +02:00
|
|
|
speedTimers[0]->stop("manual");
|
|
|
|
}
|
2018-10-14 18:39:39 +02:00
|
|
|
|
2019-03-02 20:20:13 +01:00
|
|
|
tmpNextRemoteAction = sendCommand(2004)["data"].toString();
|
2018-10-14 18:39:39 +02:00
|
|
|
if(tmpNextRemoteAction.startsWith("ERR")){
|
|
|
|
//handle Error!!
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(this->nextRemoteAction != tmpNextRemoteAction){
|
|
|
|
this->nextRemoteAction = tmpNextRemoteAction;
|
|
|
|
this->nextRemoteActionChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-02 20:20:13 +01:00
|
|
|
tmpNextRemoteActionDelayProg = sendCommand(2005)["data"].toFloat();
|
2018-10-14 18:39:39 +02:00
|
|
|
if(tmpNextRemoteActionDelayProg.startsWith("ERR")){
|
|
|
|
//handle error!!
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(this->nextRemoteActionDelayProg != tmpNextRemoteActionDelayProg.toFloat()){
|
|
|
|
this->nextRemoteActionDelayProg = tmpNextRemoteActionDelayProg.toFloat();
|
|
|
|
this->nextRemoteActionDelayProgChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-04 18:35:29 +02:00
|
|
|
break;
|
|
|
|
case SpeedTimer::RUNNING:
|
2018-10-14 18:39:39 +02:00
|
|
|
|
2019-03-02 20:20:13 +01:00
|
|
|
if(remoteState == "2"){
|
2018-10-04 18:35:29 +02:00
|
|
|
speedTimers[0]->stop("manual");
|
|
|
|
}
|
2018-10-14 18:39:39 +02:00
|
|
|
remoteTime = sendCommand("GET_CURRTIME");
|
|
|
|
if(remoteTime.startsWith("ERR")){
|
|
|
|
//handle error!!
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
speedTimers[0]->stoppedTime = remoteTime.toInt();
|
|
|
|
}
|
2018-10-04 18:35:29 +02:00
|
|
|
break;
|
|
|
|
case SpeedTimer::STOPPED:
|
2018-10-14 18:39:39 +02:00
|
|
|
remoteTime = sendCommand("GET_STOPPED_TIME");
|
|
|
|
if(remoteTime.startsWith("ERR")){
|
|
|
|
//handle error!!
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
speedTimers[0]->stoppedTime = remoteTime.toInt();
|
|
|
|
}
|
2018-10-04 18:35:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
if(speedTimers[0]->state != speedTimers[0]->stateFromString(remoteState)){
|
|
|
|
// speedTimers[0]->setState(speedTimers[0]->stateFromString(remoteState));
|
|
|
|
qWarning() << "WARNING: Remote State not matching!!" << " remote state: " << remoteState << " local state: " << this->speedTimers[0]->getState();
|
|
|
|
}
|
|
|
|
|
2018-10-04 18:35:29 +02:00
|
|
|
this->refreshTimer->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BaseConn::startTimers(){
|
|
|
|
qDebug() << "starting timers";
|
|
|
|
|
|
|
|
QString ret = this->sendCommand("CMD_START_TIMER");
|
|
|
|
|
|
|
|
if(ret.startsWith("ERR")){
|
|
|
|
//handle Error!!
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->speedTimers[0]->setState(SpeedTimer::STARTING);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
bool BaseConn::stopTimers(QString type){
|
2018-10-04 18:35:29 +02:00
|
|
|
qDebug() << "stopping timers";
|
|
|
|
|
|
|
|
QString ret = this->sendCommand("CMD_STOP_TIMER");
|
|
|
|
|
|
|
|
if(ret.startsWith("ERR")){
|
|
|
|
//handle Error!
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
this->speedTimers[0]->stop(type);
|
|
|
|
qDebug() << "stopped timers";
|
2018-10-04 18:35:29 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
bool BaseConn::resetTimers(){
|
|
|
|
qDebug() << "resetting timers";
|
|
|
|
|
|
|
|
QString ret = this->sendCommand("CMD_RESET_TIMER");
|
|
|
|
|
|
|
|
if(ret.startsWith("ERR")){
|
|
|
|
//handle Error!
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->speedTimers[0]->reset();
|
|
|
|
return true;
|
|
|
|
}
|
2018-10-04 18:35:29 +02:00
|
|
|
|
2018-09-23 17:54:20 +02:00
|
|
|
void BaseConn::setIP(const QString &ipAdress){
|
|
|
|
this->ip = ipAdress;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString BaseConn::getIP() const
|
|
|
|
{
|
|
|
|
return(this->ip);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString BaseConn::getState() const
|
|
|
|
{
|
|
|
|
return(this->state);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseConn::setState(QString newState){
|
|
|
|
this->state = newState;
|
|
|
|
emit stateChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
int BaseConn::getProgress() const
|
|
|
|
{
|
|
|
|
return(connection_progress);
|
|
|
|
}
|
|
|
|
|
2018-10-04 18:35:29 +02:00
|
|
|
bool BaseConn::refreshConnections() {
|
|
|
|
QString ret = this->sendCommand("GET_CONNECTIONS");
|
|
|
|
if(ret.startsWith("ERR")){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
connections = ret.split("|||");
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList BaseConn::getConnections() {
|
|
|
|
return(connections);
|
|
|
|
}
|
|
|
|
|
2018-10-14 18:39:39 +02:00
|
|
|
QString BaseConn::getNextRemoteAction() {
|
|
|
|
return this->nextRemoteAction;
|
|
|
|
}
|
|
|
|
|
|
|
|
float BaseConn::getNextRemoteActionDelayProg(){
|
|
|
|
return this->nextRemoteActionDelayProg;
|
|
|
|
}
|
|
|
|
|