mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-04-07 07:14:09 +00:00
Initial commit.
This commit is contained in:
commit
12d55cef37
430 changed files with 72067 additions and 0 deletions
557
RemoteControl/RemoteControlRemoteControlHandler.cpp
Normal file
557
RemoteControl/RemoteControlRemoteControlHandler.cpp
Normal file
|
|
@ -0,0 +1,557 @@
|
|||
/*
|
||||
* Copyright (C) 2011,2013 by Jonathan Naylor G4KLX
|
||||
*
|
||||
* This program is free 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* 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
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include "RemoteControlRemoteControlHandler.h"
|
||||
#include "DStarDefines.h"
|
||||
|
||||
const unsigned int BUFFER_LENGTH = 2000U;
|
||||
|
||||
const unsigned int MAX_RETRIES = 3U;
|
||||
|
||||
CRemoteControlRemoteControlHandler::CRemoteControlRemoteControlHandler(const wxString& address, unsigned int port) :
|
||||
m_socket(wxEmptyString, 0U),
|
||||
m_address(),
|
||||
m_port(port),
|
||||
m_loggedIn(false),
|
||||
m_retryCount(0U),
|
||||
m_type(RCT_NONE),
|
||||
m_inBuffer(NULL),
|
||||
m_inLength(0U),
|
||||
m_outBuffer(NULL),
|
||||
m_outLength(0U)
|
||||
{
|
||||
wxASSERT(!address.IsEmpty());
|
||||
wxASSERT(port > 0U);
|
||||
|
||||
m_address = CUDPReaderWriter::lookup(address);
|
||||
|
||||
m_inBuffer = new unsigned char[BUFFER_LENGTH];
|
||||
m_outBuffer = new unsigned char[BUFFER_LENGTH];
|
||||
}
|
||||
|
||||
CRemoteControlRemoteControlHandler::~CRemoteControlRemoteControlHandler()
|
||||
{
|
||||
delete[] m_inBuffer;
|
||||
delete[] m_outBuffer;
|
||||
}
|
||||
|
||||
bool CRemoteControlRemoteControlHandler::open()
|
||||
{
|
||||
return m_socket.open();
|
||||
}
|
||||
|
||||
RC_TYPE CRemoteControlRemoteControlHandler::readType()
|
||||
{
|
||||
m_type = RCT_NONE;
|
||||
|
||||
in_addr address;
|
||||
unsigned int port;
|
||||
|
||||
int length = m_socket.read(m_inBuffer, BUFFER_LENGTH, address, port);
|
||||
if (length <= 0)
|
||||
return m_type;
|
||||
|
||||
m_inLength = length;
|
||||
|
||||
if (::memcmp(m_inBuffer, "ACK", 3U) == 0) {
|
||||
m_retryCount = 0U;
|
||||
m_type = RCT_ACK;
|
||||
return m_type;
|
||||
} else if (::memcmp(m_inBuffer, "NAK", 3U) == 0) {
|
||||
m_retryCount = 0U;
|
||||
m_type = RCT_NAK;
|
||||
return m_type;
|
||||
} else if (::memcmp(m_inBuffer, "RND", 3U) == 0) {
|
||||
m_retryCount = 0U;
|
||||
m_type = RCT_RANDOM;
|
||||
return m_type;
|
||||
} else if (::memcmp(m_inBuffer, "CAL", 3U) == 0) {
|
||||
m_retryCount = 0U;
|
||||
m_type = RCT_CALLSIGNS;
|
||||
return m_type;
|
||||
} else if (::memcmp(m_inBuffer, "RPT", 3U) == 0) {
|
||||
m_retryCount = 0U;
|
||||
m_type = RCT_REPEATER;
|
||||
return m_type;
|
||||
} else if (::memcmp(m_inBuffer, "SNT", 3U) == 0) {
|
||||
m_retryCount = 0U;
|
||||
m_type = RCT_STARNET;
|
||||
return m_type;
|
||||
}
|
||||
|
||||
return m_type;
|
||||
}
|
||||
|
||||
wxString CRemoteControlRemoteControlHandler::readNAK()
|
||||
{
|
||||
if (m_type != RCT_NAK)
|
||||
return wxEmptyString;
|
||||
|
||||
wxString text((char*)(m_inBuffer + 3U), wxConvLocal);
|
||||
|
||||
return text;
|
||||
}
|
||||
|
||||
unsigned int CRemoteControlRemoteControlHandler::readRandom()
|
||||
{
|
||||
if (m_type != RCT_RANDOM)
|
||||
return 0U;
|
||||
|
||||
wxUint32 random;
|
||||
::memcpy(&random, m_inBuffer + 3U, sizeof(wxUint32));
|
||||
|
||||
return wxUINT32_SWAP_ON_BE(random);
|
||||
}
|
||||
|
||||
CRemoteControlCallsignData* CRemoteControlRemoteControlHandler::readCallsigns()
|
||||
{
|
||||
if (m_type != RCT_CALLSIGNS)
|
||||
return NULL;
|
||||
|
||||
CRemoteControlCallsignData* data = new CRemoteControlCallsignData;
|
||||
|
||||
unsigned char* p = m_inBuffer + 3U;
|
||||
unsigned int pos = 3U;
|
||||
|
||||
while (pos < m_inLength) {
|
||||
unsigned char type = *p;
|
||||
pos += 1U;
|
||||
p += 1U;
|
||||
|
||||
wxString callsign((char*)p, wxConvLocal, LONG_CALLSIGN_LENGTH);
|
||||
pos += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
switch (type) {
|
||||
case 'R':
|
||||
data->addRepeater(callsign);
|
||||
break;
|
||||
case 'S':
|
||||
data->addStarNet(callsign);
|
||||
break;
|
||||
default: // ????
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
CRemoteControlRepeaterData* CRemoteControlRemoteControlHandler::readRepeater()
|
||||
{
|
||||
if (m_type != RCT_REPEATER)
|
||||
return NULL;
|
||||
|
||||
unsigned char* p = m_inBuffer + 3U;
|
||||
unsigned int pos = 3U;
|
||||
|
||||
wxString callsign((char*)p, wxConvLocal, LONG_CALLSIGN_LENGTH);
|
||||
pos += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
wxInt32 reconnect;
|
||||
::memcpy(&reconnect, p, sizeof(wxInt32));
|
||||
pos += sizeof(wxInt32);
|
||||
p += sizeof(wxInt32);
|
||||
|
||||
wxString reflector((char*)p, wxConvLocal, LONG_CALLSIGN_LENGTH);
|
||||
pos += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
CRemoteControlRepeaterData* data = new CRemoteControlRepeaterData(callsign, wxINT32_SWAP_ON_BE(reconnect), reflector);
|
||||
|
||||
while (pos < m_inLength) {
|
||||
wxString callsign((char*)p, wxConvLocal, LONG_CALLSIGN_LENGTH);
|
||||
pos += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
wxInt32 protocol;
|
||||
::memcpy(&protocol, p, sizeof(wxInt32));
|
||||
pos += sizeof(wxInt32);
|
||||
p += sizeof(wxInt32);
|
||||
|
||||
wxInt32 linked;
|
||||
::memcpy(&linked, p, sizeof(wxInt32));
|
||||
pos += sizeof(wxInt32);
|
||||
p += sizeof(wxInt32);
|
||||
|
||||
wxInt32 direction;
|
||||
::memcpy(&direction, p, sizeof(wxInt32));
|
||||
pos += sizeof(wxInt32);
|
||||
p += sizeof(wxInt32);
|
||||
|
||||
wxInt32 dongle;
|
||||
::memcpy(&dongle, p, sizeof(wxInt32));
|
||||
pos += sizeof(wxInt32);
|
||||
p += sizeof(wxInt32);
|
||||
|
||||
data->addLink(callsign, wxINT32_SWAP_ON_BE(protocol), wxINT32_SWAP_ON_BE(linked), wxINT32_SWAP_ON_BE(direction), wxINT32_SWAP_ON_BE(dongle));
|
||||
}
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
CRemoteControlStarNetGroup* CRemoteControlRemoteControlHandler::readStarNetGroup()
|
||||
{
|
||||
if (m_type != RCT_STARNET)
|
||||
return NULL;
|
||||
|
||||
unsigned char* p = m_inBuffer + 3U;
|
||||
unsigned int pos = 3U;
|
||||
|
||||
wxString callsign((char*)p, wxConvLocal, LONG_CALLSIGN_LENGTH);
|
||||
pos += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
wxString logoff((char*)p, wxConvLocal, LONG_CALLSIGN_LENGTH);
|
||||
pos += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
wxUint32 timer;
|
||||
::memcpy(&timer, p, sizeof(wxUint32));
|
||||
pos += sizeof(wxUint32);
|
||||
p += sizeof(wxUint32);
|
||||
|
||||
wxUint32 timeout;
|
||||
::memcpy(&timeout, p, sizeof(wxUint32));
|
||||
pos += sizeof(wxUint32);
|
||||
p += sizeof(wxUint32);
|
||||
|
||||
CRemoteControlStarNetGroup* group = new CRemoteControlStarNetGroup(callsign, logoff, wxUINT32_SWAP_ON_BE(timer), wxUINT32_SWAP_ON_BE(timeout));
|
||||
|
||||
while (pos < m_inLength) {
|
||||
wxString callsign((char*)p, wxConvLocal, LONG_CALLSIGN_LENGTH);
|
||||
pos += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
::memcpy(&timer, p, sizeof(wxUint32));
|
||||
pos += sizeof(wxUint32);
|
||||
p += sizeof(wxUint32);
|
||||
|
||||
::memcpy(&timeout, p, sizeof(wxUint32));
|
||||
pos += sizeof(wxUint32);
|
||||
p += sizeof(wxUint32);
|
||||
|
||||
group->addUser(callsign, wxUINT32_SWAP_ON_BE(timer), wxUINT32_SWAP_ON_BE(timeout));
|
||||
}
|
||||
|
||||
return group;
|
||||
}
|
||||
|
||||
bool CRemoteControlRemoteControlHandler::login()
|
||||
{
|
||||
if (m_loggedIn)
|
||||
return false;
|
||||
|
||||
if (m_address.s_addr == INADDR_NONE)
|
||||
return false;
|
||||
|
||||
::memcpy(m_outBuffer, "LIN", 3U);
|
||||
m_outLength = 3U;
|
||||
|
||||
bool ret = m_socket.write(m_outBuffer, m_outLength, m_address, m_port);
|
||||
if (!ret) {
|
||||
m_retryCount = 0U;
|
||||
return false;
|
||||
} else {
|
||||
m_retryCount = 1U;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
void CRemoteControlRemoteControlHandler::setLoggedIn(bool set)
|
||||
{
|
||||
m_loggedIn = set;
|
||||
}
|
||||
|
||||
bool CRemoteControlRemoteControlHandler::getCallsigns()
|
||||
{
|
||||
if (!m_loggedIn || m_retryCount > 0U)
|
||||
return false;
|
||||
|
||||
::memcpy(m_outBuffer, "GCS", 3U);
|
||||
m_outLength = 3U;
|
||||
|
||||
bool ret = m_socket.write(m_outBuffer, m_outLength, m_address, m_port);
|
||||
if (!ret) {
|
||||
m_retryCount = 0U;
|
||||
return false;
|
||||
} else {
|
||||
m_retryCount = 1U;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
bool CRemoteControlRemoteControlHandler::sendHash(const unsigned char* hash, unsigned int length)
|
||||
{
|
||||
wxASSERT(hash != NULL);
|
||||
wxASSERT(length > 0U);
|
||||
|
||||
if (m_loggedIn || m_retryCount > 0U)
|
||||
return false;
|
||||
|
||||
unsigned char* p = m_outBuffer;
|
||||
m_outLength = 0U;
|
||||
|
||||
::memcpy(p, "SHA", 3U);
|
||||
m_outLength += 3U;
|
||||
p += 3U;
|
||||
|
||||
::memcpy(p, hash, length);
|
||||
m_outLength += length;
|
||||
p += length;
|
||||
|
||||
bool ret = m_socket.write(m_outBuffer, m_outLength, m_address, m_port);
|
||||
if (!ret) {
|
||||
m_retryCount = 0U;
|
||||
return false;
|
||||
} else {
|
||||
m_retryCount = 1U;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
bool CRemoteControlRemoteControlHandler::getRepeater(const wxString& callsign)
|
||||
{
|
||||
wxASSERT(!callsign.IsEmpty());
|
||||
|
||||
if (!m_loggedIn || m_retryCount > 0U)
|
||||
return false;
|
||||
|
||||
unsigned char* p = m_outBuffer;
|
||||
m_outLength = 0U;
|
||||
|
||||
::memcpy(p, "GRP", 3U);
|
||||
m_outLength += 3U;
|
||||
p += 3U;
|
||||
|
||||
::memset(p, ' ', LONG_CALLSIGN_LENGTH);
|
||||
for (unsigned int i = 0U; i < callsign.Len(); i++)
|
||||
p[i] = callsign.GetChar(i);
|
||||
|
||||
m_outLength += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
bool ret = m_socket.write(m_outBuffer, m_outLength, m_address, m_port);
|
||||
if (!ret) {
|
||||
m_retryCount = 0U;
|
||||
return false;
|
||||
} else {
|
||||
m_retryCount = 1U;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
bool CRemoteControlRemoteControlHandler::getStarNet(const wxString& callsign)
|
||||
{
|
||||
wxASSERT(!callsign.IsEmpty());
|
||||
|
||||
if (!m_loggedIn || m_retryCount > 0U)
|
||||
return false;
|
||||
|
||||
unsigned char* p = m_outBuffer;
|
||||
m_outLength = 0U;
|
||||
|
||||
::memcpy(p, "GSN", 3U);
|
||||
m_outLength += 3U;
|
||||
p += 3U;
|
||||
|
||||
::memset(p, ' ', LONG_CALLSIGN_LENGTH);
|
||||
for (unsigned int i = 0U; i < callsign.Len(); i++)
|
||||
p[i] = callsign.GetChar(i);
|
||||
|
||||
m_outLength += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
bool ret = m_socket.write(m_outBuffer, m_outLength, m_address, m_port);
|
||||
if (!ret) {
|
||||
m_retryCount = 0U;
|
||||
return false;
|
||||
} else {
|
||||
m_retryCount = 1U;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
bool CRemoteControlRemoteControlHandler::link(const wxString& callsign, RECONNECT reconnect, const wxString& reflector)
|
||||
{
|
||||
wxASSERT(!callsign.IsEmpty());
|
||||
|
||||
if (!m_loggedIn || m_retryCount > 0U)
|
||||
return false;
|
||||
|
||||
unsigned char* p = m_outBuffer;
|
||||
m_outLength = 0U;
|
||||
|
||||
::memcpy(p, "LNK", 3U);
|
||||
m_outLength += 3U;
|
||||
p += 3U;
|
||||
|
||||
::memset(p, ' ', LONG_CALLSIGN_LENGTH);
|
||||
for (unsigned int i = 0U; i < callsign.Len(); i++)
|
||||
p[i] = callsign.GetChar(i);
|
||||
|
||||
m_outLength += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
wxInt32 temp1 = wxInt32(reconnect);
|
||||
wxInt32 temp2 = wxINT32_SWAP_ON_BE(temp1);
|
||||
::memcpy(p, &temp2, sizeof(wxInt32));
|
||||
m_outLength += sizeof(wxInt32);
|
||||
p += sizeof(wxInt32);
|
||||
|
||||
::memset(p, ' ', LONG_CALLSIGN_LENGTH);
|
||||
for (unsigned int i = 0U; i < reflector.Len(); i++)
|
||||
p[i] = reflector.GetChar(i);
|
||||
|
||||
m_outLength += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
bool ret = m_socket.write(m_outBuffer, m_outLength, m_address, m_port);
|
||||
if (!ret) {
|
||||
m_retryCount = 0U;
|
||||
return false;
|
||||
} else {
|
||||
m_retryCount = 1U;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
bool CRemoteControlRemoteControlHandler::unlink(const wxString& callsign, PROTOCOL protocol, const wxString& reflector)
|
||||
{
|
||||
wxASSERT(!callsign.IsEmpty());
|
||||
|
||||
if (!m_loggedIn || m_retryCount > 0U)
|
||||
return false;
|
||||
|
||||
unsigned char* p = m_outBuffer;
|
||||
m_outLength = 0U;
|
||||
|
||||
::memcpy(p, "UNL", 3U);
|
||||
m_outLength += 3U;
|
||||
p += 3U;
|
||||
|
||||
::memset(p, ' ', LONG_CALLSIGN_LENGTH);
|
||||
for (unsigned int i = 0U; i < callsign.Len(); i++)
|
||||
p[i] = callsign.GetChar(i);
|
||||
|
||||
m_outLength += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
wxInt32 temp1 = wxInt32(protocol);
|
||||
wxInt32 temp2 = wxINT32_SWAP_ON_BE(temp1);
|
||||
::memcpy(p, &temp2, sizeof(wxInt32));
|
||||
m_outLength += sizeof(wxInt32);
|
||||
p += sizeof(wxInt32);
|
||||
|
||||
::memset(p, ' ', LONG_CALLSIGN_LENGTH);
|
||||
for (unsigned int i = 0U; i < reflector.Len(); i++)
|
||||
p[i] = reflector.GetChar(i);
|
||||
|
||||
m_outLength += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
bool ret = m_socket.write(m_outBuffer, m_outLength, m_address, m_port);
|
||||
if (!ret) {
|
||||
m_retryCount = 0U;
|
||||
return false;
|
||||
} else {
|
||||
m_retryCount = 1U;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
bool CRemoteControlRemoteControlHandler::logoff(const wxString& callsign, const wxString& user)
|
||||
{
|
||||
wxASSERT(!callsign.IsEmpty());
|
||||
wxASSERT(!user.IsEmpty());
|
||||
|
||||
if (!m_loggedIn || m_retryCount > 0U)
|
||||
return false;
|
||||
|
||||
unsigned char* p = m_outBuffer;
|
||||
m_outLength = 0U;
|
||||
|
||||
::memcpy(p, "LGO", 3U);
|
||||
m_outLength += 3U;
|
||||
p += 3U;
|
||||
|
||||
::memset(p, ' ', LONG_CALLSIGN_LENGTH);
|
||||
for (unsigned int i = 0U; i < callsign.Len(); i++)
|
||||
p[i] = callsign.GetChar(i);
|
||||
|
||||
m_outLength += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
::memset(p, ' ', LONG_CALLSIGN_LENGTH);
|
||||
for (unsigned int i = 0U; i < user.Len(); i++)
|
||||
p[i] = user.GetChar(i);
|
||||
|
||||
m_outLength += LONG_CALLSIGN_LENGTH;
|
||||
p += LONG_CALLSIGN_LENGTH;
|
||||
|
||||
bool ret = m_socket.write(m_outBuffer, m_outLength, m_address, m_port);
|
||||
if (!ret) {
|
||||
m_retryCount = 0U;
|
||||
return false;
|
||||
} else {
|
||||
m_retryCount = 1U;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
bool CRemoteControlRemoteControlHandler::logout()
|
||||
{
|
||||
if (!m_loggedIn || m_retryCount > 0U)
|
||||
return false;
|
||||
|
||||
::memcpy(m_outBuffer, "LOG", 3U);
|
||||
m_outLength = 3U;
|
||||
|
||||
for (unsigned int i = 0U; i < 5U; i++) {
|
||||
bool ret = m_socket.write(m_outBuffer, m_outLength, m_address, m_port);
|
||||
if (!ret) {
|
||||
m_retryCount = 0U;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
m_retryCount = 1U;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool CRemoteControlRemoteControlHandler::retry()
|
||||
{
|
||||
if (m_retryCount > 0U) {
|
||||
m_retryCount++;
|
||||
if (m_retryCount >= MAX_RETRIES) {
|
||||
m_retryCount = 0U;
|
||||
return false;
|
||||
}
|
||||
|
||||
m_socket.write(m_outBuffer, m_outLength, m_address, m_port);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void CRemoteControlRemoteControlHandler::close()
|
||||
{
|
||||
m_socket.close();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue