-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddress.hpp
65 lines (56 loc) · 1.84 KB
/
Address.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
/*
** Project CppSockets, 2022
**
** Author Francois Michaut
**
** Started on Sun Feb 13 17:09:05 2022 Francois Michaut
** Last update Sat Dec 9 08:52:22 2023 Francois Michaut
**
** Address.hpp : Interface to represent network addresses
*/
#pragma once
#include <cstdint>
#include <string>
#include <type_traits>
// TODO: add parsing functions (eg: from_string()) ?
// TODO: support IPv6 (uint32 for address will not support IPv6)
namespace CppSockets {
class IAddress {
public:
[[nodiscard]] virtual std::uint32_t getAddress() const = 0;
[[nodiscard]] virtual int getFamily() const = 0;
[[nodiscard]] virtual const std::string &toString() const = 0;
};
class IEndpoint {
public:
[[nodiscard]] virtual std::uint16_t getPort() const = 0;
[[nodiscard]] virtual const IAddress &getAddr() const = 0;
[[nodiscard]] virtual const std::string &toString() const = 0;
protected:
[[nodiscard]] std::string makeString() const;
};
template <class T>
class Endpoint : public IEndpoint {
static_assert(std::is_base_of<IAddress, T>::value,
"Endpoint address must derive from IAddress"
);
public:
Endpoint(T addr, std::uint16_t port) :
addr(std::move(addr)), port(port), str(makeString())
{};
virtual ~Endpoint() = default;
[[nodiscard]] std::uint16_t getPort() const override {
return port;
}
[[nodiscard]] const T &getAddr() const override {
return addr;
}
[[nodiscard]] const std::string &toString() const override {
return str;
}
private:
T addr;
std::uint16_t port;
std::string str;
};
}