-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSocket.hpp
96 lines (79 loc) · 2.87 KB
/
Socket.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
** Project CppSockets, 2022
**
** Author Francois Michaut
**
** Started on Sat Jan 15 01:17:42 2022 Francois Michaut
** Last update Sat Dec 9 08:55:07 2023 Francois Michaut
**
** Socket.hpp : Portable C++ socket class
*/
#pragma once
#include "CppSockets/OSDetection.hpp"
#include "CppSockets/SocketInit.hpp"
// TODO: move the RawSocketType in CppSockets namespace
#ifdef OS_WINDOWS
#define NOMINMAX
#include <winsock2.h>
using RawSocketType=SOCKET;
using socklen_t=int;
using SockOptType=char;
#else
#include <sys/socket.h>
using RawSocketType=int;
using SockOptType=void;
#endif
#include <memory>
#include "CppSockets/Address.hpp"
namespace CppSockets {
class Socket : SocketInit {
public:
Socket();
Socket(int domain, int type, int protocol);
Socket(RawSocketType fd, bool connected);
~Socket();
// TODO Maybe enable copy with dup(2) ?
Socket(const Socket &other) = delete;
Socket(Socket &&other) noexcept;
Socket &operator=(const Socket &other) = delete;
Socket &operator=(Socket &&other) noexcept;
std::string read(std::size_t len = -1);
std::size_t read(char *buff, std::size_t size);
std::size_t write(const std::string &buff);
std::size_t write(const char *buff, std::size_t len);
int set_reuseaddr(bool value);
int getsockopt(int level, int optname, SockOptType *optval, socklen_t *optlen);
int setsockopt(int level, int optname, const SockOptType *optval, socklen_t optlen);
void close();
int connect(const IEndpoint &endpoint);
int connect(const std::string &addr, uint16_t port);
int bind(const IEndpoint &endpoint);
int bind(const std::string &addr, uint16_t port);
int listen(int backlog);
std::shared_ptr<Socket> accept(void *addr_out = nullptr);
void set_blocking(bool val);
[[nodiscard]]
RawSocketType get_fd() const; // TODO check if windows SOCKET can be
// converted to int
[[nodiscard]]
int get_type() const;
[[nodiscard]]
int get_domain() const;
[[nodiscard]]
int get_protocol() const;
[[nodiscard]]
bool connected() const;
public:
static int get_errno();
static char *strerror(int err);
static char *strerror();
protected:
static int getsockopt(int fd, int level, int optname, SockOptType *optval, socklen_t *optlen);
int bind(std::uint32_t addr, uint16_t port);
int m_domain = 0;
int m_type = 0;
int m_protocol = 0;
RawSocketType m_sockfd;
bool m_is_connected = false;
};
}