src/Socket.h
author František Kučera <franta-hg@frantovo.cz>
Thu, 18 Aug 2022 03:39:55 +0200
branchv_0
changeset 22 9a7c42cca24b
parent 18 e16fa75135ad
child 27 e6e5780339bd
permissions -rw-r--r--
SCTP: sendmsg()
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
#pragma once
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
#include <string>
5
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    20
#include <vector>
1
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    21
#include <cstring>
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    22
#include <unistd.h>
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    23
#include <stdexcept>
1
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    24
#include <arpa/inet.h>
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    25
#include <sys/types.h>
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    26
#include <sys/socket.h>
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    27
#include <netinet/in.h>
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
namespace relpipe {
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
namespace out {
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
namespace socket {
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
7
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    33
namespace options {
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    34
static const char OPTION_PROTOCOL[] = "protocol";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    35
static const char OPTION_ROLE[] = "role";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    36
static const char OPTION_MODE[] = "mode";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    37
static const char OPTION_HOST[] = "host";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    38
static const char OPTION_PORT[] = "port";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    39
static const char OPTION_PATH[] = "path";
18
e16fa75135ad UDP: add delay option
František Kučera <franta-hg@frantovo.cz>
parents: 7
diff changeset
    40
static const char OPTION_DELAY[] = "delay";
7
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    41
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    42
static const char PROTOCOL_TCP[] = "tcp";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    43
static const char PROTOCOL_UDP[] = "udp";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    44
static const char PROTOCOL_UDS[] = "uds";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    45
static const char PROTOCOL_SCTP[] = "sctp";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    46
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    47
static const char ROLE_CLIENT[] = "client";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    48
static const char ROLE_SERVER[] = "server";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    49
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    50
static const char MODE_STREAM[] = "stream";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    51
static const char MODE_DATAGRAM[] = "datagram";
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    52
}
e6f005f3edfe move options/constants from Configuration.h to Socket.h
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    53
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    54
class Socket {
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    55
public:
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    56
	virtual ~Socket() = default;
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    57
	virtual void send(const std::string& message) = 0;
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    58
	virtual const std::string receive() = 0;
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    59
};
1
e3265afd1111 first version: TCP-only + fixed parameters
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    60
4
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    61
class SocketOption {
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    62
public:
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    63
	const std::string name;
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    64
	const std::string value;
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    65
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    66
	SocketOption(const std::string name, const std::string value) : name(name), value(value) {
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    67
	}
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    68
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    69
	virtual ~SocketOption() = default;
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    70
};
8d036e5e5fcc configuration: --connection-string --connection-option (role, mode)
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    71
5
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    72
using SocketOptions = std::vector<SocketOption>;
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    73
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    74
class SocketFactory {
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    75
public:
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    76
	virtual ~SocketFactory() = default;
5
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    77
	virtual bool canHandle(const SocketOptions& options) = 0;
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    78
	virtual std::shared_ptr<Socket> open(const SocketOptions& options) = 0;
e57e2a2798b2 configuration: protocol, role, mode, host, port, path
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    79
	static std::shared_ptr<SocketFactory> find(const SocketOptions& options);
2
fb399fd4f053 add some factories
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    80
};
0
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    81
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    82
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    83
}
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    84
}
924e354948df establish project
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    85
}