YSFClients/YSFParrot/Network.cpp

125 lines
2.6 KiB
C++
Raw Normal View History

2016-05-19 18:36:54 +02:00
/*
2018-01-29 23:07:08 +01:00
* Copyright (C) 2009-2014,2016,2018 by Jonathan Naylor G4KLX
2016-05-19 18:36:54 +02:00
*
* 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 "Network.h"
#include <cstdio>
#include <cassert>
#include <cstring>
const unsigned int BUFFER_LENGTH = 200U;
CNetwork::CNetwork(unsigned int port) :
2016-05-19 18:36:54 +02:00
m_socket(port),
m_address(),
2018-03-22 22:02:16 +01:00
m_port(0U)
2016-05-19 18:36:54 +02:00
{
}
CNetwork::~CNetwork()
{
}
bool CNetwork::open()
{
2018-01-29 23:07:08 +01:00
::fprintf(stdout, "Opening YSF network connection\n");
2016-05-19 18:36:54 +02:00
return m_socket.open();
}
bool CNetwork::write(const unsigned char* data)
{
2016-06-13 23:53:25 +02:00
if (m_port == 0U)
return true;
2016-05-19 18:36:54 +02:00
assert(data != NULL);
return m_socket.write(data, 155U, m_address, m_port);
}
2016-06-13 23:53:25 +02:00
bool CNetwork::writePoll(const in_addr& address, unsigned int port)
2016-05-19 18:36:54 +02:00
{
unsigned char buffer[20U];
buffer[0] = 'Y';
buffer[1] = 'S';
buffer[2] = 'F';
buffer[3] = 'P';
buffer[4U] = 'P';
buffer[5U] = 'A';
buffer[6U] = 'R';
buffer[7U] = 'R';
buffer[8U] = 'O';
buffer[9U] = 'T';
buffer[10U] = ' ';
buffer[11U] = ' ';
buffer[12U] = ' ';
buffer[13U] = ' ';
2016-06-13 23:53:25 +02:00
return m_socket.write(buffer, 14U, address, port);
2016-05-19 18:36:54 +02:00
}
2018-03-22 22:02:16 +01:00
unsigned int CNetwork::read(unsigned char* data)
2016-05-19 18:36:54 +02:00
{
in_addr address;
unsigned int port;
2018-03-22 22:02:16 +01:00
int length = m_socket.read(data, BUFFER_LENGTH, address, port);
2016-05-19 18:36:54 +02:00
if (length <= 0)
2018-03-22 22:02:16 +01:00
return 0U;
2016-05-19 18:36:54 +02:00
2016-06-13 23:53:25 +02:00
// Handle incoming polls
2018-03-22 22:02:16 +01:00
if (::memcmp(data, "YSFP", 4U) == 0) {
2016-06-13 23:53:25 +02:00
writePoll(address, port);
2018-03-22 22:02:16 +01:00
return 0U;
2016-06-13 23:53:25 +02:00
}
2016-05-19 18:36:54 +02:00
// Handle incoming unlinks
2018-03-22 22:02:16 +01:00
if (::memcmp(data, "YSFU", 4U) == 0)
return 0U;
// Handle the status command
2018-03-22 22:02:16 +01:00
if (::memcmp(data, "YSFS", 4U) == 0) {
unsigned char status[50U];
::sprintf((char*)status, "YSFS%05u%-16.16s%-14.14s%03u", 1U, "Parrot", "Parrot", 0U);
m_socket.write(status, 42U, address, port);
2018-03-22 22:02:16 +01:00
return 0U;
}
2016-05-19 18:36:54 +02:00
// Invalid packet type?
2018-03-22 22:02:16 +01:00
if (::memcmp(data, "YSFD", 4U) != 0)
return 0U;
2016-05-19 18:36:54 +02:00
2016-06-13 23:53:25 +02:00
m_address.s_addr = address.s_addr;
m_port = port;
2016-05-19 18:36:54 +02:00
return 155U;
}
2016-06-13 23:53:25 +02:00
void CNetwork::end()
{
m_port = 0U;
}
2016-05-19 18:36:54 +02:00
void CNetwork::close()
{
m_socket.close();
2018-01-29 23:07:08 +01:00
::fprintf(stdout, "Closing YSF network connection\n");
2016-05-19 18:36:54 +02:00
}