/* * Copyright (C) 2009-2014,2016 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 "YSFDefines.h" #include "Network.h" #include "Utils.h" #include "Log.h" #include #include #include const unsigned int BUFFER_LENGTH = 200U; CNetwork::CNetwork(const std::string& address, unsigned int port, const std::string& callsign, bool debug) : m_socket(address, port), m_debug(debug), m_address(), m_port(0U), m_poll(NULL), m_buffer(1000U, "YSF Network Buffer"), m_timer(1000U, 5U) { assert(port > 0U); m_poll = new unsigned char[14U]; ::memcpy(m_poll + 0U, "YSFP", 4U); std::string node = callsign; node.resize(YSF_CALLSIGN_LENGTH, ' '); for (unsigned int i = 0U; i < YSF_CALLSIGN_LENGTH; i++) m_poll[i + 4U] = node.at(i); } CNetwork::CNetwork(unsigned int port, const std::string& callsign, bool debug) : m_socket(port), m_debug(debug), m_address(), m_port(0U), m_poll(NULL), m_buffer(1000U, "YSF Network Buffer"), m_timer(1000U, 5U) { assert(port > 0U); m_poll = new unsigned char[14U]; ::memcpy(m_poll + 0U, "YSFP", 4U); std::string node = callsign; node.resize(YSF_CALLSIGN_LENGTH, ' '); for (unsigned int i = 0U; i < YSF_CALLSIGN_LENGTH; i++) m_poll[i + 4U] = node.at(i); } CNetwork::~CNetwork() { delete[] m_poll; } bool CNetwork::open() { LogMessage("Opening YSF network connection"); return m_socket.open(); } void CNetwork::setDestination(const in_addr& address, unsigned int port) { m_address = address; m_port = port; m_timer.start(); } void CNetwork::setDestination() { m_address.s_addr = INADDR_NONE; m_port = 0U; m_timer.stop(); } bool CNetwork::write(const unsigned char* data) { assert(data != NULL); if (m_port == 0U) return true; if (m_debug) CUtils::dump(1U, "YSF Network Data Sent", data, 155U); return m_socket.write(data, 155U, m_address, m_port); } bool CNetwork::writePoll() { if (m_port == 0U) return true; return m_socket.write(m_poll, 14U, m_address, m_port); } void CNetwork::clock(unsigned int ms) { m_timer.clock(ms); if (m_timer.isRunning() && m_timer.hasExpired()) { writePoll(); m_timer.start(); } unsigned char buffer[BUFFER_LENGTH]; in_addr address; unsigned int port; int length = m_socket.read(buffer, BUFFER_LENGTH, address, port); if (length <= 0) return; if (address.s_addr != m_address.s_addr || port != m_port) return; // Handle incoming polls if (::memcmp(buffer, "YSFP", 4U) == 0) { // How do we handle a loss of polls? return; } // Invalid packet type? if (::memcmp(buffer, "YSFD", 4U) != 0) return; if (m_debug) CUtils::dump(1U, "YSF Network Data Received", buffer, length); m_buffer.addData(buffer, 155U); } unsigned int CNetwork::read(unsigned char* data) { assert(data != NULL); if (m_buffer.isEmpty()) return 0U; m_buffer.getData(data, 155U); return 155U; } void CNetwork::close() { m_socket.close(); LogMessage("Closing YSF network connection"); }