src/Socket.cpp
author František Kučera <franta-hg@frantovo.cz>
Fri, 05 Aug 2022 23:45:48 +0200
branchv_0
changeset 12 fcc5ed0fab9f
parent 11 a910051cd975
child 13 c29b13a659a7
permissions -rw-r--r--
AddressInfos [] = addrinfo&
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
/**
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
 * Relational pipes
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
 * Copyright © 2022 František Kučera (Frantovo.cz, GlobalCode.info)
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
 *
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
 * the Free Software Foundation, version 3 of the License.
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
 *
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
 * GNU General Public License for more details.
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
 *
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
 */
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
#include <string>
1
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    18
#include <cstring>
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    19
#include <unistd.h>
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
#include <stdexcept>
1
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    21
#include <arpa/inet.h>
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    22
#include <sys/types.h>
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    23
#include <sys/socket.h>
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    24
#include <netinet/in.h>
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    25
#include <vector>
3
e701e06ff561 add some factories: generic/template version
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    26
#include <memory>
4
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    27
#include <regex>
10
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    28
#include <iostream>
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    29
#include <netdb.h>
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    30
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    31
#include "Socket.h"
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
namespace relpipe {
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
namespace out {
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
namespace socket {
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
5
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    37
using namespace relpipe::out::socket::options;
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    38
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    39
static const std::string findOption(SocketOptions options, std::string name, bool required = false, const std::string defaultValue = "") {
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    40
	for (auto o : options) if (o.name == name) return o.value;
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    41
	if (required) throw std::invalid_argument("Option " + name + " is required but was not found");
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    42
	else return defaultValue;
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    43
}
3
e701e06ff561 add some factories: generic/template version
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    44
4
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    45
class FD {
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    46
private:
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    47
	int fd;
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    48
public:
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    49
4
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    50
	FD(int fd) : fd(fd) {
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    51
	};
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    52
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    53
	virtual ~FD() {
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    54
		close(fd);
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    55
	}
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    56
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    57
	int getFD() {
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    58
		return fd;
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    59
	}
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    60
};
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    61
9
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    62
static void check(int result, std::string message) {
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    63
	if (result == 0); // OK
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    64
	else throw std::logic_error("Got error result: " + std::to_string(result) + " - " + message);
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    65
}
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    66
10
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    67
template <typename T> static T* castAddress(addrinfo* ai, sa_family_t family) {
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    68
	if (ai && ai->ai_family == family && sizeof (T) == ai->ai_addrlen) return (T*) ai->ai_addr;
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    69
	else return nullptr;
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    70
}
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    71
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    72
static std::string ip2string(const addrinfo* ai) {
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    73
	//char buffer[INET_ADDRSTRLEN] = {0};
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    74
	char buffer[INET6_ADDRSTRLEN] = {0};
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    75
	//return inet_ntop(ai->ai_family, &ai->ai_addr, buffer, sizeof (buffer));
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    76
	//return inet_ntop(ai->ai_family, &ai->ai_addr->sa_data, buffer, sizeof (buffer));
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    77
	if (ai->ai_family == AF_INET) return inet_ntop(ai->ai_family, &((sockaddr_in const *) ai->ai_addr)->sin_addr, buffer, sizeof (buffer)); // TODO: check 0 result
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    78
	else if (ai->ai_family == AF_INET6) return inet_ntop(ai->ai_family, &((sockaddr_in6 const *) ai->ai_addr)->sin6_addr, buffer, sizeof (buffer)); // TODO: check 0 result
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    79
	else throw std::logic_error("Invalid address family: " + std::to_string(ai->ai_family));
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    80
}
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    81
12
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    82
class AddressInfos {
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    83
private:
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    84
	struct addrinfo* addrInfo;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    85
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    86
	AddressInfos(addrinfo* addrInfo) : addrInfo(addrInfo) {
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    87
		std::cerr << "  AddressInfo()" << std::endl;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    88
	}
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    89
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    90
public:
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    91
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    92
	virtual ~AddressInfos() {
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    93
		std::cerr << " ~AddressInfo()" << std::endl;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    94
		freeaddrinfo(addrInfo);
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    95
	}
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    96
	
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    97
	class AddressInfo {
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    98
	public:
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    99
		const addrinfo* const ai;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   100
		
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   101
		AddressInfo(const addrinfo* const ai) : ai(ai) {}
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   102
	};
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   103
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   104
	static AddressInfos getAddressInfo(const std::string& host, const std::string& port) {
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   105
		struct addrinfo query;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   106
		memset(&query, sizeof (query), 0);
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   107
		query.ai_family = AF_UNSPEC;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   108
		query.ai_socktype = SOCK_STREAM;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   109
		query.ai_protocol = IPPROTO_TCP;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   110
		query.ai_flags = AI_ALL;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   111
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   112
		struct addrinfo* addrInfo;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   113
		check(getaddrinfo(host.c_str(), port.c_str(), &query, &addrInfo), "getaddrinfo");
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   114
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   115
		return AddressInfos(addrInfo);
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   116
	}
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   117
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   118
	const sockaddr* getSocketAddress() {
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   119
		return addrInfo->ai_addr;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   120
	}
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   121
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   122
	const std::size_t size() const {
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   123
		std::size_t size = 0;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   124
		for (addrinfo* ai = addrInfo; ai; ai = ai->ai_next) size++;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   125
		return size;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   126
	}
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   127
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   128
	const addrinfo& operator[](std::size_t index) const {
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   129
		for (addrinfo* ai = addrInfo; ai; index--) {
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   130
			if (index == 0) return *ai;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   131
			else ai = ai->ai_next;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   132
		}
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   133
		
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   134
		throw std::out_of_range("invalid index for AddressInfo: " + std::to_string(index));
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   135
	}
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   136
	
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   137
};
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   138
10
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   139
static in_addr_t getAddress(const std::string& host) {
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   140
12
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   141
	{
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   142
		AddressInfos ai = AddressInfos::getAddressInfo("::0ff2", "smtp");
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   143
		std::cerr << "AddressInfo size = " << ai.size() << std::endl;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   144
		for (size_t i = 0, limit = ai.size(); i < limit; i++) {
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   145
			std::cerr << "AddressInfo: " << ip2string(&ai[i]) << std::endl;
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   146
		}
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   147
	}
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   148
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   149
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   150
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   151
11
a910051cd975 getaddrinfo(): get only IPv4 TCP addresses
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   152
	struct addrinfo query;
a910051cd975 getaddrinfo(): get only IPv4 TCP addresses
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   153
	memset(&query, sizeof (query), 0);
12
fcc5ed0fab9f AddressInfos [] = addrinfo&
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
   154
	query.ai_family = AF_UNSPEC;
11
a910051cd975 getaddrinfo(): get only IPv4 TCP addresses
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   155
	query.ai_socktype = SOCK_STREAM;
a910051cd975 getaddrinfo(): get only IPv4 TCP addresses
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   156
	query.ai_protocol = IPPROTO_TCP;
a910051cd975 getaddrinfo(): get only IPv4 TCP addresses
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   157
	query.ai_flags = AI_ALL;
a910051cd975 getaddrinfo(): get only IPv4 TCP addresses
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   158
10
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   159
	struct addrinfo* addrInfo;
11
a910051cd975 getaddrinfo(): get only IPv4 TCP addresses
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   160
	check(getaddrinfo(host.c_str(), "", &query, &addrInfo), "getaddrinfo");
10
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   161
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   162
	std::cerr << "found: " << addrInfo << std::endl;
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   163
	if (addrInfo) {
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   164
		for (addrinfo* ai = addrInfo; ai; ai = ai->ai_next) {
11
a910051cd975 getaddrinfo(): get only IPv4 TCP addresses
František Kučera <franta-hg@frantovo.cz>
parents: 10
diff changeset
   165
			std::cerr << "address info: family=" << std::to_string(ai->ai_addr->sa_family) << " socktype=" << std::to_string(ai->ai_socktype) << " protocol=" << std::to_string(ai->ai_protocol);
10
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   166
			if (sockaddr_in * sa = castAddress<sockaddr_in>(ai, AF_INET)) std::cerr << " IPv4=" << ip2string(ai);
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   167
			else if (sockaddr_in6 * sa = castAddress<sockaddr_in6>(ai, AF_INET6)) std::cerr << " IPv6=" << ip2string(ai);
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   168
			std::cerr << std::endl;
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   169
		}
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   170
	}
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   171
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   172
	if (addrInfo) {
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   173
		for (addrinfo* ai = addrInfo; ai; ai = ai->ai_next) {
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   174
			if (sockaddr_in * sa = castAddress<sockaddr_in>(ai, AF_INET)) {
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   175
				in_addr_t address = sa->sin_addr.s_addr;
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   176
				freeaddrinfo(addrInfo);
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   177
				return address;
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   178
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   179
			}
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   180
		}
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   181
	}
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   182
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   183
	freeaddrinfo(addrInfo);
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   184
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   185
	// TODO: rather throw exception – requires IP address in the host string:
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   186
	return inet_addr(host.c_str());
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   187
}
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   188
9
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   189
class UDPClientSocket : public Socket {
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   190
private:
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   191
	struct sockaddr_in remoteAddress;
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   192
	int protocol = IPPROTO_UDP;
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   193
	int type = SOCK_DGRAM;
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   194
public:
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   195
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   196
	static std::shared_ptr<Socket> open(const SocketOptions& options) {
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   197
		std::shared_ptr<UDPClientSocket> s = std::make_shared<UDPClientSocket>();
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   198
		memset((char *) &s->remoteAddress, 0, sizeof (s->remoteAddress));
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   199
		s->remoteAddress.sin_family = AF_INET;
10
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   200
		s->remoteAddress.sin_addr.s_addr = getAddress(findOption(options, OPTION_HOST, true)); // TODO: use getaddrinfo() instead (because of error -1 = 255.255.255.255)
9
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   201
		s->remoteAddress.sin_port = htons(std::stoi(findOption(options, OPTION_PORT, true)));
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   202
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   203
		auto protocol = findOption(options, OPTION_PROTOCOL);
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   204
		if (protocol == PROTOCOL_SCTP) {
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   205
			s->protocol = IPPROTO_SCTP;
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   206
			s->type = SOCK_SEQPACKET;
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   207
		}
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   208
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   209
		return s;
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   210
	}
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   211
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   212
	void send(const std::string& message) override {
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   213
		FD s(::socket(AF_INET, type, protocol));
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   214
		sendto(s.getFD(), message.c_str(), message.size(), 0, (sockaddr*) & remoteAddress, sizeof (remoteAddress));
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   215
	}
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   216
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   217
	const std::string receive() override {
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   218
		// TODO: TCP receive()
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   219
		return "TODO: receive() a message";
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   220
	}
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   221
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   222
};
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   223
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   224
class TCPClientSocket : public Socket {
4
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   225
private:
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   226
	struct sockaddr_in remoteAddress;
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   227
public:
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   228
5
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   229
	static std::shared_ptr<Socket> open(const SocketOptions& options) {
9
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   230
		std::shared_ptr<TCPClientSocket> s = std::make_shared<TCPClientSocket>();
4
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   231
		memset((char *) &s->remoteAddress, 0, sizeof (s->remoteAddress));
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   232
		s->remoteAddress.sin_family = AF_INET;
10
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   233
		s->remoteAddress.sin_addr.s_addr = getAddress(findOption(options, OPTION_HOST, true).c_str()); // TODO: use getaddrinfo() instead (because of error -1 = 255.255.255.255)
5
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   234
		s->remoteAddress.sin_port = htons(std::stoi(findOption(options, OPTION_PORT, true)));
4
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   235
		return s;
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   236
	}
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   237
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   238
	void send(const std::string& message) override {
9
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   239
		FD s(::socket(AF_INET, SOCK_STREAM, IPPROTO_TCP));
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   240
		check(::connect(s.getFD(), (sockaddr*) & remoteAddress, sizeof (remoteAddress)), "connect socket");
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   241
		ssize_t written = ::write(s.getFD(), message.c_str(), message.size());
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   242
		if (written != message.size()) throw std::logic_error("writing to the socket failed");
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   243
	}
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   244
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   245
	const std::string receive() override {
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   246
		// TODO: TCP receive()
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   247
		return "TODO: receive() a message";
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   248
	}
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   249
9
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   250
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   251
};
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   252
5
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   253
template<const char* protocol, const char* role, const char* mode, typename SocketClass>
3
e701e06ff561 add some factories: generic/template version
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   254
class TemplateSocketFactory : public SocketFactory {
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   255
public:
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   256
5
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   257
	bool canHandle(const SocketOptions& options) override {
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   258
		return findOption(options, OPTION_PROTOCOL) == protocol
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   259
				&& findOption(options, OPTION_ROLE) == role
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   260
				&& findOption(options, OPTION_MODE) == mode;
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   261
	}
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   262
5
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   263
	std::shared_ptr<Socket> open(const SocketOptions& options) override {
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   264
		return SocketClass::open(options);
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   265
	}
3
e701e06ff561 add some factories: generic/template version
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   266
};
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   267
4
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   268
static std::vector<std::shared_ptr<SocketFactory>> factories
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
   269
{
9
de48b9278211 TCP and UDP client sockets - first version
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
   270
	std::make_shared<TemplateSocketFactory<PROTOCOL_TCP, ROLE_CLIENT, MODE_STREAM, TCPClientSocket >> (),
10
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   271
			std::make_shared<TemplateSocketFactory<PROTOCOL_TCP, ROLE_SERVER, MODE_STREAM, TCPClientSocket >> (), // TODO: correct class
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   272
			std::make_shared<TemplateSocketFactory<PROTOCOL_UDP, ROLE_CLIENT, MODE_DATAGRAM, UDPClientSocket >> (),
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   273
			std::make_shared<TemplateSocketFactory<PROTOCOL_UDP, ROLE_SERVER, MODE_DATAGRAM, UDPClientSocket >> (), // TODO: correct class
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   274
			std::make_shared<TemplateSocketFactory<PROTOCOL_SCTP, ROLE_CLIENT, MODE_STREAM, UDPClientSocket >> (), // TODO: correct class
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   275
			std::make_shared<TemplateSocketFactory<PROTOCOL_SCTP, ROLE_CLIENT, MODE_DATAGRAM, UDPClientSocket >> (), // TODO: correct class
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   276
			std::make_shared<TemplateSocketFactory<PROTOCOL_SCTP, ROLE_SERVER, MODE_STREAM, UDPClientSocket >> (), // TODO: correct class
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   277
			std::make_shared<TemplateSocketFactory<PROTOCOL_SCTP, ROLE_SERVER, MODE_DATAGRAM, UDPClientSocket >> (), // TODO: correct class
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   278
			std::make_shared<TemplateSocketFactory<PROTOCOL_UDS, ROLE_CLIENT, MODE_STREAM, UDPClientSocket >> (), // TODO: correct class
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   279
			std::make_shared<TemplateSocketFactory<PROTOCOL_UDS, ROLE_CLIENT, MODE_DATAGRAM, UDPClientSocket >> (), // TODO: correct class
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   280
			std::make_shared<TemplateSocketFactory<PROTOCOL_UDS, ROLE_SERVER, MODE_STREAM, UDPClientSocket >> (), // TODO: correct class
6a6b93507856 use getaddrinfo(), inet_ntop(), some DNS and IPv4 support
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
   281
			std::make_shared<TemplateSocketFactory<PROTOCOL_UDS, ROLE_SERVER, MODE_DATAGRAM, UDPClientSocket >> (), // TODO: correct class
3
e701e06ff561 add some factories: generic/template version
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
   282
};
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   283
5
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   284
std::shared_ptr<SocketFactory> SocketFactory::find(const SocketOptions& options) {
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   285
	for (auto f : factories) if (f->canHandle(options)) return f;
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
   286
	throw std::logic_error("Unable to find a SocketFactory"); // TODO: add relevant options?
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   287
}
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   288
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
   289
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   290
}
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   291
}
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   292
}