sources/network/udpsocket.cpp

Wed, 27 Jan 2021 12:34:56 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 27 Jan 2021 12:34:56 +0200
branch
protocol5
changeset 172
0b0bc8045d28
parent 171
d0fba0d7ad03
permissions
-rw-r--r--

added packet queue as a new head

/*
	Copyright 2014 - 2016 Teemu Piippo
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions
	are met:

	1. Redistributions of source code must retain the above copyright
	   notice, this list of conditions and the following disclaimer.
	2. Redistributions in binary form must reproduce the above copyright
	   notice, this list of conditions and the following disclaimer in the
	   documentation and/or other materials provided with the distribution.
	3. Neither the name of the copyright holder nor the names of its
	   contributors may be used to endorse or promote products derived from
	   this software without specific prior written permission.

	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
	"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
	TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
	PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
	OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
	EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
	PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
	PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
	LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
	NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
	SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "udpsocket.h"

#ifndef _WIN32
# include <sys/socket.h>
# include <netinet/in.h>
# include <sys/time.h>
# include <unistd.h>
#else
# include <winsock2.h>
# include <ws2tcpip.h>
#endif

#include <sys/types.h>
#include <string.h>
#include <fcntl.h>
#include "../huffman/huffman.h"

BEGIN_ZFC_NAMESPACE

char UDPSocket::HuffmanBuffer[131072];

// -----------------------------------------------------------------------------
//
UDPSocket::UDPSocket() :
	m_socket (socket (AF_INET, SOCK_DGRAM, IPPROTO_UDP)) {}

// -----------------------------------------------------------------------------
//
UDPSocket::~UDPSocket()
{
#ifdef _WIN32
	closesocket (m_socket);
#else
	close (m_socket);
#endif
}

// -------------------------------------------------------------------------------------------------
//
bool UDPSocket::set_blocking (bool a)
{
#ifndef _WIN32
	int flags = fcntl (m_socket, F_GETFL, 0);
	int newflags = a ? (flags & ~O_NONBLOCK) : (flags | O_NONBLOCK);

	if (flags < 0 || fcntl (m_socket, F_SETFL, newflags) != 0)
	{
		m_error = "Unable to set socket as non-blocking";
		return false;
	}

	return true;
#else
	unsigned long mode = a ? 0 : 1;

	if (ioctlsocket (m_socket, FIONBIO, &mode) != 0)
	{
		m_error = strerror (errno);
		return false;
	}

	return true;
#endif
}

// -------------------------------------------------------------------------------------------------
//
bool UDPSocket::bind (unsigned short port)
{
	sockaddr_in svaddr;
	memset (&svaddr, 0, sizeof svaddr);
	svaddr.sin_family = AF_INET;
	svaddr.sin_port = htons (port);
	svaddr.sin_addr.s_addr = htonl (INADDR_ANY);

	if (::bind (m_socket, reinterpret_cast<sockaddr*> (&svaddr), sizeof svaddr) == -1)
	{
		m_error = String ("Couldn't bind to port ") + String::fromNumber (port);
		return false;
	}

	return true;
}

// -------------------------------------------------------------------------------------------------
//
bool UDPSocket::read (Datagram& datagram)
{
	sockaddr_in claddr;
	socklen_t socklen = sizeof claddr;
	int length = ::recvfrom (m_socket, HuffmanBuffer, sizeof HuffmanBuffer, 0,
		reinterpret_cast<sockaddr*> (&claddr), &socklen);

	if (length == -1)
	{
		if (errno != EWOULDBLOCK)
			m_error = String ("recvfrom error: ") + strerror (errno);

		return false;
	}

	if (length < 4)
	{
		m_error = "The server sent a too short packet";
		return false;
	}

	unsigned char decodedPacket[MAX_DATAGRAM_LENGTH];
	int decodedLength = sizeof decodedPacket;
	HUFFMAN_Decode (reinterpret_cast<unsigned char*> (HuffmanBuffer),
		decodedPacket, length, &decodedLength);
	datagram.address.host = ntohl (claddr.sin_addr.s_addr);
	datagram.address.port = ntohs (claddr.sin_port);
	datagram.message = ByteArray(decodedPacket, decodedLength);
	return true;
}

// -------------------------------------------------------------------------------------------------
//
bool UDPSocket::send (const IPAddress& address, const ByteArray& data)
{
	int encodedlength = sizeof HuffmanBuffer;
	HUFFMAN_Encode (data.data(), reinterpret_cast<unsigned char*> (HuffmanBuffer), data.size(), &encodedlength);
	sockaddr_in claddr = address.to_sockaddr_in();
	int res = ::sendto (m_socket, HuffmanBuffer, encodedlength, 0,
		reinterpret_cast<sockaddr*> (&claddr), sizeof claddr);

	if (res == -1)
	{
		m_error = String ("Unable to launch packet: ") + strerror (errno);
		return false;
	}

	return true;
}

END_ZFC_NAMESPACE

mercurial